pax_global_header00006660000000000000000000000064144462703360014523gustar00rootroot0000000000000052 comment=a8b68a35f5f87c401c1c9258958113b45d656f31 pygac-1.7.2/000077500000000000000000000000001444627033600126355ustar00rootroot00000000000000pygac-1.7.2/.bumpversion.cfg000066400000000000000000000001441444627033600157440ustar00rootroot00000000000000[bumpversion] current_version = 1.4.0 commit = True tag = True [bumpversion:file:pygac/version.py] pygac-1.7.2/.github/000077500000000000000000000000001444627033600141755ustar00rootroot00000000000000pygac-1.7.2/.github/workflows/000077500000000000000000000000001444627033600162325ustar00rootroot00000000000000pygac-1.7.2/.github/workflows/ci.yaml000066400000000000000000000023501444627033600175110ustar00rootroot00000000000000name: CI on: [push, pull_request] jobs: test: runs-on: ${{ matrix.os }} continue-on-error: ${{ matrix.experimental }} strategy: fail-fast: true matrix: os: ["ubuntu-latest"] python-version: ["3.8", "3.9", "3.10"] experimental: [false] env: PYTHON_VERSION: ${{ matrix.python-version }} OS: ${{ matrix.os }} ACTIONS_ALLOW_UNSECURE_COMMANDS: true PYGAC_CONFIG_FILE: etc/pygac.cfg.template steps: - name: Checkout source uses: actions/checkout@v2 - name: Setup Conda Environment uses: conda-incubator/setup-miniconda@v2 with: miniconda-version: "latest" python-version: ${{ matrix.python-version }} environment-file: continuous_integration/environment.yaml activate-environment: test-environment - name: Install pygac shell: bash -l {0} run: | pip install --no-deps -e . - name: Run unit tests shell: bash -l {0} run: | pytest --cov=pygac pygac/tests --cov-report=xml - name: Upload unittest coverage uses: codecov/codecov-action@v2 with: file: ./coverage.xml env_vars: OS,PYTHON_VERSION pygac-1.7.2/.github/workflows/deploy-sdist.yaml000066400000000000000000000007601444627033600215410ustar00rootroot00000000000000name: Deploy sdist on: release: types: - published jobs: test: runs-on: ubuntu-latest steps: - name: Checkout source uses: actions/checkout@v2 - name: Create sdist shell: bash -l {0} run: python setup.py sdist - name: Publish package to PyPI if: github.event.action == 'published' uses: pypa/gh-action-pypi-publish@v1.4.1 with: user: __token__ password: ${{ secrets.pypi_password }} pygac-1.7.2/.gitignore000066400000000000000000000001351444627033600146240ustar00rootroot00000000000000build doc/build *.so *.pyc *~ dist pygac.egg-info etc/*.cfg gapfilled_tles/ pygac/version.py pygac-1.7.2/.landscape.yaml000066400000000000000000000002751444627033600155350ustar00rootroot00000000000000doc-warnings: yes test-warnings: yes strictness: high max-line-length: 120 autodetect: yes ignore-paths: - doc - etc ignore-patterns: - ^example/doc_.*\.py$ - (^|/)doc(/|$) pygac-1.7.2/.pre-commit-config.yaml000066400000000000000000000003371444627033600171210ustar00rootroot00000000000000exclude: '^$' fail_fast: false repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v2.2.3 hooks: - id: flake8 additional_dependencies: [flake8-docstrings, flake8-debugger, flake8-bugbear] pygac-1.7.2/.readthedocs.yml000066400000000000000000000005521444627033600157250ustar00rootroot00000000000000# Read the Docs configuration file # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details version: 2 # Build documentation in the docs/ directory with Sphinx sphinx: configuration: doc/source/conf.py fail_on_warning: true build: os: "ubuntu-20.04" tools: python: "mambaforge-4.10" conda: environment: doc/rtd_environment.yaml pygac-1.7.2/.stickler.yml000066400000000000000000000001361444627033600152560ustar00rootroot00000000000000linters: flake8: fixer: true python: 3 config: setup.cfg fixers: enable: true pygac-1.7.2/CHANGELOG.md000066400000000000000000000306731444627033600144570ustar00rootroot00000000000000## Version 1.7.2 (2023/06/26) ### Pull Requests Merged #### Bugs fixed * [PR 120](https://github.com/pytroll/pygac/pull/120) - Compatibility with numpy v1.24 #### Features added * [PR 122](https://github.com/pytroll/pygac/pull/122) - Don't use deprecated distutils module. #### Documentation changes * [PR 123](https://github.com/pytroll/pygac/pull/123) - Update supported data formats in documentation ([2494](https://github.com/pytroll/satpy/issues/2494)) In this release 3 pull requests were closed. ## Version 1.7.1 (2022/12/09) ### Pull Requests Merged #### Bugs fixed * [PR 119](https://github.com/pytroll/pygac/pull/119) - Fix the documentation to include FRAC and light cleanup #### Documentation changes * [PR 119](https://github.com/pytroll/pygac/pull/119) - Fix the documentation to include FRAC and light cleanup In this release 2 pull requests were closed. ## Version 1.7.0 (2022/10/31) ### Issues Closed * [Issue 112](https://github.com/pytroll/pygac/issues/112) - Usage documentation uses wrong function name for 'get_reader_class' ([PR 113](https://github.com/pytroll/pygac/pull/113) by [@mraspaud](https://github.com/mraspaud)) * [Issue 78](https://github.com/pytroll/pygac/issues/78) - Handle completely missing ICT or space counts ([PR 117](https://github.com/pytroll/pygac/pull/117) by [@mraspaud](https://github.com/mraspaud)) * [Issue 22](https://github.com/pytroll/pygac/issues/22) - Thermal calibration error ([PR 117](https://github.com/pytroll/pygac/pull/117) by [@mraspaud](https://github.com/mraspaud)) In this release 3 issues were closed. ### Pull Requests Merged #### Bugs fixed * [PR 117](https://github.com/pytroll/pygac/pull/117) - Fix calibration when 3b is totally deactivated ([78](https://github.com/pytroll/pygac/issues/78), [22](https://github.com/pytroll/pygac/issues/22)) * [PR 116](https://github.com/pytroll/pygac/pull/116) - Fix typos and deprecations * [PR 113](https://github.com/pytroll/pygac/pull/113) - Fix usage typo ([112](https://github.com/pytroll/pygac/issues/112)) #### Features added * [PR 118](https://github.com/pytroll/pygac/pull/118) - Bump up python versions * [PR 115](https://github.com/pytroll/pygac/pull/115) - Add support for frac data In this release 5 pull requests were closed. ## Version 1.6.0 (2022/08/04) ### Issues Closed * [Issue 107](https://github.com/pytroll/pygac/issues/107) - Fix sun-earth distance correction * [Issue 104](https://github.com/pytroll/pygac/issues/104) - Links to POD/KLM user guides are mixed up ([PR 105](https://github.com/pytroll/pygac/pull/105) by [@mraspaud](https://github.com/mraspaud)) * [Issue 103](https://github.com/pytroll/pygac/issues/103) - API is missing on readthedocs * [Issue 40](https://github.com/pytroll/pygac/issues/40) - Calculated sun-earth distance correction factor once and add as attribute In this release 4 issues were closed. ### Pull Requests Merged #### Features added * [PR 109](https://github.com/pytroll/pygac/pull/109) - Add new unpublished METOPC VIS calibration coefficients from Patmos-x #### Documentation changes * [PR 105](https://github.com/pytroll/pygac/pull/105) - Fix the pod and klm guide links ([104](https://github.com/pytroll/pygac/issues/104)) In this release 2 pull requests were closed. ## Version 1.5.0 (2022/01/10) ### Issues Closed * [Issue 94](https://github.com/pytroll/pygac/issues/94) - Method get_tle_lines() raises index error when tle lines are empty strings * [Issue 90](https://github.com/pytroll/pygac/issues/90) - Change in masked scanlines * [Issue 87](https://github.com/pytroll/pygac/issues/87) - Unit test discovery ([PR 98](https://github.com/pytroll/pygac/pull/98) by [@sfinkens](https://github.com/sfinkens)) * [Issue 85](https://github.com/pytroll/pygac/issues/85) - Update documentation * [Issue 80](https://github.com/pytroll/pygac/issues/80) - Reduce rounding error in POD reader adjust clock drift ([PR 84](https://github.com/pytroll/pygac/pull/84) by [@carloshorn](https://github.com/carloshorn)) * [Issue 76](https://github.com/pytroll/pygac/issues/76) - IndexError in PODReader._adjust_clock_drift ([PR 84](https://github.com/pytroll/pygac/pull/84) by [@carloshorn](https://github.com/carloshorn)) * [Issue 74](https://github.com/pytroll/pygac/issues/74) - Remove Cython dependency ([PR 83](https://github.com/pytroll/pygac/pull/83) by [@carloshorn](https://github.com/carloshorn)) * [Issue 46](https://github.com/pytroll/pygac/issues/46) - Pypi and presentation work * [Issue 43](https://github.com/pytroll/pygac/issues/43) - Links to POD/KLM user guides are broken * [Issue 39](https://github.com/pytroll/pygac/issues/39) - Update release in preparation for conda-forge package In this release 10 issues were closed. ### Pull Requests Merged #### Bugs fixed * [PR 91](https://github.com/pytroll/pygac/pull/91) - Invert bit position in quality flags * [PR 84](https://github.com/pytroll/pygac/pull/84) - Refactor clock drift ([82](https://github.com/pytroll/pygac/issues/82), [81](https://github.com/pytroll/pygac/issues/81), [80](https://github.com/pytroll/pygac/issues/80), [76](https://github.com/pytroll/pygac/issues/76)) * [PR 79](https://github.com/pytroll/pygac/pull/79) - Fix tests on bigendian platforms * [PR 75](https://github.com/pytroll/pygac/pull/75) - Typo #### Features added * [PR 98](https://github.com/pytroll/pygac/pull/98) - Switch to pytest for unit tests ([87](https://github.com/pytroll/pygac/issues/87)) * [PR 92](https://github.com/pytroll/pygac/pull/92) - Allow PathLike objects * [PR 89](https://github.com/pytroll/pygac/pull/89) - Add github workflow * [PR 86](https://github.com/pytroll/pygac/pull/86) - add METOP C coefficients * [PR 84](https://github.com/pytroll/pygac/pull/84) - Refactor clock drift ([82](https://github.com/pytroll/pygac/issues/82), [81](https://github.com/pytroll/pygac/issues/81), [80](https://github.com/pytroll/pygac/issues/80), [76](https://github.com/pytroll/pygac/issues/76)) * [PR 83](https://github.com/pytroll/pygac/pull/83) - Replace cython filter ([74](https://github.com/pytroll/pygac/issues/74)) In this release 10 pull requests were closed. ## Version 1.4.0 (2020/08/06) ### Issues Closed * [Issue 66](https://github.com/pytroll/pygac/issues/66) - Typos in calibration coefficients ([PR 67](https://github.com/pytroll/pygac/pull/67)) * [Issue 62](https://github.com/pytroll/pygac/issues/62) - Computation of Earth scene radiance ([PR 58](https://github.com/pytroll/pygac/pull/58)) * [Issue 60](https://github.com/pytroll/pygac/issues/60) - Improve readability of quality indicators bit unpacking ([PR 72](https://github.com/pytroll/pygac/pull/72)) * [Issue 57](https://github.com/pytroll/pygac/issues/57) - channel 4 BT to radiance conversion ([PR 67](https://github.com/pytroll/pygac/pull/67)) * [Issue 54](https://github.com/pytroll/pygac/issues/54) - Function check_file_version should not be part of pygac-run ([PR 55](https://github.com/pytroll/pygac/pull/55)) * [Issue 47](https://github.com/pytroll/pygac/issues/47) - Fix reading of renamed files In this release 6 issues were closed. ### Pull Requests Merged #### Bugs fixed * [PR 73](https://github.com/pytroll/pygac/pull/73) - Fix azimuth encoding * [PR 67](https://github.com/pytroll/pygac/pull/67) - Correct coefficients ([66](https://github.com/pytroll/pygac/issues/66), [57](https://github.com/pytroll/pygac/issues/57)) #### Features added * [PR 72](https://github.com/pytroll/pygac/pull/72) - Quality indicators ([60](https://github.com/pytroll/pygac/issues/60)) * [PR 71](https://github.com/pytroll/pygac/pull/71) - Expose new metadata * [PR 70](https://github.com/pytroll/pygac/pull/70) - Remove config dependency from reader class * [PR 58](https://github.com/pytroll/pygac/pull/58) - export coefficients to json file ([62](https://github.com/pytroll/pygac/issues/62)) * [PR 55](https://github.com/pytroll/pygac/pull/55) - Refactor gac-run ([54](https://github.com/pytroll/pygac/issues/54)) In this release 7 pull requests were closed. ## Version v1.3.1 (2020/02/07) ### Issues Closed * [Issue 52](https://github.com/pytroll/pygac/issues/52) - Allow gzip input files ([PR 53](https://github.com/pytroll/pygac/pull/53)) * [Issue 49](https://github.com/pytroll/pygac/issues/49) - Calibration Coeffs Patmos-X 2017 ([PR 50](https://github.com/pytroll/pygac/pull/50)) In this release 2 issues were closed. ### Pull Requests Merged #### Bugs fixed * [PR 50](https://github.com/pytroll/pygac/pull/50) - Fix typo in MetOp-B calibration ([49](https://github.com/pytroll/pygac/issues/49)) * [PR 48](https://github.com/pytroll/pygac/pull/48) - Update metadata when reading lonlat also #### Features added * [PR 53](https://github.com/pytroll/pygac/pull/53) - Allow gzip compressed files as input for klm and pod readers read method ([52](https://github.com/pytroll/pygac/issues/52)) * [PR 51](https://github.com/pytroll/pygac/pull/51) - Use the data format name to id ARS headered files In this release 4 pull requests were closed. ## Version 1.3.0 (2019/12/05) ### Pull Requests Merged #### Features added * [PR 45](https://github.com/pytroll/pygac/pull/45) - Add LAC support ([5](https://github.com/pytroll/pygac/issues/5)) * [PR 42](https://github.com/pytroll/pygac/pull/42) - Update documentation * [PR 41](https://github.com/pytroll/pygac/pull/41) - Add meta_data dictionary to reader class. In this release 3 pull requests were closed. ## Version 1.2.1 (2019/11/15) ### Pull Requests Merged #### Bugs fixed * [PR 37](https://github.com/pytroll/pygac/pull/37) - Fixing geotiepoints attribute error for python2.7 * [PR 36](https://github.com/pytroll/pygac/pull/36) - Fix update of missing scanlines #### Features added * [PR 38](https://github.com/pytroll/pygac/pull/38) - Fix tests for python 3 In this release 3 pull requests were closed. ## Version 1.2.0 (2019/10/17) ### Issues Closed * [Issue 33](https://github.com/pytroll/pygac/issues/33) - Make use of pytroll geotiepoints instead of using a deprecated copy * [Issue 7](https://github.com/pytroll/pygac/issues/7) - Project URL points to wrong domain In this release 2 issues were closed. ### Pull Requests Merged #### Bugs fixed * [PR 30](https://github.com/pytroll/pygac/pull/30) - Feature update angles computation #### Features added * [PR 35](https://github.com/pytroll/pygac/pull/35) - Changed azimuth angle range to ]-180, 180] * [PR 34](https://github.com/pytroll/pygac/pull/34) - Use the geotiepoints library * [PR 32](https://github.com/pytroll/pygac/pull/32) - Updated documentation about azimuth angles * [PR 31](https://github.com/pytroll/pygac/pull/31) - Refactor I/O In this release 5 pull requests were closed. ## Version 1.1.0 (2019/06/12) ### Issues Closed * [Issue 23](https://github.com/pytroll/pygac/issues/23) - Add support for Python3 * [Issue 20](https://github.com/pytroll/pygac/issues/20) - IndexError if orbit time beyond TLE range ([PR 21](https://github.com/pytroll/pygac/pull/21)) * [Issue 18](https://github.com/pytroll/pygac/issues/18) - Error in pygac data zenith angle * [Issue 16](https://github.com/pytroll/pygac/issues/16) - Unit test failure In this release 4 issues were closed. ### Pull Requests Merged #### Bugs fixed * [PR 27](https://github.com/pytroll/pygac/pull/27) - Add get_times to angles computation * [PR 24](https://github.com/pytroll/pygac/pull/24) - Fix unit tests * [PR 21](https://github.com/pytroll/pygac/pull/21) - Fix TLE line identification ([20](https://github.com/pytroll/pygac/issues/20)) * [PR 17](https://github.com/pytroll/pygac/pull/17) - Python 3 compatibiity * [PR 15](https://github.com/pytroll/pygac/pull/15) - Fix selection of user defined scanlines #2 * [PR 14](https://github.com/pytroll/pygac/pull/14) - Fix gac-run * [PR 9](https://github.com/pytroll/pygac/pull/9) - Fixes: Dependency and docs * [PR 3](https://github.com/pytroll/pygac/pull/3) - Feature clock fixed nan tsm scanline timestamp #### Features added * [PR 28](https://github.com/pytroll/pygac/pull/28) - Simplify TLE computation * [PR 26](https://github.com/pytroll/pygac/pull/26) - Python-3 Compatibility * [PR 25](https://github.com/pytroll/pygac/pull/25) - Fix style * [PR 19](https://github.com/pytroll/pygac/pull/19) - Add support for TIROS-N * [PR 13](https://github.com/pytroll/pygac/pull/13) - Update installation.rst with TLE files * [PR 11](https://github.com/pytroll/pygac/pull/11) - Add scanline timestamps to qualflags file * [PR 10](https://github.com/pytroll/pygac/pull/10) - Usability improvements * [PR 6](https://github.com/pytroll/pygac/pull/6) - Add new attributes to /how * [PR 4](https://github.com/pytroll/pygac/pull/4) - Improve interface of gac_run.py In this release 17 pull requests were closed. pygac-1.7.2/LICENSE.txt000066400000000000000000001045131444627033600144640ustar00rootroot00000000000000 GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . pygac-1.7.2/MANIFEST.in000066400000000000000000000001721444627033600143730ustar00rootroot00000000000000include etc/* include gapfilled_tles/* include bin/pygac-* include LICENSE.txt include README.md include pygac/version.py pygac-1.7.2/README.md000066400000000000000000000011401444627033600141100ustar00rootroot00000000000000pygac ===== [![Build](https://github.com/pytroll/pygac/actions/workflows/ci.yaml/badge.svg)](https://github.com/pytroll/pygac/actions/workflows/ci.yaml) [![Coverage](https://codecov.io/gh/pytroll/pygac/branch/main/graph/badge.svg?token=DQMgf2LxuM)](https://codecov.io/gh/pytroll/pygac) [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.5832775.svg)](https://doi.org/10.5281/zenodo.5832775) Pygac is a Python package to read, calibrate and navigate data from the AVHRR instrument onboard NOAA and MetOp satellites in GAC and LAC format. The documentation is available at https://pygac.readthedocs.io/. pygac-1.7.2/RELEASING.md000066400000000000000000000033751444627033600145000ustar00rootroot00000000000000# Releasing Pygac 1. checkout main branch 2. pull from repo 3. run the unittests 4. run `loghub`. Replace and with proper values. To get the previous version run `git tag` and select the most recent with highest version number. ``` loghub pytroll/pygac -u -st v -plg bug "Bugs fixed" -plg enhancement "Features added" -plg documentation "Documentation changes" -plg backwards-incompatibility "Backwards incompatible changes" ``` This command will create a CHANGELOG.temp file which need to be added to the top of the CHANGLOG.md file. The same content is also printed to terminal, so that can be copy-pasted, too. Remember to update also the version number to the same given in step 5. Don't forget to commit CHANGELOG.md! 5. Create a tag with the new version number, starting with a 'v', eg: ``` git tag -a v -m "Version " ``` For example if the previous tag was `v0.9.0` and the new release is a patch release, do: ``` git tag -a v0.9.1 -m "Version 0.9.1" ``` See [semver.org](http://semver.org/) on how to write a version number. 6. push changes to github `git push --follow-tags` 7. Verify github action unittests passed. 8. Create a "Release" on GitHub by going to https://github.com/pytroll/pygac/releases and clicking "Draft a new release". On the next page enter the newly created tag in the "Tag version" field, "Version X.Y.Z" in the "Release title" field, and paste the markdown from the changelog (the portion under the version section header) in the "Describe this release" box. Finally click "Publish release". 9. Verify the GitHub actions for deployment succeed and the release is on PyPI. pygac-1.7.2/bin/000077500000000000000000000000001444627033600134055ustar00rootroot00000000000000pygac-1.7.2/bin/pygac-convert-patmosx-coefficients000077500000000000000000000333031444627033600222460ustar00rootroot00000000000000#!/usr/bin/env python # Author(s): # Carlos Horn # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . """Convert PATMOS-x calibration file tarballs to PyGAC calibration json format. The official tarballs are available on the PATMOS-x webpage "https://cimss.ssec.wisc.edu/patmosx/avhrr_cal.html". """ import argparse import pathlib import datetime as dt import tarfile import re import json import logging from scipy.optimize import bisect class PatmosxReader: """Read PATMOS-x coefficient files tarballs.""" # regular expression with named capturing groups to read an entire patmosx file regex = re.compile( r'\s*(?P\w+)[^\n]*\n' r'\s*(?P[eE0-9\.-]+)[^\n]*\n' r'\s*(?P[eE0-9\.-]+)[^\n]*\n' r'\s*(?P[eE0-9\.-]+),?\s*(?P[eE0-9\.-]+),?\s*(?P[eE0-9\.-]+),?\s*(?P[eE0-9\.-]+)[^\n]*\n' r'\s*(?P[eE0-9\.-]+),?\s*(?P[eE0-9\.-]+),?\s*(?P[eE0-9\.-]+),?\s*(?P[eE0-9\.-]+)[^\n]*\n' r'\s*(?P[eE0-9\.-]+),?\s*(?P[eE0-9\.-]+),?\s*(?P[eE0-9\.-]+),?\s*(?P[eE0-9\.-]+)[^\n]*\n' r'\s*(?P[eE0-9\.-]+)[^\n]*\n' r'\s*(?P[eE0-9\.-]+)[^\n]*\n' r'\s*(?P[eE0-9\.-]+)[^\n]*\n' r'\s*(?P[eE0-9\.-]+)[^\n]*\n' r'\s*(?P[eE0-9\.-]+)[^\n]*\n' r'\s*(?P[eE0-9\.-]+)[^\n]*\n' r'\s*(?P[eE0-9\.-]+)[^\n]*\n' r'\s*(?P[eE0-9\.-]+)[^\n]*\n' r'\s*(?P[eE0-9\.-]+)[^\n]*\n' r'\s*(?P[eE0-9\.-]+)[^\n]*\n' r'\s*(?P[eE0-9\.-]+)[^\n]*\n' r'\s*(?P[eE0-9\.-]+)[^\n]*\n' r'(?:[a-z]+[^\n]*\n)?' r'\s*(?P[eE0-9\.-]+)\s*(?P[eE0-9\.-]+)\s*(?P[eE0-9\.-]+)[^\n]*\n' r'\s*(?P[eE0-9\.-]+)\s*(?P[eE0-9\.-]+)\s*(?P[eE0-9\.-]+)[^\n]*\n' r'\s*(?P[eE0-9\.-]+)\s*(?P[eE0-9\.-]+)\s*(?P[eE0-9\.-]+)[^\n]*\n' r'\s*(?P[eE0-9\.-]+)\s*(?P[eE0-9\.-]+)\s*(?P[eE0-9\.-]+)[^\n]*\n' r'\s*(?P[eE0-9\.-]+)\s*(?P[eE0-9\.-]+)\s*(?P[eE0-9\.-]+)[^\n]*\n' r'\s*(?P[eE0-9\.-]+)\s*(?P[eE0-9\.-]+)\s*(?P[eE0-9\.-]+)[^\n]*\n' r'\s*(?P[eE0-9\.-]+)[^\n]*\n' r'\s*(?P[eE0-9\.-]+)[^\n]*\n' r'\s*(?P[eE0-9\.-]+)[^\n]*\n' r'\s*(?P[eE0-9\.-]+)[^\n]*\n' r'\s*(?P[eE0-9\.-]+)\s*(?P[eE0-9\.-]+)\s*(?P[eE0-9\.-]+)\s*(?P[eE0-9\.-]+)\s*(?P[eE0-9\.-]+)[^\n]*\n' r'\s*(?P[eE0-9\.-]+)\s*(?P[eE0-9\.-]+)\s*(?P[eE0-9\.-]+)\s*(?P[eE0-9\.-]+)\s*(?P[eE0-9\.-]+)[^\n]*\n' r'\s*(?P[eE0-9\.-]+)\s*(?P[eE0-9\.-]+)\s*(?P[eE0-9\.-]+)\s*(?P[eE0-9\.-]+)\s*(?P[eE0-9\.-]+)[^\n]*\n' r'\s*(?P[eE0-9\.-]+)\s*(?P[eE0-9\.-]+)\s*(?P[eE0-9\.-]+)\s*(?P[eE0-9\.-]+)\s*(?P[eE0-9\.-]+)[^\n]*\n' r'\s*(?P[eE0-9\.-]+)\s*(?P[eE0-9\.-]+)\s*(?P[eE0-9\.-]+)\s*(?P[eE0-9\.-]+)[^\n]*\n' r'(?:\s*(?P[eE0-9\.-]+),\s*(?P[eE0-9\.-]+),\s*(?P[eE0-9\.-]+),\s*(?P[eE0-9\.-]+)[^\n]*\n)?' r'(?:\s*(?P[eE0-9\.-]+),\s*(?P[eE0-9\.-]+),\s*(?P[eE0-9\.-]+),\s*(?P[eE0-9\.-]+)[^\n]*\n)?' r'(?:\![^v][^\n]*\n)*' r'(?:\!(?Pv\w+))?' ) def __init__(self, tarball): self.tarball = tarball self.coeffs = [] with tarfile.open(tarball) as archive: for tarinfo in archive: if tarinfo.isfile(): # open satellite specific coefficient file filename = tarinfo.name fileobj = archive.extractfile(filename) content = fileobj.read().decode() match = self.regex.match(content) sat_coeffs = {key: self.parse_types(value) for key, value in match.groupdict().items()} self.coeffs.append(sat_coeffs) def __iter__(self): yield from self.coeffs # noqa @staticmethod def parse_types(value): """parse the types of coefficients""" try: try: _value = int(value) except ValueError: _value = float(value) except ValueError: _value = value except TypeError: _value = None return _value class Translator: """Translate PATMOS-x coefficients to PyGAC format.""" sat_names = {"m01": "metopb", "m02": "metopa", "n05": "tirosn", "m03": "metopc"} sat_names.update({"n{0:02d}".format(i): "noaa{0}".format(i) for i in range(6,20)}) description = { "visible": { "channels": ['1', '2', '3a'], "coefficients": { 'dark_count': "instrument counts under dark conditions []", "gain_switch": "dual-gain switch count, set to 'null' for single-gain instruments []", "s0": "single-gain calibration slope at launch date [%]", "s1": "linear single-gain calibration slope parameter [% years^{-1}]", "s2": "quadratic single-gain calibration slope parameter [% years^{-2}]", "date_of_launch": "timestamp of launch date [UTC]" }, "method": 'Heidinger, A.K., W.C. Straka III, C.C. Molling, J.T. Sullivan, and X. Wu, 2010: Deriving an inter-sensor consistent calibration for the AVHRR solar reflectance data record. International Journal of Remote Sensing, 31:6493-6517' }, "thermal": { "channels": ['3b', '4', '5'], "coefficients": { 'centroid_wavenumber': "centroid wavenumber [cm^{-1}]", "b0": "constant non-linear radiance correction coefficient [mW m^{-2} sr cm^{-1}]", "b1": "linear non-linear radiance correction coefficient []", "b2": "quadratic non-linear radiance correction coefficient [(mW^{-1} m^2 sr^{-1} cm)]", "space_radiance": "radiance of space [mW m^{-2} sr cm^{-1}]", "to_eff_blackbody_intercept": "thermal channel temperature to effective blackbody temperature intercept [K]", "to_eff_blackbody_slope": "thermal channel temperature to effective blackbody temperature slope []", "d0": "constant thermometer counts to temperature conversion coefficient [K]", "d1": "linear thermometer counts to temperature conversion coefficient [K]", "d2": "quadratic thermometer counts to temperature conversion coefficient [K]", "d3": "cubic thermometer counts to temperature conversion coefficient [K]", "d4": "quartic thermometer counts to temperature conversion coefficient [K]" }, "method": "Goodrum, G., Kidwell, K.B. and W. Winston, 2000: NOAA KLM User's Guide. U.S. Department of Commerce, National Oceanic and Atmospheric Administration, National Environmental Satellite, Data and Information Service; Walton, C. C., J. T. Sullivan, C. R. N. Rao, and M. P. Weinreb, 1998: Corrections for detector nonlinearities and calibration inconsistencies of the infrared channels of the Advanced Very High Resolution Radiometer. J. Geophys. Res., 103, 3323-3337; Trishchenko, A.P., 2002: Removing Unwanted Fluctuations in the AVHRR Thermal Calibration Data Using Robust Techniques. Journal of Atmospheric and Oceanic Technology, 19:1939-1954" } } def __init__(self, patmosx_coeffs): self.coeffs = {"description": self.description} for patmosx_sat_coeffs in patmosx_coeffs: sat_name = self.sat_names[patmosx_sat_coeffs["sat_name"]] pygac_sat_coeffs = self.convert(patmosx_sat_coeffs) self.coeffs[sat_name] = pygac_sat_coeffs @classmethod def convert(cls, patmosx_sat_coeffs): pygac_sat_coeffs = {} # visible calibration for ch in ("1", "2", "3a"): s0l = patmosx_sat_coeffs['ch{0}_low_gain_S0'.format(ch)] s0h = patmosx_sat_coeffs['ch{0}_high_gain_S0'.format(ch)] if s0l == s0h: gain_switch = None s0 = s0l else: gain_switch = patmosx_sat_coeffs['ch{0}_gain_switches_count'.format(ch)] s0 = cls.find_s0(s0l, s0h, ch) pygac_sat_coeffs["channel_{0}".format(ch)] = { "dark_count": float(patmosx_sat_coeffs['ch{0}_dark_count'.format(ch)]), "gain_switch": gain_switch, "s0": s0, "s1": patmosx_sat_coeffs['ch{0}_high_gain_S1'.format(ch)], "s2": patmosx_sat_coeffs['ch{0}_high_gain_S2'.format(ch)] } date_of_launch = cls.float2date(patmosx_sat_coeffs['date_of_launch']) pygac_sat_coeffs['date_of_launch'] = date_of_launch.strftime("%Y-%m-%dT%H:%M:%S.%fZ") # thermal channels for ch in ("3b", "4", "5"): pygac_sat_coeffs["channel_{0}".format(ch)] = { "b0": patmosx_sat_coeffs['ch{0}_b0'.format(ch)], "b1": patmosx_sat_coeffs['ch{0}_b1'.format(ch)], "b2": patmosx_sat_coeffs['ch{0}_b2'.format(ch)], "centroid_wavenumber": patmosx_sat_coeffs['nu_{0}'.format(ch)], "space_radiance": patmosx_sat_coeffs['ch{0}_Ns'.format(ch)], "to_eff_blackbody_intercept": (-patmosx_sat_coeffs['a1_{0}'.format(ch)] / patmosx_sat_coeffs['a2_{0}'.format(ch)]), "to_eff_blackbody_slope": 1/patmosx_sat_coeffs['a2_{0}'.format(ch)] } for t in range(1, 5): pygac_sat_coeffs["thermometer_{0}".format(t)] = { "d{0}".format(d): float(patmosx_sat_coeffs["PRT{0}_{1}".format(t, d)]) for d in range(5) } return pygac_sat_coeffs @staticmethod def find_s0(s0_low, s0_high, ch): """Find the single-gain calibration slope at launch date. Arguments s0_low - low gain calibration slope at launch date s0_high - high gain calibration slope at launch date ch - channel name ("1", "2", "3a") Note: In case of a single-gain instrument, s0_low is equal to s0_high. """ if s0_low == s0_high: # single gain case return s0_low if ch == '3a': g_low, g_high = 0.25, 1.75 else: g_low, g_high = 0.5, 1.5 # Note: the PATMOS-x coefficients are rounded to three decimals. def diff(s0): return s0_low - round(s0*g_low, 3) + s0_high - round(s0*g_high, 3) s0_l = s0_low / g_low s0_h = s0_high / g_high if diff(s0_l) == 0: s0 = s0_l elif diff(s0_h) == 0: s0 = s0_h else: s0 = bisect(diff, s0_l, s0_h) return s0 @staticmethod def float2date(date_float): """Convert date float to date. Argument date_float (float) - date as year Return date (datetime.datetime) - date Note This is the reverse function of date2float. """ year = int(date_float) days_in_year = (dt.datetime(year+1, 1, 1) - dt.datetime(year, 1, 1)).days seconds = date_float*days_in_year*24*3600 - year*days_in_year*24*3600 diff = dt.timedelta(seconds=seconds) date = dt.datetime(year, 1, 1) + diff return date def save(self, filepath): """Save coefficients as PyGAC json file.""" with open(filepath, mode='w') as json_file: json.dump(self.coeffs, json_file, indent=4, sort_keys=True) if __name__ == "__main__": parser = argparse.ArgumentParser(description=__doc__) parser.add_argument('tarball', type=str, help='path to PATMOS-x coefficients tarball') parser.add_argument('-o', '--output', type=str, metavar="JSON", help='path to PyGAC json file, defaults to tarball path with suffix ".json"') parser.add_argument('-v', '--verbose', action='store_true', help='explain what is being done') args = parser.parse_args() if args.verbose: loglevel = logging.INFO else: loglevel = logging.WARNING logging.basicConfig(level=loglevel, format='[%(asctime)s] %(message)s') tarball = pathlib.Path(args.tarball) logging.info('Read PATMOS-x tarball "%s".', tarball) patmosx_coeffs = PatmosxReader(tarball) logging.info('Translate PATMOS-x coefficients to PyGAC format.') pygac_coeffs = Translator(patmosx_coeffs) output = args.output or tarball.with_suffix(".json") logging.info('Write PyGAC calibration json file "%s".', output) pygac_coeffs.save(output) logging.info('Done!') pygac-1.7.2/bin/pygac-run000077500000000000000000000134411444627033600152430ustar00rootroot00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (c) 2012, 2014 Abhay Devasthale and Martin Raspaud # Author(s): # Abhay Devasthale # Martin Raspaud # Carlos Horn # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . """Read a gac file. """ import argparse import logging import os import sys import tarfile from datetime import datetime from functools import wraps import pygac if sys.version_info.major < 3: class FileNotFoundError(OSError): pass logger = logging.getLogger("pygac") verbosity2loglevel = { 1: logging.INFO, 2: logging.DEBUG } class MyFormatter(logging.Formatter): converter = datetime.fromtimestamp def formatTime(self, record, datefmt=None): ct = self.converter(record.created) if datefmt: s = ct.strftime(datefmt) else: t = ct.strftime("%Y-%m-%d %H:%M:%S") s = "%s.%03d" % (t, record.msecs) return s def str2scanline(string): """Convert string to scanline. Make sure, the scanline is not negative. Args: string (str): String to be converted Returns: int: Scanline """ integer = int(string) if integer < 0: raise argparse.ArgumentTypeError('Scanlines must be >= 0') return integer def validate_args(args): if args.end_line > 0 and args.start_line > args.end_line: raise ValueError('Start Scanline > End Scanline') if args.config and not os.path.isfile(args.config): raise FileNotFoundError( 'The provided config file "%s" does not exist!' % args.config) if args.verbose > 0: # redirect the log messages to the standart output ch = logging.StreamHandler() formatter = MyFormatter( '[ %(levelname)s %(name)s %(asctime)s] %(message)s') ch.setFormatter(formatter) logger.addHandler(ch) # set the log-level depending on user verbosity verbosity = min(len(verbosity2loglevel), args.verbose) logger.setLevel(verbosity2loglevel[verbosity]) def tarfile_walker(path): """Yield all files from a tar archive. Args: path (str): Path to archive Yields: filename: name of the extracted file fileobj: corresponding file object """ with tarfile.open(path) as archive: for tarinfo in archive: if tarinfo.isfile(): filename = tarinfo.name fileobj = archive.extractfile(filename) yield filename, fileobj def logged_trial(processor, debug=False): """Decorator to logs exceptions during processing.""" @wraps(processor) def wrapper(filename, *args, **kwargs): try: processor(filename, *args, **kwargs) except Exception: logger.exception('Could not process "%s"' % str(filename)) if debug: raise return wrapper if __name__ == "__main__": parser = argparse.ArgumentParser( description='Read, calibrate and navigate NOAA AVHRR GAC data') parser.add_argument('path', type=str, help='Path to GAC file(s) to be processed' ' (Can be a file, directory or tar-archive)') parser.add_argument('start_line', type=str2scanline, help='First scanline to be processed (0-based)') parser.add_argument('end_line', type=str2scanline, help='Last scanline to be processed (0-based, ' 'set to 0 for the last available scanline)') parser.add_argument('-c', '--config', type=str, help='pygac config file to be used') parser.add_argument('-v', '--verbose', action='count', default=0, help='Explain what is being done, frequent occurrence' ' increases details') parser.add_argument('--debug', action='store_true', help="If given, stop on the first exception, otherwise" " log exception and continue with next file") parser.add_argument('--version', action='version', version='pygac %s' % pygac.__version__) args = parser.parse_args() validate_args(args) if args.config: pygac.read_config_file(args.config) processor = logged_trial(pygac.process_file, debug=args.debug) path = args.path start_line = args.start_line end_line = args.end_line if os.path.isfile(path): if tarfile.is_tarfile(path): logger.info('Open archive "%s"' % str(path)) for filename, fileobj in tarfile_walker(path): processor(filename, start_line, end_line, fileobj=fileobj) else: filename = path # Raise exceptions in case of a single file. pygac.process_file(filename, start_line, end_line) elif os.path.isdir(path): logger.info('Open directory "%s"' % str(path)) for basename in os.listdir(path): filename = os.path.join(path, basename) processor(filename, start_line, end_line) else: raise FileNotFoundError( 'The provided path "%s" is neither a file nor a directory!' % args.path) pygac-1.7.2/changelog.rst000066400000000000000000000207751444627033600153310ustar00rootroot00000000000000Changelog ========= %%version%% (unreleased) ------------------------ - Update changelog. [Martin Raspaud] - Bump version: 1.0.0 → 1.0.1. [Martin Raspaud] - Use version number from version.py. [Martin Raspaud] - Update changelog. [Martin Raspaud] - Bump version: 0.1.0 → 1.0.0. [Martin Raspaud] - Do style cleanup for gac_pod. [Martin Raspaud] - Allow PYGAC_CONFIG_FILE to be missing. [Martin Raspaud] - Merge branch 'master' into develop. [Adam.Dybbroe] - Merge branch 'pre-master' [Adam.Dybbroe] - Merge branch 'feature-clock' into pre-master. [Adam.Dybbroe] - Time stamp for mid-morning orbit investigated. [Abhay Devasthale] - Time stamp for mid-night orbit investigated. [Abhay Devasthale] - The support for NOAA-6 and -8 added. [Abhay Devasthale] - Calibration support for NOAA-6 and -8 added. [Abhay Devasthale] - Merge branch 'feature-clock' into pre-master. [Martin Raspaud] - Changed noaa07 and noaa09 to noaa7 and noaa9 resp. [Abhay Devasthale] - I/O part updated. PyGAC will first cut the start and end of the orbit if invalid geolocation is present and THEN apply user provided start and end scanline numbers to output the orbit. [Abhay Devasthale] - Absolute value of minimum scanline number used to remove negative scan line numbers. [Abhay Devasthale] - Modifications to cut out orbits that contain invalid lat/lon values at the start and the end of the tracks. [Abhay Devasthale] - NOAA-11 IndexError messages fixed. Scan line number format changed from unsigned to signed integer. [Abhay Devasthale] - Update to handle out of range values of time stamps. [Abhay Devasthale] - Updated launch dates to match Andy's. Also changes calibration coefficients for MetOps. [Abhay Devasthale] - Bug fix while subsetting channel 2. [Abhay Devasthale] - Better handling of incorrect time stamps in the L1b data. Correct reorganizing of scanlines if the orbit is missing starting scanlines. Minor bug fixes in the header reading. [Abhay Devasthale] - Merge branch 'feature-clock' of github.com:adybbroe/pygac into feature-clock. [Martin Raspaud] - Changed handeling of buggy lat,lons and scanline numbers (Abhay) [Nina.Hakansson] - Bugfix: masking invalid brightness temperatures. [Nina.Hakansson] Before values set to -32001 where multiplied with 100 and saved as in16 and got actual values -32768. - Merge branch 'feature-clock' of ssh://github.com/adybbroe/pygac into feature-clock. [Nina.Hakansson] - Rpy fix for pod-satellites (Abhay) [Nina.Hakansson] - Fixed the unit tests. [Martin Raspaud] - Don't use pod's fixed_error_correction rpy parameters. [Martin Raspaud] Use klm's constant_[roll,pitch,yaw]_attitude_error parameters instead. - Fix the rpy problem for older pod scenes. [Martin Raspaud] - Pep8ify. [Adam Dybbroe] - Updated lauch dates for several satellites. [Sara.Hornquist] - Quick fix to handle channel 3a/3b switch. [Nina.Hakansson] Maybe better to not interpolate. - Corrected launch date for metopb. [Sara.Hornquist] - Channel 3a/3b transition set to missing data. [Nina.Hakansson] - Adding metopb to gac_klm.py. [Nina.Hakansson] - Bugfix: apply earth-sun distance correction. [Nina.Hakansson] - If all pixels will be masked out, stop processing; i.e. do not produce output files. [Sara.Hornquist] - When using startline/endline, set times in the filenames that corresponds to the actual start and end time of the selected part of the orbit. Do not use the line numbers in the filenames any more. (changes from Abhay) [Sara.Hornquist] - Merge branch 'feature-clock' of ssh://github.com/adybbroe/pygac into feature-clock. [Sara.Hornquist] - Remove obsolete hdf5 files. [Adam Dybbroe] - Bug fix, one attribute was misspelled. [Sara.Hornquist] - Corrections in writing products, in order to match PPS v2014: - Make sure the string attribute has got the right format. - Changed nodata used for lat/lon. (the old nodata was inside valid range) [Sara.Hornquist] - Fix readme file. [Adam Dybbroe] - Gain factor applied to lat lon values. [Abhay Devasthale] - Minor correction in calibration file. NOAA-7 amd MetOp-A tested. [Abhay Devasthale] - Channel 3 BTs over the Antarctica corrected. [Abhay Devasthale] - Minor changes to output file name. [Abhay Devasthale] - Filenaming and quality flag changes. [Abhay Devasthale] * Filenaming convention is changed to harmonize with pps convention. * Quality flag file updated. - Merge branch 'feature-clock' of github.com:adybbroe/pygac into feature-clock. [Abhay Devasthale] Conflicts: pygac/gac_pod.py - Fix the clock drift correction. [Martin Raspaud] - Remove testing 2.6 in travis until scipy dependency is removed. [Martin Raspaud] - Try another hdf5 dev package. [Martin Raspaud] - Fix to allow h5py to build on 2.6. [Martin Raspaud] - Don't raise an error if PYGAC_CONFIG_FILE doesn't point to a file. [Martin Raspaud] - Fixing travis for 2.6. [Martin Raspaud] - Recent changes to GAC IO. [Abhay Devasthale] - Bugfixing. [Martin Raspaud] - Bugfix calibration coefficients. [Martin Raspaud] - Added missing calibration coefficients. [Martin Raspaud] - Add the gac reader generic class. [Martin Raspaud] - CI on 2.6 and add the PYGAC env var. [Martin Raspaud] - Completing calibration coefficients. [Martin Raspaud] - Finished factorizing, hopefully. [Martin Raspaud] - Add slerp tests. [Martin Raspaud] - Numpy 1.8.0 needed at least. [Martin Raspaud] - Revamped tests. [Martin Raspaud] - Implemented clock drift for pod. [Martin Raspaud] - Add slerp computations. [Martin Raspaud] - Add a simple clock drift adjustment (line shifting) [Martin Raspaud] - WIP: Update calibration coeffs. [Martin Raspaud] - Finish factorizing code for calibration. Some calibration coeffs missing. [Martin Raspaud] - WIP: Clock drift and refactoring. [Martin Raspaud] - Cleaning, and beginning of refactoring. [Martin Raspaud] - Supplements A, B and C added. [abhaydd] - Updating documentation. [abhaydd] - Updating pygac api documentation. [abhaydd] - Updated text on command-line usage. [abhaydd] - Update usage.rst. [abhaydd] - Update usage.rst. [abhaydd] - Bugfix. [Adam Dybbroe] - Added for scipy dependency. [Adam Dybbroe] - Added requirements file, for Travis... [Adam Dybbroe] - Added support for travis. [Adam Dybbroe] - Added buttons on readme page for code health etc. [Adam Dybbroe] - Added customization support for Landscape. [Adam Dybbroe] - Smoothing window for thermal channel calibration adjusted. [Abhay.Devasthale] - Updates on time information in output files. No 10th seconds, and seconds-since-1970 is now properly set. [Sara.Hornquist] - Merge branch 'pre-master' of github.com:adybbroe/pygac into pre- master. [Sara.Hornquist] - Dumping of debugging info on screen is avoided in gac_pod.py. [Abhay.Devasthale] - Update in output files: attribute what/time do not have tenth-of- second any more. [Sara.Hornquist] - Updated documentation on filenames. [Sara.Hornquist] - Negative reflectances replaced by MISSING_DATA. [Abhay.Devasthale] - Replaced nighttime reflectances with MISSING_DATA. [Abhay.Devasthale] - POD: Refined the tle search to get the nearest match. [Martin Raspaud] In the case of old satellites, the tle data can be quite scarse. For that reason, the find_tle_index function was enhanced to provide the closest match to the required date. - Bugfix in pod, and cleanup. [Martin Raspaud] - A correct determination of which sensor was generating each prt has been implemented, allowing the data to miss scanlines. It is based on the scanline numbers provided in the data - The pod data is also cleaned up before after reading. - The code has been cleaned up a little, to follow python standards. - Remove astronomy.py, depend on pyorbital instead. [Martin Raspaud] - Added h5py as a requirement in setup. [Adam Dybbroe] - Merge branch 'pre-master' of github.com:adybbroe/pygac into pre- master. [Adam Dybbroe] - Add some test scripts, and remove test data. [Martin Raspaud] - Added documentation. [Abhay.Devasthale] - Update api.rst. [abhaydd] - Update api.rst. [abhaydd] - Update api.rst. [abhaydd] - Update api.rst. [abhaydd] - Minor editorial. [Adam Dybbroe] - Fixing Manifest and setup. [Adam Dybbroe] - Updated usage docs. [Adam Dybbroe] - Adding a bit of documentation and the test case. [Adam Dybbroe] - Add empty (sphinx) docs. [Adam Dybbroe] - Adding configuration and logging. [Adam Dybbroe] - Merge branch 'master' into develop. [Adam Dybbroe] - Changed readme. [Adam Dybbroe] - Making a python package out of it. [Adam Dybbroe] - Initial commit. [Adam Dybbroe] pygac-1.7.2/continuous_integration/000077500000000000000000000000001444627033600174465ustar00rootroot00000000000000pygac-1.7.2/continuous_integration/environment.yaml000066400000000000000000000004541444627033600227010ustar00rootroot00000000000000name: test-environment channels: - conda-forge dependencies: - numpy - scipy - bottleneck - python-dateutil - hdf5 - h5py - packaging - pytest - pytest-cov - pip - pip: - docutils - pyorbital - python-geotiepoints - trollimage - pyspectral - pyorbital pygac-1.7.2/doc/000077500000000000000000000000001444627033600134025ustar00rootroot00000000000000pygac-1.7.2/doc/Makefile000066400000000000000000000107561444627033600150530ustar00rootroot00000000000000# Makefile for Sphinx documentation # # You can set these variables from the command line. SPHINXOPTS = SPHINXBUILD = sphinx-build PAPER = BUILDDIR = build # Internal variables. PAPEROPT_a4 = -D latex_paper_size=a4 PAPEROPT_letter = -D latex_paper_size=letter ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source .PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest help: @echo "Please use \`make ' where is one of" @echo " html to make standalone HTML files" @echo " dirhtml to make HTML files named index.html in directories" @echo " singlehtml to make a single large HTML file" @echo " pickle to make pickle files" @echo " json to make JSON files" @echo " htmlhelp to make HTML files and a HTML help project" @echo " qthelp to make HTML files and a qthelp project" @echo " devhelp to make HTML files and a Devhelp project" @echo " epub to make an epub" @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" @echo " latexpdf to make LaTeX files and run them through pdflatex" @echo " text to make text files" @echo " man to make manual pages" @echo " changes to make an overview of all changed/added/deprecated items" @echo " linkcheck to check all external links for integrity" @echo " doctest to run all doctests embedded in the documentation (if enabled)" clean: -rm -rf $(BUILDDIR)/* html: $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html @echo @echo "Build finished. The HTML pages are in $(BUILDDIR)/html." dirhtml: $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml @echo @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml." singlehtml: $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml @echo @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml." pickle: $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle @echo @echo "Build finished; now you can process the pickle files." json: $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json @echo @echo "Build finished; now you can process the JSON files." htmlhelp: $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp @echo @echo "Build finished; now you can run HTML Help Workshop with the" \ ".hhp project file in $(BUILDDIR)/htmlhelp." qthelp: $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp @echo @echo "Build finished; now you can run "qcollectiongenerator" with the" \ ".qhcp project file in $(BUILDDIR)/qthelp, like this:" @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/pygac.qhcp" @echo "To view the help file:" @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/pygac.qhc" devhelp: $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp @echo @echo "Build finished." @echo "To view the help file:" @echo "# mkdir -p $$HOME/.local/share/devhelp/pygac" @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/pygac" @echo "# devhelp" epub: $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub @echo @echo "Build finished. The epub file is in $(BUILDDIR)/epub." latex: $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex @echo @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex." @echo "Run \`make' in that directory to run these through (pdf)latex" \ "(use \`make latexpdf' here to do that automatically)." latexpdf: $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex @echo "Running LaTeX files through pdflatex..." make -C $(BUILDDIR)/latex all-pdf @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." text: $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text @echo @echo "Build finished. The text files are in $(BUILDDIR)/text." man: $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man @echo @echo "Build finished. The manual pages are in $(BUILDDIR)/man." changes: $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes @echo @echo "The overview file is in $(BUILDDIR)/changes." linkcheck: $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck @echo @echo "Link check complete; look for any errors in the above output " \ "or in $(BUILDDIR)/linkcheck/output.txt." doctest: $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest @echo "Testing of doctests in the sources finished, look at the " \ "results in $(BUILDDIR)/doctest/output.txt." pygac-1.7.2/doc/rtd_environment.yaml000066400000000000000000000007041444627033600175040ustar00rootroot00000000000000name: readthedocs channels: - conda-forge dependencies: - python=3.9 - numpy - scipy - bottleneck - python-dateutil - hdf5 - h5py - graphviz - setuptools - setuptools_scm - setuptools_scm_git_archive - sphinx - sphinx_rtd_theme - sphinxcontrib-apidoc - pip - pip: - docutils - pyorbital - python-geotiepoints - trollimage - pyspectral - pyorbital - .. # relative path to the pygac project pygac-1.7.2/doc/source/000077500000000000000000000000001444627033600147025ustar00rootroot00000000000000pygac-1.7.2/doc/source/_static/000077500000000000000000000000001444627033600163305ustar00rootroot00000000000000pygac-1.7.2/doc/source/_static/.gitkeep000066400000000000000000000000001444627033600177470ustar00rootroot00000000000000pygac-1.7.2/doc/source/api.rst000066400000000000000000000026571444627033600162170ustar00rootroot00000000000000The Pygac API ============= .. inheritance-diagram:: pygac.gac_pod.GACPODReader pygac.gac_klm.GACKLMReader pygac.lac_pod.LACPODReader pygac.lac_klm.LACKLMReader Reader Base Classes ------------------- Common functionality shared by multiple readers. Reader ~~~~~~ .. automodule:: pygac.reader :members: :undoc-members: GAC format reader ~~~~~~~~~~~~~~~~~ .. automodule:: pygac.gac_reader :members: :undoc-members: LAC format reader ~~~~~~~~~~~~~~~~~ .. automodule:: pygac.lac_reader :members: :undoc-members: POD series reader ~~~~~~~~~~~~~~~~~ .. automodule:: pygac.pod_reader :members: :undoc-members: :exclude-members: tsm_affected_intervals KLM series reader ~~~~~~~~~~~~~~~~~ .. automodule:: pygac.klm_reader :members: :undoc-members: :exclude-members: tsm_affected_intervals Actual Reader Implementations ----------------------------- Actual reader implementations building upon the base classes. GAC POD reader ~~~~~~~~~~~~~~ .. automodule:: pygac.gac_pod :members: :undoc-members: GAC KLM reader ~~~~~~~~~~~~~~ .. automodule:: pygac.gac_klm :members: :undoc-members: LAC POD reader ~~~~~~~~~~~~~~ .. automodule:: pygac.lac_pod :members: :undoc-members: LAC KLM reader ~~~~~~~~~~~~~~ .. automodule:: pygac.lac_klm :members: :undoc-members: Calibration ----------- .. automodule:: pygac.calibration :members: :undoc-members: pygac-1.7.2/doc/source/conf.py000066400000000000000000000160031444627033600162010ustar00rootroot00000000000000# -*- coding: utf-8 -*- # # pygac documentation build configuration file, created by # sphinx-quickstart on Thu May 1 12:56:29 2014. # # This file is execfile()d with the current directory set to its containing dir. # # Note that not all possible configuration values are present in this # autogenerated file. # # All configuration values have a default; values that are commented out # serve to show the default. import sys, os # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. #sys.path.insert(0, os.path.abspath('.')) # -- General configuration ----------------------------------------------------- # If your documentation needs a minimal Sphinx version, state it here. #needs_sphinx = '1.0' # Add any Sphinx extension module names here, as strings. They can be extensions # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.todo', 'sphinx.ext.inheritance_diagram'] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] # The suffix of source filenames. source_suffix = '.rst' # The encoding of source files. #source_encoding = 'utf-8-sig' # The master toctree document. master_doc = 'index' # General information about the project. project = u'pygac' copyright = u'2014, Abhay Devasthale, Martin Raspaud and Adam Dybbroe' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. version = '0.1' # The full version, including alpha/beta/rc tags. release = '0.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. #language = None # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: #today = '' # Else, today_fmt is used as the format for a strftime call. #today_fmt = '%B %d, %Y' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. exclude_patterns = [] # The reST default role (used for this markup: `text`) to use for all documents. #default_role = None # If true, '()' will be appended to :func: etc. cross-reference text. #add_function_parentheses = True # If true, the current module name will be prepended to all description # unit titles (such as .. function::). #add_module_names = True # If true, sectionauthor and moduleauthor directives will be shown in the # output. They are ignored by default. #show_authors = False # The name of the Pygments (syntax highlighting) style to use. pygments_style = 'sphinx' # A list of ignored prefixes for module index sorting. #modindex_common_prefix = [] # -- Options for HTML output --------------------------------------------------- # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. html_theme = 'default' # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the # documentation. #html_theme_options = {} # Add any paths that contain custom themes here, relative to this directory. #html_theme_path = [] # The name for this set of Sphinx documents. If None, it defaults to # " v documentation". #html_title = None # A shorter title for the navigation bar. Default is the same as html_title. #html_short_title = None # The name of an image file (relative to this directory) to place at the top # of the sidebar. #html_logo = None # The name of an image file (within the static path) to use as favicon of the # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 # pixels large. #html_favicon = None # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ['_static'] # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format. #html_last_updated_fmt = '%b %d, %Y' # If true, SmartyPants will be used to convert quotes and dashes to # typographically correct entities. #html_use_smartypants = True # Custom sidebar templates, maps document names to template names. #html_sidebars = {} # Additional templates that should be rendered to pages, maps page names to # template names. #html_additional_pages = {} # If false, no module index is generated. #html_domain_indices = True # If false, no index is generated. #html_use_index = True # If true, the index is split into individual pages for each letter. #html_split_index = False # If true, links to the reST sources are added to the pages. #html_show_sourcelink = True # If true, "Created using Sphinx" is shown in the HTML footer. Default is True. #html_show_sphinx = True # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. #html_show_copyright = True # If true, an OpenSearch description file will be output, and all pages will # contain a tag referring to it. The value of this option must be the # base URL from which the finished HTML is served. #html_use_opensearch = '' # This is the file name suffix for HTML files (e.g. ".xhtml"). #html_file_suffix = None # Output file base name for HTML help builder. htmlhelp_basename = 'pygacdoc' # -- Options for LaTeX output -------------------------------------------------- # The paper size ('letter' or 'a4'). #latex_paper_size = 'letter' # The font size ('10pt', '11pt' or '12pt'). #latex_font_size = '10pt' # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, author, documentclass [howto/manual]). latex_documents = [ ('index', 'pygac.tex', u'pygac Documentation', u'Abhay Devasthale, Martin Raspaud and Adam Dybbroe', 'manual'), ] # The name of an image file (relative to this directory) to place at the top of # the title page. #latex_logo = None # For "manual" documents, if this is true, then toplevel headings are parts, # not chapters. #latex_use_parts = False # If true, show page references after internal links. #latex_show_pagerefs = False # If true, show URL addresses after external links. #latex_show_urls = False # Additional stuff for the LaTeX preamble. #latex_preamble = '' # Documents to append as an appendix to all manuals. #latex_appendices = [] # If false, no module index is generated. #latex_domain_indices = True # -- Options for manual page output -------------------------------------------- # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). man_pages = [ ('index', 'pygac', u'pygac Documentation', [u'Abhay Devasthale, Martin Raspaud and Adam Dybbroe'], 1) ] pygac-1.7.2/doc/source/images/000077500000000000000000000000001444627033600161475ustar00rootroot00000000000000pygac-1.7.2/doc/source/images/noaa_class_preferences.png000066400000000000000000000711541444627033600233510ustar00rootroot00000000000000‰PNG  IHDRP¿ø¡Œ pHYsˆˆÈ¥† IDATx^ìÝwTWàwfvYzï MšTlX#Æ[4ö5ÖhŒKL¾ÄØb4SŒQcì=öØÅ6‘*½÷º´eÛÌýþVÐEY"æ}NNν;õîýÍ¥!€B)Vœ€B53!„²03B) 3!„²03B) 3!„²03B) 3!„²xŠJ°7þúçý+•,€¶wç¸åm-)à ã>º)ÆØùÊO~}øuësA{Ͻw±’¥øLt«8~Sêý Ûi?«Â.]|uc.aL]oýäÓU°àÑMyyPÀ0<mu‡6¦#ú»/öÓÑÝ 2ú9C\·Eñø<}=-w'«O†»·áSuJØâK/Ÿõü»ŸE©k¬-úù»,yßܶޚ¿”¤"¶\ÃÕ˜Qœþ/,½>fä‚‘wU¢¿Æ¢›€dWP:Æ”ܺe±-KB©Ï\1|»gsž“qù±½=®=ÄEÑ4­.à›› éçùm/C}Å#§RU¼sÿã!EibJÏ@oÊ'}~ôVþˆ¢ÿœælÓ¨QU¹{ˆX¨ŒI:”G€6²ëÊ£ØâÌqÕ…µäE§BE,¥a>ÖãußÀX¹\(¬x™üÍæ«nWrŠ5!2©¬ @xónôä•·~Êl°V=„*‘8!1këþ~ëbBêFPcˆôIPXßÅFÊëþUEÅ‹æþøÛ¥vâ^½çš!„eÙJ‘8)9kËöÀA§‹««(ƒ»w"xîõüÄ VÎÊ‹Š$DCE±ŠÞJœ ¡7Vô8ùLYMEdE{o—|>ÚGió7]•]ÉU{P°ÉÃ\½¶¾,9ó\!  ¼mj‰ÿ¬® 5çv‡›ªŽ“Æ?Š]s»¤”Ÿ=ìïëWS‹rïÓé{?uªºëW^‰Ú/aEëNeMŸßF¯îkѺVkg8zÐD.—æ»–t-Ÿ-Œ ŸpØèñT3ÅêõÈžF ÙŸÉÑK”Ek[®žå䥨¡QŠ“¼ù¢_†Tíþãæ’(Ž15«ž éìôëtK–â¹Y½Öi¿Ô\Ü3Q#D*•ć'l¼U\Ld÷O‡ïëÕ{–aJªB“D,­Ófïÿ¬L€ç‘èe03TˆNÞÎ)%@khÛó+“ÊÈÓ äà†½ù`æcÛG=û\ÉÍžlÞ·fDÁ=~˜™ÊPjý-ô©”ú³{ZÏ`€ÕóKX¾F²Œ +’9¶¤èay–†mÌûh=ë†yðæ?¸,%¥ÉE±l›Î õÔšVW«^5EvÓzšMù*ø@Iº}h˜éË{+BÞøÁf|­.¬ú4½Á6â_Fqæ Ëõ¦4;Zßp •Fõ?º´q’ý3úŽ˜“Ƴ³º4q¶B@ê{é1š(Ö@¨ž&¶0Ôt\~úÞ9ÊØ¯ý/ÚO†^¬` Ów‡{÷öãSº–c=ùÿ„ÈXaÖ‰XŸ¾ž [r:´B@ëZõäC¥â ›†b´kºš×ø$¥ÆÓªîóJÉ6Aë[ñžÞ‘¿…riá¹éÌÞyaÎæã1"KKeršgjbл›ëª¡VpùªÛB)wiû úO½«­µ®8q:bËý¼ˆI%ÇèêkûzÙ9ÚµÁ˲§UùK¾¹¾)ƒ#´æ”Ewû (®|ÛúËó"¤­ñA7+AÅõý­gʺàÃbºã¨îsŠ£¿¾SRÂ×™ùY¿‚”•'“Î'•çˆXZ hcm2r€çWþú:€\˜ÿÇɘÝaEq%2¢®áâdõÉpYm‹g̾µ»‚›Û}B¬zGÿ¿4ÇzŸgüÄ”-“OÅÓ*8 =Îíí wêkÌ@Ám¶çHøÛÖz°W£þxT˜PÆV¦ã†vøÎ_W³îf6†â{Ùi3wÄáJ*¤Ñ§®u8Z,×´Û¹@÷ÔžØk…ÄÄ£}àêqÌÊs©WS+Ëh5;³1ƒ<—tÒU‹x`µ>©ÈÓ"½ÇGòÛG­r3ÏL]ûwܱaŽ”625гÝÿZØñAö4Ôiu\h6¯=ÿZØŽ1cÐfÛjÿA¥ ×¶`ÑÂk?åƒÝÀÞçÚ¬9—z-]$âkuôu\5Þµ—@äOCbÖ\J¿‘ZY(§L úø»|3¤‹€++Üq2ꂸr¢©§ÓŧíòzèS@ª„GÎDm}Y(©$Œ¡¡nGoû壜{TÏ©Œ’ýzm$:8%D@ wµì«[ÜöJL<+>s33ß×Þ” ò·Ð˜^ÂU{P°ÙÓ\@ž–y6Pæ¾¶}ÔáYfp¥Â«á95g—À•¦HŸý£!„ˆ«ª"C"~Kà€gnÒ£¡¡áØò²ò+§Ÿ^–eîbÚ®¡AFC(]JXLاée²Jù‚5·¶çr€¢XYvvþ¡¿ î—½wÆDñ•@D‡¶^›ô Š«® ò’"áµaÁ)ò»k=;4¸rÑãè\®~ìÑÚÛš~7ÛýƪÈP‰èÀ¾ð±íüÚ?\)å(ʾWÇo-c®Ô{Å3$öâý™"©œEëx‘§ÖE…Iª×§Jœ˜ñCbA*=øpWW:á»ûÇ ¹šEEeXXü¼¨Ü§‹¼êα!\ü;}ÿÌȨý¸ªª°äâµ’+!Y«—ô\îTûI[¼f]`žTÃÍT]§¬<+5kÓÖR‰þ _Ü”x{IHB c¤Ã§Ê@’õÅ–4a tl */Ýê·?·P@8..mU|ÎÕ‘½ÿqª?+¨ˆ Øý¨æ³6;3÷¯Ãyç£}—8;WO#â}Þ+±@``Ø.;<`CÃõÝkš)¸¿Çe©À\×R‹Ž.)¿}+lh1ïÉ '{Ý9~}ð©¢Òš=Ëæfçú»àJ¼oÐ2g—Ь9ßïÌf«[”¤°ä•G× ö|ë?ΨòÏŸg?‘p­§§i Òì‚â W‹¯ÇU]]Õ¾û³‹¼H”h”èMÈ‹ö e´žÕhwžÏæ#‹§k3IYDò±"»yÆ”¾·í 팃å$'4=h²y?5ù(+ž 5‡û›j<û`Uóá÷1uçÝ ñû:cï*L¤Ô >›Ò®µ“rA{Ï0{ëÕ™ÝO#Í•:½FS GA1!EåÒ‚ˆ´ %çõþ¥³6Sœ½týí­™$-<§ü‡>™¡íLÊ&tß?8ÖS &Lù(V ÓaPÏ3cÌ-ÙŠCN½#gäxt0o Û¸ò¬%ßg)LäÛy†®óôlë¶{dn·ÃåIóþ›Gç ¨Y:ÿ9ÉÚGÍ<Ó²Þ¢5˜Üi¤\DõõÞ–.j)ùö IŒõ/˺̴eŠâ£‡¯º/•\}R$ëbø÷п 9àéLœî¿¾“Ž4-aö–ˆ+eeÛ ƒ6vÿéÂO9ÆØéü:ï.w?íÙê±¹ 3öfd°À30_:Ñs|[~ndìç’£Êò¾ù-¼ó~žÕõ8‰ÐÄãÖrO-ª0ôžÏ¦” ¶òÔý¢Mnf ÞÿÀ•–\ ç«N,ªŠ KØüPÊPfƒ\x @X™ÈÀaÏWn¾’Ò|ªàór eåÛáÈtG?µŠS‡îN»!¼&tÇÚ€Ô]NW]ù.•ãÙ¸¯t÷á÷ß^ ­5 »?>ókE"o=»'=%"|Iõ)s òRÖpÁ¢Î³LÅqUÔ±¿n6VÿŸž5+\YJ;xOwm¬ô‡Õ—¾ŒgËb3. >>}¦¨”PFíÜ÷ÍpñתºtôÎÔ¥…‘‘ß„XM‹z¸+›Á¼¹þ«}´Êâ>ù9âJAú£¶ý?,ÿ+RÂQ¼þÓ?ø§¯&ØøÀ»O”šˆ£ó¸î¶¨ÑÃÌP-ÑÓ”£ù€2÷±é%ƒ1]õ7/‘É vß.›ó¡£a1ÖGpø–˜fˆeû¹—~T*`Œ­Ç¸4x¾Ý4<=ƒ:ÛMà4Ä’×@O\¢ ¬ÌGú;|ÚϦ½v£µ^‚bÜÕ?­Kç‚™¦ºEÊ)•CeʉHZÊðôÔéêùò|}M>¥é|a»S…°J¢¥iÄy%ef Nƒˆi±HaÞÊ`<wYyyA¤4éajÅ7X<Û»&¼°hYíkŒl¿jáÉO+€'H3+)k}>EX"аԤ@JD•Ò*Qîñp  ëãõKo# ÀÍí·9j·ÄÚ¶^Ú\huE3ÚZjz ”ÔÌHø­Ä»bZsêìk½ùànÞùhei‡£EÒü”?¼·VW¤˜Þ}]»jQ`ìaÕ™Ÿ’!!E¥9@ƒ™!ö}tÝ)­>p|ûqúPóo¦ç ïÉŽè$Ÿ¿z_ÀèMíÒÝÐ;¡Ýá;÷ÎIJN=©ZòO®ž­©Î$gþÍ ý´Ÿb/ :õm?/(sq¼ìfHnÑšÅéûº×É@À1ñɲ—ÔïQsccj³ «¶øº®¶: ž^‰»$$@QÏV§&›€¢ÚögêRjÏö:EQ@A#9[M½s÷â…6Ï?ÙzÅ×Õ¨™9[´f¯Öõwˆ ­†ÂEŽ%„P”£—c³zëNkAAõß:š5 ÷ŠúÏ&0ÌóÌ„ç›]{Ë'}19R=MÛÆz’«f½õ¤5ÝÕý§õmŸ´ývÆù¨¢¤JŽ°Ò„˜ä¯žf…Ìx²Wýú¨Yaf¨É||õ%ß³"â7³×{Ùª™Œí¤¹óR%[šþíE¹ €ge3Æî%½RS‡m³B¶eæÉ¥ƒ!¿»÷ùÌ¢yšùùþÞ»`è ¶ªpÍŽè~«¼:ª)Öi˜¤ð¯à9¥f2Ì N ”ŽÕkºÏ0cØ?Go hŠ¢( €TßšJ’nElM—ZkÊçýþì¤ÁȹZ´æ@õ'âMGʳ¾Ø™ÈEQªÔ˜éÇÍïN4ÕQ\ôs4C×tÔÒÜ Ç³³YÐtñ¾û¥»·:›??0€ž¡ŽÂY’™RœKŒ¬) agn~F¹ØXÌmS³Æ §x.ÖZLh™\V+Sóåj’“ŸN(¾‡­6ïÙ(åõ6»QÏBˆ²5Ób@Âãàó£3 ¤²ôvke¥k¯Çc¸²º/Ó0Ѷ !…£ Ý]~ªË?‰.£Lõ\LLlMfð˜šdy}u®¦~#h{sMÊä¬ðQ;ÅR‘>kÝÓc=¿ŽF¶¸#ÎÐjåÔ¶¦Œ¤¼L5vZú!”ú‡Ÿt[hES„‹¾ø`E¤”€â¢cªï,ª›Nri±˜€š¾¶µ@ŸyCH€°«eþ‘— P9ýdæãÜò°Ðˆ…çrÇfkªÓW!¼—Xr7¥²ÎÞ£:t³óâp¢ÝÛƒ¿¹W“[z#0dÜé")ž™ýìö¯7’TJíÆQÎ~m¼ù\Å®ƒ‘— YÂV]<ôþêKN³ÏN}XûÙN-~[ëa&záñOqb)a“‚C‡®»Öþ³“žû $µÕž¾”¬ßÊ«S€«ükÏ£?Ÿ–%eåïܾ7¥èÚÃÌxÊ|du *2zÁÍ’ÊÓãf¬¿á¿äŒù·ÑÁ·ƒ¬çœó]u}ôß¹yÏÊÆlX'S{>PÚºu UÂq†ªÈÓSö's@ÃÙ~œÂ ¾†Åt­C—*XIÞî;Ó>ÐQs´i·!‡ÅŒé¢× ‘”æ¤;œŒ{p¶œ”„G,¹g½»¡·¥cõÃT‡k?&¥qò3¡Û»ô™ßàKe™‹¿Ï¬7‰¢ =Œ7×¥H??C­øÂÊ¢Äqÿ hC"#r"+q~0&ºmy,%qׂ}S&Ú;òÊbå ?\öÔ.Kʾ‘##‘ä•q l}ƒ÷MP&}z…¸'Ï ±@™vôù¹žUáÅ5±1òò?v† XÛy`ýEO[ÜQq¦Ã<ÔÎ=– CBº­Ëì(¨¸^œÃpeâ¢>f¢Ï‰¤§‹ÅWŽß¾r¼æE_wö$W¿Ò\ƒJ¶*wé·Õœ}îõy>cžë®qæäç¬þ9guítF×lÍ|¯^‚Úk=ªÄX;ÿ24sÀÉ"a\ô€ù1j Èä„P”¥oû•¾|xv']5¾éŠ©ŽW6'ij—¬<¹‚¡Y–㨙;ü8ÌD^¯ò+ë¿jûÔìÝ~ÿ 烳ÅåéI3¾KªL{y­é¢ãâêóQìýc…G¶_<¶‹¦YNN€|>ѹ›c媠‚…Q’'ç¯ÛÜаÔ$…%â h-“eƒ›pãz 8ÎPîÁíÔ€âô²±Qì™nïÙ»3„{x+%œ` ÇtÑ­p~[›Q ]Dz=´±ý/ã-)">y(üR#φ2êÐþמZ ©ÊÿnJFƒ#’ZE 4ÔÛ,ø¸Ï“¯=ü5€rÜýähÛNF¼ò¬œ3Q>íÏÏsjC‘]‰‘Rv&Ûw1æ x<3Ý6öîçæ» ±ÕP+/¾ð(?ÏØî·/;}¤I‘ÝŽ(ld!Λ¿7#‡­kµqŠ­Ú®ž¿÷ÓåS ÏOž³/£@¿Þ¢-Õ^ÈPšÏí½¥·i[-.)&ëR:Õ}X÷Sà øòŒÜëBÂ3s8º¦Ïæ¾ÞFjê ­©­åçë²í›÷öP@wÖqY{]5Z]S£‰Zý=Çk?¨×ão:/ïfÚÎ@MƒÇ ìësùû÷–µUá £>~×Q}î~æ1ÎU×Bƒ&À˜ZšMÛû·†Þý&íýn}Ûyq'£¶:|š€Ž~ÿ÷}¯­ì4¬ÁçÉ4½~=¿çØ€;óÜǸ蘪Ó<>ßÂÊlÒè÷;·ãml·Õ{[úYú 4€ð4µ|}]w}ð};>Å×ÿliÿóãØié°’ŒOO¯ww#ßõ^lÓÀ jF”â£B¡F4t¦B53!„²03B) 3!„²03B) 3!„²03B) 3!„²03B) 3!„²šðŒÂS‰µ¿LBè0±i?RÕ„Ì€>mþ[Œ¼ž!ú¯mò¿÷ökÃ]÷&þË{ïzÆK~h²axm !„²03B) 3!„²03B) 3!„²03B)KÕ™Áï?c4å°þLJ>ùÛuÅù—óóý1Yîþ¡³FÓ.¬Ni´†$ôžõÇG^©|á7[—5eåY›OŽZÌ=í·*hCŒ´ÑõnNøÃ7Gõ?¹u¨¢v ‘ØtTÚ•Ÿr^o J®*ɾvÝtʱÉäŠ%¨w8dY³ç6ú"ì>«Xíß"yxÇüãÃúS||ÄdÖé^¿? ©¬·žJ7'}ê’éÜà¿+jΔÃúSN;îúMðú¨*ö5ÁháƒKµuê¶ö¦ip*ô¬Qé|ÄdÖ™><½ÿšk^CþŠcQ¯W”%†u˜z¸ÍöL‰bµ–£êÌŠéÐÃë«Avîò‡oŽò´˜q¿F^,Ó7ÔsaOKGiá´;âæ@ñ:øl˜àÚG—R,RB ­*£?vŒïZÛµH›ReÔÎeõX÷á&²ˆÈÍaRòë)+اÔȯí íÚ)Œî°a^_ô4„ÌŒ Ûž\¨z£¤R\QòŒüQiàî8û=+›Òì£Ñ•ªÏ©WcKRW^(+Nn(#çïF{L²ážÜ Ÿw¡HÙ“¬7ƘX/›è»¦»~Ó¾X׬ZfÑŒ‹¯ë¢ö̾&SWÜ;s%úÄû½Fg‡Ü•œ(”Š5'‡•Ó¼ÞK{¥’%°i呟­=®/Ñß½9ì\~U©œ1±4Ÿ>¾ãBë¬IÛR+Ü;xÖð¨Ù—ÃÈO'‹ü&>ÛWKx/Ø{{v‡Iƒ~'!>û ¼¬µÒ³£¥šýFúïèk ÎŠ®ž ýîFn|%ebk½h²ßt»7Ýðâ”Â¥o×fJ7m8IV6ñAäWçÓCr%”®þБ]7y”|±±ÞV,råþíÄÔÇš};k¥„dó gÍìñ­»àåMLpØÒ0ã Ú¸Eõ\iÛ&€\Îd­}¼÷Ïtt᱉"–N½›/Ùéû®:jµ¯mdU¡<-ñëƒOÏ&‹ªÚÝzµÿu”eÝ%¾PjeID×Ά}'/¶ŒXš>ÞâJña½{Ü©Ç{µÝ;w61'gŽ?Z{'?UÌX;Ú-›Ü~Œ%œjúV7 mK‹üµMS“Næð]ÌŠ+9wêñ^m÷NåŸÕ]ÿ Ýýž„­¸˜ù¤„ÓÒ×é>¸ë_}ô(‹H:Q¬=±·Ùóï}ÑÚýû¹×l£‘vñ»´²¸"¯9@–píúÀS%6ƒú\Áß¶îêÚ,ݥ˖™–l=öGxI>«æäá¼aš{7õgóR)y+öj98öï8ÞTF´ ÎäWÇ¥4?óëõ!‡e–>Þûg::We,Rl«j9×n´ß_àäk«›šù¸R­ÇÐn{–60ÑH ^l„QŽâëkÈã®=ÙÙ£—uí4YbX§µqTÿ¾Æ¥ž¿ê¼|äçÃ3Œ©nð}©¢k™r».ó-Šw^ÍŠ–ëÏ™Óã«v ß=´ëAn¦ºÉü™Ý–¹ªAEÁ ;aî}ïn¶É5»"È5±n¯xmür0º¸§î8wmælÜ÷dwT™Ñðöq]?ÁÙG-oñâ{Àt¸½äVt9±°ß´Ào¸Q3¿É”?×j”®å g¤%a™Å×ìùž×Ïs»ýÔG¯ êé²K…”£ë _ušÖúhJïÓ잣·óêéÝvM°3ËËX$1A`±|ˆ™E»t=µ¸ýD»îjìÃûéœ$ðan¥ºù¸ŽZ4¡ôÍ¿˜ì9P«üܱð£B.ñÚÝ)çÊÚéuy‰§waê—ûâã_u1â• íœø$?ôa·y'\¿¾9ïB«ÅH’¢&lzKb8k¼Ï²Nê9b–RÜŠš±ï?¶ IDATEsÒrÙ'f†eÛΦe7í´ŸH+¹¶]]FZs !QÛã9IRôĉB/¿Ó+zÌ6,Ù½çñ±Òçµ\U¨ÊþjË£sŒÝö;ý™à V…×9[j T–påΤ39æmWNôšh&ޝ4­{8>xv$öâÝY—óùÚoo£“?ktXõ™ímõë!i7]æÿ3óžX¯­Íû¦Ï<¥^¯9 Æ}z0%ÖØyÇ‚®ëú™ëKe5m„T½•Ufç0¡îÀ„°EEåOcÒ®çZCÇÙàÙÛ’ñÜùk&þÊ£Ow…lJ¡ºŒè¼È^vô¯ •qšóæ÷=;Ù¢êIäü eÏç¥JDZ.§Ô{u0®é¿ºÝÛjT¿MÊ3KJÛXùÊ«[4ÖV%êƒú9øñDçb/W5<ñåP­3i°­¹¬ð§c©J\Ï#Ò*Ò¶“C]iÄíˆ_3tFøë•çÿv1³æŠ'É%†ãz› s7Že«Ûá\qÞ…4bÕF×´útàu±I~±ðÂÂ`<ìôùäÅ%$ß ]X ÓµóÁOýúhÈÄD9iOR´žÃ†éž½¹ÜŸ·Ýÿ3ïϯß+Ú?khDtpמȻŽèücoí¤;'Í©~¸‘Hyvs:h•¥'m¸-lö1Лžn7UÍ&SÀ·0j™xâZY¶°¢ ˆ´\B´¼ŒŠâÙØ›÷²§€ãùæï¹“*¬Êd«–Ь5=s“^nZ4Ñížq&Eð0F®ßÞ~TÐN¶}iƒ¸„³WJÂ2EÒÇEUù{ï­“¬ŒÈ¤¥I,8¿Y\òlÝ¡öÓå´K±Å92óVüÁd'qüa£º,ïÈh;“EÄŠ[QÝHý‘CÛÍÔÑ‹¼ž}¬RRÌU1¥ïæ´´¿Y&—y$¥¤°œMˆËJ”³Ôõû#nDz„+‹Éç@¯f ZÕ¾×ݳ¯”ÒòØ×ÇÇIâ³Dlíɯ4åÅÒ’ë‘ÅU<³µ3¼§éôtâȸ:‡CžWób"ºY"æ™Ïãü‘¶ŒD¦Ì Ͻ™ïfo¸Õ¯‡2ïÔakoÝҸإg£ÆïÒ ™W{fÇh¸×iN$'W‹&¥ÉÉ›.›tr6ŸôžؼԽ1Ð{²]Ûº Fž÷¿oþù%Ðùh’ç@MøçYOoÖ'ío®|têzúmí§¯&I»%aåÙ«¶ä)G˜ÌÒ2òô§ç›¶:’vý¶ûuжõóûµŸ.ÓÀ!.“X2|àbÄü"4îìf?Õ•Ž?›“ÎñG}à5¹Ý«<óÌáÂkqÒévŠs¯‹ÒÖ­Û+ÊÓk ÄWãd<;·¯ûÛ9²‚‡Aù£s#YK ¬æ qqM­:ô0¶¸TòÊÛT-š¤,çbê†~Vò3{oÎy¤6t”çrãâµÄ&שUýÿŒ÷>Ü_èÐÃ{iseÿÃÃu7½º %àoeø8}ÿÞØ‰ú¨nzTufÔÉ9 h5†°€gúåòŽCjº žéo·0£¸ÔÖe× œ,îæ½Aû²RÓJËí E×v.E2®7¾@ñ4xTÍæ4:Ÿ©î XŽðLø®z¨”ŽÁó®¡U–µ#(+ÿÎ6¨Þ|-Mæ~íkÈ ¥šp!¨šEÖí‡^X@8@¿Ø]½ÙV7•¦‘QOwcžuÅÞ ¹ÁÙeiÜ Od#Œ…랅̶àÜ 9»£Óޤ@èSŠ J~¢n½ÇO£Þv0†³>qOGÍÆÆÈM¨÷!@©X&&XžµË¡¹6QèS%u_¢*ßµ6/¼<ðQAE;3m”ßËäùVç!h xÕ+õ²wPŒ:ÿ…cYgbƒ0¸N]E´ö„Ñ.»WGE–Ô¬Ry£½yÖèh]ÝJë¡€¦ù êN™wl¿Ú<ë‹ „2 >ÄvzV“ø½aùž&oz”r[2à€ê¶tƒ9,×ÐÈ ‘w G8 ž÷9ÏP|FP¿?l.oÜw*…ÿ[ZUð½¤ËåŒ÷P÷ºÒ¿Še„Ö¶2Èò+ kv¥©Î£¸Ê;3npjE")ÐÆFšÚ¢â´ MJ§$1:õR‹öN†–ž¶uÓ¤ ×q®¼Ú=KÒãÒW wݯ":ö}ì´í¼ ñ»N§èuՅ¢ó±jËyú½Ñ¹)ˆxÜç2ôïlákÌäF—–ãÕÎØÏ©Ìö|ìù7Wšå^¡ÊØ ¥p/Eeñ€²ñj[ç=þ"ÊÅÓÒîüÓkWb¼«6²²àR÷©Ýf›U7ʆWÕÄ^ðžnÒ±‡O³tî­#ŽLÏöêùuíùv/–~æi Ÿ·ù¯HÒQS—žçÛ󻺇ÃþÙêhöòÐW/Ø~<^Í®l{ Ç·0ïmJ¥Ö–·°²´Ì]W rc’È)úã˺ÍÉ]žµ"”ÒÙ¥ŸîwÛccÄr)HòöÝ©°êÚ1@áÀÑêÞ^Ö*È„Ûv> ”ŒëN½5÷œÙÅá&ý]Õ.D&ÿx]cŠ“—šóÜáìØ7jJ£Ú÷véuóÑõÀàþ%v¦lLXF†_ï[ë@Añë¶U€Fa3Åjõl]¾é–2öVÍgò´–š!E£’vÜ.I «hÂõDú(í@eÚÞLNÇ쓎I™Šw¸¦±ñðÛȲ®Ì ‹øä¤ÑÅQ/bû5Fi»%fCÞ÷j3ët^¥„ur7oóOü• {Ä÷nÊÔŒûº¨QÏn¢ÕŒ´(ynÖöë)yùÌê÷І>Ï:luãgþ?1)ß_Ò|¯"å|˜÷2÷dàxm¹ê¼Oª@ØÇ·Ÿ|s69Œ6š4¾÷ß#Œ4(­QC]ºh—îÚº;‡h×$.åÖÕe˜%vñÞÇG3 zyŒ·£C.<üæˆ/¨™“š£Ã§^Z’¨È©¿ÇÜÌFú¨Ó@9ûÛù=ïVIîÓ¸‡“õ-–Îöî¯A¹ì¶o¸µqf²÷—_Ê[虽évS&.¶#Ûp‚cV:˜­>ôÃûèi:{üĹ3ÉݸçÁW7Ë M5¼{7°JaË΋\{2ríɨI¯¸ú­îìyhf»žtþ–=÷æI|ÄÓsÖzvÓðªò´¬7,òûØN~ñdÈŒ¿"䨻›=BÕ@)¯Ý ÿ¿>°ÐI‰[²+ô·Dž]ïpÔ\æªÝ@ÿ­}«=ùôPZ‰­ã/sÝ:4ç¶IHaÌÓå÷ÆÈݺzï›ÐæùGõ›S°@C–¸ü·›#w¤”9:m™ä`MAqXò™r½q=M”þÄZzîÁÚâ;¤ó–;-²‡'ç|Ÿ¨6á“«ºèd?™³#ôÇGUvm´ZlÐ&Ž»—tœî¦^•¸503MÏj¢§vCK§¼^»­À+a#(µ€áî}k«1æv {ê¦oø'»€W=úQ‘‡=Yr.Ÿ´uÙ:ÅÁ‚Öl‰Nk›ê7Ú‹¾toi=þ…%òSî„²éÆ”Ë®Ý|~ég íì¹w’ƒsIÒÒ?#Áü³Y]¦×œØc4u¨3#=œÕKbN¼PÚ¶WO{&ÿɱ3Ò:/}-˜¨Õb‹2óª´½ßÞÕŒaEOíþ'Ié·c3 ¨FßËo„ˆEU4=¦nݾãûáN¼Ò°££[rãòˆ¨ @Lƒ(înxQ»n£?2ú=;xN5Ä߆!eeåJždpÅ7·þõÀ`ÀÄ^ÚåRDVQZ.Qü´‚È Ki¥>¸Ÿ]§Ð&]†Œ5ö}w>0VÝ?:|lOG—VH”\z£03Pk%O<ìf:¯ãGÓ¦¯øþçÙěw2YÅjÍŠgh¬Oaa¡HEQ¡h#cCU¤­k OƒœR×3°ðös3 @TY¡ÚmC¯‹2è»â«‘öü²{{»˜W¿S§hSÛ@h†šS ep™1Ѫø+&ÍšÿgŒä;–nºQ¡ðrJ½ã¼Æ»kHböm;‘$S(ä1P³tš¡@Ùe¿fj­h]#>”‡Ùþêµsw²ä nemØ|-š”'? ŠÍç€+O½y/¶€^ÛN ©ªG‡·ÚûóémÑÑÇFé‹ÓhhA´EÇ.Öv`;=´ôXcÅ‚V«¬¬""âiJJFQ‘ŒŒôííÛxyµÓÕÕV¬úf «¸ëY’ Ib© õø=,}¬ÆÍ‘*–µZϺWoïv¦““þ4..¹º¨Y:Ù[ÙâmQ•¹"¶‡3À’qÓ§ FÈ]ÊfƒòØmQ•Ð,]C‹mQË"§ŽûEÒwd€og&ãêÏãÜùåü†¾ïÂû­ÅÚÆ[E5™Qõ$8Ö¥[Û¨à'¢nþšÝüuÿw'NîéÎ6ùNˆf×ÿ™7>nãûÍÛùmuIÚ‰ÿ-ÝyÃ÷»~Ú<×É¿ü0Œͻº~áÖó>›?²jüõõÉãƒCMý;d?(0Ð<Ýû¿ŸSûóÛ—N:\yÆã WÓKÈ»œŸ·ã9hÓ2¢XÐj••UT÷¡=ztòõõx6ÝÒÒÌÒÒÌÔÔ8(($0ðŽ­­Õ^Ò)¬âvÆTæŠØ©mùÃl¨Þ‰îú´»>í¨MïN’팩t7P{à -¶E-Ž2¾õöP>¿º§ùÀ*×ÿóKa²¾}Ôêµ:-Ö6Þ6*Ù˜ª'Á1Žý¦½g^@[øwÓy/`Sï>ÔèêoñÊSk'aqYÝ®ŽoâîjZV,Tþ‹<>ø‘aÏ©ƒ¼Òî„”‡ž¹ª?æ³aN:4O§M§1ÓؼrmZ­qö¼Î&L…Œ|&S,kµ""ž€‹‹CÝîõ__¨­ö&®gIòE\3f˜ Cþˆ“¿.~]üGœœ ³az˜1ù"îz–Dñ•MÔb[ô/ k€-HK[ÚX¾ ?Ö×bmãm£ŠÎ²êIp”CWËŽ]Ú„?© -ýýµÝI”°iwCÔºÔD—ujù¸Ñ£G=zÜ’él½¹°¥7Âoﺮ2ñƽ2vJäñÁõ;w²òö÷H~($Àå¥f麸¨bÃß Úñµx5ƒ¦ÎÆÌ8{üüTžR¡|оíRR2ÀÛ»bA­ê¢êjo"(G"ãÈK¶ÇÉ/dÉ ¸%ß'€–ŒŒ#A9oÚ/´Øý+HQعƒ{wlúrÚÜ3fKÖOuy2£ÅÚÆÛF]gUxp¤]mÚ SW˰ꑆe7͇w’X.ãn¯«¿eõbi«ë;vìØ±c‡7Ž´©mH²Ç;æNøÑøÿܮúÆPyÜá¥Ó'³<Üÿë9”þ‰/y|pˆvçÎ&´¦wW·¤à!©@¾£Ì™ f­_‹GÙkÓŸ»ñàÏxùƒÂúÜÊ )Šª¾âß SŠ¢ªo=z‰¥2Ž€›>M.fÉë]Ì’7}š#P}ÃÌ›h±-úWªüÄØØ„´ÜJV.LMÎ+VhZ¬m¼m”>aWš8<èQITا“ö°¢2.(\Ü¥‹ºe7ÕwÞS¡».yÅg|Ÿ™¿Ó-óð²5Aá},-yÀs·æ‡!ò ß®¸þ kˆƒ£@ñE ’'ßËM/|€Wˆ$Kûõ°µ*=û´˜s2yùZ´J¹¬‡`Álé¤f¦N@`{6³^ƒF¨…ÑÖý®îPùdè _ö92í¾üŽkö'~é<ïσ8pàà3lƒÃÅÕ—§Ôï?x—êÚí‘”Àiì—x‡×ì=ð¬/™ÓæÚ÷[ï •-È‚Ct'ýZ³.»û&…”ªû (>ºåäÓR9[™zbï•ôwç² üüT–RÎUFT ÷óÓwí4ŒŒô !99ùеrrò !FFúŠMä¨Ç§)ˆrÀ@«z'X­x@Œ£)pÔ{Ó¯I¶ØýË´œ=ÚR©ÙïÀ®ÅÚÆÛF‰î»IÄáÁQ=»èW_P§ý{X= ŽÐVþþ‚»wIe"€6{Ñçî÷7n¾‘ÿ¬…Qú]æ.{/í·õgÒî IéµUcFŽ9räÈQ37~ Û£GÍ…0JÛ¯—{RpH™šûÔÕŸ¶Ø2gì¨Q£§{<ÃÀæ¸ñï¹a²”r.¥œ[Ùð^jíìíÛ@xx£WUW{=,|šº”ÍÀ,Þ +@ ²âÍráÀ¥l–OS=,”÷6®Å¶¨Å±¡A±EÕí-y²ïеß4Z¬m¼mšûÚ”zç/öv~þOÚdèjþl3æ×‹cꙎظýÙ¿‡)¿oßÏøÖL¤t|>ݹ¶m¬™ç‰?×Ìòêï}ûÏ{ŠkQÚ=¿:ÔÌý§­òŸ¦Pþ“߯b¼È˫ݣG‘qqɦ¦Æ/Þh—\]M¡¨©úX Î¦Š‚òXGmz˜ 3Û¥¦;¨>Ç8“Îå±ÖÚL«7íZl‹Z)¼ûóœ‰ÓʵLô©²b¹U¯¿¯\óE©V­ÅÚÆÛ¦¹3£…pyÁ{Ü+ª;Â¥ :ŸÖ«fPñߣţ*対bgöNÜ*®««Ð-0ðNPPH~~á‹ß€€€€noþUc z†›Ö¶¨ÊÝI²Ä îÙ÷¶¢k¿·e®ÉÌpÓzóð[l‹Z¯Ãü¿ïÍ©•V¦‘‰¾àMwÕÛ¢ÅÚÆÛ¦•fmÖ}ÚâîŠSÿËÖuÕå#§Ì4è~zŠS[§êoDÞ‰‹KŽ‹K®~Ò!5©ÙŒOÚ¨þïΘÊ\p[ý|š>MYk3Íø|ˆÛ¢–Gñ´ Ì´ '·z-Ö6Þ*­43¢ÆüãÞ‡*ÃÓÓÅÖÖªžè×ËRÝÝ@­žC×b[„šK‹µ·fjÅtuµ»wïØ½{GÅ‚æf¬AvÔí¨¡XÐÜZl‹Psi±¶ñ–x7“!„*`f „RfB!eaf „RfB!eaf „RfB!eaf „RfB¨eTFÛ°îБâtÔš`f „Z)¿»qùê¿ö\Ž—¼úYšèí…™Eü IDATR9RrkÝ·áÝÆt|×~è¿3!¤b¤ðÊêÕ #ÖN¶cqŒÑÚaf „TŠË;·ò‡ìqëgºò¸—=«µ ˜!b³þþú§ò©ë?vćh¿03B*Ã¥ùòǬ÷Æz–?ŒŒŠËª$™1ÑÉ5?ŽZ!Œ~„ʰé)E:âÌ‹n°eÙbQîW‹Óæïýi¤9ž°¶J˜!•áwÿú|à×5ÿàröüðÔžÑT½Z¨Á¨G!¤,g „Zm1ùHÌdÅ©¨uÁqB!eaf „RfB!eaf „RfB!eaf „RfB!eaf „RfB!eaf „RfB!eáó¦BªÄåßÙwà^aÍ/ôQZ^#gö³cê×A­Ž3BªÄ%_Þqø~žXRM*ÇßwmÕpœR%VXRÙv袓-ð õ]€G!¤B¤¼¸„30ÔÇ®æã „ q%ÅByضGl«Ûý§Î×ÑûÖ BH…‡ñwz”j™êR%ñ;~˜4>óà?_úª+ÖC­fBH•ÃvÝ{WÿéæÝNÕý× QK|ý°ëi¥ð"#B¨¥P- š¢(Åé¨õÀÌ@©Peòã'Ù"@žï÷?ƒ z÷i‡ƒŒÖ BHuˆ,éï…ŸËf õye´ã+v,ó×T¬…ZÌ „êPúﯻñuq~I¥ml¦'ÀëR­fBHÅMC [¼#ðó „BÊÂÌ@!¤,Ì „BÊÂÌ@!¤,ü !ÔÌlll'¡wŽ3B͆a¡°LqêK …e ƒ¿ÁÔjà8!Ôlü÷ï?Ų¬bAㆠðWœŠÞV˜¡fãææäææ¤8½CðÚB!eaf „RfB!eQ„Åi8•X©8 !„Pk6ÂQKqÒK5í3ð¦Î½µ;•Xù_ÛäQ‹ím\ªëßÝ{ÿúÒ'½ ^›B!¤,Ì „BÊÂÌ@!¤¬¦}žB/“x÷5¾Žßl-03BÍ&0ðî¤I#ôõu '–íß 3£µÀkS¡fòl“ôõu›4.Aÿ.g „šYzzºâ¤ÆáƒÓ[g „RfB!eaf „RfB!eaf „RfBHõØ‚û=p¿HÙÇh£·fBHµ¸¢ß§š±æ·#‹9ÅBÔÊ`f „TIþtëôEw}×|ý¾†bj…03BªÄs¶÷žù´åRÅ"Ô af „TŠÒÒÓå~”ñNÀÌ@!¤,Ì „BÊÂÌ@!¤,Ì „BÊÂÌ@!¤,üý „P  Þ3Xq"j}pœBHY˜!„”…™BHY˜!„”…™BHY˜!„”…™BHY˜!„”…™BHY˜!„”…™BHYø¼)„J‘ʤ§/ÜÉi;t>v`;=Öµù—ýé[¾Yú ×B—†Ÿw-^ºmÀ›?KdÊ\ùDƘ݋âœsGj¸2Äm0ñ ÙÒë¬chBÂ𘘨åþþ~~¾9ééÚÞ½ƒ:¸Kçr#·¥ÀPe´Ì¾G59XADÖ•©a#5l¨;»­Ø´¥ÀéÝ¥ƒ;"$k‘ä˜îSÞ;ôˆJei&UŦîÏ5ÛE°œìHÖ7î6ök W¡Í6œ9}¸!K[ιF'DŸ×æèx"âŽg•DÅGß2qYu¿¨¾Ü•š¦–ã›ÍBÑ—žQý;«‚#r‹NT–uTÏ~ÔGÆY#Ã\¸ýw'%%%%%Í\úmmëAÛ\­ýátÐ(–3W›…-qå{_M¶¾eò•YZUZêN~Ÿ«ˆŽîѲ©æKG¿ÍáÃ#ýìÖþ»Æ á*µòÚšá«Hî«$¢µ…æÒçÉÇÒÒóD.¬¸ÎZe]¬#2*›MÿP ‚ˆÞ/2ï+7óD<ѾróûEf"z(PaâøŒÊŽŽ ’µ¨Sð5¹_îÞ±ùÝE)ó?÷_¸jv˜3d†d}ãnc¯}S\…6Ë0t^_…’‹©Ý¦­xlFO·èø¾9ª7êdVqÄ} ܈,DÊð§Þky<Ãúz^èݹ'©¶Úuô’Õö²å6 m`ƒ¦®jy<ãZ±éÇÍógo­«æî}áEá×ö;™Žoxú·2.=†L[üd„³íŒJì¡H Pôõ`^ûÑäçʤF(‰èƒÓæ#—[©ÌÕÔ膱îñ·) Àaë©Gq¶ÎÄñ¡ay¢¯ËÍ-«¾.7?¦ŒÐ°OÖf:B²u ¾±úìÏ?WÔU,f:WRÕ4ÈÃM¸ŒìHÖ7î6vÊ ®"K[|éâòÿûˆ¿ª¯ë‘UùXRÛ½ñ7}{¬Úõè™cRÛí%Œçè—¶¤öÏßôòºÌ"Ýßnl[…⩆<³áÏq>~eyFÞ¥±J""UÌü-¯m÷ÿ"céU–(o61@±fxW†ˆÒ+-_\hÕ¡$Æöÿâ²ñDD†«§?ñÚÇC>I ¾½3Ü5ìóÅq•YYÆGVîNKKKKÛ¶ôA6«’#r»7>ªä¿~sz@|´ˆašñ¸÷éEª7½ùïÒ_Oð±Y(ãÒïñEO(?^¾#ßxG‡Cdgm¡©´ž³F~-·¶ÐÙ6sˆÈÇGÃó|eeµ°âºÊÊjžç}|4ŠÛê¥b*Ðq ÑÃA­6°R2D:Že(Ô«£VÉZÔÉÔý£îaΟ«p‚ý¤’õ»]2ƒ«ÔfGŽîm½u‰=L—•]e È3‡ ûÇÝÛµõKÚ¢êóè+OwûrŦ£u¿ñ6 EcýXyøí¿~_í=UŒÅ¹¦Òz®´ž[qÊ ƒˆúöíEDyym¶VY누Ë쯰ѳaÊ AJ†ˆ!š¤|6LIDû+,*–I¸­úl¬E’³œ?žñsµZjOìüHÛeð°þNp@C²¾q·ax^ì0¼÷¬aj¨ZXêÔdÔäÑ{ÛÜD84µÍæKüÚÖë¶nÝC7™juüx~FF¥¤$Ù<3Uü]näRµµ„çSZÏ1ø¼Ì²­ØÔÓ]±&ÎÛæù”â?H²9Úš5[SSSÊÊÊ®˜s×?>oC^½º»†Ñ_1™»tÅs#}Z¬­àà`ë«~-’Ö­½öîìÓíå>ÝNÇ3¤aúùóõ_žnu4WqÏ„ùFÞò^ç§V2ó­ãß¿Ýî+žžî‰‰qééÚŒŒœêêË7_GD‰‰q6‡×ÛâëÆÎPoÌ7l+6màn\·õÓõë¶ztUÌP·?(ˆ!Y‹$§üü§Ùó ºšºFêêÓ]ãÒÑUu·¬oÜmd•ª“ ­¥¹å-§üÝØÅC½„¥òd½":=][TTRTTb½ÓÆI³ï´a½ŽwKáÈ%.ó¢Åz–!ËôtWØñþ’µHzŒRíí¯öËžd}ã®"«Ì€¶ öUýó!ç¹ù †õî$ÁýƺFzw‘à>t’µìE²¾q÷@f€ŒyzºÇÇ‹&¬°7_76)Ô-)TÄÙ#Y‹À^$ëw çLBpdˆ…̱ 2ÄBf€XÈ  ™b!3@†“{V¯üè„QXr‚Ì ðõYo¿ºlëöoN7ßú^šp÷Bf€ÃñµW¾ž7c˜³=è2Œ¿üí²eg¦®˜ÕÇ‚9†Ü!3À¡¸‹_¾ñVEòªg(¹öîÕ²€Ì²”ºäoõ³W=Š›h;d8 WöÉ¢wÊï|`}á©SùEå¾áBÁO%×2„臱”•Öx4]x{ÁDD}E“±êµ—~y~ÇߦõÀ«,!3ÀaTñK¾J_rí\åΙ‰éîÝžäÍ´Z dQbažÒ`f}R0KX ò‚yˆ…̱ 2ÄBf€XÈ  ™b!3@,dˆ…̱ î7ŽÄUkw¦e_¾ö„>F=hÚ3öQ´^äó p$®ä›Í¾ØÔluÕŒç»ÊæàH]­ážG,ž€-Tg€oˆ¯¿RËywÓ`¨q˜g€qµWtæÜOMÝØ@Þ½Ÿý\ò0?Œ;ò…ïH2óí-Quj?O¦ötúæ·žœya÷Ÿ —™@f€#)º…Çßgý3":üj~üú}ù c†bè‘)ìd©0.j7–aa9È2ÈPò㉠#GDd®ÎÞðA†÷}cÃ1É/|wà8¼©øÓS÷T(ºi” z6tÒâͯÄv.òÌÇa4¬üþä’+ÕµŒ»¯¿— öKÉ2Lѵ[æNÇ3@,dˆ…̱ Ž€ ‹ÀY`žv£P(t:½°´]:^¡À3˜dó °›ÄÄØ]»öZ,aEÛ Ebb¬°îVÈ °›ˆˆ~ý„¥àD°o ÄBf€XÈ ‹áy^XÖ†½g Â"³©¡jaQ»nïøí¾»Üí=kø_kr'’lmム¥Î]{þé¢[Á¾) ™b!3@¬Û;žÐŽ‚‚3ééYwp8®” dØMzzÖ“ONÕh<…mÓéô»víEfÈöM€ÝX,–Û "ÒhC'͘íƒaÇ$ë–Žøò³W?ùFÎÐ?ï|5®+W¾gÁ’Ës¶Ìhý$Ëé­ó7y¾¾Ü烹'&îx1FIDÜ¥/½v)eãœÐ’íÏ-ø\ïáÆX”þCûýï&õëÊXÎØ(lý×]­Ð¦mùøÐ™ZϺú…Ç=2sæý}\‰ÈüÓûs^ú2ð…+îvíµWËí|ÿ£ƒgt͜ҷߨ))O?âÒêÝœ†Zɬ¢"¢Ôœ«Â:Ùº1¼†……DG‡øQeeu^^aQQ‰µÊ.ƒìÁЦù†*£%Á_ñP "BÃQŽÛ_aɸhÙ˜o "»ü>%k‘´øK{_L^×d³ÐÆÌ‹¯Õ®ym§jÖ’ êÕ•5×øÇgêÆôqeÉ|:ó¸_ìà ™Gjz¸CÄ×ç¼·dûÕ'ÞØ¼4ØÕ\Wšý™ö‚ q±ñ¶N 5\âÎ6˜xa…léõ Ö14!axLLÔòÀ@ÿÀ@??ߌŒœôtmïÞAÜ¥s¹‘ÛR`¨2Zfߣš¬ "ëJŒÔ°‘6ÔÝVlÚR`ˆôîÒÁ½’µHrL÷)ïzD¥²Ž4“‚ªbS÷çšÆí"XÄ“¬[Údÿwl<‘Yú`Êý}Oeæ5±±qG3O›‰ˆ,粎ºŠ ¸å§ªºGðÓ_ѵڑb³ð:®â»=CæÍ¿¿WW–ˆ”Þa>÷ìþ,™Ogë6zö„A¿hsjy"âk3?;ÚoöïƒÝbT^!£ÿïÉÑÝnùŸ’¥ä¾ÊÝ &þµ\“°N¶Nž,$¢°°–Ãë 11Qaa!t}±Ž8PÞ\mäü“ƒ<Ѧ"ó”MS4m*2óD“ƒ þŠj#w ¼YøÊÛ$Y‹:{=0ˆ,—~)k ÄÃú:D²ni“ÝÊÆ™ù!£†Ù+/óD#ë~L{ÖLdù%+§ËHkdðuéËg&%%%%%=>ïß̭ބ3œý>[5¸OËiÍÂÌçΖ÷‰ ³±{É|:ó¨fÄð èب’Ì£:žÈr¡´"0¼[»¸äí…p•Zy­e#|É}•D´¶Ð\Ú`3ke©´ô<EG‡ +®³VY눌ÊfÇ?¨ ¢÷‹ÌûÊÍ<O´¯Üü~‘™ˆ T˜8>£²£?NÉZÔ)øšÜ/wïØüùŸû/\5; ™Ñ!’uK›ìy™§úŒâÎz˜kiÆÅv=ª-¶pç³r”£bY""Æ+qÉG{öìÙ³gÏ'çD^ÏsÑÇœódÒŒWób—Ì~íQ^6 máy"⪿úó̤¤éS}ùß™Ogæ¸Ñí=*¢83GÇ]ŸË9ÄŠÄÅŠ!*µ’éëΦF(‰èƒÓæ#—-ÂE嬦FÇ0Œu¿M~ ÃXO=ꈳu&ާ Ë}]ÞjÃæër3O¡a9ž¬g­t„d-ê|cõÙŸ>óK•ÁbÖ+©j.·E²ni“Ímö;×”—q¬6?÷wOî ²õ\F^ÓÈ‘®q±nË´gîwÍaG-´u,âWʰäåoýƼïõÅŽ”ÿ&$Ô¥ÍBepH@ñɦ±1®~ÿòÑDKÉŽç×™82ŸÉÌ®:×ôÇYŸqM Ææ£u>гOPyn‘aŠ¿‡“M5Ò«,QÞlb€bÍð.þ® ¥WZ¾¸Ðz -¶çø—'"2œX=ý‰×>òIJp»ãܽìûÅ5È8Õÿ÷ìNKKKKÛ½inp^f^“u÷”ëáîÎbFŵVÊ ‰ çõúï›ï¶N Ú.üôÀÔþG7¬ûÖº†kÒ7\å‰Ìg2s<Ÿ\í´í¥˜âŒœ:òŽÿMLÑÖ¿[jàˆ7ëÏe¥}”yÅIvݬ-4•ÖsÖÀȯåÖ:d[£sùøhxž¯¬¬V\WYYÍó¼FXq›B½T,C:Ž!z8¨ÕÖÃAJ†¨@DZ …zuô2IÉZÔÉÔý£îaΟ«p’['‘¬[Ú$b¯)/3?dôHuãõM:‘y²‰ˆ ŠuÉÊâGÆŠ‰ "b4#ç¿rÿ/_õù/¿y6 o`}ƾ¼â MæêùOÌœùÛÙ©;® ÿÍ0¯âÌÏ„ëî0b܇މ,ÎÌÑ“ç¨ßÿå·žß/OIš>}Æs«¾ÖûõT‹ûŸÉÁâ\Si=WZÏ­8ecE9¾}{Q^^›„­UÖÅ:"!ÀEÅ2û+,Dôl˜rB’!bˆ&)Ÿ SÑþ ‹ŠelM}o‡d-’œåüñŒŸk¬ýÐR{bçGÚ.ƒ‡õÇެ[ÚÄð¼­­v[öž5L mç`‚’Q“GïmsUàÐÔ6wšw.ñk[¯oغuÝtfªÕñãù9D”’’dóÌTñt¹‘KÕÖ^hžÔhÝ*ú¼Ì²­ØÔÓ]±&ÎÛæIâ?H²9Úš5[SSSÊÊÊ®˜s×?>oC^½º»†Ñ_1™»tÅs#}Z¬­àà`ë«~-’V箽;øôvË–îàÓí|(ÆÀa½{IpG¿1®‘Þ]$¸œd-' Y·@f€ŒyzºÇÇ‹&¬°7_76)Ô-)ÔMXao’µœ€dݲ%Æ8dˆ…̱ 2ÄBf€XÈ  ™b!3@†“{V¯üè„QXr‚Ì ðõYo¿ºlëöoN7ßú^šp÷Bf€ÃñµW¾ž7c˜CBf€ƒñ—¿]¶ìÌÔ³úX0Ç;d8wñË7ÞªH^õÌ%×Þ½úAà@–òO—ü­~öª§Bqm§€Ì‡áÊ>YôNùý¬/ŠÖË€|`žŽÄ•|³ùãÃ›š­®šñ|WYÃ<É¢«5ÜóȂų°…ê ð-€ñõWj9ïn 5Nó p ®öŠÎœ»ñ©©È»÷àñ³ŸKæ‡qG¾ðÝ€)Bf¾½%ªNíçÉÔžNßüÖ“3/ìþÏ¢Wár È p$E·ðøû¬FD‡_Í_¿/aÌP =2…Œ ÆEíÆ2 #,ù@f€J~Èð¾ol8&ò…ï‡7úbêž E7²AφNZ¼ù•خ¥@>à8Œæ•ߟ\r¥º¶‘q÷õ÷rÁ~)™Cf€ƒ)ºv ÀÜÂIàxˆ…̱ 2ÄÂ1p°³àà`a8 Ì3Àn …N§–¶K§Ó+x“l`žv“˜»k×^‹Å"¬h›B¡HLŒ–ÂÝ ™vÑ/"¢Ÿ°œöM€XÈ  ™b1<Ï ËÚ°÷¬AXr65T-,j×í¿Ýw—»½g ÿkMîD’­m|´Ô¹k¯Ó?]Xt+Ø7b!3@,dˆu{Ç3ÚQPp&==ë®Ç•€rÌ»IOÏzòÉ©§°¢m:~×®½È ¹À¾)°‹År[ADçmÍK sažvVVV&,jnœ./˜g€XÈ  ™b!3@,dˆ…Ìdz\:¼{}Úᱷц»2‹«ÉÙ0gúÜåÿäèNX 2ƒÌG2¾7gAVÌò%¸ «@†àHÊ);öm~¸»ùª° d™Ũ½<•D„CN™b!3@,dˆ…̱ žŸp™¸±`¢°äó  ™b!3@,dˆ…̱ 2ÄBf€XÈ  ™b!3@,Üo Š7ÿپÌî!£¦<þp¸6Ue _8ñðŠ©Éï6tÊd¯œ6meŽQ¸ Èæà@]‡¿ðï^õöRMô-µü˼W‡ÂÈ#WøæÀ‘Xo¯«” WW×–Õ 3Ø7ÒàÊ¿ø8Óâ¤(lªÊ¾<ß»þ­IÞ0oJX2‚̇3þôÁ¼ù_…­Øµ`¨;#¬9Á¾)p,cÁÖyÏü+ø/;—=à¯V‚Ì`žd,Ü6oήn¯lY8Rm¬¯'"Féæî†‘G®ð̀㘸æ`…Ž!ñß׋\ƯËÝ[g"¢P/UB€ËØ _7;ÏÔ%kØ‹d}ãfÒ[Nâ–aÕþDD^N*JO×Zÿf†ˆjjt55ºcÇN%&Æ Öjé8XÑ´¥ÀPmäLÏñDDù5W‹jM_œ3ÎP ´Û£J%k‘¤xÃ9í×ß)(¾xÕ£ÏÐI3&Eû8ϰ#Y߸Ygõ{~yÜù¼ðÌvnÖû듃٦#ï<ýYøÚ•}""^Ÿ¾ôù6,qqa‰ˆØÀ)+Wõüh†Íòµû—ÌZs~â»[Ÿ‹´6œ7ûá–Oü¢¿Ê»õˆˆOz:%>ÐÖ§È™Zɬ¢"¢Ôœ«Â:Ùºñƒ ‰Žð#¢ÊÊ꼼¢¢k•]~6+š6檌–ÅCŠ KD:n…%ã¢ec¾ˆì24HÖ"iñ—ö¾˜¼®yܴĘŠóß­MNÓ®ûjõ8ogxð’d}ãfØ[ì˜\EV6?rDsvVùŒà^®ÑñÑë¿È©ðp7†ˆo8¦=7pü W*¾ÌŠñ»hÇ‹1¬¡pû¿ìˆüòp—6 m`ƒ]½!¥ßõ§¹4}oû…¼îˆöbÌ(MNfÑÓ‘‘J"îRúê×?ïþ»å[Gù+›.Ÿ>ô¯¼J3viùÞN 5\âÎ6˜xa…léõ Ö_EBÂ𘘨åþþ~~¾9ééÚÞ½ƒ:8I¿ÜÈm)0T-³ïQMV‘u%FjØH êÎn+6m)0DzwéàŽÉZ$9¦û”÷=¢RYGšIAU±©ûsMãÆÊþW&Y߸Yçöû5†«Ðf›GΜ>Ü¥-çˆ\£¢Ïkst<ñ dzJ¢â£o™¸¬º_T_îJMSËñÍf¡­_Èër´ƒ'ÏŠó8’Yd&"®ü¿ŸŸ‹}nî(ÿ.D¬«ï€Ÿ#û®,ÜW9¢»¢ÁÄ¿–kÖÉÖÉ“…DÒòsCLLTXX]_¬#”7W¹Åä`O´©È<å@Ó”M›ŠÌ<Ñä`E‚¿¢ÚÈ(o¾ò6IÖ¢NÀ^ "Ë¥_Êšƒáa}’õ›uno±[fpÚ즡#CŒŠÑggUpDnÑ ƒÊ²Žêy"ÃÚâÈ8kd˜ ·ÿîñ¤¤¤¤¤¤™K¿­m½{Ý\­ýátÐ(–3W›…-qå{_MNJJJJzâíŒÆ_Ë[½×åd^42²÷È]dž6™ËJ+û„÷s²”x!\¥V^[S#|É}•D´¶Ð\Úà\›ü†±žLÒgëLO–'úºÜܲêëró³aÊ Ëñd=a¦#$kQ§à«ÏþüsE]•Áb¦s%UMƒ<Ü„ËÈŽd}ãfÛ[ì”\E–¶øÒÅåÿ÷U_×#«ò±¤ ·{ãnúöXµëÑ3Ƥ¶ÛKÏÑ/mI퟿éåu™Eº¾Ýض Ÿù…|ÝÑŒSµEÅs~Ë™ :7í™”½ú”æ5߯íÃ$2”^e‰òfk†wñweˆ(½ÒòÅ…V@blÏñ/.ODd8±zú¯}<ä“”`±?f¸ËØç‹ã*³²Œ¬Ü––––¶;méƒ:mV%Gävo|TÉ?üæô€øèv#Êñ¸÷éEª7½ùïÒ_Oð±Y(FËòu9eq‹v~dý¾û˜ë‘̳\Ïqƒ³7mάhâˆk¾r&ýƒþx{ŸqZ[h*­ç¬‘_Ë­-´ÿfN§óñÑð<_YY-¬¸®²²šçy°â6…z©X† tCôpP« ¬‡ƒ” QŽc õêèe’’µ¨“©ûGÝÜ?WáûI%ë7ëÜÞb—Ìà*µYÆ‘£û_[o]"GÓeeWYC#òÌ¡Âþq÷vmý’¶¨ú<úÊÓݾ\±éhݯG¼mŠqý…Ì,»wÌàk¹¥è“Û%'ã,ç7þžpõß‹f%Mì‰?¬Ó2všxuªÅ¹¦Òz®´ž[qÊ ƒˆúöíEDyymâ³VY누Ë쯰ѳaÊ AJ†ˆ!š¤|6LIDû+,*–IèèLU²IÎrþxÆÏ5Ö~h©=±ó#m—ÁÃú;Á ÉúÆÍ:··0-ÖVpp°õU¿IëÎÖ^ûÆ wðéì--ÝÁ§Ëj³Úôóçë¿<Ýêh®âž ó¼å9¼ÎO­d æ[Ç¿»ÝW.<=ÝãÒÓµ9ÕÕ—o¾¦‰ˆãnùƒ¹%_7vn„zc¾a[±élw㺭Ÿ®_·Õ£«bn„ºýAA ÉZ$9åàç?ÍžgÐÕÔ5RWŸîëµ·N@²¾q³Îí-²Ê Õ€É  ˆˆVŽÒÜò–Sþnìâ¡^ÂRy²^ãšž®-**)**±Þ;áÆ¤ÙŽ÷N°^Ç»¥Àpä—yÑb½?ËŠezº+ìxÉZ$=F©ööW{ ‹eO²¾q³Nì-²Ê hÛ`_Õ?rž›Š1p`XïÞAÜ£mL k¤w îC'Y‹À^$ë7ë¬Þ‚Ìóôt?LXao¾nlR¨[R¨ˆ³ÿ:F²½HÖ7nÖ)½Å±IΙb!3@,dˆ…̱ 2ÄBf€XÈ †áäžÕ+?:a–ƒœ 3@|}ÖÛ¯.Ûºý›ÓÍ·¾—&ܽàp|íÁ•¯çÅÍfÿ'´à`üåo—-;3uŬ>Ì1ä™Å]üò·*’W=3@ɵw¯~d8¥üÓ%«Ÿ½ê©PÜDÛ) 3Àa¸²O½S~ÿãë OÊ/*7ð  ~*¹ö€p!D?8Œ¥¬´Æ£éÂÛ ~ "²è+šŒU¯½ôËó;þ6­6Xe ™£Š_òUú’kÿà*wÎLLtïö$o¦ÕR #ˆz ó 0ë“‚YÂRÌ3@,dˆ…̱ 2ÄBf€XÈ  ™b!3@,dˆ…̱p¿)p$®Z»3-ûòµ'ô1êAÓžy°¢õ2 ˜g€#q%ßlþøðŦf««f<ßUÖ0ÏG²èj ÷<²`ñ¬l¡:|‹à@|ý•Zλ›C“À<ˆ«½¢3çn|jêÆòî=xüìç’‡ùaÜ‘/|wà@Š™oo‰ªSûy2µ§Ó7¿õäÌ »ÿ³(ÆU¸È2IÑ-<þ>ëŸÑáWóã×ïË_3CLa'#H…qQ»± ÃËA>à@†’OT9""suö†2¼ïŽI†|á»ÇáMÅŸ¾˜º§BÑM£lг¡“o~%¶«p)d8£y`å÷'—\©®mdÜ}ý½\°_Jæà`Š®Ý0·p8žb!3@,dˆ…̱p ì,88XXÎó °…B¡Óé…¥íÒéô žÁ$˜g€Ý$&ÆîÚµ×b±+Ú¦P(c…¥p·Bf€ÝDDô‹ˆè','‚}S 2ÄBf€X Ïó²6ì=k€œM U ‹Úu™ÿã°o ÄBf€XÈ  ™b!3@,dˆ…̱ 2ÄBf€Xÿ¨º<kÉý™IEND®B`‚pygac-1.7.2/doc/source/index.rst000066400000000000000000000012001444627033600165340ustar00rootroot00000000000000.. pygac documentation master file, created by sphinx-quickstart on Thu May 1 12:56:29 2014. You can adapt this file completely to your liking, but it should at least contain the root `toctree` directive. Pygac's documentation ===================== Pygac is a Python package to read, calibrate and navigate data from the AVHRR instrument onboard NOAA and MetOp satellites in GAC and LAC format. Table of Contents ----------------- .. toctree:: :maxdepth: 2 introduction installation usage methods api legacy Indices and tables ================== * :ref:`genindex` * :ref:`modindex` * :ref:`search` pygac-1.7.2/doc/source/installation.rst000066400000000000000000000025161444627033600201410ustar00rootroot00000000000000Installation ------------ You can install the latest stable release of the software via the python package index (pypi) .. code-block:: bash pip install pygac TLE files ~~~~~~~~~ The pygac package requires Two-Line Element files stored per-satellite in files with names such as TLE_noaa19.txt. The contents should be the historical TLEs, i.e. a concatenation of just lines 1 and 2 without the satellite name. For example .. code-block:: 1 23455U 94089A 01122.93455091 .00000622 00000-0 36103-3 0 7210 2 23455 99.1771 113.3063 0008405 277.6106 82.4106 14.12671703326608 1 23455U 94089A 01326.97611660 .00000739 00000-0 42245-3 0 9806 2 23455 99.1886 322.4670 0009980 66.2863 293.9354 14.12871991355419 etc These can be downloaded from CelesTrak via the `special data request form`_. .. _special data request form: https://celestrak.com/NORAD/archives/request.php Development ~~~~~~~~~~~ For development clone the repository from github and install pygac in editable mode. .. code-block:: bash git clone git://github.com/pytroll/pygac cd pygac pip install -e .[dev] It is recommended to activate `pre-commit`_ checks. .. code-block:: bash pre-commit install The test suite can be run using pytest. .. code-block:: bash pytest -vs pygac/tests .. _pre-commit: https://pre-commit.com/ pygac-1.7.2/doc/source/introduction.rst000066400000000000000000000031231444627033600201540ustar00rootroot00000000000000Introduction ============ Supported Data Format --------------------- Pygac reads AVHRR GAC (Global Area Coverage), LAC (Local Area Coverage) and FRAC (Full Resolution Area Coverage) level 1b data from NOAA, which is described in the `POD`_ (NOAA-14 and before) and `KLM`_ (NOAA-15 and following) user guides. The data can be obtained from `NOAA CLASS`_, where you can also find a comprehensive `introduction`_. .. note:: Pygac can only read AVHRR data with 10 bits/pixel. This can be specified in your NOAA CLASS order or user preferences (see screenshot below). .. image:: images/noaa_class_preferences.png :width: 350 :alt: Screenshot of AVHRR data extraction preferences .. _NOAA CLASS: https://www.class.noaa.gov/ .. _POD: https://www.ncei.noaa.gov/pub/data/satellite/publications/podguides/TIROS-N%20thru%20N-14/ .. _KLM: https://www.ncei.noaa.gov/pub/data/satellite/publications/podguides/N-15%20thru%20N-19/ .. _introduction: https://www.class.noaa.gov/release/data_available/avhrr/index.htm Supported Sensors ----------------- Pygac currently supports AVHRR generations 1-3 onboard NOAA (TIROS-N, NOAA-6 and onwards) and MetOp satellites. .. _here: https://www.avl.class.noaa.gov/release/data_available/avhrr/index.htm Related Projects ---------------- - `pygac-fdr`_: Generate a fundamental data record of AVHRR GAC data using Pygac. - `level1c4pps`_: Prepare AVHRR GAC data for `NWCSAF/PPS`_ using Pygac. .. _level1c4pps: https://github.com/foua-pps/level1c4pps .. _NWCSAF/PPS: https://www.nwcsaf.org/16 .. _pygac-fdr: https://github.com/pytroll/pygac-fdr pygac-1.7.2/doc/source/legacy.rst000066400000000000000000000361371444627033600167120ustar00rootroot00000000000000Legacy Output ============= GAC I/O module -------------- The I/O module generates three HDF5 files, one containing reflectances, brightness temperatures, and lat/lon information. The other output file contains solar and satellite zenith and azimuth angles. And the third file contains quality flags. The output file name format is: ``ECC_GAC_avhrr_satellitename_99999_yyyymmddThhmmsstZ_yyyymmddThhmmsstZ.h5`` and ``ECC_GAC_sunsatangles_satellitename_99999_yyyymmddThhmmsstZ_yyyymmddThhmmsstZ.h5`` and ``ECC_GAC_qualflags_satellitename_99999_yyyymmddThhmmsstZ_yyyymmddThhmmsstZ.h5`` where, ``ECC``: ESA CCI Clouds (This prefix can be changed/specified by the user) ``avhrr``: denoting that it contains reflectances and BTs ``sunsatangles``: denoting that it contains angles ``qualflags``: denoting that it contains quality flag information ``yyyymmddThhmmsstZ``: yy:year, mm:month, dd:day, hh:hour, mm:min, ss:sec, t:tenth of second (for the start and the end of the orbit). Letters ``T`` and ``Z`` are separators for time info. The value of ``99999`` is currently used instead of providing actual orbit number. Appendices A, B and C provide detailed format of these files, including variable names, scaling, etc. The start and end times in the header and in actual L1b data can be different for orbits. The mismatch can range from few milliseconds to days. It was decided to trust the time stamps in L1b data in Pygac. After reorganizing based on scanline numbers (see issue highlighted above), the time stamps from the first and the last scanlines are taken as start and end times. In some orbits, the latitude and longitude information contains corrupt values for a part/s of the orbit and these scanlines are not flagged in the corresponding scanline-by-scaline quality flags. Currently, Pygac uses only a simple if_else construct to constrain valid range. Further improvement could be done using extra- and interpolation techniques. For extremely warm and cold temperatures, the channel 3b is saturating producing irrelevant brightness temperatures. Such saturation is often not flagged in quality information. Pygac currently uses a simple if_else construct to constrain valid range of Bts (170.0K 1.1.0). Previous versions used azimuth +/-180 degrees, which correspond to degrees clockwise from south. All angles are converted to degrees. All azimuth angles are converted to range ]-180, 180] (2019 October version > 1.1.0 ). Note that ]-180, 180] is an open interval. .. _get_alt_az: https://pyorbital.readthedocs.io/en/latest/#pyorbital.astronomy.get_alt_az .. _get_observer_look: https://pyorbital.readthedocs.io/en/latest/#pyorbital.orbital.Orbital.get_observer_look Correction of Satellite Location -------------------------------- Whenever possible, Pygac uses RPY corrections along with other orbital parameters to compute accurate satellite location (e.g. instead of assuming constant altitude). However, RPY corrections are not available for all NOAA satellites. In case of the majority of the POD family satellites, these corrections are set to zero. Correction of Scanline Timestamps --------------------------------- The geolocation in Pygac depends on accurate scanline timestamps. However, these may be corrupt, especially for older sensors. Assuming a constant scanning rate, Pygac attempts to fix them using extrapolation based on the scan line number and a reference time. Finding the right reference time is difficult due to the multitude of possible timestamp corruptions. But the combination of the following three options proved to be a robust reference in many situations: Timestamp of the first scanline, median time offset of all scanlines and header timestamp. See :meth:`pygac.reader.Reader.correct_times_median` and :meth:`pygac.reader.Reader.correct_times_thresh` for details. Finally, not only timestamps but also scanline numbers may be corrupt. Therefor lines with erroneous scanline numbers are removed before extrapolation, see :meth:`pygac.reader.Reader.correct_scan_line_numbers`. Scan-Motor-Issue ---------------- Between 2001 and 2004 GAC data from NOAA-14, NOAA-15, and NOAA-16 frequently contain a significant amount of noise towards an edge of the swath. As reported by `Schlundt et al (2017)`_, section 5.2, this is probably caused by a temporary scan-motor issue. Pygac tries to identify and mask affected pixels. .. _Schlundt et al (2017): https://climate.esa.int/media/documents/Cloud_Technical-Report-AVHRR-GAC-FCDR-generation_v1.0.pdf pygac-1.7.2/doc/source/usage.rst000066400000000000000000000067701444627033600165520ustar00rootroot00000000000000Usage ----- Through Satpy ~~~~~~~~~~~~~ The preferred way of using Pygac is through `Satpy`_. Results are returned as dask-friendly `xarray`_ DataArrays with proper dataset/coordinate names and additional metadata. It is also possible to select a user-defined range of scanlines. Furthermore, Satpy provides many options for resampling, visualizing and saving the data. .. code-block:: python import satpy # Channel set for KLM satellites. For POD satellites the channels are # ['1', '2', '3', '4', '5']. channels = ['1', '2', '3a', '3b', '4', '5'] ancillary = ['solar_zenith_angle', 'sensor_zenith_angle', 'solar_azimuth_angle', 'sensor_azimuth_angle', 'sun_sensor_azimuth_difference_angle', 'qual_flags', 'latitude', 'longitude'] scene = satpy.Scene(filenames=['NSS.GHRR.NP.D15361.S0121.E0315.B3547172.SV'], reader='avhrr_l1b_gaclac', reader_kwargs={'tle_dir': '/path/to/tle/', 'tle_name': 'TLE_%(satname)s.txt'}) scene.load(channels + ancillary) For a list of Satpy reader keyword arguments see `satpy.readers.avhrr_l1b_gaclac`_ and for further Pygac reader keyword arguments see :class:`pygac.reader.Reader`. Especially it is possible to choose a different version of calibration coefficients or even specify your own. .. _Satpy: https://satpy.readthedocs.io .. _xarray: https://xarray.pydata.org .. _satpy.readers.avhrr_l1b_gaclac: https://satpy.readthedocs.io/en/stable/api/satpy.readers.avhrr_l1b_gaclac.html?highlight=avhrr_l1b_gaclac .. _example notebook: https://github.com/pytroll/pytroll-examples/blob/main/satpy/avhrr_l1b_gaclac.ipynb Direct Usage ~~~~~~~~~~~~ Alternatively you can also use Pygac directly. .. code-block:: python from pygac import get_reader_class filename = 'NSS.GHRR.NP.D15361.S0121.E0315.B3547172.SV' reader_cls = get_reader_class(filename) reader = reader_cls(tle_dir='/path/to/tle', tle_name='TLE_%(satname)s.txt') reader.read(filename) channels = reader.get_calibrated_channels() lons, lats = reader.get_lonlat() scanline_times = reader.get_times() bad_quality_lines = reader.mask Legacy CLI ~~~~~~~~~~ .. note:: Usage of the legacy command line program ``pygac-run`` is deprecated in favour of the above options. There is also a legacy command line program ``pygac-run`` which saves the results to HDF5 and requires a configuration file. Copy the template file ``etc/pygac.cfg.template`` to ``pygac.cfg`` and place it in a directory as you please. Set the environment variable ``PYGAC_CONFIG_FILE`` pointing to the file. e.g. .. code-block:: bash PYGAC_CONFIG_FILE=/home/user/pygac.cfg; export PYGAC_CONFIG_FILE Also adapt the configuration file to your needs. The ``tledir`` parameter should be set to where your Two Line Element (TLE) files are located. Then call ``pygac-run`` on a GAC/LAC file. .. code-block:: bash pygac-run testdata/NSS.GHRR.NL.D02187.S1904.E2058.B0921517.GC 0 0 The last two digits are the start and end scanline numbers, thus specifying the portion of the GAC orbit that user wants to process. The first scanline number starts at 0. If zeroes are specified at both locations, then the entire orbit will be processed. The result will be three hdf5 files, one with the calibrated AVHRR data, the other with sun-satellite viewing geometry data and this third with scanline quality information. pygac-1.7.2/etc/000077500000000000000000000000001444627033600134105ustar00rootroot00000000000000pygac-1.7.2/etc/pygac.cfg.template000066400000000000000000000001761444627033600170120ustar00rootroot00000000000000[tle] tledir = /path/to/gapfilled/tles tlename = TLE_%(satname)s.txt [output] output_dir = /tmp output_file_prefix = ECC_GAC pygac-1.7.2/gapfilled_tles/000077500000000000000000000000001444627033600156135ustar00rootroot00000000000000pygac-1.7.2/gapfilled_tles/TLE_noaa16.txt000066400000000000000000047744331444627033600201730ustar00rootroot000000000000001 26536U 00055A 00265.61930214 .00000000 00000-0 00000+0 0 58 2 26536 98.7900 210.3675 0010476 274.6981 85.3501 14.10895524 30 1 26536U 00055A 00265.76113541 .00000000 00000-0 00000+0 0 61 2 26536 98.7896 210.5061 0010542 273.6655 86.3817 14.10891736 50 1 26536U 00055A 00265.76707352 -.00020078 00000-0 -11203-1 0 13 2 26536 98.7886 210.5136 0009705 275.1802 115.0094 14.10880075 42 1 26536U 00055A 00267.10855521 .00000000 00000-0 00000+0 0 73 2 26536 98.7896 211.8250 0010380 269.7771 90.2710 14.10888681 230 1 26536U 00055A 00267.17950142 .00005737 00000-0 32198-2 0 28 2 26536 98.7914 211.8957 0009561 273.3396 86.8630 14.10896289 244 1 26536U 00055A 00267.46313939 .00000000 00000-0 00000+0 0 96 2 26536 98.7895 212.1719 0010391 269.1950 90.8528 14.10888698 284 1 26536U 00055A 00267.74680648 .00000000 00000-0 00000+0 0 103 2 26536 98.7894 212.4494 0010428 268.5020 91.5451 14.10888805 326 1 26536U 00055A 00267.81772330 .00000000 00000-0 00000+0 0 112 2 26536 98.7899 212.5191 0010425 268.2766 91.7705 14.10888789 333 1 26536U 00055A 00267.95955713 .00000000 00000-0 00000+0 0 126 2 26536 98.7901 212.6579 0010410 267.7158 92.3314 14.10888639 350 1 26536U 00055A 00268.17230780 .00000000 00000-0 00000+0 0 132 2 26536 98.7903 212.8662 0010397 267.2640 92.7834 14.10888553 381 1 26536U 00055A 00268.38505837 .00000000 00000-0 00000+0 0 177 2 26536 98.7898 213.0738 0010381 266.5800 93.4675 14.10888531 415 1 26536U 00055A 00268.45608683 -.00082297 00000-0 -46414-1 0 23 2 26536 98.7888 213.1439 0008932 273.1275 87.4688 14.10851396 429 1 26536U 00055A 00269.44880446 .00001714 00000-0 97981-3 0 190 2 26536 98.7880 214.1149 0009149 264.8638 95.1492 14.10886134 563 1 26536U 00055A 00270.79622936 .00000000 00000-0 00000+0 0 210 2 26536 98.7889 215.4321 0010341 260.3163 99.7321 14.10890406 757 1 26536U 00055A 00270.86714691 .00000000 00000-0 00000+0 0 229 2 26536 98.7898 215.5023 0010416 259.8428 100.2049 14.10888833 764 1 26536U 00055A 00271.50539150 .00000621 00000-0 37043-3 0 226 2 26536 98.7898 216.1283 0009682 258.4126 101.6155 14.10892311 851 1 26536U 00055A 00274.48388387 .00000629 00000-0 37479-3 0 232 2 26536 98.7903 219.0432 0009713 249.8868 110.1275 14.10896360 1271 1 26536U 00055A 00278.38428297 .00000772 00000-0 45446-3 0 243 2 26536 98.7910 222.8607 0009699 238.3042 121.7454 14.10903728 1820 1 26536U 00055A 00278.38428297 .00000772 00000-0 45446-3 0 254 2 26536 98.7910 222.8607 0009699 238.3042 121.7454 14.10903728 1820 1 26536U 00055A 00282.35557167 .00000615 00000-0 36676-3 0 289 2 26536 98.7909 226.7490 0009636 226.6187 133.3997 14.10908393 2388 1 26536U 00055A 00282.35557167 .00000615 00000-0 36676-3 0 302 2 26536 98.7909 226.7490 0009636 226.6187 133.3997 14.10908393 2388 1 26536U 00055A 00285.26312341 .00000648 00000-0 38534-3 0 321 2 26536 98.7917 229.5955 0009775 217.5542 142.5023 14.10912717 2794 1 26536U 00055A 00285.26312341 .00000648 00000-0 38534-3 0 343 2 26536 98.7917 229.5955 0009775 217.5542 142.5023 14.10912717 2794 1 26536U 00055A 00285.26312341 .00000648 00000-0 38534-3 0 354 2 26536 98.7917 229.5955 0009775 217.5542 142.5023 14.10912717 2794 1 26536U 00055A 00290.79453118 .00000539 00000-0 32448-3 0 386 2 26536 98.7927 235.0114 0009950 200.8541 159.2009 14.10918615 3572 1 26536U 00055A 00290.79453118 .00000539 00000-0 32448-3 0 409 2 26536 98.7927 235.0114 0009950 200.8541 159.2009 14.10918615 3572 1 26536U 00055A 00292.56741928 .00000446 00000-0 27238-3 0 414 2 26536 98.7930 236.7475 0010039 195.4610 164.6138 14.10919435 3822 1 26536U 00055A 00292.56741928 .00000446 00000-0 27238-3 0 436 2 26536 98.7930 236.7475 0010039 195.4610 164.6138 14.10919435 3822 1 26536U 00055A 00292.56741928 .00000446 00000-0 27238-3 0 447 2 26536 98.7930 236.7475 0010039 195.4610 164.6138 14.10919435 3822 1 26536U 00055A 00295.33311829 .00000492 00000-0 29832-3 0 452 2 26536 98.7937 239.4565 0010122 187.1415 172.9741 14.10922973 4210 1 26536U 00055A 00295.33311829 .00000492 00000-0 29832-3 0 474 2 26536 98.7937 239.4565 0010122 187.1415 172.9741 14.10922973 4210 1 26536U 00055A 00295.33311829 .00000492 00000-0 29832-3 0 496 2 26536 98.7937 239.4565 0010122 187.1415 172.9741 14.10922973 4210 1 26536U 00055A 00295.33311829 .00000492 00000-0 29832-3 0 508 2 26536 98.7937 239.4565 0010122 187.1415 172.9741 14.10922973 4210 1 26536U 00055A 00301.36089324 .00000412 00000-0 25346-3 0 510 2 26536 98.7944 245.3610 0010495 169.1737 190.9908 14.10929651 5064 1 26536U 00055A 00301.36089324 .00000412 00000-0 25346-3 0 521 2 26536 98.7944 245.3610 0010495 169.1737 190.9908 14.10929651 5064 1 26536U 00055A 00301.36089324 .00000412 00000-0 25346-3 0 565 2 26536 98.7944 245.3610 0010495 169.1737 190.9908 14.10929651 5064 1 26536U 00055A 00305.47394449 .00000596 00000-0 35591-3 0 575 2 26536 98.7960 249.3899 0010565 157.4054 202.7945 14.10936241 5645 1 26536U 00055A 00305.47394449 .00000596 00000-0 35591-3 0 597 2 26536 98.7960 249.3899 0010565 157.4054 202.7945 14.10936241 5645 1 26536U 00055A 00305.47394449 .00000596 00000-0 35591-3 0 609 2 26536 98.7960 249.3899 0010565 157.4054 202.7945 14.10936241 5645 1 26536U 00055A 00305.89943105 .00000831 00000-0 46328-3 0 572 2 26536 98.7964 249.8073 0010792 160.3332 199.8748 14.10937990 5708 1 26536U 00055A 00308.38142872 .00000828 00000-0 48527-3 0 615 2 26536 98.7971 252.2380 0010769 149.2681 210.9531 14.10943359 6052 1 26536U 00055A 00311.28889574 .00000564 00000-0 33840-3 0 658 2 26536 98.7976 255.0876 0010927 140.9859 219.1900 14.10945884 6460 1 26536U 00055A 00311.28889574 .00000564 00000-0 33840-3 0 669 2 26536 98.7976 255.0876 0010927 140.9859 219.1900 14.10945884 6460 1 26536U 00055A 00314.40911236 .00001014 00000-0 58858-3 0 686 2 26536 98.7978 258.1443 0011066 132.4667 227.7834 14.10954267 6909 1 26536U 00055A 00314.40911236 .00001014 00000-0 58858-3 0 697 2 26536 98.7978 258.1443 0011066 132.4667 227.7834 14.10954267 6909 1 26536U 00055A 00314.40911236 .00001014 00000-0 58858-3 0 709 2 26536 98.7978 258.1443 0011066 132.4667 227.7834 14.10954267 6909 1 26536U 00055A 00314.40911236 .00001014 00000-0 58858-3 0 721 2 26536 98.7978 258.1443 0011066 132.4667 227.7834 14.10954267 6909 1 26536U 00055A 00319.16029794 -.00000043 00000-0 00000+0 0 744 2 26536 98.8016 262.8012 0011324 119.5338 240.6552 14.10957318 7570 1 26536U 00055A 00319.16029794 -.00000043 00000-0 00000-0 0 745 2 26536 98.8016 262.8012 0011324 119.5338 240.6552 14.10957318 7570 1 26536U 00055A 00319.16029794 -.00000043 00000-0 00000-0 0 756 2 26536 98.8016 262.8012 0011324 119.5338 240.6552 14.10957318 7570 1 26536U 00055A 00319.16029794 -.00000043 00000-0 00000-0 0 767 2 26536 98.8016 262.8012 0011324 119.5338 240.6552 14.10957318 7570 1 26536U 00055A 00322.42232311 .00000205 00000-0 13819-3 0 787 2 26536 98.7999 265.9960 0011351 110.3846 249.8716 14.10959573 8038 1 26536U 00055A 00325.32976319 .00000407 00000-0 25044-3 0 813 2 26536 98.8003 268.8452 0011419 102.8236 257.4512 14.10963698 8444 1 26536U 00055A 00325.32976319 .00000407 00000-0 25044-3 0 824 2 26536 98.8003 268.8452 0011419 102.8236 257.4512 14.10963698 8444 1 26536U 00055A 00325.32976319 .00000407 00000-0 25044-3 0 835 2 26536 98.8003 268.8452 0011419 102.8236 257.4512 14.10963698 8444 1 26536U 00055A 00325.32976319 .00000407 00000-0 25044-3 0 857 2 26536 98.8003 268.8452 0011419 102.8236 257.4512 14.10963698 8444 1 26536U 00055A 00330.29366411 .00000476 00000-0 28928-3 0 877 2 26536 98.8039 273.7150 0011722 90.7584 269.5180 14.10969482 9141 1 26536U 00055A 00330.29366411 .00000476 00000-0 28928-3 0 899 2 26536 98.8039 273.7150 0011722 90.7584 269.5180 14.10969482 9141 1 26536U 00055A 00332.99224537 .00000917 00000-0 53437-3 0 905 2 26536 98.8004 276.3573 0011400 84.6438 295.4444 14.10975582 9525 1 26536U 00055A 00332.99224537 .00000917 00000-0 53437-3 0 927 2 26536 98.8004 276.3573 0011400 84.6438 295.4444 14.10975582 9525 1 26536U 00055A 00335.39935637 .00001032 00000-0 59827-3 0 933 2 26536 98.8022 278.7163 0011501 77.4501 282.8189 14.10982967 9867 1 26536U 00055A 00335.39935637 .00001032 00000-0 59827-3 0 944 2 26536 98.8022 278.7163 0011501 77.4501 282.8189 14.10982967 9867 1 26536U 00055A 00339.44132673 .00000868 00000-0 50703-3 0 976 2 26536 98.8031 282.6772 0011536 66.1536 294.0517 14.10988950 10431 1 26536U 00055A 00339.44132673 .00000868 00000-0 50703-3 0 987 2 26536 98.8031 282.6772 0011536 66.1536 294.0517 14.10988950 10431 1 26536U 00055A 00339.44132673 .00000868 00000-0 50703-3 0 998 2 26536 98.8031 282.6772 0011536 66.1536 294.0517 14.10988950 10431 1 26536U 00055A 00342.34870918 .00000663 00000-0 39295-3 0 1012 2 26536 98.8032 285.5264 0011486 57.6925 302.4959 14.10991062 10848 1 26536U 00055A 00342.34870918 .00000663 00000-0 39295-3 0 1023 2 26536 98.8032 285.5264 0011486 57.6925 302.4959 14.10991062 10848 1 26536U 00055A 00342.34870918 .00000663 00000-0 39295-3 0 1034 2 26536 98.8032 285.5264 0011486 57.6925 302.4959 14.10991062 10848 1 26536U 00055A 00345.39791229 .00000514 00000-0 31005-3 0 1057 2 26536 98.8037 288.5160 0011500 50.1061 310.0889 14.10993269 11273 1 26536U 00055A 00345.39791229 .00000514 00000-0 31005-3 0 1079 2 26536 98.8037 288.5160 0011500 50.1061 310.0889 14.10993269 11273 1 26536U 00055A 00348.30528523 .00000445 00000-0 27152-3 0 1080 2 26536 98.8043 291.3673 0011653 41.7052 318.4988 14.10996065 11680 1 26536U 00055A 00348.30528523 .00000445 00000-0 27152-3 0 1091 2 26536 98.8043 291.3673 0011653 41.7052 318.4988 14.10996065 11680 1 26536U 00055A 00348.30528523 .00000445 00000-0 27152-3 0 1103 2 26536 98.8043 291.3673 0011653 41.7052 318.4988 14.10996065 11680 1 26536U 00055A 00351.42538181 .00000010 00000-0 29725-4 0 1120 2 26536 98.8062 294.4271 0011896 33.1468 326.9923 14.10994025 12121 1 26536U 00055A 00351.42538181 .00000010 00000-0 29725-4 0 1131 2 26536 98.8062 294.4271 0011896 33.1468 326.9923 14.10994025 12121 1 26536U 00055A 00354.47458394 .00000279 00000-0 17924-3 0 1152 2 26536 98.8052 297.4165 0011360 26.6749 333.5519 14.10998417 12551 1 26536U 00055A 00354.47458394 .00000279 00000-0 17924-3 0 1163 2 26536 98.8052 297.4165 0011360 26.6749 333.5519 14.10998417 12551 1 26536U 00055A 00354.47458394 .00000279 00000-0 17924-3 0 1174 2 26536 98.8052 297.4165 0011360 26.6749 333.5519 14.10998417 12551 1 26536U 00055A 00354.47458394 .00000279 00000-0 17924-3 0 1185 2 26536 98.8052 297.4165 0011360 26.6749 333.5519 14.10998417 12551 1 26536U 00055A 00359.36744284 .00000606 00000-0 36121-3 0 1223 2 26536 98.8062 302.2146 0011319 13.1515 347.0801 14.11007291 13245 1 26536U 00055A 00359.36744284 .00000606 00000-0 36121-3 0 1234 2 26536 98.8062 302.2146 0011319 13.1515 347.0801 14.11007291 13245 1 26536U 00055A 00359.36744284 .00000606 00000-0 36121-3 0 1256 2 26536 98.8062 302.2146 0011319 13.1515 347.0801 14.11007291 13245 1 26536U 00055A 00363.62206414 .00000560 00000-0 33555-3 0 1277 2 26536 98.8072 306.3880 0011052 2.0309 358.0800 14.11012020 13841 1 26536U 00055A 00363.62206414 .00000560 00000-0 33555-3 0 1301 2 26536 98.8072 306.3880 0011052 2.0309 358.0800 14.11012020 13841 1 26536U 00055A 01002.16033173 .00000697 00000-0 41184-3 0 1321 2 26536 98.8084 310.8397 0010834 349.6906 10.4402 14.11019835 14486 1 26536U 00055A 01002.16033173 .00000697 00000-0 41184-3 0 1332 2 26536 98.8084 310.8397 0010834 349.6906 10.4402 14.11019835 14486 1 26536U 00055A 01002.16033173 .00000697 00000-0 41184-3 0 1343 2 26536 98.8084 310.8397 0010834 349.6906 10.4402 14.11019835 14486 1 26536U 00055A 01005.42218579 .00000558 00000-0 33424-3 0 1366 2 26536 98.8081 314.0379 0010892 340.2366 19.7960 14.11021950 14943 1 26536U 00055A 01005.42218579 .00000558 00000-0 33424-3 0 1377 2 26536 98.8081 314.0379 0010892 340.2366 19.7960 14.11021950 14943 1 26536U 00055A 01005.42218579 .00000558 00000-0 33424-3 0 1412 2 26536 98.8081 314.0379 0010892 340.2366 19.7960 14.11021950 14943 1 26536U 01007.47855059 .00000602 00000-0 35879-3 0 155 2 26536 98.8093 316.0570 0010453 335.2099 24.6617 14.11022877 15237 1 26536U 00055A 01009.46405976 .00000429 00000-0 26250-3 0 1426 2 26536 98.8086 318.0029 0010534 328.9508 31.0678 14.11024334 15514 1 26536U 00055A 01009.46405976 .00000429 00000-0 26250-3 0 1437 2 26536 98.8086 318.0029 0010534 328.9508 31.0678 14.11024334 15514 1 26536U 00055A 01009.46405976 .00000429 00000-0 26250-3 0 1448 2 26536 98.8086 318.0029 0010534 328.9508 31.0678 14.11024334 15514 1 26536U 00055A 01009.46405976 .00000429 00000-0 26250-3 0 1460 2 26536 98.8086 318.0029 0010534 328.9508 31.0678 14.11024334 15514 1 26536U 00055A 01013.43501805 .00000422 00000-0 25870-3 0 1471 2 26536 98.8094 321.8980 0010516 317.5138 42.5197 14.11027918 16070 1 26536U 00055A 01013.43501805 .00000422 00000-0 25870-3 0 1505 2 26536 98.8094 321.8980 0010516 317.5138 42.5197 14.11027918 16070 1 26536U 00055A 01016.41322571 .00000365 00000-0 22730-3 0 1516 2 26536 98.8097 324.8190 0010435 308.8192 51.1888 14.11029602 16493 1 26536U 00055A 01016.41322571 .00000365 00000-0 22730-3 0 1538 2 26536 98.8097 324.8190 0010435 308.8192 51.1888 14.11029602 16493 1 26536U 00055A 01016.41322571 .00000365 00000-0 22730-3 0 1549 2 26536 98.8097 324.8190 0010435 308.8192 51.1888 14.11029602 16493 1 26536U 00055A 01019.39143329 .00000350 00000-0 21871-3 0 1551 2 26536 98.8103 327.7414 0010248 299.9258 60.0934 14.11031968 16913 1 26536U 00055A 01019.39143329 .00000350 00000-0 21871-3 0 1562 2 26536 98.8103 327.7414 0010248 299.9258 60.0934 14.11031968 16913 1 26536U 00055A 01020.34419961 .00000451 00000-0 27472-3 0 1584 2 26536 98.8112 328.6776 0010214 297.0483 220.0680 14.11033932 17040 1 26536U 00055A 01020.34419961 .00000451 00000-0 27472-3 0 1595 2 26536 98.8112 328.6776 0010214 297.0483 220.0680 14.11033932 17040 1 26536U 00055A 01020.34419961 .00000451 00000-0 27472-3 0 1618 2 26536 98.8112 328.6776 0010214 297.0483 220.0680 14.11033932 17040 1 26536U 00055A 01024.35509004 .00000387 00000-0 23954-3 0 1621 2 26536 98.8114 332.6118 0010103 285.2988 74.6847 14.11036565 17619 1 26536U 00055A 01024.35509004 .00000387 00000-0 23954-3 0 1632 2 26536 98.8114 332.6118 0010103 285.2988 74.6847 14.11036565 17619 1 26536U 00055A 01029.38965222 .00000431 00000-0 26398-3 0 1677 2 26536 98.8119 337.5520 0009969 269.8946 90.1055 14.11041175 18321 1 26536U 00055A 01029.38965222 .00000431 00000-0 26398-3 0 1688 2 26536 98.8119 337.5520 0009969 269.8946 90.1055 14.11041175 18321 1 26536U 00055A 01029.38965222 .00000431 00000-0 26398-3 0 1699 2 26536 98.8119 337.5520 0009969 269.8946 90.1055 14.11041175 18321 1 26536U 00055A 01029.38965222 .00000431 00000-0 26398-3 0 1712 2 26536 98.8119 337.5520 0009969 269.8946 90.1055 14.11041175 18321 1 26536U 00055A 01033.28965153 .00000424 00000-0 25996-3 0 1725 2 26536 98.8127 341.3783 0009915 257.6833 102.3220 14.11044761 18879 1 26536U 00055A 01033.28965153 .00000424 00000-0 25996-3 0 1736 2 26536 98.8127 341.3783 0009915 257.6833 102.3220 14.11044761 18879 1 26536U 00055A 01033.28965153 .00000424 00000-0 25996-3 0 1769 2 26536 98.8127 341.3783 0009915 257.6833 102.3220 14.11044761 18879 1 26536U 00055A 01037.26055028 .00000387 00000-0 23918-3 0 1773 2 26536 98.8128 345.2747 0009905 245.6743 114.3250 14.11047652 19430 1 26536U 00055A 01037.26055028 .00000387 00000-0 23918-3 0 1784 2 26536 98.8128 345.2747 0009905 245.6743 114.3250 14.11047652 19430 1 26536U 00055A 01037.26055028 .00000387 00000-0 23918-3 0 1795 2 26536 98.8128 345.2747 0009905 245.6743 114.3250 14.11047652 19430 1 26536U 00055A 01037.26055028 .00000387 00000-0 23918-3 0 1807 2 26536 98.8128 345.2747 0009905 245.6743 114.3250 14.11047652 19430 1 26536U 00055A 01040.30963147 .00000481 00000-0 29153-3 0 1819 2 26536 98.8130 348.2676 0009824 236.1119 123.9246 14.11051502 19866 1 26536U 00055A 01043.28779028 .00000363 00000-0 22610-3 0 1856 2 26536 98.8127 351.1900 0009867 227.1692 132.8419 14.11052780 20286 1 26536U 00055A 01043.28779028 .00000363 00000-0 22610-3 0 1878 2 26536 98.8127 351.1900 0009867 227.1692 132.8419 14.11052780 20286 1 26536U 00055A 01043.28779028 .00000363 00000-0 22610-3 0 1889 2 26536 98.8127 351.1900 0009867 227.1692 132.8419 14.11052780 20286 1 26536U 00055A 01046.26595463 .00000336 00000-0 21110-3 0 1894 2 26536 98.8132 354.1125 0009912 217.9599 142.0787 14.11054647 20700 1 26536U 00055A 01046.26595463 .00000336 00000-0 21110-3 0 1906 2 26536 98.8132 354.1125 0009912 217.9599 142.0787 14.11054647 20700 1 26536U 00055A 01046.26595463 .00000336 00000-0 21110-3 0 1917 2 26536 98.8132 354.1125 0009912 217.9599 142.0787 14.11054647 20700 1 26536U 00055A 01050.23683043 .00000258 00000-0 16759-3 0 1940 2 26536 98.8137 358.0115 0010242 204.5893 155.5059 14.11058661 21267 1 26536U 00055A 01050.23683044 .00000258 00000-0 16759-3 0 1952 2 26536 98.8137 358.0115 0010242 204.5893 155.5059 14.11058661 21267 1 26536U 00055A 01051.30045014 .00000264 00000-0 17064-3 0 1968 2 26536 98.8143 359.0555 0010247 201.6096 158.4609 14.11059078 21414 1 26536U 00055A 01051.30045014 .00000264 00000-0 17064-3 0 1980 2 26536 98.8143 359.0555 0010247 201.6096 158.4609 14.11059078 21414 1 26536U 00055A 01054.27859870 .00000180 00000-0 12437-3 0 2002 2 26536 98.8141 1.9773 0010306 192.8831 167.1929 14.11059664 21830 1 26536U 00055A 01054.27859870 .00000180 00000-0 12437-3 0 2013 2 26536 98.8141 1.9773 0010306 192.8831 167.1929 14.11059664 21830 1 26536U 00055A 01054.27859870 .00000180 00000-0 12437-3 0 2046 2 26536 98.8141 1.9773 0010306 192.8831 167.1929 14.11059664 21830 1 26536U 00055A 01058.24946414 .00000496 00000-0 29984-3 0 2054 2 26536 98.8153 5.8761 0010422 181.7824 178.3707 14.11065240 22398 1 26536U 00055A 01058.24946414 .00000496 00000-0 29984-3 0 2065 2 26536 98.8153 5.8761 0010422 181.7824 178.3707 14.11065240 22398 1 26536U 00055A 01058.24946414 .00000496 00000-0 29984-3 0 2076 2 26536 98.8153 5.8761 0010422 181.7824 178.3707 14.11065240 22398 1 26536U 00055A 01058.24946414 .00000496 00000-0 29984-3 0 2098 2 26536 98.8153 5.8761 0010422 181.7824 178.3707 14.11065240 22398 1 26536U 00055A 01063.35482405 .00000289 00000-0 18489-3 0 2123 2 26536 98.8159 10.8870 0010576 166.9104 193.1852 14.11067236 23111 1 26536U 00055A 01064.91480741 .00000231 00000-0 15274-3 0 2145 2 26536 98.8167 12.4191 0010573 162.4813 197.6673 14.11067606 23334 1 26536U 00055A 01064.91480741 .00000231 00000-0 15274-3 0 2156 2 26536 98.8167 12.4191 0010573 162.4813 197.6673 14.11067606 23334 1 26536U 00055A 01064.91480741 .00000231 00000-0 15274-3 0 2167 2 26536 98.8167 12.4191 0010573 162.4813 197.6673 14.11067606 23334 1 26536U 00055A 01064.91480741 .00000231 00000-0 15274-3 0 2178 2 26536 98.8167 12.4191 0010573 162.4813 197.6673 14.11067606 23334 1 26536U 00055A 01069.45290983 .00000427 00000-0 26155-3 0 2200 2 26536 98.8166 16.8752 0011011 150.0722 210.1626 14.11073823 23971 1 26536U 00055A 01069.45290983 .00000427 00000-0 26155-3 0 2222 2 26536 98.8166 16.8752 0011011 150.0722 210.1626 14.11073823 23971 1 26536U 00055A 01072.36010708 .00000227 00000-0 15005-3 0 2232 2 26536 98.8173 19.7292 0011069 141.8927 218.2755 14.11073957 24384 1 26536U 00055A 01072.36010708 .00000227 00000-0 15005-3 0 2243 2 26536 98.8173 19.7292 0011069 141.8927 218.2755 14.11073957 24384 1 26536U 00055A 01072.36010708 .00000227 00000-0 15005-3 0 2265 2 26536 98.8173 19.7292 0011069 141.8927 218.2755 14.11073957 24384 1 26536U 00055A 01075.40913602 .00000283 00000-0 18143-3 0 2277 2 26536 98.8177 22.7237 0011233 133.8094 226.4113 14.11076391 24812 1 26536U 00055A 01075.40913602 .00000283 00000-0 18143-3 0 2288 2 26536 98.8177 22.7237 0011233 133.8094 226.4113 14.11076391 24812 1 26536U 00055A 01078.31633683 .00000460 00000-0 27943-3 0 2318 2 26536 98.8181 25.5783 0011217 125.8126 234.4434 14.11080992 25226 1 26536U 00055A 01078.31633683 .00000460 00000-0 27943-3 0 2330 2 26536 98.8181 25.5783 0011217 125.8126 234.4434 14.11080992 25226 1 26536U 00055A 01079.94719458 .00000207 00000-0 13887-3 0 2347 2 26536 98.8192 27.1816 0011411 122.2858 237.9378 14.11081138 25455 1 26536U 00055A 01079.94719458 .00000207 00000-0 13887-3 0 2358 2 26536 98.8192 27.1816 0011411 122.2858 237.9378 14.11081138 25455 1 26536U 00055A 01079.94719458 .00000207 00000-0 13887-3 0 2370 2 26536 98.8192 27.1816 0011411 122.2858 237.9378 14.11081138 25455 1 26536U 00055A 01082.35803854 .00000198 00000-0 13425-3 0 2392 2 26536 98.8178 29.5474 0011426 114.8593 245.3810 14.11083024 25791 1 26536U 00055A 01085.33613341 .00000870 00000-0 50705-3 0 2426 2 26536 98.8190 32.4719 0011494 107.4728 252.8045 14.11089489 26215 1 26536U 00055A 01085.33613341 .00000870 00000-0 50705-3 0 2437 2 26536 98.8190 32.4719 0011494 107.4728 252.8045 14.11089489 26215 1 26536U 00055A 01085.33613341 .00000870 00000-0 50705-3 0 2448 2 26536 98.8190 32.4719 0011494 107.4728 252.8045 14.11089489 26215 1 26536U 00055A 01085.33613341 .00000870 00000-0 50705-3 0 2459 2 26536 98.8190 32.4719 0011494 107.4728 252.8045 14.11089489 26215 1 26536U 00055A 01085.33613341 .00000870 00000-0 50705-3 0 2460 2 26536 98.8190 32.4719 0011494 107.4728 252.8045 14.11089489 26215 1 26536U 00055A 01090.40019572 .00000967 00000-0 56099-3 0 2504 2 26536 98.8216 37.4485 0011679 94.5979 56.4900 14.11100010 26928 1 26536U 00055A 01090.40019572 .00000967 00000-0 56099-3 0 2526 2 26536 98.8216 37.4485 0011679 94.5979 56.4900 14.11100010 26928 1 26536U 00055A 01090.40019572 .00000967 00000-0 56099-3 0 2537 2 26536 98.8216 37.4485 0011679 94.5979 56.4900 14.11100010 26928 1 26536U 00055A 01090.40019572 .00000967 00000-0 56099-3 0 2548 2 26536 98.8216 37.4485 0011679 94.5979 56.4900 14.11100010 26928 1 26536U 00055A 01095.26299630 .00001382 00000-0 79113-3 0 2557 2 26536 98.8196 42.2236 0011565 82.5350 277.8170 14.11117897 27613 1 26536U 00055A 01095.26299630 .00001382 00000-0 79113-3 0 2568 2 26536 98.8196 42.2236 0011565 82.5350 277.8170 14.11117897 27613 1 26536U 00055A 01095.26299630 .00001382 00000-0 79113-3 0 2579 2 26536 98.8196 42.2236 0011565 82.5350 277.8170 14.11117897 27613 1 26536U 00055A 01098.24098844 .00001187 00000-0 68263-3 0 2638 2 26536 98.8205 45.1487 0011606 74.6398 285.5882 14.11124317 28032 1 26536U 00055A 01098.24098844 .00001187 00000-0 68263-3 0 2649 2 26536 98.8205 45.1487 0011606 74.6398 285.5882 14.11124317 28032 1 26536U 00055A 01098.24098844 .00001187 00000-0 68263-3 0 2650 2 26536 98.8205 45.1487 0011606 74.6398 285.5882 14.11124317 28032 1 26536U 00055A 01098.24098844 .00001187 00000-0 68263-3 0 2661 2 26536 98.8205 45.1487 0011606 74.6398 285.5882 14.11124317 28032 1 26536U 00055A 01098.24098844 .00001187 00000-0 68263-3 0 2672 2 26536 98.8205 45.1487 0011606 74.6398 285.5882 14.11124317 28032 1 26536U 00055A 01103.34612433 .00001420 00000-0 81188-3 0 2688 2 26536 98.8216 50.1635 0011605 61.5237 298.5981 14.11130585 28758 1 26536U 00055A 01103.34612433 .00001420 00000-0 81188-3 0 2699 2 26536 98.8216 50.1635 0011605 61.5237 298.5981 14.11130585 28758 1 26536U 00055A 01106.25322638 .00000697 00000-0 41093-3 0 2727 2 26536 98.8204 53.0200 0011597 52.4844 307.7008 14.11133509 29166 1 26536U 00055A 01106.25322638 .00000697 00000-0 41093-3 0 2738 2 26536 98.8204 53.0200 0011597 52.4844 307.7008 14.11133509 29166 1 26536U 00055A 01106.25322638 .00000697 00000-0 41093-3 0 2750 2 26536 98.8204 53.0200 0011597 52.4844 307.7008 14.11133509 29166 1 26536U 00055A 01108.80580241 .00000657 00000-0 36493-3 0 2775 2 26536 98.8207 55.5272 0010916 44.4120 315.8392 14.11135384 29526 1 26536U 00055A 01109.37302422 -.00000304 00000-0 -14469-3 0 2793 2 26536 98.8220 56.0869 0011623 44.9065 315.2679 14.11132151 29608 1 26536U 00055A 01109.37302422 -.00000304 00000-0 -14469-3 0 2805 2 26536 98.8220 56.0869 0011623 44.9065 315.2679 14.11132151 29608 1 26536U 00055A 01113.34368648 .00000722 00000-0 42458-3 0 2833 2 26536 98.8221 59.9874 0011356 34.3716 325.8781 14.11137738 30166 1 26536U 00055A 01113.34368648 .00000722 00000-0 42458-3 0 2844 2 26536 98.8221 59.9874 0011356 34.3716 325.8781 14.11137738 30166 1 26536U 00055A 01113.34368648 .00000722 00000-0 42458-3 0 2855 2 26536 98.8221 59.9874 0011356 34.3716 325.8781 14.11137738 30166 1 26536U 00055A 01113.34368648 .00000722 00000-0 42458-3 0 2866 2 26536 98.8221 59.9874 0011356 34.3716 325.8781 14.11137738 30166 1 26536U 00055A 01116.39255102 .00000393 00000-0 24202-3 0 2876 2 26536 98.8221 62.9819 0011443 25.3197 334.8434 14.11140041 30592 1 26536U 00055A 01116.39255102 .00000393 00000-0 24202-3 0 2898 2 26536 98.8221 62.9819 0011443 25.3197 334.8434 14.11140041 30592 1 26536U 00055A 01119.44142609 .00000447 00000-0 27219-3 0 2930 2 26536 98.8227 65.9776 0011392 16.9316 343.2410 14.11143769 31022 1 26536U 00055A 01119.44142609 .00000447 00000-0 27219-3 0 2941 2 26536 98.8227 65.9776 0011392 16.9316 343.2410 14.11143769 31022 1 26536U 00055A 01119.44142609 .00000447 00000-0 27219-3 0 2952 2 26536 98.8227 65.9776 0011392 16.9316 343.2410 14.11143769 31022 1 26536U 00055A 01123.62474671 .00000447 00000-0 27219-3 0 2998 2 26536 98.8227 70.0868 0011392 5.1011 355.0274 14.11147867 31610 1 26536U 00055A 01123.62474671 .00000447 00000-0 27219-3 0 3067 2 26536 98.8227 70.0868 0011392 5.1011 355.0274 14.11147867 31610 1 26536U 00055A 01128.23347945 .00000573 00000-0 34191-3 0 3070 2 26536 98.8236 74.6191 0010936 353.7029 6.4367 14.11154605 32263 1 26536U 00055A 01128.23347945 .00000573 00000-0 34191-3 0 3081 2 26536 98.8236 74.6191 0010936 353.7029 6.4367 14.11154605 32263 1 26536U 00055A 01128.23347945 .00000573 00000-0 34191-3 0 3092 2 26536 98.8236 74.6191 0010936 353.7029 6.4367 14.11154605 32263 1 26536U 00055A 01131.35321585 .00000175 00000-0 12142-3 0 3114 2 26536 98.8249 77.6872 0010816 345.3050 14.7369 14.11153825 32700 1 26536U 00055A 01131.35321585 .00000175 00000-0 12142-3 0 3125 2 26536 98.8249 77.6872 0010816 345.3050 14.7369 14.11153825 32700 1 26536U 00055A 01134.18935925 .00000297 00000-0 18900-3 0 3154 2 26536 98.8250 80.4739 0010758 337.1286 22.9605 14.11156785 33108 1 26536U 00055A 01134.61477480 .00000593 00000-0 35322-3 0 3166 2 26536 98.8256 80.8937 0010531 335.9364 24.1418 14.11159149 33169 1 26536U 00055A 01134.61477480 .00000593 00000-0 35322-3 0 3177 2 26536 98.8256 80.8937 0010531 335.9364 24.1418 14.11159149 33169 1 26536U 00055A 01134.61477480 .00000593 00000-0 35322-3 0 3188 2 26536 98.8256 80.8937 0010531 335.9364 24.1418 14.11159149 33169 1 26536U 00055A 01134.61477480 .00000593 00000-0 35322-3 0 3199 2 26536 98.8256 80.8937 0010531 335.9364 24.1418 14.11159149 33169 1 26536U 00055A 01137.30908881 .00000176 00000-0 12177-3 0 3204 2 26536 98.8253 83.5433 0010429 328.6263 31.4104 14.11159585 33549 1 26536U 00055A 01137.80541421 .00000056 00000-0 55225-4 0 3234 2 26536 98.8252 84.0312 0010358 327.3559 32.6931 14.11159039 33618 1 26536U 00055A 01140.28702496 .00000338 00000-0 21155-3 0 3272 2 26536 98.8256 86.4681 0010535 320.0191 40.0326 14.11161895 33968 1 26536U 00055A 01140.28702496 .00000338 00000-0 21155-3 0 3283 2 26536 98.8256 86.4681 0010535 320.0191 40.0326 14.11161895 33968 1 26536U 00055A 01140.28702496 .00000338 00000-0 21155-3 0 3294 2 26536 98.8256 86.4681 0010535 320.0191 40.0326 14.11161895 33968 1 26536U 00055A 01143.26494685 .00000513 00000-0 30866-3 0 3309 2 26536 98.8257 89.3967 0009990 309.9375 50.0719 14.11163595 34384 1 26536U 00055A 01143.26494685 .00000513 00000-0 30866-3 0 3310 2 26536 98.8257 89.3967 0009990 309.9375 50.0719 14.11163595 34384 1 26536U 00055A 01143.26494685 .00000513 00000-0 30866-3 0 3321 2 26536 98.8257 89.3967 0009990 309.9375 50.0719 14.11163595 34384 1 26536U 00055A 01146.03016257 .00000240 00000-0 15724-3 0 3350 2 26536 98.8263 92.1142 0010167 303.0794 56.9242 14.11164176 34771 1 26536U 00055A 01146.03016257 .00000240 00000-0 15724-3 0 3361 2 26536 98.8263 92.1142 0010167 303.0794 56.9242 14.11164176 34771 1 26536U 00055A 01149.29169799 .00000299 00000-0 19029-3 0 3391 2 26536 98.8264 95.3205 0010016 293.6856 66.3397 14.11167032 35235 1 26536U 00055A 01149.29169799 .00000299 00000-0 19029-3 0 3403 2 26536 98.8264 95.3205 0010016 293.6856 66.3397 14.11167032 35235 1 26536U 00055A 01149.29169799 .00000299 00000-0 19029-3 0 3425 2 26536 98.8264 95.3205 0010016 293.6856 66.3397 14.11167032 35235 1 26536U 00055A 01151.56058338 .00000370 00000-0 22952-3 0 3434 2 26536 98.8263 97.5524 0009834 285.5831 74.4165 14.11168026 35553 1 26536U 00055A 01151.56058338 .00000370 00000-0 22952-3 0 3456 2 26536 98.8263 97.5524 0009834 285.5831 74.4165 14.11168026 35553 1 26536U 00055A 01151.77330273 .00000185 00000-0 10251-3 0 3420 2 26536 98.8246 97.7594 0010484 283.1400 76.9079 14.11167054 35586 1 26536U 00055A 01154.25488755 .00000609 00000-0 36188-3 0 3489 2 26536 98.8247 100.2010 0009787 276.9422 83.0790 14.11172240 35939 1 26536U 00055A 01154.25488755 .00000609 00000-0 36188-3 0 3490 2 26536 98.8247 100.2010 0009787 276.9422 83.0790 14.11172240 35939 1 26536U 00055A 01156.09834929 .00000228 00000-0 15055-3 0 3501 2 26536 98.8253 102.0144 0009723 271.2725 88.7175 14.11171979 36194 1 26536U 00055A 01156.09834929 .00000228 00000-0 15055-3 0 3534 2 26536 98.8253 102.0144 0009723 271.2725 88.7175 14.11171979 36194 1 26536U 00055A 01156.09834929 .00000228 00000-0 15055-3 0 3556 2 26536 98.8253 102.0144 0009723 271.2725 88.7175 14.11171979 36194 1 26536U 00055A 01158.79265978 .00000295 00000-0 16347-3 0 3545 2 26536 98.8252 104.6609 0010394 262.1430 97.9040 14.11172850 36579 1 26536U 00055A 01160.28160102 -.00000030 00000-0 74444-5 0 3570 2 26536 98.8279 106.1272 0009558 257.9366 102.0455 14.11171391 36781 1 26536U 00055A 01160.28160653 .00000285 00000-0 18239-3 0 3592 2 26536 98.8271 106.1250 0009742 260.1745 99.8444 14.11173995 36784 1 26536U 00055A 01160.28160653 .00000285 00000-0 18239-3 0 3615 2 26536 98.8271 106.1250 0009742 260.1745 99.8444 14.11173995 36784 1 26536U 00055A 01163.11770175 .00000678 00000-0 40045-3 0 3623 2 26536 98.8269 108.9162 0009768 249.1473 110.8611 14.11177173 37183 1 26536U 00055A 01163.11770175 .00000678 00000-0 40045-3 0 3634 2 26536 98.8269 108.9162 0009768 249.1473 110.8611 14.11177173 37183 1 26536U 00055A 01163.11770175 .00000678 00000-0 40045-3 0 3645 2 26536 98.8269 108.9162 0009768 249.1473 110.8611 14.11177173 37183 1 26536U 00055A 01163.11770175 .00000678 00000-0 40045-3 0 3678 2 26536 98.8269 108.9162 0009768 249.1473 110.8611 14.11177173 37183 1 26536U 00055A 01165.81199986 .00000477 00000-0 26443-3 0 3653 2 26536 98.8255 111.5625 0010393 241.7965 118.2655 14.11178567 37562 1 26536U 00055A 01168.29355994 .00000021 00000-0 35656-4 0 3697 2 26536 98.8273 114.0038 0009739 232.9565 127.0075 14.11177904 37915 1 26536U 00055A 01168.29355994 .00000021 00000-0 35656-4 0 3710 2 26536 98.8273 114.0038 0009739 232.9565 127.0075 14.11177904 37915 1 26536U 00055A 01168.29355994 .00000021 00000-0 35656-4 0 3732 2 26536 98.8273 114.0038 0009739 232.9565 127.0075 14.11177904 37915 1 26536U 00055A 01168.29355994 .00000021 00000-0 35656-4 0 3743 2 26536 98.8273 114.0038 0009739 232.9565 127.0075 14.11177904 37915 1 26536U 00055A 01172.26410190 .00000309 00000-0 19561-3 0 3751 2 26536 98.8275 117.9065 0009757 222.3321 137.7450 14.11182035 38470 1 26536U 00055A 01172.26410190 .00000309 00000-0 19561-3 0 3773 2 26536 98.8275 117.9065 0009757 222.3321 137.7450 14.11182035 38470 1 26536U 00055A 01175.31288394 .00000542 00000-0 32469-3 0 3806 2 26536 98.8281 120.9062 0009975 211.4970 148.5825 14.11186607 38902 1 26536U 00055A 01175.31288394 .00000542 00000-0 32469-3 0 3817 2 26536 98.8281 120.9062 0009975 211.4970 148.5825 14.11186607 38902 1 26536U 00055A 01175.31288394 .00000542 00000-0 32469-3 0 3828 2 26536 98.8281 120.9062 0009975 211.4970 148.5825 14.11186607 38902 1 26536U 00055A 01179.35428131 .00000436 00000-0 26606-3 0 3841 2 26536 98.8281 124.8808 0010089 199.0009 161.0250 14.11187405 39477 1 26536U 00055A 01179.35428131 .00000436 00000-0 26606-3 0 3852 2 26536 98.8281 124.8808 0010089 199.0009 161.0250 14.11187405 39477 1 26536U 00055A 01179.85061420 .00000221 00000-0 12242-3 0 3854 2 26536 98.8268 125.3679 0010580 201.0290 159.0942 14.11186169 39545 1 26536U 00055A 01182.19036393 .00000759 00000-0 44514-3 0 3882 2 26536 98.8266 127.6719 0010492 191.2699 168.8279 14.11191081 39874 1 26536U 00055A 01183.89200207 .00000388 00000-0 23931-3 0 3908 2 26536 98.8268 129.3443 0010700 186.2552 173.8375 14.11191421 40113 1 26536U 00055A 01186.51536422 -.00000009 00000-0 19051-4 0 3945 2 26536 98.8285 131.9247 0010578 178.2357 181.8646 14.11190684 40480 1 26536U 00055A 01186.51536422 -.00000009 00000-0 19051-4 0 3956 2 26536 98.8285 131.9247 0010578 178.2357 181.8646 14.11190684 40480 1 26536U 00055A 01190.55676537 .00000334 00000-0 20927-3 0 3994 2 26536 98.8290 135.8989 0010637 166.3365 193.8194 14.11193101 41057 1 26536U 00055A 01190.55676537 .00000334 00000-0 20927-3 0 4007 2 26536 98.8290 135.8989 0010637 166.3365 193.8194 14.11193101 41057 1 26536U 00055A 01190.55676537 .00000334 00000-0 20927-3 0 4018 2 26536 98.8290 135.8989 0010637 166.3365 193.8194 14.11193101 41057 1 26536U 00055A 01190.55676537 .00000334 00000-0 20927-3 0 4029 2 26536 98.8290 135.8989 0010637 166.3365 193.8194 14.11193101 41057 1 26536U 00055A 01194.52724797 .00000199 00000-0 13448-3 0 4054 2 26536 98.8289 139.8020 0010741 155.3250 204.8435 14.11195087 41610 1 26536U 00055A 01194.52724797 .00000199 00000-0 13448-3 0 4087 2 26536 98.8289 139.8020 0010741 155.3250 204.8435 14.11195087 41610 1 26536U 00055A 01198.28502398 -.00000042 00000-0 79179-6 0 4090 2 26536 98.8286 143.4999 0011000 144.5529 215.6337 14.11195329 42140 1 26536U 00055A 01198.35592618 -.00000042 00000-0 11014-5 0 4107 2 26536 98.8284 143.5694 0010977 144.1076 216.0830 14.11195352 42156 1 26536U 00055A 01198.35592618 -.00000042 00000-0 11014-5 0 4118 2 26536 98.8284 143.5694 0010977 144.1076 216.0830 14.11195352 42156 1 26536U 00055A 01201.33378753 .00000519 00000-0 31183-3 0 4130 2 26536 98.8280 146.4979 0011132 136.9479 223.2922 14.11200011 42577 1 26536U 00055A 01204.38252920 .00000143 00000-0 10349-3 0 4173 2 26536 98.8296 149.4972 0011307 128.9493 231.2485 14.11200427 43004 1 26536U 00055A 01204.38252920 .00000143 00000-0 10349-3 0 4184 2 26536 98.8296 149.4972 0011307 128.9493 231.2485 14.11200427 43004 1 26536U 00055A 01204.38252920 .00000143 00000-0 10349-3 0 4195 2 26536 98.8296 149.4972 0011307 128.9493 231.2485 14.11200427 43004 1 26536U 00055A 01204.38252920 .00000143 00000-0 10349-3 0 4207 2 26536 98.8296 149.4972 0011307 128.9493 231.2485 14.11200427 43004 1 26536U 00055A 01207.78578863 -.00000005 00000-0 21610-4 0 4214 2 26536 98.8300 152.8436 0011470 119.4146 240.7970 14.11199759 43485 1 26536U 00055A 01207.78578863 -.00000005 00000-0 21610-4 0 4236 2 26536 98.8300 152.8436 0011470 119.4146 240.7970 14.11199759 43485 1 26536U 00055A 01207.78580058 .00000132 00000-0 73051-4 0 4219 2 26536 98.8273 152.8411 0010942 122.0390 238.2351 14.11200598 43480 1 26536U 00055A 01211.54355615 .00000439 00000-0 26728-3 0 4260 2 26536 98.8277 156.5400 0011482 109.5197 250.7604 14.11204367 44016 1 26536U 00055A 01211.54355615 .00000439 00000-0 26728-3 0 4282 2 26536 98.8277 156.5400 0011482 109.5197 250.7604 14.11204367 44016 1 26536U 00055A 01211.54355615 .00000439 00000-0 26728-3 0 4293 2 26536 98.8277 156.5400 0011482 109.5197 250.7604 14.11204367 44016 1 26536U 00055A 01214.52138599 -.00000011 00000-0 17956-4 0 4307 2 26536 98.8285 159.4681 0011614 101.9362 258.2938 14.11204044 44436 1 26536U 00055A 01214.52138599 -.00000011 00000-0 17956-4 0 4318 2 26536 98.8285 159.4681 0011614 101.9362 258.2938 14.11204044 44436 1 26536U 00055A 01214.52138599 -.00000011 00000-0 17956-4 0 4329 2 26536 98.8285 159.4681 0011614 101.9362 258.2938 14.11204044 44436 1 26536U 00055A 01217.28652703 -.00000115 00000-0 -39542-4 0 4368 2 26536 98.8297 162.1874 0011709 94.6019 265.6443 14.11203483 44828 1 26536U 00055A 01217.28652703 -.00000115 00000-0 -39542-4 0 4379 2 26536 98.8297 162.1874 0011709 94.6019 265.6443 14.11203483 44828 1 26536U 00055A 01217.28652703 -.00000115 00000-0 -39542-4 0 4380 2 26536 98.8297 162.1874 0011709 94.6019 265.6443 14.11203483 44828 1 26536U 00055A 01220.54797372 .00000482 00000-0 29111-3 0 4391 2 26536 98.8297 165.3956 0011665 86.4832 273.8055 14.11207940 45280 1 26536U 00055A 01220.54797372 .00000482 00000-0 29111-3 0 4403 2 26536 98.8297 165.3956 0011665 86.4832 273.8055 14.11207940 45280 1 26536U 00055A 01221.82418878 .00000313 00000-0 17344-3 0 4437 2 26536 98.8284 166.6492 0011003 83.1384 277.1554 14.11208009 45465 1 26536U 00055A 01222.53318570 .00000403 00000-0 24720-3 0 4485 2 26536 98.8301 167.3487 0011727 81.4840 278.7631 14.11209438 45569 1 26536U 00055A 01225.22740920 .00000181 00000-0 12465-3 0 4499 2 26536 98.8305 169.9995 0011828 73.4763 286.7515 14.11209589 45941 1 26536U 00055A 01225.22740920 .00000181 00000-0 12465-3 0 4501 2 26536 98.8305 169.9995 0011828 73.4763 286.7515 14.11209589 45941 1 26536U 00055A 01227.70893451 .00000164 00000-0 11479-3 0 4532 2 26536 98.8298 172.4404 0011756 67.6276 292.6049 14.11209801 46294 1 26536U 00055A 01227.70893451 .00000164 00000-0 11479-3 0 4543 2 26536 98.8298 172.4404 0011756 67.6276 292.6049 14.11209801 46294 1 26536U 00055A 01227.70893451 .00000164 00000-0 11479-3 0 4554 2 26536 98.8298 172.4404 0011756 67.6276 292.6049 14.11209801 46294 1 26536U 00055A 01227.70893451 .00000164 00000-0 11479-3 0 4587 2 26536 98.8298 172.4404 0011756 67.6276 292.6049 14.11209801 46294 1 26536U 00055A 01233.16827961 .00000167 00000-0 11688-3 0 4593 2 26536 98.8301 177.8122 0011639 53.6942 306.5795 14.11214674 47063 1 26536U 00055A 01233.16827961 .00000167 00000-0 11688-3 0 4605 2 26536 98.8301 177.8122 0011639 53.6942 306.5795 14.11214674 47063 1 26536U 00055A 01233.16827961 .00000167 00000-0 11688-3 0 4616 2 26536 98.8301 177.8122 0011639 53.6942 306.5795 14.11214674 47063 1 26536U 00055A 01233.16827961 .00000167 00000-0 11688-3 0 4627 2 26536 98.8301 177.8122 0011639 53.6942 306.5795 14.11214674 47063 1 26536U 00055A 01236.28788434 -.00000019 00000-0 13584-4 0 4630 2 26536 98.8303 180.8802 0011673 45.6293 314.5706 14.11214329 47509 1 26536U 00055A 01239.90380537 .00000607 00000-0 36039-3 0 4680 2 26536 98.8287 184.4362 0011435 35.9825 324.2536 14.11219803 48018 1 26536U 00055A 01239.90380537 .00000607 00000-0 36039-3 0 4691 2 26536 98.8287 184.4362 0011435 35.9825 324.2536 14.11219803 48018 1 26536U 00055A 01242.52709718 .00000438 00000-0 26678-3 0 4723 2 26536 98.8297 187.0180 0011429 28.9511 331.2205 14.11221862 48382 1 26536U 00055A 01242.52709718 .00000438 00000-0 26678-3 0 4734 2 26536 98.8297 187.0180 0011429 28.9511 331.2205 14.11221862 48382 1 26536U 00055A 01242.81070791 .00000475 00000-0 26316-3 0 4716 2 26536 98.8311 187.2971 0011324 28.0318 332.1932 14.11221934 48421 1 26536U 00055A 01246.07209350 .00000128 00000-0 94991-4 0 4768 2 26536 98.8307 190.5062 0011208 19.6597 340.4658 14.11221420 48887 1 26536U 00055A 01246.07209350 .00000128 00000-0 94991-4 0 4779 2 26536 98.8307 190.5062 0011208 19.6597 340.4658 14.11221420 48887 1 26536U 00055A 01247.34830009 .00000296 00000-0 18792-3 0 4782 2 26536 98.8310 191.7616 0011162 15.9568 344.2016 14.11222961 49067 1 26536U 00055A 01247.34830009 .00000296 00000-0 18792-3 0 4793 2 26536 98.8310 191.7616 0011162 15.9568 344.2016 14.11222961 49067 1 26536U 00055A 01247.34830009 .00000296 00000-0 18792-3 0 4805 2 26536 98.8310 191.7616 0011162 15.9568 344.2016 14.11222961 49067 1 26536U 00055A 01247.34830009 .00000296 00000-0 18792-3 0 4827 2 26536 98.8310 191.7616 0011162 15.9568 344.2016 14.11222961 49067 1 26536U 00055A 01249.82980082 .00000370 00000-0 20525-3 0 4818 2 26536 98.8316 194.2028 0011011 8.8557 351.3289 14.11225637 49413 1 26536U 00055A 01250.32609325 .00001024 00000-0 59149-3 0 4836 2 26536 98.8306 194.6919 0010610 7.6590 352.5069 14.11229204 49483 1 26536U 00055A 01250.32609325 .00001024 00000-0 59149-3 0 4847 2 26536 98.8306 194.6919 0010610 7.6590 352.5069 14.11229204 49483 1 26536U 00055A 01250.32609325 .00001024 00000-0 59149-3 0 4869 2 26536 98.8306 194.6919 0010610 7.6590 352.5069 14.11229204 49483 1 26536U 00055A 01250.32609325 .00001024 00000-0 59149-3 0 4881 2 26536 98.8306 194.6919 0010610 7.6590 352.5069 14.11229204 49483 1 26536U 00055A 01255.28904067 .00000476 00000-0 28786-3 0 4896 2 26536 98.8313 199.5761 0010625 354.1376 5.8695 14.11231348 50182 1 26536U 00055A 01255.28904067 .00000476 00000-0 28786-3 0 4908 2 26536 98.8313 199.5761 0010625 354.1376 5.8695 14.11231348 50182 1 26536U 00055A 01255.28904067 .00000476 00000-0 28786-3 0 4920 2 26536 98.8313 199.5761 0010625 354.1376 5.8695 14.11231348 50182 1 26536U 00055A 01255.28904067 .00000476 00000-0 28786-3 0 4931 2 26536 98.8313 199.5761 0010625 354.1376 5.8695 14.11231348 50182 1 26536U 00055A 01256.77795774 .00000396 00000-0 21957-3 0 4911 2 26536 98.8325 201.0401 0010641 349.6053 10.5368 14.11232499 50395 1 26536U 00055A 01258.19593623 .00000407 00000-0 24966-3 0 4958 2 26536 98.8319 202.4342 0010533 345.5183 14.5745 14.11234327 50593 1 26536U 00055A 01258.19593623 .00000407 00000-0 24966-3 0 4970 2 26536 98.8319 202.4342 0010533 345.5183 14.5745 14.11234327 50593 1 26536U 00055A 01261.24460428 .00002828 00000-0 15898-2 0 4989 2 26536 98.8347 205.4393 0010520 335.9078 24.2123 14.11246879 51027 1 26536U 00055A 01261.24460428 .00002828 00000-0 15898-2 0 5003 2 26536 98.8347 205.4393 0010520 335.9078 24.2123 14.11246879 51027 1 26536U 00055A 01261.24460428 .00002828 00000-0 15898-2 0 5014 2 26536 98.8347 205.4393 0010520 335.9078 24.2123 14.11246879 51027 1 26536U 00055A 01261.24460428 .00002828 00000-0 15898-2 0 5025 2 26536 98.8347 205.4393 0010520 335.9078 24.2123 14.11246879 51027 1 26536U 00055A 01264.86040242 .00000236 00000-0 15507-3 0 5034 2 26536 98.8330 208.9959 0010029 325.6148 34.2222 14.11242246 51534 1 26536U 00055A 01264.86040242 .00000236 00000-0 15507-3 0 5045 2 26536 98.8330 208.9959 0010029 325.6148 34.2222 14.11242246 51534 1 26536U 00055A 01267.48370535 .00000763 00000-0 44696-3 0 5076 2 26536 98.8322 211.5764 0009993 317.5332 42.5306 14.11247511 51908 1 26536U 00055A 01267.48370535 .00000763 00000-0 44696-3 0 5087 2 26536 98.8322 211.5764 0009993 317.5332 42.5306 14.11247511 51908 1 26536U 00055A 01267.48370535 .00000763 00000-0 44696-3 0 5098 2 26536 98.8322 211.5764 0009993 317.5332 42.5306 14.11247511 51908 1 26536U 00055A 01267.48370535 .00000763 00000-0 44696-3 0 5100 2 26536 98.8322 211.5764 0009993 317.5332 42.5306 14.11247511 51908 1 26536U 00055A 01270.46144161 .00000850 00000-0 49469-3 0 5117 2 26536 98.8332 214.5060 0009967 308.9631 51.0915 14.11254132 52323 1 26536U 00055A 01270.46144161 .00000850 00000-0 49469-3 0 5128 2 26536 98.8332 214.5060 0009967 308.9631 51.0915 14.11254132 52323 1 26536U 00055A 01270.46144161 .00000850 00000-0 49469-3 0 5139 2 26536 98.8332 214.5060 0009967 308.9631 51.0915 14.11254132 52323 1 26536U 00055A 01274.85712460 .00000944 00000-0 54660-3 0 5176 2 26536 98.8341 218.8353 0009809 295.3353 64.7069 14.11263557 52940 1 26536U 00055A 01274.85712460 .00000944 00000-0 54660-3 0 5187 2 26536 98.8341 218.8353 0009809 295.3353 64.7069 14.11263557 52940 1 26536U 00055A 01274.85712460 .00000944 00000-0 54660-3 0 5198 2 26536 98.8341 218.8353 0009809 295.3353 64.7069 14.11263557 52940 1 26536U 00055A 01278.33110972 .00001044 00000-0 60227-3 0 5216 2 26536 98.8346 222.2528 0009804 285.2002 74.8307 14.11272085 53430 1 26536U 00055A 01278.54379786 .00001359 00000-0 77629-3 0 5234 2 26536 98.8355 222.4636 0009777 282.7079 77.3114 14.11274655 53469 1 26536U 00055A 01280.03263857 .00001012 00000-0 58413-3 0 5261 2 26536 98.8358 223.9297 0009766 278.3915 81.6034 14.11276583 53673 1 26536U 00055A 01282.72673282 .00000464 00000-0 28086-3 0 5281 2 26536 98.8368 226.5829 0009721 270.3592 89.6154 14.11277707 54051 1 26536U 00055A 01282.72673282 .00000464 00000-0 28086-3 0 5304 2 26536 98.8368 226.5829 0009721 270.3592 89.6154 14.11277707 54051 1 26536U 00055A 01284.64096343 .00000573 00000-0 34116-3 0 5339 2 26536 98.8354 228.4671 0009750 265.1362 94.8733 14.11280373 54325 1 26536U 00055A 01284.64096343 .00000573 00000-0 34116-3 0 5340 2 26536 98.8354 228.4671 0009750 265.1362 94.8733 14.11280373 54325 1 26536U 00055A 01287.26415343 .00000688 00000-0 40496-3 0 5374 2 26536 98.8361 231.0475 0009813 257.1599 102.8708 14.11285427 54695 1 26536U 00055A 01287.26415343 .00000688 00000-0 40496-3 0 5385 2 26536 98.8361 231.0475 0009813 257.1599 102.8708 14.11285427 54695 1 26536U 00055A 01287.26415343 .00000688 00000-0 40496-3 0 5396 2 26536 98.8361 231.0475 0009813 257.1599 102.8708 14.11285427 54695 1 26536U 00055A 01287.26415343 .00000688 00000-0 40496-3 0 5408 2 26536 98.8361 231.0475 0009813 257.1599 102.8708 14.11285427 54695 1 26536U 00055A 01291.30526293 .00000685 00000-0 40344-3 0 5415 2 26536 98.8371 235.0305 0009958 243.7028 116.3617 14.11293863 55266 1 26536U 00055A 01291.30526293 .00000685 00000-0 40344-3 0 5426 2 26536 98.8371 235.0305 0009958 243.7028 116.3617 14.11293863 55266 1 26536U 00055A 01291.30526293 .00000685 00000-0 40344-3 0 5437 2 26536 98.8371 235.0305 0009958 243.7028 116.3617 14.11293863 55266 1 26536U 00055A 01293.92841924 .00000761 00000-0 44504-3 0 5457 2 26536 98.8388 237.6137 0010115 235.8145 124.2059 14.11297705 55632 1 26536U 00055A 01293.92841924 .00000761 00000-0 44504-3 0 5479 2 26536 98.8388 237.6137 0010115 235.8145 124.2059 14.11297705 55632 1 26536U 00055A 01293.92841924 .00000761 00000-0 44504-3 0 5491 2 26536 98.8388 237.6137 0010115 235.8145 124.2059 14.11297705 55632 1 26536U 00055A 01293.92841924 .00000761 00000-0 44504-3 0 5503 2 26536 98.8388 237.6137 0010115 235.8145 124.2059 14.11297705 55632 1 26536U 00055A 01293.92841924 .00000761 00000-0 44504-3 0 5514 2 26536 98.8388 237.6137 0010115 235.8145 124.2059 14.11297705 55632 1 26536U 00055A 01299.31652132 .00001570 00000-0 89239-3 0 5528 2 26536 98.8395 242.9195 0010489 219.4800 140.7192 14.11319060 56397 1 26536U 00055A 01299.31652132 .00001570 00000-0 89239-3 0 5562 2 26536 98.8395 242.9195 0010489 219.4800 140.7192 14.11319060 56397 1 26536U 00055A 01299.31652132 .00001570 00000-0 89239-3 0 5573 2 26536 98.8395 242.9195 0010489 219.4800 140.7192 14.11319060 56397 1 26536U 00055A 01299.31652132 .00001570 00000-0 89239-3 0 5584 2 26536 98.8395 242.9195 0010489 219.4800 140.7192 14.11319060 56397 1 26536U 00055A 01305.69701525 .00001326 00000-0 75727-3 0 5603 2 26536 98.8394 249.2044 0010657 201.3535 158.6300 14.11334348 57296 1 26536U 00055A 01306.83134281 .00001419 00000-0 80859-3 0 5615 2 26536 98.8396 250.3221 0010746 198.2880 161.7927 14.11338050 57456 1 26536U 00055A 01307.61117898 .00001376 00000-0 78484-3 0 5643 2 26536 98.8406 251.0908 0010758 196.0797 164.0022 14.11340053 57564 1 26536U 00055A 01307.96565007 .00001344 00000-0 76729-3 0 5634 2 26536 98.8406 251.4398 0010772 194.9942 165.0900 14.11340837 57618 1 26536U 00055A 01308.74548595 .00001080 00000-0 62127-3 0 5649 2 26536 98.8412 252.2083 0010836 192.8157 167.2707 14.11341468 57723 1 26536U 00055A 01309.87979269 .00000743 00000-0 43507-3 0 5657 2 26536 98.8421 253.3265 0010696 189.4582 170.6347 14.11342096 57888 1 26536U 00055A 01310.65962808 .00000702 00000-0 41233-3 0 5666 2 26536 98.8425 254.0945 0010784 187.0655 173.0354 14.11343084 57993 1 26536U 00055A 01311.79393133 .00000923 00000-0 53429-3 0 5677 2 26536 98.8431 255.2121 0010604 183.7312 176.3791 14.11346195 58159 1 26536U 00055A 01312.85733726 .00001251 00000-0 71540-3 0 5681 2 26536 98.8427 256.2596 0010615 180.8840 179.2353 14.11350356 58304 1 26536U 00055A 01312.85733727 .00001251 00000-0 71540-3 0 5682 2 26536 98.8427 256.2596 0010615 180.8840 179.2353 14.11350356 58304 1 26536U 00055A 01313.63716623 .00001256 00000-0 71832-3 0 5695 2 26536 98.8425 257.0276 0010691 178.7747 181.3427 14.11352154 58418 1 26536U 00055A 01314.77146296 .00001168 00000-0 66937-3 0 5708 2 26536 98.8419 258.1442 0010952 176.1224 184.0049 14.11354704 58570 1 26536U 00055A 01315.90575744 .00001103 00000-0 63364-3 0 5720 2 26536 98.8415 259.2624 0011130 173.4058 186.7285 14.11357009 58734 1 26536U 00055A 01316.61468961 .00001141 00000-0 65453-3 0 5735 2 26536 98.8414 259.9609 0011172 171.4502 188.6854 14.11358862 58833 1 26536U 00055A 01316.96915593 .00001175 00000-0 67347-3 0 5743 2 26536 98.8413 260.3102 0011222 170.5853 189.5540 14.11359842 58887 1 26536U 00055A 01317.74898043 .00001075 00000-0 61828-3 0 5747 2 26536 98.8420 261.0789 0011261 168.4554 191.6855 14.11361163 58995 1 26536U 00055A 01318.88327106 .00000860 00000-0 49905-3 0 5776 2 26536 98.8422 262.1976 0011134 165.0537 195.0946 14.11362411 59155 1 26536U 00055A 01319.66309479 .00000811 00000-0 47229-3 0 5768 2 26536 98.8429 262.9663 0011096 162.7490 197.4039 14.11363502 59265 1 26536U 00055A 01320.79738362 .00000588 00000-0 34884-3 0 5776 2 26536 98.8434 264.0840 0011046 159.2194 200.9403 14.11364068 59429 1 26536U 00055A 01321.08095604 .00000630 00000-0 37246-3 0 5788 2 26536 98.8435 264.3633 0011068 158.5575 201.6078 14.11364677 59468 1 26536U 00055A 01321.86077799 .00000568 00000-0 33817-3 0 5790 2 26536 98.8438 265.1316 0011140 156.4905 203.6778 14.11365433 59575 1 26536U 00055A 01322.64059939 .00000659 00000-0 38805-3 0 5808 2 26536 98.8440 265.8997 0011155 154.3083 205.8652 14.11366941 59682 1 26536U 00055A 01323.77488266 .00000939 00000-0 54267-3 0 5814 2 26536 98.8443 267.0174 0011075 151.1584 209.0229 14.11370361 59843 1 26536U 00055A 01324.48380808 .00001051 00000-0 60495-3 0 5834 2 26536 98.8442 267.7160 0011142 149.3240 210.8597 14.11372355 59941 1 26536U 00055A 01324.90916309 .00001143 00000-0 65555-3 0 5847 2 26536 98.8437 268.1351 0011206 148.5509 211.6361 14.11373751 60000 1 26536U 00055A 01325.61808693 .00001133 00000-0 65017-3 0 5855 2 26536 98.8445 268.8344 0011205 146.5208 213.6657 14.11375275 60105 1 26536U 00055A 01326.75236481 .00001022 00000-0 58844-3 0 5869 2 26536 98.8447 269.9525 0011232 143.6626 216.5290 14.11377289 60261 1 26536U 00055A 01327.46128827 .00000886 00000-0 51370-3 0 5888 2 26536 98.8448 270.6517 0011240 141.7566 218.4394 14.11378045 60361 1 26536U 00055A 01327.88664199 .00000738 00000-0 43154-3 0 5899 2 26536 98.8450 271.0708 0011367 140.8314 219.3650 14.11377969 60428 1 26536U 00055A 01328.59556514 .00000608 00000-0 35972-3 0 5894 2 26536 98.8452 271.7693 0011420 138.8868 221.3144 14.11378394 60526 1 26536U 00055A 01329.72984046 .00000698 00000-0 40963-3 0 5902 2 26536 98.8457 272.8877 0011419 135.3506 224.8584 14.11380446 60680 1 26536U 00055A 01330.50965376 .00000683 00000-0 40146-3 0 5913 2 26536 98.8453 273.6561 0011421 133.0489 227.1637 14.11381535 60790 1 26536U 00055A 01330.86411421 .00000669 00000-0 39386-3 0 5928 2 26536 98.8450 274.0055 0011367 131.6722 228.5412 14.11381982 60841 1 26536U 00055A 01331.64392669 .00000635 00000-0 37469-3 0 5920 2 26536 98.8453 274.7739 0011369 129.6199 230.5957 14.11382802 60958 1 26536U 00055A 01332.77819961 .00000468 00000-0 28249-3 0 5957 2 26536 98.8452 275.8918 0011375 126.6644 233.5578 14.11383344 61110 1 26536U 00055A 01333.48711914 .00000475 00000-0 28655-3 0 5965 2 26536 98.8456 276.5906 0011459 125.1177 235.1087 14.11384229 61214 1 26536U 00055A 01333.91247039 .00000708 00000-0 41511-3 0 5971 2 26536 98.8454 277.0097 0011500 124.7164 235.5158 14.11385916 61270 1 26536U 00055A 01334.90495409 .00000893 00000-0 51714-3 0 5978 2 26536 98.8453 277.9876 0011548 122.7200 237.5120 14.11388398 61418 1 26536U 00055A 01334.90495409 .00000893 00000-0 51714-3 0 5990 2 26536 98.8453 277.9876 0011548 122.7200 237.5120 14.11388398 61418 1 26536U 00055A 01335.61387008 .00000899 00000-0 52071-3 0 5997 2 26536 98.8459 278.6869 0011555 120.7403 239.4887 14.11389665 61515 1 26536U 00055A 01335.96832872 .00001010 00000-0 58173-3 0 5983 2 26536 98.8461 279.0361 0011591 120.4752 239.7605 14.11390920 61566 1 26536U 00055A 01336.74813552 .00000802 00000-0 46695-3 0 5999 2 26536 98.8467 279.8050 0011610 118.6449 241.5872 14.11391379 61677 1 26536U 00055A 01337.88240039 .00000630 00000-0 37215-3 0 6009 2 26536 98.8476 280.9232 0011597 115.5425 244.6905 14.11392228 61839 1 26536U 00055A 01338.66220737 .00000551 00000-0 32863-3 0 6027 2 26536 98.8479 281.6917 0011632 113.8492 246.3881 14.11392887 61940 1 26536U 00055A 01339.79647104 .00000503 00000-0 30208-3 0 6021 2 26536 98.8476 282.8098 0011591 110.0210 250.2197 14.11394033 62109 1 26536U 00055A 01340.85984107 .00000711 00000-0 41662-3 0 6046 2 26536 98.8471 283.8578 0011468 106.2547 253.9886 14.11396522 62257 1 26536U 00055A 01340.85984107 .00000711 00000-0 41662-3 0 6057 2 26536 98.8471 283.8578 0011468 106.2547 253.9886 14.11396522 62257 1 26536U 00055A 01340.85985025 .00000769 00000-0 42479-3 0 6035 2 26536 98.8480 283.8578 0011451 105.4346 254.8577 14.11397049 62259 1 26536U 00055A 01341.63964482 .00000810 00000-0 47122-3 0 6066 2 26536 98.8471 284.6263 0011476 104.1222 256.1237 14.11398208 62363 1 26536U 00055A 01342.77390185 .00001069 00000-0 61449-3 0 6071 2 26536 98.8468 285.7437 0011432 100.9310 259.3173 14.11401813 62527 1 26536U 00055A 01343.90815664 .00001172 00000-0 67112-3 0 6080 2 26536 98.8468 286.8620 0011416 98.1622 262.0863 14.11404789 62688 1 26536U 00055A 01344.61706443 .00001124 00000-0 64435-3 0 6096 2 26536 98.8469 287.5609 0011422 96.5611 263.6847 14.11406204 62785 1 26536U 00055A 01345.39686245 .00001117 00000-0 64047-3 0 6102 2 26536 98.8469 288.3300 0011393 94.7556 265.4919 14.11408179 62892 1 26536U 00055A 01345.75131576 .00001086 00000-0 62343-3 0 6117 2 26536 98.8475 288.6796 0011439 94.0503 266.1957 14.11408684 62944 1 26536U 00055A 01346.88556659 .00000872 00000-0 50530-3 0 6145 2 26536 98.8475 289.7990 0011455 90.8753 269.3710 14.11409926 63102 1 26536U 00055A 01347.80714413 .00000718 00000-0 42048-3 0 6135 2 26536 98.8477 290.7081 0011459 88.3285 271.9166 14.11410831 63238 1 26536U 00055A 01348.51604996 .00000618 00000-0 36522-3 0 6148 2 26536 98.8482 291.4069 0011451 86.8387 273.4078 14.11411352 63335 1 26536U 00055A 01348.94139331 .00000580 00000-0 34448-3 0 6155 2 26536 98.8484 291.8260 0011446 85.7493 274.4984 14.11411745 63393 1 26536U 00055A 01349.65029813 .00000578 00000-0 34295-3 0 6154 2 26536 98.8490 292.5252 0011460 83.4735 276.7729 14.11412525 63499 1 26536U 00055A 01350.78454532 .00000477 00000-0 28750-3 0 6179 2 26536 98.8493 293.6435 0011450 80.3990 279.8474 14.11413432 63652 1 26536U 00055A 01351.56433864 .00000693 00000-0 40693-3 0 6182 2 26536 98.8496 294.4126 0011446 78.5715 281.6770 14.11415600 63761 1 26536U 00055A 01351.91878948 .00000820 00000-0 47678-3 0 6190 2 26536 98.8497 294.7618 0011388 78.0202 282.2284 14.11416799 63815 1 26536U 00055A 01352.69858048 .00000965 00000-0 55662-3 0 6197 2 26536 98.8494 295.5301 0011396 75.8769 284.3678 14.11418933 63926 1 26536U 00055A 01353.83282046 .00000995 00000-0 57318-3 0 6219 2 26536 98.8500 296.6496 0011376 72.6390 287.6005 14.11421491 64085 1 26536U 00055A 01354.82529017 .00000906 00000-0 50015-3 0 6232 2 26536 98.8505 297.6281 0011455 67.6315 292.6555 14.11422886 64223 1 26536U 00055A 01354.89616950 .00000981 00000-0 56552-3 0 6259 2 26536 98.8502 297.6985 0011303 69.6859 290.5530 14.11423745 64234 1 26536U 00055A 01355.67595727 .00000920 00000-0 53168-3 0 6246 2 26536 98.8508 298.4679 0011273 67.7508 292.4830 14.11424939 64347 1 26536U 00055A 01356.81019389 .00000784 00000-0 45674-3 0 6250 2 26536 98.8505 299.5864 0011255 64.4065 295.8247 14.11426420 64508 1 26536U 00055A 01357.94442919 .00000678 00000-0 39847-3 0 6284 2 26536 98.8508 300.7059 0011315 60.9746 299.2532 14.11427759 64664 1 26536U 00055A 01358.65332573 .00000637 00000-0 37562-3 0 6295 2 26536 98.8506 301.4045 0011271 59.3745 300.8517 14.11428530 64768 1 26536U 00055A 01359.78755878 .00000692 00000-0 40591-3 0 6306 2 26536 98.8503 302.5228 0011279 56.4220 303.8027 14.11430510 64922 1 26536U 00055A 01360.92178897 .00000957 00000-0 55208-3 0 6343 2 26536 98.8500 303.6412 0011217 52.9351 307.2877 14.11433911 65081 1 26536U 00055A 01361.70157027 .00001112 00000-0 63784-3 0 6333 2 26536 98.8499 304.4099 0011226 50.8498 309.3681 14.11436268 65193 1 26536U 00055A 01362.83579463 .00001262 00000-0 72026-3 0 6357 2 26536 98.8492 305.5280 0011101 47.7219 312.4881 14.11440004 65356 1 26536U 00055A 01363.54468439 .00001224 00000-0 69942-3 0 6368 2 26536 98.8499 306.2273 0011016 45.9795 314.2268 14.11441606 65456 1 26536U 00055A 01363.97001819 .00001244 00000-0 71056-3 0 6372 2 26536 98.8498 306.6468 0010985 44.7941 315.4124 14.11442796 65511 1 26536U 00055A 01364.67890595 .00001251 00000-0 71414-3 0 6373 2 26536 98.8508 307.3464 0010915 43.1482 317.0534 14.11444684 65615 1 26536U 00055A 01365.03334994 .00001244 00000-0 71063-3 0 6383 2 26536 98.8508 307.6959 0010891 42.2192 317.9822 14.11445610 65662 1 26536U 00055A 01365.81312514 .00001261 00000-0 71983-3 0 6394 2 26536 98.8514 308.4654 0010883 40.2463 319.9510 14.11447760 65776 1 26536U 00055A 01365.81312514 .00001261 00000-0 71983-3 0 6406 2 26536 98.8514 308.4654 0010883 40.2463 319.9510 14.11447760 65776 1 26536U 00055A 02001.52201092 .00001255 00000-0 71670-3 0 6406 2 26536 98.8526 309.1653 0010884 38.4369 321.7561 14.11449475 65874 1 26536U 00055A 02001.94734228 .00001172 00000-0 67067-3 0 6418 2 26536 98.8526 309.5848 0010982 36.9549 323.2349 14.11450133 65937 1 26536U 00055A 02002.65622750 .00001029 00000-0 59204-3 0 6418 2 26536 98.8534 310.2848 0010924 35.3019 324.8848 14.11451026 66031 1 26536U 00055A 02003.79044363 .00000905 00000-0 52360-3 0 6421 2 26536 98.8530 311.4035 0010997 31.9147 328.2710 14.11452719 66195 1 26536U 00055A 02004.92465695 .00000837 00000-0 48593-3 0 6430 2 26536 98.8530 312.5219 0011030 28.5568 331.6210 14.11454398 66355 1 26536U 00055A 02005.70442736 .00000852 00000-0 49392-3 0 6455 2 26536 98.8527 313.2908 0010987 26.5309 333.6413 14.11455809 66462 1 26536U 00055A 02006.76774885 .00001050 00000-0 60346-3 0 6458 2 26536 98.8518 314.3387 0010860 23.4834 336.6858 14.11459062 66612 1 26536U 00055A 02007.54751629 .00001051 00000-0 60366-3 0 6471 2 26536 98.8523 315.1081 0010763 21.3756 338.7867 14.11460768 66720 1 26536U 00055A 02007.90195591 .00001098 00000-0 62953-3 0 6487 2 26536 98.8519 315.4578 0010714 20.3339 339.8272 14.11461782 66775 1 26536U 00055A 02008.68172171 .00001096 00000-0 62844-3 0 6489 2 26536 98.8519 316.2273 0010620 18.0433 342.1086 14.11463407 66889 1 26536U 00055A 02009.81592711 .00000807 00000-0 46921-3 0 6501 2 26536 98.8519 317.3463 0010452 15.0973 345.0482 14.11464343 67042 1 26536U 00055A 02010.95013274 .00000529 00000-0 31605-3 0 6515 2 26536 98.8514 318.4654 0010437 11.7470 348.3939 14.11464609 67205 1 26536U 00055A 02011.65901000 .00000500 00000-0 30018-3 0 6523 2 26536 98.8520 319.1648 0010390 9.8304 350.3052 14.11465272 67302 1 26536U 00055A 02012.79321333 .00000538 00000-0 32066-3 0 6531 2 26536 98.8522 320.2831 0010458 6.5223 353.6087 14.11466827 67468 1 26536U 00055A 02013.57297736 .00000622 00000-0 36728-3 0 6541 2 26536 98.8525 321.0522 0010452 4.5825 355.5454 14.11468114 67579 1 26536U 00055A 02014.63628903 .00000778 00000-0 45349-3 0 6555 2 26536 98.8530 322.1008 0010502 1.2270 358.8914 14.11470551 67722 1 26536U 00055A 02015.77048679 .00001002 00000-0 57661-3 0 6581 2 26536 98.8534 323.2194 0010449 357.8438 2.2703 14.11473794 67885 1 26536U 00055A 02016.55024532 .00001074 00000-0 61668-3 0 6592 2 26536 98.8537 323.9887 0010324 355.3477 4.7585 14.11475899 67997 1 26536U 00055A 02016.90468146 .00001198 00000-0 68493-3 0 6606 2 26536 98.8537 324.3380 0010254 354.0631 6.0460 14.11477420 68046 1 26536U 00055A 02017.68443840 .00001088 00000-0 62432-3 0 6612 2 26536 98.8538 325.1075 0010191 351.7315 8.3654 14.11478633 68159 1 26536U 00055A 02018.81863116 .00000944 00000-0 54471-3 0 6625 2 26536 98.8540 326.2272 0010016 348.4042 11.6878 14.11480367 68319 1 26536U 00055A 02019.95282289 .00000832 00000-0 48321-3 0 6653 2 26536 98.8546 327.3468 0010036 345.3663 14.7211 14.11481913 68471 1 26536U 00055A 02020.66169154 .00000790 00000-0 45997-3 0 6657 2 26536 98.8546 328.0462 0009995 343.3554 16.7270 14.11482893 68578 1 26536U 00055A 02021.79588120 .00000761 00000-0 44393-3 0 6657 2 26536 98.8544 329.1653 0010097 340.5789 19.4996 14.11484611 68737 1 26536U 00055A 02022.93006928 .00000686 00000-0 40269-3 0 6682 2 26536 98.8537 330.2856 0010002 337.4451 22.6279 14.11485922 68897 1 26536U 00055A 02023.63893607 .00000900 00000-0 52037-3 0 6683 2 26536 98.8535 330.9848 0010031 335.1699 24.9069 14.11488371 68998 1 26536U 00055A 02024.77311729 .00001192 00000-0 68157-3 0 6706 2 26536 98.8531 332.1033 0009955 331.3354 28.7292 14.11492369 69154 1 26536U 00055A 02025.55286612 .00001290 00000-0 73543-3 0 6710 2 26536 98.8531 332.8732 0009906 328.8747 31.1842 14.11494814 69268 1 26536U 00055A 02026.68704419 .00001336 00000-0 76065-3 0 6729 2 26536 98.8528 333.9924 0009840 325.1182 34.9343 14.11498284 69429 1 26536U 00055A 02027.82121940 .00001468 00000-0 83308-3 0 6733 2 26536 98.8542 335.1105 0009765 321.4869 38.5602 14.11502257 69588 1 26536U 00055A 02028.60096409 .00001296 00000-0 73861-3 0 6766 2 26536 98.8545 335.8801 0009661 318.8225 41.2182 14.11503422 69693 1 26536U 00055A 02029.02627965 .00001208 00000-0 69015-3 0 6758 2 26536 98.8547 336.2996 0009712 318.0807 41.9594 14.11504107 69752 1 26536U 00055A 02029.73513801 .00001087 00000-0 62340-3 0 6769 2 26536 98.8551 336.9993 0009704 315.8536 44.1852 14.11505239 69856 1 26536U 00055A 02030.86930999 .00000909 00000-0 52530-3 0 6779 2 26536 98.8557 338.1183 0009698 312.5180 47.5171 14.11506774 70014 1 26536U 00055A 02031.64905205 .00000891 00000-0 51551-3 0 6792 2 26536 98.8562 338.8878 0009723 310.5852 49.4459 14.11508098 70124 1 26536U 00055A 02032.07436586 .00000891 00000-0 51551-3 0 6780 2 26536 98.8562 339.3074 0009723 309.3828 50.6481 14.11508892 70184 1 26536U 00055A 02032.78322082 .00000977 00000-0 56258-3 0 6798 2 26536 98.8564 340.0074 0009875 307.8294 52.1995 14.11510865 70284 1 26536U 00055A 02033.56295987 .00001087 00000-0 62335-3 0 6806 2 26536 98.8564 340.7770 0009834 305.2437 54.7823 14.11513078 70399 1 26536U 00055A 02033.91738644 .00001325 00000-0 75412-3 0 6813 2 26536 98.8563 341.1261 0009809 303.1386 56.8923 14.11515226 70447 1 26536U 00055A 02034.69712219 .00001317 00000-0 74981-3 0 6810 2 26536 98.8561 341.8955 0009815 301.0908 58.9282 14.11517191 70552 1 26536U 00055A 02035.83128325 .00001267 00000-0 72215-3 0 6829 2 26536 98.8556 343.0149 0009829 297.1117 62.9039 14.11520208 70713 1 26536U 00055A 02036.89455750 .00001241 00000-0 70779-3 0 6837 2 26536 98.8556 344.0646 0009759 292.1606 67.8530 14.11522706 70867 1 26536U 00055A 02037.67429094 .00001097 00000-0 62855-3 0 6853 2 26536 98.8556 344.8339 0009754 289.7401 70.2699 14.11523984 70979 1 26536U 00055A 02038.80844761 .00001075 00000-0 61641-3 0 6871 2 26536 98.8555 345.9539 0009705 286.8978 73.1107 14.11526419 71136 1 26536U 00055A 02039.94260378 .00000918 00000-0 52989-3 0 6884 2 26536 98.8551 347.0736 0009700 283.8952 76.1140 14.11527901 71292 1 26536U 00055A 02039.94260378 .00000918 00000-0 52989-3 0 6907 2 26536 98.8551 347.0736 0009700 283.8952 76.1140 14.11527901 71292 1 26536U 00055A 02040.65145081 .00000753 00000-0 43934-3 0 6907 2 26536 98.8549 347.7731 0009669 282.2255 77.7812 14.11528171 71398 1 26536U 00055A 02041.00587437 .00000753 00000-0 43934-3 0 6890 2 26536 98.8549 348.1227 0009669 281.2236 78.7849 14.11528735 71444 1 26536U 00055A 02041.78560537 .00000600 00000-0 35501-3 0 6912 2 26536 98.8551 348.8918 0009663 279.1796 80.8282 14.11529197 71552 1 26536U 00055A 02042.91975730 .00000974 00000-0 56089-3 0 6933 2 26536 98.8556 350.0111 0009750 275.8050 84.2075 14.11532856 71712 1 26536U 00055A 02043.62859987 .00000893 00000-0 51608-3 0 6928 2 26536 98.8558 350.7108 0009785 273.7616 86.2413 14.11533724 71814 1 26536U 00055A 02044.33744279 .00000997 00000-0 57324-3 0 6931 2 26536 98.8565 351.4104 0009826 271.4590 88.5460 14.11535809 71912 1 26536U 00055A 02044.76274819 .00001052 00000-0 60341-3 0 6943 2 26536 98.8567 351.8303 0009834 270.1413 89.8639 14.11536928 71979 1 26536U 00055A 02045.89689397 .00001034 00000-0 59384-3 0 6977 2 26536 98.8566 352.9505 0009888 266.3749 93.6275 14.11539314 72132 1 26536U 00055A 02046.60573454 .00001002 00000-0 57616-3 0 6963 2 26536 98.8571 353.6506 0009878 264.1319 95.8707 14.11540688 72236 1 26536U 00055A 02047.73987901 .00000882 00000-0 50999-3 0 6977 2 26536 98.8578 354.7707 0009888 260.5761 99.4278 14.11542226 72390 1 26536U 00055A 02048.51960310 .00000672 00000-0 39456-3 0 6993 2 26536 98.8583 355.5402 0009843 259.0740 100.9304 14.11542560 72500 1 26536U 00055A 02048.87402316 .00000571 00000-0 33881-3 0 7006 2 26536 98.8578 355.8905 0009800 258.5467 101.4573 14.11542537 72551 1 26536U 00055A 02049.65374672 .00000561 00000-0 33325-3 0 7008 2 26536 98.8577 356.6597 0009803 255.5412 104.4669 14.11543462 72665 1 26536U 00055A 02049.65374672 .00000561 00000-0 33325-3 0 7019 2 26536 98.8577 356.6597 0009803 255.5412 104.4669 14.11543462 72665 1 26536U 00055A 02050.78788794 .00000615 00000-0 36274-3 0 7026 2 26536 98.8579 357.7795 0009782 252.6396 107.3706 14.11545405 72825 1 26536U 00055A 02051.85114413 .00000704 00000-0 41199-3 0 7061 2 26536 98.8578 358.8289 0009824 248.8714 111.1417 14.11547343 72973 1 26536U 00055A 02052.63086432 .00000839 00000-0 48634-3 0 7078 2 26536 98.8579 359.5986 0009842 246.4369 113.5787 14.11549206 73085 1 26536U 00055A 02053.62323329 .00000946 00000-0 54516-3 0 7072 2 26536 98.8576 0.5784 0009896 243.5279 116.4891 14.11551772 73223 1 26536U 00055A 02054.75736571 .00001221 00000-0 69653-3 0 7080 2 26536 98.8578 1.6978 0010059 239.3389 120.6791 14.11555900 73380 1 26536U 00055A 02055.46619844 .00001175 00000-0 67110-3 0 7109 2 26536 98.8576 2.3984 0010107 237.4582 122.5594 14.11557239 73481 1 26536U 00055A 02055.89149810 .00001035 00000-0 59420-3 0 7118 2 26536 98.8572 2.8185 0010171 235.8157 124.2032 14.11557547 73541 1 26536U 00055A 02056.60033028 .00000904 00000-0 52213-3 0 7129 2 26536 98.8579 3.5185 0010198 233.5698 126.4515 14.11558457 73642 1 26536U 00055A 02057.73446128 .00000730 00000-0 42620-3 0 7132 2 26536 98.8583 4.6372 0010199 230.6575 129.3674 14.11559552 73803 1 26536U 00055A 02058.86859141 .00000635 00000-0 37398-3 0 7152 2 26536 98.8587 5.7566 0010136 227.3330 132.6974 14.11560740 73965 1 26536U 00055A 02059.64830536 .00000568 00000-0 33679-3 0 7160 2 26536 98.8592 6.5258 0010202 224.4894 135.5461 14.11561442 74071 1 26536U 00055A 02060.78243221 .00000857 00000-0 49627-3 0 7178 2 26536 98.8602 7.6432 0010156 221.8401 138.2026 14.11564708 74235 1 26536U 00055A 02061.49125965 .00000950 00000-0 54735-3 0 7182 2 26536 98.8612 8.3428 0010183 219.9299 140.1125 14.11566433 74332 1 26536U 00055A 02061.91655627 .00000996 00000-0 57235-3 0 7191 2 26536 98.8612 8.7619 0010224 218.8435 141.2010 14.11567462 74398 1 26536U 00055A 02062.62538291 .00001086 00000-0 62188-3 0 7191 2 26536 98.8612 9.4619 0010224 216.5116 143.5363 14.11569400 74498 1 26536U 00055A 02062.97979598 .00001145 00000-0 65429-3 0 7207 2 26536 98.8612 9.8121 0010389 215.0799 144.9720 14.11570513 74548 1 26536U 00055A 02063.75950335 .00001094 00000-0 62637-3 0 7225 2 26536 98.8611 10.5816 0010470 212.5178 147.5350 14.11572152 74652 1 26536U 00055A 02064.89362092 .00001304 00000-0 74196-3 0 7225 2 26536 98.8590 11.7038 0010677 209.3761 150.6823 14.11576058 74815 1 26536U 00055A 02065.60244331 .00001129 00000-0 64547-3 0 7235 2 26536 98.8595 12.4041 0010720 207.3264 152.7295 14.11576913 74914 1 26536U 00055A 02066.73655973 .00000910 00000-0 52499-3 0 7249 2 26536 98.8591 13.5248 0010702 203.9144 156.1464 14.11578233 75071 1 26536U 00055A 02066.73655973 .00000910 00000-0 52499-3 0 7250 2 26536 98.8591 13.5248 0010702 203.9144 156.1464 14.11578233 75071 1 26536U 00055A 02067.87067676 .00000599 00000-0 35393-3 0 7261 2 26536 98.8590 14.6450 0010634 200.7623 159.3090 14.11578630 75237 1 26536U 00055A 02067.87067676 .00000599 00000-0 35393-3 0 7283 2 26536 98.8590 14.6450 0010634 200.7623 159.3090 14.11578630 75237 1 26536U 00055A 02068.65038127 .00000604 00000-0 35635-3 0 7274 2 26536 98.8594 15.4150 0010624 198.3472 161.7312 14.11579570 75340 1 26536U 00055A 02069.78449541 .00000620 00000-0 36558-3 0 7289 2 26536 98.8594 16.5343 0010551 195.2442 164.8432 14.11581247 75507 1 26536U 00055A 02070.49331600 .00000557 00000-0 33089-3 0 7303 2 26536 98.8598 17.2342 0010563 193.0335 167.0575 14.11581841 75602 1 26536U 00055A 02070.91860795 .00000787 00000-0 45753-3 0 7319 2 26536 98.8599 17.6536 0010599 192.0776 168.0192 14.11583515 75661 1 26536U 00055A 02071.62742614 .00000854 00000-0 49407-3 0 7312 2 26536 98.8600 18.3532 0010635 189.9169 170.1802 14.11585020 75766 1 26536U 00055A 02072.83241616 .00000973 00000-0 55966-3 0 7333 2 26536 98.8606 19.5433 0010633 186.8811 173.2234 14.11588085 75939 1 26536U 00055A 02073.54123224 .00001071 00000-0 61322-3 0 7362 2 26536 98.8612 20.2430 0010743 184.9229 175.1839 14.11589990 76036 1 26536U 00055A 02073.82476966 .00000838 00000-0 46126-3 0 7351 2 26536 98.8611 20.5236 0010621 184.2352 175.9210 14.11588931 76076 1 26536U 00055A 02073.89564030 .00001047 00000-0 60007-3 0 7377 2 26536 98.8614 20.5932 0010817 184.1798 175.9289 14.11590628 76085 1 26536U 00055A 02074.67533709 .00000893 00000-0 51554-3 0 7378 2 26536 98.8622 21.3637 0010938 182.1060 178.0026 14.11591408 76191 1 26536U 00055A 02075.80944187 .00000684 00000-0 40044-3 0 7381 2 26536 98.8623 22.4842 0011016 179.0903 181.0250 14.11592405 76350 1 26536U 00055A 02076.51825825 .00000445 00000-0 26906-3 0 7394 2 26536 98.8620 23.1842 0011020 177.1289 182.9929 14.11592101 76453 1 26536U 00055A 02076.94354773 .00000438 00000-0 26493-3 0 7405 2 26536 98.8616 23.6044 0011043 175.9670 184.1597 14.11592528 76517 1 26536U 00055A 02077.65236228 .00000421 00000-0 25566-3 0 7400 2 26536 98.8620 24.3042 0011141 173.8395 186.2914 14.11593210 76614 1 26536U 00055A 02078.00676962 .00000483 00000-0 29007-3 0 7416 2 26536 98.8617 24.6542 0011105 172.9419 187.1925 14.11593885 76660 1 26536U 00055A 02078.78646469 .00000494 00000-0 29614-3 0 7427 2 26536 98.8615 25.4241 0011104 170.6945 189.4434 14.11594867 76774 1 26536U 00055A 02079.92056517 .00000813 00000-0 47157-3 0 7453 2 26536 98.8606 26.5433 0011032 167.5978 192.5498 14.11598065 76937 1 26536U 00055A 02080.55849530 .00000830 00000-0 48091-3 0 7456 2 26536 98.8610 27.1735 0011033 165.8277 194.3213 14.11599285 77029 1 26536U 00055A 02080.84202969 .00000707 00000-0 38909-3 0 7457 2 26536 98.8619 27.4547 0010820 164.9114 195.2864 14.11599101 77068 1 26536U 00055A 02080.98378204 .00000942 00000-0 54252-3 0 7469 2 26536 98.8610 27.5933 0011141 165.0100 195.1446 14.11600682 77087 1 26536U 00055A 02081.69259152 .00001045 00000-0 59912-3 0 7472 2 26536 98.8614 28.2937 0011139 163.0854 197.0700 14.11602610 77182 1 26536U 00055A 02081.69259152 .00001045 00000-0 59912-3 0 7483 2 26536 98.8614 28.2937 0011139 163.0854 197.0700 14.11602610 77182 1 26536U 00055A 02082.82668522 .00001120 00000-0 63989-3 0 7487 2 26536 98.8609 29.4141 0011256 160.4379 199.7225 14.11605658 77343 1 26536U 00055A 02083.60637367 .00001045 00000-0 59888-3 0 7509 2 26536 98.8615 30.1844 0011360 158.5233 201.6388 14.11606992 77459 1 26536U 00055A 02084.81134697 .00000882 00000-0 50917-3 0 7514 2 26536 98.8616 31.3762 0011289 154.6721 205.4990 14.11608702 77622 1 26536U 00055A 02085.44927346 .00000840 00000-0 48637-3 0 7526 2 26536 98.8618 32.0062 0011309 152.8254 207.3512 14.11609628 77718 1 26536U 00055A 02085.94543778 .00000674 00000-0 39460-3 0 7534 2 26536 98.8617 32.4961 0011251 151.0842 209.0906 14.11609582 77781 1 26536U 00055A 02086.65424500 .00000533 00000-0 31724-3 0 7533 2 26536 98.8621 33.1961 0011374 149.3186 210.8620 14.11609683 77887 1 26536U 00055A 02087.07952937 .00000533 00000-0 31724-3 0 7541 2 26536 98.8621 33.6160 0011374 148.1167 212.0695 14.11610172 77947 1 26536U 00055A 02087.78833593 .00000432 00000-0 26195-3 0 7572 2 26536 98.8623 34.3161 0011333 145.9161 214.2754 14.11610498 78045 1 26536U 00055A 02088.92242502 .00000503 00000-0 30091-3 0 7594 2 26536 98.8632 35.4359 0011351 142.9945 217.2048 14.11611902 78201 1 26536U 00055A 02089.70210934 .00000583 00000-0 34480-3 0 7599 2 26536 98.8634 36.2060 0011369 140.8931 219.3060 14.11613132 78318 1 26536U 00055A 02090.76531434 .00000825 00000-0 47779-3 0 7604 2 26536 98.8638 37.2561 0011407 138.5217 221.6855 14.11616082 78464 1 26536U 00055A 02091.54499626 .00000964 00000-0 55426-3 0 7609 2 26536 98.8641 38.0269 0011420 136.5107 223.6984 14.11618181 78572 1 26536U 00055A 02091.89939680 .00001018 00000-0 58392-3 0 7613 2 26536 98.8638 38.3772 0011477 135.9476 224.2628 14.11619131 78628 1 26536U 00055A 02092.67907692 .00001039 00000-0 59555-3 0 7613 2 26536 98.8645 39.1477 0011503 133.9677 226.2415 14.11620838 78732 1 26536U 00055A 02093.81315690 .00000817 00000-0 47336-3 0 7630 2 26536 98.8639 40.2691 0011553 131.3803 228.8313 14.11622157 78892 1 26536U 00055A 02094.52195811 .00000547 00000-0 32470-3 0 7655 2 26536 98.8641 40.9696 0011556 129.4234 230.7932 14.11621867 78993 1 26536U 00055A 02095.65603851 .00000338 00000-0 20972-3 0 7661 2 26536 98.8638 42.0899 0011615 126.3425 233.8789 14.11622042 79150 1 26536U 00055A 02096.79011855 .00000385 00000-0 23562-3 0 7686 2 26536 98.8634 43.2100 0011611 122.9404 237.2904 14.11623298 79318 1 26536U 00055A 02097.56979708 .00000509 00000-0 30400-3 0 7690 2 26536 98.8631 43.9800 0011632 120.6342 239.5984 14.11624483 79420 1 26536U 00055A 02097.92419622 .00000554 00000-0 32887-3 0 7707 2 26536 98.8631 44.3296 0011521 118.9222 241.3116 14.11625251 79475 1 26536U 00055A 02098.70387340 .00000591 00000-0 34931-3 0 7708 2 26536 98.8628 45.0991 0011522 116.7815 243.4526 14.11626379 79588 1 26536U 00055A 02099.76706748 .00000931 00000-0 53585-3 0 7728 2 26536 98.8628 46.1490 0011545 114.6177 245.6224 14.11629874 79736 1 26536U 00055A 02100.54674151 .00000985 00000-0 56584-3 0 7731 2 26536 98.8629 46.9192 0011574 112.9660 247.2734 14.11631682 79840 1 26536U 00055A 02100.90113886 .00001014 00000-0 58177-3 0 7749 2 26536 98.8629 47.2693 0011543 112.3704 247.8696 14.11632423 79891 1 26536U 00055A 02101.60993266 .00000973 00000-0 55912-3 0 7742 2 26536 98.8639 47.9700 0011583 110.7103 249.5303 14.11633737 79991 1 26536U 00055A 02102.74400218 .00000912 00000-0 52531-3 0 7756 2 26536 98.8647 49.0914 0011662 108.3459 251.8985 14.11635603 80151 1 26536U 00055A 02103.45279472 .00000836 00000-0 48368-3 0 7771 2 26536 98.8652 49.7926 0011659 106.0929 254.1517 14.11636579 80251 1 26536U 00055A 02103.87807016 .00000793 00000-0 45987-3 0 7785 2 26536 98.8654 50.2129 0011656 104.6362 255.6083 14.11637047 80319 1 26536U 00055A 02104.65774146 .00000705 00000-0 41172-3 0 7784 2 26536 98.8659 50.9836 0011617 102.2425 258.0022 14.11637764 80425 1 26536U 00055A 02105.79180852 .00000585 00000-0 34543-3 0 7796 2 26536 98.8658 52.1042 0011647 98.9857 261.2633 14.11638765 80583 1 26536U 00055A 02106.50059917 .00000555 00000-0 32912-3 0 7811 2 26536 98.8663 52.8045 0011612 97.1335 263.1160 14.11639626 80687 1 26536U 00055A 02106.92587341 .00000721 00000-0 42064-3 0 7829 2 26536 98.8664 53.2245 0011561 95.8242 264.4282 14.11640980 80741 1 26536U 00055A 02107.63466190 .00000834 00000-0 48279-3 0 7825 2 26536 98.8660 53.9247 0011549 93.7031 266.5457 14.11642637 80844 1 26536U 00055A 02108.83960129 .00001038 00000-0 59483-3 0 7847 2 26536 98.8656 55.1152 0011539 90.6351 269.6166 14.11646130 81011 1 26536U 00055A 02109.54838709 .00001202 00000-0 68463-3 0 7856 2 26536 98.8666 55.8161 0011565 89.1422 271.1088 14.11648564 81115 1 26536U 00055A 02110.75332127 .00001256 00000-0 71405-3 0 7875 2 26536 98.8665 57.0069 0011563 85.9894 274.2580 14.11651734 81282 1 26536U 00055A 02111.88737621 .00001022 00000-0 58587-3 0 7897 2 26536 98.8661 58.1286 0011556 83.0442 277.2032 14.11653349 81448 1 26536U 00055A 02112.59615995 .00000780 00000-0 45285-3 0 7919 2 26536 98.8662 58.8291 0011548 81.1870 279.0565 14.11653394 81549 1 26536U 00055A 02113.02143077 .00000656 00000-0 38487-3 0 7902 2 26536 98.8662 59.2494 0011573 80.0060 280.2390 14.11653454 81600 1 26536U 00055A 02113.80109355 .00000305 00000-0 19158-3 0 7915 2 26536 98.8662 60.0198 0011544 78.0073 282.2353 14.11652560 81710 1 26536U 00055A 02114.50987810 .00000161 00000-0 11258-3 0 7927 2 26536 98.8656 60.7198 0011522 76.4584 283.7866 14.11652446 81814 1 26536U 00055A 02114.86427009 .00000147 00000-0 10491-3 0 7938 2 26536 98.8655 61.0698 0011525 75.3785 284.8665 14.11652584 81863 1 26536U 00055A 02115.64393196 .00000211 00000-0 14036-3 0 7979 2 26536 98.8657 61.8403 0011532 73.3827 286.8618 14.11653222 81972 1 26536U 00055A 02115.78569706 .00000531 00000-0 29178-3 0 7952 2 26536 98.8665 61.9806 0011586 71.4827 288.8070 14.11654995 81991 1 26536U 00055A 02116.77798326 .00000512 00000-0 30574-3 0 7988 2 26536 98.8655 62.9607 0011517 70.1924 290.0502 14.11655742 82131 1 26536U 00055A 02117.91203346 .00000675 00000-0 39526-3 0 7995 2 26536 98.8659 64.0813 0011453 67.3837 292.8570 14.11657858 82299 1 26536U 00055A 02118.62081390 .00000636 00000-0 37371-3 0 8014 2 26536 98.8664 64.7823 0011480 65.0341 295.2009 14.11658562 82396 1 26536U 00055A 02118.62081391 .00000636 00000-0 37371-3 0 8026 2 26536 98.8664 64.7823 0011480 65.0341 295.2009 14.11658562 82396 1 26536U 00055A 02119.75486123 .00000729 00000-0 42449-3 0 8039 2 26536 98.8668 65.9035 0011443 61.7387 298.4928 14.11660838 82552 1 26536U 00055A 02120.88890764 .00000635 00000-0 37292-3 0 8064 2 26536 98.8669 67.0251 0011357 59.1367 301.0895 14.11661965 82713 1 26536U 00055A 02121.24329747 .00000660 00000-0 38680-3 0 8052 2 26536 98.8671 67.3753 0011347 58.2451 301.9831 14.11662587 82764 1 26536U 00055A 02122.02295337 .00000359 00000-0 22118-3 0 8050 2 26536 98.8669 68.1462 0011331 56.2335 303.9834 14.11661884 82875 1 26536U 00055A 02122.80261141 .00000200 00000-0 13420-3 0 8064 2 26536 98.8672 68.9169 0011283 54.3896 305.8306 14.11661764 82982 1 26536U 00055A 02123.93665787 .00000277 00000-0 17630-3 0 8075 2 26536 98.8677 70.0377 0011285 51.3995 308.8206 14.11662691 83142 1 26536U 00055A 02123.93665787 .00000277 00000-0 17630-3 0 8097 2 26536 98.8677 70.0377 0011285 51.3995 308.8206 14.11662691 83142 1 26536U 00055A 02124.64543535 .00000279 00000-0 17735-3 0 8089 2 26536 98.8674 70.7378 0011242 49.8719 310.3422 14.11663128 83241 1 26536U 00055A 02125.77947934 .00000356 00000-0 21971-3 0 8099 2 26536 98.8668 71.8578 0011162 46.9752 313.2353 14.11664496 83406 1 26536U 00055A 02126.55913329 .00000550 00000-0 32658-3 0 8109 2 26536 98.8665 72.6286 0011132 44.6674 315.5403 14.11666330 83515 1 26536U 00055A 02126.91352125 .00000658 00000-0 38552-3 0 8119 2 26536 98.8666 72.9786 0011040 43.8747 316.3333 14.11667326 83566 1 26536U 00055A 02127.69317359 .00000725 00000-0 42223-3 0 8110 2 26536 98.8666 73.7491 0011046 41.6697 318.5316 14.11668787 83673 1 26536U 00055A 02128.82721151 .00000925 00000-0 53228-3 0 8125 2 26536 98.8667 74.8709 0011082 38.3260 321.8685 14.11671880 83839 1 26536U 00055A 02129.11072114 .00000888 00000-0 51198-3 0 8140 2 26536 98.8670 75.1513 0011071 37.5597 322.6330 14.11672124 83874 1 26536U 00055A 02129.53598543 .00000782 00000-0 45374-3 0 8147 2 26536 98.8677 75.5725 0011039 36.4903 323.6997 14.11672288 83931 1 26536U 00055A 02129.81950579 .00000680 00000-0 37404-3 0 8141 2 26536 98.8683 75.8526 0011195 35.0378 325.1999 14.11671683 83975 1 26536U 00055A 02129.96124979 .00000735 00000-0 42785-3 0 8154 2 26536 98.8678 75.9930 0011093 35.1700 325.0189 14.11672775 83991 1 26536U 00055A 02130.67002300 .00000613 00000-0 36121-3 0 8159 2 26536 98.8685 76.6943 0011113 33.1283 327.0554 14.11673138 84092 1 26536U 00055A 02131.80406054 .00000388 00000-0 23715-3 0 8175 2 26536 98.8685 77.8156 0011198 29.7394 330.4400 14.11673395 84259 1 26536U 00055A 02132.51283371 .00000373 00000-0 22933-3 0 8196 2 26536 98.8683 78.5161 0011207 27.9241 332.2534 14.11673866 84355 1 26536U 00055A 02133.64686835 .00000366 00000-0 22538-3 0 8208 2 26536 98.8685 79.6365 0011070 24.8980 335.2700 14.11674862 84512 1 26536U 00055A 02134.78090323 .00000476 00000-0 28546-3 0 8213 2 26536 98.8682 80.7568 0011003 21.7873 338.3782 14.11676462 84679 1 26536U 00055A 02135.56055079 .00000486 00000-0 29133-3 0 8224 2 26536 98.8692 81.5287 0010868 19.9714 340.1889 14.11677333 84787 1 26536U 00055A 02135.91493595 .00000548 00000-0 32511-3 0 8236 2 26536 98.8689 81.8790 0010761 19.0152 341.1454 14.11678157 84834 1 26536U 00055A 02136.69458176 .00000623 00000-0 36647-3 0 8258 2 26536 98.8688 82.6493 0010694 16.9182 343.2344 14.11679584 84944 1 26536U 00055A 02136.69458176 .00000623 00000-0 36647-3 0 8269 2 26536 98.8688 82.6493 0010694 16.9182 343.2344 14.11679584 84944 1 26536U 00055A 02136.83634572 .00000558 00000-0 30643-3 0 8246 2 26536 98.8689 82.7892 0011065 15.7136 344.4863 14.11679397 84961 1 26536U 00055A 02137.82861089 .00000816 00000-0 47250-3 0 8273 2 26536 98.8690 83.7717 0010581 13.6879 346.4575 14.11682386 85104 1 26536U 00055A 02138.53737938 .00000602 00000-0 35482-3 0 8296 2 26536 98.8695 84.4731 0010556 11.4480 348.6903 14.11682302 85207 1 26536U 00055A 02138.89176397 .00000524 00000-0 31226-3 0 8308 2 26536 98.8688 84.8237 0010577 10.5718 349.5656 14.11682390 85258 1 26536U 00055A 02139.67140907 .00000393 00000-0 24005-3 0 8304 2 26536 98.8694 85.5948 0010524 8.3570 351.7749 14.11682520 85360 1 26536U 00055A 02140.94719297 .00000167 00000-0 11578-3 0 8333 2 26536 98.8684 86.8551 0010670 4.8469 355.2793 14.11682306 85543 1 26536U 00055A 02141.65596122 .00000171 00000-0 11794-3 0 8326 2 26536 98.8685 87.5557 0010660 2.9091 357.2131 14.11682572 85641 1 26536U 00055A 02141.65596122 .00000171 00000-0 11794-3 0 8337 2 26536 98.8685 87.5557 0010660 2.9091 357.2131 14.11682572 85641 1 26536U 00055A 02142.78999027 .00000154 00000-0 10893-3 0 8333 2 26536 98.8689 88.6765 0010714 359.7219 0.3947 14.11683020 85801 1 26536U 00055A 02143.56963501 .00000185 00000-0 12599-3 0 8359 2 26536 98.8685 89.4468 0010701 357.7004 2.4125 14.11683425 85914 1 26536U 00055A 02143.92401865 .00000185 00000-0 12599-3 0 8360 2 26536 98.8685 89.7970 0010701 356.6987 3.4112 14.11683587 85964 1 26536U 00055A 02144.70366199 .00000358 00000-0 22094-3 0 8371 2 26536 98.8686 90.5676 0010607 354.4561 5.6506 14.11685017 86071 1 26536U 00055A 02145.83768606 .00000654 00000-0 38347-3 0 8383 2 26536 98.8679 91.6880 0010372 351.3918 8.7078 14.11687946 86232 1 26536U 00055A 02146.54645111 .00000589 00000-0 34746-3 0 8394 2 26536 98.8685 92.3892 0010288 349.1381 10.9539 14.11688360 86334 1 26536U 00055A 02146.90083422 .00000589 00000-0 34746-3 0 8407 2 26536 98.8685 92.7395 0010288 348.1363 11.9564 14.11688807 86385 1 26536U 00055A 02147.68047546 .00000550 00000-0 32614-3 0 8400 2 26536 98.8691 93.5114 0010179 345.7165 14.3723 14.11689582 86499 1 26536U 00055A 02148.81449858 .00000415 00000-0 25215-3 0 8418 2 26536 98.8699 94.6332 0010134 342.4516 17.6302 14.11690220 86654 1 26536U 00055A 02149.94852175 .00000373 00000-0 22920-3 0 8450 2 26536 98.8701 95.7549 0010176 339.3918 20.6842 14.11690861 86819 1 26536U 00055A 02150.65728561 .00000248 00000-0 16033-3 0 8449 2 26536 98.8706 96.4565 0010199 336.9498 23.1198 14.11690767 86919 1 26536U 00055A 02151.79130878 .00000203 00000-0 13593-3 0 8453 2 26536 98.8706 97.5778 0010213 333.8776 26.1893 14.11691146 87074 1 26536U 00055A 02152.57094865 .00000202 00000-0 13532-3 0 8479 2 26536 98.8705 98.3483 0010195 331.6540 28.4072 14.11691500 87189 1 26536U 00055A 02152.92533057 .00000233 00000-0 15213-3 0 8482 2 26536 98.8703 98.6987 0010247 330.7384 29.3216 14.11691838 87233 1 26536U 00055A 02153.63409341 .00000292 00000-0 18469-3 0 8480 2 26536 98.8700 99.3995 0010154 328.5810 31.4753 14.11692655 87332 1 26536U 00055A 02154.76811261 .00000604 00000-0 35572-3 0 8495 2 26536 98.8693 100.5208 0010109 325.1111 34.9421 14.11695405 87495 1 26536U 00055A 02155.54774944 .00000666 00000-0 39017-3 0 8506 2 26536 98.8689 101.2917 0010052 322.6747 37.3718 14.11696715 87603 1 26536U 00055A 02155.90213012 .00000743 00000-0 43217-3 0 8514 2 26536 98.8688 101.6419 0010001 321.2617 38.7855 14.11697551 87659 1 26536U 00055A 02156.68176607 .00000722 00000-0 42093-3 0 8516 2 26536 98.8691 102.4127 0010016 319.1429 40.8966 14.11698585 87768 1 26536U 00055A 02157.81578312 .00000395 00000-0 24112-3 0 8520 2 26536 98.8682 103.5345 0010008 315.9804 44.0525 14.11698457 87927 1 26536U 00055A 02158.52454441 .00000267 00000-0 17097-3 0 8538 2 26536 98.8692 104.2353 0009950 313.5269 46.5062 14.11698342 88026 1 26536U 00055A 02158.94980092 .00000165 00000-0 11510-3 0 8542 2 26536 98.8690 104.6558 0009942 312.5038 47.5268 14.11698069 88080 1 26536U 00055A 02159.65856189 .00000059 00000-0 56722-4 0 8547 2 26536 98.8694 105.3568 0009863 310.0968 49.9313 14.11697733 88185 1 26536U 00055A 02160.79257993 .00000019 00000-0 34877-4 0 8567 2 26536 98.8700 106.4784 0009878 307.1968 52.8308 14.11697770 88344 1 26536U 00055A 02161.92659709 .00000067 00000-0 60981-4 0 8595 2 26536 98.8708 107.5992 0009861 303.9619 56.0623 14.11698127 88505 1 26536U 00055A 02162.70623299 .00000206 00000-0 13726-3 0 8585 2 26536 98.8710 108.3701 0009787 301.6023 58.4200 14.11699116 88614 1 26536U 00055A 02163.84024717 .00000418 00000-0 25401-3 0 8590 2 26536 98.8714 109.4912 0009771 298.0398 61.9784 14.11701160 88777 1 26536U 00055A 02164.54900575 .00000451 00000-0 27181-3 0 8609 2 26536 98.8718 110.1923 0009769 295.4619 64.5529 14.11701931 88879 1 26536U 00055A 02164.90338538 .00000509 00000-0 30382-3 0 8615 2 26536 98.8720 110.5425 0009805 294.6919 65.3242 14.11702606 88925 1 26536U 00055A 02165.68301892 .00000481 00000-0 28856-3 0 8616 2 26536 98.8720 111.3133 0009796 292.1931 67.8179 14.11703297 89032 1 26536U 00055A 02166.81703228 .00000293 00000-0 18511-3 0 8620 2 26536 98.8718 112.4353 0009770 288.4392 71.5694 14.11703424 89199 1 26536U 00055A 02167.52579085 .00000219 00000-0 14466-3 0 8646 2 26536 98.8712 113.1371 0009780 286.4520 73.5560 14.11703470 89299 1 26536U 00055A 02168.65980482 .00000096 00000-0 76730-4 0 8699 2 26536 98.8707 114.2585 0009753 283.5048 76.5037 14.11703368 89451 1 26536U 00055A 02168.80156535 .00000377 00000-0 20721-3 0 8656 2 26536 98.8715 114.3989 0009735 283.0185 77.0382 14.11704747 89479 1 26536U 00055A 02169.79381920 -.00000013 00000-0 16871-4 0 8709 2 26536 98.8706 115.3800 0009707 279.9257 80.0822 14.11702786 89615 1 26536U 00055A 02170.92783292 .00000001 00000-0 24961-4 0 8732 2 26536 98.8702 116.5014 0009649 276.2171 83.7901 14.11702891 89773 1 26536U 00055A 02171.63659055 .00000122 00000-0 91174-4 0 8723 2 26536 98.8702 117.2022 0009637 273.9467 86.0591 14.11703671 89878 1 26536U 00055A 02172.84147831 .00000357 00000-0 22045-3 0 8732 2 26536 98.8697 118.3932 0009660 269.9627 90.0467 14.11705693 90046 1 26536U 00055A 02172.84147831 .00000357 00000-0 22045-3 0 8743 2 26536 98.8697 118.3932 0009660 269.9627 90.0467 14.11705693 90046 1 26536U 00055A 02173.90461296 .00000445 00000-0 26839-3 0 8759 2 26536 98.8696 119.4446 0009698 266.0641 93.9439 14.11707074 90194 1 26536U 00055A 02174.68424419 .00000419 00000-0 25441-3 0 8761 2 26536 98.8702 120.2158 0009705 263.4130 96.5908 14.11707671 90301 1 26536U 00055A 02175.81825444 .00000339 00000-0 21059-3 0 8773 2 26536 98.8702 121.3379 0009727 259.7598 100.2465 14.11708355 90466 1 26536U 00055A 02176.52701103 .00000230 00000-0 15031-3 0 8804 2 26536 98.8705 122.0393 0009713 257.9847 102.0222 14.11708235 90564 1 26536U 00055A 02176.95226498 .00000202 00000-0 13503-3 0 8823 2 26536 98.8701 122.4599 0009710 256.7595 103.2488 14.11708329 90624 1 26536U 00055A 02177.66102151 .00000086 00000-0 71403-4 0 8836 2 26536 98.8710 123.1613 0009732 254.5166 105.4917 14.11707927 90728 1 26536U 00055A 02178.01539997 -.00000056 00000-0 -64454-5 0 8847 2 26536 98.8705 123.5119 0009684 253.7701 106.2372 14.11707317 90771 1 26536U 00055A 02178.79503303 -.00000085 00000-0 -22440-4 0 8866 2 26536 98.8708 124.2830 0009682 251.3093 108.7027 14.11707164 90884 1 26536U 00055A 02179.92904374 -.00000068 00000-0 -13220-4 0 8873 2 26536 98.8708 125.4043 0009709 247.6978 112.3164 14.11707188 91041 1 26536U 00055A 02179.92904374 -.00000068 00000-0 -13220-4 0 8895 2 26536 98.8708 125.4043 0009709 247.6978 112.3164 14.11707188 91041 1 26536U 00055A 02180.63780061 -.00000068 00000-0 -13220-4 0 8889 2 26536 98.8708 126.1049 0009709 245.6947 114.3211 14.11707154 91148 1 26536U 00055A 02181.77180894 .00000307 00000-0 19269-3 0 8896 2 26536 98.8706 127.2267 0009783 241.9278 118.0927 14.11709698 91306 1 26536U 00055A 02182.55143913 .00000388 00000-0 23737-3 0 8900 2 26536 98.8707 127.9981 0009799 239.5543 120.4657 14.11710667 91419 1 26536U 00055A 02182.90581676 .00000491 00000-0 29356-3 0 8910 2 26536 98.8704 128.3485 0009843 238.6019 121.4218 14.11711525 91461 1 26536U 00055A 02183.68544583 .00000543 00000-0 32261-3 0 8919 2 26536 98.8704 129.1192 0009866 236.1017 123.9217 14.11712716 91572 1 26536U 00055A 02184.81945283 .00000350 00000-0 21645-3 0 8928 2 26536 98.8701 130.2417 0009866 232.8986 127.1258 14.11712819 91733 1 26536U 00055A 02185.52820775 .00000197 00000-0 13214-3 0 8938 2 26536 98.8706 130.9432 0009893 230.6378 129.3896 14.11712450 91837 1 26536U 00055A 02185.95346078 .00000134 00000-0 97934-4 0 8948 2 26536 98.8703 131.3637 0009876 229.5474 130.4828 14.11712388 91895 1 26536U 00055A 02186.66221523 .00000078 00000-0 67156-4 0 8944 2 26536 98.8706 132.0646 0009896 227.5362 132.4959 14.11712331 91998 1 26536U 00055A 02187.79622337 -.00000066 00000-0 -12158-4 0 8971 2 26536 98.8705 133.1858 0009893 223.9707 136.0668 14.11711695 92152 1 26536U 00055A 02188.50497892 -.00000115 00000-0 -38662-4 0 8981 2 26536 98.8706 133.8869 0009902 221.5858 138.4574 14.11711392 92251 1 26536U 00055A 02188.93023171 -.00000059 00000-0 -79038-5 0 8994 2 26536 98.8707 134.3074 0009918 220.4321 139.6134 14.11711696 92315 1 26536U 00055A 02189.63898597 .00000026 00000-0 38673-4 0 8995 2 26536 98.8707 135.0082 0009900 218.2230 141.8242 14.11712110 92415 1 26536U 00055A 02190.77299194 .00000278 00000-0 17676-3 0 9001 2 26536 98.8705 136.1293 0009991 214.9295 145.1238 14.11713852 92576 1 26536U 00055A 02191.90699756 .00000357 00000-0 22004-3 0 9015 2 26536 98.8703 137.2511 0010027 211.7116 148.3475 14.11715006 92737 1 26536U 00055A 02192.26137374 .00000400 00000-0 24367-3 0 9022 2 26536 98.8705 137.6015 0010041 210.6135 149.4468 14.11715593 92787 1 26536U 00055A 02192.68662517 .00000400 00000-0 24367-3 0 9031 2 26536 98.8705 138.0219 0010041 209.4118 150.6489 14.11715970 92848 1 26536U 00055A 02193.82062907 .00000358 00000-0 22098-3 0 9047 2 26536 98.8708 139.1451 0010138 205.9735 154.0911 14.11716709 93002 1 26536U 00055A 02194.52938177 .00000299 00000-0 18848-3 0 9059 2 26536 98.8711 139.8465 0010190 204.0510 156.0170 14.11716842 93105 1 26536U 00055A 02194.95463353 .00000146 00000-0 10428-3 0 9063 2 26536 98.8705 140.2674 0010120 202.7610 157.3074 14.11716339 93169 1 26536U 00055A 02195.66338708 .00000018 00000-0 33867-4 0 9068 2 26536 98.8711 140.9686 0010176 200.5398 159.5345 14.11715863 93263 1 26536U 00055A 02196.79739279 -.00000111 00000-0 -36742-4 0 9073 2 26536 98.8715 142.0903 0010174 197.1701 162.9124 14.11715222 93429 1 26536U 00055A 02197.57702190 -.00000111 00000-0 -36716-4 0 9084 2 26536 98.8714 142.8609 0010206 194.6537 165.4357 14.11715092 93537 1 26536U 00055A 02197.93139826 -.00000050 00000-0 -33503-5 0 9099 2 26536 98.8712 143.2115 0010161 193.8561 166.2348 14.11715415 93583 1 26536U 00055A 02198.64015083 .00000034 00000-0 42944-4 0 9094 2 26536 98.8712 143.9122 0010164 191.6269 168.4666 14.11715827 93687 1 26536U 00055A 02199.77415442 .00000254 00000-0 16363-3 0 9125 2 26536 98.8710 145.0334 0010273 188.4380 171.6642 14.11717432 93844 1 26536U 00055A 02199.77416370 .00000084 00000-0 46388-4 0 9106 2 26536 98.8723 145.0344 0010221 188.6670 171.4801 14.11716503 93849 1 26536U 00055A 02199.84503910 .00000075 00000-0 40973-4 0 9127 2 26536 98.8721 145.1044 0010228 188.3899 171.7577 14.11716429 93853 1 26536U 00055A 02200.90815672 .00000434 00000-0 26259-3 0 9150 2 26536 98.8708 146.1546 0010357 185.3470 174.7619 14.11719154 94007 1 26536U 00055A 02201.68778211 .00000483 00000-0 28940-3 0 9156 2 26536 98.8712 146.9261 0010391 183.0731 177.0373 14.11720151 94111 1 26536U 00055A 02202.82178313 .00000372 00000-0 22834-3 0 9153 2 26536 98.8708 148.0482 0010486 179.9364 180.1792 14.11720720 94274 1 26536U 00055A 02203.53053393 .00000190 00000-0 12840-3 0 9178 2 26536 98.8713 148.7496 0010624 177.9159 182.2022 14.11720244 94377 1 26536U 00055A 02203.95578510 .00000149 00000-0 10586-3 0 9187 2 26536 98.8710 149.1703 0010603 176.6849 183.4392 14.11720316 94439 1 26536U 00055A 02204.66453580 .00000113 00000-0 86234-4 0 9191 2 26536 98.8714 149.8715 0010630 174.6351 185.4926 14.11720383 94539 1 26536U 00055A 02205.79853796 .00000002 00000-0 25537-4 0 9207 2 26536 98.8713 150.9929 0010602 171.2670 188.8688 14.11719991 94696 1 26536U 00055A 02206.50728890 -.00000043 00000-0 51263-6 0 9217 2 26536 98.8719 151.6943 0010757 169.3001 190.8404 14.11719806 94798 1 26536U 00055A 02206.93253948 -.00000043 00000-0 51263-6 0 9222 2 26536 98.8719 152.1147 0010757 168.0983 192.0445 14.11719807 94852 1 26536U 00055A 02207.71216562 .00000015 00000-0 32658-4 0 9234 2 26536 98.8722 152.8860 0010822 165.7804 194.3690 14.11720141 94966 1 26536U 00055A 02208.77529074 .00000199 00000-0 13339-3 0 9255 2 26536 98.8720 153.9372 0010903 163.2776 196.8796 14.11721459 95110 1 26536U 00055A 02209.55491447 .00000405 00000-0 24671-3 0 9266 2 26536 98.8720 154.7081 0011041 161.0670 199.0948 14.11723091 95229 1 26536U 00055A 02209.90928846 .00000590 00000-0 34774-3 0 9274 2 26536 98.8718 155.0585 0011088 160.4582 199.7065 14.11724379 95277 1 26536U 00055A 02210.68891078 .00000584 00000-0 34472-3 0 9286 2 26536 98.8719 155.8296 0011061 158.2931 201.8687 14.11725143 95386 1 26536U 00055A 02211.82290817 .00000442 00000-0 26684-3 0 9309 2 26536 98.8717 156.9519 0011097 155.2021 204.9670 14.11725821 95547 1 26536U 00055A 02212.53165640 .00000320 00000-0 19988-3 0 9318 2 26536 98.8723 157.6534 0011152 153.3781 206.7951 14.11725850 95648 1 26536U 00055A 02213.66565298 .00000278 00000-0 17676-3 0 9321 2 26536 98.8726 158.7753 0011132 150.0734 210.1061 14.11726427 95806 1 26536U 00055A 02214.79964984 .00000118 00000-0 88805-4 0 9361 2 26536 98.8725 159.8973 0011094 146.8999 213.2854 14.11726168 95967 1 26536U 00055A 02215.72102326 -.00000010 00000-0 18539-4 0 9380 2 26536 98.8726 160.8090 0011056 143.8228 216.3695 14.11725611 96094 1 26536U 00055A 02216.85501958 .00000105 00000-0 81572-4 0 9391 2 26536 98.8721 161.9307 0011085 140.8838 219.3175 14.11726511 96252 1 26536U 00055A 02217.56376612 .00000143 00000-0 10282-3 0 9422 2 26536 98.8721 162.6313 0011101 139.0208 221.1799 14.11726909 96352 1 26536U 00055A 02217.98901448 .00000143 00000-0 10282-3 0 9418 2 26536 98.8721 163.0517 0011101 137.8191 222.3837 14.11727068 96410 1 26536U 00055A 02218.76863368 .00000418 00000-0 25354-3 0 9425 2 26536 98.8721 163.8238 0011204 135.5485 224.6580 14.11729375 96528 1 26536U 00055A 02219.90262794 .00000271 00000-0 17299-3 0 9457 2 26536 98.8726 164.9460 0011213 132.4986 227.7134 14.11729442 96685 1 26536U 00055A 02220.61137363 .00000230 00000-0 15033-3 0 9448 2 26536 98.8727 165.6472 0011296 130.8062 229.4091 14.11729758 96787 1 26536U 00055A 02221.74536579 .00000310 00000-0 19406-3 0 9453 2 26536 98.8728 166.7696 0011325 127.5778 232.6423 14.11731023 96949 1 26536U 00055A 02221.74536579 .00000310 00000-0 19406-3 0 9464 2 26536 98.8728 166.7696 0011325 127.5778 232.6423 14.11731023 96949 1 26536U 00055A 02222.87935762 .00000024 00000-0 37054-4 0 9479 2 26536 98.8724 167.8912 0011301 124.6074 235.6094 14.11730228 97101 1 26536U 00055A 02223.58810441 .00000041 00000-0 46690-4 0 9480 2 26536 98.8724 168.5921 0011288 122.3400 237.8865 14.11730458 97207 1 26536U 00055A 02224.79297199 -.00000053 00000-0 -47466-5 0 9492 2 26536 98.8729 169.7842 0011361 119.0645 241.1663 14.11730008 97376 1 26536U 00055A 02225.85608953 .00000046 00000-0 49621-4 0 9511 2 26536 98.8730 170.8355 0011376 116.1853 244.0490 14.11730646 97520 1 26536U 00055A 02226.63570830 .00000145 00000-0 10377-3 0 9526 2 26536 98.8726 171.6065 0011394 114.2525 245.9832 14.11731406 97634 1 26536U 00055A 02227.76969834 .00000396 00000-0 24139-3 0 9537 2 26536 98.8721 172.7280 0011373 111.2858 248.9556 14.11733559 97797 1 26536U 00055A 02228.90368590 .00000669 00000-0 39104-3 0 9560 2 26536 98.8720 173.8493 0011441 109.4864 250.7576 14.11736156 97953 1 26536U 00055A 02229.61242696 .00000672 00000-0 39291-3 0 9568 2 26536 98.8728 174.5506 0011429 107.4674 252.7723 14.11737082 98054 1 26536U 00055A 02229.96679828 .00000666 00000-0 38980-3 0 9553 2 26536 98.8722 174.9013 0011440 106.7852 253.4581 14.11737576 98102 1 26536U 00055A 02230.74641370 .00000590 00000-0 34800-3 0 9577 2 26536 98.8729 175.6730 0011417 104.6125 255.6313 14.11738304 98216 1 26536U 00055A 02231.45515577 .00000357 00000-0 22006-3 0 9571 2 26536 98.8731 176.3751 0011479 103.0727 257.1727 14.11737826 98314 1 26536U 00055A 02231.88040053 .00000319 00000-0 19943-3 0 9585 2 26536 98.8731 176.7960 0011484 101.6177 258.6275 14.11738011 98376 1 26536U 00055A 02232.58914131 .00000296 00000-0 18661-3 0 9580 2 26536 98.8736 177.4972 0011536 100.3140 259.9312 14.11738396 98479 1 26536U 00055A 02233.79400141 .00000253 00000-0 16292-3 0 9597 2 26536 98.8732 178.6890 0011543 96.7758 263.4727 14.11738932 98643 1 26536U 00055A 02234.85711162 .00000389 00000-0 23762-3 0 9605 2 26536 98.8731 179.7412 0011494 93.2124 267.0378 14.11740490 98798 1 26536U 00055A 02235.63672467 .00000504 00000-0 30038-3 0 9610 2 26536 98.8731 180.5122 0011506 91.2218 269.0283 14.11741761 98904 1 26536U 00055A 02236.77070519 .00000748 00000-0 43430-3 0 9627 2 26536 98.8732 181.6336 0011478 88.3878 271.8612 14.11744475 99061 1 26536U 00055A 02237.90468474 .00000634 00000-0 37218-3 0 9658 2 26536 98.8734 182.7564 0011495 85.7195 274.5273 14.11745691 99222 1 26536U 00055A 02238.61342159 .00000699 00000-0 40771-3 0 9657 2 26536 98.8744 183.4585 0011542 83.9974 276.2498 14.11746868 99328 1 26536U 00055A 02239.74739965 .00000583 00000-0 34391-3 0 9661 2 26536 98.8744 184.5809 0011495 81.0303 279.2157 14.11747901 99482 1 26536U 00055A 02240.45613731 .00000323 00000-0 20113-3 0 9684 2 26536 98.8745 185.2827 0011569 78.5781 281.6692 14.11747235 99586 1 26536U 00055A 02240.88137895 .00000269 00000-0 17148-3 0 9697 2 26536 98.8743 185.7036 0011572 77.3797 282.8661 14.11747314 99643 1 26536U 00055A 02241.66098871 .00000210 00000-0 13946-3 0 9704 2 26536 98.8748 186.4750 0011577 75.3666 284.8777 14.11747479 99751 1 26536U 00055A 02242.79496770 -.00000007 00000-0 20184-4 0 9718 2 26536 98.8746 187.5962 0011591 72.2482 287.9948 14.11746657 99913 1 26536U 00055A 02243.85807208 .00000036 00000-0 43997-4 0 9727 2 26536 98.8740 188.6478 0011622 69.4397 290.8020 14.11747050100060 1 26536U 00055A 02244.63768064 .00000136 00000-0 98604-4 0 9737 2 26536 98.8739 189.4188 0011604 67.4505 292.7890 14.11747991100176 1 26536U 00055A 02245.84252906 .00000477 00000-0 28577-3 0 9744 2 26536 98.8735 190.6103 0011533 64.2955 295.9422 14.11750637100344 1 26536U 00055A 02245.84252906 .00000477 00000-0 28577-3 0 9755 2 26536 98.8735 190.6103 0011533 64.2955 295.9422 14.11750637100344 1 26536U 00055A 02246.55126277 .00000481 00000-0 28784-3 0 9761 2 26536 98.8742 191.3121 0011477 62.7366 297.4976 14.11751356100447 1 26536U 00055A 02246.90562963 .00000524 00000-0 31174-3 0 9772 2 26536 98.8737 191.6629 0011419 62.0501 298.1844 14.11751978100494 1 26536U 00055A 02247.68523559 .00000530 00000-0 31502-3 0 9778 2 26536 98.8740 192.4346 0011417 59.8143 300.4141 14.11752886100606 1 26536U 00055A 02248.81920784 .00000569 00000-0 33618-3 0 9801 2 26536 98.8748 193.5567 0011341 57.0948 303.1313 14.11754456100763 1 26536U 00055A 02248.81921845 .00000444 00000-0 24367-3 0 9780 2 26536 98.8758 193.5574 0011482 56.1943 304.0791 14.11753331100764 1 26536U 00055A 02249.52794061 .00000411 00000-0 24959-3 0 9801 2 26536 98.8752 194.2590 0011349 55.1546 305.0675 14.11754304100868 1 26536U 00055A 02249.95318027 .00000354 00000-0 21820-3 0 9813 2 26536 98.8752 194.6798 0011381 53.8605 306.3603 14.11754401100929 1 26536U 00055A 02250.66191190 .00000322 00000-0 20100-3 0 9818 2 26536 98.8754 195.3810 0011339 52.6742 307.5424 14.11754833101021 1 26536U 00055A 02251.79588485 .00000137 00000-0 99579-4 0 9844 2 26536 98.8754 196.5028 0011305 49.8760 310.3407 14.11754472101185 1 26536U 00055A 02252.92985591 .00000292 00000-0 18439-3 0 9857 2 26536 98.8758 197.6249 0011281 47.0444 313.1710 14.11755791101349 1 26536U 00055A 02253.63858612 .00000394 00000-0 24015-3 0 9871 2 26536 98.8757 198.3261 0011298 45.0279 315.1805 14.11756784101443 1 26536U 00055A 02254.06382470 .00000588 00000-0 34644-3 0 9866 2 26536 98.8756 198.7467 0011249 43.5690 316.6428 14.11758304101504 1 26536U 00055A 02254.41818856 .00000627 00000-0 36833-3 0 9874 2 26536 98.8757 199.0972 0011251 42.7383 317.4667 14.11758941101559 1 26536U 00055A 02254.41819837 .00000621 00000-0 34100-3 0 9873 2 26536 98.8768 199.0985 0011738 44.7595 315.5005 14.11759301101558 1 26536U 00055A 02254.84342628 .00000819 00000-0 47323-3 0 9880 2 26536 98.8755 199.5179 0011208 41.6635 318.5424 14.11760444101612 1 26536U 00055A 02255.55215394 .00000889 00000-0 51160-3 0 9889 2 26536 98.8753 200.2190 0011122 39.9229 320.2758 14.11762042101714 1 26536U 00055A 02255.83565639 .00000514 00000-0 28209-3 0 9894 2 26536 98.8768 200.5017 0011296 38.0288 322.2163 14.11760254101757 1 26536U 00055A 02255.90651801 .00000938 00000-0 53877-3 0 9898 2 26536 98.8756 200.5703 0011009 38.7388 321.4604 14.11763023101765 1 26536U 00055A 02256.68611695 .00000997 00000-0 57100-3 0 9901 2 26536 98.8757 201.3419 0011003 36.4718 323.7185 14.11764841101875 1 26536U 00055A 02257.82007959 .00000844 00000-0 48726-3 0 9927 2 26536 98.8761 202.4646 0010901 33.5688 326.6152 14.11766266102032 1 26536U 00055A 02258.95404249 .00000531 00000-0 31533-3 0 9937 2 26536 98.8759 203.5874 0010947 30.2921 329.8865 14.11766405102196 1 26536U 00055A 02259.66276863 .00000472 00000-0 28305-3 0 9943 2 26536 98.8762 204.2891 0010990 28.1572 332.0178 14.11766914102292 1 26536U 00055A 02260.79672953 .00000420 00000-0 25463-3 0 9955 2 26536 98.8761 205.4116 0011086 24.9033 335.2647 14.11767812102459 1 26536U 00055A 02261.57632794 .00000373 00000-0 22882-3 0 9961 2 26536 98.8765 206.1831 0011114 22.6358 337.5300 14.11768219102567 1 26536U 00055A 02261.93069045 .00000401 00000-0 24401-3 0 9976 2 26536 98.8758 206.5340 0011098 21.5857 338.5791 14.11768697102612 1 26536U 00055A 02262.63941434 .00000455 00000-0 27365-3 0 9976 2 26536 98.8759 207.2351 0011059 19.7821 340.3777 14.11769752102719 1 26536U 00055A 02263.77337196 .00000653 00000-0 38229-3 0 9999 2 26536 98.8763 208.3576 0010970 16.7579 343.3971 14.11772022102873 1 26536U 00055A 02264.55296548 .00000764 00000-0 44327-3 0 03 2 26536 98.8768 209.1291 0010739 14.7958 345.3508 14.11773708102985 1 26536U 00055A 02264.90732692 .00000813 00000-0 46992-3 0 13 2 26536 98.8767 209.4797 0010748 13.6877 346.4596 14.11774557103035 1 26536U 00055A 02265.68692022 .00000723 00000-0 42092-3 0 29 2 26536 98.8768 210.2517 0010732 11.5862 348.5525 14.11775344103142 1 26536U 00055A 02266.82087490 .00000546 00000-0 32346-3 0 38 2 26536 98.8769 211.3749 0010692 8.4372 351.6963 14.11776090103306 1 26536U 00055A 02267.95482938 .00000347 00000-0 21469-3 0 65 2 26536 98.8776 212.4975 0010667 5.2505 354.8767 14.11776158103461 1 26536U 00055A 02268.66355045 .00000246 00000-0 15933-3 0 69 2 26536 98.8781 213.1993 0010700 3.2675 356.8532 14.11776078103563 1 26536U 00055A 02269.79750527 .00000136 00000-0 98918-4 0 72 2 26536 98.8781 214.3221 0010815 0.2046 359.9125 14.11776062103729 1 26536U 00055A 02270.93145915 .00000069 00000-0 61967-4 0 89 2 26536 98.8787 215.4445 0010710 357.0901 3.0206 14.11776027103887 1 26536U 00055A 02270.93145915 .00000069 00000-0 61967-4 0 102 2 26536 98.8787 215.4445 0010710 357.0901 3.0206 14.11776027103887 1 26536U 00055A 02271.64017927 .00000168 00000-0 11659-3 0 92 2 26536 98.8786 216.1459 0010681 355.2357 4.8699 14.11776833103982 1 26536U 00055A 02272.77413154 .00000381 00000-0 23291-3 0 114 2 26536 98.8783 217.2685 0010624 351.9892 8.1133 14.11778637104149 1 26536U 00055A 02273.55372208 .00000517 00000-0 30777-3 0 124 2 26536 98.8780 218.0403 0010535 349.7792 10.3174 14.11780055104257 1 26536U 00055A 02273.90808138 .00000635 00000-0 37255-3 0 139 2 26536 98.8776 218.3912 0010520 348.5492 11.5473 14.11781137104301 1 26536U 00055A 02274.68767025 .00000752 00000-0 43634-3 0 132 2 26536 98.8780 219.1634 0010466 346.5126 13.5754 14.11782740104414 1 26536U 00055A 02275.82161853 .00000723 00000-0 42076-3 0 144 2 26536 98.8773 220.2867 0010483 343.3608 16.7223 14.11784333104579 1 26536U 00055A 02276.81383284 .00000542 00000-0 29757-3 0 159 2 26536 98.8799 221.2687 0010497 340.4353 19.6886 14.11784051104718 1 26536U 00055A 02276.88469487 .00000433 00000-0 26140-3 0 169 2 26536 98.8778 221.3395 0010452 340.2844 19.7912 14.11784105104728 1 26536U 00055A 02276.88469487 .00000433 00000-0 26140-3 0 170 2 26536 98.8778 221.3395 0010452 340.2844 19.7912 14.11784105104728 1 26536U 00055A 02277.66428370 .00000351 00000-0 21665-3 0 179 2 26536 98.8784 222.1113 0010387 338.0251 22.0456 14.11784340104839 1 26536U 00055A 02278.79823135 .00000268 00000-0 17129-3 0 180 2 26536 98.8786 223.2339 0010396 335.0413 25.0254 14.11784764104996 1 26536U 00055A 02279.57782024 .00000193 00000-0 12989-3 0 207 2 26536 98.8788 224.0056 0010420 332.8315 27.2310 14.11784745105107 1 26536U 00055A 02279.93217863 .00000193 00000-0 12989-3 0 212 2 26536 98.8788 224.3562 0010420 331.8301 28.2306 14.11784912105153 1 26536U 00055A 02280.71176604 .00000229 00000-0 14973-3 0 223 2 26536 98.8796 225.1282 0010254 329.1093 30.9454 14.11785490105261 1 26536U 00055A 02281.77484014 .00000442 00000-0 26685-3 0 250 2 26536 98.8806 226.1809 0010194 325.6918 34.3639 14.11787450105417 1 26536U 00055A 02281.77484889 .00000360 00000-0 19739-3 0 239 2 26536 98.8804 226.1807 0010281 326.0057 34.0932 14.11787016105410 1 26536U 00055A 02282.55442534 .00000687 00000-0 40100-3 0 268 2 26536 98.8810 226.9531 0010136 323.4331 36.6175 14.11789628105524 1 26536U 00055A 02282.90878194 .00000824 00000-0 47570-3 0 274 2 26536 98.8809 227.3038 0010097 321.9179 38.1318 14.11790875105575 1 26536U 00055A 02283.68836564 .00000881 00000-0 50697-3 0 272 2 26536 98.8812 228.0765 0010006 319.6521 40.3895 14.11792442105688 1 26536U 00055A 02284.39707861 .00000881 00000-0 50697-3 0 289 2 26536 98.8812 228.7779 0010006 317.6491 42.3907 14.11793750105784 1 26536U 00055A 02284.82230595 .00000881 00000-0 50697-3 0 293 2 26536 98.8812 229.1988 0010006 316.4472 43.5908 14.11794535105840 1 26536U 00055A 02285.53101879 .00000629 00000-0 36905-3 0 290 2 26536 98.8813 229.9016 0009849 313.7767 46.2578 14.11794267105947 1 26536U 00055A 02285.95624623 .00000527 00000-0 31300-3 0 306 2 26536 98.8809 230.3228 0009865 312.8974 47.1346 14.11794363106009 1 26536U 00055A 02286.66495877 .00000491 00000-0 29361-3 0 306 2 26536 98.8806 231.0240 0009857 311.0683 48.9622 14.11794893106102 1 26536U 00055A 02287.79889792 .00000394 00000-0 24044-3 0 310 2 26536 98.8806 232.1468 0009889 307.9817 52.0452 14.11795582106264 1 26536U 00055A 02287.79889792 .00000394 00000-0 24044-3 0 321 2 26536 98.8806 232.1468 0009889 307.9817 52.0452 14.11795582106264 1 26536U 00055A 02288.93283659 .00000415 00000-0 25182-3 0 359 2 26536 98.8807 233.2692 0009946 305.0710 54.9544 14.11796712106428 1 26536U 00055A 02289.64154669 .00000515 00000-0 30644-3 0 345 2 26536 98.8811 233.9714 0009939 303.3036 56.7175 14.11797864106529 1 26536U 00055A 02290.42112702 .00000670 00000-0 39171-3 0 352 2 26536 98.8813 234.7427 0009946 300.5903 59.4287 14.11799714106633 1 26536U 00055A 02290.91722363 .00000670 00000-0 39171-3 0 367 2 26536 98.8813 235.2337 0009946 299.1883 60.8293 14.11800422106709 1 26536U 00055A 02291.69680355 .00000670 00000-0 39171-3 0 378 2 26536 98.8813 236.0054 0009946 296.9851 63.0304 14.11801534106819 1 26536U 00055A 02292.83073486 .00000822 00000-0 47492-3 0 381 2 26536 98.8813 237.1296 0009898 292.7499 67.2626 14.11804404106976 1 26536U 00055A 02293.53944172 .00000759 00000-0 44040-3 0 394 2 26536 98.8815 237.8326 0009847 290.0086 70.0005 14.11805199107073 1 26536U 00055A 02293.96466621 .00000759 00000-0 44040-3 0 401 2 26536 98.8815 238.2535 0009847 288.8069 71.2034 14.11805881107136 1 26536U 00055A 02294.67337261 .00000646 00000-0 37816-3 0 405 2 26536 98.8822 238.9558 0009819 286.2285 73.7786 14.11806342107232 1 26536U 00055A 02295.80730395 .00000387 00000-0 23624-3 0 411 2 26536 98.8816 240.0793 0009835 283.9165 76.0896 14.11806433107395 1 26536U 00055A 02296.51601076 .00000316 00000-0 19749-3 0 429 2 26536 98.8822 240.7816 0009803 281.7353 78.2712 14.11806641107498 1 26536U 00055A 02296.94123467 .00000311 00000-0 19477-3 0 433 2 26536 98.8828 241.2022 0009804 280.6463 79.3608 14.11806982107551 1 26536U 00055A 02297.64994069 .00000260 00000-0 16683-3 0 434 2 26536 98.8834 241.9044 0009782 278.2117 81.7925 14.11807060107651 1 26536U 00055A 02297.64994069 .00000260 00000-0 16683-3 0 445 2 26536 98.8834 241.9044 0009782 278.2117 81.7925 14.11807060107651 1 26536U 00055A 02298.78387074 .00000260 00000-0 16683-3 0 454 2 26536 98.8834 243.0270 0009782 275.0077 84.9978 14.11807749107810 1 26536U 00055A 02299.91779874 .00000501 00000-0 29893-3 0 504 2 26536 98.8839 244.1504 0009791 271.8213 88.1874 14.11810067107978 1 26536U 00055A 02300.69737231 .00000641 00000-0 37548-3 0 504 2 26536 98.8840 244.9225 0009751 269.2352 90.7697 14.11811661108085 1 26536U 00055A 02301.83129668 .00000789 00000-0 45678-3 0 517 2 26536 98.8841 246.0464 0009789 265.7591 94.2453 14.11814271108248 1 26536U 00055A 02302.53999931 .00000789 00000-0 45678-3 0 524 2 26536 98.8841 246.7481 0009789 263.7566 96.2490 14.11815450108348 1 26536U 00055A 02302.89435032 .00000613 00000-0 36026-3 0 534 2 26536 98.8840 247.0996 0009751 262.5630 97.4381 14.11814993108398 1 26536U 00055A 02303.67392363 .00000587 00000-0 34600-3 0 581 2 26536 98.8844 247.8721 0009761 260.1009 99.9060 14.11815938108505 1 26536U 00055A 02304.80784747 .00000343 00000-0 21219-3 0 591 2 26536 98.8842 248.9956 0009747 256.6384 103.3677 14.11815751108669 1 26536U 00055A 02305.51655014 .00000311 00000-0 19477-3 0 604 2 26536 98.8843 249.6973 0009743 254.5477 105.4618 14.11816091108760 1 26536U 00055A 02305.94177128 .00000209 00000-0 13874-3 0 618 2 26536 98.8845 250.1191 0009711 253.3791 106.6291 14.11815864108826 1 26536U 00055A 02306.65047376 .00000209 00000-0 13874-3 0 618 2 26536 98.8845 250.8209 0009711 251.3767 108.6350 14.11816222108922 1 26536U 00055A 02307.78439667 .00000369 00000-0 22666-3 0 639 2 26536 98.8846 251.9442 0009754 247.2435 112.7770 14.11817812109083 1 26536U 00055A 02308.56396656 .00000526 00000-0 31265-3 0 658 2 26536 98.8848 252.7165 0009790 244.2885 115.7318 14.11819287109193 1 26536U 00055A 02308.91831593 .00000619 00000-0 36351-3 0 666 2 26536 98.8845 253.0676 0009828 243.1995 116.8199 14.11820219109245 1 26536U 00055A 02309.69788467 .00000713 00000-0 41479-3 0 665 2 26536 98.8848 253.8400 0009813 240.8410 119.1771 14.11821713109355 1 26536U 00055A 02310.83180173 .00000833 00000-0 48076-3 0 688 2 26536 98.8856 254.9629 0009903 237.2322 122.7892 14.11824311109510 1 26536U 00055A 02311.54049967 .00000782 00000-0 45269-3 0 709 2 26536 98.8867 255.6657 0009920 234.9370 125.0867 14.11825219109614 1 26536U 00055A 02311.82398955 .00000643 00000-0 35238-3 0 693 2 26536 98.8866 255.9469 0009821 235.3063 124.7665 14.11824448109650 1 26536U 00055A 02311.89484849 .00000747 00000-0 43365-3 0 727 2 26536 98.8869 256.0167 0009906 233.9524 126.0721 14.11825615109666 1 26536U 00055A 02312.67441554 .00000649 00000-0 37968-3 0 723 2 26536 98.8877 256.7896 0009932 231.4757 128.5500 14.11826211109778 1 26536U 00055A 02313.80833169 .00000424 00000-0 25641-3 0 744 2 26536 98.8885 257.9131 0009901 228.3914 131.6394 14.11826473109932 1 26536U 00055A 02314.51702929 .00000375 00000-0 22958-3 0 756 2 26536 98.8887 258.6149 0009854 226.5441 133.4911 14.11826825110032 1 26536U 00055A 02314.94224736 .00000240 00000-0 15586-3 0 769 2 26536 98.8878 259.0373 0009721 225.9194 134.1140 14.11826536110094 1 26536U 00055A 02315.65094471 .00000218 00000-0 14350-3 0 762 2 26536 98.8883 259.7398 0009741 223.8351 136.2025 14.11826746110197 1 26536U 00055A 02316.78485912 .00000413 00000-0 25067-3 0 776 2 26536 98.8886 260.8622 0009796 220.4543 139.5928 14.11828623110351 1 26536U 00055A 02317.91877080 .00000666 00000-0 38904-3 0 801 2 26536 98.8884 261.9859 0009842 216.8834 143.1684 14.11831174110510 1 26536U 00055A 02318.69833372 .00000779 00000-0 45115-3 0 798 2 26536 98.8882 262.7584 0009828 214.4794 145.5730 14.11832854110621 1 26536U 00055A 02319.83224297 .00000778 00000-0 45024-3 0 816 2 26536 98.8882 263.8826 0009885 211.1274 148.9302 14.11834813110788 1 26536U 00055A 02320.89528255 .00000704 00000-0 41000-3 0 825 2 26536 98.8867 264.9367 0010052 207.1852 152.8803 14.11836082110935 1 26536U 00055A 02321.67484370 .00000546 00000-0 32332-3 0 834 2 26536 98.8874 265.7097 0010101 204.8740 155.1903 14.11836246111049 1 26536U 00055A 02322.80875264 .00000330 00000-0 20497-3 0 847 2 26536 98.8876 266.8337 0010009 201.7245 158.3483 14.11836324111206 1 26536U 00055A 02323.51744520 .00000201 00000-0 13450-3 0 855 2 26536 98.8883 267.5365 0010129 199.7563 160.3208 14.11836172111305 1 26536U 00055A 02323.94266079 .00000103 00000-0 80793-4 0 867 2 26536 98.8886 267.9578 0010123 198.3784 161.7003 14.11835892111364 1 26536U 00055A 02324.65135368 .00000080 00000-0 67964-4 0 861 2 26536 98.8895 268.6601 0010256 195.8732 164.2124 14.11835968111468 1 26536U 00055A 02325.78526084 .00000251 00000-0 16171-3 0 891 2 26536 98.8898 269.7836 0010236 193.0966 166.9968 14.11837343111622 1 26536U 00055A 02325.85613822 .00000372 00000-0 20363-3 0 876 2 26536 98.8895 269.8539 0010174 193.2113 166.9272 14.11838156111639 1 26536U 00055A 02326.56482111 .00000320 00000-0 19931-3 0 906 2 26536 98.8900 270.5563 0010290 190.6216 169.4751 14.11838149111739 1 26536U 00055A 02327.69872473 .00000532 00000-0 31549-3 0 932 2 26536 98.8905 271.6798 0010573 187.2939 172.8081 14.11840453111896 1 26536U 00055A 02328.83262804 .00000660 00000-0 38557-3 0 950 2 26536 98.8907 272.8037 0010466 183.9705 176.1385 14.11842606112057 1 26536U 00055A 02329.61218587 .00000660 00000-0 38557-3 0 978 2 26536 98.8907 273.5762 0010466 181.7687 178.3449 14.11843702112160 1 26536U 00055A 02330.74608739 .00000463 00000-0 27796-3 0 981 2 26536 98.8908 274.7014 0010584 178.5210 181.5957 14.11844052112328 1 26536U 00055A 02331.52564556 .00000316 00000-0 19742-3 0 996 2 26536 98.8908 275.4738 0010527 176.4074 183.7159 14.11844065112435 1 26536U 00055A 02331.87999008 .00000187 00000-0 12671-3 0 1001 2 26536 98.8905 275.8252 0010474 175.1764 184.9477 14.11843662112483 1 26536U 00055A 02332.65954811 .00000156 00000-0 10990-3 0 1009 2 26536 98.8906 276.5978 0010461 172.9943 187.1364 14.11843826112591 1 26536U 00055A 02332.65954811 .00000156 00000-0 10990-3 0 1010 2 26536 98.8906 276.5978 0010461 172.9943 187.1364 14.11843826112591 1 26536U 00055A 02333.79345043 .00000025 00000-0 38125-4 0 1024 2 26536 98.8905 277.7215 0010532 169.7137 190.4252 14.11843566112757 1 26536U 00055A 02334.50213913 .00000123 00000-0 91746-4 0 1032 2 26536 98.8907 278.4240 0010632 167.8298 192.3174 14.11844320112857 1 26536U 00055A 02334.85648246 .00000123 00000-0 91746-4 0 1042 2 26536 98.8907 278.7751 0010632 166.8288 193.3163 14.11844439112901 1 26536U 00055A 02335.63603869 .00000348 00000-0 21453-3 0 1047 2 26536 98.8901 279.5478 0010832 164.7283 195.4247 14.11845997113013 1 26536U 00055A 02336.76993683 .00000532 00000-0 31576-3 0 1051 2 26536 98.8896 280.6722 0010901 161.7148 198.4434 14.11848033113177 1 26536U 00055A 02337.47862279 .00000532 00000-0 31576-3 0 1067 2 26536 98.8896 281.3743 0010901 159.7129 200.4477 14.11848849113271 1 26536U 00055A 02337.90383436 .00000597 00000-0 35083-3 0 1077 2 26536 98.8899 281.7963 0011050 159.0353 201.1309 14.11849711113338 1 26536U 00055A 02338.61251900 .00000565 00000-0 33353-3 0 1079 2 26536 98.8904 282.4992 0011070 157.0779 203.0867 14.11850300113434 1 26536U 00055A 02339.74641586 .00000430 00000-0 25946-3 0 1099 2 26536 98.8910 283.6234 0011140 154.0520 206.1212 14.11850915113599 1 26536U 00055A 02339.81729451 .00000469 00000-0 25702-3 0 1097 2 26536 98.8921 283.6942 0010590 153.2033 207.0164 14.11850738113606 1 26536U 00055A 02340.52596926 .00000333 00000-0 20639-3 0 1113 2 26536 98.8924 284.3966 0011072 151.8369 208.3389 14.11851131113707 1 26536U 00055A 02340.88031194 .00000271 00000-0 17275-3 0 1127 2 26536 98.8928 284.7476 0011078 150.7513 209.4268 14.11851091113754 1 26536U 00055A 02341.65986541 .00000204 00000-0 13585-3 0 1124 2 26536 98.8934 285.5206 0011050 148.6829 211.4983 14.11851116113864 1 26536U 00055A 02342.79376182 .00000177 00000-0 12118-3 0 1157 2 26536 98.8928 286.6444 0011014 144.9620 215.2285 14.11851513114028 1 26536U 00055A 02343.85678890 .00000196 00000-0 13165-3 0 1183 2 26536 98.8926 287.6982 0010928 141.6282 218.5688 14.11852072114175 1 26536U 00055A 02344.63634084 .00000321 00000-0 19991-3 0 1180 2 26536 98.8928 288.4713 0010944 139.3662 220.8333 14.11853034114286 1 26536U 00055A 02345.77023241 .00000594 00000-0 34957-3 0 1195 2 26536 98.8926 289.5956 0011013 136.6236 223.5813 14.11855705114448 1 26536U 00055A 02346.90412343 .00000709 00000-0 41240-3 0 1221 2 26536 98.8925 290.7201 0011054 133.4972 226.7140 14.11857756114605 1 26536U 00055A 02347.61280413 .00000672 00000-0 39226-3 0 1243 2 26536 98.8925 291.4230 0011002 131.5837 228.6267 14.11858541114702 1 26536U 00055A 02348.03801284 .00000603 00000-0 35453-3 0 1236 2 26536 98.8923 291.8447 0011017 130.3791 229.8331 14.11858801114766 1 26536U 00055A 02348.74669366 .00000603 00000-0 35453-3 0 1248 2 26536 98.8923 292.5470 0011017 128.3773 231.8390 14.11859717114863 1 26536U 00055A 02349.52624274 .00000418 00000-0 25320-3 0 1251 2 26536 98.8928 293.3211 0011081 126.2914 233.9274 14.11859500114971 1 26536U 00055A 02349.88058307 .00000310 00000-0 19385-3 0 1264 2 26536 98.8926 293.6725 0011088 124.9893 235.2293 14.11859285115023 1 26536U 00055A 02350.80186738 .00000214 00000-0 14140-3 0 1265 2 26536 98.8934 294.5864 0011189 122.8830 237.3376 14.11859423115159 1 26536U 00055A 02351.93575683 .00000205 00000-0 13637-3 0 1306 2 26536 98.8939 295.7106 0011245 120.0373 240.1916 14.11859810115311 1 26536U 00055A 02352.64443627 .00000202 00000-0 13501-3 0 1292 2 26536 98.8934 296.4129 0011212 117.9406 242.2878 14.11860220115413 1 26536U 00055A 02353.77832292 .00000427 00000-0 25787-3 0 1307 2 26536 98.8935 297.5373 0011233 115.2479 244.9874 14.11862246115573 1 26536U 00055A 02354.48700024 .00000597 00000-0 35118-3 0 1311 2 26536 98.8942 298.2403 0011260 113.8312 246.4055 14.11864003115675 1 26536U 00055A 02354.91220665 .00000597 00000-0 35118-3 0 1328 2 26536 98.8942 298.6618 0011260 112.6301 247.6062 14.11864547115733 1 26536U 00055A 02355.62088270 .00000760 00000-0 44038-3 0 1324 2 26536 98.8942 299.3648 0011265 111.2398 248.9961 14.11866385115835 1 26536U 00055A 02356.75476402 .00000845 00000-0 48685-3 0 1334 2 26536 98.8958 300.4899 0011363 108.9098 251.3295 14.11868722115995 1 26536U 00055A 02357.88864557 .00000568 00000-0 33510-3 0 1356 2 26536 98.8971 301.6144 0011447 106.4711 253.7712 14.11868988116157 1 26536U 00055A 02358.59732074 .00000431 00000-0 25993-3 0 1369 2 26536 98.8973 302.3170 0011393 104.0764 256.1621 14.11868939116251 1 26536U 00055A 02358.59732074 .00000431 00000-0 25993-3 0 1370 2 26536 98.8973 302.3170 0011393 104.0764 256.1621 14.11868939116251 1 26536U 00055A 02359.02252691 .00000319 00000-0 19888-3 0 1372 2 26536 98.8973 302.7390 0011385 102.0695 258.1729 14.11868903116310 1 26536U 00055A 02359.73120258 .00000242 00000-0 15644-3 0 1374 2 26536 98.8972 303.4413 0011400 100.4822 259.7626 14.11869003116411 1 26536U 00055A 02360.86508296 .00000219 00000-0 14430-3 0 1390 2 26536 98.8970 304.5661 0011439 97.0048 263.2425 14.11869566116577 1 26536U 00055A 02361.64462522 .00000277 00000-0 17607-3 0 1403 2 26536 98.8955 305.3385 0011387 94.5314 265.7178 14.11870382116684 1 26536U 00055A 02362.77850365 .00000399 00000-0 24261-3 0 1414 2 26536 98.8950 306.4631 0011387 91.5902 268.6615 14.11871865116848 1 26536U 00055A 02363.48717637 .00000525 00000-0 31142-3 0 1436 2 26536 98.8946 307.1664 0011471 89.9039 270.3475 14.11873196116947 1 26536U 00055A 02363.91237951 .00000598 00000-0 35136-3 0 1448 2 26536 98.8941 307.5881 0011450 88.9677 271.2830 14.11874104117004 1 26536U 00055A 02364.62105142 .00000535 00000-0 31723-3 0 1442 2 26536 98.8942 308.2914 0011456 87.1383 273.1075 14.11874493117105 1 26536U 00055A 02365.75492658 .00000479 00000-0 28621-3 0 1459 2 26536 98.8945 309.4158 0011435 84.4669 275.7780 14.11875476117265 1 26536U 00055A 02365.75492658 .00000479 00000-0 28621-3 0 1460 2 26536 98.8945 309.4158 0011435 84.4669 275.7780 14.11875476117265 1 26536U 00055A 03001.95966928 .00000218 00000-0 14359-3 0 1471 2 26536 98.8958 310.6112 0011418 82.0248 278.2208 14.11875225117435 1 26536U 00055A 03001.95966928 .00000218 00000-0 14359-3 0 1493 2 26536 98.8958 310.6112 0011418 82.0248 278.2208 14.11875225117435 1 26536U 00055A 03002.66834094 .00000150 00000-0 10608-3 0 1487 2 26536 98.8963 311.3142 0011406 80.0573 280.1849 14.11875109117533 1 26536U 00055A 03003.80221733 -.00000019 00000-0 13596-4 0 1490 2 26536 98.8968 312.4392 0011418 76.4636 283.7804 14.11874567117693 1 26536U 00055A 03004.93609329 -.00000018 00000-0 14248-4 0 1535 2 26536 98.8969 313.5641 0011470 73.1330 287.1122 14.11874594117855 1 26536U 00055A 03005.64476451 .00000008 00000-0 28793-4 0 1529 2 26536 98.8968 314.2668 0011462 71.0632 289.1760 14.11874655117953 1 26536U 00055A 03006.77863862 .00000281 00000-0 17808-3 0 1549 2 26536 98.8970 315.3914 0011430 68.0120 292.2294 14.11876520118114 1 26536U 00055A 03007.55817561 .00000365 00000-0 22393-3 0 1550 2 26536 98.8968 316.1649 0011428 65.8317 294.4050 14.11877471118227 1 26536U 00055A 03007.91251074 .00000490 00000-0 29245-3 0 1564 2 26536 98.8968 316.5162 0011378 64.9243 295.3145 14.11878472118275 1 26536U 00055A 03008.69204626 .00000508 00000-0 30245-3 0 1563 2 26536 98.8971 317.2897 0011369 62.9019 297.3286 14.11879308118380 1 26536U 00055A 03008.69204626 .00000508 00000-0 30245-3 0 1574 2 26536 98.8971 317.2897 0011369 62.9019 297.3286 14.11879308118380 1 26536U 00055A 03009.82591659 .00000536 00000-0 31770-3 0 1581 2 26536 98.8975 318.4148 0011328 60.1376 300.0909 14.11880862118546 1 26536U 00055A 03010.53458583 .00000403 00000-0 24503-3 0 1599 2 26536 98.8979 319.1186 0011337 58.1926 302.0334 14.11880806118641 1 26536U 00055A 03010.95978724 .00000355 00000-0 21838-3 0 1605 2 26536 98.8974 319.5405 0011349 57.0145 303.2107 14.11880960118707 1 26536U 00055A 03011.66845582 .00000241 00000-0 15603-3 0 1606 2 26536 98.8975 320.2434 0011338 55.0065 305.2139 14.11880844118805 1 26536U 00055A 03012.02279069 .00000143 00000-0 10221-3 0 1611 2 26536 98.8972 320.5951 0011421 53.6104 306.6096 14.11880623118857 1 26536U 00055A 03012.80232638 .00000118 00000-0 88841-4 0 1636 2 26536 98.8975 321.3683 0011417 51.6361 308.5824 14.11880842118964 1 26536U 00055A 03013.51099553 .00000083 00000-0 69906-4 0 1634 2 26536 98.8970 322.0708 0011426 49.9787 310.2393 14.11880840119068 1 26536U 00055A 03013.93619650 .00000153 00000-0 10791-3 0 1642 2 26536 98.8969 322.4925 0011395 48.7325 311.4848 14.11881352119125 1 26536U 00055A 03014.64486374 .00000192 00000-0 12949-3 0 1657 2 26536 98.8965 323.1949 0011380 46.6983 313.5116 14.11881831119220 1 26536U 00055A 03015.77873150 .00000383 00000-0 23394-3 0 1663 2 26536 98.8965 324.3193 0011294 44.1229 316.0853 14.11883594119385 1 26536U 00055A 03016.84174047 .00000299 00000-0 16367-3 0 1681 2 26536 98.8979 325.3753 0011236 41.1080 319.1408 14.11883960119535 1 26536U 00055A 03016.91259722 .00000532 00000-0 31508-3 0 1687 2 26536 98.8967 325.4438 0011253 41.3147 318.8874 14.11885503119547 1 26536U 00055A 03017.69212897 .00000557 00000-0 32911-3 0 1692 2 26536 98.8968 326.2172 0011110 39.6814 320.5153 14.11886553119653 1 26536U 00055A 03017.69212897 .00000557 00000-0 32911-3 0 1704 2 26536 98.8968 326.2172 0011110 39.6814 320.5153 14.11886553119653 1 26536U 00055A 03018.82599294 .00000525 00000-0 31141-3 0 1719 2 26536 98.8976 327.3428 0011082 36.7270 323.4626 14.11887786119814 1 26536U 00055A 03019.95985754 .00000301 00000-0 18869-3 0 1729 2 26536 98.8990 328.4682 0011039 33.7527 326.4312 14.11887676119978 1 26536U 00055A 03020.66852292 .00000283 00000-0 17908-3 0 1732 2 26536 98.8991 329.1712 0011048 31.7636 328.4200 14.11888160120070 1 26536U 00055A 03021.02285524 .00000135 00000-0 98331-4 0 1748 2 26536 98.8997 329.5229 0011084 30.8026 329.3738 14.11887414120129 1 26536U 00055A 03021.80238780 .00000085 00000-0 70731-4 0 1755 2 26536 98.9001 330.2967 0011122 28.3978 331.7788 14.11887450120239 1 26536U 00055A 03022.51105326 .00000005 00000-0 26884-4 0 1766 2 26536 98.9003 330.9999 0011085 26.6024 333.5709 14.11887135120338 1 26536U 00055A 03022.93625244 .00000043 00000-0 47738-4 0 1772 2 26536 98.9003 331.4217 0011125 25.1805 334.9913 14.11887391120395 1 26536U 00055A 03023.50319273 .00000263 00000-0 14403-3 0 1774 2 26536 98.8993 331.9846 0010928 23.5519 336.6637 14.11888733120471 1 26536U 00055A 03023.64491715 .00000024 00000-0 37543-4 0 1788 2 26536 98.9002 332.1247 0011102 23.2012 336.9647 14.11887391120496 1 26536U 00055A 03024.07011636 .00000119 00000-0 89158-4 0 1791 2 26536 98.9001 332.5467 0011054 21.9216 338.2462 14.11888047120556 1 26536U 00055A 03024.77878002 .00000285 00000-0 18002-3 0 1801 2 26536 98.9001 333.2498 0011030 19.9875 340.1755 14.11889204120654 1 26536U 00055A 03025.55830932 .00000356 00000-0 21927-3 0 1818 2 26536 98.8997 334.0234 0011000 17.7039 342.4514 14.11890150120761 1 26536U 00055A 03025.91264109 .00000356 00000-0 21927-3 0 1826 2 26536 98.8997 334.3749 0011000 16.7029 343.4503 14.11890433120812 1 26536U 00055A 03026.69216933 .00000540 00000-0 31999-3 0 1830 2 26536 98.8990 335.1486 0010908 14.6886 345.4592 14.11892190120920 1 26536U 00055A 03027.82602835 .00000473 00000-0 28327-3 0 1843 2 26536 98.8992 336.2742 0010708 11.6721 348.4670 14.11893203121086 1 26536U 00055A 03028.60556725 .00000405 00000-0 22189-3 0 1852 2 26536 98.8998 337.0474 0010785 9.7134 350.4714 14.11893154121193 1 26536U 00055A 03028.81816603 .00000396 00000-0 21696-3 0 1861 2 26536 98.9003 337.2588 0010759 9.0497 351.1335 14.11893205121223 1 26536U 00055A 03028.95988854 .00000301 00000-0 18875-3 0 1876 2 26536 98.8994 337.3995 0010586 8.7367 351.3982 14.11893304121246 1 26536U 00055A 03029.66855068 .00000156 00000-0 10958-3 0 1877 2 26536 98.8994 338.1026 0010600 6.7828 353.3448 14.11892902121340 1 26536U 00055A 03030.80241149 -.00000017 00000-0 15025-4 0 1883 2 26536 98.8994 339.2277 0010658 3.7132 356.4103 14.11892375121502 1 26536U 00055A 03031.58194079 -.00000042 00000-0 12246-5 0 1890 2 26536 98.8992 340.0008 0010674 1.5943 358.5260 14.11892218121611 1 26536U 00055A 03031.93627207 -.00000048 00000-0 -19377-5 0 1904 2 26536 98.8994 340.3527 0010781 0.7472 359.3715 14.11892327121669 1 26536U 00055A 03032.64493454 -.00000048 00000-0 -19377-5 0 1919 2 26536 98.8994 341.0557 0010781 358.7455 1.3687 14.11892322121765 1 26536U 00055A 03034.55832330 -.00000048 00000-0 -19377-5 0 1933 2 26536 98.9002 342.9540 0010459 353.0099 7.0979 14.11892210122036 1 26536U 00055A 03034.55832330 -.00000048 00000-0 -19377-5 0 1944 2 26536 98.9002 342.9540 0010459 353.0099 7.0979 14.11892210122036 1 26536U 00055A 03035.55044986 -.00004605 00000-0 -24974-2 0 1957 2 26536 98.9016 343.9400 0010215 350.3920 9.7328 14.11890667122176 1 26536U 00055A 03035.90477657 .00000551 00000-0 32552-3 0 1968 2 26536 98.9009 344.2908 0010370 349.0782 11.0326 14.11897499122228 1 26536U 00055A 03036.68429901 .00000551 00000-0 32552-3 0 1985 2 26536 98.9009 345.0642 0010370 346.8761 13.2139 14.11898425122332 1 26536U 00055A 03037.03862870 .00000513 00000-0 30487-3 0 1973 2 26536 98.9007 345.4155 0010120 346.1122 13.9774 14.11898685122385 1 26536U 00055A 03037.81815439 .00000282 00000-0 17884-3 0 1988 2 26536 98.9017 346.1891 0009986 343.4959 16.5876 14.11898191122493 1 26536U 00055A 03038.95201141 -.00000029 00000-0 86137-5 0 1993 2 26536 98.9018 347.3143 0010051 340.2331 19.8447 14.11897058122650 1 26536U 00055A 03038.95201141 -.00000029 00000-0 86137-5 0 2017 2 26536 98.9018 347.3143 0010051 340.2331 19.8447 14.11897058122650 1 26536U 00055A 03039.30634156 -.00000045 00000-0 -29238-6 0 2001 2 26536 98.9019 347.6662 0010027 339.3160 20.7612 14.11897118122700 1 26536U 00055A 03040.51106371 -.00004370 00000-0 -23685-2 0 2011 2 26536 98.9008 348.8626 0010214 336.6914 23.3760 14.11892544122875 1 26536U 00055A 03040.86539598 .00000180 00000-0 12287-3 0 2021 2 26536 98.9015 349.2131 0010052 334.7642 25.3202 14.11898352122928 1 26536U 00055A 03041.99924840 .00000206 00000-0 13710-3 0 2036 2 26536 98.9016 350.3391 0010213 331.4349 28.6288 14.11898953123082 1 26536U 00055A 03042.77877261 .00000388 00000-0 23653-3 0 2057 2 26536 98.9012 351.1125 0010269 329.4013 30.6581 14.11900395123193 1 26536U 00055A 03043.91262503 .00000602 00000-0 35387-3 0 2079 2 26536 98.9005 352.2377 0010319 326.3098 33.7443 14.11902589123357 1 26536U 00055A 03044.62128179 .00000613 00000-0 35949-3 0 2063 2 26536 98.9012 352.9413 0010346 324.3152 35.7318 14.11903458123452 1 26536U 00055A 03045.75513293 .00000467 00000-0 27970-3 0 2076 2 26536 98.9013 354.0667 0010274 320.9503 39.0898 14.11904039123613 1 26536U 00055A 03045.75513293 .00000467 00000-0 27970-3 0 2087 2 26536 98.9013 354.0667 0010274 320.9503 39.0898 14.11904039123613 1 26536U 00055A 03046.88898425 .00000313 00000-0 19534-3 0 2116 2 26536 98.9018 355.1925 0010276 317.5855 42.4505 14.11904332123777 1 26536U 00055A 03047.59764114 .00000228 00000-0 14888-3 0 2103 2 26536 98.9021 355.8959 0010211 315.2904 44.7425 14.11904304123870 1 26536U 00055A 03048.73149241 -.00000014 00000-0 16820-4 0 2112 2 26536 98.9030 357.0211 0010041 311.7392 48.2878 14.11903466124036 1 26536U 00055A 03049.86534425 .00000007 00000-0 28270-4 0 2123 2 26536 98.9028 358.1462 0009975 308.4939 51.5337 14.11903835124191 1 26536U 00055A 03050.57400076 .00000113 00000-0 86347-4 0 2135 2 26536 98.9032 358.8498 0009981 306.5667 53.4594 14.11904580124291 1 26536U 00055A 03051.77871615 .00000267 00000-0 17025-3 0 2157 2 26536 98.9037 0.0455 0009962 303.1718 56.8495 14.11905750124460 1 26536U 00055A 03052.91256559 .00000336 00000-0 20821-3 0 2197 2 26536 98.9031 1.1712 0009918 299.7431 60.2777 14.11906967124626 1 26536U 00055A 03053.62122019 .00000363 00000-0 22279-3 0 2187 2 26536 98.9029 1.8749 0009848 297.0958 62.9214 14.11907746124729 1 26536U 00055A 03054.75506688 .00000491 00000-0 29277-3 0 2198 2 26536 98.9031 3.0007 0009889 294.0830 65.9281 14.11909413124881 1 26536U 00055A 03055.46372185 .00000383 00000-0 23382-3 0 2203 2 26536 98.9031 3.7043 0009868 291.8726 68.1382 14.11909532124984 1 26536U 00055A 03055.88891470 .00000135 00000-0 98070-4 0 2215 2 26536 98.9026 4.1270 0009830 290.9744 69.0320 14.11908629125040 1 26536U 00055A 03056.59757068 .00000104 00000-0 81059-4 0 2235 2 26536 98.9024 4.8302 0009821 288.9630 71.0476 14.11908746125148 1 26536U 00055A 03057.73141909 -.00000009 00000-0 19340-4 0 2243 2 26536 98.9031 5.9551 0009780 286.0509 73.9585 14.11908395125302 1 26536U 00055A 03058.86526750 -.00000091 00000-0 -25582-4 0 2257 2 26536 98.9027 7.0806 0009845 283.5746 76.4316 14.11908009125469 1 26536U 00055A 03059.64478840 .00000016 00000-0 33245-4 0 2261 2 26536 98.9025 7.8541 0009832 281.2548 78.7530 14.11908476125575 1 26536U 00055A 03060.77863511 .00000159 00000-0 11110-3 0 2286 2 26536 98.9025 8.9793 0009830 277.2505 82.7562 14.11909625125737 1 26536U 00055A 03061.48728799 .00000361 00000-0 22207-3 0 2298 2 26536 98.9034 9.6816 0009825 274.2853 85.7200 14.11911140125836 1 26536U 00055A 03061.91248013 .00000493 00000-0 29400-3 0 2302 2 26536 98.9027 10.1037 0009833 272.0380 87.9700 14.11912121125895 1 26536U 00055A 03062.62113241 .00000439 00000-0 26430-3 0 2305 2 26536 98.9032 10.8077 0009844 269.7615 90.2403 14.11912484125998 1 26536U 00055A 03063.75497975 .00000549 00000-0 32486-3 0 2321 2 26536 98.9049 11.9342 0009821 266.4499 93.5699 14.11914288126158 1 26536U 00055A 03064.46362891 .00000549 00000-0 32486-3 0 2340 2 26536 98.9049 12.6376 0009821 264.4486 95.5566 14.11915128126257 1 26536U 00055A 03064.88881999 .00000246 00000-0 15881-3 0 2356 2 26536 98.9065 13.0605 0009776 262.3484 97.6479 14.11913624126311 1 26536U 00055A 03065.59747461 .00000148 00000-0 10526-3 0 2352 2 26536 98.9071 13.7644 0009776 260.3680 99.6362 14.11913403126413 1 26536U 00055A 03066.37699345 .00000050 00000-0 51444-4 0 2364 2 26536 98.9063 14.5394 0009729 258.8073 101.2018 14.11913455126528 1 26536U 00055A 03066.73131960 .00000072 00000-0 63606-4 0 2376 2 26536 98.9066 14.8913 0009720 257.6749 102.3329 14.11913530126575 1 26536U 00055A 03067.43997246 .00000099 00000-0 78471-4 0 2376 2 26536 98.9061 15.5950 0009673 255.6997 104.3110 14.11913925126678 1 26536U 00055A 03067.86516382 .00000256 00000-0 16410-3 0 2392 2 26536 98.9061 16.0169 0009696 254.7276 105.2854 14.11914852126733 1 26536U 00055A 03068.21948930 .00000371 00000-0 22701-3 0 2398 2 26536 98.9061 16.3686 0009714 253.8006 106.2112 14.11915575126788 1 26536U 00055A 03068.64468003 .00000150 00000-0 10642-3 0 2401 2 26536 98.9055 16.7900 0009741 251.5901 108.4166 14.11914682126841 1 26536U 00055A 03069.42419802 .00000198 00000-0 13283-3 0 2407 2 26536 98.9051 17.5644 0009783 248.6176 111.3973 14.11915435126956 1 26536U 00055A 03069.77852357 .00000329 00000-0 20406-3 0 2424 2 26536 98.9050 17.9160 0009784 247.7846 112.2316 14.11916325127004 1 26536U 00055A 03070.13284876 .00000424 00000-0 25650-3 0 2423 2 26536 98.9048 18.2677 0009805 247.0703 112.9458 14.11917131127052 1 26536U 00055A 03070.91236384 .00000545 00000-0 32239-3 0 2447 2 26536 98.9046 19.0415 0009776 244.8218 115.1940 14.11918540127160 1 26536U 00055A 03071.26668903 .00000545 00000-0 32239-3 0 2431 2 26536 98.9046 19.3932 0009776 243.8212 116.1955 14.11918957127215 1 26536U 00055A 03071.69187912 .00000609 00000-0 35729-3 0 2443 2 26536 98.9042 19.8154 0009814 242.0951 117.9245 14.11919779127276 1 26536U 00055A 03072.40052826 .00000575 00000-0 33902-3 0 2441 2 26536 98.9044 20.5195 0009876 239.6347 120.3847 14.11920555127372 1 26536U 00055A 03072.82571794 .00000538 00000-0 31865-3 0 2453 2 26536 98.9044 20.9417 0009864 238.4675 121.5520 14.11920846127432 1 26536U 00055A 03073.53436790 .00000385 00000-0 23511-3 0 2479 2 26536 98.9046 21.6462 0009838 236.3664 123.6563 14.11920861127536 1 26536U 00055A 03073.95955760 .00000402 00000-0 24420-3 0 2489 2 26536 98.9050 22.0681 0009875 234.9378 125.0872 14.11921274127590 1 26536U 00055A 03074.31388207 .00000370 00000-0 22683-3 0 2489 2 26536 98.9049 22.4199 0009876 233.9702 126.0547 14.11921407127641 1 26536U 00055A 03074.66820677 .00000248 00000-0 15969-3 0 2493 2 26536 98.9052 22.7717 0009897 232.9901 127.0326 14.11920876127697 1 26536U 00055A 03075.44772271 .00000080 00000-0 68243-4 0 2494 2 26536 98.9051 23.5461 0009838 230.6741 129.3566 14.11920462127808 1 26536U 00055A 03075.80204739 .00000019 00000-0 34834-4 0 2517 2 26536 98.9056 23.8980 0009825 229.6967 130.3335 14.11920257127859 1 26536U 00055A 03076.58156262 .00000080 00000-0 68031-4 0 2514 2 26536 98.9063 24.6721 0009827 226.9267 133.1113 14.11920700127964 1 26536U 00055A 03076.86502184 .00000085 00000-0 71026-4 0 2527 2 26536 98.9066 24.9535 0009811 226.2794 133.7567 14.11920819128000 1 26536U 00055A 03077.29021150 .00000095 00000-0 76463-4 0 2525 2 26536 98.9066 25.3756 0009834 224.8812 135.1568 14.11920973128064 1 26536U 00055A 03077.71540108 .00000146 00000-0 10430-3 0 2530 2 26536 98.9071 25.7983 0009821 223.5094 136.5300 14.11921217128128 1 26536U 00055A 03078.42405027 .00000165 00000-0 11435-3 0 2536 2 26536 98.9073 26.5018 0009851 221.4042 138.6383 14.11921585128224 1 26536U 00055A 03078.77837483 .00000165 00000-0 11435-3 0 2551 2 26536 98.9073 26.8536 0009851 220.4036 139.6404 14.11921733128279 1 26536U 00055A 03079.13269936 .00000165 00000-0 11435-3 0 2554 2 26536 98.9073 27.2055 0009851 219.4031 140.6425 14.11921880128327 1 26536U 00055A 03079.91221247 .00000350 00000-0 21556-3 0 2576 2 26536 98.9071 27.9793 0009947 216.5773 143.4760 14.11923466128435 1 26536U 00055A 03080.26653579 .00000433 00000-0 26096-3 0 2568 2 26536 98.9072 28.3311 0009996 215.2395 144.8142 14.11924244128486 1 26536U 00055A 03080.69172395 .00000443 00000-0 26677-3 0 2585 2 26536 98.9065 28.7533 0010023 213.8184 146.2334 14.11924527128541 1 26536U 00055A 03081.40037093 .00000568 00000-0 33477-3 0 2584 2 26536 98.9072 29.4579 0010094 211.8743 148.1815 14.11925925128643 1 26536U 00055A 03081.82555917 .00000447 00000-0 26870-3 0 2596 2 26536 98.9069 29.8800 0010101 210.7993 149.2562 14.11925796128708 1 26536U 00055A 03082.17988319 .00000429 00000-0 25902-3 0 2608 2 26536 98.9076 30.2324 0010096 209.6758 150.3833 14.11926003128753 1 26536U 00055A 03082.95939585 .00000175 00000-0 12009-3 0 2629 2 26536 98.9077 31.0066 0010073 207.6376 152.4244 14.11925293128866 1 26536U 00055A 03083.31371988 .00000125 00000-0 92881-4 0 2618 2 26536 98.9077 31.3586 0010071 206.6033 153.4619 14.11925257128916 1 26536U 00055A 03083.66804367 .00000037 00000-0 44671-4 0 2636 2 26536 98.9080 31.7106 0010077 205.6637 154.4008 14.11924794128960 1 26536U 00055A 03084.44755685 -.00000027 00000-0 95691-5 0 2630 2 26536 98.9079 32.4852 0010014 203.4774 156.5945 14.11924691129075 1 26536U 00055A 03084.80188064 -.00000054 00000-0 -50120-5 0 2641 2 26536 98.9078 32.8371 0009969 202.5724 157.4996 14.11924525129124 1 26536U 00055A 03085.15620482 -.00000082 00000-0 -20354-4 0 2641 2 26536 98.9076 33.1888 0009950 201.5373 158.5372 14.11924370129171 1 26536U 00055A 03085.93571771 -.00000078 00000-0 -18186-4 0 2660 2 26536 98.9078 33.9632 0009940 199.2049 160.8753 14.11924385129287 1 26536U 00055A 03086.29004159 -.00000039 00000-0 28752-5 0 2657 2 26536 98.9076 34.3149 0009971 198.0877 161.9956 14.11924627129335 1 26536U 00055A 03086.71522998 -.00000012 00000-0 17728-4 0 2673 2 26536 98.9071 34.7367 0009979 196.8429 163.2408 14.11924689129394 1 26536U 00055A 03087.42387707 .00000097 00000-0 77310-4 0 2674 2 26536 98.9067 35.4399 0010093 194.6865 165.4028 14.11925504129491 1 26536U 00055A 03087.84906522 .00000209 00000-0 13882-3 0 2681 2 26536 98.9066 35.8621 0010111 193.5795 166.5133 14.11926238129554 1 26536U 00055A 03088.20338818 .00000255 00000-0 16392-3 0 2689 2 26536 98.9063 36.2139 0010180 192.5074 167.5858 14.11926634129606 1 26536U 00055A 03088.62857601 .00000371 00000-0 22742-3 0 2697 2 26536 98.9062 36.6360 0010202 191.0648 169.0319 14.11927465129669 1 26536U 00055A 03089.40808528 .00000552 00000-0 32599-3 0 2690 2 26536 98.9067 37.4104 0010349 188.9261 171.1744 14.11929322129779 1 26536U 00055A 03089.76240766 .00000584 00000-0 34365-3 0 2714 2 26536 98.9066 37.7624 0010338 187.9529 172.1473 14.11929784129820 1 26536U 00055A 03090.47105285 .00000538 00000-0 31837-3 0 2710 2 26536 98.9065 38.4664 0010345 186.3097 173.7945 14.11930432129926 1 26536U 00055A 03090.89623978 .00000430 00000-0 25917-3 0 2724 2 26536 98.9067 38.8885 0010382 184.9821 175.1221 14.11930288129985 1 26536U 00055A 03091.25056281 .00000426 00000-0 25702-3 0 2729 2 26536 98.9069 39.2404 0010411 183.9062 176.2032 14.11930621130039 1 26536U 00055A 03091.60488516 .00000335 00000-0 20756-3 0 2732 2 26536 98.9076 39.5929 0010465 182.8959 177.2137 14.11930427130080 1 26536U 00055A 03092.38439482 .00000198 00000-0 13247-3 0 2730 2 26536 98.9079 40.3676 0010511 180.7616 179.3536 14.11930438130191 1 26536U 00055A 03092.73871737 .00000146 00000-0 10420-3 0 2757 2 26536 98.9081 40.7194 0010541 179.6391 180.4770 14.11930236130248 1 26536U 00055A 03093.09304027 .00000117 00000-0 88154-4 0 2758 2 26536 98.9084 41.0717 0010480 178.5660 181.5535 14.11930240130296 1 26536U 00055A 03093.87255005 .00000074 00000-0 64721-4 0 2773 2 26536 98.9088 41.8462 0010473 176.1982 183.9268 14.11930284130408 1 26536U 00055A 03094.22687261 .00000089 00000-0 72990-4 0 2768 2 26536 98.9088 42.1981 0010498 175.2226 184.9052 14.11930445130452 1 26536U 00055A 03094.65205946 .00000052 00000-0 52551-4 0 2773 2 26536 98.9093 42.6205 0010554 174.0736 186.0550 14.11930258130513 1 26536U 00055A 03095.36070468 .00000056 00000-0 55079-4 0 2773 2 26536 98.9099 43.3248 0010654 171.9128 188.2244 14.11930614130617 1 26536U 00055A 03095.92762002 .00000215 00000-0 14197-3 0 2780 2 26536 98.9096 43.8881 0010683 170.5174 189.6237 14.11931545130699 1 26536U 00055A 03096.28194149 .00000301 00000-0 18861-3 0 2789 2 26536 98.9094 44.2400 0010758 169.5266 190.6157 14.11932225130747 1 26536U 00055A 03096.63626298 .00000361 00000-0 22161-3 0 2798 2 26536 98.9090 44.5916 0010682 168.3604 191.7809 14.11932679130791 1 26536U 00055A 03097.34490585 .00000468 00000-0 27987-3 0 2794 2 26536 98.9091 45.2954 0010722 166.6336 193.5129 14.11934067130899 1 26536U 00055A 03097.77009149 .00000547 00000-0 32349-3 0 2812 2 26536 98.9090 45.7176 0010718 165.4483 194.7001 14.11934791130957 1 26536U 00055A 03098.47873397 .00000547 00000-0 32349-3 0 2814 2 26536 98.9090 46.4214 0010718 163.4475 196.7048 14.11935628131052 1 26536U 00055A 03098.90391929 .00000495 00000-0 29487-3 0 2831 2 26536 98.9086 46.8441 0010751 162.1751 197.9787 14.11935843131112 1 26536U 00055A 03099.25824060 .00000517 00000-0 30678-3 0 2836 2 26536 98.9088 47.1961 0010770 161.1014 199.0569 14.11936409131162 1 26536U 00055A 03099.68342548 .00000445 00000-0 26766-3 0 2843 2 26536 98.9092 47.6187 0010775 159.9502 200.2070 14.11936375131225 1 26536U 00055A 03100.39206787 .00000418 00000-0 25294-3 0 2843 2 26536 98.9090 48.3227 0010713 157.7915 202.3722 14.11936961131321 1 26536U 00055A 03100.81725278 .00000288 00000-0 18164-3 0 2855 2 26536 98.9091 48.7454 0010727 156.6250 203.5379 14.11936598131386 1 26536U 00055A 03101.52589544 .00000152 00000-0 10721-3 0 2859 2 26536 98.9100 49.4501 0010829 154.6987 205.4703 14.11936245131488 1 26536U 00055A 03101.95108085 .00000035 00000-0 43330-4 0 2867 2 26536 98.9097 49.8727 0010821 153.2783 206.8923 14.11935850131545 1 26536U 00055A 03102.30540241 .00000035 00000-0 43330-4 0 2861 2 26536 98.9097 50.2246 0010821 152.2777 207.8973 14.11935906131592 1 26536U 00055A 03102.65972346 -.00000046 00000-0 -10084-5 0 2870 2 26536 98.9098 50.5767 0010847 151.3526 208.8220 14.11935428131645 1 26536U 00055A 03103.01404510 -.00000046 00000-0 -10084-5 0 2874 2 26536 98.9098 50.9286 0010847 150.3520 209.8268 14.11935426131694 1 26536U 00055A 03103.79355167 -.00000046 00000-0 -10084-5 0 2883 2 26536 98.9098 51.7028 0010847 148.1507 212.0322 14.11935424131805 1 26536U 00055A 03104.14787284 -.00000046 00000-0 -10084-5 0 2882 2 26536 98.9098 52.0547 0010847 147.1502 213.0346 14.11935422131859 1 26536U 00055A 03104.57305823 -.00000046 00000-0 -10084-5 0 2895 2 26536 98.9098 52.4770 0010847 145.9495 214.2375 14.11935421131919 1 26536U 00055A 03104.57305823 -.00000046 00000-0 -10084-5 0 2907 2 26536 98.9098 52.4770 0010847 145.9495 214.2375 14.11935421131919 1 26536U 00055A 03106.13207129 .00000289 00000-0 18239-3 0 2917 2 26536 98.9100 54.0258 0011091 142.2302 217.9814 14.11937806132133 1 26536U 00055A 03106.48638856 .00000325 00000-0 20202-3 0 2925 2 26536 98.9101 54.3778 0011140 141.2436 218.9548 14.11938267132188 1 26536U 00055A 03106.91157280 .00000475 00000-0 28416-3 0 2932 2 26536 98.9101 54.8001 0011137 140.3037 219.8987 14.11939361132245 1 26536U 00055A 03107.26589219 .00000506 00000-0 30100-3 0 2930 2 26536 98.9102 55.1521 0011148 139.3330 220.8685 14.11939913132298 1 26536U 00055A 03107.62021197 .00000483 00000-0 28837-3 0 2945 2 26536 98.9098 55.5040 0011137 138.2300 221.9697 14.11939988132348 1 26536U 00055A 03108.39971637 .00000467 00000-0 27939-3 0 2947 2 26536 98.9103 56.2790 0011137 135.9739 224.2330 14.11940775132453 1 26536U 00055A 03108.75403590 .00000381 00000-0 23238-3 0 2959 2 26536 98.9105 56.6311 0011199 135.1395 225.0660 14.11940580132501 1 26536U 00055A 03109.53353987 .00000243 00000-0 15721-3 0 2955 2 26536 98.9113 57.4062 0011230 133.2469 226.9625 14.11940475132615 1 26536U 00055A 03109.88786000 .00000116 00000-0 87753-4 0 2975 2 26536 98.9115 57.7584 0011251 132.1292 228.0813 14.11940065132666 1 26536U 00055A 03110.24218038 .00000095 00000-0 76238-4 0 2970 2 26536 98.9116 58.1104 0011285 131.2130 229.0014 14.11940082132717 1 26536U 00055A 03110.59650032 -.00000023 00000-0 11750-4 0 2983 2 26536 98.9118 58.4627 0011277 130.2971 229.9156 14.11939439132760 1 26536U 00055A 03111.37600507 -.00000023 00000-0 11750-4 0 2982 2 26536 98.9118 59.2371 0011277 128.0960 232.1230 14.11939472132876 1 26536U 00055A 03111.80118912 -.00000170 00000-0 -68798-4 0 2993 2 26536 98.9121 59.6598 0011310 126.7977 233.4201 14.11938707132935 1 26536U 00055A 03112.08464596 -.00000133 00000-0 -48232-4 0 2996 2 26536 98.9119 59.9416 0011306 126.0486 234.1756 14.11938955132979 1 26536U 00055A 03112.86414955 .00000031 00000-0 41318-4 0 3013 2 26536 98.9123 60.7164 0011416 124.5566 235.6721 14.11939757133080 1 26536U 00055A 03113.21846878 .00000084 00000-0 70192-4 0 3005 2 26536 98.9120 61.0683 0011416 123.6443 236.5828 14.11940054133137 1 26536U 00055A 03113.64365243 .00000084 00000-0 70192-4 0 3015 2 26536 98.9120 61.4907 0011416 122.4437 237.7840 14.11940163133194 1 26536U 00055A 03114.35229154 .00000269 00000-0 17141-3 0 3013 2 26536 98.9111 62.1943 0011358 120.2845 239.9479 14.11941519133295 1 26536U 00055A 03114.77747435 .00000341 00000-0 21048-3 0 3029 2 26536 98.9108 62.6163 0011346 119.1097 241.1221 14.11942117133355 1 26536U 00055A 03115.48611269 .00000415 00000-0 25089-3 0 3024 2 26536 98.9107 63.3205 0011379 117.6036 242.6326 14.11943139133459 1 26536U 00055A 03115.91129484 .00000522 00000-0 30954-3 0 3032 2 26536 98.9105 63.7428 0011335 116.0882 244.1469 14.11944051133518 1 26536U 00055A 03116.26561339 .00000542 00000-0 32070-3 0 3033 2 26536 98.9104 64.0947 0011347 115.2456 244.9904 14.11944609133564 1 26536U 00055A 03116.61993180 .00000461 00000-0 27600-3 0 3049 2 26536 98.9100 64.4463 0011270 113.9049 246.3267 14.11944423133613 1 26536U 00055A 03117.39943281 .00000530 00000-0 31381-3 0 3040 2 26536 98.9102 65.2211 0011247 111.8647 248.3732 14.11945818133720 1 26536U 00055A 03117.75375091 .00000490 00000-0 29208-3 0 3060 2 26536 98.9100 65.5729 0011269 110.9360 249.3000 14.11945909133776 1 26536U 00055A 03118.46238737 .00000454 00000-0 27240-3 0 3068 2 26536 98.9107 66.2778 0011315 109.5575 250.6813 14.11946525133872 1 26536U 00055A 03118.88756921 .00000322 00000-0 20019-3 0 3076 2 26536 98.9107 66.7006 0011355 108.3949 251.8418 14.11946138133938 1 26536U 00055A 03119.24188822 .00000293 00000-0 18464-3 0 3074 2 26536 98.9109 67.0527 0011377 107.6279 252.6133 14.11946241133987 1 26536U 00055A 03119.59620646 .00000181 00000-0 12306-3 0 3083 2 26536 98.9114 67.4050 0011352 106.7381 253.5015 14.11945831134035 1 26536U 00055A 03120.37570724 .00000011 00000-0 30092-4 0 3087 2 26536 98.9115 68.1797 0011339 104.5707 255.6710 14.11945406134140 1 26536U 00055A 03120.73002588 -.00000093 00000-0 -26856-4 0 3103 2 26536 98.9119 68.5319 0011390 104.0281 256.2130 14.11944768134195 1 26536U 00055A 03121.08434497 -.00000093 00000-0 -26856-4 0 3100 2 26536 98.9119 68.8839 0011390 103.0276 257.2168 14.11944734134249 1 26536U 00055A 03121.86384544 -.00000110 00000-0 -36009-4 0 3126 2 26536 98.9122 69.6591 0011524 102.0961 258.1502 14.11944593134353 1 26536U 00055A 03122.28902774 .00000008 00000-0 28650-4 0 3110 2 26536 98.9122 70.0817 0011537 101.4481 258.8039 14.11945340134414 1 26536U 00055A 03122.64334510 .00000059 00000-0 56615-4 0 3126 2 26536 98.9126 70.4342 0011544 100.3958 259.8512 14.11945513134464 1 26536U 00055A 03123.35198103 .00000197 00000-0 13211-3 0 3128 2 26536 98.9124 71.1385 0011528 98.3622 261.8881 14.11946709134564 1 26536U 00055A 03123.70629855 .00000291 00000-0 18327-3 0 3139 2 26536 98.9124 71.4906 0011537 97.0742 263.1744 14.11947264134611 1 26536U 00055A 03124.06061636 .00000464 00000-0 27804-3 0 3138 2 26536 98.9123 71.8426 0011502 96.5707 263.6822 14.11948422134662 1 26536U 00055A 03124.84011385 .00000464 00000-0 27804-3 0 3152 2 26536 98.9123 72.6170 0011502 94.3696 265.8789 14.11949213134777 1 26536U 00055A 03125.19443117 .00000564 00000-0 33241-3 0 3145 2 26536 98.9125 72.9695 0011544 93.4133 266.8381 14.11950153134826 1 26536U 00055A 03125.61961118 .00000491 00000-0 29256-3 0 3159 2 26536 98.9128 73.3926 0011532 92.2725 267.9740 14.11950125134888 1 26536U 00055A 03126.39910931 .00000407 00000-0 24683-3 0 3158 2 26536 98.9126 74.1680 0011535 89.8402 270.4092 14.11950621134991 1 26536U 00055A 03126.75342622 .00000378 00000-0 23075-3 0 3177 2 26536 98.9127 74.5201 0011518 88.8086 271.4391 14.11950694135043 1 26536U 00055A 03127.46206067 .00000244 00000-0 15746-3 0 3176 2 26536 98.9130 75.2248 0011535 86.5204 273.7275 14.11950540135149 1 26536U 00055A 03127.81637784 .00000220 00000-0 14473-3 0 3180 2 26536 98.9130 75.5771 0011541 85.5062 274.7421 14.11950621135190 1 26536U 00055A 03128.17069486 .00000189 00000-0 12744-3 0 3181 2 26536 98.9129 75.9291 0011558 84.5484 275.6997 14.11950634135242 1 26536U 00055A 03128.59587532 .00000086 00000-0 71088-4 0 3198 2 26536 98.9133 76.3520 0011563 83.6882 276.5582 14.11950196135305 1 26536U 00055A 03128.80847479 .00000381 00000-0 20848-3 0 3185 2 26536 98.9138 76.5632 0011525 82.3977 277.8988 14.11951744135332 1 26536U 00055A 03129.37537361 -.00000049 00000-0 -26171-5 0 3195 2 26536 98.9131 77.1267 0011582 81.2478 278.9999 14.11949729135416 1 26536U 00055A 03130.86350559 -.00000070 00000-0 -14186-4 0 3212 2 26536 98.9129 78.6053 0011560 77.7644 282.4823 14.11949582135629 1 26536U 00055A 03131.21782270 -.00000049 00000-0 -27512-5 0 3215 2 26536 98.9128 78.9572 0011554 76.8492 283.3972 14.11949665135673 1 26536U 00055A 03131.64300314 -.00000027 00000-0 97256-5 0 3236 2 26536 98.9129 79.3798 0011573 75.6485 284.5968 14.11949718135733 1 26536U 00055A 03132.35163679 .00000057 00000-0 55622-4 0 3238 2 26536 98.9129 80.0838 0011549 73.9707 286.2753 14.11950416135837 1 26536U 00055A 03132.77681671 .00000296 00000-0 18601-3 0 3242 2 26536 98.9126 80.5061 0011558 72.4308 287.8167 14.11951746135897 1 26536U 00055A 03132.91854250 .00000363 00000-0 22258-3 0 3241 2 26536 98.9125 80.6470 0011526 72.2476 287.9973 14.11952210135916 1 26536U 00055A 03133.91062780 .00000592 00000-0 34760-3 0 3257 2 26536 98.9126 81.6333 0011462 69.6656 290.5805 14.11954232136051 1 26536U 00055A 03134.26494249 .00000592 00000-0 34771-3 0 3257 2 26536 98.9126 81.9854 0011460 68.6896 291.5497 14.11954679136104 1 26536U 00055A 03134.69012137 .00000522 00000-0 30927-3 0 3270 2 26536 98.9131 82.4084 0011464 67.4745 292.7597 14.11954569136163 1 26536U 00055A 03135.39875382 .00000382 00000-0 23318-3 0 3277 2 26536 98.9132 83.1135 0011481 64.9059 295.3292 14.11954714136262 1 26536U 00055A 03135.82393288 .00000335 00000-0 20707-3 0 3283 2 26536 98.9134 83.5357 0011393 64.6594 295.5762 14.11954834136321 1 26536U 00055A 03136.10738532 .00000219 00000-0 14409-3 0 3283 2 26536 98.9139 83.8177 0011389 63.9937 296.2384 14.11954429136369 1 26536U 00055A 03136.95774465 -.00000089 00000-0 -24322-4 0 3307 2 26536 98.9136 84.6636 0011360 61.7824 298.4471 14.11953042136489 1 26536U 00055A 03137.31206125 -.00000053 00000-0 -47325-5 0 3299 2 26536 98.9139 85.0160 0011355 61.1702 299.0628 14.11953307136533 1 26536U 00055A 03137.66637693 -.00000068 00000-0 -12875-4 0 3315 2 26536 98.9148 85.3689 0011379 60.0759 300.1527 14.11953104136580 1 26536U 00055A 03138.44587296 -.00000152 00000-0 -58652-4 0 3312 2 26536 98.9147 86.1440 0011374 58.1307 302.0973 14.11952654136692 1 26536U 00055A 03138.80018912 -.00000107 00000-0 -34199-4 0 3338 2 26536 98.9149 86.4962 0011287 57.6102 302.6187 14.11952882136748 1 26536U 00055A 03139.57968421 -.00000057 00000-0 -71050-5 0 3334 2 26536 98.9152 87.2711 0011275 55.5785 304.6454 14.11952895136859 1 26536U 00055A 03139.93400029 -.00000027 00000-0 95226-5 0 3347 2 26536 98.9151 87.6232 0011244 54.6913 305.5322 14.11953078136903 1 26536U 00055A 03140.28831611 .00000030 00000-0 40715-4 0 3347 2 26536 98.9150 87.9752 0011230 53.8494 306.3733 14.11953450136956 1 26536U 00055A 03140.64263172 .00000067 00000-0 60859-4 0 3350 2 26536 98.9152 88.3277 0011251 52.6074 307.6111 14.11953553137004 1 26536U 00055A 03141.28040015 .00000207 00000-0 13731-3 0 3352 2 26536 98.9148 88.9611 0011367 49.8921 310.3259 14.11954675137093 1 26536U 00055A 03141.63471550 .00000192 00000-0 12893-3 0 3376 2 26536 98.9143 89.3136 0011433 48.5658 311.6471 14.11954627137145 1 26536U 00055A 03142.34334594 .00000420 00000-0 25405-3 0 3378 2 26536 98.9146 90.0180 0011303 46.9914 313.2227 14.11956412137241 1 26536U 00055A 03142.76852365 .00000465 00000-0 27842-3 0 3382 2 26536 98.9145 90.4406 0011290 45.8410 314.3689 14.11956954137301 1 26536U 00055A 03143.47715302 .00000572 00000-0 33693-3 0 3380 2 26536 98.9144 91.1450 0011261 43.9657 316.2415 14.11958324137409 1 26536U 00055A 03143.83146755 .00000553 00000-0 32619-3 0 3409 2 26536 98.9140 91.4971 0011246 43.0593 317.1451 14.11958640137455 1 26536U 00055A 03144.18578223 .00000536 00000-0 31729-3 0 3409 2 26536 98.9141 91.8493 0011215 42.1909 318.0117 14.11958916137507 1 26536U 00055A 03144.61095975 .00000447 00000-0 26878-3 0 3416 2 26536 98.9143 92.2720 0011195 41.0938 319.1051 14.11958852137568 1 26536U 00055A 03145.39045243 .00000300 00000-0 18800-3 0 3419 2 26536 98.9141 93.0470 0011206 38.8767 321.3198 14.11958839137678 1 26536U 00055A 03145.74476717 .00000225 00000-0 14723-3 0 3430 2 26536 98.9141 93.3992 0011198 38.0942 322.0993 14.11958571137727 1 26536U 00055A 03146.52426012 .00000009 00000-0 29152-4 0 3433 2 26536 98.9144 94.1747 0011164 36.2272 323.9635 14.11957869137830 1 26536U 00055A 03146.52426012 .00000009 00000-0 29152-4 0 3444 2 26536 98.9144 94.1747 0011164 36.2272 323.9635 14.11957869137830 1 26536U 00055A 03147.23289039 -.00000045 00000-0 -57360-6 0 3456 2 26536 98.9142 94.8790 0011195 34.2489 325.9408 14.11957690137938 1 26536U 00055A 03148.36669761 -.00000116 00000-0 -39259-4 0 3460 2 26536 98.9141 96.0058 0011087 31.4124 328.7706 14.11957394138094 1 26536U 00055A 03148.79187552 -.00000025 00000-0 10761-4 0 3476 2 26536 98.9145 96.4286 0011099 30.2083 329.9743 14.11957799138159 1 26536U 00055A 03149.07532704 .00000007 00000-0 28058-4 0 3478 2 26536 98.9144 96.7103 0011075 29.3875 330.7929 14.11957994138198 1 26536U 00055A 03149.92568214 .00000115 00000-0 86966-4 0 3503 2 26536 98.9145 97.5554 0011022 27.2059 332.9719 14.11958694138314 1 26536U 00055A 03150.27999606 .00000164 00000-0 11380-3 0 3495 2 26536 98.9145 97.9074 0010989 26.3801 333.7945 14.11959130138362 1 26536U 00055A 03150.70517302 .00000270 00000-0 17164-3 0 3519 2 26536 98.9146 98.3303 0011049 24.9549 335.2164 14.11959782138424 1 26536U 00055A 03151.41380114 .00000378 00000-0 23103-3 0 3516 2 26536 98.9153 99.0356 0011038 23.2713 336.8985 14.11960927138523 1 26536U 00055A 03151.83897726 .00000577 00000-0 33978-3 0 3527 2 26536 98.9151 99.4582 0011021 21.8424 338.3262 14.11962362138587 1 26536U 00055A 03152.12242720 .00000623 00000-0 36496-3 0 3528 2 26536 98.9154 99.7401 0011014 20.9184 339.2437 14.11962829138625 1 26536U 00055A 03152.90191707 .00000518 00000-0 30715-3 0 3545 2 26536 98.9153 100.5153 0010993 18.8958 341.2613 14.11963223138739 1 26536U 00055A 03153.32709318 .00000522 00000-0 30933-3 0 3531 2 26536 98.9157 100.9381 0010977 17.6842 342.4714 14.11963739138794 1 26536U 00055A 03153.68140629 .00000412 00000-0 24947-3 0 3552 2 26536 98.9159 101.2905 0010950 16.7475 343.4013 14.11963325138845 1 26536U 00055A 03154.39003425 .00000217 00000-0 14294-3 0 3550 2 26536 98.9160 101.9953 0010980 14.7145 345.4341 14.11963040138943 1 26536U 00055A 03154.81521038 .00000084 00000-0 70340-4 0 3560 2 26536 98.9159 102.4182 0010990 13.6997 346.4437 14.11962552139007 1 26536U 00055A 03155.16952456 .00000019 00000-0 34746-4 0 3569 2 26536 98.9154 102.7707 0011012 12.7107 347.4326 14.11962326139059 1 26536U 00055A 03155.94901485 -.00000025 00000-0 10417-4 0 3580 2 26536 98.9157 103.5457 0010933 10.7230 349.4172 14.11962162139160 1 26536U 00055A 03156.30332849 -.00000025 00000-0 10417-4 0 3572 2 26536 98.9157 103.8979 0010933 9.7226 350.4155 14.11962176139219 1 26536U 00055A 03156.65764212 -.00000107 00000-0 -34049-4 0 3594 2 26536 98.9155 104.2496 0010823 8.7301 351.4034 14.11961601139261 1 26536U 00055A 03157.43713316 -.00000241 00000-0 -10748-3 0 3598 2 26536 98.9154 105.0244 0010833 6.5654 353.5647 14.11960846139373 1 26536U 00055A 03157.79144735 -.00000241 00000-0 -10748-3 0 3602 2 26536 98.9154 105.3765 0010833 5.5650 354.5640 14.11960707139425 1 26536U 00055A 03158.14576137 -.00000071 00000-0 -14467-4 0 3601 2 26536 98.9153 105.7290 0010773 4.3357 355.7976 14.11961719139479 1 26536U 00055A 03158.71266200 .00000060 00000-0 57052-4 0 3615 2 26536 98.9155 106.2929 0010787 2.8652 357.2604 14.11962373139553 1 26536U 00055A 03159.42128758 .00000227 00000-0 14814-3 0 3612 2 26536 98.9156 106.9974 0010673 0.7597 359.3603 14.11963629139658 1 26536U 00055A 03159.84646318 .00000373 00000-0 22795-3 0 3625 2 26536 98.9154 107.4201 0010633 359.4281 0.6905 14.11964574139713 1 26536U 00055A 03160.12991302 .00000440 00000-0 26467-3 0 3629 2 26536 98.9152 107.7019 0010553 358.5247 1.5903 14.11965064139751 1 26536U 00055A 03160.55508823 .00000440 00000-0 26467-3 0 3639 2 26536 98.9152 108.1245 0010553 357.3240 2.7873 14.11965475139819 1 26536U 00055A 03161.33457623 .00000409 00000-0 24799-3 0 3638 2 26536 98.9151 108.8999 0010405 354.9513 5.1572 14.11966204139929 1 26536U 00055A 03161.75975096 .00000666 00000-0 38846-3 0 3647 2 26536 98.9153 109.3232 0010132 352.9378 7.1752 14.11968121139989 1 26536U 00055A 03162.46837303 .00000481 00000-0 28738-3 0 3648 2 26536 98.9153 110.0281 0009996 350.9578 9.1329 14.11967639140086 1 26536U 00055A 03162.89354934 .00000251 00000-0 16155-3 0 3655 2 26536 98.9152 110.4509 0009928 350.0177 10.0730 14.11966693140146 1 26536U 00055A 03163.24786316 .00000223 00000-0 14595-3 0 3653 2 26536 98.9152 110.8030 0009907 349.0281 11.0672 14.11966797140196 1 26536U 00055A 03163.60217567 .00000054 00000-0 53627-4 0 3663 2 26536 98.9155 111.1555 0009923 347.8906 12.1993 14.11966075140246 1 26536U 00055A 03164.38166490 -.00000165 00000-0 -65653-4 0 3664 2 26536 98.9155 111.9308 0009975 345.8141 14.2744 14.11965190140352 1 26536U 00055A 03164.73597792 -.00000165 00000-0 -65653-4 0 3677 2 26536 98.9155 112.2829 0009975 344.8138 15.2733 14.11965105140400 1 26536U 00055A 03165.51546647 -.00000165 00000-0 -65653-4 0 3677 2 26536 98.9155 113.0576 0009975 342.6129 17.4699 14.11964918140512 1 26536U 00055A 03165.86977948 -.00000165 00000-0 -65653-4 0 3699 2 26536 98.9155 113.4098 0009975 341.6125 18.4684 14.11964833140566 1 26536U 00055A 03166.22409251 -.00000165 00000-0 -65653-4 0 3697 2 26536 98.9155 113.7619 0009975 340.6121 19.4669 14.11964748140618 1 26536U 00055A 03166.64926818 .00000103 00000-0 80719-4 0 3708 2 26536 98.9152 114.1847 0009693 339.3411 20.7445 14.11966105140679 1 26536U 00055A 03167.42875606 -.00000083 00000-0 -21081-4 0 3709 2 26536 98.9154 114.9601 0010108 338.3202 21.7549 14.11965426140780 1 26536U 00055A 03167.78306877 .00000062 00000-0 58073-4 0 3725 2 26536 98.9154 115.3123 0010148 337.1602 22.9150 14.11966184140838 1 26536U 00055A 03168.13738080 .00000142 00000-0 10190-3 0 3726 2 26536 98.9154 115.6647 0010153 336.0346 24.0374 14.11966707140888 1 26536U 00055A 03168.56255541 .00000216 00000-0 14228-3 0 3738 2 26536 98.9155 116.0874 0010053 334.7833 25.2870 14.11967289140948 1 26536U 00055A 03169.34204081 .00000376 00000-0 22974-3 0 3732 2 26536 98.9156 116.8627 0010009 332.0670 27.9967 14.11968794141055 1 26536U 00055A 03169.69635276 .00000466 00000-0 27922-3 0 3743 2 26536 98.9157 117.2152 0010030 331.2477 28.8139 14.11969409141105 1 26536U 00055A 03170.47583875 .00000482 00000-0 28763-3 0 3740 2 26536 98.9161 117.9913 0010117 328.7022 31.3567 14.11970382141213 1 26536U 00055A 03170.83014996 .00000406 00000-0 24644-3 0 3754 2 26536 98.9160 118.3436 0010129 327.8961 32.1571 14.11970357141263 1 26536U 00055A 03171.18446201 .00000374 00000-0 22868-3 0 3751 2 26536 98.9163 118.6959 0010098 326.8330 33.2203 14.11970502141315 1 26536U 00055A 03171.60963601 .00000291 00000-0 18351-3 0 3767 2 26536 98.9167 119.1189 0010048 325.4604 34.5898 14.11970367141373 1 26536U 00055A 03172.31825946 .00000238 00000-0 15439-3 0 3760 2 26536 98.9164 119.8234 0009959 323.0335 37.0154 14.11970678141471 1 26536U 00055A 03172.74343326 .00000165 00000-0 11443-3 0 3775 2 26536 98.9164 120.2461 0009981 321.9712 38.0719 14.11970350141532 1 26536U 00055A 03173.45205751 .00000040 00000-0 46396-4 0 3771 2 26536 98.9161 120.9507 0009963 319.9753 40.0673 14.11970025141631 1 26536U 00055A 03173.87723185 -.00000072 00000-0 -14889-4 0 3806 2 26536 98.9160 121.3734 0009944 318.9381 41.1018 14.11969553141697 1 26536U 00055A 03174.23154424 -.00000116 00000-0 -38781-4 0 3807 2 26536 98.9159 121.7255 0009914 317.8415 42.1986 14.11969314141746 1 26536U 00055A 03174.58585636 -.00000117 00000-0 -39634-4 0 3818 2 26536 98.9160 122.0775 0009878 316.6513 43.3881 14.11969223141795 1 26536U 00055A 03175.36534280 -.00000072 00000-0 -14864-4 0 3812 2 26536 98.9159 122.8523 0009826 314.1547 45.8851 14.11969557141902 1 26536U 00055A 03175.71965405 -.00000043 00000-0 10588-5 0 3826 2 26536 98.9157 123.2045 0009850 313.2608 46.7731 14.11969556141950 1 26536U 00055A 03176.07396618 -.00000043 00000-0 10588-5 0 3820 2 26536 98.9157 123.5567 0009850 312.2604 47.7731 14.11969558142007 1 26536U 00055A 03177.20776444 .00000135 00000-0 97894-4 0 3831 2 26536 98.9151 124.6841 0009851 309.0573 50.9781 14.11970757142169 1 26536U 00055A 03177.91638622 .00000370 00000-0 22641-3 0 3865 2 26536 98.9152 125.3886 0009777 306.2484 53.7838 14.11972337142265 1 26536U 00055A 03178.27069638 .00000399 00000-0 24247-3 0 3854 2 26536 98.9153 125.7408 0009766 305.2046 54.8221 14.11972824142316 1 26536U 00055A 03178.69586953 .00000414 00000-0 25029-3 0 3862 2 26536 98.9154 126.1638 0009766 304.1448 55.8783 14.11973132142374 1 26536U 00055A 03179.40449184 .00000445 00000-0 26743-3 0 3864 2 26536 98.9156 126.8690 0009807 302.0967 57.9269 14.11974003142471 1 26536U 00055A 03179.82966452 .00000445 00000-0 26743-3 0 3873 2 26536 98.9156 127.2916 0009807 300.8960 59.1246 14.11974418142532 1 26536U 00055A 03180.53828594 .00000250 00000-0 16077-3 0 3870 2 26536 98.9161 127.9968 0009746 298.1385 61.8753 14.11973876142635 1 26536U 00055A 03180.89259781 .00000141 00000-0 10156-3 0 3887 2 26536 98.9162 128.3492 0009731 297.2626 62.7533 14.11973557142682 1 26536U 00055A 03181.24690925 .00000106 00000-0 82136-4 0 3885 2 26536 98.9163 128.7014 0009710 296.1687 63.8484 14.11973561142737 1 26536U 00055A 03181.67208249 .00000033 00000-0 42584-4 0 3899 2 26536 98.9164 129.1244 0009731 295.1319 64.8820 14.11973238142794 1 26536U 00055A 03182.38070515 .00000033 00000-0 42584-4 0 3891 2 26536 98.9164 129.8288 0009731 293.1311 66.8834 14.11973348142899 1 26536U 00055A 03182.80587847 -.00000022 00000-0 12571-4 0 3903 2 26536 98.9166 130.2526 0009722 291.8291 68.1839 14.11973114142952 1 26536U 00055A 03183.16018977 -.00000113 00000-0 -37619-4 0 3908 2 26536 98.9165 130.6049 0009695 290.8678 69.1435 14.11972663143000 1 26536U 00055A 03183.93967505 -.00000166 00000-0 -66149-4 0 3923 2 26536 98.9171 131.3798 0009649 288.4638 71.5473 14.11972251143118 1 26536U 00055A 03184.29398669 -.00000139 00000-0 -51792-4 0 3919 2 26536 98.9169 131.7319 0009614 287.1536 72.8599 14.11972409143166 1 26536U 00055A 03184.64829773 -.00000081 00000-0 -20104-4 0 3934 2 26536 98.9168 132.0842 0009607 286.1615 73.8499 14.11972526143215 1 26536U 00055A 03185.07347137 -.00000043 00000-0 95389-6 0 3937 2 26536 98.9167 132.5070 0009621 284.8610 75.1523 14.11972865143273 1 26536U 00055A 03185.85295566 .00000116 00000-0 87476-4 0 3948 2 26536 98.9160 133.2829 0009654 282.2163 77.7984 14.11973871143386 1 26536U 00055A 03186.27812776 .00000154 00000-0 10841-3 0 3957 2 26536 98.9162 133.7055 0009653 280.9043 79.1052 14.11974214143446 1 26536U 00055A 03186.63243852 .00000271 00000-0 17219-3 0 3967 2 26536 98.9164 134.0582 0009660 280.2790 79.7307 14.11974915143499 1 26536U 00055A 03187.34105866 .00000419 00000-0 25323-3 0 3967 2 26536 98.9163 134.7625 0009704 277.8741 82.1339 14.11976387143599 1 26536U 00055A 03187.76623092 .00000442 00000-0 26592-3 0 3975 2 26536 98.9162 135.1852 0009702 276.8556 83.1500 14.11976767143656 1 26536U 00055A 03188.47485170 .00000442 00000-0 26592-3 0 3977 2 26536 98.9162 135.8896 0009702 274.8547 85.1517 14.11977456143756 1 26536U 00055A 03188.90002388 .00000442 00000-0 26592-3 0 4039 2 26536 98.9162 136.3122 0009702 273.6542 86.3520 14.11977869143818 1 26536U 00055A 03189.25433394 .00000442 00000-0 26592-3 0 4033 2 26536 98.9162 136.6644 0009702 272.6537 87.3523 14.11978213143866 1 26536U 00055A 03189.60864392 .00000311 00000-0 19454-3 0 4076 2 26536 98.9173 137.0175 0009826 271.3140 88.6853 14.11977512143912 1 26536U 00055A 03190.38812738 .00000324 00000-0 20138-3 0 4075 2 26536 98.9174 137.7930 0009805 269.1148 90.8915 14.11978219144021 1 26536U 00055A 03190.74243707 .00000230 00000-0 14983-3 0 4087 2 26536 98.9177 138.1452 0009778 267.7085 92.2930 14.11977766144075 1 26536U 00055A 03191.09674794 .00000202 00000-0 13456-3 0 4083 2 26536 98.9175 138.4977 0009772 266.7329 93.2711 14.11977745144123 1 26536U 00055A 03191.80537873 .00000244 00000-0 13333-3 0 4101 2 26536 98.9173 139.2032 0009674 264.1304 95.9234 14.11977740144223 1 26536U 00055A 03191.80537880 .00000242 00000-0 13215-3 0 4094 2 26536 98.9174 139.2033 0009664 264.3002 95.7536 14.11977715144226 1 26536U 00055A 03191.87623159 -.00000120 00000-0 -41027-4 0 4108 2 26536 98.9173 139.2729 0009727 263.7011 96.3031 14.11976278144231 1 26536U 00055A 03192.23054258 -.00000131 00000-0 -47248-4 0 4111 2 26536 98.9172 139.6249 0009713 262.6445 97.3624 14.11976213144288 1 26536U 00055A 03192.65571528 -.00000131 00000-0 -47248-4 0 4155 2 26536 98.9172 140.0476 0009713 261.4440 98.5631 14.11976140144345 1 26536U 00055A 03193.36433653 -.00000084 00000-0 -21524-4 0 4156 2 26536 98.9166 140.7528 0009588 259.1469 100.8630 14.11976278144447 1 26536U 00055A 03193.78950912 -.00000028 00000-0 93040-5 0 4176 2 26536 98.9166 141.1757 0009595 257.7640 102.2463 14.11976458144506 1 26536U 00055A 03194.49812996 -.00000001 00000-0 23883-4 0 4172 2 26536 98.9163 141.8802 0009621 255.4557 104.5548 14.11976602144604 1 26536U 00055A 03194.92330260 .00000152 00000-0 10720-3 0 4192 2 26536 98.9162 142.3032 0009644 253.9589 106.0561 14.11977481144661 1 26536U 00055A 03195.27761210 .00000232 00000-0 15098-3 0 4196 2 26536 98.9159 142.6551 0009628 252.5931 107.4211 14.11978126144714 1 26536U 00055A 03195.63192179 .00000236 00000-0 15354-3 0 4209 2 26536 98.9162 143.0079 0009635 251.8017 108.2103 14.11978290144769 1 26536U 00055A 03196.34054203 .00000302 00000-0 18938-3 0 4208 2 26536 98.9165 143.7123 0009580 251.0335 108.9807 14.11979319144865 1 26536U 00055A 03196.76571368 .00000376 00000-0 22971-3 0 4225 2 26536 98.9162 144.1354 0009572 249.6561 110.3582 14.11979829144928 1 26536U 00055A 03197.47433258 .00000380 00000-0 23218-3 0 4229 2 26536 98.9167 144.8406 0009594 247.4323 112.5822 14.11980511145027 1 26536U 00055A 03197.89950427 .00000315 00000-0 19638-3 0 4260 2 26536 98.9166 145.2631 0009610 245.9537 114.0617 14.11980518145082 1 26536U 00055A 03198.25381408 .00000347 00000-0 21374-3 0 4263 2 26536 98.9170 145.6161 0009615 244.8904 115.1287 14.11981023145133 1 26536U 00055A 03198.60812319 .00000210 00000-0 13903-3 0 4271 2 26536 98.9173 145.9685 0009632 243.2690 116.7458 14.11980408145182 1 26536U 00055A 03199.38760531 .00000167 00000-0 11550-3 0 4272 2 26536 98.9177 146.7441 0009601 240.9965 119.0253 14.11980635145293 1 26536U 00055A 03199.74191473 .00000096 00000-0 76983-4 0 4290 2 26536 98.9179 147.0958 0009599 239.9600 120.0589 14.11980247145341 1 26536U 00055A 03200.09622504 .00000035 00000-0 43381-4 0 4294 2 26536 98.9181 147.4484 0009521 239.3036 120.7180 14.11980085145393 1 26536U 00055A 03200.87570724 -.00000105 00000-0 -32763-4 0 4311 2 26536 98.9183 148.2233 0009519 236.8028 123.2224 14.11979463145504 1 26536U 00055A 03201.23001730 -.00000127 00000-0 -45293-4 0 4303 2 26536 98.9182 148.5751 0009483 235.7779 124.2490 14.11979360145559 1 26536U 00055A 03201.65518934 -.00000057 00000-0 -70572-5 0 4310 2 26536 98.9180 148.9974 0009506 234.2773 125.7521 14.11979548145618 1 26536U 00055A 03202.36380913 -.00000073 00000-0 -15562-4 0 4318 2 26536 98.9178 149.7015 0009489 232.2198 127.8128 14.11979595145718 1 26536U 00055A 03202.71811879 -.00000006 00000-0 20940-4 0 4330 2 26536 98.9174 150.0538 0009462 231.4155 128.6165 14.11979800145768 1 26536U 00055A 03203.49760006 .00000073 00000-0 64174-4 0 4331 2 26536 98.9177 150.8284 0009473 229.2313 130.8053 14.11980488145877 1 26536U 00055A 03203.92277138 .00000263 00000-0 16825-3 0 4349 2 26536 98.9173 151.2510 0009537 228.1768 131.8638 14.11981612145930 1 26536U 00055A 03204.27707982 .00000317 00000-0 19754-3 0 4347 2 26536 98.9170 151.6028 0009570 226.9323 133.1072 14.11982219145981 1 26536U 00055A 03204.70225045 .00000393 00000-0 23901-3 0 4354 2 26536 98.9171 152.0261 0009598 225.2809 134.7581 14.11982727146041 1 26536U 00055A 03205.41086824 .00000410 00000-0 24818-3 0 4351 2 26536 98.9164 152.7318 0009694 223.0801 136.9624 14.11983583146142 1 26536U 00055A 03205.76517694 .00000396 00000-0 24046-3 0 4360 2 26536 98.9150 153.0842 0009721 221.8636 138.1774 14.11983649146194 1 26536U 00055A 03206.61551862 .00000279 00000-0 17676-3 0 4383 2 26536 98.9152 153.9315 0009742 219.3818 140.6626 14.11983737146313 1 26536U 00055A 03207.39499864 .00000255 00000-0 16384-3 0 4381 2 26536 98.9157 154.7079 0009729 216.8875 143.1648 14.11984319146425 1 26536U 00055A 03207.74930705 .00000136 00000-0 98720-4 0 4400 2 26536 98.9164 155.0603 0009756 215.6004 144.4477 14.11983704146477 1 26536U 00055A 03208.45792586 .00000114 00000-0 86699-4 0 4400 2 26536 98.9170 155.7663 0009717 213.2961 146.7600 14.11983841146576 1 26536U 00055A 03208.88309656 .00000014 00000-0 32218-4 0 4428 2 26536 98.9173 156.1891 0009679 211.9988 148.0574 14.11983478146636 1 26536U 00055A 03209.23740605 .00000061 00000-0 57584-4 0 4426 2 26536 98.9180 156.5424 0009652 210.8528 149.2086 14.11983785146686 1 26536U 00055A 03209.73343840 -.00000012 00000-0 17763-4 0 4467 2 26536 98.9186 157.0368 0009640 209.2383 150.8220 14.11983341146757 1 26536U 00055A 03210.44205723 -.00000135 00000-0 -49587-4 0 4460 2 26536 98.9184 157.7415 0009687 207.1673 152.8986 14.11982808146854 1 26536U 00055A 03210.86722842 -.00000193 00000-0 -81011-4 0 4475 2 26536 98.9185 158.1644 0009680 205.8832 154.1838 14.11982381146913 1 26536U 00055A 03211.64670935 -.00000057 00000-0 -68831-5 0 4483 2 26536 98.9186 158.9396 0009770 203.1740 156.9036 14.11982937147025 1 26536U 00055A 03212.35532645 -.00000051 00000-0 -35125-5 0 4492 2 26536 98.9184 159.6437 0009832 201.2135 158.8641 14.11983186147124 1 26536U 00055A 03212.78050595 .00000038 00000-0 20659-4 0 4496 2 26536 98.9180 160.0664 0009913 200.6557 159.4695 14.11983610147183 1 26536U 00055A 03213.27653002 .00000203 00000-0 13514-3 0 4500 2 26536 98.9183 160.5587 0009995 198.5503 161.5395 14.11984747147252 1 26536U 00055A 03213.70169874 .00000360 00000-0 22117-3 0 4511 2 26536 98.9181 160.9816 0010020 197.1371 162.9480 14.11985624147310 1 26536U 00055A 03214.41031471 .00000484 00000-0 28871-3 0 4522 2 26536 98.9177 161.6854 0010100 195.2827 164.8068 14.11987111147416 1 26536U 00055A 03214.83548392 .00000531 00000-0 31455-3 0 4539 2 26536 98.9174 162.1085 0010092 193.9514 166.1377 14.11987707147478 1 26536U 00055A 03215.54410048 .00000290 00000-0 18273-3 0 4539 2 26536 98.9178 162.8135 0010126 191.8893 168.2007 14.11987044147578 1 26536U 00055A 03216.32357912 .00000281 00000-0 17784-3 0 4543 2 26536 98.9181 163.5887 0010236 189.5870 170.5128 14.11987584147686 1 26536U 00055A 03216.81960998 .00000281 00000-0 17784-3 0 4552 2 26536 98.9181 164.0819 0010236 188.1866 171.9140 14.11987907147753 1 26536U 00055A 03217.59908743 -.00000075 00000-0 -16455-4 0 4556 2 26536 98.9173 164.8585 0009858 187.4422 172.6438 14.11985890147869 1 26536U 00055A 03218.37856869 .00000089 00000-0 73187-4 0 4563 2 26536 98.9174 165.6341 0009871 185.1595 174.9500 14.11986954147979 1 26536U 00055A 03218.73287643 .00000089 00000-0 73187-4 0 4572 2 26536 98.9174 165.9863 0009871 184.1592 175.9499 14.11987049148028 1 26536U 00055A 03219.44149279 .00000082 00000-0 68888-4 0 4578 2 26536 98.9173 166.6910 0009951 182.1539 177.9563 14.11986917148124 1 26536U 00055A 03219.79580157 .00000018 00000-0 34304-4 0 4586 2 26536 98.9175 167.0431 0009985 181.1840 178.9292 14.11986597148179 1 26536U 00055A 03219.79581036 .00000146 00000-0 79851-4 0 4570 2 26536 98.9181 167.0439 0010329 180.1156 180.0488 14.11987279148176 1 26536U 00055A 03220.15011021 .00000003 00000-0 26142-4 0 4582 2 26536 98.9172 167.3955 0010061 180.1871 179.9301 14.11986565148223 1 26536U 00055A 03220.57528014 .00000003 00000-0 26142-4 0 4594 2 26536 98.9172 167.8182 0010061 178.9867 181.1327 14.11986605148284 1 26536U 00055A 03221.35475842 .00000003 00000-0 26142-4 0 4591 2 26536 98.9172 168.5930 0010061 176.7858 183.3379 14.11986680148395 1 26536U 00055A 03221.70906672 .00000189 00000-0 12776-3 0 4615 2 26536 98.9172 168.9451 0010221 174.5718 185.5587 14.11987575148441 1 26536U 00055A 03222.48854326 .00000335 00000-0 20750-3 0 4613 2 26536 98.9176 169.7203 0010325 172.4845 187.6499 14.11988812148554 1 26536U 00055A 03222.84285069 .00000420 00000-0 25349-3 0 4631 2 26536 98.9167 170.0730 0010332 171.6033 188.5330 14.11989507148604 1 26536U 00055A 03223.19715791 .00000423 00000-0 25525-3 0 4639 2 26536 98.9171 170.4252 0010361 170.5470 189.5897 14.11989819148657 1 26536U 00055A 03223.62232691 .00000497 00000-0 29575-3 0 4641 2 26536 98.9172 170.8482 0010358 169.2414 190.8996 14.11990607148715 1 26536U 00055A 03224.40180305 .00000396 00000-0 24041-3 0 4643 2 26536 98.9175 171.6241 0010408 167.1015 193.0431 14.11990850148821 1 26536U 00055A 03224.75611015 .00000306 00000-0 19166-3 0 4652 2 26536 98.9177 171.9768 0010412 166.0675 194.0751 14.11990521148871 1 26536U 00055A 03225.53558715 .00000192 00000-0 12890-3 0 4656 2 26536 98.9186 172.7526 0010449 163.6981 196.4519 14.11990420148983 1 26536U 00055A 03225.88989466 .00000092 00000-0 74636-4 0 4707 2 26536 98.9186 173.1052 0010466 162.6675 197.4840 14.11990104149034 1 26536U 00055A 03226.24420239 .00000051 00000-0 52043-4 0 4709 2 26536 98.9188 173.4577 0010499 161.5479 198.6070 14.11990028149085 1 26536U 00055A 03226.66937142 -.00000066 00000-0 -11977-4 0 4711 2 26536 98.9195 173.8810 0010503 160.3489 199.8051 14.11989324149147 1 26536U 00055A 03226.81110345 .00000285 00000-0 15599-3 0 4686 2 26536 98.9184 174.0213 0010582 160.0690 200.1377 14.11991111149169 1 26536U 00055A 03227.37798740 -.00000090 00000-0 -25123-4 0 4691 2 26536 98.9198 174.5858 0010539 158.1418 202.0213 14.11989313149242 1 26536U 00055A 03227.66143333 -.00000090 00000-0 -25123-4 0 4718 2 26536 98.9205 174.8681 0010581 157.1371 203.0250 14.11989074149282 1 26536U 00055A 03228.37004910 -.00000114 00000-0 -38070-4 0 4716 2 26536 98.9205 175.5731 0010574 155.0968 205.0726 14.11989056149388 1 26536U 00055A 03228.72435656 -.00000090 00000-0 -25041-4 0 4728 2 26536 98.9204 175.9254 0010666 154.1142 206.0569 14.11989084149430 1 26536U 00055A 03229.50383342 -.00000059 00000-0 -78728-5 0 4736 2 26536 98.9201 176.7002 0010645 151.7588 208.4168 14.11989186149547 1 26536U 00055A 03230.28331009 .00000137 00000-0 98963-4 0 4744 2 26536 98.9198 177.4746 0010692 149.6704 210.5154 14.11990426149653 1 26536U 00055A 03230.70847756 .00000214 00000-0 14091-3 0 4792 2 26536 98.9196 177.8976 0010691 148.3861 211.7958 14.11990880149715 1 26536U 00055A 03231.41709094 .00000323 00000-0 20087-3 0 4808 2 26536 98.9197 178.6021 0010673 146.6699 213.5146 14.11991954149819 1 26536U 00055A 03231.77139783 .00000410 00000-0 24816-3 0 4822 2 26536 98.9194 178.9547 0010710 145.8195 214.3685 14.11992612149860 1 26536U 00055A 03232.12570420 .00000461 00000-0 27578-3 0 4823 2 26536 98.9192 179.3071 0010720 144.8097 215.3798 14.11993238149913 1 26536U 00055A 03232.83431680 .00000496 00000-0 29523-3 0 4836 2 26536 98.9187 180.0121 0010766 142.6048 217.5872 14.11994150150018 1 26536U 00055A 03233.11776191 .00000547 00000-0 32271-3 0 4849 2 26536 98.9188 180.2942 0010842 142.1739 218.0207 14.11994618150050 1 26536U 00055A 03233.61379032 .00000547 00000-0 32271-3 0 4858 2 26536 98.9188 180.7874 0010842 140.7736 219.4223 14.11995203150122 1 26536U 00055A 03233.82638479 .00000293 00000-0 16036-3 0 4842 2 26536 98.9194 181.0007 0010859 140.4860 219.7582 14.11993534150153 1 26536U 00055A 03234.39326533 .00000291 00000-0 18300-3 0 4855 2 26536 98.9191 181.5635 0010881 138.7178 221.4825 14.11994404150235 1 26536U 00055A 03234.74757144 .00000174 00000-0 11921-3 0 4874 2 26536 98.9188 181.9160 0010869 137.9425 222.2560 14.11993982150280 1 26536U 00055A 03235.52704641 -.00000020 00000-0 13248-4 0 4871 2 26536 98.9192 182.6920 0010953 135.6311 224.5715 14.11993143150398 1 26536U 00055A 03235.88135348 -.00000135 00000-0 -49280-4 0 4921 2 26536 98.9194 183.0442 0010942 134.4157 225.7892 14.11992666150441 1 26536U 00055A 03236.23566055 -.00000124 00000-0 -43589-4 0 4928 2 26536 98.9196 183.3965 0010979 133.3317 226.8779 14.11992747150493 1 26536U 00055A 03236.66082840 -.00000097 00000-0 -28934-4 0 4960 2 26536 98.9197 183.8196 0011019 132.1477 228.0623 14.11992660150558 1 26536U 00055A 03237.44030328 -.00000100 00000-0 -30128-4 0 4964 2 26536 98.9197 184.5951 0011075 130.2477 229.9692 14.11992757150661 1 26536U 00055A 03237.79460941 -.00000037 00000-0 42416-5 0 4984 2 26536 98.9197 184.9474 0011066 129.2264 230.9903 14.11993045150711 1 26536U 00055A 03238.14891574 -.00000037 00000-0 42416-5 0 4984 2 26536 98.9197 185.2997 0011066 128.2261 231.9908 14.11993051150769 1 26536U 00055A 03239.21183540 .00000119 00000-0 89212-4 0 4995 2 26536 98.9201 186.3572 0011088 125.6792 234.5466 14.11993985150911 1 26536U 00055A 03240.34561306 .00000303 00000-0 18954-3 0 5014 2 26536 98.9207 187.4849 0011129 122.8115 237.4143 14.11995647151079 1 26536U 00055A 03240.77077980 .00000436 00000-0 26211-3 0 5024 2 26536 98.9201 187.9083 0011094 121.5849 238.6427 14.11996574151134 1 26536U 00055A 03240.77079023 .00000106 00000-0 58038-4 0 5010 2 26536 98.9204 187.9098 0011105 121.3195 238.9540 14.11994506151130 1 26536U 00055A 03241.47939060 .00000444 00000-0 26693-3 0 5021 2 26536 98.9202 188.6130 0011116 119.4956 240.7326 14.11997260151232 1 26536U 00055A 03241.90455707 .00000444 00000-0 26693-3 0 5075 2 26536 98.9202 189.0358 0011116 118.2953 241.9341 14.11997674151298 1 26536U 00055A 03242.25886236 .00000444 00000-0 26693-3 0 5079 2 26536 98.9202 189.3882 0011116 117.2951 242.9354 14.11998020151347 1 26536U 00055A 03242.68402859 .00000275 00000-0 17451-3 0 5086 2 26536 98.9213 189.8119 0011122 116.5715 243.6560 14.11997382151408 1 26536U 00055A 03243.39264047 .00000155 00000-0 10913-3 0 5083 2 26536 98.9216 190.5175 0011170 114.7428 245.4913 14.11997234151505 1 26536U 00055A 03243.81780684 .00000028 00000-0 39362-4 0 5102 2 26536 98.9221 190.9407 0011257 113.8029 246.4291 14.11996645151567 1 26536U 00055A 03244.17211305 .00000033 00000-0 42496-4 0 5109 2 26536 98.9221 191.2933 0011266 112.6147 247.6216 14.11996766151613 1 26536U 00055A 03244.59727966 -.00000012 00000-0 17532-4 0 5123 2 26536 98.9223 191.7165 0011320 111.6618 248.5744 14.11996481151676 1 26536U 00055A 03245.37675260 -.00000085 00000-0 -22322-4 0 5123 2 26536 98.9218 192.4921 0011354 109.2247 251.0162 14.11996269151785 1 26536U 00055A 03245.73105806 -.00000044 00000-0 41911-6 0 5140 2 26536 98.9216 192.8446 0011392 108.2516 251.9895 14.11996387151838 1 26536U 00055A 03245.73105806 -.00000044 00000-0 41911-6 0 5173 2 26536 98.9216 192.8446 0011392 108.2516 251.9895 14.11996387151838 1 26536U 00055A 03247.14828035 .00000014 00000-0 32132-4 0 5186 2 26536 98.9210 194.2545 0011420 104.1723 256.0735 14.11996782152036 1 26536U 00055A 03247.50258546 .00000028 00000-0 39730-4 0 5197 2 26536 98.9211 194.6071 0011448 103.2520 256.9929 14.11996864152080 1 26536U 00055A 03247.78603818 .00000099 00000-0 54183-4 0 5190 2 26536 98.9213 194.8905 0011308 102.7866 257.5048 14.11997412152126 1 26536U 00055A 03247.85689935 .00000087 00000-0 47640-4 0 5223 2 26536 98.9212 194.9610 0011318 102.6034 257.6881 14.11997325152136 1 26536U 00055A 03247.92775195 .00000103 00000-0 80685-4 0 5208 2 26536 98.9204 195.0299 0011418 102.0500 258.1978 14.11997425152140 1 26536U 00055A 03248.28205670 .00000125 00000-0 92280-4 0 5202 2 26536 98.9204 195.3820 0011429 101.3661 258.8814 14.11997750152197 1 26536U 00055A 03248.70722253 .00000327 00000-0 20276-3 0 5210 2 26536 98.9199 195.8047 0011418 99.9202 260.3284 14.11998855152250 1 26536U 00055A 03249.48669226 .00000377 00000-0 23008-3 0 5217 2 26536 98.9197 196.5797 0011406 97.8844 262.3623 14.11999753152363 1 26536U 00055A 03249.84099689 .00000390 00000-0 23708-3 0 5231 2 26536 98.9191 196.9330 0011402 96.7976 263.4497 14.12000145152410 1 26536U 00055A 03250.19530134 .00000478 00000-0 28551-3 0 5234 2 26536 98.9192 197.2854 0011404 96.1488 264.1003 14.12000869152469 1 26536U 00055A 03250.69132698 .00000438 00000-0 26338-3 0 5240 2 26536 98.9191 197.7789 0011462 95.0640 265.1828 14.12001121152538 1 26536U 00055A 03251.47079658 .00000374 00000-0 22821-3 0 5245 2 26536 98.9192 198.5549 0011493 93.4216 266.8263 14.12001440152644 1 26536U 00055A 03251.89596172 .00000160 00000-0 11164-3 0 5258 2 26536 98.9188 198.9781 0011489 92.2474 267.9961 14.12000583152700 1 26536U 00055A 03252.25026715 .00000174 00000-0 11927-3 0 5252 2 26536 98.9193 199.3311 0011531 91.3658 268.8848 14.12000925152751 1 26536U 00055A 03252.74629289 .00000132 00000-0 96595-4 0 5261 2 26536 98.9198 199.8254 0011534 89.9933 270.2545 14.12000830152823 1 26536U 00055A 03253.45490201 .00000067 00000-0 61080-4 0 5268 2 26536 98.9198 200.5309 0011601 87.8247 272.4246 14.12000766152925 1 26536U 00055A 03253.88006732 -.00000084 00000-0 -21476-4 0 5285 2 26536 98.9203 200.9536 0011628 86.8234 273.4234 14.12000039152989 1 26536U 00055A 03254.23437248 -.00000151 00000-0 -57987-4 0 5286 2 26536 98.9204 201.3061 0011640 85.8978 274.3510 14.11999661153037 1 26536U 00055A 03254.58867734 -.00000117 00000-0 -39585-4 0 5298 2 26536 98.9210 201.6592 0011662 85.1991 275.0506 14.11999573153088 1 26536U 00055A 03255.36814755 -.00000176 00000-0 -71781-4 0 5299 2 26536 98.9214 202.4345 0011680 83.1772 277.0733 14.11999326153194 1 26536U 00055A 03255.79331305 -.00000122 00000-0 -42530-4 0 5315 2 26536 98.9221 202.8578 0011749 82.4743 277.7783 14.11999577153257 1 26536U 00055A 03256.07675631 -.00000116 00000-0 -39050-4 0 5316 2 26536 98.9221 203.1397 0011739 81.7347 278.5162 14.11999608153290 1 26536U 00055A 03256.92708690 .00000114 00000-0 86765-4 0 5335 2 26536 98.9223 203.9855 0011697 79.2713 280.9819 14.12000742153414 1 26536U 00055A 03257.28139029 .00000202 00000-0 13470-3 0 5328 2 26536 98.9223 204.3379 0011689 78.5220 281.7288 14.12001355153461 1 26536U 00055A 03257.70655468 .00000325 00000-0 20147-3 0 5342 2 26536 98.9224 204.7606 0011726 77.5131 282.7359 14.12002043153523 1 26536U 00055A 03258.48602256 .00000314 00000-0 19563-3 0 5343 2 26536 98.9227 205.5358 0011661 75.8144 284.4321 14.12002654153630 1 26536U 00055A 03258.84032630 .00000336 00000-0 20791-3 0 5356 2 26536 98.9224 205.8888 0011652 74.6908 285.5559 14.12003076153682 1 26536U 00055A 03259.19462973 .00000439 00000-0 26394-3 0 5351 2 26536 98.9220 206.2430 0011505 74.0276 286.2225 14.12003912153738 1 26536U 00055A 03259.69065321 .00000390 00000-0 23727-3 0 5366 2 26536 98.9223 206.7366 0011510 72.7803 287.4608 14.12004021153809 1 26536U 00055A 03260.39926020 .00000362 00000-0 22165-3 0 5361 2 26536 98.9224 207.4422 0011512 70.9297 289.3121 14.12004529153905 1 26536U 00055A 03260.82442403 .00000287 00000-0 18090-3 0 5376 2 26536 98.9222 207.8653 0011486 69.8074 290.4321 14.12004498153969 1 26536U 00055A 03261.17872745 .00000186 00000-0 12557-3 0 5371 2 26536 98.9224 208.2179 0011506 68.8816 291.3555 14.12004133154017 1 26536U 00055A 03261.67475264 .00000079 00000-0 67207-4 0 5386 2 26536 98.9226 208.7116 0011487 67.7701 292.4661 14.12003692154080 1 26536U 00055A 03262.38336040 -.00000030 00000-0 81553-5 0 5382 2 26536 98.9223 209.4169 0011496 65.9180 294.3197 14.12003347154187 1 26536U 00055A 03262.73766382 -.00000058 00000-0 -71599-5 0 5398 2 26536 98.9223 209.7692 0011486 65.1941 295.0413 14.12003130154232 1 26536U 00055A 03263.09196760 -.00000157 00000-0 -61293-4 0 5394 2 26536 98.9227 210.1215 0011512 64.1805 296.0542 14.12002719154282 1 26536U 00055A 03263.94229627 -.00000046 00000-0 -76592-6 0 5417 2 26536 98.9228 210.9678 0011510 61.9670 298.2686 14.12003263154409 1 26536U 00055A 03264.29659935 -.00000036 00000-0 43973-5 0 5408 2 26536 98.9226 211.3201 0011500 61.1004 299.1325 14.12003346154453 1 26536U 00055A 03264.79262408 .00000051 00000-0 52171-4 0 5414 2 26536 98.9223 211.8134 0011491 59.4485 300.7826 14.12003725154526 1 26536U 00055A 03265.07606662 .00000126 00000-0 92881-4 0 5415 2 26536 98.9221 212.0955 0011459 58.7364 301.4942 14.12004106154565 1 26536U 00055A 03265.85553336 .00000107 00000-0 82727-4 0 5439 2 26536 98.9219 212.8707 0011431 56.9053 303.3221 14.12004396154674 1 26536U 00055A 03266.20983640 .00000194 00000-0 13041-3 0 5421 2 26536 98.9218 213.2232 0011388 56.1869 304.0406 14.12004941154724 1 26536U 00055A 03266.77672080 .00000305 00000-0 19100-3 0 5433 2 26536 98.9223 213.7875 0011352 54.5215 305.7047 14.12005837154809 1 26536U 00055A 03267.06016239 .00000417 00000-0 25201-3 0 5437 2 26536 98.9222 214.0696 0011313 53.7442 306.4800 14.12006610154842 1 26536U 00055A 03267.48532495 .00000421 00000-0 25391-3 0 5446 2 26536 98.9227 214.4931 0011302 52.8222 307.3984 14.12007019154901 1 26536U 00055A 03267.91048780 .00000421 00000-0 25391-3 0 5454 2 26536 98.9227 214.9161 0011302 51.6218 308.5967 14.12007414154962 1 26536U 00055A 03268.26479015 .00000589 00000-0 34598-3 0 5456 2 26536 98.9227 215.2685 0011230 50.7001 309.5210 14.12008657155016 1 26536U 00055A 03268.68995168 .00000534 00000-0 31582-3 0 5465 2 26536 98.9236 215.6926 0011232 49.3659 310.8466 14.12008767155079 1 26536U 00055A 03268.83168396 .00000257 00000-0 14014-3 0 5460 2 26536 98.9242 215.8352 0011442 48.3081 311.9539 14.12006956155095 1 26536U 00055A 03269.39855706 .00000331 00000-0 20483-3 0 5460 2 26536 98.9242 216.3992 0011205 47.9172 312.2953 14.12008348155174 1 26536U 00055A 03269.82371952 .00000244 00000-0 15729-3 0 5486 2 26536 98.9244 216.8221 0011135 47.2012 313.0083 14.12008220155233 1 26536U 00055A 03270.60318481 .00000045 00000-0 48826-4 0 5486 2 26536 98.9251 217.5981 0011094 45.2763 314.9290 14.12007522155343 1 26536U 00055A 03271.38265105 -.00000030 00000-0 79371-5 0 5492 2 26536 98.9245 218.3745 0011209 42.8687 317.3371 14.12007309155451 1 26536U 00055A 03271.73695313 -.00000023 00000-0 11554-4 0 5501 2 26536 98.9247 218.7272 0011207 42.0760 318.1259 14.12007228155504 1 26536U 00055A 03272.44555771 -.00000044 00000-0 38837-6 0 5501 2 26536 98.9253 219.4332 0011255 39.6686 320.5292 14.12007222155607 1 26536U 00055A 03272.44555771 -.00000044 00000-0 38837-6 0 5556 2 26536 98.9253 219.4332 0011255 39.6686 320.5292 14.12007222155607 1 26536U 00055A 03273.01666667 -.00000044 00000-0 38837-6 0 5568 2 26536 98.9241 219.9997 0011254 37.8404 343.8169 14.12006969155689 1 26536U 00055A 03273.01666667 -.00000044 00000-0 38837-6 0 5579 2 26536 98.9241 219.9997 0011254 37.8404 343.8169 14.12006969155689 1 26536U 00055A 03274.21707057 .00000062 00000-0 58387-4 0 5581 2 26536 98.9247 221.1952 0011257 34.8119 325.3864 14.12007980155854 1 26536U 00055A 03274.57137119 .00000097 00000-0 77389-4 0 5600 2 26536 98.9246 221.5477 0011268 33.7714 326.4177 14.12008211155903 1 26536U 00055A 03275.35083364 .00000359 00000-0 22028-3 0 5609 2 26536 98.9241 222.3239 0011209 31.2996 328.8840 14.12010188156015 1 26536U 00055A 03275.77599550 .00000414 00000-0 25013-3 0 5625 2 26536 98.9244 222.7473 0011179 30.1396 330.0423 14.12010730156071 1 26536U 00055A 03276.13029680 .00000446 00000-0 26786-3 0 5621 2 26536 98.9242 223.1003 0011138 29.2147 330.9646 14.12011117156123 1 26536U 00055A 03276.90975931 .00000462 00000-0 27631-3 0 5645 2 26536 98.9245 223.8762 0011099 27.2688 332.9064 14.12012012156232 1 26536U 00055A 03277.26406039 .00000523 00000-0 30956-3 0 5634 2 26536 98.9240 224.2291 0011099 26.3292 333.8452 14.12012706156286 1 26536U 00055A 03277.68922123 .00000438 00000-0 26358-3 0 5655 2 26536 98.9243 224.6526 0010999 25.5342 334.6355 14.12012671156348 1 26536U 00055A 03278.39782328 .00000438 00000-0 26358-3 0 5655 2 26536 98.9243 225.3576 0010999 23.5335 336.6338 14.12013354156444 1 26536U 00055A 03278.82298415 .00000261 00000-0 16703-3 0 5660 2 26536 98.9227 225.7807 0011044 22.2164 337.9431 14.12012723156509 1 26536U 00055A 03279.10642594 .00000211 00000-0 13960-3 0 5660 2 26536 98.9228 226.0628 0011074 21.4810 338.6804 14.12012572156545 1 26536U 00055A 03279.53158746 .00000178 00000-0 12154-3 0 5675 2 26536 98.9235 226.4867 0011051 20.3503 339.8098 14.12012541156605 1 26536U 00055A 03280.38191046 .00000016 00000-0 33030-4 0 5678 2 26536 98.9245 227.3332 0011091 18.1461 342.0111 14.12012225156729 1 26536U 00055A 03280.80708027 .00000311 00000-0 17000-3 0 5674 2 26536 98.9265 227.7576 0011087 16.5813 343.6189 14.12013474156788 1 26536U 00055A 03280.87793175 .00000044 00000-0 48168-4 0 5683 2 26536 98.9247 227.8266 0011030 16.8672 343.2868 14.12012381156796 1 26536U 00055A 03281.30309285 .00000037 00000-0 44329-4 0 5684 2 26536 98.9249 228.2497 0011025 15.6831 344.4678 14.12012407156855 1 26536U 00055A 03281.72825407 .00000029 00000-0 40206-4 0 5691 2 26536 98.9252 228.6730 0010958 14.6064 345.5411 14.12012271156917 1 26536U 00055A 03282.50771657 -.00000081 00000-0 -19674-4 0 5690 2 26536 98.9253 229.4490 0010936 12.2505 347.8922 14.12011860157028 1 26536U 00055A 03282.93287809 -.00000045 00000-0 -13713-6 0 5700 2 26536 98.9250 229.8721 0010928 11.0565 349.0863 14.12012136157081 1 26536U 00055A 03285.30401914 -.00000045 00000-0 -13713-6 0 5732 2 26536 98.9263 232.2337 0010708 4.7040 161.8456 14.12013245157416 1 26536U 00055A 03286.47588417 .00000419 00000-0 25288-3 0 5757 2 26536 98.9267 233.4014 0010741 1.3771 358.7614 14.12016649157588 1 26536U 00055A 03286.97190029 .00000295 00000-0 18521-3 0 5765 2 26536 98.9268 233.8952 0010756 0.1156 359.9985 14.12016430157654 1 26536U 00055A 03287.39706083 .00000267 00000-0 17003-3 0 5768 2 26536 98.9270 234.3187 0010708 358.9199 1.1954 14.12016652157716 1 26536U 00055A 03287.82222056 .00000181 00000-0 12309-3 0 5779 2 26536 98.9272 234.7421 0010705 357.9025 2.2078 14.12016457157775 1 26536U 00055A 03288.10566095 .00000084 00000-0 70381-4 0 5772 2 26536 98.9271 235.0246 0010751 357.3084 2.7998 14.12016043157815 1 26536U 00055A 03288.88512158 .00000014 00000-0 31926-4 0 5795 2 26536 98.9272 235.8004 0010758 355.3260 4.7796 14.12015941157923 1 26536U 00055A 03289.23942193 .00000013 00000-0 31588-4 0 5783 2 26536 98.9273 236.1531 0010759 354.3773 5.7273 14.12015967157976 1 26536U 00055A 03289.66458206 -.00000092 00000-0 -25826-4 0 5807 2 26536 98.9284 236.5776 0010840 352.9352 7.1627 14.12015249158031 1 26536U 00055A 03290.01888307 -.00000042 00000-0 16321-5 0 5802 2 26536 98.9280 236.9309 0010828 351.7624 8.3404 14.12015714158086 1 26536U 00055A 03290.94006264 .00000016 00000-0 33054-4 0 5821 2 26536 98.9274 237.8472 0010785 349.1772 10.9177 14.12016057158219 1 26536U 00055A 03291.29436247 .00000016 00000-0 33054-4 0 5817 2 26536 98.9274 238.1998 0010785 348.1771 11.9146 14.12016100158265 1 26536U 00055A 03292.49898198 .00000090 00000-0 73521-4 0 5834 2 26536 98.9275 239.3990 0010740 344.8176 15.2671 14.12016766158431 1 26536U 00055A 03292.85328186 .00000205 00000-0 13654-3 0 5859 2 26536 98.9272 239.7521 0010584 343.6524 16.4353 14.12017621158488 1 26536U 00055A 03293.27844049 .00000346 00000-0 21321-3 0 5853 2 26536 98.9272 240.1752 0010435 342.2349 17.8495 14.12018580158549 1 26536U 00055A 03293.63273915 .00000318 00000-0 19815-3 0 5866 2 26536 98.9275 240.5286 0010428 341.1832 18.8946 14.12018667158598 1 26536U 00055A 03294.05789856 .00000318 00000-0 19815-3 0 5869 2 26536 98.9275 240.9517 0010428 339.9829 20.0932 14.12018975158659 1 26536U 00055A 03294.83735505 .00000520 00000-0 30814-3 0 5886 2 26536 98.9264 241.7279 0010351 338.1528 21.9160 14.12020808158766 1 26536U 00055A 03295.19165471 .00000461 00000-0 27582-3 0 5876 2 26536 98.9276 242.0801 0010385 337.3004 22.7691 14.12020886158811 1 26536U 00055A 03295.61681364 .00000458 00000-0 27452-3 0 5891 2 26536 98.9281 242.5044 0010403 336.0962 23.9719 14.12021221158875 1 26536U 00055A 03296.04197226 .00000371 00000-0 22708-3 0 5891 2 26536 98.9277 242.9278 0010376 334.9420 25.1234 14.12021243158935 1 26536U 00055A 03296.89228976 .00000164 00000-0 11403-3 0 5914 2 26536 98.9281 243.7753 0010340 332.4018 27.6584 14.12020869159056 1 26536U 00055A 03297.31744882 .00000099 00000-0 78563-4 0 5908 2 26536 98.9285 244.1988 0010308 330.9883 29.0710 14.12020740159114 1 26536U 00055A 03297.67174783 .00000059 00000-0 56820-4 0 5913 2 26536 98.9290 244.5518 0010328 329.9316 30.1245 14.12020522159163 1 26536U 00055A 03298.38034623 .00000014 00000-0 32130-4 0 5919 2 26536 98.9292 245.2573 0010301 327.8861 32.1682 14.12020438159261 1 26536U 00055A 03299.65582224 -.00000074 00000-0 -16168-4 0 5938 2 26536 98.9299 246.5275 0010035 323.6847 36.3633 14.12020237159442 1 26536U 00055A 03300.01012154 -.00000074 00000-0 -16168-4 0 5942 2 26536 98.9299 246.8802 0010035 322.6847 37.3627 14.12020216159496 1 26536U 00055A 03300.36442066 -.00000074 00000-0 -16168-4 0 5949 2 26536 98.9299 247.2330 0010035 321.6846 38.3611 14.12020195159541 1 26536U 00055A 03300.86043943 .00000093 00000-0 75271-4 0 5955 2 26536 98.9300 247.7275 0010064 320.0061 40.0444 14.12021371159610 1 26536U 00055A 03301.14387700 .00000164 00000-0 11388-3 0 5956 2 26536 98.9302 248.0096 0010018 318.7888 41.2541 14.12021735159656 1 26536U 00055A 03301.56903518 .00000288 00000-0 18178-3 0 5965 2 26536 98.9305 248.4331 0009963 317.6241 42.4193 14.12022635159716 1 26536U 00055A 03302.41934901 .00000560 00000-0 33016-3 0 5961 2 26536 98.9310 249.2798 0009961 314.7862 45.2505 14.12024926159839 1 26536U 00055A 03302.77364680 .00000614 00000-0 35938-3 0 5977 2 26536 98.9312 249.6330 0010031 314.0608 45.9737 14.12025571159884 1 26536U 00055A 03303.48224152 .00000777 00000-0 44875-3 0 5975 2 26536 98.9319 250.3392 0009991 311.7139 48.3193 14.12027455159981 1 26536U 00055A 03303.90739789 .00000877 00000-0 50284-3 0 5982 2 26536 98.9316 250.7631 0009985 310.1911 49.8413 14.12028685160048 1 26536U 00055A 03304.26169430 .00000963 00000-0 54982-3 0 5987 2 26536 98.9319 251.1160 0009959 309.2055 50.8248 14.12029798160091 1 26536U 00055A 03304.75770927 .00001110 00000-0 63017-3 0 5995 2 26536 98.9325 251.6108 0009928 307.8095 52.2217 14.12031654160163 1 26536U 00055A 03305.53716033 .00001030 00000-0 58661-3 0 5990 2 26536 98.9333 252.3879 0009935 305.8866 54.1364 14.12032787160271 1 26536U 00055A 03305.89145662 .00000942 00000-0 53862-3 0 6016 2 26536 98.9331 252.7411 0009930 305.1754 54.8462 14.12033074160321 1 26536U 00055A 03306.24575299 .00000966 00000-0 55161-3 0 6019 2 26536 98.9332 253.0939 0009911 304.1335 55.8894 14.12033830160379 1 26536U 00055A 03306.67090781 .00000718 00000-0 41645-3 0 6022 2 26536 98.9331 253.5179 0009962 303.0007 57.0146 14.12033260160437 1 26536U 00055A 03307.45036162 .00000239 00000-0 15483-3 0 6032 2 26536 98.9321 254.2937 0009942 301.2441 58.7739 14.12031911160545 1 26536U 00055A 03307.80465821 .00000262 00000-0 16728-3 0 6049 2 26536 98.9321 254.6465 0009927 299.8657 60.1549 14.12032342160599 1 26536U 00055A 03308.51325057 .00000186 00000-0 12608-3 0 6053 2 26536 98.9320 255.3522 0009942 298.1319 61.8847 14.12032318160697 1 26536U 00055A 03308.93840597 .00000197 00000-0 13196-3 0 6066 2 26536 98.9320 255.7753 0009952 297.0186 62.9967 14.12032548160755 1 26536U 00055A 03309.64699820 .00000197 00000-0 13196-3 0 6077 2 26536 98.9320 256.4809 0009952 295.0186 64.9952 14.12032890160850 1 26536U 00055A 03310.42644903 .00000277 00000-0 17561-3 0 6076 2 26536 98.9312 257.2565 0009886 292.2185 67.7958 14.12033886160968 1 26536U 00055A 03310.85160358 .00000343 00000-0 21155-3 0 6089 2 26536 98.9312 257.6799 0009892 291.1441 68.8689 14.12034565161027 1 26536U 00055A 03311.63105303 .00000426 00000-0 25677-3 0 6091 2 26536 98.9313 258.4558 0009810 288.2101 71.7995 14.12035584161137 1 26536U 00055A 03312.83565631 .00000426 00000-0 25671-3 0 6104 2 26536 98.9310 259.6569 0009762 285.2890 74.7159 14.12036837161303 1 26536U 00055A 03313.96940089 .00000365 00000-0 22379-3 0 6129 2 26536 98.9317 260.7871 0009715 281.5305 78.4756 14.12037603161460 1 26536U 00055A 03314.67799130 .00000155 00000-0 10889-3 0 6138 2 26536 98.9329 261.4942 0009709 279.1681 80.8348 14.12036848161568 1 26536U 00055A 03315.52830117 -.00000104 00000-0 -32377-4 0 6148 2 26536 98.9332 262.3416 0009697 276.8117 83.1927 14.12035761161687 1 26536U 00055A 03316.87462424 -.00000148 00000-0 -56095-4 0 6162 2 26536 98.9335 263.6827 0009676 272.8043 87.2021 14.12035545161872 1 26536U 00055A 03317.58321426 .00000024 00000-0 37752-4 0 6178 2 26536 98.9340 264.3882 0009690 270.8223 89.1828 14.12036379161974 1 26536U 00055A 03318.85867765 .00000112 00000-0 85626-4 0 6193 2 26536 98.9341 265.6590 0009739 267.3748 92.6337 14.12037104162154 1 26536U 00055A 03319.63812621 .00000122 00000-0 90745-4 0 6202 2 26536 98.9335 266.4350 0009745 264.9584 95.0464 14.12037357162268 1 26536U 00055A 03320.84272718 .00000486 00000-0 28981-3 0 6210 2 26536 98.9339 267.6352 0009812 260.7909 99.2169 14.12040164162434 1 26536U 00055A 03321.90560955 .00000500 00000-0 29711-3 0 6232 2 26536 98.9338 268.6947 0009796 257.3307 102.6746 14.12041223162582 1 26536U 00055A 03322.82677475 .00000317 00000-0 19724-3 0 6240 2 26536 98.9345 269.6133 0009881 253.6956 106.3113 14.12041218162710 1 26536U 00055A 03323.88965832 .00000070 00000-0 62580-4 0 6261 2 26536 98.9349 270.6730 0009864 250.0121 109.9965 14.12040540162862 1 26536U 00055A 03324.73996528 .00000109 00000-0 83763-4 0 6272 2 26536 98.9356 271.5209 0009862 247.2182 112.7946 14.12040832162982 1 26536U 00055A 03325.94456645 .00000109 00000-0 83843-4 0 6298 2 26536 98.9353 272.7217 0009758 243.8474 116.1715 14.12041316163151 1 26536U 00055A 03326.29886030 .00000109 00000-0 83843-4 0 6292 2 26536 98.9353 273.0746 0009758 242.8475 117.1702 14.12041425163206 1 26536U 00055A 03326.72401338 .00000242 00000-0 15656-3 0 6300 2 26536 98.9351 273.4978 0009766 241.3858 118.6360 14.12042267163260 1 26536U 00055A 03327.43259984 .00000388 00000-0 23590-3 0 6304 2 26536 98.9353 274.2046 0009824 239.1793 120.8415 14.12043563163362 1 26536U 00055A 03327.78689347 .00000475 00000-0 28362-3 0 6323 2 26536 98.9350 274.5573 0009822 238.1416 121.8808 14.12044246163418 1 26536U 00055A 03328.14118684 .00000475 00000-0 28362-3 0 6325 2 26536 98.9350 274.9102 0009822 237.1418 122.8808 14.12044613163465 1 26536U 00055A 03328.56633896 .00000490 00000-0 29184-3 0 6339 2 26536 98.9358 275.3347 0009806 236.3740 123.6501 14.12045131163522 1 26536U 00055A 03329.34578403 .00000514 00000-0 30472-3 0 6337 2 26536 98.9363 276.1112 0009899 233.7805 126.2485 14.12046250163637 1 26536U 00055A 03329.77093502 .00000546 00000-0 32245-3 0 6353 2 26536 98.9365 276.5351 0009888 232.7404 127.2867 14.12046841163697 1 26536U 00055A 03330.62123777 .00000461 00000-0 27610-3 0 6353 2 26536 98.9371 277.3825 0009952 229.8827 130.1448 14.12047252163816 1 26536U 00055A 03331.40068249 .00000419 00000-0 25284-3 0 6361 2 26536 98.9373 278.1591 0009949 227.6648 132.3681 14.12047814163929 1 26536U 00055A 03331.82583370 .00000325 00000-0 20155-3 0 6373 2 26536 98.9380 278.5838 0009943 226.3398 133.6932 14.12047720163982 1 26536U 00055A 03332.32184382 .00000242 00000-0 15633-3 0 6372 2 26536 98.9385 279.0782 0009963 224.6950 135.3408 14.12047682164051 1 26536U 00055A 03332.74699534 .00000210 00000-0 13895-3 0 6382 2 26536 98.9390 279.5017 0009950 223.5753 136.4612 14.12047608164112 1 26536U 00055A 03333.24300562 .00000108 00000-0 83087-4 0 6385 2 26536 98.9384 279.9968 0009865 222.2529 137.7855 14.12047359164189 1 26536U 00055A 03333.66815758 .00000108 00000-0 83087-4 0 6390 2 26536 98.9384 280.4205 0009865 221.0531 138.9898 14.12047488164240 1 26536U 00055A 03334.44760151 .00000121 00000-0 90697-4 0 6393 2 26536 98.9381 281.1971 0009860 218.6461 141.4005 14.12047899164351 1 26536U 00055A 03334.87275277 .00000122 00000-0 90697-4 0 6414 2 26536 98.9381 281.6208 0009860 217.4464 142.6021 14.12048040164416 1 26536U 00055A 03335.29790400 .00000122 00000-0 90697-4 0 6411 2 26536 98.9381 282.0444 0009860 216.2466 143.8038 14.12048181164475 1 26536U 00055A 03335.79391372 .00000147 00000-0 10481-3 0 6421 2 26536 98.9373 282.5379 0010010 214.1505 145.9036 14.12048454164540 1 26536U 00055A 03336.57335731 .00000172 00000-0 11826-3 0 6427 2 26536 98.9372 283.3153 0010042 211.6314 148.4267 14.12048853164652 1 26536U 00055A 03337.35279986 .00000314 00000-0 19571-3 0 6437 2 26536 98.9368 284.0922 0010099 209.2312 150.8322 14.12050229164763 1 26536U 00055A 03337.84880834 .00000401 00000-0 24336-3 0 6444 2 26536 98.9367 284.5854 0010200 207.6388 152.4266 14.12051033164837 1 26536U 00055A 03338.20309985 .00000544 00000-0 32111-3 0 6446 2 26536 98.9370 284.9382 0010269 206.6010 153.4662 14.12052007164885 1 26536U 00055A 03338.76996602 .00000607 00000-0 35560-3 0 6457 2 26536 98.9372 285.5036 0010233 204.9720 155.0961 14.12052940164965 1 26536U 00055A 03339.47854881 .00000476 00000-0 28407-3 0 6454 2 26536 98.9380 286.2112 0010226 203.5227 156.5460 14.12053156165068 1 26536U 00055A 03339.90369888 .00000365 00000-0 22339-3 0 6477 2 26536 98.9379 286.6349 0010169 202.3094 157.7607 14.12053026165126 1 26536U 00055A 03340.75399860 .00000259 00000-0 16543-3 0 6477 2 26536 98.9386 287.4833 0010286 199.5422 160.5330 14.12053151165240 1 26536U 00055A 03341.10829059 .00000236 00000-0 15335-3 0 6502 2 26536 98.9390 287.8366 0010332 198.4706 161.6097 14.12053295165291 1 26536U 00055A 03341.60429849 .00000127 00000-0 93414-4 0 6515 2 26536 98.9393 288.3310 0010346 197.1091 162.9710 14.12052952165360 1 26536U 00055A 03342.45459880 .00000064 00000-0 59030-4 0 6513 2 26536 98.9396 289.1790 0010420 194.5060 165.5823 14.12052948165486 1 26536U 00055A 03342.80889018 .00000064 00000-0 59030-4 0 6534 2 26536 98.9396 289.5321 0010420 193.5062 166.5832 14.12053024165534 1 26536U 00055A 03343.16318170 -.00000018 00000-0 14796-4 0 6530 2 26536 98.9384 289.8859 0010346 192.6494 167.4387 14.12052572165583 1 26536U 00055A 03343.65919066 -.00000090 00000-0 -24672-4 0 6541 2 26536 98.9388 290.3804 0010424 191.1712 168.9221 14.12052208165655 1 26536U 00055A 03344.36777484 -.00000151 00000-0 -58182-4 0 6547 2 26536 98.9394 291.0871 0010477 188.7720 171.3288 14.12051874165753 1 26536U 00055A 03344.79292470 -.00000151 00000-0 -58182-4 0 6563 2 26536 98.9394 291.5109 0010477 187.5722 172.5293 14.12051783165816 1 26536U 00055A 03345.14721657 -.00000044 00000-0 63484-6 0 6560 2 26536 98.9392 291.8641 0010508 186.6751 173.4314 14.12052339165862 1 26536U 00055A 03346.28094945 .00000270 00000-0 17172-3 0 6570 2 26536 98.9404 292.9943 0010567 183.4903 176.6310 14.12054382166022 1 26536U 00055A 03346.77695486 .00000393 00000-0 23865-3 0 6595 2 26536 98.9402 293.4892 0010464 181.9343 178.1798 14.12055300166091 1 26536U 00055A 03347.55639465 .00000381 00000-0 23216-3 0 6594 2 26536 98.9410 294.2670 0010519 179.8190 180.2982 14.12055820166209 1 26536U 00055A 03348.33583441 .00000381 00000-0 23216-3 0 6605 2 26536 98.9410 295.0440 0010519 177.6199 182.5024 14.12056482166317 1 26536U 00055A 03348.76098316 .00000381 00000-0 23216-3 0 6615 2 26536 98.9410 295.4678 0010519 176.4204 183.7045 14.12056844166372 1 26536U 00055A 03349.11527371 .00000263 00000-0 16782-3 0 6612 2 26536 98.9415 295.8216 0010612 175.3473 184.7772 14.12056429166422 1 26536U 00055A 03349.54042303 .00000263 00000-0 16782-3 0 6627 2 26536 98.9415 296.2454 0010612 174.1478 185.9819 14.12056690166484 1 26536U 00055A 03351.09930251 -.00000047 00000-0 -13719-5 0 6641 2 26536 98.9411 297.7992 0010528 169.4174 190.7170 14.12055669166703 1 26536U 00055A 03351.45359439 -.00000047 00000-0 -13719-5 0 6644 2 26536 98.9411 298.1524 0010528 168.4177 191.7239 14.12055668166752 1 26536U 00055A 03351.94960161 -.00000047 00000-0 -13719-5 0 6660 2 26536 98.9411 298.6469 0010528 167.0180 193.1264 14.12055665166823 1 26536U 00055A 03352.87076668 .00000156 00000-0 85076-4 0 6677 2 26536 98.9403 299.5655 0010489 165.0135 195.1825 14.12056681166953 1 26536U 00055A 03353.15419056 -.00000047 00000-0 -13719-5 0 6689 2 26536 98.9411 299.8477 0010528 163.6189 196.5324 14.12055659166991 1 26536U 00055A 03353.72105595 -.00000047 00000-0 -13719-5 0 6705 2 26536 98.9411 300.4127 0010528 162.0193 198.1352 14.12055656167076 1 26536U 00055A 03355.20907756 .00000322 00000-0 19989-3 0 6717 2 26536 98.9403 301.8961 0010821 158.9058 201.2706 14.12057966167286 1 26536U 00055A 03355.63422301 .00000358 00000-0 21944-3 0 6737 2 26536 98.9407 302.3206 0010846 157.5242 202.6407 14.12058402167341 1 26536U 00055A 03356.34280274 .00000465 00000-0 27801-3 0 6734 2 26536 98.9405 303.0268 0010861 155.7757 204.3956 14.12059796167449 1 26536U 00055A 03356.76794989 .00000483 00000-0 28805-3 0 6749 2 26536 98.9407 303.4512 0010847 154.3862 205.7831 14.12060142167504 1 26536U 00055A 03357.12223992 .00000483 00000-0 28805-3 0 6741 2 26536 98.9407 303.8044 0010847 153.3865 206.7865 14.12060516167558 1 26536U 00055A 03357.90167688 .00000483 00000-0 28805-3 0 6768 2 26536 98.9407 304.5813 0010847 151.1874 208.9898 14.12061337167660 1 26536U 00055A 03358.32682412 .00000330 00000-0 20421-3 0 6758 2 26536 98.9419 305.0058 0011111 150.6559 209.5215 14.12060839167722 1 26536U 00055A 03358.82282987 .00000172 00000-0 11836-3 0 6761 2 26536 98.9423 305.5001 0011171 149.5299 210.6492 14.12060313167798 1 26536U 00055A 03359.10626221 .00000118 00000-0 88738-4 0 6762 2 26536 98.9428 305.7828 0011163 148.6178 211.5646 14.12060121167832 1 26536U 00055A 03359.67312603 .00000009 00000-0 29007-4 0 6774 2 26536 98.9427 306.3479 0011145 147.0634 213.1206 14.12059659167913 1 26536U 00055A 03360.38170662 -.00000117 00000-0 -39582-4 0 6772 2 26536 98.9428 307.0547 0011084 144.7171 215.4735 14.12059187168010 1 26536U 00055A 03360.80685456 -.00000117 00000-0 -39582-4 0 6793 2 26536 98.9428 307.4786 0011084 143.5175 216.6754 14.12059126168073 1 26536U 00055A 03361.51543394 -.00000177 00000-0 -72285-4 0 6799 2 26536 98.9425 308.1841 0011225 142.2937 217.9005 14.12058741168175 1 26536U 00055A 03361.86972435 -.00000039 00000-0 31896-5 0 6812 2 26536 98.9426 308.5374 0011184 141.3842 218.8165 14.12059408168224 1 26536U 00055A 03362.29487152 .00000024 00000-0 37529-4 0 6818 2 26536 98.9425 308.9612 0011212 140.2350 219.9662 14.12059784168283 1 26536U 00055A 03363.49945526 .00000264 00000-0 16820-3 0 6822 2 26536 98.9429 310.1634 0011097 136.5419 223.6647 14.12061433168459 1 26536U 00055A 03363.92460205 .00000445 00000-0 26700-3 0 6847 2 26536 98.9426 310.5875 0011024 135.2498 224.9599 14.12062643168511 1 26536U 00055A 03364.34974812 .00000468 00000-0 27984-3 0 6848 2 26536 98.9428 311.0116 0011058 134.2510 225.9588 14.12063271168571 1 26536U 00055A 03365.48347157 .00000575 00000-0 33787-3 0 6858 2 26536 98.9432 312.1433 0011015 130.8684 229.3454 14.12064941168730 1 26536U 00055A 03365.83775973 .00000469 00000-0 28008-3 0 6872 2 26536 98.9424 312.4969 0010980 129.2784 230.9318 14.12064732168781 1 26536U 00055A 04001.26290670 .00000371 00000-0 22680-3 0 6875 2 26536 98.9428 312.9210 0011037 128.1401 232.0750 14.12064689168848 1 26536U 00055A 04001.68805312 .00000337 00000-0 20813-3 0 6885 2 26536 98.9434 313.3461 0011089 127.0337 233.1832 14.12064710168906 1 26536U 00055A 04002.39663042 .00000254 00000-0 16277-3 0 6883 2 26536 98.9432 314.0530 0011071 124.8488 235.3724 14.12064893169000 1 26536U 00055A 04002.89263414 .00000133 00000-0 96791-4 0 6894 2 26536 98.9430 314.5476 0011083 123.1557 237.0646 14.12064559169072 1 26536U 00055A 04003.24692324 .00000133 00000-0 96791-4 0 6890 2 26536 98.9430 314.9008 0011083 122.1560 238.0688 14.12064684169122 1 26536U 00055A 04003.74292700 .00000012 00000-0 31099-4 0 6907 2 26536 98.9434 315.3953 0011174 121.2236 238.9993 14.12064015169194 1 26536U 00055A 04004.52236295 -.00000140 00000-0 -52139-4 0 6903 2 26536 98.9431 316.1726 0011173 118.8892 241.3385 14.12063289169305 1 26536U 00055A 04005.30179871 -.00000170 00000-0 -68249-4 0 6919 2 26536 98.9430 316.9496 0011189 116.5758 243.6571 14.12063098169411 1 26536U 00055A 04005.72694508 -.00000203 00000-0 -86523-4 0 6927 2 26536 98.9433 317.3730 0011257 116.0075 244.2255 14.12062762169472 1 26536U 00055A 04006.57723742 -.00000079 00000-0 -18933-4 0 6925 2 26536 98.9428 318.2204 0011160 113.3398 246.8933 14.12063247169596 1 26536U 00055A 04007.35667153 .00000182 00000-0 12373-3 0 6930 2 26536 98.9433 318.9970 0011174 111.7137 248.5256 14.12064934169701 1 26536U 00055A 04007.78181684 .00000294 00000-0 18457-3 0 6952 2 26536 98.9436 319.4213 0011189 110.6060 249.6324 14.12065586169767 1 26536U 00055A 04008.13610469 .00000294 00000-0 18457-3 0 6950 2 26536 98.9436 319.7746 0011189 109.6064 250.6316 14.12065826169819 1 26536U 00055A 04008.56125031 .00000345 00000-0 21260-3 0 6978 2 26536 98.9442 320.1989 0011225 108.7638 251.4767 14.12066357169874 1 26536U 00055A 04009.34068324 .00000504 00000-0 29902-3 0 6974 2 26536 98.9445 320.9760 0011206 107.2070 253.0408 14.12068121169988 1 26536U 00055A 04009.76582654 .00000504 00000-0 29896-3 0 6991 2 26536 98.9451 321.4004 0011225 105.9570 254.2815 14.12068359170040 1 26536U 00055A 04010.89954696 .00000139 00000-0 10005-3 0 7016 2 26536 98.9464 322.5310 0011271 103.2340 257.0030 14.12067350170201 1 26536U 00055A 04011.25383572 .00000089 00000-0 73043-4 0 7012 2 26536 98.9471 322.8849 0011293 102.1882 258.0550 14.12067285170252 1 26536U 00055A 04011.67898093 .00000099 00000-0 78184-4 0 7020 2 26536 98.9474 323.3095 0011357 101.1843 259.0591 14.12067277170315 1 26536U 00055A 04012.38755648 -.00000047 00000-0 -14631-5 0 7020 2 26536 98.9463 324.0167 0011350 99.2347 261.0107 14.12066931170413 1 26536U 00055A 04012.81270172 -.00000078 00000-0 -18008-4 0 7049 2 26536 98.9463 324.4406 0011351 97.9454 262.2991 14.12066709170471 1 26536U 00055A 04013.59213550 -.00000096 00000-0 -28145-4 0 7045 2 26536 98.9462 325.2178 0011384 95.9072 264.3393 14.12066309170582 1 26536U 00055A 04014.37156879 -.00000167 00000-0 -66634-4 0 7057 2 26536 98.9457 325.9956 0011378 93.2132 267.0348 14.12066131170693 1 26536U 00055A 04014.79671408 -.00000103 00000-0 -31807-4 0 7068 2 26536 98.9457 326.4197 0011344 91.9359 268.3123 14.12066340170759 1 26536U 00055A 04015.15100162 -.00000082 00000-0 -20430-4 0 7069 2 26536 98.9453 326.7732 0011347 91.1427 269.1050 14.12066393170806 1 26536U 00055A 04015.93043406 .00000148 00000-0 10522-3 0 7096 2 26536 98.9453 327.5509 0011338 88.8907 271.3598 14.12067686170913 1 26536U 00055A 04016.28472077 .00000285 00000-0 17959-3 0 7087 2 26536 98.9447 327.9037 0011345 88.2748 271.9759 14.12068613170962 1 26536U 00055A 04016.70986462 .00000370 00000-0 22589-3 0 7093 2 26536 98.9444 328.3275 0011353 86.8029 273.4436 14.12069160171028 1 26536U 00055A 04017.56015232 .00000451 00000-0 27043-3 0 7096 2 26536 98.9439 329.1752 0011280 84.4885 275.7558 14.12070409171145 1 26536U 00055A 04017.91443928 .00000471 00000-0 28115-3 0 7107 2 26536 98.9435 329.5286 0011257 84.0790 276.1681 14.12070907171192 1 26536U 00055A 04018.26872548 .00000486 00000-0 28919-3 0 7108 2 26536 98.9436 329.8819 0011250 83.2385 277.0068 14.12071316171242 1 26536U 00055A 04018.69386913 .00000419 00000-0 25292-3 0 7119 2 26536 98.9437 330.3060 0011246 82.2394 278.0033 14.12071299171302 1 26536U 00055A 04019.40244283 .00000225 00000-0 14726-3 0 7117 2 26536 98.9438 331.0130 0011241 80.6535 279.5904 14.12070982171405 1 26536U 00055A 04019.75672940 .00000178 00000-0 12157-3 0 7135 2 26536 98.9439 331.3662 0011239 80.0429 280.1998 14.12070852171454 1 26536U 00055A 04020.11101618 .00000169 00000-0 11675-3 0 7130 2 26536 98.9439 331.7196 0011242 79.1354 281.1083 14.12070979171502 1 26536U 00055A 04020.53615996 .00000086 00000-0 71216-4 0 7142 2 26536 98.9441 332.1437 0011246 78.1061 282.1360 14.12070757171565 1 26536U 00055A 04021.74073472 .00000045 00000-0 48966-4 0 7166 2 26536 98.9441 333.3449 0011258 74.6817 285.5598 14.12070781171730 1 26536U 00055A 04022.87445206 -.00000117 00000-0 -39359-4 0 7178 2 26536 98.9448 334.4767 0011373 71.5519 288.6866 14.12070069171893 1 26536U 00055A 04023.29959651 -.00000090 00000-0 -24479-4 0 7176 2 26536 98.9449 334.9008 0011377 70.6224 289.6188 14.12070203171959 1 26536U 00055A 04023.79559759 -.00000117 00000-0 -39249-4 0 7188 2 26536 98.9452 335.3954 0011382 69.0940 291.1434 14.12069940172028 1 26536U 00055A 04024.50417092 .00000036 00000-0 44227-4 0 7181 2 26536 98.9458 336.1025 0011403 67.1721 293.0683 14.12070796172121 1 26536U 00055A 04024.92931407 .00000180 00000-0 12274-3 0 7195 2 26536 98.9458 336.5265 0011374 65.9416 294.2984 14.12071704172188 1 26536U 00055A 04025.28359949 .00000180 00000-0 12274-3 0 7190 2 26536 98.9458 336.8799 0011374 64.9420 295.2931 14.12071863172232 1 26536U 00055A 04025.63788566 .00000361 00000-0 22102-3 0 7204 2 26536 98.9465 337.2337 0011407 64.5030 295.7351 14.12072905172287 1 26536U 00055A 04026.41731283 .00000517 00000-0 30646-3 0 7200 2 26536 98.9470 338.0116 0011370 62.2472 297.9846 14.12074461172395 1 26536U 00055A 04026.84245547 .00000537 00000-0 31729-3 0 7227 2 26536 98.9466 338.4360 0011402 60.8558 299.3762 14.12075167172454 1 26536U 00055A 04027.19674057 .00000571 00000-0 33550-3 0 7220 2 26536 98.9470 338.7893 0011322 60.4064 299.8242 14.12075633172504 1 26536U 00055A 04027.69273959 .00000430 00000-0 25900-3 0 7236 2 26536 98.9471 339.2844 0011331 58.6913 301.5321 14.12075341172571 1 26536U 00055A 04028.40131119 .00000177 00000-0 12102-3 0 7235 2 26536 98.9481 339.9924 0011286 56.8927 303.3300 14.12074662172675 1 26536U 00055A 04028.82645418 .00000177 00000-0 12102-3 0 7299 2 26536 98.9481 340.4166 0011286 55.6932 304.5306 14.12074850172738 1 26536U 00055A 04029.18073953 .00000151 00000-0 10653-3 0 7299 2 26536 98.9480 340.7702 0011218 55.1291 305.0945 14.12074946172780 1 26536U 00055A 04029.60588167 .00000048 00000-0 50549-4 0 7300 2 26536 98.9482 341.1943 0011205 53.9493 306.2697 14.12074569172845 1 26536U 00055A 04030.31445296 .00000015 00000-0 32339-4 0 7306 2 26536 98.9483 341.9011 0011180 52.2154 308.0044 14.12074669172946 1 26536U 00055A 04030.73959510 -.00000032 00000-0 69984-5 0 7319 2 26536 98.9482 342.3251 0011125 50.9981 309.2156 14.12074262173002 1 26536U 00055A 04031.09388104 -.00000032 00000-0 69984-5 0 7314 2 26536 98.9482 342.6785 0011125 49.9985 310.2161 14.12074271173052 1 26536U 00055A 04031.94416615 -.00000118 00000-0 -39704-4 0 7331 2 26536 98.9479 343.5269 0011094 48.0497 312.1607 14.12073889173171 1 26536U 00055A 04032.29845193 -.00000102 00000-0 -31328-4 0 7323 2 26536 98.9478 343.8802 0011036 47.3827 312.8287 14.12073970173229 1 26536U 00055A 04032.65273720 -.00000136 00000-0 -49760-4 0 7331 2 26536 98.9475 344.2334 0011031 46.2537 313.9530 14.12073667173273 1 26536U 00055A 04033.36130756 .00000046 00000-0 49345-4 0 7338 2 26536 98.9466 344.9389 0010961 44.3409 315.8648 14.12074763173378 1 26536U 00055A 04033.78644975 .00000164 00000-0 11364-3 0 7348 2 26536 98.9466 345.3632 0011002 42.9449 317.2591 14.12075381173436 1 26536U 00055A 04034.14073468 .00000291 00000-0 18295-3 0 7343 2 26536 98.9464 345.7166 0011053 41.4716 318.7316 14.12076232173489 1 26536U 00055A 04034.63673309 .00000282 00000-0 17806-3 0 7355 2 26536 98.9468 346.2118 0011022 40.2303 319.9675 14.12076409173556 1 26536U 00055A 04035.34530250 .00000320 00000-0 19877-3 0 7354 2 26536 98.9462 346.9191 0011006 38.0847 322.1104 14.12077229173653 1 26536U 00055A 04035.77044399 .00000398 00000-0 24113-3 0 7371 2 26536 98.9462 347.3430 0010971 36.9099 323.2835 14.12077855173715 1 26536U 00055A 04036.54986959 .00000326 00000-0 20234-3 0 7375 2 26536 98.9469 348.1215 0011011 34.3416 325.8452 14.12078162173820 1 26536U 00055A 04036.54986959 .00000326 00000-0 20234-3 0 7421 2 26536 98.9469 348.1215 0011011 34.3416 325.8452 14.12078162173820 1 26536U 00055A 04037.32929593 .00000259 00000-0 16570-3 0 7433 2 26536 98.9479 348.8989 0010944 32.6314 327.5545 14.12078374173937 1 26536U 00055A 04037.68358000 .00000195 00000-0 13058-3 0 7449 2 26536 98.9483 349.2529 0010933 31.8554 328.3244 14.12078042173984 1 26536U 00055A 04038.46300631 .00000043 00000-0 47734-4 0 7444 2 26536 98.9493 350.0314 0010879 29.7407 330.4353 14.12077550174090 1 26536U 00055A 04038.95900522 -.00000143 00000-0 -53689-4 0 7453 2 26536 98.9495 350.5264 0010940 28.4556 331.7172 14.12076743174165 1 26536U 00055A 04039.31329075 -.00000143 00000-0 -53689-4 0 7452 2 26536 98.9495 350.8799 0010940 27.4561 332.7186 14.12076673174210 1 26536U 00055A 04039.73843248 -.00000143 00000-0 -53689-4 0 7462 2 26536 98.9495 351.3041 0010940 26.2567 333.9156 14.12076590174273 1 26536U 00055A 04040.44700208 -.00000060 00000-0 -82883-5 0 7467 2 26536 98.9501 352.0109 0010658 24.8841 335.2908 14.12077086174371 1 26536U 00055A 04040.80128544 -.00000045 00000-0 -13739-6 0 7473 2 26536 98.9504 352.3646 0010684 23.8282 336.3378 14.12077112174429 1 26536U 00055A 04042.07671023 .00000048 00000-0 50453-4 0 7483 2 26536 98.9495 353.6371 0010777 20.3813 339.7771 14.12077442174602 1 26536U 00055A 04042.50185200 .00000048 00000-0 50453-4 0 7499 2 26536 98.9495 354.0613 0010777 19.1818 340.9757 14.12077521174669 1 26536U 00055A 04043.28127679 .00000195 00000-0 13083-3 0 7503 2 26536 98.9492 354.8394 0010679 17.0649 343.0887 14.12078696174774 1 26536U 00055A 04043.70641770 .00000327 00000-0 20290-3 0 7520 2 26536 98.9498 355.2645 0010764 15.7587 344.3937 14.12079555174837 1 26536U 00055A 04044.41498402 .00000440 00000-0 26424-3 0 7522 2 26536 98.9487 355.9720 0010725 13.3280 346.8165 14.12080882174933 1 26536U 00055A 04044.84012453 .00000454 00000-0 27219-3 0 7536 2 26536 98.9483 356.3965 0010730 12.2338 347.9084 14.12081302174999 1 26536U 00055A 04045.12355152 .00000454 00000-0 27219-3 0 7534 2 26536 98.9483 356.6792 0010730 11.4341 348.7072 14.12081584175039 1 26536U 00055A 04045.61954835 .00000454 00000-0 27219-3 0 7542 2 26536 98.9483 357.1741 0010730 10.0345 350.1038 14.12082078175104 1 26536U 00055A 04046.32811548 .00000318 00000-0 19771-3 0 7547 2 26536 98.9483 357.8817 0010644 8.2728 351.8617 14.12082045175209 1 26536U 00055A 04046.75325551 .00000210 00000-0 13915-3 0 7554 2 26536 98.9484 358.3060 0010673 7.0520 353.0763 14.12081656175264 1 26536U 00055A 04047.46182367 .00000043 00000-0 47798-4 0 7550 2 26536 98.9483 359.0131 0010704 5.0822 355.0447 14.12081131175368 1 26536U 00055A 04047.88696418 -.00000026 00000-0 10290-4 0 7574 2 26536 98.9485 359.4373 0010726 3.9905 356.1334 14.12080869175426 1 26536U 00055A 04048.24124817 -.00000028 00000-0 89357-5 0 7577 2 26536 98.9484 359.7907 0010715 3.0081 357.1148 14.12080825175476 1 26536U 00055A 04048.66638869 -.00000092 00000-0 -25893-4 0 7587 2 26536 98.9482 0.2143 0010583 1.8825 358.2375 14.12080460175535 1 26536U 00055A 04049.37495650 -.00000134 00000-0 -48457-4 0 7583 2 26536 98.9487 0.9209 0010576 0.0380 0.0800 14.12080350175633 1 26536U 00055A 04049.80009689 -.00000068 00000-0 -12631-4 0 7596 2 26536 98.9491 1.3452 0010556 358.7493 1.3661 14.12080551175697 1 26536U 00055A 04050.15438045 -.00000068 00000-0 -12763-4 0 7594 2 26536 98.9491 1.6986 0010547 357.7676 2.3441 14.12080478175745 1 26536U 00055A 04050.72123462 -.00000024 00000-0 11287-4 0 7604 2 26536 98.9491 2.2643 0010513 356.2053 3.9047 14.12080668175827 1 26536U 00055A 04051.42980116 .00000144 00000-0 10300-3 0 7605 2 26536 98.9495 2.9718 0010536 354.2675 5.8397 14.12081829175924 1 26536U 00055A 04051.85494082 .00000207 00000-0 13749-3 0 7637 2 26536 98.9493 3.3959 0010677 353.0475 7.0556 14.12082386175981 1 26536U 00055A 04052.13836726 .00000314 00000-0 19551-3 0 7630 2 26536 98.9498 3.6787 0010612 352.1594 7.9431 14.12083022176024 1 26536U 00055A 04052.56350657 .00000370 00000-0 22607-3 0 7640 2 26536 98.9501 4.1033 0010554 351.1472 8.9519 14.12083563176082 1 26536U 00055A 04053.34292907 .00000408 00000-0 24689-3 0 7644 2 26536 98.9504 4.8817 0010456 348.9374 11.1590 14.12084416176193 1 26536U 00055A 04053.83892445 .00000366 00000-0 22412-3 0 7657 2 26536 98.9496 5.3772 0010580 347.9032 12.1856 14.12084625176263 1 26536U 00055A 04054.19320769 .00000366 00000-0 22412-3 0 7652 2 26536 98.9496 5.7308 0010580 346.9036 13.1859 14.12084916176318 1 26536U 00055A 04054.61834686 .00000251 00000-0 16139-3 0 7660 2 26536 98.9500 6.1559 0010467 345.6551 14.4292 14.12084511176371 1 26536U 00055A 04055.32691258 .00000223 00000-0 14610-3 0 7666 2 26536 98.9501 6.8631 0010441 343.4977 16.5850 14.12084919176476 1 26536U 00055A 04055.75205183 .00000169 00000-0 11644-3 0 7686 2 26536 98.9505 7.2876 0010439 342.1990 17.8790 14.12084689176532 1 26536U 00055A 04056.53147427 .00000011 00000-0 30540-4 0 7682 2 26536 98.9505 8.0657 0010405 339.7547 20.3185 14.12084164176648 1 26536U 00055A 04056.88575766 -.00000100 00000-0 -30136-4 0 7694 2 26536 98.9503 8.4194 0010364 338.8914 21.1808 14.12083662176696 1 26536U 00055A 04057.31089769 -.00000125 00000-0 -43569-4 0 7697 2 26536 98.9505 8.8437 0010310 337.6985 22.3741 14.12083568176759 1 26536U 00055A 04057.73603726 -.00000239 00000-0 -10594-3 0 7707 2 26536 98.9506 9.2677 0010269 336.2638 23.8038 14.12082869176819 1 26536U 00055A 04057.80690267 .00000210 00000-0 11468-3 0 7697 2 26536 98.9507 9.3382 0010447 336.1974 23.9198 14.12085170176821 1 26536U 00055A 04057.87775936 .00000201 00000-0 10988-3 0 7709 2 26536 98.9507 9.4089 0010435 336.0380 24.0789 14.12085105176830 1 26536U 00055A 04058.51546079 -.00000216 00000-0 -93571-4 0 7714 2 26536 98.9515 10.0446 0010283 334.0814 25.9857 14.12082827176929 1 26536U 00055A 04058.94060038 -.00000216 00000-0 -93571-4 0 7728 2 26536 98.9515 10.4689 0010283 332.8821 27.1812 14.12082682176986 1 26536U 00055A 04059.29488367 .00000062 00000-0 58121-4 0 7725 2 26536 98.9526 10.8224 0009981 331.4719 28.6009 14.12084303177034 1 26536U 00055A 04059.64916448 .00000118 00000-0 88766-4 0 7731 2 26536 98.9525 11.1759 0009970 330.7823 29.2777 14.12084497177084 1 26536U 00055A 04060.42858663 .00000194 00000-0 13043-3 0 7732 2 26536 98.9523 11.9539 0010006 328.6692 31.3880 14.12085116177198 1 26536U 00055A 04060.78286934 .00000313 00000-0 19513-3 0 7750 2 26536 98.9522 12.3073 0009984 327.7559 32.3021 14.12085900177245 1 26536U 00055A 04061.49143363 .00000290 00000-0 18274-3 0 7754 2 26536 98.9528 13.0142 0009994 325.7547 34.2979 14.12086390177340 1 26536U 00055A 04061.91657243 .00000423 00000-0 25502-3 0 7769 2 26536 98.9529 13.4385 0009891 324.1026 35.9523 14.12087431177402 1 26536U 00055A 04062.27085367 .00000414 00000-0 25038-3 0 7765 2 26536 98.9527 13.7921 0009902 323.1253 36.9232 14.12087706177451 1 26536U 00055A 04062.69599216 .00000352 00000-0 21628-3 0 7777 2 26536 98.9528 14.2167 0009957 322.0087 38.0349 14.12087585177517 1 26536U 00055A 04063.47541281 .00000381 00000-0 23194-3 0 7775 2 26536 98.9515 14.9956 0009840 319.1667 40.8766 14.12088373177620 1 26536U 00055A 04063.82969469 .00000242 00000-0 15656-3 0 7787 2 26536 98.9511 15.3492 0009935 318.0880 41.9507 14.12087988177677 1 26536U 00055A 04064.11312074 .00000191 00000-0 12869-3 0 7780 2 26536 98.9511 15.6322 0009920 317.3527 42.6859 14.12087850177717 1 26536U 00055A 04064.60911586 -.00000045 00000-0 51893-7 0 7803 2 26536 98.9514 16.1277 0010007 315.8719 44.1604 14.12086784177786 1 26536U 00055A 04068.22279676 -.00000045 00000-0 51893-7 0 7835 2 26536 98.9520 19.7348 0010061 305.8724 54.1540 14.12087124178292 1 26536U 00055A 04068.22279676 -.00000045 00000-0 51893-7 0 7846 2 26536 98.9520 19.7348 0010061 305.8724 54.1540 14.12087124178292 1 26536U 00055A 04068.22279676 -.00000045 00000-0 51893-7 0 7857 2 26536 98.9520 19.7348 0010061 305.8724 54.1540 14.12087124178292 1 26536U 00055A 04068.22279676 -.00000045 00000-0 51893-7 0 7868 2 26536 98.9520 19.7348 0010061 305.8724 54.1540 14.12087124178292 1 26536U 00055A 04071.34048054 .00000380 00000-0 23143-3 0 7885 2 26536 98.9525 22.8488 0009782 295.5304 64.5116 14.12090511178731 1 26536U 00055A 04071.69475686 .00000330 00000-0 20417-3 0 7895 2 26536 98.9526 23.2025 0009804 294.6037 65.4100 14.12090524178784 1 26536U 00055A 04072.40331974 .00000316 00000-0 19700-3 0 7893 2 26536 98.9529 23.9103 0009824 292.5439 67.4691 14.12091093178886 1 26536U 00055A 04072.82845735 .00000229 00000-0 14949-3 0 7909 2 26536 98.9530 24.3350 0009789 291.2321 68.7777 14.12090850178949 1 26536U 00055A 04073.11188302 .00000199 00000-0 13286-3 0 7901 2 26536 98.9531 24.6180 0009779 290.4459 69.5653 14.12090824178983 1 26536U 00055A 04073.60787718 .00000115 00000-0 86969-4 0 7919 2 26536 98.9532 25.1130 0009772 288.9348 71.0740 14.12090530179055 1 26536U 00055A 04074.38729730 -.00000008 00000-0 20343-4 0 7911 2 26536 98.9534 25.8913 0009765 286.7852 73.2247 14.12090220179165 1 26536U 00055A 04074.74157892 -.00000054 00000-0 -47545-5 0 7944 2 26536 98.9536 26.2449 0009756 285.6364 74.3713 14.12089893179212 1 26536U 00055A 04075.52099894 -.00000134 00000-0 -48526-4 0 7946 2 26536 98.9536 27.0227 0009774 283.3976 76.6099 14.12089573179328 1 26536U 00055A 04075.87528087 -.00000147 00000-0 -55803-4 0 7956 2 26536 98.9536 27.3764 0009818 282.7647 77.2424 14.12089469179372 1 26536U 00055A 04076.22956279 -.00000077 00000-0 -17256-4 0 7956 2 26536 98.9535 27.7300 0009803 281.7341 78.2743 14.12089766179426 1 26536U 00055A 04076.65470066 -.00000040 00000-0 27787-5 0 7969 2 26536 98.9535 28.1544 0009755 280.2205 79.7870 14.12089881179481 1 26536U 00055A 04077.36326408 .00000069 00000-0 62277-4 0 7960 2 26536 98.9530 28.8625 0009750 278.3546 81.6567 14.12090800179583 1 26536U 00055A 04077.78840098 .00000166 00000-0 11497-3 0 7989 2 26536 98.9528 29.2867 0009724 277.0738 82.9336 14.12091318179643 1 26536U 00055A 04078.07182592 .00000218 00000-0 14330-3 0 7987 2 26536 98.9527 29.5697 0009734 276.1229 83.8846 14.12091707179684 1 26536U 00055A 04078.85125270 .00000972 00000-0 53007-3 0 8008 2 26536 98.9526 30.3496 0009678 272.7590 87.2942 14.12094111179799 1 26536U 00055A 04078.85125388 .00000097 00000-0 52708-4 0 7991 2 26536 98.9531 30.3490 0009773 273.8548 86.1975 14.12091276179793 1 26536U 00055A 04078.92210036 .00000395 00000-0 23968-3 0 8003 2 26536 98.9524 30.4187 0009744 273.4093 86.5999 14.12093196179803 1 26536U 00055A 04079.27638060 .00000428 00000-0 25781-3 0 8005 2 26536 98.9525 30.7724 0009730 272.2600 87.7469 14.12093732179856 1 26536U 00055A 04079.70151732 .00000400 00000-0 24252-3 0 8012 2 26536 98.9524 31.1971 0009718 271.0392 88.9643 14.12093822179919 1 26536U 00055A 04080.48093453 .00000439 00000-0 26376-3 0 8015 2 26536 98.9528 31.9748 0009765 268.7380 91.2652 14.12094801180024 1 26536U 00055A 04080.83521547 .00000310 00000-0 19338-3 0 8034 2 26536 98.9527 32.3286 0009735 267.4209 92.5815 14.12094397180078 1 26536U 00055A 04081.18949678 .00000298 00000-0 18671-3 0 8036 2 26536 98.9531 32.6823 0009735 266.1647 93.8411 14.12094566180125 1 26536U 00055A 04081.61463356 .00000173 00000-0 11867-3 0 8041 2 26536 98.9537 33.1075 0009743 264.6604 95.3431 14.12094130180183 1 26536U 00055A 04082.39405247 -.00000020 00000-0 13524-4 0 8047 2 26536 98.9542 33.8860 0009719 262.4631 97.5439 14.12093498180297 1 26536U 00055A 04082.74833337 -.00000094 00000-0 -26994-4 0 8059 2 26536 98.9547 34.2397 0009722 261.1466 98.8586 14.12093044180348 1 26536U 00055A 04083.52775213 -.00000094 00000-0 -26994-4 0 8054 2 26536 98.9547 35.0179 0009722 258.9480 101.0598 14.12092967180450 1 26536U 00055A 04083.88203325 -.00000023 00000-0 11906-4 0 8062 2 26536 98.9554 35.3720 0009715 257.0280 102.9853 14.12093508180505 1 26536U 00055A 04084.23631330 -.00000036 00000-0 51307-5 0 8067 2 26536 98.9554 35.7258 0009708 256.0111 103.9973 14.12093418180558 1 26536U 00055A 04084.66145067 .00000039 00000-0 45801-4 0 8075 2 26536 98.9561 36.1509 0009687 254.4041 105.6066 14.12093673180612 1 26536U 00055A 04085.44086912 -.00000104 00000-0 -32183-4 0 8079 2 26536 98.9558 36.9299 0009681 252.0322 107.9792 14.12093063180728 1 26536U 00055A 04085.79515029 .00000028 00000-0 39549-4 0 8091 2 26536 98.9559 37.2838 0009694 251.3079 108.7069 14.12093734180773 1 26536U 00055A 04086.50371143 .00000035 00000-0 43579-4 0 8094 2 26536 98.9556 37.9910 0009723 248.7252 111.2887 14.12093950180872 1 26536U 00055A 04086.85799224 .00000145 00000-0 10365-3 0 8106 2 26536 98.9554 38.3448 0009749 247.8961 112.1205 14.12094651180925 1 26536U 00055A 04087.28312853 .00000247 00000-0 15917-3 0 8104 2 26536 98.9553 38.7693 0009782 246.2464 113.7714 14.12095410180980 1 26536U 00055A 04087.63740844 .00000361 00000-0 22114-3 0 8113 2 26536 98.9556 39.1238 0009744 245.4908 114.5257 14.12096108181038 1 26536U 00055A 04088.34596789 .00000529 00000-0 31311-3 0 8114 2 26536 98.9553 39.8315 0009824 243.1467 116.8713 14.12097761181131 1 26536U 00055A 04088.77110359 .00000594 00000-0 34831-3 0 8129 2 26536 98.9555 40.2564 0009836 242.0298 117.9884 14.12098495181190 1 26536U 00055A 04089.55051918 .00000447 00000-0 26826-3 0 8123 2 26536 98.9551 41.0347 0009849 239.8772 120.1400 14.12098602181302 1 26536U 00055A 04089.90479941 .00000419 00000-0 25287-3 0 8132 2 26536 98.9551 41.3883 0009846 238.9534 121.0668 14.12098840181358 1 26536U 00055A 04090.25907919 .00000419 00000-0 25287-3 0 8133 2 26536 98.9551 41.7421 0009846 237.9541 122.0674 14.12099168181405 1 26536U 00055A 04090.68421475 .00000219 00000-0 14390-3 0 8140 2 26536 98.9555 42.1668 0009899 236.3580 123.6597 14.12098321181468 1 26536U 00055A 04091.46363233 .00000045 00000-0 49010-4 0 8149 2 26536 98.9556 42.9455 0009822 234.4377 125.5885 14.12097873181574 1 26536U 00055A 04091.81791222 -.00000012 00000-0 18096-4 0 8157 2 26536 98.9556 43.2993 0009801 233.5646 126.4601 14.12097567181623 1 26536U 00055A 04092.17219275 -.00000012 00000-0 18096-4 0 8150 2 26536 98.9556 43.6531 0009801 232.5653 127.4627 14.12097590181672 1 26536U 00055A 04092.66818489 -.00000093 00000-0 -26197-4 0 8168 2 26536 98.9559 44.1481 0009873 230.2718 129.7568 14.12097110181746 1 26536U 00055A 04093.37674520 -.00000069 00000-0 -13112-4 0 8169 2 26536 98.9557 44.8554 0009907 228.3198 131.7127 14.12097343181843 1 26536U 00055A 04093.73102537 -.00000061 00000-0 -89375-5 0 8171 2 26536 98.9559 45.2089 0009939 227.0543 132.9788 14.12097242181897 1 26536U 00055A 04094.51044202 -.00000061 00000-0 -89375-5 0 8172 2 26536 98.9559 45.9872 0009939 224.8558 135.1811 14.12097216182002 1 26536U 00055A 04094.93557831 .00000103 00000-0 80447-4 0 8181 2 26536 98.9556 46.4125 0010026 223.2197 136.8270 14.12098406182062 1 26536U 00055A 04095.28985662 .00000062 00000-0 58367-4 0 8187 2 26536 98.9554 46.7663 0010074 221.9762 138.0636 14.12098317182113 1 26536U 00055A 04095.64413665 .00000097 00000-0 77137-4 0 8191 2 26536 98.9556 47.1204 0010055 221.0725 138.9684 14.12098451182166 1 26536U 00055A 04096.42355137 .00000230 00000-0 14979-3 0 8190 2 26536 98.9559 47.8994 0010167 218.6346 141.4108 14.12099669182271 1 26536U 00055A 04096.77783082 .00000323 00000-0 20069-3 0 8215 2 26536 98.9559 48.2533 0010161 217.7269 142.3206 14.12100318182322 1 26536U 00055A 04097.48638899 .00000427 00000-0 25741-3 0 8216 2 26536 98.9563 48.9614 0010176 215.7653 144.2851 14.12101473182426 1 26536U 00055A 04097.91152373 .00000460 00000-0 27506-3 0 8232 2 26536 98.9558 49.3861 0010079 214.9113 145.1388 14.12101983182480 1 26536U 00055A 04098.33665878 .00000514 00000-0 30465-3 0 8236 2 26536 98.9563 49.8112 0010117 213.4764 146.5792 14.12102775182540 1 26536U 00055A 04098.69093719 .00000502 00000-0 29827-3 0 8242 2 26536 98.9567 50.1653 0010120 212.2339 147.8187 14.12102855182594 1 26536U 00055A 04099.47035236 .00000257 00000-0 16450-3 0 8244 2 26536 98.9578 50.9439 0009980 210.3082 149.7491 14.12102127182706 1 26536U 00055A 04099.89548764 .00000031 00000-0 41136-4 0 8256 2 26536 98.9576 51.3691 0009955 209.3208 150.7374 14.12101355182769 1 26536U 00055A 04100.32062336 .00000030 00000-0 40750-4 0 8253 2 26536 98.9578 51.7939 0009971 208.0316 152.0326 14.12101473182824 1 26536U 00055A 04100.74575830 -.00000048 00000-0 -18158-5 0 8267 2 26536 98.9581 52.2186 0009959 206.8785 153.1836 14.12100928182888 1 26536U 00055A 04103.50913817 -.00000048 00000-0 -18158-5 0 8311 2 26536 98.9577 54.9786 0010036 198.3975 161.6830 14.12100926183272 1 26536U 00055A 04103.93427353 .00000116 00000-0 87677-4 0 8330 2 26536 98.9577 55.4039 0010032 197.3767 162.7099 14.12101801183332 1 26536U 00055A 04104.28855197 .00000199 00000-0 13267-3 0 8345 2 26536 98.9574 55.7575 0010047 196.2426 163.8446 14.12102413183386 1 26536U 00055A 04104.71368636 .00000310 00000-0 19329-3 0 8351 2 26536 98.9571 56.1820 0010071 194.7202 165.3681 14.12103040183445 1 26536U 00055A 04105.49309909 .00000397 00000-0 24089-3 0 8359 2 26536 98.9571 56.9609 0010103 192.4216 167.6716 14.12104200183559 1 26536U 00055A 04105.49310797 .00000407 00000-0 22213-3 0 8366 2 26536 98.9581 56.9615 0009897 188.9171 171.2301 14.12104917183551 1 26536U 00055A 04105.91823319 .00000434 00000-0 26091-3 0 8371 2 26536 98.9567 57.3855 0010129 191.2448 168.8509 14.12104783183610 1 26536U 00055A 04106.27251139 .00000434 00000-0 26091-3 0 8376 2 26536 98.9567 57.7393 0010129 190.2456 169.8510 14.12105121183664 1 26536U 00055A 04106.69764537 .00000419 00000-0 25264-3 0 8388 2 26536 98.9568 58.1641 0010183 189.0247 171.0729 14.12105292183723 1 26536U 00055A 04107.40620221 .00000281 00000-0 17779-3 0 8388 2 26536 98.9570 58.8722 0010199 187.1471 172.9543 14.12105288183828 1 26536U 00055A 04107.83133642 .00000179 00000-0 12193-3 0 8393 2 26536 98.9568 59.2969 0010189 185.7740 174.3289 14.12105030183889 1 26536U 00055A 04108.18561530 .00000159 00000-0 11091-3 0 8397 2 26536 98.9568 59.6507 0010236 184.7784 175.3294 14.12105106183938 1 26536U 00055A 04108.96502841 .00000006 00000-0 27704-4 0 8416 2 26536 98.9574 60.4297 0010245 182.5575 177.5546 14.12104517184047 1 26536U 00055A 04109.24845122 .00000006 00000-0 27704-4 0 8409 2 26536 98.9574 60.7127 0010245 181.7581 178.3556 14.12104546184086 1 26536U 00055A 04109.67358543 -.00000056 00000-0 -62430-5 0 8416 2 26536 98.9581 61.1380 0010389 180.5109 179.6050 14.12104212184142 1 26536U 00055A 04110.80727704 -.00000056 00000-0 -62430-5 0 8423 2 26536 98.9581 62.2703 0010389 177.3132 182.8097 14.12104186184308 1 26536U 00055A 04111.16155565 -.00000056 00000-0 -62430-5 0 8423 2 26536 98.9581 62.6242 0010389 176.3139 183.8110 14.12104178184359 1 26536U 00055A 04111.94096860 -.00000056 00000-0 -62430-5 0 8443 2 26536 98.9581 63.4026 0010389 174.1155 186.0140 14.12104160184463 1 26536U 00055A 04112.29524722 -.00000056 00000-0 -62430-5 0 8434 2 26536 98.9581 63.7565 0010389 173.1163 187.0153 14.12104152184514 1 26536U 00055A 04112.72038156 -.00000056 00000-0 -62430-5 0 8444 2 26536 98.9581 64.1811 0010389 171.9171 188.2169 14.12104142184573 1 26536U 00055A 04113.49979452 .00000071 00000-0 63098-4 0 8447 2 26536 98.9584 64.9595 0010362 169.8188 190.3277 14.12105384184683 1 26536U 00055A 04113.92492684 .00000342 00000-0 21070-3 0 8457 2 26536 98.9605 65.3874 0010755 168.8027 191.3445 14.12106570184742 1 26536U 00055A 04114.27920364 .00000430 00000-0 25894-3 0 8453 2 26536 98.9604 65.7412 0010717 167.7179 192.4277 14.12107390184798 1 26536U 00055A 04114.70433652 .00000485 00000-0 28900-3 0 8462 2 26536 98.9604 66.1664 0010691 166.4054 193.7396 14.12107890184859 1 26536U 00055A 04115.41289188 .00000485 00000-0 28900-3 0 8464 2 26536 98.9604 66.8743 0010691 164.4073 195.7429 14.12108641184958 1 26536U 00055A 04115.83802478 .00000485 00000-0 28900-3 0 8474 2 26536 98.9604 67.2990 0010691 163.2085 196.9443 14.12109091185014 1 26536U 00055A 04116.19230209 .00000386 00000-0 23485-3 0 8474 2 26536 98.9599 67.6539 0010767 162.3420 197.8107 14.12108848185068 1 26536U 00055A 04116.90085813 .00000158 00000-0 11040-3 0 8495 2 26536 98.9594 68.3606 0010719 160.4195 199.7382 14.12108205185165 1 26536U 00055A 04117.32599135 .00000109 00000-0 83623-4 0 8481 2 26536 98.9595 68.7855 0010737 159.2538 200.9067 14.12108175185221 1 26536U 00055A 04117.75112450 .00000020 00000-0 35276-4 0 8493 2 26536 98.9595 69.2100 0010745 158.1235 202.0368 14.12107707185284 1 26536U 00055A 04118.45968064 -.00000044 00000-0 68129-6 0 8505 2 26536 98.9595 69.9190 0010845 155.9855 204.1837 14.12107600185381 1 26536U 00055A 04119.59336910 -.00000044 00000-0 68129-6 0 8522 2 26536 98.9595 71.0515 0010845 152.7880 207.3862 14.12107602185542 1 26536U 00055A 04120.37278006 -.00000044 00000-0 68129-6 0 8532 2 26536 98.9595 71.8301 0010845 150.5897 209.5887 14.12107604185652 1 26536U 00055A 04120.79791331 -.00000044 00000-0 68129-6 0 8540 2 26536 98.9595 72.2548 0010845 149.3906 210.7900 14.12107605185715 1 26536U 00055A 04121.50646871 -.00000047 00000-0 -97347-6 0 8546 2 26536 98.9589 72.9626 0010921 147.8288 212.3589 14.12107786185815 1 26536U 00055A 04122.78186751 .00000297 00000-0 18632-3 0 8567 2 26536 98.9587 74.2370 0010890 144.1948 216.0077 14.12110052185994 1 26536U 00055A 04123.49041914 .00000475 00000-0 28314-3 0 8574 2 26536 98.9596 74.9447 0010984 142.4254 217.7722 14.12111415186092 1 26536U 00055A 04123.91555044 .00000475 00000-0 28314-3 0 8586 2 26536 98.9596 75.3694 0010984 141.2265 218.9696 14.12111856186159 1 26536U 00055A 04124.26982699 .00000475 00000-0 28314-3 0 8585 2 26536 98.9596 75.7233 0010984 140.2274 219.9704 14.12112224186208 1 26536U 00055A 04124.69495873 .00000389 00000-0 23652-3 0 8590 2 26536 98.9596 76.1485 0011068 139.5821 220.6150 14.12112022186261 1 26536U 00055A 04125.40351292 .00000188 00000-0 12686-3 0 8598 2 26536 98.9599 76.8578 0011053 137.3020 222.9013 14.12111643186367 1 26536U 00055A 04125.82864483 .00000170 00000-0 11694-3 0 8606 2 26536 98.9599 77.2829 0011034 136.1004 224.1043 14.12111756186428 1 26536U 00055A 04126.11206615 .00000154 00000-0 10807-3 0 8603 2 26536 98.9602 77.5658 0011083 135.5017 224.7041 14.12111725186461 1 26536U 00055A 04126.60805347 .00000003 00000-0 25841-4 0 8613 2 26536 98.9610 78.0620 0011106 134.2315 225.9733 14.12110999186539 1 26536U 00055A 04127.38746387 -.00000173 00000-0 -69958-4 0 8614 2 26536 98.9611 78.8414 0011133 131.8446 228.3694 14.12110322186642 1 26536U 00055A 04128.30858363 -.00000173 00000-0 -69958-4 0 8626 2 26536 98.9611 79.7617 0011133 129.2467 230.9694 14.12110086186771 1 26536U 00055A 04128.66286062 -.00000108 00000-0 -34322-4 0 8632 2 26536 98.9613 80.1161 0011200 128.7568 231.4620 14.12110247186824 1 26536U 00055A 04129.44227021 -.00000207 00000-0 -88234-4 0 8630 2 26536 98.9612 80.8952 0011149 126.0169 234.2038 14.12109632186930 1 26536U 00055A 04129.79654729 .00000075 00000-0 65174-4 0 8658 2 26536 98.9613 81.2496 0011167 125.3319 234.8952 14.12110955186984 1 26536U 00055A 04130.50509973 .00000152 00000-0 10717-3 0 8668 2 26536 98.9612 81.9577 0011202 123.3306 236.8961 14.12111546187085 1 26536U 00055A 04130.85937587 .00000219 00000-0 14391-3 0 8679 2 26536 98.9611 82.3118 0011194 122.5273 237.7002 14.12112066187134 1 26536U 00055A 04131.21365187 .00000223 00000-0 14586-3 0 8672 2 26536 98.9611 82.6658 0011189 121.4056 238.8209 14.12112271187181 1 26536U 00055A 04131.63878353 .00000283 00000-0 17888-3 0 8687 2 26536 98.9610 83.0907 0011234 120.3248 239.9041 14.12112723187249 1 26536U 00055A 04132.48904536 .00000445 00000-0 26680-3 0 8684 2 26536 98.9611 83.9406 0011265 118.3854 241.8474 14.12114356187366 1 26536U 00055A 04133.41016216 .00000437 00000-0 26248-3 0 8699 2 26536 98.9608 84.8615 0011290 115.8453 244.3888 14.12115135187496 1 26536U 00055A 04133.90614788 .00000319 00000-0 19812-3 0 8701 2 26536 98.9610 85.3571 0011346 114.8964 245.3362 14.12114914187564 1 26536U 00055A 04134.33127916 .00000224 00000-0 14646-3 0 8706 2 26536 98.9612 85.7821 0011352 113.8115 246.4233 14.12114744187629 1 26536U 00055A 04134.68555513 .00000157 00000-0 11021-3 0 8712 2 26536 98.9613 86.1361 0011358 112.7247 247.5097 14.12114440187672 1 26536U 00055A 04135.39410734 .00000016 00000-0 32986-4 0 8714 2 26536 98.9612 86.8444 0011348 110.8058 249.4325 14.12114108187775 1 26536U 00055A 04135.81923845 -.00000099 00000-0 -29373-4 0 8723 2 26536 98.9616 87.2692 0011381 109.7601 250.4773 14.12113523187833 1 26536U 00055A 04136.17351495 -.00000149 00000-0 -56529-4 0 8728 2 26536 98.9616 87.6233 0011397 108.6995 251.5402 14.12113235187885 1 26536U 00055A 04136.95292234 -.00000138 00000-0 -50818-4 0 8744 2 26536 98.9617 88.4023 0011427 106.2071 254.0351 14.12113215187996 1 26536U 00055A 04137.23634330 -.00000150 00000-0 -57129-4 0 8738 2 26536 98.9617 88.6855 0011441 105.4445 254.7990 14.12113117188036 1 26536U 00055A 04137.66147461 -.00000168 00000-0 -67370-4 0 8759 2 26536 98.9620 89.1104 0011449 104.4567 255.7868 14.12112841188099 1 26536U 00055A 04138.44088149 -.00000116 00000-0 -38563-4 0 8758 2 26536 98.9619 89.8895 0011449 102.6207 257.6248 14.12113146188207 1 26536U 00055A 04138.79515747 .00000053 00000-0 53127-4 0 8767 2 26536 98.9618 90.2434 0011423 101.6850 258.5640 14.12113970188252 1 26536U 00055A 04139.14943256 .00000081 00000-0 68438-4 0 8769 2 26536 98.9616 90.5977 0011415 100.4959 259.7503 14.12114195188300 1 26536U 00055A 04139.92883888 .00000195 00000-0 13073-3 0 8792 2 26536 98.9616 91.3769 0011416 98.0665 262.1820 14.12115070188410 1 26536U 00055A 04140.28311402 .00000267 00000-0 16967-3 0 8785 2 26536 98.9617 91.7311 0011435 97.4781 262.7716 14.12115672188464 1 26536U 00055A 04140.70824390 .00000346 00000-0 21290-3 0 8791 2 26536 98.9622 92.1568 0011454 96.1124 264.1355 14.12116237188527 1 26536U 00055A 04141.41679316 .00000438 00000-0 26319-3 0 8795 2 26536 98.9623 92.8657 0011399 94.5249 265.7226 14.12117438188621 1 26536U 00055A 04141.84192294 .00000365 00000-0 22327-3 0 8803 2 26536 98.9620 93.2907 0011414 93.2102 267.0358 14.12117498188686 1 26536U 00055A 04142.55047284 .00000371 00000-0 22674-3 0 8802 2 26536 98.9623 93.9998 0011390 92.0606 268.1876 14.12117985188784 1 26536U 00055A 04142.90474740 .00000260 00000-0 16627-3 0 8811 2 26536 98.9621 94.3539 0011414 91.0265 269.2191 14.12117736188837 1 26536U 00055A 04143.32987755 .00000196 00000-0 13139-3 0 8816 2 26536 98.9624 94.7791 0011408 90.0322 270.2152 14.12117706188892 1 26536U 00055A 04143.68415239 .00000090 00000-0 73571-4 0 8829 2 26536 98.9628 95.1333 0011398 88.8980 271.3456 14.12117123188944 1 26536U 00055A 04144.39270405 -.00000067 00000-0 -12162-4 0 8827 2 26536 98.9626 95.8418 0011470 86.5574 273.6925 14.12116545189043 1 26536U 00055A 04144.81783379 -.00000105 00000-0 -33022-4 0 8846 2 26536 98.9629 96.2667 0011483 85.5426 274.7046 14.12116279189103 1 26536U 00055A 04145.17210911 -.00000149 00000-0 -56646-4 0 8848 2 26536 98.9630 96.6207 0011507 84.3984 275.8485 14.12116004189152 1 26536U 00055A 04145.95151477 -.00000149 00000-0 -56646-4 0 8867 2 26536 98.9630 97.3996 0011507 82.2004 278.0474 14.12115842189269 1 26536U 00055A 04146.30578996 -.00000149 00000-0 -56646-4 0 8855 2 26536 98.9630 97.7536 0011507 81.2012 279.0461 14.12115768189311 1 26536U 00055A 04146.73092021 -.00000023 00000-0 11760-4 0 8861 2 26536 98.9637 98.1785 0011534 80.8116 279.4396 14.12116335189377 1 26536U 00055A 04147.43946952 -.00000003 00000-0 22871-4 0 8863 2 26536 98.9635 98.8866 0011574 79.1606 281.0875 14.12116519189477 1 26536U 00055A 04147.79374436 .00000093 00000-0 75034-4 0 8872 2 26536 98.9633 99.2407 0011561 78.0428 282.2058 14.12117058189528 1 26536U 00055A 04148.00630887 .00000089 00000-0 72901-4 0 8877 2 26536 98.9632 99.4533 0011541 77.5605 282.6859 14.12117119189552 1 26536U 00055A 04148.36058365 .00000178 00000-0 12145-3 0 8884 2 26536 98.9629 99.8073 0011554 77.2308 283.0190 14.12117815189604 1 26536U 00055A 04148.50229281 .00000225 00000-0 14709-3 0 8899 2 26536 98.9631 99.9492 0011587 76.6866 283.5592 14.12118026189629 1 26536U 00055A 04149.28169686 .00000369 00000-0 22565-3 0 8895 2 26536 98.9629 100.7281 0011552 74.7413 285.5078 14.12119299189738 1 26536U 00055A 04149.63597022 .00000380 00000-0 23124-3 0 8911 2 26536 98.9627 101.0823 0011583 73.8201 286.4227 14.12119488189782 1 26536U 00055A 04150.34451829 .00000396 00000-0 24019-3 0 8916 2 26536 98.9624 101.7908 0011520 72.0323 288.2110 14.12120360189880 1 26536U 00055A 04150.76964687 .00000402 00000-0 24341-3 0 8920 2 26536 98.9626 102.2162 0011534 70.7574 289.4830 14.12120624189940 1 26536U 00055A 04151.47819489 .00000282 00000-0 17812-3 0 8929 2 26536 98.9622 102.9247 0011540 68.4731 291.7649 14.12120612190047 1 26536U 00055A 04151.90332392 .00000154 00000-0 10857-3 0 8931 2 26536 98.9618 103.3498 0011544 67.3676 292.8695 14.12120279190104 1 26536U 00055A 04152.25759828 .00000162 00000-0 11270-3 0 8936 2 26536 98.9619 103.7038 0011541 66.5034 293.7353 14.12120473190157 1 26536U 00055A 04152.61187209 .00000061 00000-0 57769-4 0 8947 2 26536 98.9625 104.0582 0011507 65.5313 294.7028 14.12119927190201 1 26536U 00055A 04153.74554976 -.00000126 00000-0 -44391-4 0 8953 2 26536 98.9628 105.1915 0011482 62.7592 297.4734 14.12119191190360 1 26536U 00055A 04154.52495349 -.00000155 00000-0 -59785-4 0 8953 2 26536 98.9628 105.9710 0011503 60.4286 299.8033 14.12118923190472 1 26536U 00055A 04155.23350203 -.00000167 00000-0 -66543-4 0 8965 2 26536 98.9629 106.6791 0011496 58.4344 301.7951 14.12118724190575 1 26536U 00055A 04155.65863112 -.00000029 00000-0 86630-5 0 8976 2 26536 98.9627 107.1037 0011500 57.6707 302.5611 14.12119397190638 1 26536U 00055A 04156.36717866 -.00000029 00000-0 86630-5 0 8979 2 26536 98.9627 107.8118 0011500 55.6724 304.5534 14.12119420190736 1 26536U 00055A 04156.72145275 -.00000029 00000-0 86630-5 0 8989 2 26536 98.9627 108.1658 0011500 54.6733 305.5512 14.12119431190782 1 26536U 00055A 04157.42999984 .00000144 00000-0 10274-3 0 8987 2 26536 98.9632 108.8752 0011460 53.3913 306.8321 14.12120541190888 1 26536U 00055A 04157.85512817 .00000207 00000-0 13746-3 0 8998 2 26536 98.9626 109.3002 0011451 52.0891 308.1332 14.12121090190940 1 26536U 00055A 04158.20940146 .00000255 00000-0 16346-3 0 8990 2 26536 98.9626 109.6543 0011427 51.1635 309.0566 14.12121510190993 1 26536U 00055A 04158.56367475 .00000263 00000-0 16757-3 0 9005 2 26536 98.9628 110.0088 0011408 50.4725 309.7456 14.12121735191047 1 26536U 00055A 04159.34307528 .00000345 00000-0 21216-3 0 9002 2 26536 98.9631 110.7881 0011251 48.8890 311.3259 14.12122830191158 1 26536U 00055A 04159.76820291 .00000345 00000-0 21216-3 0 9027 2 26536 98.9631 111.2130 0011251 47.6900 312.5223 14.12123160191218 1 26536U 00055A 04160.47674900 .00000305 00000-0 19045-3 0 9024 2 26536 98.9632 111.9221 0011175 45.9626 314.2452 14.12123398191315 1 26536U 00055A 04160.90187684 .00000203 00000-0 13497-3 0 9044 2 26536 98.9631 112.3471 0011135 45.1037 315.1018 14.12123162191373 1 26536U 00055A 04161.32700488 .00000171 00000-0 11779-3 0 9049 2 26536 98.9632 112.7721 0011115 43.8650 316.3405 14.12123271191431 1 26536U 00055A 04161.32701429 .00000174 00000-0 94772-4 0 9043 2 26536 98.9643 112.7737 0011608 45.8244 314.4364 14.12123859191433 1 26536U 00055A 04161.75213249 .00000036 00000-0 43819-4 0 9052 2 26536 98.9634 113.1968 0011082 42.8212 317.3783 14.12122604191492 1 26536U 00055A 04162.10640644 -.00000049 00000-0 -20082-5 0 9059 2 26536 98.9635 113.5511 0011107 41.8673 318.3325 14.12122212191543 1 26536U 00055A 04163.02751748 -.00000049 00000-0 -20082-5 0 9060 2 26536 98.9635 114.4717 0011107 39.2696 320.9279 14.12122205191670 1 26536U 00055A 04165.01144797 -.00000038 00000-0 38184-5 0 9082 2 26536 98.9626 116.4548 0011025 33.7149 326.4683 14.12121867191959 1 26536U 00055A 04165.36572211 .00000031 00000-0 41153-4 0 9098 2 26536 98.9627 116.8090 0010997 32.9785 327.2096 14.12122340192001 1 26536U 00055A 04165.71999484 .00000127 00000-0 93701-4 0 9106 2 26536 98.9626 117.1631 0011031 31.8928 328.2917 14.12122807192058 1 26536U 00055A 04166.42854022 .00000253 00000-0 16229-3 0 9102 2 26536 98.9627 117.8720 0011041 29.6881 330.4930 14.12123926192153 1 26536U 00055A 04166.85366730 .00000396 00000-0 24003-3 0 9111 2 26536 98.9626 118.2971 0011037 28.2534 331.9264 14.12124917192214 1 26536U 00055A 04167.20793926 .00000475 00000-0 28333-3 0 9110 2 26536 98.9623 118.6512 0010973 27.3494 332.8268 14.12125578192262 1 26536U 00055A 04167.56221135 .00000383 00000-0 23311-3 0 9127 2 26536 98.9627 119.0058 0010956 26.4059 333.7638 14.12125306192310 1 26536U 00055A 04168.34161136 .00000330 00000-0 20428-3 0 9126 2 26536 98.9626 119.7854 0010894 24.4227 335.7475 14.12125863192427 1 26536U 00055A 04168.69588334 .00000290 00000-0 18241-3 0 9133 2 26536 98.9632 120.1402 0010863 23.6317 336.5326 14.12125712192478 1 26536U 00055A 04169.54613746 .00000106 00000-0 82413-4 0 9133 2 26536 98.9638 120.9905 0010802 21.3756 338.7843 14.12125347192590 1 26536U 00055A 04169.90041033 .00000070 00000-0 62555-4 0 9143 2 26536 98.9636 121.3447 0010846 20.3509 339.8080 14.12125260192642 1 26536U 00055A 04170.25468305 .00000064 00000-0 59259-4 0 9148 2 26536 98.9638 121.6987 0010849 19.4701 340.6880 14.12125323192695 1 26536U 00055A 04170.60895554 -.00000060 00000-0 -84578-5 0 9159 2 26536 98.9643 122.0532 0010816 18.5173 341.6360 14.12124641192741 1 26536U 00055A 04171.38835621 -.00000117 00000-0 -39452-4 0 9157 2 26536 98.9644 122.8324 0010821 16.3918 343.7601 14.12124303192856 1 26536U 00055A 04171.74262893 -.00000218 00000-0 -94176-4 0 9169 2 26536 98.9647 123.1867 0010687 15.8257 344.3230 14.12123670192902 1 26536U 00055A 04172.09690214 -.00000204 00000-0 -86951-4 0 9167 2 26536 98.9647 123.5408 0010614 14.8149 345.3360 14.12123800192951 1 26536U 00055A 04172.94715647 -.00000098 00000-0 -28651-4 0 9185 2 26536 98.9648 124.3910 0010669 12.2711 347.8741 14.12124119193074 1 26536U 00055A 04173.30142877 -.00000080 00000-0 -19065-4 0 9174 2 26536 98.9648 124.7452 0010663 11.3536 348.7879 14.12124204193121 1 26536U 00055A 04173.65570141 -.00000030 00000-0 80894-5 0 9196 2 26536 98.9648 125.0996 0010726 10.2221 349.9160 14.12124303193178 1 26536U 00055A 04174.36424643 .00000041 00000-0 46817-4 0 9197 2 26536 98.9643 125.8082 0010766 8.0372 352.0970 14.12124808193278 1 26536U 00055A 04174.78937351 .00000041 00000-0 46817-4 0 9200 2 26536 98.9643 126.2332 0010766 6.8383 353.2933 14.12124881193339 1 26536U 00055A 04175.42706311 .00000255 00000-0 16331-3 0 9206 2 26536 98.9652 126.8729 0010696 4.3780 355.7516 14.12126316193420 1 26536U 00055A 04175.85218905 .00000444 00000-0 26641-3 0 9216 2 26536 98.9649 127.2980 0010696 2.9402 357.1869 14.12127527193483 1 26536U 00055A 04176.20646014 .00000528 00000-0 31217-3 0 9210 2 26536 98.9648 127.6522 0010666 1.8502 358.2721 14.12128244193536 1 26536U 00055A 04176.91500283 .00000544 00000-0 32071-3 0 9234 2 26536 98.9641 128.3606 0010661 0.1201 359.9936 14.12128942193635 1 26536U 00055A 04177.26927500 .00000532 00000-0 31413-3 0 9223 2 26536 98.9642 128.7148 0010661 359.1908 0.9238 14.12129277193687 1 26536U 00055A 04177.69440079 .00000394 00000-0 23907-3 0 9237 2 26536 98.9645 129.1399 0010621 357.9473 2.1617 14.12128908193744 1 26536U 00055A 04178.40294514 .00000281 00000-0 17776-3 0 9230 2 26536 98.9643 129.8483 0010629 356.1201 3.9886 14.12128857193842 1 26536U 00055A 04178.82807097 -.00000039 00000-0 30364-5 0 9245 2 26536 98.9642 130.2736 0010580 354.9374 5.1631 14.12127484193905 1 26536U 00055A 04179.89088848 -.00000093 00000-0 -26080-4 0 9260 2 26536 98.9639 131.3352 0010558 352.6105 7.4907 14.12127146194052 1 26536U 00055A 04180.31601491 -.00000080 00000-0 -19144-4 0 9263 2 26536 98.9638 131.7602 0010503 351.5478 8.5524 14.12127246194119 1 26536U 00055A 04180.74114110 -.00000126 00000-0 -44040-4 0 9272 2 26536 98.9640 132.1848 0010422 350.3173 9.7776 14.12126807194178 1 26536U 00055A 04181.44968571 -.00000126 00000-0 -44040-4 0 9278 2 26536 98.9640 132.8930 0010422 348.3191 11.7737 14.12126692194277 1 26536U 00055A 04181.87481227 -.00000126 00000-0 -44040-4 0 9284 2 26536 98.9640 133.3179 0010422 347.1202 12.9702 14.12126624194335 1 26536U 00055A 04182.15822999 -.00000126 00000-0 -44040-4 0 9281 2 26536 98.9640 133.6012 0010422 346.3209 13.7678 14.12126578194375 1 26536U 00055A 04182.58335658 -.00000126 00000-0 -44040-4 0 9290 2 26536 98.9640 134.0261 0010422 345.1220 14.9643 14.12126510194434 1 26536U 00055A 04183.36275391 .00000024 00000-0 37665-4 0 9294 2 26536 98.9638 134.8071 0010352 342.5849 17.4984 14.12127581194545 1 26536U 00055A 04183.85874382 .00000002 00000-0 99825-6 0 9310 2 26536 98.9645 135.3041 0010429 341.0938 19.0314 14.12127292194616 1 26536U 00055A 04183.92958860 .00000168 00000-0 11611-3 0 9319 2 26536 98.9637 135.3744 0010362 340.8262 19.2549 14.12128398194621 1 26536U 00055A 04184.28385969 .00000247 00000-0 15892-3 0 9327 2 26536 98.9636 135.7285 0010311 339.8638 20.2145 14.12129002194675 1 26536U 00055A 04184.70898514 .00000335 00000-0 20725-3 0 9339 2 26536 98.9639 136.1543 0010390 338.8153 21.2590 14.12129606194730 1 26536U 00055A 04185.48838152 .00000420 00000-0 25337-3 0 9336 2 26536 98.9644 136.9344 0010342 336.4483 23.6217 14.12130676194843 1 26536U 00055A 04185.91350678 .00000384 00000-0 23359-3 0 9348 2 26536 98.9641 137.3595 0010332 335.3286 24.7375 14.12130829194905 1 26536U 00055A 04186.26777815 .00000336 00000-0 20770-3 0 9344 2 26536 98.9643 137.7138 0010322 334.3412 25.7238 14.12130897194952 1 26536U 00055A 04186.69290358 .00000229 00000-0 14931-3 0 9357 2 26536 98.9645 138.1393 0010252 332.9600 27.1009 14.12130527195017 1 26536U 00055A 04187.40144681 .00000074 00000-0 65082-4 0 9356 2 26536 98.9643 138.8477 0010286 331.0371 29.0219 14.12130144195117 1 26536U 00055A 04188.18084429 -.00000077 00000-0 -17377-4 0 9365 2 26536 98.9644 139.6272 0010273 329.0558 30.9988 14.12129480195227 1 26536U 00055A 04188.96024192 -.00000176 00000-0 -71555-4 0 9382 2 26536 98.9645 140.4065 0010164 326.6091 33.4424 14.12128892195333 1 26536U 00055A 04189.31451385 -.00000176 00000-0 -71555-4 0 9379 2 26536 98.9645 140.7606 0010164 325.6101 34.4412 14.12128799195387 1 26536U 00055A 04189.66878553 -.00000211 00000-0 -90269-4 0 9381 2 26536 98.9646 141.1145 0010107 324.5162 35.5325 14.12128452195430 1 26536U 00055A 04190.44818295 -.00000112 00000-0 -36646-4 0 9385 2 26536 98.9643 141.8935 0010101 322.1932 37.8543 14.12128992195542 1 26536U 00055A 04190.80245431 -.00000065 00000-0 -10952-4 0 9403 2 26536 98.9642 142.2479 0010145 321.2713 38.7732 14.12129128195591 1 26536U 00055A 04191.15672588 -.00000011 00000-0 18659-4 0 9401 2 26536 98.9641 142.6022 0010130 320.1797 39.8644 14.12129411195647 1 26536U 00055A 04191.93612281 .00000095 00000-0 76391-4 0 9421 2 26536 98.9637 143.3813 0010067 317.7227 42.3188 14.12130051195753 1 26536U 00055A 04192.29039379 .00000146 00000-0 10378-3 0 9410 2 26536 98.9635 143.7353 0010033 316.6461 43.3936 14.12130472195800 1 26536U 00055A 04192.64466475 .00000114 00000-0 86560-4 0 9434 2 26536 98.9631 144.0891 0010042 315.5102 44.5236 14.12130227195856 1 26536U 00055A 04193.35320674 .00000295 00000-0 18500-3 0 9431 2 26536 98.9631 144.7975 0009988 313.0187 47.0170 14.12131759195956 1 26536U 00055A 04193.84918562 .00000391 00000-0 23743-3 0 9447 2 26536 98.9627 145.2933 0009993 311.5922 48.4413 14.12132620196029 1 26536U 00055A 04194.13260182 .00000427 00000-0 25690-3 0 9441 2 26536 98.9632 145.5765 0009951 310.4674 49.5627 14.12132889196067 1 26536U 00055A 04194.91199734 .00000410 00000-0 24799-3 0 9464 2 26536 98.9633 146.3568 0009892 308.4076 51.6195 14.12133442196177 1 26536U 00055A 04195.26626812 .00000379 00000-0 23076-3 0 9455 2 26536 98.9638 146.7113 0009834 307.1345 52.8925 14.12133594196221 1 26536U 00055A 04195.76224688 .00000274 00000-0 17369-3 0 9479 2 26536 98.9639 147.2074 0009801 305.5294 54.4930 14.12133301196290 1 26536U 00055A 04196.47078959 .00000026 00000-0 38762-4 0 9472 2 26536 98.9639 147.9161 0009797 303.4982 56.5245 14.12132422196395 1 26536U 00055A 04196.96676895 -.00000187 00000-0 -77447-4 0 9483 2 26536 98.9640 148.4122 0009736 302.0168 58.0016 14.12131406196466 1 26536U 00055A 04197.32104092 -.00000252 00000-0 -11294-3 0 9489 2 26536 98.9643 148.7666 0009698 300.8592 59.1627 14.12131110196517 1 26536U 00055A 04197.67531212 -.00000143 00000-0 -53444-4 0 9499 2 26536 98.9647 149.1214 0009750 300.4301 59.5900 14.12131301196563 1 26536U 00055A 04198.45470891 -.00000174 00000-0 -70322-4 0 9499 2 26536 98.9645 149.9007 0009755 298.3289 61.6905 14.12131111196674 1 26536U 00055A 04198.80898001 -.00000176 00000-0 -71454-4 0 9506 2 26536 98.9644 150.2551 0009805 297.7091 62.3084 14.12131054196720 1 26536U 00055A 04199.16325130 -.00000121 00000-0 -41566-4 0 9505 2 26536 98.9640 150.6096 0009796 296.4952 63.5226 14.12131220196776 1 26536U 00055A 04199.58837654 -.00000077 00000-0 -17179-4 0 9514 2 26536 98.9642 151.0347 0009746 295.0588 64.9581 14.12131359196836 1 26536U 00055A 04200.36777288 -.00000007 00000-0 20586-4 0 9517 2 26536 98.9645 151.8136 0009711 292.4756 67.5411 14.12131797196942 1 26536U 00055A 04200.79289772 .00000107 00000-0 82749-4 0 9520 2 26536 98.9648 152.2390 0009722 291.3177 68.6975 14.12132381197004 1 26536U 00055A 04201.50143886 .00000250 00000-0 16062-3 0 9528 2 26536 98.9652 152.9482 0009718 289.4632 70.5516 14.12133506197101 1 26536U 00055A 04202.28083296 .00000450 00000-0 26949-3 0 9530 2 26536 98.9649 153.7274 0009729 286.8467 73.1652 14.12135073197217 1 26536U 00055A 04202.70595697 .00000419 00000-0 25284-3 0 9547 2 26536 98.9654 154.1531 0009687 285.6610 74.3464 14.12135124197271 1 26536U 00055A 04203.41449792 .00000378 00000-0 23064-3 0 9548 2 26536 98.9652 154.8623 0009699 283.4276 76.5814 14.12135612197371 1 26536U 00055A 04203.83962210 .00000302 00000-0 18912-3 0 9553 2 26536 98.9653 155.2873 0009683 282.0728 77.9337 14.12135506197438 1 26536U 00055A 04204.54816325 .00000084 00000-0 70251-4 0 9559 2 26536 98.9660 155.9962 0009661 279.6859 80.3199 14.12134810197537 1 26536U 00055A 04204.90243409 .00000072 00000-0 63989-4 0 9575 2 26536 98.9655 156.3507 0009664 278.5028 81.5053 14.12134886197580 1 26536U 00055A 04205.25670438 .00000072 00000-0 63989-4 0 9570 2 26536 98.9655 156.7049 0009664 277.5037 82.5036 14.12134969197634 1 26536U 00055A 04205.68182884 .00000006 00000-0 27643-4 0 9585 2 26536 98.9658 157.1296 0009646 275.7849 84.2212 14.12134674197691 1 26536U 00055A 04206.46122396 .00000004 00000-0 26859-4 0 9580 2 26536 98.9659 157.9089 0009656 273.4892 86.5175 14.12134778197805 1 26536U 00055A 04206.81549443 -.00000042 00000-0 15513-5 0 9607 2 26536 98.9658 158.2628 0009654 271.3704 88.6369 14.12134595197854 1 26536U 00055A 04207.09891069 -.00000042 00000-0 15513-5 0 9602 2 26536 98.9658 158.5462 0009654 270.5712 89.4353 14.12134597197891 1 26536U 00055A 04207.94915997 -.00000042 00000-0 15513-5 0 9625 2 26536 98.9658 159.3962 0009654 268.1734 91.8331 14.12134602198017 1 26536U 00055A 04208.30343052 -.00000010 00000-0 19265-4 0 9614 2 26536 98.9657 159.7500 0009582 267.0085 92.9984 14.12134757198067 1 26536U 00055A 04208.72855524 -.00000010 00000-0 19265-4 0 9623 2 26536 98.9657 160.1750 0009582 265.8096 94.1980 14.12134787198128 1 26536U 00055A 04209.50795037 .00000087 00000-0 71920-4 0 9621 2 26536 98.9658 160.9548 0009559 262.8254 97.1862 14.12135400198236 1 26536U 00055A 04209.86222011 .00000253 00000-0 16212-3 0 9635 2 26536 98.9654 161.3091 0009594 261.9617 98.0505 14.12136405198287 1 26536U 00055A 04210.28734346 .00000286 00000-0 18007-3 0 9632 2 26536 98.9654 161.7342 0009594 260.4302 99.5799 14.12136871198340 1 26536U 00055A 04210.71246719 .00000340 00000-0 20946-3 0 9649 2 26536 98.9660 162.1598 0009566 259.4409 100.5681 14.12137311198400 1 26536U 00055A 04211.49186028 .00000378 00000-0 23065-3 0 9647 2 26536 98.9659 162.9397 0009596 257.0892 102.9208 14.12138296198512 1 26536U 00055A 04211.84612992 .00000388 00000-0 23594-3 0 9659 2 26536 98.9654 163.2942 0009578 256.5775 103.4330 14.12138716198565 1 26536U 00055A 04212.20039945 .00000520 00000-0 30799-3 0 9654 2 26536 98.9651 163.6489 0009643 254.7905 105.2228 14.12139582198614 1 26536U 00055A 04212.62552211 .00000369 00000-0 22543-3 0 9666 2 26536 98.9656 164.0745 0009663 253.3960 106.6111 14.12139111198677 1 26536U 00055A 04213.33406214 .00000283 00000-0 17870-3 0 9668 2 26536 98.9659 164.7835 0009644 251.2418 108.7716 14.12139328198776 1 26536U 00055A 04213.75918528 .00000139 00000-0 10013-3 0 9673 2 26536 98.9659 165.2086 0009663 249.9241 110.0858 14.12138777198836 1 26536U 00055A 04214.46772536 -.00000010 00000-0 18921-4 0 9675 2 26536 98.9661 165.9176 0009671 247.9455 112.0670 14.12138200198936 1 26536U 00055A 04214.89284946 -.00000110 00000-0 -35636-4 0 9680 2 26536 98.9663 166.3427 0009652 246.7354 113.2781 14.12137728198992 1 26536U 00055A 04215.24711977 -.00000144 00000-0 -53919-4 0 9680 2 26536 98.9664 166.6970 0009652 245.6627 114.3530 14.12137497199044 1 26536U 00055A 04215.67224387 -.00000226 00000-0 -98345-4 0 9695 2 26536 98.9662 167.1221 0009690 244.1430 115.8722 14.12136880199106 1 26536U 00055A 04216.38078431 -.00000274 00000-0 -12463-3 0 9690 2 26536 98.9663 167.8306 0009742 241.6721 118.3472 14.12136565199202 1 26536U 00055A 04216.80590852 -.00000163 00000-0 -64127-4 0 9707 2 26536 98.9665 168.2560 0009752 240.7284 119.2938 14.12136976199265 1 26536U 00055A 04217.16017815 -.00000163 00000-0 -64127-4 0 9700 2 26536 98.9665 168.6102 0009752 239.7294 120.2913 14.12136892199318 1 26536U 00055A 04217.58530234 -.00000163 00000-0 -64127-4 0 9712 2 26536 98.9665 169.0352 0009752 238.5305 121.4914 14.12136792199379 1 26536U 00055A 04218.36469517 .00000083 00000-0 69886-4 0 9710 2 26536 98.9662 169.8147 0009832 236.0314 123.9924 14.12138105199488 1 26536U 00055A 04218.78981900 .00000172 00000-0 11828-3 0 9723 2 26536 98.9661 170.2399 0009864 234.6196 125.4079 14.12138708199543 1 26536U 00055A 04219.14408822 .00000291 00000-0 18293-3 0 9726 2 26536 98.9660 170.5940 0009959 233.1629 126.8670 14.12139529199596 1 26536U 00055A 04219.92348013 .00000326 00000-0 20182-3 0 9748 2 26536 98.9663 171.3739 0009944 230.8563 129.1725 14.12140222199701 1 26536U 00055A 04220.27774947 .00000318 00000-0 19756-3 0 9732 2 26536 98.9659 171.7285 0009959 229.5479 130.4819 14.12140396199759 1 26536U 00055A 04220.63201888 .00000357 00000-0 21904-3 0 9743 2 26536 98.9663 172.0831 0009942 228.5191 131.5128 14.12140788199803 1 26536U 00055A 04221.41141139 .00000287 00000-0 18076-3 0 9740 2 26536 98.9659 172.8630 0009878 226.7184 133.3162 14.12141043199918 1 26536U 00055A 04221.83653441 .00000232 00000-0 15085-3 0 9758 2 26536 98.9658 173.2883 0009863 225.4855 134.5499 14.12141063199971 1 26536U 00055A 04222.19080380 .00000201 00000-0 13388-3 0 9754 2 26536 98.9658 173.6425 0009874 224.4014 135.6362 14.12141108200025 1 26536U 00055A 04222.89934276 .00000055 00000-0 54676-4 0 9778 2 26536 98.9659 174.3516 0009832 222.5384 137.5016 14.12140621200125 1 26536U 00055A 04223.32446612 .00000049 00000-0 51145-4 0 9769 2 26536 98.9659 174.7768 0009837 221.2755 138.7672 14.12140663200184 1 26536U 00055A 04223.74958930 -.00000038 00000-0 40273-5 0 9788 2 26536 98.9662 175.2018 0009873 219.8512 140.1903 14.12140096200247 1 26536U 00055A 04224.17471328 -.00000138 00000-0 -50598-4 0 9789 2 26536 98.9657 175.6269 0009741 219.1543 140.8904 14.12139717200307 1 26536U 00055A 04224.52898324 -.00000194 00000-0 -81032-4 0 9797 2 26536 98.9660 175.9810 0009844 217.6007 142.4483 14.12139424200358 1 26536U 00055A 04224.88325277 -.00000158 00000-0 -61605-4 0 9804 2 26536 98.9664 176.3352 0009912 216.5498 143.5013 14.12139498200404 1 26536U 00055A 04225.30837603 -.00000125 00000-0 -43778-4 0 9808 2 26536 98.9662 176.7602 0009913 215.2940 144.7584 14.12139608200468 1 26536U 00055A 04225.73349938 -.00000136 00000-0 -49473-4 0 9815 2 26536 98.9653 177.1844 0009947 213.9304 146.1226 14.12139450200528 1 26536U 00055A 04225.80436175 .00000092 00000-0 50318-4 0 9801 2 26536 98.9669 177.2578 0010000 213.9953 146.1052 14.12140704200534 1 26536U 00055A 04226.44203881 -.00000058 00000-0 -68928-5 0 9810 2 26536 98.9653 177.8934 0010025 211.7078 148.3524 14.12139814200628 1 26536U 00055A 04226.79630771 -.00000058 00000-0 -68928-5 0 9832 2 26536 98.9653 178.2476 0010025 210.7087 149.3498 14.12139805200679 1 26536U 00055A 04227.22143120 .00000047 00000-0 50342-4 0 9834 2 26536 98.9663 178.6723 0009953 210.1094 149.9557 14.12140806200731 1 26536U 00055A 04227.57569951 .00000169 00000-0 11638-3 0 9857 2 26536 98.9652 179.0273 0010079 208.3712 151.6925 14.12141206200780 1 26536U 00055A 04228.35509062 .00000282 00000-0 17785-3 0 9856 2 26536 98.9656 179.8070 0010175 206.1009 153.9660 14.12142309200897 1 26536U 00055A 04228.78021315 .00000343 00000-0 21145-3 0 9878 2 26536 98.9653 180.2323 0010114 205.0684 154.9993 14.12142790200952 1 26536U 00055A 04229.06362829 .00000385 00000-0 23400-3 0 9870 2 26536 98.9648 180.5161 0010222 204.1575 155.9138 14.12143229200992 1 26536U 00055A 04229.84301894 .00000382 00000-0 23274-3 0 9899 2 26536 98.9652 181.2958 0010246 201.8707 158.2034 14.12143914201102 1 26536U 00055A 04230.26814107 .00000376 00000-0 22924-3 0 9886 2 26536 98.9656 181.7211 0010256 200.6035 159.4719 14.12144193201164 1 26536U 00055A 04230.69326333 .00000245 00000-0 15814-3 0 9898 2 26536 98.9664 182.1476 0010301 199.5625 160.5127 14.12143761201226 1 26536U 00055A 04231.11838614 .00000167 00000-0 11527-3 0 9896 2 26536 98.9667 182.5730 0010283 198.2726 161.8061 14.12143606201288 1 26536U 00055A 04231.89777774 -.00000004 00000-0 22457-4 0 9919 2 26536 98.9671 183.3528 0010179 196.1628 163.9185 14.12142948201399 1 26536U 00055A 04232.25204724 -.00000018 00000-0 14896-4 0 9902 2 26536 98.9673 183.7072 0010189 195.0500 165.0368 14.12142924201443 1 26536U 00055A 04232.67716985 -.00000148 00000-0 -56109-4 0 9925 2 26536 98.9678 184.1326 0010220 193.9025 166.1836 14.12142156201506 1 26536U 00055A 04233.45656247 -.00000204 00000-0 -86918-4 0 9920 2 26536 98.9676 184.9122 0010174 191.6953 168.3983 14.12141775201614 1 26536U 00055A 04233.81083160 -.00000107 00000-0 -33548-4 0 9932 2 26536 98.9680 185.2670 0010207 190.6624 169.4363 14.12142247201666 1 26536U 00055A 04234.23595379 -.00000094 00000-0 -26559-4 0 9938 2 26536 98.9680 185.6921 0010184 189.4616 170.6364 14.12142255201721 1 26536U 00055A 04234.59022279 -.00000025 00000-0 11029-4 0 9941 2 26536 98.9682 186.0466 0010222 188.2199 171.8817 14.12142537201772 1 26536U 00055A 04235.36961404 -.00000004 00000-0 22120-4 0 9940 2 26536 98.9680 186.8262 0010190 186.1370 173.9678 14.12142725201883 1 26536U 00055A 04235.72388291 .00000126 00000-0 92966-4 0 9957 2 26536 98.9685 187.1812 0010291 184.7341 175.3763 14.12143409201934 1 26536U 00055A 04236.50327344 .00000234 00000-0 15208-3 0 9959 2 26536 98.9683 187.9605 0010375 182.4272 177.6887 14.12144337202047 1 26536U 00055A 04236.85754118 .00000234 00000-0 15208-3 0 9961 2 26536 98.9683 188.3148 0010375 181.4283 178.6861 14.12144534202092 1 26536U 00055A 04237.28266327 .00000321 00000-0 19923-3 0 9964 2 26536 98.9679 188.7399 0010456 180.3373 179.7832 14.12145369202151 1 26536U 00055A 04237.63693071 .00000372 00000-0 22695-3 0 9970 2 26536 98.9683 189.0950 0010444 179.2535 180.8653 14.12145784202208 1 26536U 00055A 04238.41632041 .00000372 00000-0 22695-3 0 9977 2 26536 98.9683 189.8744 0010444 177.0560 183.0675 14.12146432202313 1 26536U 00055A 04238.77058833 .00000372 00000-0 22695-3 0 9999 2 26536 98.9683 190.2287 0010444 176.0571 184.0684 14.12146727202365 1 26536U 00055A 04239.26656330 .00000276 00000-0 17477-3 0 9995 2 26536 98.9681 190.7254 0010580 174.5899 185.5374 14.12146582202438 1 26536U 00055A 04239.69168507 .00000123 00000-0 91264-4 0 07 2 26536 98.9683 191.1509 0010653 173.5422 186.5856 14.12145950202490 1 26536U 00055A 04239.83340244 .00000259 00000-0 14110-3 0 9994 2 26536 98.9687 191.2937 0010443 173.3182 186.8603 14.12146385202517 1 26536U 00055A 04240.47107571 -.00000024 00000-0 11589-4 0 02 2 26536 98.9680 191.9306 0010653 171.3367 188.7987 14.12145552202604 1 26536U 00055A 04240.89619759 -.00000047 00000-0 -12428-5 0 26 2 26536 98.9678 192.3560 0010662 170.1245 190.0138 14.12145502202665 1 26536U 00055A 04241.25046579 -.00000049 00000-0 -20656-5 0 25 2 26536 98.9677 192.7103 0010667 169.0752 191.0650 14.12145474202710 1 26536U 00055A 04241.60473406 -.00000049 00000-0 -20656-5 0 38 2 26536 98.9677 193.0645 0010667 168.0762 192.0664 14.12145471202763 1 26536U 00055A 04242.38412373 -.00000073 00000-0 -15465-4 0 38 2 26536 98.9678 193.8446 0010800 166.1462 193.9995 14.12145311202878 1 26536U 00055A 04242.80924588 -.00000104 00000-0 -32141-4 0 58 2 26536 98.9675 194.2697 0010772 164.8312 195.3172 14.12145116202938 1 26536U 00055A 04243.16351442 -.00000101 00000-0 -30549-4 0 58 2 26536 98.9676 194.6239 0010807 163.9334 196.2185 14.12145079202985 1 26536U 00055A 04243.94290477 -.00000187 00000-0 -77559-4 0 72 2 26536 98.9674 195.4039 0010565 162.1177 198.0352 14.12144502203096 1 26536U 00055A 04244.36802723 -.00000126 00000-0 -43949-4 0 60 2 26536 98.9675 195.8290 0010650 161.0504 199.1105 14.12144926203152 1 26536U 00055A 04244.79314844 .00000052 00000-0 53013-4 0 79 2 26536 98.9676 196.2544 0010577 159.7962 200.3665 14.12145825203212 1 26536U 00055A 04245.14741583 .00000189 00000-0 12717-3 0 79 2 26536 98.9676 196.6087 0010635 159.0331 201.1309 14.12146566203268 1 26536U 00055A 04245.92680404 .00000415 00000-0 25030-3 0 95 2 26536 98.9680 197.3885 0010684 157.0454 203.1238 14.12148221203370 1 26536U 00055A 04246.35192415 .00000525 00000-0 31008-3 0 86 2 26536 98.9683 197.8141 0010724 156.0342 204.1361 14.12149205203431 1 26536U 00055A 04246.91875101 .00000485 00000-0 28880-3 0 100 2 26536 98.9684 198.3819 0010645 153.9724 206.1942 14.12149429203516 1 26536U 00055A 04247.41472579 .00000369 00000-0 22542-3 0 108 2 26536 98.9683 198.8777 0010703 152.8970 207.2749 14.12149360203587 1 26536U 00055A 04247.76899321 .00000289 00000-0 18179-3 0 128 2 26536 98.9687 199.2321 0010754 151.9115 208.2610 14.12149087203638 1 26536U 00055A 04248.19411442 .00000149 00000-0 10584-3 0 127 2 26536 98.9687 199.6574 0010775 150.5714 209.6049 14.12148770203690 1 26536U 00055A 04248.54838208 -.00000012 00000-0 17805-4 0 134 2 26536 98.9691 200.0117 0010811 149.8274 210.3512 14.12148224203742 1 26536U 00055A 04249.32777076 .00000030 00000-0 41018-4 0 138 2 26536 98.9699 200.7925 0010960 147.0615 213.1245 14.12148521203854 1 26536U 00055A 04249.75289151 -.00000072 00000-0 -14595-4 0 146 2 26536 98.9701 201.2177 0010975 145.8598 214.3247 14.12147904203911 1 26536U 00055A 04250.53228085 -.00000124 00000-0 -43344-4 0 145 2 26536 98.9703 201.9977 0010998 143.6909 216.5008 14.12147583204020 1 26536U 00055A 04250.88654850 -.00000153 00000-0 -58793-4 0 164 2 26536 98.9701 202.3523 0011011 142.7165 217.4774 14.12147458204077 1 26536U 00055A 04251.31166963 -.00000147 00000-0 -55880-4 0 163 2 26536 98.9700 202.7775 0011066 141.6706 218.5262 14.12147435204134 1 26536U 00055A 04251.73679064 -.00000165 00000-0 -65593-4 0 173 2 26536 98.9701 203.2026 0011084 140.6638 219.5331 14.12147151204192 1 26536U 00055A 04252.51617903 -.00000065 00000-0 -10880-4 0 172 2 26536 98.9702 203.9831 0011080 138.4338 221.7677 14.12147627204301 1 26536U 00055A 04252.87044659 .00000095 00000-0 76186-4 0 186 2 26536 98.9698 204.3379 0011003 137.4004 222.8066 14.12148578204356 1 26536U 00055A 04253.29556648 .00000180 00000-0 12236-3 0 189 2 26536 98.9695 204.7629 0011018 136.3362 223.8702 14.12149146204413 1 26536U 00055A 04253.72068668 .00000217 00000-0 14275-3 0 194 2 26536 98.9695 205.1883 0011034 135.2042 225.0022 14.12149442204475 1 26536U 00055A 04253.79154990 .00000055 00000-0 29740-4 0 188 2 26536 98.9708 205.2611 0010980 134.8367 225.4175 14.12148611204485 1 26536U 00055A 04254.50007261 .00000330 00000-0 20431-3 0 190 2 26536 98.9698 205.9679 0011070 133.8424 226.3653 14.12150670204588 1 26536U 00055A 04254.85433956 .00000330 00000-0 20431-3 0 204 2 26536 98.9698 206.3223 0011070 132.8435 227.3668 14.12150936204637 1 26536U 00055A 04255.27945955 .00000417 00000-0 25149-3 0 205 2 26536 98.9693 206.7476 0011167 132.2492 227.9654 14.12151704204691 1 26536U 00055A 04255.70457879 .00000362 00000-0 22153-3 0 218 2 26536 98.9700 207.1737 0011185 131.0764 229.1358 14.12151710204753 1 26536U 00055A 04256.48396585 .00000224 00000-0 14661-3 0 212 2 26536 98.9701 207.9543 0011200 128.8227 231.3945 14.12151587204864 1 26536U 00055A 04256.83823236 .00000199 00000-0 13297-3 0 225 2 26536 98.9704 208.3089 0011229 127.9362 232.2825 14.12151672204916 1 26536U 00055A 04257.26335214 .00000172 00000-0 11783-3 0 226 2 26536 98.9704 208.7345 0011263 126.6907 233.5293 14.12151737204975 1 26536U 00055A 04257.68847203 .00000143 00000-0 10230-3 0 233 2 26536 98.9709 209.1602 0011291 125.4859 234.7350 14.12151639205031 1 26536U 00055A 04258.46785903 .00000070 00000-0 62768-4 0 231 2 26536 98.9710 209.9403 0011352 123.3001 236.9263 14.12151501205141 1 26536U 00055A 04258.89297874 -.00000096 00000-0 -27972-4 0 253 2 26536 98.9706 210.3662 0011325 121.4951 238.7289 14.12150831205202 1 26536U 00055A 04259.31809950 -.00000087 00000-0 -22951-4 0 257 2 26536 98.9710 210.7916 0011345 120.2840 239.9457 14.12150839205263 1 26536U 00055A 04259.74321946 -.00000097 00000-0 -28527-4 0 265 2 26536 98.9714 211.2170 0011370 119.2307 240.9985 14.12150567205322 1 26536U 00055A 04260.45175293 -.00000088 00000-0 -23637-4 0 264 2 26536 98.9712 211.9258 0011349 117.0832 243.1498 14.12150680205420 1 26536U 00055A 04260.87687293 -.00000100 00000-0 -29956-4 0 274 2 26536 98.9718 212.3511 0011355 116.0361 244.1984 14.12150598205481 1 26536U 00055A 04261.30199288 -.00000028 00000-0 89582-5 0 275 2 26536 98.9717 212.7764 0011393 115.0813 245.1564 14.12150983205547 1 26536U 00055A 04261.72711233 .00000049 00000-0 50846-4 0 284 2 26536 98.9719 213.2020 0011383 113.6391 246.5976 14.12151278205601 1 26536U 00055A 04262.50649778 .00000159 00000-0 11080-3 0 283 2 26536 98.9726 213.9820 0011373 111.4383 248.8005 14.12152152205712 1 26536U 00055A 04262.86076397 .00000408 00000-0 24662-3 0 303 2 26536 98.9727 214.3357 0011340 111.3012 248.9451 14.12153721205769 1 26536U 00055A 04263.28588136 .00000408 00000-0 24662-3 0 309 2 26536 98.9727 214.7610 0011340 110.1026 250.1366 14.12154106205822 1 26536U 00055A 04263.64014706 .00000370 00000-0 22569-3 0 319 2 26536 98.9731 215.1159 0011332 109.4171 250.8205 14.12154007205877 1 26536U 00055A 04264.41953197 .00000384 00000-0 23352-3 0 317 2 26536 98.9730 215.8954 0011292 107.3474 252.8951 14.12154827205986 1 26536U 00055A 04264.84465022 .00000384 00000-0 23352-3 0 320 2 26536 98.9730 216.3207 0011292 106.1488 254.0926 14.12155191206044 1 26536U 00055A 04265.34062176 .00000227 00000-0 14794-3 0 325 2 26536 98.9732 216.8179 0011312 105.0981 255.1414 14.12154777206119 1 26536U 00055A 04265.69488785 .00000181 00000-0 12304-3 0 336 2 26536 98.9733 217.1726 0011341 104.3434 255.8982 14.12154639206168 1 26536U 00055A 04266.47427229 .00000064 00000-0 59300-4 0 337 2 26536 98.9737 217.9528 0011358 102.7012 257.5422 14.12154434206275 1 26536U 00055A 04266.89939114 -.00000004 00000-0 22002-4 0 349 2 26536 98.9738 218.3785 0011387 101.8490 258.3943 14.12154101206333 1 26536U 00055A 04267.25365712 -.00000036 00000-0 47428-5 0 342 2 26536 98.9738 218.7330 0011401 100.9719 259.2731 14.12153979206386 1 26536U 00055A 04267.67877604 .00000001 00000-0 24982-4 0 357 2 26536 98.9742 219.1584 0011457 100.0620 260.1839 14.12154028206443 1 26536U 00055A 04267.82049179 .00000252 00000-0 13738-3 0 345 2 26536 98.9733 219.3031 0011336 97.1332 263.1606 14.12155438206467 1 26536U 00055A 04268.38730874 -.00000206 00000-0 -87602-4 0 350 2 26536 98.9728 219.8688 0011490 96.9450 263.3039 14.12153122206542 1 26536U 00055A 04268.81242763 -.00000102 00000-0 -30976-4 0 361 2 26536 98.9729 220.2944 0011482 95.5847 264.6651 14.12153506206607 1 26536U 00055A 04269.16669310 -.00000102 00000-0 -30976-4 0 361 2 26536 98.9729 220.6489 0011482 94.5858 265.6625 14.12153466206658 1 26536U 00055A 04269.59181205 -.00000076 00000-0 -17048-4 0 376 2 26536 98.9722 221.0745 0011525 93.8458 266.4034 14.12153483206716 1 26536U 00055A 04270.30034275 .00000088 00000-0 72242-4 0 379 2 26536 98.9724 221.7834 0011509 92.0020 268.2489 14.12154525206815 1 26536U 00055A 04270.72546096 .00000149 00000-0 10540-3 0 396 2 26536 98.9725 222.2091 0011505 90.6103 269.6384 14.12154826206878 1 26536U 00055A 04271.50484425 .00000253 00000-0 16224-3 0 391 2 26536 98.9720 222.9891 0011495 88.2999 271.9492 14.12155786206986 1 26536U 00055A 04271.92996235 .00000385 00000-0 23409-3 0 405 2 26536 98.9716 223.4144 0011452 87.1133 273.1388 14.12156822207047 1 26536U 00055A 04272.35507940 .00000404 00000-0 24457-3 0 400 2 26536 98.9719 223.8403 0011429 86.1916 274.0583 14.12157405207106 1 26536U 00055A 04272.78019660 .00000367 00000-0 22439-3 0 411 2 26536 98.9719 224.2661 0011432 84.9921 275.2525 14.12157368207166 1 26536U 00055A 04273.48872623 .00000343 00000-0 21110-3 0 414 2 26536 98.9728 224.9755 0011392 83.2862 276.9594 14.12157794207266 1 26536U 00055A 04273.91384395 .00000343 00000-0 21110-3 0 427 2 26536 98.9728 225.4008 0011392 82.0875 278.1589 14.12158123207326 1 26536U 00055A 04274.33896133 .00000094 00000-0 75507-4 0 425 2 26536 98.9740 225.8254 0011439 81.1021 279.1377 14.12157023207382 1 26536U 00055A 04274.69322744 .00000145 00000-0 10349-3 0 436 2 26536 98.9746 226.1809 0011479 80.2295 280.0172 14.12157294207435 1 26536U 00055A 04275.40175701 -.00000001 00000-0 24002-4 0 439 2 26536 98.9750 226.8904 0011476 78.0936 282.1513 14.12156883207533 1 26536U 00055A 04275.82687490 -.00000001 00000-0 24002-4 0 449 2 26536 98.9750 227.3159 0011476 76.8951 283.3501 14.12156921207593 1 26536U 00055A 04276.25199263 -.00000001 00000-0 24002-4 0 443 2 26536 98.9750 227.7413 0011476 75.6965 284.5480 14.12156958207658 1 26536U 00055A 04276.67711032 -.00000002 00000-0 23106-4 0 459 2 26536 98.9762 228.1677 0011468 74.8982 285.3443 14.12156767207712 1 26536U 00055A 04277.03137538 -.00000039 00000-0 33020-5 0 450 2 26536 98.9763 228.5224 0011455 74.0640 286.1800 14.12156726207760 1 26536U 00055A 04277.73990481 -.00000106 00000-0 -33420-4 0 461 2 26536 98.9767 229.2315 0011426 72.2920 287.9481 14.12156277207868 1 26536U 00055A 04278.30672898 -.00000106 00000-0 -33420-4 0 464 2 26536 98.9767 229.7988 0011426 70.6940 289.5466 14.12156208207947 1 26536U 00055A 04278.66099388 -.00000158 00000-0 -61513-4 0 472 2 26536 98.9770 230.1539 0011415 69.9483 290.2916 14.12155936207991 1 26536U 00055A 04279.44037544 .00000035 00000-0 43263-4 0 491 2 26536 98.9758 230.9348 0011310 68.5169 291.7225 14.12157071208108 1 26536U 00055A 04279.79464936 .00000052 00000-0 28199-4 0 487 2 26536 98.9757 231.2915 0011379 66.5948 293.6902 14.12157200208151 1 26536U 00055A 04279.79464938 .00000051 00000-0 27799-4 0 472 2 26536 98.9758 231.2916 0011376 66.5916 293.6934 14.12157190208158 1 26536U 00055A 04280.36146210 .00000283 00000-0 17851-3 0 505 2 26536 98.9754 231.8567 0011249 66.3977 293.8408 14.12158809208231 1 26536U 00055A 04280.71572562 .00000333 00000-0 20570-3 0 516 2 26536 98.9755 232.2114 0011293 65.4975 294.7357 14.12159092208285 1 26536U 00055A 04281.49510619 .00000420 00000-0 25308-3 0 518 2 26536 98.9754 232.9922 0011271 63.3013 296.9305 14.12160206208392 1 26536U 00055A 04281.92022287 .00000410 00000-0 24752-3 0 538 2 26536 98.9746 233.4182 0011327 61.6210 298.6090 14.12160553208451 1 26536U 00055A 04282.41619227 .00000396 00000-0 24028-3 0 538 2 26536 98.9750 233.9151 0011307 60.3678 299.8625 14.12160986208524 1 26536U 00055A 04282.84130845 .00000343 00000-0 21096-3 0 544 2 26536 98.9750 234.3406 0011292 59.5304 300.6967 14.12161017208583 1 26536U 00055A 04283.26642503 .00000273 00000-0 17289-3 0 541 2 26536 98.9751 234.7662 0011322 58.1494 302.0758 14.12160963208641 1 26536U 00055A 04283.62068902 .00000137 00000-0 99262-4 0 558 2 26536 98.9754 235.1212 0011298 57.1887 303.0334 14.12160319208698 1 26536U 00055A 04284.32921729 .00000107 00000-0 82898-4 0 555 2 26536 98.9753 235.8308 0011311 55.2921 304.9327 14.12160601208791 1 26536U 00055A 04285.46286226 -.00000196 00000-0 -82175-4 0 566 2 26536 98.9757 236.9660 0011300 51.9645 308.2531 14.12159060208951 1 26536U 00055A 04285.88797942 -.00000149 00000-0 -56444-4 0 584 2 26536 98.9758 237.3914 0011218 51.1083 309.1114 14.12159260209012 1 26536U 00055A 04286.24224291 -.00000159 00000-0 -61967-4 0 584 2 26536 98.9758 237.7461 0011231 50.0523 310.1630 14.12159146209068 1 26536U 00055A 04286.66735981 -.00000101 00000-0 -30766-4 0 594 2 26536 98.9763 238.1719 0011208 49.0057 311.2091 14.12159277209124 1 26536U 00055A 04287.44674010 -.00000093 00000-0 -26272-4 0 593 2 26536 98.9765 238.9523 0011218 46.5412 313.6689 14.12159362209231 1 26536U 00055A 04287.80100408 .00000029 00000-0 40007-4 0 610 2 26536 98.9764 239.3070 0011217 45.2926 314.9184 14.12159981209283 1 26536U 00055A 04288.15526733 .00000136 00000-0 98725-4 0 611 2 26536 98.9763 239.6615 0011172 44.2334 315.9765 14.12160678209339 1 26536U 00055A 04288.93464625 .00000335 00000-0 20670-3 0 634 2 26536 98.9767 240.4419 0011131 42.2449 317.9608 14.12161970209441 1 26536U 00055A 04289.28890891 .00000354 00000-0 21742-3 0 622 2 26536 98.9769 240.7966 0011115 41.3892 318.8126 14.12162360209491 1 26536U 00055A 04289.71402453 .00000317 00000-0 19709-3 0 644 2 26536 98.9773 241.2227 0011084 40.1316 320.0666 14.12162453209559 1 26536U 00055A 04290.42255055 .00000369 00000-0 22526-3 0 646 2 26536 98.9780 241.9328 0011063 38.1984 321.9974 14.12163268209659 1 26536U 00055A 04290.84766591 .00000305 00000-0 19063-3 0 657 2 26536 98.9777 242.3587 0011154 36.8332 323.3576 14.12163246209717 1 26536U 00055A 04291.20192935 .00000320 00000-0 19861-3 0 656 2 26536 98.9780 242.7136 0011096 36.1213 324.0712 14.12163550209764 1 26536U 00055A 04291.62704459 .00000220 00000-0 14411-3 0 668 2 26536 98.9785 243.1397 0011088 34.8825 325.3051 14.12163306209824 1 26536U 00055A 04292.33557093 .00000196 00000-0 13120-3 0 665 2 26536 98.9788 243.8494 0011029 33.3135 326.8748 14.12163631209926 1 26536U 00055A 04292.76068588 .00000157 00000-0 11018-3 0 670 2 26536 98.9791 244.2752 0011048 32.1740 328.0073 14.12163420209989 1 26536U 00055A 04293.54006540 -.00000173 00000-0 -69658-4 0 671 2 26536 98.9794 245.0580 0011025 30.0675 330.1088 14.12161836210092 1 26536U 00055A 04293.89432942 -.00000120 00000-0 -40789-4 0 685 2 26536 98.9787 245.4134 0011064 28.8181 331.3624 14.12162206210140 1 26536U 00055A 04294.31944472 -.00000120 00000-0 -40789-4 0 689 2 26536 98.9787 245.8390 0011064 27.6197 332.5560 14.12162143210201 1 26536U 00055A 04294.74456052 -.00000120 00000-0 -40789-4 0 699 2 26536 98.9787 246.2646 0011064 26.4213 333.7520 14.12162079210269 1 26536U 00055A 04295.52393953 -.00000044 00000-0 43478-6 0 690 2 26536 98.9787 247.0457 0010961 24.6886 335.4851 14.12162529210377 1 26536U 00055A 04295.52393953 -.00000044 00000-0 43478-6 0 702 2 26536 98.9787 247.0457 0010961 24.6886 335.4851 14.12162529210377 1 26536U 00055A 04298.71230609 .00000453 00000-0 27138-3 0 732 2 26536 98.9786 250.2362 0010906 16.3728 343.8045 14.12166347210829 1 26536U 00055A 04299.49167712 .00000490 00000-0 29105-3 0 740 2 26536 98.9788 251.0170 0010779 14.3065 345.8412 14.12167351210935 1 26536U 00055A 04299.84593885 .00000428 00000-0 25740-3 0 756 2 26536 98.9785 251.3717 0010712 13.4456 346.6992 14.12167426210983 1 26536U 00055A 04300.27105310 .00000375 00000-0 22846-3 0 753 2 26536 98.9788 251.7976 0010653 12.3688 347.7733 14.12167520211044 1 26536U 00055A 04300.69616738 .00000251 00000-0 16116-3 0 767 2 26536 98.9793 252.2238 0010620 11.2172 348.9203 14.12167114211108 1 26536U 00055A 04301.40469181 .00000118 00000-0 88681-4 0 764 2 26536 98.9790 252.9344 0010603 9.1073 351.0277 14.12166857211207 1 26536U 00055A 04301.82980637 .00000066 00000-0 60652-4 0 786 2 26536 98.9791 253.3600 0010592 7.9001 352.2324 14.12166716211268 1 26536U 00055A 04302.18406857 -.00000011 00000-0 18486-4 0 782 2 26536 98.9792 253.7147 0010607 7.0436 353.0862 14.12166373211310 1 26536U 00055A 04302.96344551 -.00000082 00000-0 -20120-4 0 800 2 26536 98.9798 254.4958 0010599 4.9291 355.1971 14.12166075211424 1 26536U 00055A 04303.31770787 -.00000082 00000-0 -20120-4 0 792 2 26536 98.9798 254.8506 0010599 3.9305 356.1948 14.12166049211473 1 26536U 00055A 04303.67197002 -.00000127 00000-0 -44587-4 0 809 2 26536 98.9802 255.2056 0010515 2.8765 357.2458 14.12165711211529 1 26536U 00055A 04304.38049368 -.00000051 00000-0 -30876-5 0 802 2 26536 98.9801 255.9150 0010529 0.5032 359.6145 14.12166236211620 1 26536U 00055A 04304.80560827 .00000010 00000-0 30063-4 0 829 2 26536 98.9802 256.3411 0010640 359.2133 0.9023 14.12166534211684 1 26536U 00055A 04305.15987021 .00000010 00000-0 30063-4 0 827 2 26536 98.9802 256.6958 0010640 358.2146 1.8985 14.12166573211732 1 26536U 00055A 04305.58498461 .00000093 00000-0 75305-4 0 839 2 26536 98.9805 257.1217 0010601 356.9593 3.1535 14.12167065211796 1 26536U 00055A 04306.36435927 .00000275 00000-0 17446-3 0 837 2 26536 98.9809 257.9026 0010568 354.5399 5.5681 14.12168544211900 1 26536U 00055A 04306.78947256 .00000389 00000-0 23644-3 0 840 2 26536 98.9805 258.3285 0010591 353.4136 6.6901 14.12169286211968 1 26536U 00055A 04307.14373372 .00000438 00000-0 26278-3 0 844 2 26536 98.9805 258.6834 0010541 352.4034 7.6983 14.12169782212011 1 26536U 00055A 04307.56884698 .00000417 00000-0 25173-3 0 859 2 26536 98.9808 259.1096 0010543 351.2589 8.8389 14.12170043212075 1 26536U 00055A 04308.34822081 .00000500 00000-0 29656-3 0 857 2 26536 98.9810 259.8906 0010419 348.8384 11.2564 14.12171328212184 1 26536U 00055A 04308.77333354 .00000464 00000-0 27705-3 0 867 2 26536 98.9811 260.3165 0010420 347.6621 12.4266 14.12171401212243 1 26536U 00055A 04309.19844700 .00000337 00000-0 20801-3 0 865 2 26536 98.9813 260.7424 0010440 346.6761 13.4108 14.12171222212307 1 26536U 00055A 04309.62356047 .00000246 00000-0 15849-3 0 871 2 26536 98.9819 261.1690 0010385 345.4884 14.5961 14.12170935212369 1 26536U 00055A 04310.33208338 .00000120 00000-0 89741-4 0 874 2 26536 98.9819 261.8792 0010376 343.7096 16.3747 14.12170729212469 1 26536U 00055A 04310.75719640 .00000057 00000-0 55778-4 0 897 2 26536 98.9822 262.3048 0010376 342.5163 17.5622 14.12170383212523 1 26536U 00055A 04311.53657116 -.00000120 00000-0 -40803-4 0 899 2 26536 98.9821 263.0862 0010272 340.0309 20.0441 14.12169710212636 1 26536U 00055A 04311.96168503 -.00000046 00000-0 -28584-6 0 906 2 26536 98.9822 263.5118 0010162 338.4134 21.6643 14.12170112212696 1 26536U 00055A 04312.81191113 -.00000043 00000-0 10055-5 0 914 2 26536 98.9818 264.3633 0010142 336.0273 24.0421 14.12170088212815 1 26536U 00055A 04313.16617237 -.00000043 00000-0 10055-5 0 913 2 26536 98.9818 264.7181 0010142 335.0287 25.0392 14.12170089212865 1 26536U 00055A 04313.52043355 -.00000039 00000-0 34680-5 0 934 2 26536 98.9820 265.0732 0010078 333.6983 26.3690 14.12170160212910 1 26536U 00055A 04313.52043355 -.00000039 00000-0 34680-5 0 945 2 26536 98.9820 265.0732 0010078 333.6983 26.3690 14.12170160212910 1 26536U 00055A 04316.56707934 -.00000039 00000-0 34680-5 0 953 2 26536 98.9820 268.1246 0010078 325.1104 34.9725 14.12172484213348 1 26536U 00055A 04316.56707934 -.00000039 00000-0 34680-5 0 964 2 26536 98.9820 268.1246 0010078 325.1104 34.9725 14.12172484213348 1 26536U 00055A 04317.91326341 -.00000039 00000-0 34680-5 0 985 2 26536 98.9826 269.4760 0010272 322.3090 37.7516 14.12174130213538 1 26536U 00055A 04318.76348483 -.00000039 00000-0 34680-5 0 1004 2 26536 98.9836 270.3284 0010177 319.6366 40.4092 14.12174566213656 1 26536U 00055A 04318.76348483 -.00000039 00000-0 34680-5 0 1026 2 26536 98.9836 270.3284 0010177 319.6366 40.4092 14.12174566213656 1 26536U 00055A 04318.76348483 -.00000039 00000-0 34680-5 0 1037 2 26536 98.9836 270.3284 0010177 319.6366 40.4092 14.12174566213656 1 26536U 00055A 04322.73119733 .00000217 00000-0 14253-3 0 1054 2 26536 98.9839 274.3030 0010115 307.9196 52.1227 14.12176985214215 1 26536U 00055A 04323.08545358 .00000144 00000-0 10300-3 0 1068 2 26536 98.9855 274.6597 0009984 306.4771 53.5384 14.12175742214263 1 26536U 00055A 04323.58141924 .00000208 00000-0 13763-3 0 1072 2 26536 98.9854 275.1568 0009961 305.0391 54.9857 14.12176246214332 1 26536U 00055A 04323.86483622 .00000096 00000-0 52114-4 0 1054 2 26536 98.9850 275.4430 0010097 304.4981 55.5723 14.12175908214376 1 26536U 00055A 04324.43164107 .00000352 00000-0 21615-3 0 1070 2 26536 98.9855 276.0086 0009936 301.9765 58.0440 14.12177620214453 1 26536U 00055A 04324.85675233 .00000405 00000-0 24496-3 0 1094 2 26536 98.9850 276.4350 0009893 300.5100 59.5110 14.12178254214517 1 26536U 00055A 04325.21101126 .00000437 00000-0 26243-3 0 1097 2 26536 98.9849 276.7899 0009891 299.3316 60.6870 14.12178683214565 1 26536U 00055A 04325.63612214 .00000419 00000-0 25280-3 0 1100 2 26536 98.9850 277.2161 0009834 297.8562 62.1605 14.12178922214624 1 26536U 00055A 04326.41549226 .00000345 00000-0 21239-3 0 1107 2 26536 98.9852 277.9976 0009807 295.3504 64.6652 14.12179303214731 1 26536U 00055A 04326.84060306 .00000358 00000-0 21958-3 0 1125 2 26536 98.9846 278.4231 0009855 294.8656 65.1476 14.12179674214796 1 26536U 00055A 04327.26571403 .00000229 00000-0 14927-3 0 1122 2 26536 98.9846 278.8491 0009840 293.8844 66.1260 14.12179288214850 1 26536U 00055A 04327.83252918 .00000078 00000-0 66995-4 0 1138 2 26536 98.9849 279.4170 0009870 292.4180 67.5909 14.12178758214930 1 26536U 00055A 04328.18678908 .00000129 00000-0 94955-4 0 1132 2 26536 98.9844 279.7732 0009897 291.5106 68.5029 14.12179198214987 1 26536U 00055A 04329.03701133 -.00000062 00000-0 -92325-5 0 1154 2 26536 98.9844 280.6255 0009841 288.7937 71.2160 14.12178352215100 1 26536U 00055A 04329.39127078 -.00000135 00000-0 -48791-4 0 1140 2 26536 98.9843 280.9804 0009853 287.6886 72.3200 14.12177989215153 1 26536U 00055A 04329.81638229 -.00000135 00000-0 -48791-4 0 1164 2 26536 98.9843 281.4063 0009853 286.4904 73.5185 14.12177913215213 1 26536U 00055A 04330.17064175 -.00000162 00000-0 -63359-4 0 1165 2 26536 98.9843 281.7613 0009871 285.3026 74.7055 14.12177737215268 1 26536U 00055A 04330.73745696 -.00000162 00000-0 -63359-4 0 1172 2 26536 98.9843 282.3291 0009871 283.7050 76.3022 14.12177605215341 1 26536U 00055A 04331.30427227 -.00000069 00000-0 -12763-4 0 1172 2 26536 98.9842 282.8971 0009869 281.6501 78.3605 14.12178123215429 1 26536U 00055A 04331.72938276 -.00000029 00000-0 90381-5 0 1199 2 26536 98.9845 283.3237 0009859 280.0946 79.9126 14.12178302215488 1 26536U 00055A 04332.22534565 .00000086 00000-0 71429-4 0 1191 2 26536 98.9854 283.8197 0009814 279.1992 80.8125 14.12179467215550 1 26536U 00055A 04332.72130728 .00000357 00000-0 21871-3 0 1207 2 26536 98.9845 284.3182 0009805 276.4352 83.5745 14.12180645215626 1 26536U 00055A 04333.50067460 .00000485 00000-0 28852-3 0 1204 2 26536 98.9852 285.0994 0009838 273.9663 86.0381 14.12182127215739 1 26536U 00055A 04334.42174670 .00000465 00000-0 27769-3 0 1224 2 26536 98.9855 286.0229 0009854 271.9791 88.0246 14.12182896215861 1 26536U 00055A 04334.84685670 .00000386 00000-0 23490-3 0 1248 2 26536 98.9856 286.4489 0009836 270.8404 89.1624 14.12182954215927 1 26536U 00055A 04335.27196690 .00000341 00000-0 21022-3 0 1245 2 26536 98.9860 286.8752 0009809 269.5129 90.4905 14.12183047215985 1 26536U 00055A 04335.69707704 .00000214 00000-0 14133-3 0 1250 2 26536 98.9867 287.3020 0009812 267.8361 92.1656 14.12182566216044 1 26536U 00055A 04336.47644630 .00000067 00000-0 60899-4 0 1252 2 26536 98.9871 288.0830 0009798 265.3747 94.6293 14.12182192216151 1 26536U 00055A 04336.90155673 .00000022 00000-0 36323-4 0 1272 2 26536 98.9878 288.5088 0009783 264.1153 95.8895 14.12182072216215 1 26536U 00055A 04337.39751884 .00000021 00000-0 35775-4 0 1271 2 26536 98.9879 289.0061 0009772 262.6064 97.3998 14.12182151216281 1 26536U 00055A 04338.46029511 -.00000116 00000-0 -38384-4 0 1282 2 26536 98.9882 290.0716 0009742 259.3301 100.6773 14.12181489216437 1 26536U 00055A 04338.88540559 -.00000116 00000-0 -38384-4 0 1301 2 26536 98.9882 290.4977 0009742 258.1320 101.8759 14.12181429216495 1 26536U 00055A 04339.31051609 -.00000040 00000-0 29723-5 0 1306 2 26536 98.9880 290.9239 0009741 256.7833 103.2277 14.12181860216558 1 26536U 00055A 04339.80647769 .00000007 00000-0 28178-4 0 1313 2 26536 98.9881 291.4211 0009732 255.2369 104.7726 14.12182039216625 1 26536U 00055A 04340.23158796 .00000040 00000-0 46586-4 0 1319 2 26536 98.9877 291.8473 0009736 254.1940 105.8168 14.12182313216684 1 26536U 00055A 04340.65669799 .00000119 00000-0 89549-4 0 1329 2 26536 98.9878 292.2735 0009717 253.0280 106.9838 14.12182764216748 1 26536U 00055A 04341.43606553 .00000258 00000-0 16520-3 0 1327 2 26536 98.9874 293.0553 0009736 250.8480 109.1651 14.12183933216858 1 26536U 00055A 04341.93202665 .00000347 00000-0 21323-3 0 1357 2 26536 98.9868 293.5528 0009738 249.5776 110.4365 14.12184692216921 1 26536U 00055A 04342.28628429 .00000399 00000-0 24149-3 0 1352 2 26536 98.9868 293.9078 0009767 248.2309 111.7841 14.12185268216973 1 26536U 00055A 04342.92394794 .00000442 00000-0 26507-3 0 1368 2 26536 98.9863 294.5475 0009736 246.9035 113.1110 14.12186038217065 1 26536U 00055A 04343.34905709 .00000457 00000-0 27343-3 0 1364 2 26536 98.9866 294.9740 0009741 245.4878 114.5287 14.12186567217126 1 26536U 00055A 04343.84501738 .00000417 00000-0 25155-3 0 1391 2 26536 98.9866 295.4711 0009741 243.8923 116.1227 14.12186751217197 1 26536U 00055A 04344.19927522 .00000382 00000-0 23236-3 0 1392 2 26536 98.9871 295.8263 0009749 242.7367 117.2804 14.12186865217242 1 26536U 00055A 04344.69523576 .00000240 00000-0 15506-3 0 1415 2 26536 98.9876 296.3238 0009785 241.1704 118.8443 14.12186338217312 1 26536U 00055A 04345.47460338 .00000068 00000-0 61688-4 0 1419 2 26536 98.9877 297.1050 0009843 238.7126 121.3066 14.12185905217420 1 26536U 00055A 04345.89971296 -.00000172 00000-0 -68927-4 0 1438 2 26536 98.9885 297.5306 0009796 237.2190 122.7975 14.12184658217483 1 26536U 00055A 04346.25397227 -.00000179 00000-0 -72674-4 0 1436 2 26536 98.9885 297.8858 0009790 236.1152 123.9092 14.12184595217537 1 26536U 00055A 04346.74993353 -.00000227 00000-0 -98720-4 0 1447 2 26536 98.9891 298.3833 0009812 234.5255 125.4996 14.12184199217602 1 26536U 00055A 04347.52930173 -.00000146 00000-0 -55085-4 0 1442 2 26536 98.9896 299.1648 0009852 231.8508 128.1820 14.12184533217715 1 26536U 00055A 04348.37952039 -.00000017 00000-0 15255-4 0 1453 2 26536 98.9896 300.0166 0010002 228.8744 131.1627 14.12185230217836 1 26536U 00055A 04348.80462870 .00000093 00000-0 75101-4 0 1460 2 26536 98.9898 300.4427 0010026 227.5984 132.4353 14.12185699217895 1 26536U 00055A 04349.22973784 .00000110 00000-0 84712-4 0 1466 2 26536 98.9894 300.8690 0010003 226.5756 133.4588 14.12185950217956 1 26536U 00055A 04349.79655018 .00000186 00000-0 12569-3 0 1479 2 26536 98.9896 301.4374 0009953 225.1072 134.9292 14.12186426218039 1 26536U 00055A 04350.07995630 .00000228 00000-0 14883-3 0 1477 2 26536 98.9896 301.7216 0009937 224.5980 135.4411 14.12186890218078 1 26536U 00055A 04350.57591646 .00000185 00000-0 12536-3 0 1487 2 26536 98.9897 302.2190 0009983 223.0435 136.9959 14.12186983218140 1 26536U 00055A 04351.42613340 .00000428 00000-0 25767-3 0 1488 2 26536 98.9890 303.0718 0010125 219.9535 140.0927 14.12188889218264 1 26536U 00055A 04351.85125241 .00000172 00000-0 93698-4 0 1499 2 26536 98.9900 303.5002 0009939 219.9699 140.1229 14.12187482218320 1 26536U 00055A 04351.92209256 .00000440 00000-0 26416-3 0 1509 2 26536 98.9892 303.5691 0010161 218.5112 141.5319 14.12189184218335 1 26536U 00055A 04352.34720125 .00000462 00000-0 27581-3 0 1507 2 26536 98.9898 303.9957 0010179 217.0545 142.9937 14.12189787218399 1 26536U 00055A 04352.84316053 .00000293 00000-0 18388-3 0 1511 2 26536 98.9897 304.4928 0010145 215.5543 144.4897 14.12189239218468 1 26536U 00055A 04353.19741863 .00000234 00000-0 15183-3 0 1516 2 26536 98.9897 304.8481 0010151 214.4613 145.5888 14.12189158218517 1 26536U 00055A 04353.76423009 .00000101 00000-0 79703-4 0 1532 2 26536 98.9902 305.4170 0010213 212.5435 147.5077 14.12188662218595 1 26536U 00055A 04354.11848786 .00000059 00000-0 56952-4 0 1538 2 26536 98.9901 305.7724 0010216 211.5285 148.5280 14.12188676218645 1 26536U 00055A 04354.68529923 -.00000037 00000-0 41853-5 0 1542 2 26536 98.9901 306.3408 0010231 209.8821 150.1742 14.12188212218721 1 26536U 00055A 04354.68529923 -.00000037 00000-0 41853-5 0 1553 2 26536 98.9901 306.3408 0010231 209.8821 150.1742 14.12188212218721 1 26536U 00055A 04357.80276396 .00000109 00000-0 83830-4 0 1574 2 26536 98.9902 309.4662 0010100 202.0590 158.0172 14.12189369219168 1 26536U 00055A 04358.15702050 .00000140 00000-0 10086-3 0 1582 2 26536 98.9898 309.8226 0010289 200.4577 159.6166 14.12189191219216 1 26536U 00055A 04359.43234463 .00000397 00000-0 24056-3 0 1599 2 26536 98.9894 311.1011 0010354 196.6671 163.4169 14.12191280219391 1 26536U 00055A 04359.85745231 .00000431 00000-0 25918-3 0 1615 2 26536 98.9891 311.5273 0010370 195.5102 164.5757 14.12191798219453 1 26536U 00055A 04360.28255991 .00000401 00000-0 24293-3 0 1615 2 26536 98.9890 311.9536 0010383 194.2390 165.8482 14.12192022219514 1 26536U 00055A 04360.70766769 .00000318 00000-0 19757-3 0 1629 2 26536 98.9893 312.3800 0010377 193.0986 166.9888 14.12191818219577 1 26536U 00055A 04361.55788355 .00000200 00000-0 13312-3 0 1629 2 26536 98.9901 313.2332 0010421 190.6424 169.4510 14.12191794219693 1 26536U 00055A 04362.40809984 .00000113 00000-0 86244-4 0 1635 2 26536 98.9901 314.0855 0010366 188.1908 171.9096 14.12191705219812 1 26536U 00055A 04362.83320758 -.00000017 00000-0 15052-4 0 1643 2 26536 98.9904 314.5119 0010357 187.3040 172.7954 14.12191106219874 1 26536U 00055A 04363.32916739 .00000011 00000-0 30477-4 0 1649 2 26536 98.9908 315.0095 0010406 185.7013 174.4057 14.12191379219947 1 26536U 00055A 04363.89597755 -.00000024 00000-0 11581-4 0 1655 2 26536 98.9913 315.5778 0010458 184.2420 175.8652 14.12191145220027 1 26536U 00055A 04364.25023439 -.00000038 00000-0 36402-5 0 1654 2 26536 98.9913 315.9329 0010475 183.1626 176.9475 14.12191068220072 1 26536U 00055A 04364.67534245 -.00000047 00000-0 -12212-5 0 1667 2 26536 98.9918 316.3593 0010517 181.9457 178.1666 14.12190898220133 1 26536U 00055A 04365.45470731 -.00000047 00000-0 -12212-5 0 1674 2 26536 98.9918 317.1408 0010517 179.7494 180.3684 14.12190895220247 1 26536U 00055A 04365.87981532 -.00000047 00000-0 -12212-5 0 1687 2 26536 98.9918 317.5670 0010517 178.5514 181.5690 14.12190893220307 1 26536U 00055A 04366.30492333 -.00000047 00000-0 -12212-5 0 1682 2 26536 98.9918 317.9933 0010517 177.3534 182.7695 14.12190891220364 1 26536U 00055A 05002.71386873 .00000375 00000-0 22835-3 0 1712 2 26536 98.9923 320.4098 0010628 170.2667 189.8949 14.12194252220706 1 26536U 00055A 05003.49322600 .00000388 00000-0 23548-3 0 1723 2 26536 98.9924 321.1917 0010668 168.3095 191.8311 14.12195064220812 1 26536U 00055A 05004.41429105 .00000246 00000-0 15841-3 0 1735 2 26536 98.9925 322.1159 0010705 165.8371 194.3098 14.12195113220942 1 26536U 00055A 05004.91024893 .00000223 00000-0 14590-3 0 1741 2 26536 98.9924 322.6137 0010773 164.5566 195.5938 14.12195296221016 1 26536U 00055A 05005.33535552 .00000202 00000-0 13465-3 0 1744 2 26536 98.9923 323.0401 0010796 163.4831 196.6699 14.12195476221074 1 26536U 00055A 05005.76046201 .00000078 00000-0 66935-4 0 1752 2 26536 98.9927 323.4664 0010776 162.3894 197.7609 14.12194819221138 1 26536U 00055A 05006.11471853 -.00000028 00000-0 92058-5 0 1759 2 26536 98.9930 323.8219 0010864 161.3957 198.7598 14.12194357221189 1 26536U 00055A 05006.82323042 -.00000159 00000-0 -61842-4 0 1766 2 26536 98.9936 324.5324 0011055 159.8833 200.2768 14.12193679221283 1 26536U 00055A 05007.31918894 -.00000212 00000-0 -91062-4 0 1763 2 26536 98.9933 325.0298 0011122 158.6262 201.5375 14.12193337221351 1 26536U 00055A 05007.31918894 -.00000212 00000-0 -91062-4 0 1774 2 26536 98.9933 325.0298 0011122 158.6262 201.5375 14.12193337221351 1 26536U 00055A 05007.88599866 -.00000134 00000-0 -48432-4 0 1787 2 26536 98.9931 325.5982 0011134 157.1176 203.0521 14.12193660221433 1 26536U 00055A 05008.31110529 -.00000106 00000-0 -33039-4 0 1787 2 26536 98.9929 326.0245 0011134 155.8430 204.3277 14.12193825221497 1 26536U 00055A 05008.73621216 -.00000051 00000-0 -32734-5 0 1795 2 26536 98.9928 326.4508 0011111 154.6244 205.5473 14.12193935221557 1 26536U 00055A 05008.73621216 -.00000051 00000-0 -32734-5 0 1807 2 26536 98.9928 326.4508 0011111 154.6244 205.5473 14.12193935221557 1 26536U 00055A 05011.57025924 .00000073 00000-0 63999-4 0 1816 2 26536 98.9929 329.2931 0010865 145.8248 214.3823 14.12195778221958 1 26536U 00055A 05012.49131640 .00000307 00000-0 19157-3 0 1828 2 26536 98.9928 330.2175 0011081 144.2750 215.9159 14.12197949222087 1 26536U 00055A 05012.84557132 .00000205 00000-0 13594-3 0 1832 2 26536 98.9933 330.5729 0011106 143.2749 216.9163 14.12197638222133 1 26536U 00055A 05013.27067762 .00000167 00000-0 11516-3 0 1834 2 26536 98.9937 330.9992 0011135 142.0890 218.1066 14.12197705222196 1 26536U 00055A 05013.76663445 .00000154 00000-0 10847-3 0 1841 2 26536 98.9945 331.4974 0011276 140.8921 219.3066 14.12197794222267 1 26536U 00055A 05013.83749529 .00000279 00000-0 15183-3 0 1832 2 26536 98.9937 331.5701 0010950 139.8710 220.3755 14.12198258222273 1 26536U 00055A 05014.12088930 .00000062 00000-0 58386-4 0 1841 2 26536 98.9951 331.8526 0011326 139.9660 220.2336 14.12197500222318 1 26536U 00055A 05014.68769738 -.00000034 00000-0 62838-5 0 1853 2 26536 98.9956 332.4214 0011288 138.3040 221.8954 14.12196897222395 1 26536U 00055A 05015.46705949 -.00000192 00000-0 -80171-4 0 1859 2 26536 98.9955 333.2036 0011288 136.0980 224.1074 14.12196143222509 1 26536U 00055A 05015.46705949 -.00000192 00000-0 -80171-4 0 1860 2 26536 98.9955 333.2036 0011288 136.0980 224.1074 14.12196143222509 1 26536U 00055A 05015.89216610 -.00000124 00000-0 -43042-4 0 1871 2 26536 98.9955 333.6305 0011263 135.0820 225.1297 14.12196515222564 1 26536U 00055A 05016.31727165 -.00000108 00000-0 -34074-4 0 1878 2 26536 98.9953 334.0569 0011270 133.9180 226.2936 14.12196645222626 1 26536U 00055A 05016.81322854 -.00000064 00000-0 -10187-4 0 1880 2 26536 98.9957 334.5547 0011284 132.7838 227.4286 14.12196674222693 1 26536U 00055A 05017.23833460 -.00000099 00000-0 -29074-4 0 1880 2 26536 98.9951 334.9813 0011238 131.2336 228.9791 14.12196483222755 1 26536U 00055A 05017.73429208 -.00000003 00000-0 22652-4 0 1896 2 26536 98.9949 335.4788 0011215 129.7045 230.5126 14.12196851222821 1 26536U 00055A 05018.51365150 .00000128 00000-0 93989-4 0 1896 2 26536 98.9946 336.2608 0011231 128.2466 231.9720 14.12197903222933 1 26536U 00055A 05019.36386191 .00000275 00000-0 17403-3 0 1909 2 26536 98.9937 337.1141 0011200 125.9718 234.2516 14.12199298223057 1 26536U 00055A 05019.78896670 .00000380 00000-0 23118-3 0 1911 2 26536 98.9934 337.5404 0011200 124.7625 235.4612 14.12200025223112 1 26536U 00055A 05020.49747375 .00000609 00000-0 35589-3 0 1917 2 26536 98.9932 338.2512 0011237 123.0762 237.1499 14.12201911223210 1 26536U 00055A 05020.92257798 .00000572 00000-0 33581-3 0 1920 2 26536 98.9934 338.6773 0011244 121.6511 238.5733 14.12202155223272 1 26536U 00055A 05021.27683208 .00000489 00000-0 29067-3 0 1929 2 26536 98.9936 339.0328 0011251 120.8384 239.3890 14.12202235223320 1 26536U 00055A 05021.70193647 .00000352 00000-0 21605-3 0 1930 2 26536 98.9935 339.4592 0011237 119.6472 240.5777 14.12201800223385 1 26536U 00055A 05022.41044533 .00000163 00000-0 11326-3 0 1937 2 26536 98.9934 340.1702 0011262 117.7023 242.5288 14.12201355223480 1 26536U 00055A 05022.41044533 .00000163 00000-0 11326-3 0 1948 2 26536 98.9934 340.1702 0011262 117.7023 242.5288 14.12201355223480 1 26536U 00055A 05022.83554998 .00000027 00000-0 39026-4 0 1953 2 26536 98.9934 340.5965 0011268 116.0734 244.1564 14.12200875223540 1 26536U 00055A 05023.18980459 .00000020 00000-0 35452-4 0 1959 2 26536 98.9936 340.9515 0011246 114.7488 245.4849 14.12200913223592 1 26536U 00055A 05023.61490940 -.00000099 00000-0 -29110-4 0 1961 2 26536 98.9939 341.3778 0011257 113.7237 246.5091 14.12200284223653 1 26536U 00055A 05024.46511983 -.00000053 00000-0 -43929-5 0 1961 2 26536 98.9937 342.2300 0011379 111.7496 248.4913 14.12200512223773 1 26536U 00055A 05024.46511983 -.00000053 00000-0 -43929-5 0 1972 2 26536 98.9937 342.2300 0011379 111.7496 248.4913 14.12200512223773 1 26536U 00055A 05024.46511983 -.00000053 00000-0 -43929-5 0 1983 2 26536 98.9937 342.2300 0011379 111.7496 248.4913 14.12200512223773 1 26536U 00055A 05024.81937332 -.00000011 00000-0 18509-4 0 1991 2 26536 98.9938 342.5854 0011328 110.5172 249.7218 14.12200678223824 1 26536U 00055A 05025.24447801 -.00000027 00000-0 97543-5 0 1999 2 26536 98.9939 343.0118 0011344 109.3212 250.9183 14.12200633223885 1 26536U 00055A 05025.66958281 -.00000080 00000-0 -18806-4 0 2001 2 26536 98.9942 343.4385 0011363 108.3795 251.8595 14.12200252223946 1 26536U 00055A 05026.51979284 -.00000080 00000-0 -18806-4 0 2002 2 26536 98.9942 344.2912 0011363 105.9837 254.2587 14.12200193224067 1 26536U 00055A 05026.51979284 -.00000080 00000-0 -18806-4 0 2013 2 26536 98.9942 344.2912 0011363 105.9837 254.2587 14.12200193224067 1 26536U 00055A 05026.94489769 .00000077 00000-0 66574-4 0 2024 2 26536 98.9947 344.7178 0011310 104.6378 255.6107 14.12201195224122 1 26536U 00055A 05027.29915028 .00000125 00000-0 92766-4 0 2021 2 26536 98.9947 345.0732 0011322 103.7687 256.4761 14.12201588224174 1 26536U 00055A 05027.72425434 .00000215 00000-0 14138-3 0 2033 2 26536 98.9948 345.4999 0011339 102.5469 257.6980 14.12202125224238 1 26536U 00055A 05028.14935835 .00000267 00000-0 16961-3 0 2034 2 26536 98.9950 345.9265 0011330 101.3417 258.9046 14.12202686224298 1 26536U 00055A 05028.71616331 .00000377 00000-0 22956-3 0 2048 2 26536 98.9956 346.4961 0011378 99.8276 260.4201 14.12203592224376 1 26536U 00055A 05029.42466804 .00000423 00000-0 25482-3 0 2044 2 26536 98.9963 347.2079 0011276 97.8743 262.3696 14.12204567224470 1 26536U 00055A 05029.42466804 .00000423 00000-0 25482-3 0 2055 2 26536 98.9963 347.2079 0011276 97.8743 262.3696 14.12204567224470 1 26536U 00055A 05029.92062221 .00000370 00000-0 22571-3 0 2063 2 26536 98.9964 347.7053 0011330 97.0723 263.1722 14.12204659224548 1 26536U 00055A 05030.48742696 .00000242 00000-0 15622-3 0 2064 2 26536 98.9966 348.2743 0011301 95.4103 264.8326 14.12204376224627 1 26536U 00055A 05030.48742696 .00000242 00000-0 15622-3 0 2075 2 26536 98.9966 348.2743 0011301 95.4103 264.8326 14.12204376224627 1 26536U 00055A 05031.05423212 .00000071 00000-0 63197-4 0 2081 2 26536 98.9968 348.8431 0011330 94.0938 266.1494 14.12203781224701 1 26536U 00055A 05031.62103762 -.00000039 00000-0 33009-5 0 2095 2 26536 98.9970 349.4121 0011293 92.4446 267.7998 14.12203311224784 1 26536U 00055A 05032.11699240 -.00000087 00000-0 -23044-4 0 2092 2 26536 98.9971 349.9098 0011311 91.2333 269.0136 14.12203173224859 1 26536U 00055A 05032.11699240 -.00000087 00000-0 -23044-4 0 2104 2 26536 98.9971 349.9098 0011311 91.2333 269.0136 14.12203173224859 1 26536U 00055A 05032.61294678 -.00000160 00000-0 -62713-4 0 2114 2 26536 98.9977 350.4081 0011323 90.2208 270.0252 14.12202731224925 1 26536U 00055A 05033.46315502 -.00000184 00000-0 -75734-4 0 2111 2 26536 98.9974 351.2598 0011348 88.8698 271.3795 14.12202475225042 1 26536U 00055A 05033.46315502 -.00000184 00000-0 -75734-4 0 2122 2 26536 98.9974 351.2598 0011348 88.8698 271.3795 14.12202475225042 1 26536U 00055A 05033.88825859 -.00000099 00000-0 -29136-4 0 2130 2 26536 98.9975 351.6865 0011316 87.4369 272.8116 14.12202824225107 1 26536U 00055A 05034.31336209 -.00000064 00000-0 -10439-4 0 2133 2 26536 98.9971 352.1129 0011323 86.5372 273.7110 14.12203030225164 1 26536U 00055A 05034.88016683 .00000021 00000-0 35890-4 0 2146 2 26536 98.9969 352.6818 0011325 84.8310 275.4170 14.12203481225240 1 26536U 00055A 05035.37612072 .00000095 00000-0 75973-4 0 2142 2 26536 98.9969 353.1793 0011331 83.8480 276.4006 14.12203995225319 1 26536U 00055A 05035.37612072 .00000095 00000-0 75973-4 0 2153 2 26536 98.9969 353.1793 0011331 83.8480 276.4006 14.12203995225319 1 26536U 00055A 05035.87207426 .00000095 00000-0 75973-4 0 2162 2 26536 98.9969 353.6769 0011331 82.4506 277.7952 14.12204133225387 1 26536U 00055A 05036.36802822 .00000306 00000-0 19081-3 0 2160 2 26536 98.9964 354.1742 0011293 80.9717 279.2794 14.12205581225450 1 26536U 00055A 05037.43078448 .00000332 00000-0 20489-3 0 2172 2 26536 98.9962 355.2395 0011335 78.5705 281.6738 14.12206280225600 1 26536U 00055A 05037.43078448 .00000332 00000-0 20489-3 0 2183 2 26536 98.9962 355.2395 0011335 78.5705 281.6738 14.12206280225600 1 26536U 00055A 05038.35184018 .00000337 00000-0 20792-3 0 2199 2 26536 98.9960 356.1640 0011240 76.2543 283.9906 14.12207109225738 1 26536U 00055A 05038.91864285 .00000264 00000-0 16801-3 0 2209 2 26536 98.9964 356.7331 0011246 74.7285 285.5101 14.12207018225810 1 26536U 00055A 05039.34374585 .00000264 00000-0 16801-3 0 2206 2 26536 98.9964 357.1596 0011246 73.5306 286.7100 14.12207280225878 1 26536U 00055A 05039.83969859 .00000177 00000-0 12088-3 0 2211 2 26536 98.9974 357.6574 0011214 72.4656 287.7725 14.12207078225948 1 26536U 00055A 05040.26480129 .00000145 00000-0 10329-3 0 2219 2 26536 98.9977 358.0839 0011217 71.4631 288.7750 14.12207067226000 1 26536U 00055A 05040.68990386 -.00000028 00000-0 95440-5 0 2227 2 26536 98.9979 358.5107 0011199 69.8105 290.4215 14.12206116226067 1 26536U 00055A 05041.11500764 -.00000138 00000-0 -50440-4 0 2226 2 26536 98.9979 358.9376 0011244 68.4675 291.7676 14.12205662226124 1 26536U 00055A 05041.61096130 -.00000225 00000-0 -98028-4 0 2230 2 26536 98.9985 359.4359 0011214 67.3179 292.9168 14.12205112226198 1 26536U 00055A 05042.46116661 -.00000131 00000-0 -46809-4 0 2232 2 26536 98.9987 0.2896 0011159 65.1730 295.0609 14.12205547226314 1 26536U 00055A 05042.46116661 -.00000131 00000-0 -46809-4 0 2243 2 26536 98.9987 0.2896 0011159 65.1730 295.0609 14.12205547226314 1 26536U 00055A 05042.88626930 -.00000100 00000-0 -29813-4 0 2257 2 26536 98.9992 0.7162 0011200 63.6588 296.5729 14.12205610226378 1 26536U 00055A 05043.31137215 -.00000068 00000-0 -12315-4 0 2251 2 26536 98.9991 1.1428 0011176 62.8413 297.3911 14.12205775226438 1 26536U 00055A 05043.87817552 .00000093 00000-0 74878-4 0 2260 2 26536 98.9995 1.7117 0011134 61.2383 298.9941 14.12206576226515 1 26536U 00055A 05044.30327727 .00000144 00000-0 10309-3 0 2264 2 26536 98.9994 2.1382 0011120 60.1568 300.0719 14.12206972226575 1 26536U 00055A 05044.87008012 .00000296 00000-0 18569-3 0 2274 2 26536 98.9994 2.7073 0011095 58.2128 302.0163 14.12208074226658 1 26536U 00055A 05045.36603160 .00000296 00000-0 18569-3 0 2274 2 26536 98.9994 3.2050 0011095 56.8154 303.4079 14.12208412226727 1 26536U 00055A 05045.36603160 .00000296 00000-0 18569-3 0 2285 2 26536 98.9994 3.2050 0011095 56.8154 303.4079 14.12208412226727 1 26536U 00055A 05045.86198376 .00000361 00000-0 22106-3 0 2294 2 26536 98.9995 3.7036 0011028 55.9633 304.2595 14.12208975226798 1 26536U 00055A 05046.35793549 .00000370 00000-0 22577-3 0 2294 2 26536 98.9997 4.2014 0010980 54.7678 305.4533 14.12209491226861 1 26536U 00055A 05046.92473719 .00000368 00000-0 22482-3 0 2305 2 26536 98.9990 4.7706 0011056 52.8193 307.3960 14.12209810226942 1 26536U 00055A 05047.27898888 .00000361 00000-0 22108-3 0 2300 2 26536 98.9993 5.1263 0011057 51.8426 308.3745 14.12210132226993 1 26536U 00055A 05048.41259277 .00000224 00000-0 14664-3 0 2317 2 26536 98.9989 6.2639 0010992 49.0378 311.1743 14.12210151227159 1 26536U 00055A 05048.41259277 .00000224 00000-0 14664-3 0 2328 2 26536 98.9989 6.2639 0010992 49.0378 311.1743 14.12210151227159 1 26536U 00055A 05048.83769406 .00000190 00000-0 12810-3 0 2338 2 26536 98.9992 6.6905 0010923 48.0460 312.1635 14.12210121227213 1 26536U 00055A 05049.33364567 .00000097 00000-0 77347-4 0 2336 2 26536 98.9988 7.1886 0010922 46.9692 313.2375 14.12209893227289 1 26536U 00055A 05049.75874740 -.00000118 00000-0 -39503-4 0 2340 2 26536 98.9999 7.6166 0010843 45.8049 314.3948 14.12208538227343 1 26536U 00055A 05050.32555104 -.00000135 00000-0 -48936-4 0 2344 2 26536 98.9991 8.1859 0010963 44.1896 316.0163 14.12208699227420 1 26536U 00055A 05050.82150281 -.00000039 00000-0 31578-5 0 2354 2 26536 98.9996 8.6840 0010947 42.7344 317.4697 14.12209094227498 1 26536U 00055A 05051.24660400 -.00000007 00000-0 20930-4 0 2354 2 26536 98.9993 9.1106 0010918 41.7113 318.4903 14.12209326227553 1 26536U 00055A 05051.74255551 .00000008 00000-0 28663-4 0 2368 2 26536 98.9996 9.6082 0010906 40.3272 319.8696 14.12209283227626 1 26536U 00055A 05052.23850748 .00000008 00000-0 28663-4 0 2362 2 26536 98.9996 10.1059 0010906 38.9298 321.2656 14.12209336227697 1 26536U 00055A 05052.73445923 .00000008 00000-0 28663-4 0 2373 2 26536 98.9996 10.6037 0010906 37.5325 322.6606 14.12209388227769 1 26536U 00055A 05053.23041095 .00000181 00000-0 12297-3 0 2378 2 26536 98.9992 11.1015 0010839 36.2005 323.9959 14.12210530227837 1 26536U 00055A 05053.23041095 .00000181 00000-0 12297-3 0 2389 2 26536 98.9992 11.1015 0010839 36.2005 323.9959 14.12210530227837 1 26536U 00055A 05053.79721120 .00000229 00000-0 14887-3 0 2395 2 26536 98.9989 11.6701 0010828 34.6281 325.5607 14.12211077227910 1 26536U 00055A 05054.36401215 .00000228 00000-0 14887-3 0 2398 2 26536 98.9989 12.2389 0010828 33.0310 327.1535 14.12211387227995 1 26536U 00055A 05054.36401215 .00000228 00000-0 14887-3 0 2400 2 26536 98.9989 12.2389 0010828 33.0310 327.1535 14.12211387227995 1 26536U 00055A 05054.78911299 .00000404 00000-0 24418-3 0 2412 2 26536 98.9988 12.6645 0010963 31.4357 328.7504 14.12212648228058 1 26536U 00055A 05055.28506275 .00000488 00000-0 29024-3 0 2412 2 26536 98.9992 13.1619 0010920 30.0083 330.1727 14.12213465228124 1 26536U 00055A 05055.28506275 .00000488 00000-0 29024-3 0 2423 2 26536 98.9992 13.1619 0010920 30.0083 330.1727 14.12213465228124 1 26536U 00055A 05055.85186262 .00000365 00000-0 22331-3 0 2435 2 26536 98.9995 13.7304 0010849 28.3865 331.7866 14.12213310228201 1 26536U 00055A 05056.34781343 .00000239 00000-0 15481-3 0 2439 2 26536 99.0001 14.2285 0010774 27.0835 333.0884 14.12213105228279 1 26536U 00055A 05056.34781343 .00000239 00000-0 15481-3 0 2440 2 26536 99.0001 14.2285 0010774 27.0835 333.0884 14.12213105228279 1 26536U 00055A 05056.84376399 .00000086 00000-0 71122-4 0 2452 2 26536 99.0004 14.7263 0010763 25.5585 334.6072 14.12212421228340 1 26536U 00055A 05057.33971544 .00000019 00000-0 35019-4 0 2451 2 26536 99.0006 15.2244 0010721 24.3958 335.7717 14.12212302228416 1 26536U 00055A 05057.76481602 -.00000066 00000-0 -11074-4 0 2469 2 26536 99.0010 15.6512 0010740 23.0353 337.1269 14.12211777228478 1 26536U 00055A 05058.18991729 -.00000066 00000-0 -11074-4 0 2462 2 26536 99.0010 16.0779 0010740 21.8376 338.3251 14.12211760228532 1 26536U 00055A 05058.82756834 -.00000002 00000-0 23570-4 0 2473 2 26536 99.0020 16.7182 0010509 20.4127 339.7513 14.12212171228623 1 26536U 00055A 05059.25266792 -.00000100 00000-0 -29830-4 0 2475 2 26536 99.0017 17.1451 0010526 19.4028 340.7517 14.12211691228688 1 26536U 00055A 05059.25266792 -.00000100 00000-0 -29830-4 0 2486 2 26536 99.0017 17.1451 0010526 19.4028 340.7517 14.12211691228688 1 26536U 00055A 05059.25266792 -.00000100 00000-0 -29830-4 0 2497 2 26536 99.0017 17.1451 0010526 19.4028 340.7517 14.12211691228688 1 26536U 00055A 05059.74861926 -.00000154 00000-0 -59209-4 0 2505 2 26536 99.0021 17.6432 0010481 18.1740 341.9795 14.12211334228757 1 26536U 00055A 05060.24457040 -.00000108 00000-0 -33902-4 0 2501 2 26536 99.0018 18.1413 0010409 16.9490 343.2050 14.12211561228825 1 26536U 00055A 05060.81137096 -.00000097 00000-0 -27944-4 0 2517 2 26536 99.0019 18.7107 0010413 15.2638 344.8842 14.12211479228906 1 26536U 00055A 05061.37817206 -.00000132 00000-0 -47087-4 0 2517 2 26536 99.0016 19.2802 0010524 13.6370 346.5087 14.12211440228985 1 26536U 00055A 05061.37817206 -.00000132 00000-0 -47087-4 0 2528 2 26536 99.0016 19.2802 0010524 13.6370 346.5087 14.12211440228985 1 26536U 00055A 05061.94497307 .00000128 00000-0 94342-4 0 2537 2 26536 99.0013 19.8494 0010553 12.0391 348.1081 14.12212721229068 1 26536U 00055A 05062.44092250 .00000242 00000-0 15628-3 0 2537 2 26536 99.0013 20.3471 0010465 10.9812 349.1614 14.12213510229135 1 26536U 00055A 05062.44092250 .00000242 00000-0 15628-3 0 2548 2 26536 99.0013 20.3471 0010465 10.9812 349.1614 14.12213510229135 1 26536U 00055A 05062.44092250 .00000242 00000-0 15628-3 0 2559 2 26536 99.0013 20.3471 0010465 10.9812 349.1614 14.12213510229135 1 26536U 00055A 05062.44092250 .00000242 00000-0 15628-3 0 2560 2 26536 99.0013 20.3471 0010465 10.9812 349.1614 14.12213510229135 1 26536U 00055A 05063.07857210 .00000371 00000-0 22662-3 0 2575 2 26536 99.0013 20.9869 0010609 9.0530 351.0843 14.12214548229226 1 26536U 00055A 05063.57452158 .00000396 00000-0 24005-3 0 2583 2 26536 99.0012 21.4850 0010559 7.8398 352.2943 14.12215075229290 1 26536U 00055A 05064.07047101 .00000533 00000-0 31464-3 0 2587 2 26536 99.0006 21.9830 0010727 6.1618 353.9705 14.12216274229364 1 26536U 00055A 05064.63726953 .00000401 00000-0 24266-3 0 2595 2 26536 99.0008 22.5521 0010646 4.5706 355.5528 14.12216087229442 1 26536U 00055A 05065.20406925 .00000292 00000-0 18331-3 0 2597 2 26536 99.0011 23.1212 0010619 3.0164 357.1051 14.12216036229524 1 26536U 00055A 05065.20406925 .00000292 00000-0 18331-3 0 2609 2 26536 99.0011 23.1212 0010619 3.0164 357.1051 14.12216036229524 1 26536U 00055A 05065.84171859 .00000123 00000-0 91292-4 0 2616 2 26536 99.0014 23.7612 0010536 1.2780 358.8375 14.12215455229610 1 26536U 00055A 05066.40851877 .00000047 00000-0 50428-4 0 2615 2 26536 99.0019 24.3300 0010430 359.8560 0.2604 14.12215325229694 1 26536U 00055A 05066.40851877 .00000047 00000-0 50428-4 0 2626 2 26536 99.0019 24.3300 0010430 359.8560 0.2604 14.12215325229694 1 26536U 00055A 05066.90446834 -.00000163 00000-0 -63980-4 0 2633 2 26536 99.0024 24.8279 0010421 358.4666 1.6421 14.12214231229767 1 26536U 00055A 05067.40041927 -.00000163 00000-0 -63980-4 0 2633 2 26536 99.0024 25.3258 0010421 357.0694 3.0414 14.12214115229833 1 26536U 00055A 05067.89636924 -.00000163 00000-0 -63980-4 0 2644 2 26536 99.0024 25.8236 0010421 355.6722 4.4357 14.12213998229907 1 26536U 00055A 05068.46316927 -.00000163 00000-0 -63980-4 0 2646 2 26536 99.0024 26.3926 0010421 354.0755 6.0291 14.12213865229984 1 26536U 00055A 05068.46316927 -.00000163 00000-0 -63980-4 0 2657 2 26536 99.0024 26.3926 0010421 354.0755 6.0291 14.12213865229984 1 26536U 00055A 05068.88826933 -.00000137 00000-0 -49912-4 0 2667 2 26536 99.0026 26.8203 0010080 352.8826 7.2253 14.12214090230046 1 26536U 00055A 05069.31336830 -.00000105 00000-0 -32427-4 0 2666 2 26536 99.0026 27.2470 0010046 351.6038 8.4976 14.12214207230103 1 26536U 00055A 05070.02186801 .00000002 00000-0 25602-4 0 2679 2 26536 99.0027 27.9585 0010141 349.4344 10.6634 14.12214709230203 1 26536U 00055A 05070.58866730 .00000069 00000-0 62037-4 0 2683 2 26536 99.0029 28.5279 0010079 347.8585 12.2360 14.12215109230288 1 26536U 00055A 05071.01376661 .00000202 00000-0 13471-3 0 2687 2 26536 99.0027 28.9548 0010195 346.5724 13.5208 14.12216015230348 1 26536U 00055A 05071.72226489 .00000269 00000-0 17094-3 0 2696 2 26536 99.0026 29.6661 0010242 344.5960 15.4906 14.12216689230448 1 26536U 00055A 05072.28906361 .00000496 00000-0 29425-3 0 2695 2 26536 99.0026 30.2353 0010211 342.6518 17.4370 14.12218364230526 1 26536U 00055A 05072.28906361 .00000496 00000-0 29425-3 0 2707 2 26536 99.0026 30.2353 0010211 342.6518 17.4370 14.12218364230526 1 26536U 00055A 05072.78501069 .00000496 00000-0 29425-3 0 2719 2 26536 99.0026 30.7332 0010211 341.2544 18.8250 14.12218900230597 1 26536U 00055A 05073.35180864 .00000404 00000-0 24451-3 0 2712 2 26536 99.0027 31.3031 0010344 339.9605 20.1113 14.12218906230679 1 26536U 00055A 05073.35180864 .00000404 00000-0 24451-3 0 2723 2 26536 99.0027 31.3031 0010344 339.9605 20.1113 14.12218906230679 1 26536U 00055A 05073.84775777 .00000271 00000-0 17178-3 0 2731 2 26536 99.0033 31.8016 0010321 338.4801 21.5893 14.12218455230748 1 26536U 00055A 05074.48540655 .00000160 00000-0 11180-3 0 2731 2 26536 99.0038 32.4423 0010376 336.7899 23.2775 14.12218241230831 1 26536U 00055A 05074.48540655 .00000160 00000-0 11180-3 0 2742 2 26536 99.0038 32.4423 0010376 336.7899 23.2775 14.12218241230831 1 26536U 00055A 05075.05220538 .00000050 00000-0 51989-4 0 2752 2 26536 99.0038 33.0118 0010319 335.1513 24.9140 14.12217897230911 1 26536U 00055A 05075.68985405 -.00000011 00000-0 18721-4 0 2768 2 26536 99.0038 33.6521 0010359 333.3342 26.7278 14.12217642231000 1 26536U 00055A 05076.11495334 -.00000011 00000-0 18721-4 0 2764 2 26536 99.0038 34.0789 0010359 332.1366 27.9249 14.12217671231063 1 26536U 00055A 05076.11495334 -.00000011 00000-0 18721-4 0 2775 2 26536 99.0038 34.0789 0010359 332.1366 27.9249 14.12217671231063 1 26536U 00055A 05076.75260175 -.00000011 00000-0 18721-4 0 2789 2 26536 99.0038 34.7191 0010359 330.3402 29.7180 14.12217715231151 1 26536U 00055A 05077.24855050 -.00000011 00000-0 18721-4 0 2786 2 26536 99.0038 35.2171 0010359 328.9430 31.1127 14.12217749231222 1 26536U 00055A 05077.24855050 -.00000011 00000-0 18721-4 0 2797 2 26536 99.0038 35.2171 0010359 328.9430 31.1127 14.12217749231222 1 26536U 00055A 05077.88619890 -.00000011 00000-0 18721-4 0 2809 2 26536 99.0038 35.8573 0010359 327.1467 32.9059 14.12217792231316 1 26536U 00055A 05078.45299746 -.00000011 00000-0 18721-4 0 2807 2 26536 99.0038 36.4264 0010359 325.5499 34.5000 14.12217831231393 1 26536U 00055A 05078.45299746 -.00000011 00000-0 18721-4 0 2818 2 26536 99.0038 36.4264 0010359 325.5499 34.5000 14.12217831231393 1 26536U 00055A 05078.94894620 -.00000011 00000-0 18721-4 0 2825 2 26536 99.0038 36.9244 0010359 324.1527 35.8948 14.12217866231464 1 26536U 00055A 05079.44489494 -.00000011 00000-0 18721-4 0 2820 2 26536 99.0038 37.4224 0010359 322.7555 37.2896 14.12217900231538 1 26536U 00055A 05080.43678942 .00000425 00000-0 25605-3 0 2836 2 26536 99.0027 38.4181 0009861 318.1261 41.9169 14.12220708231678 1 26536U 00055A 05080.86188722 .00000553 00000-0 32535-3 0 2848 2 26536 99.0023 38.8449 0009834 316.7144 43.3277 14.12221718231734 1 26536U 00055A 05081.49953334 .00000490 00000-0 29093-3 0 2842 2 26536 99.0030 39.4867 0009888 314.5641 45.4715 14.12222080231823 1 26536U 00055A 05081.49953334 .00000490 00000-0 29093-3 0 2853 2 26536 99.0030 39.4867 0009888 314.5641 45.4715 14.12222080231823 1 26536U 00055A 05081.92463116 .00000496 00000-0 29442-3 0 2860 2 26536 99.0027 39.9135 0009902 313.5782 46.4556 14.12222501231882 1 26536U 00055A 05082.49142805 .00000288 00000-0 18153-3 0 2868 2 26536 99.0031 40.4831 0009922 311.7006 48.3285 14.12222064231961 1 26536U 00055A 05083.48332437 -.00000032 00000-0 74762-5 0 2879 2 26536 99.0038 41.4796 0009872 308.6031 51.4237 14.12220845232100 1 26536U 00055A 05083.90842288 -.00000128 00000-0 -45117-4 0 2885 2 26536 99.0038 41.9065 0009836 307.3448 52.6805 14.12220333232164 1 26536U 00055A 05084.40437132 -.00000199 00000-0 -83477-4 0 2888 2 26536 99.0036 42.4043 0009795 305.5359 54.4902 14.12220005232231 1 26536U 00055A 05084.82946967 -.00000108 00000-0 -34339-4 0 2899 2 26536 99.0040 42.8311 0009749 304.0974 55.9285 14.12220272232296 1 26536U 00055A 05085.39626719 -.00000136 00000-0 -49087-4 0 2899 2 26536 99.0047 43.4009 0009741 303.1593 56.8636 14.12220163232371 1 26536U 00055A 05085.89221546 -.00000136 00000-0 -49087-4 0 2905 2 26536 99.0047 43.8989 0009741 301.7622 58.2600 14.12220074232445 1 26536U 00055A 05086.31731388 -.00000029 00000-0 86453-5 0 2902 2 26536 99.0050 44.3263 0009737 300.6309 59.3923 14.12220563232505 1 26536U 00055A 05086.74241172 -.00000048 00000-0 -11830-5 0 2916 2 26536 99.0055 44.7535 0009704 299.4101 60.6082 14.12220320232563 1 26536U 00055A 05086.74241172 -.00000048 00000-0 -11830-5 0 2927 2 26536 99.0055 44.7535 0009704 299.4101 60.6082 14.12220320232563 1 26536U 00055A 05086.74241172 -.00000048 00000-0 -11830-5 0 2938 2 26536 99.0055 44.7535 0009704 299.4101 60.6082 14.12220320232563 1 26536U 00055A 05089.64725096 .00000337 00000-0 20769-3 0 2941 2 26536 99.0061 47.6726 0009704 290.6255 69.4125 14.12223475232971 1 26536U 00055A 05090.42659122 .00000325 00000-0 20123-3 0 2957 2 26536 99.0061 48.4561 0009724 288.1187 71.8937 14.12224059233085 1 26536U 00055A 05091.41848431 .00000237 00000-0 15356-3 0 2965 2 26536 99.0065 49.4524 0009739 284.5643 75.4438 14.12224343233220 1 26536U 00055A 05091.91443121 .00000122 00000-0 90960-4 0 2976 2 26536 99.0063 49.9508 0009706 283.2375 76.7678 14.12223949233295 1 26536U 00055A 05092.41037880 .00000045 00000-0 49256-4 0 2979 2 26536 99.0065 50.4490 0009729 281.7572 78.2503 14.12223790233367 1 26536U 00055A 05093.47312317 -.00000073 00000-0 -14982-4 0 2989 2 26536 99.0065 51.5170 0009729 280.0926 79.9122 14.12223242233513 1 26536U 00055A 05093.47312317 -.00000073 00000-0 -14982-4 0 2990 2 26536 99.0065 51.5170 0009729 280.0926 79.9122 14.12223242233513 1 26536U 00055A 05093.96907087 -.00000087 00000-0 -22797-4 0 3009 2 26536 99.0064 52.0151 0009732 278.6373 81.3697 14.12223178233589 1 26536U 00055A 05094.46501808 -.00000087 00000-0 -22797-4 0 3006 2 26536 99.0064 52.5132 0009732 277.2402 82.7663 14.12223137233652 1 26536U 00055A 05095.52776228 -.00000071 00000-0 -14179-4 0 3013 2 26536 99.0067 53.5811 0009670 273.1052 86.9032 14.12223160233806 1 26536U 00055A 05096.51965606 .00000091 00000-0 74357-4 0 3028 2 26536 99.0066 54.5779 0009645 269.9613 90.0479 14.12224101233949 1 26536U 00055A 05096.87390338 .00000192 00000-0 12924-3 0 3046 2 26536 99.0063 54.9336 0009668 269.0120 90.9968 14.12224768233994 1 26536U 00055A 05097.22815057 .00000220 00000-0 14441-3 0 3044 2 26536 99.0063 55.2895 0009674 267.8686 92.1385 14.12225083234043 1 26536U 00055A 05097.65324753 .00000292 00000-0 18355-3 0 3057 2 26536 99.0063 55.7167 0009648 266.5135 93.4939 14.12225592234107 1 26536U 00055A 05098.07834437 .00000417 00000-0 25161-3 0 3051 2 26536 99.0064 56.1436 0009695 265.2358 94.7744 14.12226598234168 1 26536U 00055A 05098.57428971 .00000377 00000-0 22947-3 0 3063 2 26536 99.0067 56.6423 0009663 263.7240 96.2809 14.12226708234230 1 26536U 00055A 05099.49533261 .00000360 00000-0 22035-3 0 3064 2 26536 99.0067 57.5677 0009688 261.1121 98.8952 14.12227427234368 1 26536U 00055A 05099.49533261 .00000360 00000-0 22035-3 0 3075 2 26536 99.0067 57.5677 0009688 261.1121 98.8952 14.12227427234368 1 26536U 00055A 05100.48722503 .00000157 00000-0 10997-3 0 3085 2 26536 99.0074 58.5648 0009690 257.9745 102.0332 14.12227020234508 1 26536U 00055A 05100.91232180 .00000111 00000-0 85063-4 0 3098 2 26536 99.0078 58.9917 0009710 256.3948 103.6132 14.12226888234568 1 26536U 00055A 05101.33741866 .00000032 00000-0 42149-4 0 3091 2 26536 99.0077 59.4185 0009720 255.4072 104.6003 14.12226586234629 1 26536U 00055A 05101.83336525 -.00000102 00000-0 -30579-4 0 3104 2 26536 99.0080 59.9168 0009741 254.0064 106.0007 14.12225929234695 1 26536U 00055A 05102.18761329 -.00000161 00000-0 -62900-4 0 3105 2 26536 99.0081 60.2729 0009726 252.7677 107.2417 14.12225562234749 1 26536U 00055A 05102.75440972 -.00000152 00000-0 -57850-4 0 3115 2 26536 99.0083 60.8422 0009728 250.9008 109.1113 14.12225453234829 1 26536U 00055A 05103.10865731 -.00000138 00000-0 -50242-4 0 3111 2 26536 99.0083 61.1981 0009767 249.4780 110.5369 14.12225616234871 1 26536U 00055A 05103.60460344 -.00000122 00000-0 -41484-4 0 3129 2 26536 99.0085 61.6963 0009777 247.5026 112.5113 14.12225533234946 1 26536U 00055A 05104.52564669 -.00000055 00000-0 -49673-5 0 3120 2 26536 99.0086 62.6221 0009826 244.6142 115.4016 14.12225863235072 1 26536U 00055A 05104.52564669 -.00000055 00000-0 -49673-5 0 3131 2 26536 99.0086 62.6221 0009826 244.6142 115.4016 14.12225863235072 1 26536U 00055A 05106.43858356 .00000328 00000-0 20278-3 0 3142 2 26536 99.0080 64.5451 0009801 239.7291 120.3082 14.12228669235340 1 26536U 00055A 05106.43858356 .00000328 00000-0 20278-3 0 3153 2 26536 99.0080 64.5451 0009801 239.7291 120.3082 14.12228669235340 1 26536U 00055A 05106.86367642 .00000397 00000-0 24047-3 0 3168 2 26536 99.0082 64.9730 0009826 239.1606 120.8614 14.12229320235405 1 26536U 00055A 05107.21792282 .00000531 00000-0 31352-3 0 3167 2 26536 99.0085 65.3288 0009894 237.7380 122.2861 14.12230256235454 1 26536U 00055A 05107.57216872 .00000524 00000-0 30944-3 0 3171 2 26536 99.0086 65.6853 0009899 236.6025 123.4191 14.12230532235507 1 26536U 00055A 05108.49320974 .00000385 00000-0 23377-3 0 3179 2 26536 99.0079 66.6111 0009870 234.5745 125.4493 14.12230829235632 1 26536U 00055A 05108.91830558 .00000276 00000-0 17499-3 0 3188 2 26536 99.0078 67.0383 0009849 233.2898 126.7334 14.12230515235694 1 26536U 00055A 05109.34340199 .00000177 00000-0 12088-3 0 3182 2 26536 99.0080 67.4655 0009862 232.0449 127.9821 14.12230339235752 1 26536U 00055A 05109.83934731 .00000042 00000-0 47490-4 0 3195 2 26536 99.0081 67.9641 0009843 230.7352 129.2905 14.12229741235821 1 26536U 00055A 05110.19359478 -.00000084 00000-0 -20984-4 0 3192 2 26536 99.0081 68.3200 0009857 229.4674 130.5618 14.12229177235878 1 26536U 00055A 05110.76039012 -.00000180 00000-0 -73046-4 0 3200 2 26536 99.0084 68.8889 0009946 227.2878 132.7447 14.12228633235959 1 26536U 00055A 05111.11463728 -.00000200 00000-0 -83865-4 0 3208 2 26536 99.0082 69.2447 0009955 226.1982 133.8371 14.12228516236001 1 26536U 00055A 05111.68143243 -.00000202 00000-0 -85384-4 0 3218 2 26536 99.0083 69.8140 0009977 224.3722 135.6645 14.12228245236085 1 26536U 00055A 05112.03567963 -.00000118 00000-0 -39266-4 0 3211 2 26536 99.0080 70.1699 0009992 223.4907 136.5503 14.12228656236133 1 26536U 00055A 05112.53162491 -.00000104 00000-0 -32018-4 0 3227 2 26536 99.0081 70.6681 0010008 221.8512 138.1898 14.12228639236208 1 26536U 00055A 05113.45266676 -.00000001 00000-0 24033-4 0 3222 2 26536 99.0084 71.5938 0010079 218.8883 141.1589 14.12229185236333 1 26536U 00055A 05113.45266676 -.00000001 00000-0 24033-4 0 3233 2 26536 99.0084 71.5938 0010079 218.8883 141.1589 14.12229185236333 1 26536U 00055A 05113.87776251 .00000098 00000-0 77694-4 0 3241 2 26536 99.0082 72.0209 0010096 217.7954 142.2536 14.12229796236392 1 26536U 00055A 05114.30285803 .00000182 00000-0 12387-3 0 3249 2 26536 99.0082 72.4479 0010119 216.3796 143.6711 14.12230416236458 1 26536U 00055A 05114.72795344 .00000273 00000-0 17327-3 0 3252 2 26536 99.0087 72.8755 0010167 214.8196 145.2322 14.12230955236515 1 26536U 00055A 05115.08219965 .00000378 00000-0 23032-3 0 3258 2 26536 99.0089 73.2312 0010144 214.0665 145.9878 14.12231753236564 1 26536U 00055A 05115.57814388 .00000393 00000-0 23814-3 0 3268 2 26536 99.0091 73.7301 0010145 212.3714 147.6834 14.12232194236636 1 26536U 00055A 05116.49918386 .00000391 00000-0 23751-3 0 3261 2 26536 99.0098 74.6568 0010109 209.7744 150.2855 14.12232912236766 1 26536U 00055A 05116.49918386 .00000391 00000-0 23751-3 0 3272 2 26536 99.0098 74.6568 0010109 209.7744 150.2855 14.12232912236766 1 26536U 00055A 05116.92427893 .00000282 00000-0 17814-3 0 3281 2 26536 99.0101 75.0839 0010173 208.2370 151.8231 14.12232698236820 1 26536U 00055A 05117.42022369 .00000236 00000-0 15277-3 0 3286 2 26536 99.0107 75.5832 0010172 206.7834 153.2807 14.12232799236895 1 26536U 00055A 05117.91616816 .00000104 00000-0 81079-4 0 3295 2 26536 99.0107 76.0824 0010198 205.3212 154.7430 14.12232330236962 1 26536U 00055A 05118.27041487 .00000110 00000-0 84512-4 0 3293 2 26536 99.0107 76.4384 0010208 204.3000 155.7695 14.12232495237016 1 26536U 00055A 05118.83720849 -.00000032 00000-0 70804-5 0 3307 2 26536 99.0113 77.0085 0010233 202.8444 157.2235 14.12231774237095 1 26536U 00055A 05119.19145550 -.00000070 00000-0 -13442-4 0 3304 2 26536 99.0113 77.3645 0010277 201.6801 158.3931 14.12231582237140 1 26536U 00055A 05119.68740046 -.00000135 00000-0 -48886-4 0 3312 2 26536 99.0114 77.8630 0010254 200.3671 159.7070 14.12231125237216 1 26536U 00055A 05120.53759179 -.00000125 00000-0 -43231-4 0 3313 2 26536 99.0111 78.7174 0010422 197.7735 162.3073 14.12231151237338 1 26536U 00055A 05121.38778330 -.00000133 00000-0 -47827-4 0 3322 2 26536 99.0110 79.5720 0010558 195.3064 164.7811 14.12231070237451 1 26536U 00055A 05121.88372796 -.00000133 00000-0 -47827-4 0 3334 2 26536 99.0110 80.0704 0010558 193.9095 166.1787 14.12230982237525 1 26536U 00055A 05122.30882377 .00000002 00000-0 25963-4 0 3333 2 26536 99.0099 80.4977 0010578 192.6487 167.4455 14.12231720237583 1 26536U 00055A 05122.87561719 .00000221 00000-0 14482-3 0 3346 2 26536 99.0098 81.0676 0010598 190.9609 169.1387 14.12233012237662 1 26536U 00055A 05123.30071130 .00000210 00000-0 13876-3 0 3342 2 26536 99.0102 81.4946 0010607 189.6621 170.4351 14.12233233237720 1 26536U 00055A 05123.79665553 .00000372 00000-0 22682-3 0 3358 2 26536 99.0096 81.9929 0010605 188.2877 171.8145 14.12234260237798 1 26536U 00055A 05124.15090072 .00000452 00000-0 27058-3 0 3358 2 26536 99.0095 82.3489 0010534 187.4322 172.6711 14.12235018237846 1 26536U 00055A 05124.71769309 .00000442 00000-0 26477-3 0 3360 2 26536 99.0099 82.9186 0010642 185.5505 174.5534 14.12235323237924 1 26536U 00055A 05125.49703315 .00000442 00000-0 26477-3 0 3361 2 26536 99.0099 83.7017 0010642 183.3556 176.7545 14.12236081238039 1 26536U 00055A 05126.41807129 .00000191 00000-0 12839-3 0 3371 2 26536 99.0099 84.6286 0010567 180.9206 179.1934 14.12235600238167 1 26536U 00055A 05126.84316596 .00000118 00000-0 88987-4 0 3389 2 26536 99.0104 85.0557 0010695 179.7739 180.3432 14.12235396238225 1 26536U 00055A 05127.19741149 .00000109 00000-0 83806-4 0 3389 2 26536 99.0109 85.4116 0010779 178.7921 181.3276 14.12235392238278 1 26536U 00055A 05127.69335508 -.00000054 00000-0 -46689-5 0 3393 2 26536 99.0113 85.9103 0010843 177.4086 182.7114 14.12234662238347 1 26536U 00055A 05128.47269946 .00000076 00000-0 66187-4 0 2791 2 26536 99.0119 86.6928 0010324 174.3159 185.7544 14.12232794238453 1 26536U 00055A 05129.03948893 -.00000152 00000-0 -58173-4 0 3401 2 26536 99.0120 87.2640 0011052 173.5549 186.5747 14.12233995238533 1 26536U 00055A 05129.46458425 -.00000191 00000-0 -79141-4 0 3417 2 26536 99.0121 87.6914 0011045 172.4181 187.7154 14.12233717238597 1 26536U 00055A 05129.46459984 .00000032 00000-0 42084-4 0 2808 2 26536 99.0120 87.6900 0010378 171.5490 188.5943 14.12232863238598 1 26536U 00055A 05129.88967937 -.00000113 00000-0 -36699-4 0 3422 2 26536 99.0120 88.1190 0011023 171.3389 188.7992 14.12234006238652 1 26536U 00055A 05130.24392480 -.00000088 00000-0 -23002-4 0 3424 2 26536 99.0119 88.4750 0011037 170.3649 189.7745 14.12234117238704 1 26536U 00055A 05130.45648698 .00000086 00000-0 71523-4 0 2811 2 26536 99.0121 88.6874 0010413 168.7786 191.4431 14.12235876238734 1 26536U 00055A 05130.59817037 -.00000027 00000-0 10198-4 0 3437 2 26536 99.0121 88.8313 0010964 169.3747 190.7659 14.12234314238751 1 26536U 00055A 05131.44835764 .00000086 00000-0 71451-4 0 2824 2 26536 99.0123 89.6847 0010480 165.9796 194.2080 14.12237359238875 1 26536U 00055A 05131.44835876 .00000112 00000-0 85430-4 0 3438 2 26536 99.0122 89.6860 0011026 167.3302 192.8152 14.12235306238879 1 26536U 00055A 05131.44835876 .00000112 00000-0 85430-4 0 3449 2 26536 99.0122 89.6860 0011026 167.3302 192.8152 14.12235306238879 1 26536U 00055A 05131.87345318 .00000297 00000-0 18619-3 0 3452 2 26536 99.0117 90.1136 0010850 166.0413 194.1098 14.12236529238938 1 26536U 00055A 05132.29854654 .00000297 00000-0 18619-3 0 3457 2 26536 99.0117 90.5408 0010850 164.8441 195.3057 14.12236819238997 1 26536U 00055A 05132.44023513 .00000072 00000-0 63970-4 0 2839 2 26536 99.0126 90.6821 0010550 163.1858 196.9627 14.12237460239015 1 26536U 00055A 05132.86533852 .00000324 00000-0 20092-3 0 3464 2 26536 99.0119 91.1115 0011012 163.5730 196.5819 14.12237328239074 1 26536U 00055A 05133.21958304 .00000433 00000-0 25998-3 0 3468 2 26536 99.0122 91.4674 0011064 162.7550 197.4019 14.12238082239125 1 26536U 00055A 05133.43212138 .00000086 00000-0 71297-4 0 2849 2 26536 99.0128 91.6794 0010620 160.3829 199.7553 14.12237277239152 1 26536U 00055A 05133.71552518 .00000453 00000-0 27089-3 0 3476 2 26536 99.0127 91.9663 0011086 161.3420 198.8161 14.12238601239195 1 26536U 00055A 05134.06976970 .00000384 00000-0 23359-3 0 3476 2 26536 99.0119 92.3232 0011043 160.2058 199.9529 14.12238629239247 1 26536U 00055A 05134.49485990 .00000143 00000-0 10230-3 0 2858 2 26536 99.0130 92.7480 0010676 157.3493 202.8075 14.12237818239306 1 26536U 00055A 05134.56571234 .00000330 00000-0 20411-3 0 3483 2 26536 99.0124 92.8222 0011178 158.8261 201.3373 14.12238775239310 1 26536U 00055A 05135.48674658 .00000147 00000-0 10462-3 0 2861 2 26536 99.0130 93.7453 0010713 154.4672 205.6645 14.12237144239447 1 26536U 00055A 05135.48674866 .00000133 00000-0 97140-4 0 3485 2 26536 99.0126 93.7485 0011174 156.1651 204.0017 14.12238262239443 1 26536U 00055A 05135.48674866 .00000133 00000-0 97140-4 0 3496 2 26536 99.0126 93.7485 0011174 156.1651 204.0017 14.12238262239443 1 26536U 00055A 05135.84099374 .00000023 00000-0 36856-4 0 3508 2 26536 99.0126 94.1046 0011180 155.0507 205.1183 14.12237834239491 1 26536U 00055A 05136.19523897 -.00000045 00000-0 -32481-7 0 3508 2 26536 99.0124 94.4607 0011192 153.9676 206.2049 14.12237577239545 1 26536U 00055A 05136.69118195 -.00000045 00000-0 -32481-7 0 3515 2 26536 99.0124 94.9592 0011192 152.5708 207.6056 14.12237577239615 1 26536U 00055A 05137.89561434 -.00000045 00000-0 -32481-7 0 3527 2 26536 99.0124 96.1697 0011192 149.1785 211.0045 14.12237577239787 1 26536U 00055A 05138.24985915 -.00000045 00000-0 -32481-7 0 3532 2 26536 99.0124 96.5257 0011192 148.1808 212.0042 14.12237577239832 1 26536U 00055A 05138.24985915 -.00000045 00000-0 -32481-7 0 3543 2 26536 99.0124 96.5257 0011192 148.1808 212.0042 14.12237577239832 1 26536U 00055A 05138.24985915 -.00000045 00000-0 -32481-7 0 3554 2 26536 99.0124 96.5257 0011192 148.1808 212.0042 14.12237577239832 1 26536U 00055A 05138.24985915 -.00000045 00000-0 -32481-7 0 3565 2 26536 99.0124 96.5257 0011192 148.1808 212.0042 14.12237577239832 1 26536U 00055A 05138.24985915 -.00000045 00000-0 -32481-7 0 3576 2 26536 99.0124 96.5257 0011192 148.1808 212.0042 14.12237577239832 1 26536U 00055A 05138.24985915 -.00000045 00000-0 -32481-7 0 3587 2 26536 99.0124 96.5257 0011192 148.1808 212.0042 14.12237577239832 1 26536U 00055A 05138.24985915 -.00000045 00000-0 -32481-7 0 3598 2 26536 99.0124 96.5257 0011192 148.1808 212.0042 14.12237577239832 1 26536U 00055A 05144.83881180 .00000190 00000-0 12773-3 0 3608 2 26536 99.0136 103.1521 0011404 131.3975 228.8861 14.12240999240769 1 26536U 00055A 05145.26389097 .00000325 00000-0 20147-3 0 3611 2 26536 99.0133 103.5795 0011384 130.0590 230.1589 14.12241633240825 1 26536U 00055A 05145.75983194 -.00000299 00000-0 -13779-3 0 3629 2 26536 99.0138 104.0777 0011423 128.8336 231.3785 14.12239553240899 1 26536U 00055A 05146.11407757 -.00000119 00000-0 -40131-4 0 3620 2 26536 99.0136 104.4336 0011447 128.2458 231.9785 14.12240203240943 1 26536U 00055A 05146.68086729 -.00000209 00000-0 -89070-4 0 3630 2 26536 99.0140 105.0037 0011463 126.7395 233.4816 14.12239667241028 1 26536U 00055A 05147.03511176 -.00000046 00000-0 -16774-6 0 3631 2 26536 99.0139 105.3596 0011470 126.1428 234.0856 14.12240468241075 1 26536U 00055A 05147.03511176 -.00000046 00000-0 -16774-6 0 3642 2 26536 99.0139 105.3596 0011470 126.1428 234.0856 14.12240468241075 1 26536U 00055A 05147.03511176 -.00000046 00000-0 -16774-6 0 3653 2 26536 99.0139 105.3596 0011470 126.1428 234.0856 14.12240468241075 1 26536U 00055A 05147.03511176 -.00000046 00000-0 -16774-6 0 3664 2 26536 99.0139 105.3596 0011470 126.1428 234.0856 14.12240468241075 1 26536U 00055A 05147.03511176 -.00000046 00000-0 -16774-6 0 3675 2 26536 99.0139 105.3596 0011470 126.1428 234.0856 14.12240468241075 1 26536U 00055A 05147.03511176 -.00000046 00000-0 -16774-6 0 3686 2 26536 99.0139 105.3596 0011470 126.1428 234.0856 14.12240468241075 1 26536U 00055A 05152.56131587 .00000092 00000-0 74468-4 0 3696 2 26536 99.0137 110.9153 0011386 110.1363 250.1395 14.12242987241852 1 26536U 00055A 05153.41149026 .00000036 00000-0 44093-4 0 3709 2 26536 99.0131 111.7718 0011476 108.7886 251.4523 14.12243881241979 1 26536U 00055A 05153.83658200 -.00000035 00000-0 57514-5 0 3718 2 26536 99.0131 112.1992 0011495 107.5369 252.7035 14.12243505242035 1 26536U 00055A 05154.26167417 -.00000035 00000-0 57514-5 0 3711 2 26536 99.0131 112.6265 0011495 106.3396 253.9040 14.12243514242095 1 26536U 00055A 05154.68676585 -.00000155 00000-0 -59750-4 0 3726 2 26536 99.0132 113.0540 0011510 105.4422 254.7994 14.12242789242152 1 26536U 00055A 05155.53695021 -.00000159 00000-0 -61909-4 0 3731 2 26536 99.0134 113.9090 0011533 103.2131 257.0343 14.12242690242279 1 26536U 00055A 05155.96204182 -.00000160 00000-0 -62292-4 0 3741 2 26536 99.0134 114.3366 0011538 101.9819 258.2648 14.12242619242332 1 26536U 00055A 05156.31628506 -.00000160 00000-0 -62292-4 0 3741 2 26536 99.0134 114.6926 0011538 100.9842 259.2628 14.12242538242386 1 26536U 00055A 05156.81222565 -.00000160 00000-0 -62292-4 0 3752 2 26536 99.0134 115.1911 0011538 99.5874 260.6601 14.12242424242453 1 26536U 00055A 05157.23731761 -.00000097 00000-0 -28226-4 0 3750 2 26536 99.0137 115.6184 0011573 98.8860 261.3649 14.12242729242514 1 26536U 00055A 05157.80410620 .00000179 00000-0 12164-3 0 3764 2 26536 99.0136 116.1883 0011559 97.0129 263.2422 14.12244243242599 1 26536U 00055A 05158.15834771 .00000320 00000-0 19847-3 0 3763 2 26536 99.0136 116.5446 0011533 96.0065 264.2465 14.12245270242643 1 26536U 00055A 05158.15834771 .00000320 00000-0 19847-3 0 3774 2 26536 99.0136 116.5446 0011533 96.0065 264.2465 14.12245270242643 1 26536U 00055A 05158.58343784 .00000437 00000-0 26200-3 0 3781 2 26536 99.0140 116.9728 0011601 95.2399 265.0116 14.12246102242706 1 26536U 00055A 05159.50446727 .00000510 00000-0 30177-3 0 3785 2 26536 99.0148 117.8991 0011613 92.3832 267.8668 14.12247234242832 1 26536U 00055A 05160.42549670 .00000294 00000-0 18424-3 0 3790 2 26536 99.0150 118.8255 0011629 89.8783 270.3695 14.12247031242960 1 26536U 00055A 05161.41737535 -.00000006 00000-0 21081-4 0 3807 2 26536 99.0151 119.8234 0011588 87.2019 273.0456 14.12246108243103 1 26536U 00055A 05161.84246650 -.00000006 00000-0 21081-4 0 3818 2 26536 99.0151 120.2508 0011588 86.0047 274.2448 14.12246141243168 1 26536U 00055A 05162.19670873 -.00000037 00000-0 44497-5 0 3816 2 26536 99.0142 120.6077 0011556 85.8594 274.3899 14.12245951243217 1 26536U 00055A 05162.62179943 -.00000097 00000-0 -27884-4 0 3824 2 26536 99.0145 121.0352 0011557 84.5862 275.6603 14.12245514243274 1 26536U 00055A 05163.47198165 -.00000255 00000-0 -11403-3 0 3820 2 26536 99.0142 121.8897 0011499 82.4674 277.7801 14.12244787243393 1 26536U 00055A 05163.89707279 -.00000255 00000-0 -11403-3 0 3839 2 26536 99.0142 122.3170 0011499 81.2702 278.9771 14.12244609243451 1 26536U 00055A 05164.25131539 -.00000121 00000-0 -41309-4 0 3831 2 26536 99.0137 122.6734 0011432 81.0825 279.1691 14.12245244243501 1 26536U 00055A 05164.67640530 -.00000152 00000-0 -57936-4 0 3841 2 26536 99.0137 123.1010 0011418 79.7725 280.4723 14.12244969243561 1 26536U 00055A 05165.45573798 .00000028 00000-0 40072-4 0 3842 2 26536 99.0135 123.8846 0011384 78.0722 282.1740 14.12245953243678 1 26536U 00055A 05165.88082836 .00000114 00000-0 86416-4 0 3856 2 26536 99.0131 124.3121 0011376 76.8581 283.3878 14.12246486243730 1 26536U 00055A 05166.23507005 .00000143 00000-0 10219-3 0 3855 2 26536 99.0132 124.6681 0011370 75.8049 284.4391 14.12246763243782 1 26536U 00055A 05166.58931191 .00000258 00000-0 16496-3 0 3861 2 26536 99.0134 125.0244 0011406 74.6440 285.6007 14.12247469243833 1 26536U 00055A 05167.51033965 .00000347 00000-0 21322-3 0 3860 2 26536 99.0138 125.9507 0011394 71.9852 288.2558 14.12248530243965 1 26536U 00055A 05167.86458117 .00000384 00000-0 23347-3 0 3879 2 26536 99.0132 126.3070 0011404 70.6912 289.5502 14.12249081244016 1 26536U 00055A 05168.28967061 .00000423 00000-0 25440-3 0 3879 2 26536 99.0134 126.7345 0011399 69.5180 290.7224 14.12249667244075 1 26536U 00055A 05168.71475982 .00000352 00000-0 21583-3 0 3889 2 26536 99.0137 127.1621 0011387 68.5556 291.6799 14.12249493244134 1 26536U 00055A 05169.49409085 .00000254 00000-0 16272-3 0 3886 2 26536 99.0138 127.9460 0011367 66.3595 293.8753 14.12249679244243 1 26536U 00055A 05169.49409085 .00000254 00000-0 16272-3 0 3897 2 26536 99.0138 127.9460 0011367 66.3595 293.8753 14.12249679244243 1 26536U 00055A 05169.91918057 .00000129 00000-0 94703-4 0 3907 2 26536 99.0140 128.3735 0011382 65.3924 294.8398 14.12249200244301 1 26536U 00055A 05170.27342254 .00000136 00000-0 98528-4 0 3905 2 26536 99.0140 128.7297 0011374 64.5194 295.7159 14.12249397244356 1 26536U 00055A 05170.27342254 .00000136 00000-0 98528-4 0 3916 2 26536 99.0140 128.7297 0011374 64.5194 295.7159 14.12249397244356 1 26536U 00055A 05170.69851191 .00000015 00000-0 32500-4 0 3922 2 26536 99.0146 129.1577 0011371 63.2591 296.9713 14.12248828244416 1 26536U 00055A 05171.47784384 -.00000052 00000-0 -37174-5 0 3924 2 26536 99.0145 129.9415 0011384 61.1087 299.1225 14.12248560244523 1 26536U 00055A 05171.47784384 -.00000052 00000-0 -37174-5 0 3935 2 26536 99.0145 129.9415 0011384 61.1087 299.1225 14.12248560244523 1 26536U 00055A 05171.47784384 -.00000052 00000-0 -37174-5 0 3946 2 26536 99.0145 129.9415 0011384 61.1087 299.1225 14.12248560244523 1 26536U 00055A 05171.47784384 -.00000052 00000-0 -37174-5 0 3957 2 26536 99.0145 129.9415 0011384 61.1087 299.1225 14.12248560244523 1 26536U 00055A 05171.47784384 -.00000052 00000-0 -37174-5 0 3968 2 26536 99.0145 129.9415 0011384 61.1087 299.1225 14.12248560244523 1 26536U 00055A 05172.46972969 .00000043 00000-0 48206-4 0 3231 2 26536 99.0155 130.9380 0011658 57.8877 302.3173 14.12246712244661 1 26536U 00055A 05173.46161181 .00000030 00000-0 40835-4 0 3245 2 26536 99.0154 131.9357 0011658 55.1913 305.0680 14.12247691244803 1 26536U 00055A 05174.45348185 .00000039 00000-0 45585-4 0 3253 2 26536 99.0155 132.9334 0011633 52.6095 307.6678 14.12249479244942 1 26536U 00055A 05174.66601670 .00000006 00000-0 27660-4 0 3974 2 26536 99.0135 133.1482 0011238 53.0591 307.1568 14.12248408244971 1 26536U 00055A 05175.44534749 .00000169 00000-0 11629-3 0 3981 2 26536 99.0141 133.9307 0011108 52.3418 307.8772 14.12249496245083 1 26536U 00055A 05175.87043661 .00000370 00000-0 22580-3 0 3999 2 26536 99.0141 134.3582 0011079 50.8424 309.3775 14.12250740245141 1 26536U 00055A 05176.22467653 .00000370 00000-0 22580-3 0 3990 2 26536 99.0141 134.7143 0011079 49.8447 310.3693 14.12251034245194 1 26536U 00055A 05176.22467653 .00000370 00000-0 22580-3 0 4003 2 26536 99.0141 134.7143 0011079 49.8447 310.3693 14.12251034245194 1 26536U 00055A 05176.72061353 .00000370 00000-0 22580-3 0 4016 2 26536 99.0141 135.2128 0011079 48.4478 311.7642 14.12251445245265 1 26536U 00055A 05177.42909470 .00000376 00000-0 22880-3 0 4014 2 26536 99.0152 135.9268 0010996 46.8453 313.3642 14.12252016245365 1 26536U 00055A 05177.42909470 .00000376 00000-0 22880-3 0 4025 2 26536 99.0152 135.9268 0010996 46.8453 313.3642 14.12252016245365 1 26536U 00055A 05177.85418311 .00000301 00000-0 18821-3 0 4030 2 26536 99.0152 136.3545 0011032 45.5936 314.6115 14.12251958245422 1 26536U 00055A 05178.20842401 .00000270 00000-0 17138-3 0 4036 2 26536 99.0157 136.7108 0011032 44.6166 315.5884 14.12252028245478 1 26536U 00055A 05178.63351268 .00000091 00000-0 74340-4 0 4040 2 26536 99.0159 137.1385 0011023 43.2747 316.9243 14.12251231245538 1 26536U 00055A 05179.48369142 -.00000051 00000-0 -28880-5 0 4041 2 26536 99.0161 137.9938 0011057 40.7323 319.4663 14.12250768245653 1 26536U 00055A 05179.48369142 -.00000051 00000-0 -28880-5 0 4052 2 26536 99.0161 137.9938 0011057 40.7323 319.4663 14.12250768245653 1 26536U 00055A 05179.48369142 -.00000051 00000-0 -28880-5 0 4063 2 26536 99.0161 137.9938 0011057 40.7323 319.4663 14.12250768245653 1 26536U 00055A 05181.96337696 -.00000020 00000-0 13504-4 0 4070 2 26536 99.0139 140.4892 0011059 33.6823 326.4993 14.12250450246006 1 26536U 00055A 05182.45931525 -.00000020 00000-0 13504-4 0 4087 2 26536 99.0139 140.9878 0011059 32.2855 327.8991 14.12250475246072 1 26536U 00055A 05182.88440424 -.00000020 00000-0 13504-4 0 4098 2 26536 99.0139 141.4151 0011059 31.0882 329.0941 14.12250496246138 1 26536U 00055A 05183.23864505 .00000104 00000-0 81277-4 0 4092 2 26536 99.0136 141.7713 0010938 30.3986 329.7866 14.12251290246185 1 26536U 00055A 05183.73458094 .00000144 00000-0 10279-3 0 4108 2 26536 99.0134 142.2700 0010955 28.9057 331.2715 14.12251538246250 1 26536U 00055A 05184.08882154 .00000318 00000-0 19758-3 0 4109 2 26536 99.0129 142.6265 0010800 27.8580 332.3239 14.12252773246303 1 26536U 00055A 05184.93899665 .00000371 00000-0 22615-3 0 4125 2 26536 99.0126 143.4816 0010721 25.4173 334.7548 14.12253632246422 1 26536U 00055A 05185.43493215 .00000319 00000-0 19797-3 0 4110 2 26536 99.0129 143.9809 0010713 23.8160 336.3505 14.12253832246491 1 26536U 00055A 05185.86002007 .00000297 00000-0 18587-3 0 4124 2 26536 99.0130 144.4083 0010700 22.8449 337.3181 14.12253926246550 1 26536U 00055A 05186.28510827 .00000325 00000-0 20141-3 0 4126 2 26536 99.0131 144.8357 0010680 21.7352 338.4279 14.12254380246619 1 26536U 00055A 05187.48952486 .00000056 00000-0 55150-4 0 4131 2 26536 99.0140 146.0477 0010634 18.4766 341.6795 14.12253579246783 1 26536U 00055A 05187.91461276 .00000008 00000-0 28936-4 0 4141 2 26536 99.0138 146.4753 0010661 17.3105 342.8412 14.12253397246840 1 26536U 00055A 05188.33970112 .00000009 00000-0 29567-4 0 4144 2 26536 99.0141 146.9030 0010611 16.2205 343.9313 14.12253496246900 1 26536U 00055A 05188.83563698 -.00000116 00000-0 -38360-4 0 4159 2 26536 99.0152 147.4023 0010644 15.2180 344.9267 14.12252800246971 1 26536U 00055A 05189.11902997 -.00000152 00000-0 -57736-4 0 4158 2 26536 99.0152 147.6874 0010613 14.4841 345.6626 14.12252556247019 1 26536U 00055A 05189.54411842 -.00000181 00000-0 -73462-4 0 4166 2 26536 99.0154 148.1151 0010589 13.3496 346.7948 14.12252284247074 1 26536U 00055A 05190.46514326 -.00000170 00000-0 -67864-4 0 4167 2 26536 99.0152 149.0412 0010648 10.7183 349.4214 14.12252212247204 1 26536U 00055A 05190.46514326 -.00000170 00000-0 -67864-4 0 4178 2 26536 99.0152 149.0412 0010648 10.7183 349.4214 14.12252212247204 1 26536U 00055A 05190.89023169 -.00000086 00000-0 -21978-4 0 4188 2 26536 99.0154 149.4690 0010529 9.4405 350.7002 14.12252640247269 1 26536U 00055A 05191.24447114 -.00000081 00000-0 -19427-4 0 4189 2 26536 99.0155 149.8251 0010497 8.4440 351.6909 14.12252629247318 1 26536U 00055A 05191.66955937 -.00000018 00000-0 15010-4 0 4242 2 26536 99.0152 150.2524 0010526 7.2604 352.8722 14.12252869247374 1 26536U 00055A 05192.44888687 .00000193 00000-0 12978-3 0 4248 2 26536 99.0152 151.0365 0010484 5.0316 355.0987 14.12254222247480 1 26536U 00055A 05192.87397410 .00000275 00000-0 17437-3 0 4251 2 26536 99.0153 151.4640 0010441 3.7546 356.3723 14.12254852247542 1 26536U 00055A 05193.29906127 .00000394 00000-0 23870-3 0 4259 2 26536 99.0152 151.8912 0010410 2.5793 357.5468 14.12255877247608 1 26536U 00055A 05193.72414777 .00000382 00000-0 23245-3 0 4266 2 26536 99.0151 152.3187 0010535 1.0761 359.0410 14.12256046247663 1 26536U 00055A 05194.50347419 .00000425 00000-0 25569-3 0 4260 2 26536 99.0153 153.1027 0010568 358.5924 1.5204 14.12256908247773 1 26536U 00055A 05195.42449595 .00000244 00000-0 15737-3 0 4276 2 26536 99.0153 154.0295 0010595 355.8701 4.2342 14.12256793247903 1 26536U 00055A 05195.84958372 .00000113 00000-0 86212-4 0 4283 2 26536 99.0147 154.4571 0010689 354.8729 5.2296 14.12256387247964 1 26536U 00055A 05196.27467153 .00000113 00000-0 86212-4 0 4283 2 26536 99.0147 154.8845 0010689 353.6756 6.4278 14.12256521248020 1 26536U 00055A 05196.27467153 .00000113 00000-0 86212-4 0 4294 2 26536 99.0147 154.8845 0010689 353.6756 6.4278 14.12256521248020 1 26536U 00055A 05196.69975862 -.00000116 00000-0 -38339-4 0 4305 2 26536 99.0150 155.3125 0010613 352.5146 7.5807 14.12255282248088 1 26536U 00055A 05197.47908685 -.00000136 00000-0 -49434-4 0 4301 2 26536 99.0150 156.0965 0010498 350.2232 9.8760 14.12255271248193 1 26536U 00055A 05197.90417384 -.00000136 00000-0 -49434-4 0 4311 2 26536 99.0150 156.5238 0010498 349.0260 11.0681 14.12255194248256 1 26536U 00055A 05198.25841345 -.00000136 00000-0 -49434-4 0 4318 2 26536 99.0150 156.8800 0010498 348.0284 12.0637 14.12255129248305 1 26536U 00055A 05198.68350100 -.00000136 00000-0 -49434-4 0 4320 2 26536 99.0150 157.3073 0010498 346.8312 13.2584 14.12255052248366 1 26536U 00055A 05199.46282788 -.00000046 00000-0 -57801-6 0 4322 2 26536 99.0146 158.0916 0010261 344.6571 15.4298 14.12255394248473 1 26536U 00055A 05199.46282788 -.00000046 00000-0 -57801-6 0 4333 2 26536 99.0146 158.0916 0010261 344.6571 15.4298 14.12255394248473 1 26536U 00055A 05199.88791516 -.00000046 00000-0 -57801-6 0 4344 2 26536 99.0146 158.5189 0010261 343.4599 16.6236 14.12255393248538 1 26536U 00055A 05199.88791516 -.00000046 00000-0 -57801-6 0 4355 2 26536 99.0146 158.5189 0010261 343.4599 16.6236 14.12255393248538 1 26536U 00055A 05199.88791516 -.00000046 00000-0 -57801-6 0 4366 2 26536 99.0146 158.5189 0010261 343.4599 16.6236 14.12255393248538 1 26536U 00055A 05199.88791516 -.00000046 00000-0 -57801-6 0 4377 2 26536 99.0146 158.5189 0010261 343.4599 16.6236 14.12255393248538 1 26536U 00055A 05199.88791516 -.00000046 00000-0 -57801-6 0 4388 2 26536 99.0146 158.5189 0010261 343.4599 16.6236 14.12255393248538 1 26536U 00055A 05199.88791516 -.00000046 00000-0 -57801-6 0 4399 2 26536 99.0146 158.5189 0010261 343.4599 16.6236 14.12255393248538 1 26536U 00055A 05199.88791516 -.00000046 00000-0 -57801-6 0 4401 2 26536 99.0146 158.5189 0010261 343.4599 16.6236 14.12255393248538 1 26536U 00055A 05202.79267973 .00000352 00000-0 21585-3 0 4417 2 26536 99.0150 161.4408 0010012 334.8498 25.2449 14.12258686248941 1 26536U 00055A 05203.50115206 .00000317 00000-0 19673-3 0 4425 2 26536 99.0154 162.1542 0010087 332.9323 27.1315 14.12259018249045 1 26536U 00055A 05203.92623857 .00000320 00000-0 19880-3 0 4432 2 26536 99.0156 162.5815 0010153 331.9495 28.1122 14.12259343249102 1 26536U 00055A 05204.35132497 .00000320 00000-0 19880-3 0 4435 2 26536 99.0156 163.0089 0010153 330.7522 29.3080 14.12259654249166 1 26536U 00055A 05204.77641117 .00000111 00000-0 84975-4 0 4442 2 26536 99.0162 163.4370 0010127 329.2320 30.8206 14.12258686249228 1 26536U 00055A 05205.20149868 -.00000106 00000-0 -33086-4 0 4440 2 26536 99.0162 163.8649 0010147 328.4770 31.5740 14.12257699249283 1 26536U 00055A 05205.62658656 -.00000106 00000-0 -33086-4 0 4457 2 26536 99.0162 164.2923 0010147 327.2798 32.7744 14.12257648249348 1 26536U 00055A 05206.47676032 -.00000247 00000-0 -10959-3 0 4458 2 26536 99.0156 165.1484 0010094 324.7557 35.2917 14.12256747249461 1 26536U 00055A 05206.47676032 -.00000247 00000-0 -10959-3 0 4469 2 26536 99.0156 165.1484 0010094 324.7557 35.2917 14.12256747249461 1 26536U 00055A 05206.83100020 -.00000247 00000-0 -10959-3 0 4479 2 26536 99.0156 165.5045 0010094 323.7581 36.2906 14.12256604249511 1 26536U 00055A 05207.18523955 -.00000247 00000-0 -10959-3 0 4474 2 26536 99.0156 165.8607 0010094 322.7605 37.2866 14.12256462249567 1 26536U 00055A 05207.18523955 -.00000247 00000-0 -10959-3 0 4485 2 26536 99.0156 165.8607 0010094 322.7605 37.2866 14.12256462249567 1 26536U 00055A 05207.61032682 -.00000247 00000-0 -10959-3 0 4496 2 26536 99.0156 166.2881 0010094 321.5634 38.4818 14.12256291249622 1 26536U 00055A 05208.38965363 -.00000019 00000-0 14579-4 0 4491 2 26536 99.0152 167.0718 0010030 318.4945 41.5585 14.12257643249736 1 26536U 00055A 05208.38965363 -.00000019 00000-0 14579-4 0 4503 2 26536 99.0152 167.0718 0010030 318.4945 41.5585 14.12257643249736 1 26536U 00055A 05208.88558598 .00000028 00000-0 40117-4 0 4513 2 26536 99.0153 167.5704 0009939 316.8657 43.1734 14.12257784249803 1 26536U 00055A 05209.23982505 .00000051 00000-0 52612-4 0 4511 2 26536 99.0147 167.9267 0009830 315.4173 44.6223 14.12258000249858 1 26536U 00055A 05209.59406376 .00000090 00000-0 73541-4 0 4525 2 26536 99.0148 168.2829 0009808 314.4442 45.5939 14.12258324249909 1 26536U 00055A 05210.37338805 .00000301 00000-0 18833-3 0 4521 2 26536 99.0149 169.0669 0009709 311.1519 48.8849 14.12259917250019 1 26536U 00055A 05210.37338805 .00000301 00000-0 18833-3 0 4532 2 26536 99.0149 169.0669 0009709 311.1519 48.8849 14.12259917250019 1 26536U 00055A 05210.86932130 .00000243 00000-0 15657-3 0 4544 2 26536 99.0147 169.5657 0009675 309.6516 50.3778 14.12259836250086 1 26536U 00055A 05211.22356033 .00000321 00000-0 19899-3 0 4546 2 26536 99.0149 169.9219 0009640 308.2986 51.7340 14.12260453250137 1 26536U 00055A 05211.64864599 .00000381 00000-0 23171-3 0 4558 2 26536 99.0160 170.3503 0009697 307.5371 52.4908 14.12260879250190 1 26536U 00055A 05212.49881822 .00000364 00000-0 22256-3 0 4554 2 26536 99.0159 171.2061 0009702 305.6048 54.4227 14.12261583250317 1 26536U 00055A 05212.92390383 .00000266 00000-0 16944-3 0 4568 2 26536 99.0158 171.6338 0009683 304.5888 55.4341 14.12261386250370 1 26536U 00055A 05213.27814258 .00000238 00000-0 15407-3 0 4561 2 26536 99.0158 171.9902 0009674 303.6703 56.3538 14.12261472250426 1 26536U 00055A 05213.77407616 .00000099 00000-0 78655-4 0 4573 2 26536 99.0163 172.4891 0009654 301.8455 58.1742 14.12260869250490 1 26536U 00055A 05214.12831519 .00000035 00000-0 43807-4 0 4577 2 26536 99.0156 172.8462 0009734 301.7151 58.3043 14.12260619250546 1 26536U 00055A 05214.62424955 -.00000072 00000-0 -14682-4 0 4587 2 26536 99.0159 173.3453 0009722 300.0379 59.9807 14.12260072250612 1 26536U 00055A 05215.47442259 -.00000072 00000-0 -14682-4 0 4588 2 26536 99.0159 174.2001 0009722 297.6435 62.3749 14.12260027250731 1 26536U 00055A 05215.82866120 -.00000153 00000-0 -58395-4 0 4594 2 26536 99.0163 174.5579 0009567 295.9412 64.0785 14.12259777250786 1 26536U 00055A 05216.25374740 -.00000166 00000-0 -65471-4 0 4591 2 26536 99.0162 174.9856 0009565 294.6777 65.3389 14.12259542250846 1 26536U 00055A 05216.67883411 -.00000145 00000-0 -54157-4 0 4605 2 26536 99.0163 175.4136 0009574 293.5284 66.4870 14.12259383250902 1 26536U 00055A 05217.45815973 -.00000097 00000-0 -27960-4 0 4608 2 26536 99.0163 176.1980 0009589 290.9390 69.0796 14.12259698251010 1 26536U 00055A 05217.88324540 -.00000097 00000-0 -27960-4 0 4611 2 26536 99.0163 176.6254 0009589 289.7418 70.2719 14.12259655251074 1 26536U 00055A 05218.23748416 .00000095 00000-0 76456-4 0 4613 2 26536 99.0160 176.9820 0009617 288.2772 71.7416 14.12260782251121 1 26536U 00055A 05218.66256906 .00000129 00000-0 94699-4 0 4626 2 26536 99.0161 177.4097 0009616 287.1928 72.8194 14.12261060251185 1 26536U 00055A 05219.44189223 .00000368 00000-0 22477-3 0 4629 2 26536 99.0159 178.1947 0009658 284.8901 75.1214 14.12262761251295 1 26536U 00055A 05219.86697752 .00000412 00000-0 24858-3 0 4632 2 26536 99.0153 178.6223 0009695 284.1588 75.8507 14.12263313251359 1 26536U 00055A 05220.29206290 .00000412 00000-0 24858-3 0 4634 2 26536 99.0153 179.0497 0009695 282.9615 77.0473 14.12263701251418 1 26536U 00055A 05220.71714819 .00000264 00000-0 16827-3 0 4645 2 26536 99.0159 179.4770 0009765 281.6860 78.3180 14.12263181251475 1 26536U 00055A 05221.07138680 .00000222 00000-0 14549-3 0 4644 2 26536 99.0156 179.8333 0009756 280.6610 79.3461 14.12263254251523 1 26536U 00055A 05221.63816743 .00000062 00000-0 58673-4 0 4659 2 26536 99.0160 180.4034 0009751 278.6651 81.3385 14.12262665251603 1 26536U 00055A 05222.41749164 .00000027 00000-0 39132-4 0 4658 2 26536 99.0160 181.1877 0009751 276.4940 83.5128 14.12262826251713 1 26536U 00055A 05222.84257715 -.00000046 00000-0 -31950-6 0 4667 2 26536 99.0163 181.6153 0009725 275.4183 84.5853 14.12262444251775 1 26536U 00055A 05223.26766343 -.00000046 00000-0 -31950-6 0 4666 2 26536 99.0163 182.0427 0009725 274.2212 85.7848 14.12262444251838 1 26536U 00055A 05223.26766343 -.00000046 00000-0 -31950-6 0 4677 2 26536 99.0163 182.0427 0009725 274.2212 85.7848 14.12262444251838 1 26536U 00055A 05225.03885427 -.00000034 00000-0 59915-5 0 4686 2 26536 99.0179 183.8246 0009647 266.9795 93.0284 14.12262380252083 1 26536U 00055A 05225.46393990 -.00000102 00000-0 -30484-4 0 4699 2 26536 99.0180 184.2523 0009663 265.4539 94.5523 14.12262064252144 1 26536U 00055A 05225.88902596 -.00000032 00000-0 75251-5 0 4708 2 26536 99.0178 184.6801 0009679 264.3406 95.6678 14.12262413252200 1 26536U 00055A 05226.24326385 -.00000013 00000-0 17440-4 0 4709 2 26536 99.0177 185.0363 0009688 263.1986 96.8087 14.12262494252258 1 26536U 00055A 05226.66834962 .00000014 00000-0 32454-4 0 4713 2 26536 99.0180 185.4641 0009689 262.1342 97.8724 14.12262550252310 1 26536U 00055A 05227.44767271 .00000118 00000-0 88863-4 0 4718 2 26536 99.0179 186.2481 0009735 259.8291 100.1783 14.12263420252429 1 26536U 00055A 05227.87275829 .00000202 00000-0 13433-3 0 4723 2 26536 99.0176 186.6764 0009751 258.6076 101.4027 14.12264066252488 1 26536U 00055A 05228.29784314 .00000276 00000-0 17490-3 0 4722 2 26536 99.0175 187.1039 0009741 257.3409 102.6695 14.12264750252544 1 26536U 00055A 05228.79377541 .00000428 00000-0 25726-3 0 4738 2 26536 99.0175 187.6031 0009745 256.1406 103.8713 14.12265867252611 1 26536U 00055A 05229.28970709 .00000428 00000-0 25726-3 0 4738 2 26536 99.0175 188.1018 0009745 254.7440 105.2654 14.12266336252683 1 26536U 00055A 05229.78563923 .00000384 00000-0 23340-3 0 4741 2 26536 99.0175 188.6015 0009835 253.1473 106.8604 14.12266379252751 1 26536U 00055A 05230.06902936 .00000293 00000-0 18375-3 0 4746 2 26536 99.0171 188.8868 0009844 251.8232 108.1853 14.12266135252798 1 26536U 00055A 05230.06902936 .00000293 00000-0 18375-3 0 4757 2 26536 99.0171 188.8868 0009844 251.8232 108.1853 14.12266135252798 1 26536U 00055A 05230.06902936 .00000293 00000-0 18375-3 0 4768 2 26536 99.0171 188.8868 0009844 251.8232 108.1853 14.12266135252798 1 26536U 00055A 05230.63580937 .00000106 00000-0 82544-4 0 4789 2 26536 99.0177 189.4574 0009880 250.1689 109.8384 14.12265504252878 1 26536U 00055A 05231.48598122 -.00000112 00000-0 -35958-4 0 4784 2 26536 99.0176 190.3132 0009840 247.5972 112.4161 14.12264540252994 1 26536U 00055A 05231.91106651 -.00000274 00000-0 -12407-3 0 4797 2 26536 99.0174 190.7415 0009806 246.4330 113.5781 14.12263703253056 1 26536U 00055A 05232.40700038 -.00000274 00000-0 -12407-3 0 4791 2 26536 99.0174 191.2402 0009806 245.0363 114.9790 14.12263477253120 1 26536U 00055A 05232.83208610 -.00000201 00000-0 -84320-4 0 4803 2 26536 99.0171 191.6677 0009858 243.9607 116.0579 14.12263761253180 1 26536U 00055A 05233.18632356 -.00000100 00000-0 -29491-4 0 4806 2 26536 99.0173 192.0240 0009871 243.1110 116.9070 14.12264133253234 1 26536U 00055A 05233.68225633 -.00000119 00000-0 -40101-4 0 4819 2 26536 99.0178 192.5234 0009858 241.6587 118.3583 14.12263932253302 1 26536U 00055A 05234.03649446 -.00000119 00000-0 -40101-4 0 4811 2 26536 99.0178 192.8797 0009858 240.6611 119.3576 14.12263880253356 1 26536U 00055A 05234.60327529 .00000033 00000-0 42704-4 0 4824 2 26536 99.0180 193.4504 0009831 238.9654 121.0589 14.12264647253435 1 26536U 00055A 05235.45344530 .00000146 00000-0 10407-3 0 4828 2 26536 99.0176 194.3066 0009831 236.8633 123.1640 14.12265584253552 1 26536U 00055A 05235.94937702 .00000235 00000-0 15215-3 0 4833 2 26536 99.0175 194.8054 0009828 235.7222 124.3026 14.12266137253625 1 26536U 00055A 05236.30361433 .00000269 00000-0 17090-3 0 4836 2 26536 99.0175 195.1617 0009853 234.3333 125.6936 14.12266558253676 1 26536U 00055A 05236.72869886 .00000251 00000-0 16099-3 0 4847 2 26536 99.0178 195.5897 0009853 233.2008 126.8256 14.12266713253738 1 26536U 00055A 05237.43717345 .00000403 00000-0 24349-3 0 4844 2 26536 99.0189 196.3026 0009810 231.1265 128.9057 14.12267929253831 1 26536U 00055A 05237.93310472 .00000366 00000-0 22365-3 0 4854 2 26536 99.0188 196.8018 0009777 229.6376 130.3923 14.12268121253905 1 26536U 00055A 05238.35818943 .00000292 00000-0 18321-3 0 4852 2 26536 99.0193 197.2298 0009789 228.3068 131.7258 14.12268133253968 1 26536U 00055A 05239.13751082 .00000224 00000-0 14647-3 0 4862 2 26536 99.0192 198.0142 0009762 225.9585 134.0746 14.12268130254070 1 26536U 00055A 05239.91683335 .00000014 00000-0 32105-4 0 4882 2 26536 99.0200 198.7982 0009775 223.6393 136.3989 14.12267428254180 1 26536U 00055A 05240.34191829 .00000014 00000-0 32105-4 0 4872 2 26536 99.0200 199.2258 0009775 222.4423 137.5993 14.12267479254244 1 26536U 00055A 05240.34191829 .00000014 00000-0 32105-4 0 4883 2 26536 99.0200 199.2258 0009775 222.4423 137.5993 14.12267479254244 1 26536U 00055A 05240.34191829 .00000014 00000-0 32105-4 0 4894 2 26536 99.0200 199.2258 0009775 222.4423 137.5993 14.12267479254244 1 26536U 00055A 05240.34191829 .00000014 00000-0 32105-4 0 4906 2 26536 99.0200 199.2258 0009775 222.4423 137.5993 14.12267479254244 1 26536U 00055A 05240.34191829 .00000014 00000-0 32105-4 0 4917 2 26536 99.0200 199.2258 0009775 222.4423 137.5993 14.12267479254244 1 26536U 00055A 05240.83785034 -.00000156 00000-0 -60044-4 0 4932 2 26536 99.0205 199.7250 0009784 220.7121 139.3276 14.12266554254317 1 26536U 00055A 05241.19208861 -.00000213 00000-0 -91020-4 0 4932 2 26536 99.0201 200.0818 0009756 219.6875 140.3572 14.12266228254365 1 26536U 00055A 05241.61717385 -.00000213 00000-0 -91020-4 0 4946 2 26536 99.0201 200.5094 0009756 218.4905 141.5572 14.12266086254429 1 26536U 00055A 05242.53819157 -.00000148 00000-0 -55707-4 0 4947 2 26536 99.0195 201.4364 0009835 215.6311 144.4244 14.12266299254557 1 26536U 00055A 05242.89242833 -.00000013 00000-0 17827-4 0 4959 2 26536 99.0191 201.7928 0009845 214.7719 145.2845 14.12266999254604 1 26536U 00055A 05243.45920738 .00000029 00000-0 40567-4 0 4952 2 26536 99.0197 202.3636 0009959 212.3743 147.6830 14.12267224254680 1 26536U 00055A 05243.45920738 .00000029 00000-0 40567-4 0 4963 2 26536 99.0197 202.3636 0009959 212.3743 147.6830 14.12267224254680 1 26536U 00055A 05243.88429188 .00000115 00000-0 87054-4 0 4972 2 26536 99.0196 202.7915 0009955 211.2555 148.8047 14.12267795254741 1 26536U 00055A 05244.23852858 .00000205 00000-0 13621-3 0 4974 2 26536 99.0196 203.1478 0010009 210.1364 149.9253 14.12268362254795 1 26536U 00055A 05244.73445995 .00000280 00000-0 17684-3 0 4986 2 26536 99.0198 203.6470 0010004 208.4843 151.5794 14.12268972254865 1 26536U 00055A 05245.08869658 .00000393 00000-0 23827-3 0 4982 2 26536 99.0193 204.0034 0010040 207.6557 152.4116 14.12269860254915 1 26536U 00055A 05245.51377984 .00000376 00000-0 22885-3 0 4991 2 26536 99.0198 204.4316 0010037 206.4240 153.6417 14.12270117254979 1 26536U 00055A 05246.43479457 .00000363 00000-0 22197-3 0 4993 2 26536 99.0197 205.3589 0010090 203.8185 156.2519 14.12270901255107 1 26536U 00055A 05246.85987822 .00000318 00000-0 19735-3 0 5006 2 26536 99.0193 205.7866 0010044 202.5785 157.4925 14.12270950255160 1 26536U 00055A 05247.28496227 .00000307 00000-0 19143-3 0 5009 2 26536 99.0197 206.2143 0010088 201.3196 158.7557 14.12271184255221 1 26536U 00055A 05247.28496227 .00000307 00000-0 19143-3 0 5010 2 26536 99.0197 206.2143 0010088 201.3196 158.7557 14.12271184255221 1 26536U 00055A 05247.71004582 .00000149 00000-0 10562-3 0 5028 2 26536 99.0203 206.6426 0010105 200.3804 159.6930 14.12270532255289 1 26536U 00055A 05248.06428301 -.00000028 00000-0 95273-5 0 5027 2 26536 99.0200 206.9993 0010044 199.2444 160.8308 14.12269779255336 1 26536U 00055A 05248.91445187 -.00000160 00000-0 -62300-4 0 5046 2 26536 99.0206 207.8554 0010022 197.0023 163.0790 14.12269126255459 1 26536U 00055A 05249.33953657 -.00000172 00000-0 -69035-4 0 5033 2 26536 99.0210 208.2835 0010082 195.5840 164.5033 14.12269069255516 1 26536U 00055A 05249.33953657 -.00000172 00000-0 -69035-4 0 5044 2 26536 99.0210 208.2835 0010082 195.5840 164.5033 14.12269069255516 1 26536U 00055A 05249.76462061 -.00000204 00000-0 -85959-4 0 5055 2 26536 99.0214 208.7114 0010096 194.3613 165.7255 14.12268658255573 1 26536U 00055A 05250.11885795 -.00000206 00000-0 -87175-4 0 5053 2 26536 99.0214 209.0680 0010102 193.3734 166.7180 14.12268620255629 1 26536U 00055A 05250.11885795 -.00000206 00000-0 -87175-4 0 5064 2 26536 99.0214 209.0680 0010102 193.3734 166.7180 14.12268620255629 1 26536U 00055A 05250.11885795 -.00000206 00000-0 -87175-4 0 5075 2 26536 99.0214 209.0680 0010102 193.3734 166.7180 14.12268620255629 1 26536U 00055A 05250.54394217 -.00000206 00000-0 -87175-4 0 5098 2 26536 99.0214 209.4957 0010102 192.1764 167.9165 14.12268484255680 1 26536U 00055A 05251.53580595 -.00000118 00000-0 -39529-4 0 5096 2 26536 99.0218 210.4948 0010216 189.1749 170.9283 14.12268796255828 1 26536U 00055A 05251.53580595 -.00000118 00000-0 -39529-4 0 5108 2 26536 99.0218 210.4948 0010216 189.1749 170.9283 14.12268796255828 1 26536U 00055A 05251.53580595 -.00000118 00000-0 -39529-4 0 5119 2 26536 99.0218 210.4948 0010216 189.1749 170.9283 14.12268796255828 1 26536U 00055A 05251.89004199 .00000005 00000-0 27374-4 0 5139 2 26536 99.0218 210.8513 0010238 188.3942 171.7094 14.12269427255876 1 26536U 00055A 05252.31512547 .00000041 00000-0 46715-4 0 5138 2 26536 99.0215 211.2790 0010301 187.0634 173.0407 14.12269703255937 1 26536U 00055A 05252.74020926 .00000121 00000-0 90226-4 0 5146 2 26536 99.0217 211.7070 0010293 185.7053 174.4012 14.12270161255998 1 26536U 00055A 05253.16529298 .00000272 00000-0 17252-3 0 5143 2 26536 99.0217 212.1347 0010344 184.7487 175.3631 14.12271131256050 1 26536U 00055A 05253.66122300 .00000321 00000-0 19884-3 0 5150 2 26536 99.0221 212.6341 0010374 183.1130 176.9986 14.12271677256128 1 26536U 00055A 05254.44054242 .00000430 00000-0 25829-3 0 5153 2 26536 99.0222 213.4186 0010476 181.0444 179.0755 14.12272971256231 1 26536U 00055A 05254.79477735 .00000430 00000-0 25829-3 0 5168 2 26536 99.0222 213.7750 0010476 180.0471 180.0701 14.12273307256282 1 26536U 00055A 05255.21986029 .00000374 00000-0 22760-3 0 5165 2 26536 99.0222 214.2031 0010450 178.5906 181.5258 14.12273221256342 1 26536U 00055A 05255.64494403 .00000265 00000-0 16848-3 0 5172 2 26536 99.0228 214.6312 0010522 177.3771 182.7436 14.12272940256406 1 26536U 00055A 05256.49511117 .00000157 00000-0 11013-3 0 5177 2 26536 99.0227 215.4869 0010459 174.8012 185.3270 14.12272853256521 1 26536U 00055A 05256.92019428 -.00000065 00000-0 -10709-4 0 5186 2 26536 99.0227 215.9157 0010471 173.4544 186.6718 14.12271852256580 1 26536U 00055A 05257.27443141 -.00000072 00000-0 -14383-4 0 5188 2 26536 99.0230 216.2722 0010522 172.4355 187.6981 14.12271829256635 1 26536U 00055A 05257.77036200 -.00000075 00000-0 -15950-4 0 5192 2 26536 99.0232 216.7716 0010603 170.8444 189.2925 14.12271792256709 1 26536U 00055A 05258.12459817 -.00000115 00000-0 -37634-4 0 5193 2 26536 99.0229 217.1283 0010524 169.6164 190.5218 14.12271649256752 1 26536U 00055A 05258.54968184 -.00000053 00000-0 -42527-5 0 5202 2 26536 99.0233 217.5566 0010569 168.1882 191.9542 14.12271818256815 1 26536U 00055A 05259.39984843 -.00000037 00000-0 44820-5 0 5205 2 26536 99.0230 218.4123 0010496 165.7710 194.3758 14.12271996256939 1 26536U 00055A 05259.39984843 -.00000037 00000-0 44820-5 0 5216 2 26536 99.0230 218.4123 0010496 165.7710 194.3758 14.12271996256939 1 26536U 00055A 05259.82493180 -.00000037 00000-0 44820-5 0 5224 2 26536 99.0230 218.8401 0010496 164.5741 195.5752 14.12272003256996 1 26536U 00055A 05260.25001517 -.00000037 00000-0 44820-5 0 5222 2 26536 99.0230 219.2678 0010496 163.3772 196.7745 14.12272010257059 1 26536U 00055A 05260.67509853 -.00000037 00000-0 44820-5 0 5235 2 26536 99.0230 219.6956 0010496 162.1803 197.9739 14.12272017257114 1 26536U 00055A 05261.45441801 .00000085 00000-0 71021-4 0 5234 2 26536 99.0236 220.4790 0010481 160.9467 199.2187 14.12273210257222 1 26536U 00055A 05262.51712277 .00000351 00000-0 21547-3 0 5244 2 26536 99.0229 221.5507 0010612 157.5388 202.6252 14.12274858257379 1 26536U 00055A 05262.87135809 .00000351 00000-0 21547-3 0 5254 2 26536 99.0229 221.9072 0010612 156.5415 203.6242 14.12275138257428 1 26536U 00055A 05263.36728749 .00000352 00000-0 21608-3 0 5259 2 26536 99.0233 222.4069 0010751 155.6600 204.5096 14.12275546257492 1 26536U 00055A 05263.86321644 .00000390 00000-0 23665-3 0 5265 2 26536 99.0232 222.9062 0010688 154.1916 205.9794 14.12276139257569 1 26536U 00055A 05264.21745142 .00000316 00000-0 19627-3 0 5269 2 26536 99.0234 223.2626 0010738 153.1983 206.9725 14.12275999257614 1 26536U 00055A 05264.85507490 .00000134 00000-0 97234-4 0 5271 2 26536 99.0240 223.9051 0010776 151.5015 208.6702 14.12275373257700 1 26536U 00055A 05265.06761695 .00000047 00000-0 50410-4 0 5272 2 26536 99.0238 224.1197 0010752 150.6860 209.4893 14.12274980257739 1 26536U 00055A 05265.84693516 -.00000076 00000-0 -16917-4 0 5283 2 26536 99.0243 224.9045 0010746 148.4768 211.7027 14.12274488257840 1 26536U 00055A 05266.27201816 -.00000043 00000-0 10327-5 0 5282 2 26536 99.0247 225.3324 0010778 147.3713 212.8139 14.12274672257900 1 26536U 00055A 05266.83879456 -.00000084 00000-0 -20880-4 0 5296 2 26536 99.0259 225.9032 0010840 146.1489 214.0380 14.12274475257983 1 26536U 00055A 05267.12218284 -.00000132 00000-0 -46835-4 0 5309 2 26536 99.0259 226.1884 0010865 145.3478 214.8389 14.12274157258027 1 26536U 00055A 05267.54726577 -.00000132 00000-0 -46835-4 0 5315 2 26536 99.0259 226.6162 0010865 144.1509 216.0393 14.12274083258086 1 26536U 00055A 05268.46827823 -.00000132 00000-0 -46835-4 0 5313 2 26536 99.0259 227.5433 0010864 141.5577 218.6370 14.12273925258214 1 26536U 00055A 05268.89336093 -.00000074 00000-0 -15463-4 0 5323 2 26536 99.0256 227.9718 0011008 140.5374 219.6648 14.12274438258271 1 26536U 00055A 05269.24759545 -.00000041 00000-0 25778-5 0 5328 2 26536 99.0257 228.3284 0011018 139.6127 220.5869 14.12274555258323 1 26536U 00055A 05269.24759545 -.00000041 00000-0 25778-5 0 5339 2 26536 99.0257 228.3284 0011018 139.6127 220.5869 14.12274555258323 1 26536U 00055A 05269.74352494 .00000014 00000-0 32212-4 0 5346 2 26536 99.0257 228.8279 0011001 138.1745 222.0281 14.12274849258392 1 26536U 00055A 05270.09776003 .00000122 00000-0 91100-4 0 5343 2 26536 99.0256 229.1846 0011007 137.4758 222.7303 14.12275516258447 1 26536U 00055A 05270.09776003 .00000122 00000-0 91100-4 0 5354 2 26536 99.0256 229.1846 0011007 137.4758 222.7303 14.12275516258447 1 26536U 00055A 05270.59368853 .00000221 00000-0 14456-3 0 5368 2 26536 99.0258 229.6840 0011053 136.0246 224.1832 14.12276264258518 1 26536U 00055A 05271.08961693 .00000340 00000-0 20953-3 0 5365 2 26536 99.0251 230.1836 0011008 134.6059 225.6039 14.12277188258587 1 26536U 00055A 05271.93977956 .00000358 00000-0 21916-3 0 5389 2 26536 99.0254 231.0399 0011040 132.2216 227.9894 14.12277884258700 1 26536U 00055A 05272.36486096 .00000433 00000-0 25972-3 0 5376 2 26536 99.0250 231.4687 0011060 131.2311 228.9837 14.12278643258765 1 26536U 00055A 05272.36486096 .00000433 00000-0 25972-3 0 5387 2 26536 99.0250 231.4687 0011060 131.2311 228.9837 14.12278643258765 1 26536U 00055A 05272.78994169 .00000362 00000-0 22112-3 0 5393 2 26536 99.0252 231.8971 0011004 129.9962 230.2156 14.12278584258822 1 26536U 00055A 05273.14417642 .00000265 00000-0 16835-3 0 5397 2 26536 99.0250 232.2541 0011051 129.0898 231.1239 14.12278362258870 1 26536U 00055A 05273.64010490 .00000165 00000-0 11439-3 0 5408 2 26536 99.0253 232.7538 0011045 127.7957 232.4201 14.12278150258944 1 26536U 00055A 05274.49026838 .00000049 00000-0 51332-4 0 5403 2 26536 99.0252 233.6104 0011074 125.2830 234.9379 14.12277862259063 1 26536U 00055A 05274.49026838 .00000049 00000-0 51332-4 0 5414 2 26536 99.0252 233.6104 0011074 125.2830 234.9379 14.12277862259063 1 26536U 00055A 05274.91534976 -.00000150 00000-0 -57087-4 0 5427 2 26536 99.0256 234.0384 0011093 123.7035 236.5139 14.12276828259123 1 26536U 00055A 05275.41127954 -.00000139 00000-0 -50986-4 0 5425 2 26536 99.0261 234.5381 0011138 122.4418 237.7842 14.12276850259198 1 26536U 00055A 05275.83636102 -.00000120 00000-0 -40713-4 0 5439 2 26536 99.0262 234.9660 0011137 121.6387 238.5890 14.12276933259259 1 26536U 00055A 05276.26144234 -.00000144 00000-0 -53327-4 0 5438 2 26536 99.0262 235.3938 0011183 120.6095 239.6179 14.12276760259315 1 26536U 00055A 05276.68652410 -.00000136 00000-0 -49434-4 0 5440 2 26536 99.0260 235.8215 0011204 119.4608 240.7673 14.12276608259375 1 26536U 00055A 05277.46584083 -.00000136 00000-0 -49434-4 0 5447 2 26536 99.0260 236.6060 0011204 117.2666 242.9648 14.12276467259483 1 26536U 00055A 05277.89092260 .00000032 00000-0 42062-4 0 5459 2 26536 99.0258 237.0351 0011187 116.3430 243.8959 14.12277493259549 1 26536U 00055A 05278.31600271 .00000032 00000-0 42062-4 0 5454 2 26536 99.0258 237.4630 0011187 115.1462 245.0871 14.12277559259602 1 26536U 00055A 05278.31600271 .00000032 00000-0 42062-4 0 5465 2 26536 99.0258 237.4630 0011187 115.1462 245.0871 14.12277559259602 1 26536U 00055A 05278.31600271 .00000032 00000-0 42062-4 0 5487 2 26536 99.0258 237.4630 0011187 115.1462 245.0871 14.12277559259602 1 26536U 00055A 05278.81193102 .00000114 00000-0 86326-4 0 5495 2 26536 99.0260 237.9625 0011174 113.8826 246.3534 14.12278027259677 1 26536U 00055A 05279.16616507 .00000200 00000-0 13323-3 0 5495 2 26536 99.0260 238.3191 0011178 113.2662 246.9718 14.12278641259724 1 26536U 00055A 05279.80378602 .00000175 00000-0 11962-3 0 5507 2 26536 99.0261 238.9612 0011184 111.6174 248.6193 14.12278864259819 1 26536U 00055A 05280.15802009 .00000175 00000-0 11962-3 0 5500 2 26536 99.0261 239.3178 0011184 110.6201 249.6170 14.12279020259867 1 26536U 00055A 05280.15802009 .00000175 00000-0 11962-3 0 5511 2 26536 99.0261 239.3178 0011184 110.6201 249.6170 14.12279020259867 1 26536U 00055A 05280.15802009 .00000175 00000-0 11962-3 0 5522 2 26536 99.0261 239.3178 0011184 110.6201 249.6170 14.12279020259867 1 26536U 00055A 05280.65394781 .00000369 00000-0 22510-3 0 5548 2 26536 99.0261 239.8179 0011256 110.1297 250.1150 14.12280356259930 1 26536U 00055A 05281.43326067 .00000369 00000-0 22510-3 0 5547 2 26536 99.0261 240.6023 0011256 107.9357 252.3043 14.12281000260045 1 26536U 00055A 05281.43326067 .00000369 00000-0 22510-3 0 5558 2 26536 99.0261 240.6023 0011256 107.9357 252.3043 14.12281000260045 1 26536U 00055A 05281.43326067 .00000369 00000-0 22510-3 0 5569 2 26536 99.0261 240.6023 0011256 107.9357 252.3043 14.12281000260045 1 26536U 00055A 05281.85834094 .00000274 00000-0 17327-3 0 5586 2 26536 99.0262 241.0316 0011305 107.0941 253.1447 14.12280768260105 1 26536U 00055A 05282.35426844 .00000153 00000-0 10769-3 0 5581 2 26536 99.0282 241.5305 0011318 105.7522 254.4873 14.12280426260179 1 26536U 00055A 05282.77934935 .00000070 00000-0 62692-4 0 5594 2 26536 99.0284 241.9587 0011298 104.5138 255.7259 14.12280030260234 1 26536U 00055A 05283.13358369 -.00000005 00000-0 22027-4 0 5593 2 26536 99.0286 242.3156 0011311 103.4676 256.7750 14.12279821260282 1 26536U 00055A 05283.55866442 -.00000027 00000-0 98439-5 0 5602 2 26536 99.0292 242.7442 0011357 102.4331 257.8105 14.12279698260343 1 26536U 00055A 05284.47967368 -.00000250 00000-0 -11106-3 0 5606 2 26536 99.0290 243.6721 0011403 99.9198 260.3257 14.12278431260479 1 26536U 00055A 05284.90475479 -.00000234 00000-0 -10268-3 0 5612 2 26536 99.0290 244.1004 0011409 98.7957 261.4524 14.12278489260534 1 26536U 00055A 05285.32983544 -.00000168 00000-0 -66353-4 0 5619 2 26536 99.0291 244.5283 0011422 97.9207 262.3284 14.12278737260597 1 26536U 00055A 05285.89660954 -.00000082 00000-0 -19636-4 0 5626 2 26536 99.0300 245.0999 0011415 96.4011 263.8481 14.12279030260678 1 26536U 00055A 05286.39253671 -.00000050 00000-0 -22772-5 0 5627 2 26536 99.0294 245.5989 0011411 94.8973 265.3506 14.12279183260741 1 26536U 00055A 05286.39253671 -.00000050 00000-0 -22772-5 0 5638 2 26536 99.0294 245.5989 0011411 94.8973 265.3506 14.12279183260741 1 26536U 00055A 05286.39253671 -.00000050 00000-0 -22772-5 0 5649 2 26536 99.0294 245.5989 0011411 94.8973 265.3506 14.12279183260741 1 26536U 00055A 05286.39253671 -.00000050 00000-0 -22772-5 0 5650 2 26536 99.0294 245.5989 0011411 94.8973 265.3506 14.12279183260741 1 26536U 00055A 05289.50979504 .00000130 00000-0 95257-4 0 5661 2 26536 99.0283 248.7406 0011337 85.5960 274.6849 14.12282648261180 1 26536U 00055A 05289.50979504 .00000130 00000-0 95257-4 0 5672 2 26536 99.0283 248.7406 0011337 85.5960 274.6849 14.12282648261180 1 26536U 00055A 05289.93486787 .00000099 00000-0 78477-4 0 5685 2 26536 99.0285 249.1688 0011319 84.5170 275.7289 14.12282639261248 1 26536U 00055A 05290.28910090 .00000100 00000-0 78915-4 0 5684 2 26536 99.0288 249.5257 0011340 83.4150 276.8307 14.12282731261298 1 26536U 00055A 05290.28910090 .00000100 00000-0 78915-4 0 5695 2 26536 99.0288 249.5257 0011340 83.4150 276.8307 14.12282731261298 1 26536U 00055A 05290.28910090 .00000100 00000-0 78915-4 0 5707 2 26536 99.0288 249.5257 0011340 83.4150 276.8307 14.12282731261298 1 26536U 00055A 05290.78502711 -.00000070 00000-0 -13182-4 0 5724 2 26536 99.0293 250.0253 0011338 82.3334 277.9086 14.12281907261364 1 26536U 00055A 05291.13926101 .00000002 00000-0 25475-4 0 5728 2 26536 99.0292 250.3822 0011321 81.2809 278.9666 14.12282326261412 1 26536U 00055A 05291.13926101 .00000002 00000-0 25475-4 0 5739 2 26536 99.0292 250.3822 0011321 81.2809 278.9666 14.12282326261412 1 26536U 00055A 05291.13926101 .00000002 00000-0 25475-4 0 5740 2 26536 99.0292 250.3822 0011321 81.2809 278.9666 14.12282326261412 1 26536U 00055A 05291.63518683 -.00000024 00000-0 11750-4 0 5765 2 26536 99.0297 250.8823 0011310 79.8746 280.3700 14.12282245261487 1 26536U 00055A 05292.06026650 -.00000074 00000-0 -15785-4 0 5769 2 26536 99.0296 251.3107 0011308 78.9362 281.3074 14.12281999261545 1 26536U 00055A 05292.55619299 -.00000081 00000-0 -19290-4 0 5774 2 26536 99.0302 251.8106 0011326 78.0011 282.2433 14.12281932261613 1 26536U 00055A 05293.40635240 -.00000081 00000-0 -19290-4 0 5773 2 26536 99.0302 252.6668 0011326 75.6077 284.6350 14.12281872261730 1 26536U 00055A 05293.40635240 -.00000081 00000-0 -19290-4 0 5784 2 26536 99.0302 252.6668 0011326 75.6077 284.6350 14.12281872261730 1 26536U 00055A 05293.40635240 -.00000081 00000-0 -19290-4 0 5795 2 26536 99.0302 252.6668 0011326 75.6077 284.6350 14.12281872261730 1 26536U 00055A 05293.90227876 -.00000177 00000-0 -71698-4 0 5811 2 26536 99.0309 253.1666 0011278 75.2687 284.9732 14.12281340261805 1 26536U 00055A 05294.25651204 -.00000178 00000-0 -71851-4 0 5818 2 26536 99.0308 253.5234 0011263 74.4578 285.7837 14.12281232261853 1 26536U 00055A 05294.75243859 -.00000149 00000-0 -56408-4 0 5826 2 26536 99.0311 254.0231 0011273 73.2416 287.0004 14.12281304261928 1 26536U 00055A 05295.10667158 -.00000149 00000-0 -56408-4 0 5828 2 26536 99.0311 254.3799 0011273 72.2444 287.9957 14.12281230261979 1 26536U 00055A 05295.53175148 -.00000011 00000-0 18562-4 0 5835 2 26536 99.0311 254.8084 0011247 71.3413 288.9031 14.12282028262036 1 26536U 00055A 05296.38190882 .00000199 00000-0 13283-3 0 5831 2 26536 99.0312 255.6650 0011190 69.0534 291.1868 14.12283473262152 1 26536U 00055A 05296.87783383 .00000413 00000-0 24923-3 0 5842 2 26536 99.0318 256.1640 0011183 67.5823 292.6576 14.12284862262222 1 26536U 00055A 05297.23206520 .00000468 00000-0 27912-3 0 5847 2 26536 99.0319 256.5208 0011182 66.5983 293.6360 14.12285339262279 1 26536U 00055A 05297.65714379 .00000425 00000-0 25560-3 0 5850 2 26536 99.0322 256.9496 0011157 65.2162 295.0150 14.12285404262336 1 26536U 00055A 05298.50730168 .00000281 00000-0 17751-3 0 5852 2 26536 99.0321 257.8069 0011207 62.2852 297.9446 14.12285390262456 1 26536U 00055A 05298.50730168 .00000281 00000-0 17751-3 0 5863 2 26536 99.0321 257.8069 0011207 62.2852 297.9446 14.12285390262456 1 26536U 00055A 05298.50730168 .00000281 00000-0 17751-3 0 5874 2 26536 99.0321 257.8069 0011207 62.2852 297.9446 14.12285390262456 1 26536U 00055A 05298.86153396 .00000204 00000-0 13529-3 0 5891 2 26536 99.0320 258.1640 0011213 61.3542 298.8736 14.12285181262503 1 26536U 00055A 05299.21576649 .00000177 00000-0 12095-3 0 5897 2 26536 99.0322 258.5210 0011214 60.5363 299.6918 14.12285189262559 1 26536U 00055A 05299.64084520 .00000114 00000-0 86793-4 0 5906 2 26536 99.0328 258.9498 0011206 59.1060 301.1203 14.12285058262614 1 26536U 00055A 05300.49100273 .00000031 00000-0 41757-4 0 5905 2 26536 99.0329 259.8069 0011237 56.6106 303.6136 14.12284950262731 1 26536U 00055A 05300.49100273 .00000031 00000-0 41757-4 0 5916 2 26536 99.0329 259.8069 0011237 56.6106 303.6136 14.12284950262731 1 26536U 00055A 05300.91608139 -.00000031 00000-0 77549-5 0 5928 2 26536 99.0328 260.2353 0011248 55.4902 304.7307 14.12284586262798 1 26536U 00055A 05301.34116058 -.00000048 00000-0 -12209-5 0 5921 2 26536 99.0331 260.6638 0011228 54.5856 305.6366 14.12284562262854 1 26536U 00055A 05301.83708568 -.00000063 00000-0 -94630-5 0 5934 2 26536 99.0332 261.1637 0011234 53.1991 307.0194 14.12284349262928 1 26536U 00055A 05302.19131832 -.00000215 00000-0 -92313-4 0 5932 2 26536 99.0328 261.5203 0011349 51.8904 308.3246 14.12283568262971 1 26536U 00055A 05302.61639819 -.00000223 00000-0 -96668-4 0 5944 2 26536 99.0332 261.9491 0011362 50.7138 309.5037 14.12283371263032 1 26536U 00055A 05303.46655613 -.00000071 00000-0 -13673-4 0 5944 2 26536 99.0333 262.8057 0011349 48.7289 311.4900 14.12284104263159 1 26536U 00055A 05303.46655613 -.00000071 00000-0 -13673-4 0 5955 2 26536 99.0333 262.8057 0011349 48.7289 311.4900 14.12284104263159 1 26536U 00055A 05304.17501936 .00000140 00000-0 10060-3 0 5964 2 26536 99.0331 263.5195 0011291 46.7856 313.4276 14.12285199263256 1 26536U 00055A 05304.60009742 .00000225 00000-0 14703-3 0 5973 2 26536 99.0331 263.9478 0011308 45.8361 314.3745 14.12285720263312 1 26536U 00055A 05305.52109949 .00000289 00000-0 18187-3 0 5975 2 26536 99.0325 264.8763 0011173 43.8311 316.3749 14.12286638263444 1 26536U 00055A 05305.52109949 .00000289 00000-0 18187-3 0 5986 2 26536 99.0325 264.8763 0011173 43.8311 316.3749 14.12286638263444 1 26536U 00055A 05305.87533109 .00000393 00000-0 23839-3 0 5990 2 26536 99.0321 265.2334 0011135 42.9165 317.2902 14.12287467263491 1 26536U 00055A 05306.30040825 .00000393 00000-0 23839-3 0 5997 2 26536 99.0321 265.6616 0011135 41.7197 318.4821 14.12287840263555 1 26536U 00055A 05306.79633212 .00000393 00000-0 23839-3 0 6001 2 26536 99.0321 266.1611 0011135 40.3236 319.8759 14.12288274263620 1 26536U 00055A 05307.22140960 .00000393 00000-0 23839-3 0 6003 2 26536 99.0321 266.5893 0011135 39.1268 321.0706 14.12288647263684 1 26536U 00055A 05307.64648695 .00000263 00000-0 16762-3 0 6011 2 26536 99.0330 267.0186 0011057 38.1781 322.0138 14.12288162263746 1 26536U 00055A 05307.78819072 .00000193 00000-0 10509-3 0 6009 2 26536 99.0340 267.1632 0011177 37.1529 323.0886 14.12287225263768 1 26536U 00055A 05308.49664347 .00000039 00000-0 45935-4 0 6013 2 26536 99.0337 267.8754 0011103 35.6871 324.5029 14.12287412263862 1 26536U 00055A 05308.49664347 .00000039 00000-0 45935-4 0 6024 2 26536 99.0337 267.8754 0011103 35.6871 324.5029 14.12287412263862 1 26536U 00055A 05308.92172143 -.00000172 00000-0 -68786-4 0 6030 2 26536 99.0337 268.3042 0011175 34.5814 325.6032 14.12286403263924 1 26536U 00055A 05309.41764681 -.00000179 00000-0 -72513-4 0 6039 2 26536 99.0340 268.8040 0011162 33.3631 326.8256 14.12286409263995 1 26536U 00055A 05309.84272457 -.00000129 00000-0 -45510-4 0 6044 2 26536 99.0346 269.2322 0011084 32.3025 327.8840 14.12286552264055 1 26536U 00055A 05310.12610956 -.00000129 00000-0 -45510-4 0 6047 2 26536 99.0346 269.5177 0011084 31.5049 328.6784 14.12286505264091 1 26536U 00055A 05310.62203391 -.00000129 00000-0 -45510-4 0 6054 2 26536 99.0346 270.0174 0011084 30.1090 330.0717 14.12286422264165 1 26536U 00055A 05311.40134364 -.00000129 00000-0 -45510-4 0 6054 2 26536 99.0346 270.8026 0011084 27.9154 332.2610 14.12286291264276 1 26536U 00055A 05311.40134364 -.00000129 00000-0 -45510-4 0 6065 2 26536 99.0346 270.8026 0011084 27.9154 332.2610 14.12286291264276 1 26536U 00055A 05311.89726804 -.00000129 00000-0 -45510-4 0 6075 2 26536 99.0346 271.3023 0011084 26.5195 333.6541 14.12286209264344 1 26536U 00055A 05312.32234612 .00000037 00000-0 44932-4 0 6078 2 26536 99.0364 271.7323 0011005 25.7481 334.4290 14.12287147264402 1 26536U 00055A 05312.32234612 .00000037 00000-0 44932-4 0 6089 2 26536 99.0364 271.7323 0011005 25.7481 334.4290 14.12287147264402 1 26536U 00055A 05312.32234612 .00000037 00000-0 44932-4 0 6090 2 26536 99.0364 271.7323 0011005 25.7481 334.4290 14.12287147264402 1 26536U 00055A 05312.81826911 .00000060 00000-0 57066-4 0 6103 2 26536 99.0362 272.2322 0010975 24.2836 335.8851 14.12287274264474 1 26536U 00055A 05313.24334681 .00000131 00000-0 96144-4 0 6108 2 26536 99.0361 272.6606 0010927 23.1538 337.0147 14.12287788264535 1 26536U 00055A 05313.24334681 .00000131 00000-0 96144-4 0 6119 2 26536 99.0361 272.6606 0010927 23.1538 337.0147 14.12287788264535 1 26536U 00055A 05314.44773069 .00000397 00000-0 24045-3 0 6113 2 26536 99.0358 273.8745 0010761 19.8737 340.2851 14.12289874264702 1 26536U 00055A 05314.44773069 .00000397 00000-0 24045-3 0 6124 2 26536 99.0358 273.8745 0010761 19.8737 340.2851 14.12289874264702 1 26536U 00055A 05314.80196144 .00000390 00000-0 23652-3 0 6134 2 26536 99.0356 274.2321 0010721 18.9282 341.2277 14.12290022264751 1 26536U 00055A 05315.29788459 .00000372 00000-0 22675-3 0 6138 2 26536 99.0348 274.7326 0010804 17.3943 342.7586 14.12290368264821 1 26536U 00055A 05315.65211541 .00000297 00000-0 18604-3 0 6145 2 26536 99.0345 275.0885 0010822 16.2875 343.8619 14.12290211264875 1 26536U 00055A 05316.50226979 .00000183 00000-0 12396-3 0 6147 2 26536 99.0345 275.9466 0010822 14.0715 346.0754 14.12290187264998 1 26536U 00055A 05316.50226979 .00000183 00000-0 12396-3 0 6158 2 26536 99.0345 275.9466 0010822 14.0715 346.0754 14.12290187264998 1 26536U 00055A 05316.92734664 .00000090 00000-0 73594-4 0 6165 2 26536 99.0341 276.3757 0010845 12.9256 347.2176 14.12289970265051 1 26536U 00055A 05317.28157769 .00000139 00000-0 10048-3 0 6168 2 26536 99.0342 276.7328 0010859 11.9901 348.1538 14.12290357265100 1 26536U 00055A 05317.77750037 .00000062 00000-0 58493-4 0 6172 2 26536 99.0350 277.2333 0010773 10.7287 349.4094 14.12290015265179 1 26536U 00055A 05318.55680840 -.00000028 00000-0 93196-5 0 6176 2 26536 99.0352 278.0198 0010769 8.5426 351.5910 14.12289624265281 1 26536U 00055A 05319.40696304 -.00000173 00000-0 -69403-4 0 6189 2 26536 99.0358 278.8764 0010651 6.2037 353.9266 14.12288946265407 1 26536U 00055A 05319.83204021 -.00000106 00000-0 -32711-4 0 6196 2 26536 99.0363 279.3048 0010601 4.9346 355.1948 14.12289191265467 1 26536U 00055A 05320.25711696 -.00000136 00000-0 -49334-4 0 6197 2 26536 99.0363 279.7332 0010578 3.8088 356.3156 14.12288967265522 1 26536U 00055A 05320.25711696 -.00000136 00000-0 -49334-4 0 6209 2 26536 99.0363 279.7332 0010578 3.8088 356.3156 14.12288967265522 1 26536U 00055A 05320.82388670 -.00000136 00000-0 -49334-4 0 6215 2 26536 99.0363 280.3044 0010578 2.2135 357.9081 14.12288864265605 1 26536U 00055A 05321.31981015 -.00000014 00000-0 16965-4 0 6210 2 26536 99.0371 280.8051 0010376 1.0111 359.1136 14.12289556265675 1 26536U 00055A 05321.31981015 -.00000014 00000-0 16965-4 0 6221 2 26536 99.0371 280.8051 0010376 1.0111 359.1136 14.12289556265675 1 26536U 00055A 05321.74488605 .00000098 00000-0 77888-4 0 6238 2 26536 99.0369 281.2333 0010583 359.4954 0.6208 14.12290105265732 1 26536U 00055A 05322.52419250 .00000231 00000-0 15004-3 0 6235 2 26536 99.0369 282.0182 0010462 357.0713 3.0395 14.12291121265841 1 26536U 00055A 05322.94926901 .00000338 00000-0 20815-3 0 6242 2 26536 99.0368 282.4464 0010419 355.8327 4.2788 14.12291975265909 1 26536U 00055A 05323.37434462 .00000336 00000-0 20707-3 0 6244 2 26536 99.0369 282.8748 0010364 354.6108 5.4963 14.12292392265960 1 26536U 00055A 05323.79942048 .00000385 00000-0 23380-3 0 6259 2 26536 99.0368 283.3030 0010346 353.4609 6.6420 14.12292816266022 1 26536U 00055A 05324.29534257 .00000346 00000-0 21255-3 0 6250 2 26536 99.0371 283.8024 0010421 352.3285 7.7700 14.12292972266099 1 26536U 00055A 05324.79126501 .00000371 00000-0 22636-3 0 6267 2 26536 99.0370 284.3022 0010409 351.0574 9.0407 14.12293431266163 1 26536U 00055A 05325.14549490 .00000264 00000-0 16825-3 0 6267 2 26536 99.0373 284.6591 0010446 350.3031 9.7910 14.12293180266214 1 26536U 00055A 05325.71226328 .00000145 00000-0 10351-3 0 6279 2 26536 99.0375 285.2301 0010439 348.5566 11.5339 14.12292828266298 1 26536U 00055A 05326.06649384 .00000055 00000-0 54908-4 0 6276 2 26536 99.0376 285.5871 0010445 347.6452 12.4440 14.12292483266341 1 26536U 00055A 05326.06649384 .00000055 00000-0 54908-4 0 6287 2 26536 99.0376 285.5871 0010445 347.6452 12.4440 14.12292483266341 1 26536U 00055A 05326.63326242 -.00000020 00000-0 13776-4 0 6297 2 26536 99.0380 286.1588 0010417 345.9947 14.0916 14.12292123266423 1 26536U 00055A 05327.48341600 -.00000235 00000-0 -10287-3 0 6298 2 26536 99.0385 287.0168 0010300 343.9992 16.0843 14.12290988266542 1 26536U 00055A 05327.90849282 -.00000245 00000-0 -10806-3 0 6304 2 26536 99.0390 287.4454 0010310 342.7696 17.3131 14.12290876266606 1 26536U 00055A 05328.40441545 -.00000169 00000-0 -66769-4 0 6305 2 26536 99.0391 287.9454 0010234 341.5718 18.5108 14.12291206266671 1 26536U 00055A 05328.82949148 -.00000105 00000-0 -32373-4 0 6318 2 26536 99.0394 288.3742 0010249 340.2749 19.8033 14.12291373266738 1 26536U 00055A 05329.25456781 -.00000005 00000-0 22160-4 0 6313 2 26536 99.0390 288.8030 0010205 338.9011 21.1757 14.12291779266792 1 26536U 00055A 05329.82133594 .00000090 00000-0 73409-4 0 6326 2 26536 99.0388 289.3743 0010196 337.2782 22.7957 14.12292338266872 1 26536U 00055A 05330.24641173 .00000090 00000-0 73409-4 0 6321 2 26536 99.0388 289.8028 0010196 336.0818 23.9878 14.12292453266930 1 26536U 00055A 05330.24641173 .00000090 00000-0 73409-4 0 6332 2 26536 99.0388 289.8028 0010196 336.0818 23.9878 14.12292453266930 1 26536U 00055A 05330.24641173 .00000090 00000-0 73409-4 0 6343 2 26536 99.0388 289.8028 0010196 336.0818 23.9878 14.12292453266930 1 26536U 00055A 05330.74233393 .00000232 00000-0 15084-3 0 6363 2 26536 99.0382 290.3033 0010160 334.4727 25.5985 14.12293417267006 1 26536U 00055A 05331.16740894 .00000366 00000-0 22352-3 0 6363 2 26536 99.0382 290.7318 0010140 332.8743 27.1942 14.12294436267063 1 26536U 00055A 05331.73417544 .00000324 00000-0 20062-3 0 6370 2 26536 99.0378 291.3031 0010122 331.2631 28.7967 14.12294627267141 1 26536U 00055A 05332.08840532 .00000390 00000-0 23683-3 0 6371 2 26536 99.0377 291.6602 0010099 329.9978 30.0637 14.12295266267193 1 26536U 00055A 05332.58432606 .00000359 00000-0 22002-3 0 6385 2 26536 99.0377 292.1602 0010063 328.5991 31.4569 14.12295485267260 1 26536U 00055A 05333.50532254 .00000218 00000-0 14319-3 0 6384 2 26536 99.0371 293.0893 0010072 325.5264 34.5240 14.12295532267393 1 26536U 00055A 05333.50532254 .00000218 00000-0 14319-3 0 6395 2 26536 99.0371 293.0893 0010072 325.5264 34.5240 14.12295532267393 1 26536U 00055A 05333.93039808 .00000137 00000-0 99266-4 0 6406 2 26536 99.0370 293.5178 0010064 324.2951 35.7528 14.12295311267457 1 26536U 00055A 05334.42631970 .00000048 00000-0 50764-4 0 6400 2 26536 99.0373 294.0183 0010102 322.8938 37.1519 14.12295040267527 1 26536U 00055A 05334.85139547 .00000001 00000-0 25565-4 0 6411 2 26536 99.0375 294.4470 0010107 321.6623 38.3819 14.12294851267586 1 26536U 00055A 05335.34731713 -.00000080 00000-0 -18540-4 0 6413 2 26536 99.0381 294.9464 0010092 320.5371 39.5046 14.12294529267657 1 26536U 00055A 05335.84323908 -.00000070 00000-0 -13211-4 0 6421 2 26536 99.0386 295.4464 0010085 318.9990 41.0417 14.12294440267728 1 26536U 00055A 05336.33916079 -.00000098 00000-0 -28305-4 0 6423 2 26536 99.0383 295.9466 0010092 318.0420 41.9967 14.12294342267796 1 26536U 00055A 05336.83508265 -.00000065 00000-0 -10372-4 0 6432 2 26536 99.0391 296.4470 0010104 316.6260 43.4112 14.12294338267868 1 26536U 00055A 05337.26015843 -.00000022 00000-0 12916-4 0 6433 2 26536 99.0393 296.8753 0010104 315.3599 44.6771 14.12294583267922 1 26536U 00055A 05337.82692568 -.00000013 00000-0 17650-4 0 6441 2 26536 99.0402 297.4476 0010018 313.2215 46.8126 14.12294572268004 1 26536U 00055A 05338.18115524 -.00000013 00000-0 17650-4 0 6443 2 26536 99.0402 297.8047 0010018 312.2246 47.8074 14.12294595268058 1 26536U 00055A 05338.81876872 -.00000013 00000-0 17650-4 0 6454 2 26536 99.0402 298.4475 0010018 310.4301 49.5995 14.12294636268149 1 26536U 00055A 05339.24384437 .00000098 00000-0 78216-4 0 6450 2 26536 99.0401 298.8763 0009942 308.8267 51.2055 14.12295347268202 1 26536U 00055A 05339.88145675 .00000162 00000-0 11304-3 0 6466 2 26536 99.0402 299.5191 0009892 307.0359 52.9926 14.12295942268298 1 26536U 00055A 05340.30653163 .00000301 00000-0 18815-3 0 6460 2 26536 99.0401 299.9478 0009831 305.3755 54.6540 14.12296914268351 1 26536U 00055A 05341.36921779 .00000439 00000-0 26347-3 0 6470 2 26536 99.0403 301.0202 0009806 301.8833 58.1416 14.12298454268502 1 26536U 00055A 05341.93598315 .00000348 00000-0 21358-3 0 6486 2 26536 99.0400 301.5920 0009777 300.5900 59.4262 14.12298364268580 1 26536U 00055A 05342.43190431 .00000166 00000-0 11471-3 0 6482 2 26536 99.0400 302.0915 0009860 299.2107 60.8044 14.12297800268652 1 26536U 00055A 05342.43190431 .00000166 00000-0 11471-3 0 6493 2 26536 99.0400 302.0915 0009860 299.2107 60.8044 14.12297800268652 1 26536U 00055A 05342.43190431 .00000166 00000-0 11471-3 0 6505 2 26536 99.0400 302.0915 0009860 299.2107 60.8044 14.12297800268652 1 26536U 00055A 05342.92782552 .00000036 00000-0 44206-4 0 6510 2 26536 99.0404 302.5917 0009860 298.0061 62.0077 14.12297278268726 1 26536U 00055A 05343.35290115 .00000005 00000-0 27639-4 0 6514 2 26536 99.0406 303.0206 0009854 296.7860 63.2306 14.12297289268786 1 26536U 00055A 05343.91966767 -.00000084 00000-0 -20655-4 0 6520 2 26536 99.0409 303.5926 0009881 295.6642 64.3482 14.12296877268867 1 26536U 00055A 05344.48643498 -.00000119 00000-0 -39700-4 0 6526 2 26536 99.0404 304.1632 0009832 293.6701 66.3441 14.12296722268948 1 26536U 00055A 05345.47827701 -.00000005 00000-0 22244-4 0 6536 2 26536 99.0403 305.1633 0009811 290.3149 69.7000 14.12297163269080 1 26536U 00055A 05345.90335141 -.00000016 00000-0 16337-4 0 6545 2 26536 99.0400 305.5922 0009816 289.1722 70.8380 14.12297107269149 1 26536U 00055A 05346.25758076 .00000023 00000-0 37305-4 0 6545 2 26536 99.0399 305.9493 0009811 287.9254 72.0860 14.12297346269191 1 26536U 00055A 05346.75350133 -.00000091 00000-0 -24870-4 0 6553 2 26536 99.0397 306.4491 0009871 286.6038 73.4024 14.12296770269260 1 26536U 00055A 05347.10773117 -.00000028 00000-0 96757-5 0 6557 2 26536 99.0397 306.8063 0009874 285.3776 74.6329 14.12297146269312 1 26536U 00055A 05347.60365161 .00000043 00000-0 48219-4 0 6564 2 26536 99.0393 307.3061 0009846 283.9806 76.0294 14.12297666269380 1 26536U 00055A 05348.02872607 .00000183 00000-0 12440-3 0 6560 2 26536 99.0390 307.7346 0009867 282.7967 77.2132 14.12298494269446 1 26536U 00055A 05348.59549169 .00000333 00000-0 20587-3 0 6575 2 26536 99.0387 308.3060 0009817 280.9343 79.0756 14.12299546269525 1 26536U 00055A 05349.02056541 .00000399 00000-0 24139-3 0 6570 2 26536 99.0388 308.7344 0009830 279.2357 80.7721 14.12300166269584 1 26536U 00055A 05349.02056541 .00000399 00000-0 24139-3 0 6581 2 26536 99.0388 308.7344 0009830 279.2357 80.7721 14.12300166269584 1 26536U 00055A 05349.72902195 .00000434 00000-0 26043-3 0 6590 2 26536 99.0393 309.4500 0009851 277.6789 82.3262 14.12300917269689 1 26536U 00055A 05350.15409593 .00000387 00000-0 23483-3 0 6595 2 26536 99.0393 309.8788 0009850 276.6978 83.3058 14.12301068269748 1 26536U 00055A 05350.15409593 .00000387 00000-0 23483-3 0 6607 2 26536 99.0393 309.8788 0009850 276.6978 83.3058 14.12301068269748 1 26536U 00055A 05350.57917012 .00000282 00000-0 17818-3 0 6613 2 26536 99.0397 310.3078 0009855 275.2288 84.7740 14.12300834269805 1 26536U 00055A 05351.50016533 .00000033 00000-0 42732-4 0 6613 2 26536 99.0403 311.2367 0009831 273.1060 86.8973 14.12299957269931 1 26536U 00055A 05352.49200626 -.00000102 00000-0 -30542-4 0 6626 2 26536 99.0411 312.2370 0009812 270.5823 89.4221 14.12299400270077 1 26536U 00055A 05352.98792660 -.00000166 00000-0 -65570-4 0 6634 2 26536 99.0414 312.7372 0009787 269.3329 90.6702 14.12298989270142 1 26536U 00055A 05353.34215585 -.00000169 00000-0 -66952-4 0 6639 2 26536 99.0414 313.0945 0009767 268.1968 91.8090 14.12298969270192 1 26536U 00055A 05353.90892199 -.00000164 00000-0 -64056-4 0 6642 2 26536 99.0422 313.6665 0009774 266.4637 93.5415 14.12298779270276 1 26536U 00055A 05354.54653416 -.00000164 00000-0 -64056-4 0 6651 2 26536 99.0422 314.3095 0009774 264.6693 95.3363 14.12298629270369 1 26536U 00055A 05355.11330058 -.00000022 00000-0 12630-4 0 6652 2 26536 99.0431 314.8813 0009866 262.8716 97.1382 14.12299297270442 1 26536U 00055A 05355.11330058 -.00000022 00000-0 12630-4 0 6663 2 26536 99.0431 314.8813 0009866 262.8716 97.1382 14.12299297270442 1 26536U 00055A 05355.68006575 .00000007 00000-0 28808-4 0 6676 2 26536 99.0434 315.4532 0009864 261.2042 98.8021 14.12299479270522 1 26536U 00055A 05356.03429438 .00000137 00000-0 99002-4 0 6671 2 26536 99.0431 315.8108 0009920 259.6669 100.3421 14.12300178270578 1 26536U 00055A 05356.03429438 .00000137 00000-0 99002-4 0 6682 2 26536 99.0431 315.8108 0009920 259.6669 100.3421 14.12300178270578 1 26536U 00055A 05356.74275085 .00000247 00000-0 15893-3 0 6695 2 26536 99.0433 316.5257 0009871 257.5106 102.4983 14.12301029270674 1 26536U 00055A 05357.09697882 .00000350 00000-0 21485-3 0 6696 2 26536 99.0431 316.8839 0009918 256.5479 103.4617 14.12301800270723 1 26536U 00055A 05357.09697882 .00000350 00000-0 21485-3 0 6708 2 26536 99.0431 316.8839 0009918 256.5479 103.4617 14.12301800270723 1 26536U 00055A 05357.73458897 .00000330 00000-0 20398-3 0 6711 2 26536 99.0429 317.5275 0009924 254.0541 105.9542 14.12302199270818 1 26536U 00055A 05358.08881702 .00000403 00000-0 24345-3 0 6712 2 26536 99.0430 317.8849 0009954 252.8217 107.1882 14.12302802270866 1 26536U 00055A 05358.08881702 .00000403 00000-0 24345-3 0 6723 2 26536 99.0430 317.8849 0009954 252.8217 107.1882 14.12302802270866 1 26536U 00055A 05358.08881702 .00000403 00000-0 24345-3 0 6734 2 26536 99.0430 317.8849 0009954 252.8217 107.1882 14.12302802270866 1 26536U 00055A 05358.72642700 .00000332 00000-0 20496-3 0 6754 2 26536 99.0426 318.5279 0009971 250.7261 109.2824 14.12303020270953 1 26536U 00055A 05359.15150068 .00000250 00000-0 16034-3 0 6755 2 26536 99.0426 318.9568 0009928 249.6946 110.3131 14.12302861271011 1 26536U 00055A 05359.15150068 .00000250 00000-0 16034-3 0 6766 2 26536 99.0426 318.9568 0009928 249.6946 110.3131 14.12302861271011 1 26536U 00055A 05359.15150068 .00000250 00000-0 16034-3 0 6777 2 26536 99.0426 318.9568 0009928 249.6946 110.3131 14.12302861271011 1 26536U 00055A 05359.15150068 .00000250 00000-0 16034-3 0 6799 2 26536 99.0426 318.9568 0009928 249.6946 110.3131 14.12302861271011 1 26536U 00055A 05359.78911160 .00000250 00000-0 16034-3 0 6819 2 26536 99.0426 319.5999 0009928 247.9003 112.1115 14.12303237271101 1 26536U 00055A 05360.21418510 .00000066 00000-0 60890-4 0 6815 2 26536 99.0414 320.0281 0009811 246.8561 113.1516 14.12302489271167 1 26536U 00055A 05360.21418510 .00000066 00000-0 60890-4 0 6826 2 26536 99.0414 320.0281 0009811 246.8561 113.1516 14.12302489271167 1 26536U 00055A 05360.78095131 .00000016 00000-0 33745-4 0 6833 2 26536 99.0414 320.5994 0009803 245.2968 114.7167 14.12302310271249 1 26536U 00055A 05361.20602545 -.00000063 00000-0 -92571-5 0 6831 2 26536 99.0413 321.0284 0009769 244.2700 115.7444 14.12301973271300 1 26536U 00055A 05361.77279109 -.00000079 00000-0 -18119-4 0 6842 2 26536 99.0415 321.6001 0009776 242.3676 117.6496 14.12301787271383 1 26536U 00055A 05362.19786526 -.00000122 00000-0 -41296-4 0 6846 2 26536 99.0419 322.0281 0009808 240.8239 119.1955 14.12301600271444 1 26536U 00055A 05362.69378496 -.00000098 00000-0 -28666-4 0 6853 2 26536 99.0424 322.5287 0009816 238.9833 121.0378 14.12301573271516 1 26536U 00055A 05363.11885900 -.00000098 00000-0 -28666-4 0 6854 2 26536 99.0424 322.9574 0009816 237.7871 122.2349 14.12301528271575 1 26536U 00055A 05363.61477882 -.00000098 00000-0 -28666-4 0 6866 2 26536 99.0424 323.4575 0009816 236.3914 123.6320 14.12301476271649 1 26536U 00055A 05364.18154436 -.00000000 00000-0 24736-4 0 6862 2 26536 99.0426 324.0293 0009933 233.8450 126.1860 14.12302097271728 1 26536U 00055A 05364.18154436 -.00000000 00000-0 24736-4 0 6873 2 26536 99.0426 324.0293 0009933 233.8450 126.1860 14.12302097271728 1 26536U 00055A 05364.67746287 .00000116 00000-0 87554-4 0 6883 2 26536 99.0433 324.5308 0009913 232.3117 127.7179 14.12302729271799 1 26536U 00055A 05365.10253618 .00000211 00000-0 13923-3 0 6887 2 26536 99.0433 324.9596 0009955 231.1146 128.9164 14.12303378271852 1 26536U 00055A 05365.66930042 .00000290 00000-0 18228-3 0 6892 2 26536 99.0435 325.5315 0009950 229.3758 130.6567 14.12304102271935 1 26536U 00055A 06001.02351628 .00000346 00000-0 21295-3 0 6897 2 26536 99.0437 325.8888 0009965 228.4165 131.6166 14.12304635271985 1 26536U 00055A 06001.66112576 .00000340 00000-0 20931-3 0 6906 2 26536 99.0437 326.5323 0010002 226.1501 133.8836 14.12304967272077 1 26536U 00055A 06002.01535353 .00000318 00000-0 19737-3 0 6905 2 26536 99.0438 326.8896 0009975 225.3990 134.6367 14.12305190272129 1 26536U 00055A 06002.72380857 .00000269 00000-0 17097-3 0 6913 2 26536 99.0442 327.6042 0009993 223.2709 136.7669 14.12305425272221 1 26536U 00055A 06003.14888174 .00000205 00000-0 13635-3 0 6919 2 26536 99.0445 328.0327 0009995 221.9764 138.0629 14.12305356272283 1 26536U 00055A 06003.14888174 .00000205 00000-0 13635-3 0 6920 2 26536 99.0445 328.0327 0009995 221.9764 138.0629 14.12305356272283 1 26536U 00055A 06003.71564601 .00000100 00000-0 78940-4 0 6935 2 26536 99.0447 328.6050 0010028 220.4472 139.5936 14.12305043272362 1 26536U 00055A 06004.06987401 .00000050 00000-0 51794-4 0 6933 2 26536 99.0448 328.9622 0009976 219.5876 140.4554 14.12304913272416 1 26536U 00055A 06004.06987401 .00000050 00000-0 51794-4 0 6944 2 26536 99.0448 328.9622 0009976 219.5876 140.4554 14.12304913272416 1 26536U 00055A 06004.63663852 -.00000009 00000-0 19891-4 0 6956 2 26536 99.0447 329.5334 0010009 217.7204 142.3250 14.12304630272494 1 26536U 00055A 06005.13255769 -.00000053 00000-0 -41043-5 0 6951 2 26536 99.0451 330.0336 0010021 216.2102 143.8389 14.12304481272564 1 26536U 00055A 06005.13255769 -.00000053 00000-0 -41043-5 0 6962 2 26536 99.0451 330.0336 0010021 216.2102 143.8389 14.12304481272564 1 26536U 00055A 06005.77016777 -.00000053 00000-0 -41043-5 0 6977 2 26536 99.0451 330.6768 0010021 214.4160 145.6363 14.12304471272654 1 26536U 00055A 06006.19524113 -.00000053 00000-0 -41043-5 0 6972 2 26536 99.0451 331.1056 0010021 213.2198 146.8345 14.12304465272711 1 26536U 00055A 06006.19524113 -.00000053 00000-0 -41043-5 0 6983 2 26536 99.0451 331.1056 0010021 213.2198 146.8345 14.12304465272711 1 26536U 00055A 06006.62031449 -.00000131 00000-0 -46555-4 0 6996 2 26536 99.0459 331.5351 0010015 211.9868 148.0663 14.12303853272776 1 26536U 00055A 06007.11623430 -.00000059 00000-0 -70081-5 0 6999 2 26536 99.0459 332.0353 0010038 210.6510 149.4099 14.12304207272849 1 26536U 00055A 06007.75384402 -.00000005 00000-0 21849-4 0 7002 2 26536 99.0459 332.6788 0010028 208.9163 151.1467 14.12304495272938 1 26536U 00055A 06008.10807156 -.00000005 00000-0 21849-4 0 7008 2 26536 99.0459 333.0361 0010028 207.9195 152.1439 14.12304524272982 1 26536U 00055A 06008.60399048 .00000131 00000-0 95681-4 0 7014 2 26536 99.0455 333.5366 0010079 206.4466 153.6236 14.12305369273057 1 26536U 00055A 06009.09990824 .00000243 00000-0 15676-3 0 7016 2 26536 99.0453 334.0370 0010115 205.1060 154.9651 14.12306160273126 1 26536U 00055A 06009.66667143 .00000331 00000-0 20473-3 0 7024 2 26536 99.0454 334.6094 0010077 203.5676 156.5048 14.12306920273209 1 26536U 00055A 06010.09174380 .00000392 00000-0 23761-3 0 7029 2 26536 99.0449 335.0385 0010164 202.3339 157.7412 14.12307552273267 1 26536U 00055A 06010.80019737 .00000358 00000-0 21916-3 0 7035 2 26536 99.0449 335.7531 0010207 200.1389 159.9378 14.12307999273367 1 26536U 00055A 06011.22526973 .00000358 00000-0 21916-3 0 7037 2 26536 99.0449 336.1819 0010207 198.9429 161.1364 14.12308341273429 1 26536U 00055A 06011.79203265 .00000316 00000-0 19610-3 0 7048 2 26536 99.0454 336.7531 0010314 197.2130 162.8682 14.12308447273509 1 26536U 00055A 06012.21710506 .00000191 00000-0 12833-3 0 7048 2 26536 99.0452 337.1823 0010258 195.9151 164.1664 14.12308080273565 1 26536U 00055A 06012.85471420 .00000001 00000-0 25304-4 0 7056 2 26536 99.0452 337.8256 0010235 194.2101 165.8738 14.12307320273650 1 26536U 00055A 06013.42147852 -.00000099 00000-0 -28812-4 0 7055 2 26536 99.0457 338.3978 0010268 192.4664 167.6246 14.12306951273734 1 26536U 00055A 06013.84655138 -.00000173 00000-0 -69331-4 0 7067 2 26536 99.0458 338.8266 0010273 191.3091 168.7830 14.12306444273792 1 26536U 00055A 06014.27162465 -.00000213 00000-0 -90709-4 0 7069 2 26536 99.0457 339.2553 0010287 189.9738 170.1224 14.12306156273852 1 26536U 00055A 06014.83838874 -.00000185 00000-0 -75458-4 0 7078 2 26536 99.0460 339.8272 0010262 188.3355 171.7648 14.12306088273931 1 26536U 00055A 06015.19261619 -.00000185 00000-0 -75458-4 0 7075 2 26536 99.0460 340.1845 0010262 187.3387 172.7635 14.12305990273989 1 26536U 00055A 06015.61768919 -.00000174 00000-0 -69642-4 0 7084 2 26536 99.0462 340.6135 0010312 186.0972 174.0083 14.12305933274047 1 26536U 00055A 06016.53868006 -.00000028 00000-0 97272-5 0 7082 2 26536 99.0465 341.5436 0010375 183.3925 176.7202 14.12306627274178 1 26536U 00055A 06017.45966970 .00000206 00000-0 13667-3 0 7095 2 26536 99.0471 342.4729 0010403 180.7954 179.3225 14.12308064274301 1 26536U 00055A 06018.02643234 .00000324 00000-0 20054-3 0 7105 2 26536 99.0474 343.0448 0010465 179.3384 180.7830 14.12308913274387 1 26536U 00055A 06018.59319455 .00000348 00000-0 21351-3 0 7110 2 26536 99.0474 343.6168 0010488 177.6947 182.4278 14.12309424274465 1 26536U 00055A 06019.01826638 .00000348 00000-0 21351-3 0 7114 2 26536 99.0474 344.0457 0010488 176.4988 183.6259 14.12309757274521 1 26536U 00055A 06019.01826638 .00000348 00000-0 21351-3 0 7125 2 26536 99.0474 344.0457 0010488 176.4988 183.6259 14.12309757274521 1 26536U 00055A 06019.01826638 .00000348 00000-0 21351-3 0 7136 2 26536 99.0474 344.0457 0010488 176.4988 183.6259 14.12309757274521 1 26536U 00055A 06019.58502877 .00000282 00000-0 17792-3 0 7157 2 26536 99.0478 344.6179 0010534 174.9440 185.1824 14.12309779274608 1 26536U 00055A 06020.01010087 .00000282 00000-0 17792-3 0 7154 2 26536 99.0478 345.0469 0010534 173.7481 186.3823 14.12310057274666 1 26536U 00055A 06020.01010087 .00000282 00000-0 17792-3 0 7165 2 26536 99.0478 345.0469 0010534 173.7481 186.3823 14.12310057274666 1 26536U 00055A 06020.01010087 .00000282 00000-0 17792-3 0 7176 2 26536 99.0478 345.0469 0010534 173.7481 186.3823 14.12310057274666 1 26536U 00055A 06020.57686314 .00000282 00000-0 17792-3 0 7191 2 26536 99.0478 345.6188 0010534 172.1535 187.9803 14.12310428274749 1 26536U 00055A 06021.49785151 -.00000063 00000-0 -96524-5 0 7193 2 26536 99.0499 346.5451 0010455 169.8240 190.3056 14.12308973274877 1 26536U 00055A 06021.92292533 -.00000159 00000-0 -61757-4 0 7205 2 26536 99.0498 346.9745 0010414 168.3744 191.7641 14.12308459274935 1 26536U 00055A 06022.34799810 -.00000215 00000-0 -91864-4 0 7207 2 26536 99.0499 347.4037 0010419 167.2388 192.9051 14.12308203274994 1 26536U 00055A 06022.84391575 -.00000173 00000-0 -69284-4 0 7213 2 26536 99.0496 347.9039 0010608 165.7580 194.3915 14.12308320275069 1 26536U 00055A 06023.33983295 -.00000169 00000-0 -67136-4 0 7213 2 26536 99.0498 348.4044 0010631 164.2645 195.8865 14.12308290275139 1 26536U 00055A 06023.83575048 -.00000169 00000-0 -67136-4 0 7222 2 26536 99.0498 348.9050 0010631 162.8692 197.2840 14.12308168275208 1 26536U 00055A 06024.26082279 -.00000169 00000-0 -67136-4 0 7229 2 26536 99.0498 349.3340 0010631 161.6731 198.4825 14.12308063275262 1 26536U 00055A 06024.68589514 -.00000169 00000-0 -67136-4 0 7230 2 26536 99.0498 349.7630 0010631 160.4771 199.6809 14.12307958275323 1 26536U 00055A 06025.53603825 .00000111 00000-0 85178-4 0 7238 2 26536 99.0478 350.6240 0010920 158.1527 202.0134 14.12309561275448 1 26536U 00055A 06026.45702611 .00000257 00000-0 16422-3 0 7240 2 26536 99.0471 351.5533 0010951 155.7193 204.4515 14.12310808275571 1 26536U 00055A 06026.95294245 .00000393 00000-0 23791-3 0 7253 2 26536 99.0474 352.0538 0010974 154.4961 205.6781 14.12311766275649 1 26536U 00055A 06027.37801306 .00000418 00000-0 25169-3 0 7251 2 26536 99.0474 352.4828 0010984 153.3144 206.8607 14.12312350275704 1 26536U 00055A 06027.80308378 .00000418 00000-0 25169-3 0 7261 2 26536 99.0474 352.9117 0010984 152.1185 208.0577 14.12312743275764 1 26536U 00055A 06028.22815464 .00000352 00000-0 21592-3 0 7260 2 26536 99.0475 353.3413 0010837 150.8815 209.2924 14.12312613275823 1 26536U 00055A 06028.22815464 .00000352 00000-0 21592-3 0 7271 2 26536 99.0475 353.3413 0010837 150.8815 209.2924 14.12312613275823 1 26536U 00055A 06028.58238114 .00000352 00000-0 21592-3 0 7282 2 26536 99.0475 353.6988 0010837 149.8849 210.2947 14.12312894275871 1 26536U 00055A 06029.50336887 .00000126 00000-0 93188-4 0 7281 2 26536 99.0480 354.6284 0010771 147.2611 212.9217 14.12312211276001 1 26536U 00055A 06029.50336887 .00000126 00000-0 93188-4 0 7292 2 26536 99.0480 354.6284 0010771 147.2611 212.9217 14.12312211276001 1 26536U 00055A 06029.99928532 -.00000002 00000-0 23897-4 0 7305 2 26536 99.0484 355.1287 0010770 145.6278 214.5555 14.12311658276078 1 26536U 00055A 06031.48703624 -.00000159 00000-0 -61460-4 0 7318 2 26536 99.0495 356.6303 0010726 141.1775 219.0169 14.12310769276285 1 26536U 00055A 06031.91210768 -.00000159 00000-0 -61460-4 0 7329 2 26536 99.0495 357.0593 0010726 139.9815 220.2149 14.12310673276344 1 26536U 00055A 06032.33717915 -.00000159 00000-0 -61460-4 0 7322 2 26536 99.0495 357.4883 0010726 138.7854 221.4128 14.12310577276400 1 26536U 00055A 06032.83309589 -.00000159 00000-0 -61460-4 0 7332 2 26536 99.0495 357.9888 0010726 137.3901 222.8104 14.12310465276470 1 26536U 00055A 06033.32901266 -.00000108 00000-0 -33782-4 0 7337 2 26536 99.0504 358.4905 0010827 135.9537 224.2526 14.12310739276544 1 26536U 00055A 06033.82492877 -.00000055 00000-0 -51550-5 0 7341 2 26536 99.0507 358.9914 0010788 134.4389 225.7670 14.12310900276611 1 26536U 00055A 06034.17915482 -.00000011 00000-0 18571-4 0 7348 2 26536 99.0508 359.3490 0010796 133.5448 226.6634 14.12311140276663 1 26536U 00055A 06034.67507103 .00000144 00000-0 10315-3 0 7354 2 26536 99.0507 359.8495 0010848 132.1390 228.0739 14.12312023276732 1 26536U 00055A 06035.52521158 .00000305 00000-0 19011-3 0 7356 2 26536 99.0507 0.7078 0010899 130.1388 230.0761 14.12313317276850 1 26536U 00055A 06036.51704151 .00000400 00000-0 24197-3 0 7360 2 26536 99.0502 1.7083 0010947 128.1057 232.1105 14.12314579276997 1 26536U 00055A 06036.94211163 .00000375 00000-0 22810-3 0 7375 2 26536 99.0498 2.1375 0010967 127.1578 233.0592 14.12314787277058 1 26536U 00055A 06037.29633677 .00000371 00000-0 22592-3 0 7375 2 26536 99.0498 2.4951 0010994 126.4297 233.7899 14.12315116277101 1 26536U 00055A 06037.79225155 .00000250 00000-0 16028-3 0 7382 2 26536 99.0497 2.9960 0011043 125.2498 234.9680 14.12314814277173 1 26536U 00055A 06038.21732218 .00000132 00000-0 96530-4 0 7389 2 26536 99.0496 3.4252 0011047 123.7667 236.4522 14.12314400277237 1 26536U 00055A 06038.78408316 -.00000037 00000-0 45831-5 0 7395 2 26536 99.0496 3.9972 0011070 122.4353 237.7855 14.12313651277314 1 26536U 00055A 06039.13830921 -.00000104 00000-0 -31580-4 0 7397 2 26536 99.0495 4.3550 0011077 121.1793 239.0444 14.12313291277365 1 26536U 00055A 06039.13830921 -.00000104 00000-0 -31580-4 0 7409 2 26536 99.0495 4.3550 0011077 121.1793 239.0444 14.12313291277365 1 26536U 00055A 06039.13830921 -.00000104 00000-0 -31580-4 0 7410 2 26536 99.0495 4.3550 0011077 121.1793 239.0444 14.12313291277365 1 26536U 00055A 06039.63422528 -.00000136 00000-0 -49086-4 0 7432 2 26536 99.0498 4.8565 0011090 119.8325 240.3951 14.12313106277430 1 26536U 00055A 06040.48436641 -.00000153 00000-0 -58523-4 0 7433 2 26536 99.0497 5.7144 0011111 117.5997 242.6303 14.12312902277558 1 26536U 00055A 06040.90943706 -.00000153 00000-0 -58523-4 0 7446 2 26536 99.0497 6.1434 0011111 116.4037 243.8275 14.12312811277615 1 26536U 00055A 06041.40535284 -.00000150 00000-0 -56719-4 0 7442 2 26536 99.0500 6.6439 0011182 115.1339 245.0997 14.12312760277684 1 26536U 00055A 06041.90126854 -.00000017 00000-0 15481-4 0 7459 2 26536 99.0497 7.1443 0011160 113.5085 246.7283 14.12313367277754 1 26536U 00055A 06042.46802830 .00000054 00000-0 54294-4 0 7451 2 26536 99.0494 7.7154 0011209 112.2232 248.0131 14.12313852277835 1 26536U 00055A 06042.46802830 .00000054 00000-0 54294-4 0 7462 2 26536 99.0494 7.7154 0011209 112.2232 248.0131 14.12313852277835 1 26536U 00055A 06042.89309857 .00000168 00000-0 11598-3 0 7476 2 26536 99.0497 8.1447 0011170 111.0235 249.2159 14.12314541277890 1 26536U 00055A 06043.24732309 .00000202 00000-0 13434-3 0 7478 2 26536 99.0497 8.5022 0011179 110.1118 250.1264 14.12314866277946 1 26536U 00055A 06043.74323788 .00000258 00000-0 16468-3 0 7482 2 26536 99.0495 9.0027 0011202 108.7686 251.4710 14.12315385278011 1 26536U 00055A 06044.52253224 .00000323 00000-0 20001-3 0 7487 2 26536 99.0499 9.7895 0011213 107.0016 253.2412 14.12316243278121 1 26536U 00055A 06045.44351537 .00000246 00000-0 15832-3 0 7496 2 26536 99.0505 10.7193 0011193 104.4065 255.8331 14.12316517278250 1 26536U 00055A 06045.86858511 .00000262 00000-0 16697-3 0 7506 2 26536 99.0503 11.1483 0011185 102.8744 257.3670 14.12316812278310 1 26536U 00055A 06046.29365455 .00000197 00000-0 13193-3 0 7509 2 26536 99.0506 11.5774 0011190 101.7641 258.4771 14.12316696278370 1 26536U 00055A 06046.78956905 .00000061 00000-0 58024-4 0 7513 2 26536 99.0510 12.0782 0011179 100.5349 259.7050 14.12316125278448 1 26536U 00055A 06047.14379424 -.00000023 00000-0 12243-4 0 7511 2 26536 99.0511 12.4360 0011204 99.2357 261.0058 14.12315763278493 1 26536U 00055A 06047.56886433 -.00000096 00000-0 -27562-4 0 7522 2 26536 99.0512 12.8654 0011214 98.1634 262.0797 14.12315385278559 1 26536U 00055A 06048.48984915 -.00000164 00000-0 -64146-4 0 7523 2 26536 99.0513 13.7951 0011224 95.7342 264.5109 14.12314953278688 1 26536U 00055A 06048.48984915 -.00000164 00000-0 -64146-4 0 7534 2 26536 99.0513 13.7951 0011224 95.7342 264.5109 14.12314953278688 1 26536U 00055A 06048.91491898 -.00000165 00000-0 -64634-4 0 7549 2 26536 99.0517 14.2251 0011204 94.0182 266.2267 14.12314877278749 1 26536U 00055A 06049.26914389 -.00000163 00000-0 -63567-4 0 7545 2 26536 99.0518 14.5826 0011212 93.1310 267.1147 14.12314823278796 1 26536U 00055A 06049.26914389 -.00000163 00000-0 -63567-4 0 7556 2 26536 99.0518 14.5826 0011212 93.1310 267.1147 14.12314823278796 1 26536U 00055A 06049.76505864 -.00000113 00000-0 -36666-4 0 7572 2 26536 99.0521 15.0832 0011237 92.1773 268.0697 14.12314930278869 1 26536U 00055A 06050.54435305 -.00000033 00000-0 70567-5 0 7571 2 26536 99.0522 15.8704 0011265 90.1558 270.0925 14.12315263278975 1 26536U 00055A 06050.54435305 -.00000033 00000-0 70567-5 0 7582 2 26536 99.0522 15.8704 0011265 90.1558 270.0925 14.12315263278975 1 26536U 00055A 06050.54435305 -.00000033 00000-0 70567-5 0 7593 2 26536 99.0522 15.8704 0011265 90.1558 270.0925 14.12315263278975 1 26536U 00055A 06050.54435305 -.00000033 00000-0 70567-5 0 7605 2 26536 99.0522 15.8704 0011265 90.1558 270.0925 14.12315263278975 1 26536U 00055A 06050.89857735 -.00000004 00000-0 22792-4 0 7635 2 26536 99.0518 16.2281 0011259 89.3560 270.8918 14.12315507279029 1 26536U 00055A 06051.32364660 .00000068 00000-0 61857-4 0 7638 2 26536 99.0517 16.6572 0011276 88.2371 272.0109 14.12315954279080 1 26536U 00055A 06052.31547373 .00000255 00000-0 16327-3 0 7642 2 26536 99.0515 17.6580 0011215 85.3086 274.9365 14.12317330279223 1 26536U 00055A 06053.44899007 .00000389 00000-0 23566-3 0 7653 2 26536 99.0516 18.8033 0011239 81.9865 278.2581 14.12318820279382 1 26536U 00055A 06053.44899007 .00000389 00000-0 23566-3 0 7664 2 26536 99.0516 18.8033 0011239 81.9865 278.2581 14.12318820279382 1 26536U 00055A 06053.87405853 .00000333 00000-0 20552-3 0 7675 2 26536 99.0513 19.2323 0011288 81.1427 279.1008 14.12318887279440 1 26536U 00055A 06054.22828252 .00000305 00000-0 19041-3 0 7677 2 26536 99.0515 19.5900 0011291 80.3264 279.9175 14.12318975279496 1 26536U 00055A 06054.72419579 .00000183 00000-0 12432-3 0 7682 2 26536 99.0513 20.0911 0011273 78.9573 281.2840 14.12318645279566 1 26536U 00055A 06055.07842007 .00000159 00000-0 11117-3 0 7689 2 26536 99.0511 20.4490 0011287 77.8862 282.3572 14.12318743279613 1 26536U 00055A 06055.57433332 .00000068 00000-0 61626-4 0 7692 2 26536 99.0510 20.9498 0011267 76.5221 283.7192 14.12318490279687 1 26536U 00055A 06056.42447112 -.00000018 00000-0 15173-4 0 7690 2 26536 99.0512 21.8087 0011313 74.3216 285.9205 14.12318213279801 1 26536U 00055A 06056.84953969 -.00000078 00000-0 -17625-4 0 7701 2 26536 99.0513 22.2381 0011351 73.1799 287.0593 14.12317838279860 1 26536U 00055A 06057.27460889 -.00000174 00000-0 -69462-4 0 7706 2 26536 99.0510 22.6676 0011399 71.9691 288.2700 14.12317345279920 1 26536U 00055A 06057.77052303 -.00000181 00000-0 -73478-4 0 7710 2 26536 99.0513 23.1687 0011410 71.0234 289.2180 14.12317223279994 1 26536U 00055A 06058.54981592 -.00000181 00000-0 -73649-4 0 7717 2 26536 99.0519 23.9558 0011371 69.5341 290.7069 14.12317069280108 1 26536U 00055A 06059.39995219 -.00000033 00000-0 70598-5 0 7729 2 26536 99.0520 24.8129 0011340 66.5172 293.7183 14.12317964280226 1 26536U 00055A 06059.82502095 .00000075 00000-0 65546-4 0 7735 2 26536 99.0520 25.2431 0011306 66.4707 293.7678 14.12318412280286 1 26536U 00055A 06060.25008891 .00000152 00000-0 10700-3 0 7736 2 26536 99.0521 25.6725 0011274 65.5810 294.6558 14.12318910280343 1 26536U 00055A 06060.74600152 .00000168 00000-0 11587-3 0 7740 2 26536 99.0524 26.1734 0011301 64.3385 295.8955 14.12319209280411 1 26536U 00055A 06061.17106968 .00000252 00000-0 16155-3 0 7744 2 26536 99.0525 26.6026 0011246 63.3088 296.9263 14.12319876280478 1 26536U 00055A 06061.59613710 .00000261 00000-0 16652-3 0 7751 2 26536 99.0531 27.0324 0011252 62.2120 298.0192 14.12320149280539 1 26536U 00055A 06061.80868161 .00000082 00000-0 44302-4 0 7741 2 26536 99.0538 27.2450 0011331 60.0735 300.2037 14.12318994280566 1 26536U 00055A 06062.44627278 .00000280 00000-0 17684-3 0 7757 2 26536 99.0533 27.8903 0011153 60.0622 300.1682 14.12320856280652 1 26536U 00055A 06062.44627278 .00000280 00000-0 17684-3 0 7768 2 26536 99.0533 27.8903 0011153 60.0622 300.1682 14.12320856280652 1 26536U 00055A 06063.50894190 .00000220 00000-0 14422-3 0 7777 2 26536 99.0537 28.9641 0011181 57.0005 303.2240 14.12321068280806 1 26536U 00055A 06063.93400947 .00000058 00000-0 56132-4 0 7782 2 26536 99.0534 29.3935 0011320 55.2652 304.9531 14.12320469280868 1 26536U 00055A 06064.28823364 .00000049 00000-0 51097-4 0 7788 2 26536 99.0534 29.7513 0011333 54.2697 305.9528 14.12320551280911 1 26536U 00055A 06064.78414597 -.00000019 00000-0 14328-4 0 7792 2 26536 99.0542 30.2525 0011301 52.9038 307.3146 14.12320169280983 1 26536U 00055A 06065.28005883 -.00000142 00000-0 -52122-4 0 7794 2 26536 99.0545 30.7525 0011406 51.1888 309.0255 14.12319498281053 1 26536U 00055A 06065.77597244 -.00000075 00000-0 -16019-4 0 7807 2 26536 99.0549 31.2537 0011419 49.8082 310.4100 14.12319754281128 1 26536U 00055A 06066.48441876 -.00000076 00000-0 -16341-4 0 7804 2 26536 99.0548 31.9698 0011423 47.9507 312.2639 14.12319730281220 1 26536U 00055A 06066.48441876 -.00000076 00000-0 -16341-4 0 7815 2 26536 99.0548 31.9698 0011423 47.9507 312.2639 14.12319730281220 1 26536U 00055A 06066.90948663 -.00000117 00000-0 -38797-4 0 7824 2 26536 99.0550 32.3993 0011421 46.8303 313.3816 14.12319514281281 1 26536U 00055A 06067.26371008 -.00000107 00000-0 -33568-4 0 7827 2 26536 99.0550 32.7569 0011401 45.8542 314.3569 14.12319521281336 1 26536U 00055A 06067.83046732 -.00000077 00000-0 -16768-4 0 7833 2 26536 99.0554 33.3297 0011394 44.4800 315.7289 14.12319574281419 1 26536U 00055A 06068.18469053 .00000016 00000-0 33290-4 0 7837 2 26536 99.0554 33.6873 0011358 43.4616 316.7480 14.12320109281461 1 26536U 00055A 06068.75144697 .00000120 00000-0 89840-4 0 7843 2 26536 99.0555 34.2598 0011342 42.1820 318.0245 14.12320724281545 1 26536U 00055A 06069.53073639 .00000228 00000-0 14877-3 0 7843 2 26536 99.0556 35.0466 0011274 40.3030 319.8990 14.12321730281652 1 26536U 00055A 06070.52255843 .00000458 00000-0 27327-3 0 7853 2 26536 99.0545 36.0493 0011094 38.1041 322.0929 14.12323548281790 1 26536U 00055A 06070.94762481 .00000401 00000-0 24221-3 0 7869 2 26536 99.0541 36.4787 0011107 36.9742 323.2176 14.12323651281854 1 26536U 00055A 06071.30184736 .00000394 00000-0 23844-3 0 7862 2 26536 99.0541 36.8364 0011103 35.9761 324.2156 14.12323942281903 1 26536U 00055A 06071.79775834 .00000269 00000-0 17071-3 0 7877 2 26536 99.0540 37.3371 0011072 34.6013 325.5841 14.12323595281973 1 26536U 00055A 06072.15198127 .00000131 00000-0 95934-4 0 7875 2 26536 99.0541 37.6949 0011095 33.7225 326.4619 14.12323107282027 1 26536U 00055A 06072.57704870 .00000033 00000-0 42506-4 0 7888 2 26536 99.0544 38.1243 0011096 32.3564 327.8267 14.12322727282082 1 26536U 00055A 06073.49802741 -.00000043 00000-0 15010-5 0 7889 2 26536 99.0547 39.0544 0011087 29.6915 330.4878 14.12322550282215 1 26536U 00055A 06073.49802741 -.00000043 00000-0 15010-5 0 7890 2 26536 99.0547 39.0544 0011087 29.6915 330.4878 14.12322550282215 1 26536U 00055A 06073.49802741 -.00000043 00000-0 15010-5 0 7902 2 26536 99.0547 39.0544 0011087 29.6915 330.4878 14.12322550282215 1 26536U 00055A 06074.34816150 -.00000043 00000-0 15010-5 0 7917 2 26536 99.0547 39.9137 0011090 27.5853 332.5888 14.12322470282332 1 26536U 00055A 06074.34816150 -.00000043 00000-0 15010-5 0 7928 2 26536 99.0547 39.9137 0011090 27.5853 332.5888 14.12322470282332 1 26536U 00055A 06075.55251835 -.00000157 00000-0 -60367-4 0 7937 2 26536 99.0558 41.1308 0011083 24.3601 335.8041 14.12321605282502 1 26536U 00055A 06076.89856497 .00000004 00000-0 26976-4 0 7948 2 26536 99.0569 42.4904 0010954 20.7624 339.4022 14.12322390282692 1 26536U 00055A 06076.89856497 .00000004 00000-0 26976-4 0 7960 2 26536 99.0569 42.4904 0010954 20.7624 339.4022 14.12322390282692 1 26536U 00055A 06077.25278683 .00000050 00000-0 51871-4 0 7958 2 26536 99.0569 42.8481 0010903 19.7624 340.3980 14.12322640282746 1 26536U 00055A 06077.74869799 .00000168 00000-0 11598-3 0 7968 2 26536 99.0570 43.3494 0010867 18.6798 341.4795 14.12323354282814 1 26536U 00055A 06078.10291974 .00000168 00000-0 11598-3 0 7963 2 26536 99.0570 43.7072 0010867 17.6833 342.4714 14.12323505282864 1 26536U 00055A 06078.52798638 .00000283 00000-0 17858-3 0 7972 2 26536 99.0578 44.1371 0010804 16.7070 343.4491 14.12324347282928 1 26536U 00055A 06079.44896248 .00000315 00000-0 19577-3 0 7976 2 26536 99.0582 45.0676 0010748 14.1249 346.0223 14.12325130283056 1 26536U 00055A 06079.44896248 .00000315 00000-0 19577-3 0 7987 2 26536 99.0582 45.0676 0010748 14.1249 346.0223 14.12325130283056 1 26536U 00055A 06080.51162798 .00000186 00000-0 12571-3 0 7997 2 26536 99.0587 46.1419 0010720 11.2022 348.9370 14.12325079283208 1 26536U 00055A 06080.93669443 .00000117 00000-0 88345-4 0 8002 2 26536 99.0587 46.5712 0010730 10.1224 350.0143 14.12324904283265 1 26536U 00055A 06081.50344973 .00000084 00000-0 70556-4 0 8002 2 26536 99.0588 47.1439 0010708 8.6344 351.5005 14.12324920283349 1 26536U 00055A 06081.92851603 -.00000030 00000-0 87360-5 0 8016 2 26536 99.0587 47.5738 0010786 7.5777 352.5525 14.12324461283403 1 26536U 00055A 06082.42442737 -.00000039 00000-0 38085-5 0 8015 2 26536 99.0589 48.0754 0010807 6.1596 353.9710 14.12324494283471 1 26536U 00055A 06082.84949363 -.00000021 00000-0 13207-4 0 8028 2 26536 99.0590 48.5051 0010828 4.9632 355.1645 14.12324571283532 1 26536U 00055A 06083.20371556 -.00000060 00000-0 -78667-5 0 8028 2 26536 99.0587 48.8630 0010802 4.0314 356.0931 14.12324343283584 1 26536U 00055A 06083.20371556 -.00000060 00000-0 -78667-5 0 8039 2 26536 99.0587 48.8630 0010802 4.0314 356.0931 14.12324343283584 1 26536U 00055A 06083.20371556 -.00000060 00000-0 -78667-5 0 8040 2 26536 99.0587 48.8630 0010802 4.0314 356.0931 14.12324343283584 1 26536U 00055A 06083.62878217 -.00000121 00000-0 -40841-4 0 8064 2 26536 99.0584 49.2921 0010738 2.9316 357.1903 14.12323965283643 1 26536U 00055A 06084.47891519 -.00000110 00000-0 -34842-4 0 8060 2 26536 99.0585 50.1513 0010729 0.5385 359.5801 14.12324040283763 1 26536U 00055A 06084.47891519 -.00000110 00000-0 -34842-4 0 8071 2 26536 99.0585 50.1513 0010729 0.5385 359.5801 14.12324040283763 1 26536U 00055A 06084.47891519 -.00000110 00000-0 -34842-4 0 8082 2 26536 99.0585 50.1513 0010729 0.5385 359.5801 14.12324040283763 1 26536U 00055A 06084.47891519 -.00000110 00000-0 -34842-4 0 8093 2 26536 99.0585 50.1513 0010729 0.5385 359.5801 14.12324040283763 1 26536U 00055A 06084.90398158 -.00000045 00000-0 66141-6 0 8110 2 26536 99.0583 50.5807 0010713 359.2421 0.8753 14.12324388283823 1 26536U 00055A 06085.82495831 -.00000045 00000-0 66141-6 0 8129 2 26536 99.0579 51.5110 0010721 356.5394 3.5715 14.12324482283951 1 26536U 00055A 06086.25002439 .00000158 00000-0 11055-3 0 8131 2 26536 99.0574 51.9406 0010621 355.2685 4.8442 14.12325664284018 1 26536U 00055A 06086.25002439 .00000158 00000-0 11055-3 0 8142 2 26536 99.0574 51.9406 0010621 355.2685 4.8442 14.12325664284018 1 26536U 00055A 06086.25002439 .00000158 00000-0 11055-3 0 8153 2 26536 99.0574 51.9406 0010621 355.2685 4.8442 14.12325664284018 1 26536U 00055A 06086.74593356 .00000248 00000-0 15961-3 0 8161 2 26536 99.0573 52.4414 0010633 354.0009 6.1048 14.12326342284080 1 26536U 00055A 06087.17099904 .00000341 00000-0 21007-3 0 8161 2 26536 99.0573 52.8707 0010545 352.6006 7.5036 14.12327074284144 1 26536U 00055A 06087.59606402 .00000409 00000-0 24661-3 0 8179 2 26536 99.0576 53.3005 0010517 351.6064 8.4940 14.12327724284209 1 26536U 00055A 06088.16281757 .00000370 00000-0 22589-3 0 8179 2 26536 99.0575 53.8733 0010450 349.9487 10.1467 14.12327978284289 1 26536U 00055A 06088.58788298 .00000306 00000-0 19084-3 0 8183 2 26536 99.0580 54.3034 0010450 348.7138 11.3783 14.12327951284347 1 26536U 00055A 06089.29632535 .00000206 00000-0 13681-3 0 8180 2 26536 99.0584 55.0192 0010475 346.8177 13.2696 14.12327932284447 1 26536U 00055A 06089.29632535 .00000206 00000-0 13681-3 0 8191 2 26536 99.0584 55.0192 0010475 346.8177 13.2696 14.12327932284447 1 26536U 00055A 06089.79223531 .00000102 00000-0 80427-4 0 8208 2 26536 99.0588 55.5206 0010462 345.3993 14.6846 14.12327535284517 1 26536U 00055A 06090.21730130 -.00000007 00000-0 20930-4 0 8214 2 26536 99.0588 55.9504 0010522 344.5088 15.5733 14.12327137284574 1 26536U 00055A 06090.71321167 -.00000007 00000-0 20930-4 0 8226 2 26536 99.0588 56.4514 0010522 343.1138 16.9681 14.12327175284649 1 26536U 00055A 06091.06743297 -.00000167 00000-0 -65704-4 0 8223 2 26536 99.0593 56.8100 0010572 342.4419 17.6340 14.12326314284698 1 26536U 00055A 06091.06743297 -.00000167 00000-0 -65704-4 0 8234 2 26536 99.0593 56.8100 0010572 342.4419 17.6340 14.12326314284698 1 26536U 00055A 06091.06743297 -.00000167 00000-0 -65704-4 0 8245 2 26536 99.0593 56.8100 0010572 342.4419 17.6340 14.12326314284698 1 26536U 00055A 06091.56334401 -.00000223 00000-0 -96401-4 0 8266 2 26536 99.0597 57.3118 0010538 341.0574 19.0190 14.12325833284768 1 26536U 00055A 06092.48432063 -.00000230 00000-0 -99762-4 0 8262 2 26536 99.0600 58.2428 0010536 338.5648 21.5091 14.12325592284892 1 26536U 00055A 06093.47614095 -.00000137 00000-0 -49485-4 0 8273 2 26536 99.0606 59.2454 0010443 335.6105 24.4590 14.12325820285038 1 26536U 00055A 06093.90120658 .00000008 00000-0 28968-4 0 8287 2 26536 99.0605 59.6750 0010455 334.2565 25.8124 14.12326579285094 1 26536U 00055A 06094.32627157 .00000008 00000-0 28968-4 0 8280 2 26536 99.0605 60.1046 0010455 333.0608 27.0019 14.12326624285159 1 26536U 00055A 06094.82218161 .00000260 00000-0 16600-3 0 8296 2 26536 99.0604 60.6059 0010360 331.5984 28.4686 14.12328088285221 1 26536U 00055A 06095.17640142 .00000260 00000-0 16600-3 0 8293 2 26536 99.0604 60.9639 0010360 330.6020 29.4567 14.12328304285274 1 26536U 00055A 06095.60146664 .00000326 00000-0 20183-3 0 8307 2 26536 99.0604 61.3936 0010163 328.9480 31.1116 14.12328904285333 1 26536U 00055A 06096.45159612 .00000326 00000-0 20183-3 0 8308 2 26536 99.0604 62.2527 0010163 326.5566 33.4963 14.12329535285457 1 26536U 00055A 06096.94750423 .00000394 00000-0 23898-3 0 8322 2 26536 99.0598 62.7539 0010071 324.5367 35.5133 14.12330409285524 1 26536U 00055A 06097.44341294 .00000291 00000-0 18298-3 0 8313 2 26536 99.0599 63.2551 0010037 322.8686 37.1777 14.12330319285591 1 26536U 00055A 06097.93932196 .00000217 00000-0 14254-3 0 8321 2 26536 99.0596 63.7569 0010012 321.5912 38.4525 14.12330238285666 1 26536U 00055A 06098.43523119 .00000088 00000-0 72748-4 0 8327 2 26536 99.0593 64.2580 0010049 320.0186 40.0222 14.12329816285730 1 26536U 00055A 06098.86029649 .00000003 00000-0 26666-4 0 8339 2 26536 99.0592 64.6875 0010016 318.8031 41.2360 14.12329428285799 1 26536U 00055A 06099.21451778 -.00000058 00000-0 -67513-5 0 8330 2 26536 99.0593 65.0455 0010007 317.8972 42.1420 14.12329193285844 1 26536U 00055A 06099.71042724 -.00000143 00000-0 -52851-4 0 8346 2 26536 99.0592 65.5467 0009982 316.2553 43.7820 14.12328785285914 1 26536U 00055A 06100.06464839 -.00000193 00000-0 -79908-4 0 8349 2 26536 99.0592 65.9045 0009990 315.4846 44.5512 14.12328527285961 1 26536U 00055A 06100.56055811 -.00000109 00000-0 -34185-4 0 8356 2 26536 99.0596 66.4061 0009875 313.8162 46.2216 14.12328814286032 1 26536U 00055A 06101.48153235 -.00000109 00000-0 -34185-4 0 8357 2 26536 99.0596 67.3367 0009875 311.2256 48.8063 14.12328698286169 1 26536U 00055A 06101.90659763 -.00000109 00000-0 -34185-4 0 8362 2 26536 99.0596 67.7662 0009875 310.0300 50.0004 14.12328644286226 1 26536U 00055A 06102.33166293 .00000020 00000-0 35884-4 0 8368 2 26536 99.0598 68.1962 0009819 308.4405 51.5936 14.12329421286281 1 26536U 00055A 06102.82757117 .00000020 00000-0 35884-4 0 8374 2 26536 99.0598 68.6972 0009819 307.0455 52.9817 14.12329486286359 1 26536U 00055A 06103.25263622 .00000113 00000-0 86265-4 0 8377 2 26536 99.0607 69.1273 0009805 305.7542 54.2746 14.12330105286410 1 26536U 00055A 06103.81938879 .00000256 00000-0 16379-3 0 8389 2 26536 99.0603 69.7001 0009789 304.2555 55.7713 14.12331028286493 1 26536U 00055A 06104.17360878 .00000321 00000-0 19930-3 0 8386 2 26536 99.0604 70.0581 0009757 302.8934 57.1319 14.12331598286548 1 26536U 00055A 06104.52782871 .00000351 00000-0 21525-3 0 8393 2 26536 99.0601 70.4163 0009774 302.0651 57.9570 14.12331968286595 1 26536U 00055A 06105.44880125 .00000351 00000-0 21525-3 0 8396 2 26536 99.0601 71.3469 0009774 299.4743 60.5452 14.12332697286729 1 26536U 00055A 06105.80302134 .00000280 00000-0 17661-3 0 8404 2 26536 99.0603 71.7055 0009843 298.4018 61.6147 14.12332558286771 1 26536U 00055A 06106.15724175 .00000257 00000-0 16461-3 0 8407 2 26536 99.0603 72.0639 0009839 297.5334 62.4829 14.12332660286825 1 26536U 00055A 06106.58230603 .00000155 00000-0 10904-3 0 8416 2 26536 99.0607 72.4938 0009862 296.3422 63.6710 14.12332290286883 1 26536U 00055A 06107.43243544 -.00000023 00000-0 12222-4 0 8410 2 26536 99.0605 73.3532 0009892 294.3515 65.6611 14.12331777287001 1 26536U 00055A 06107.43243544 -.00000023 00000-0 12222-4 0 8421 2 26536 99.0605 73.3532 0009892 294.3515 65.6611 14.12331777287001 1 26536U 00055A 06107.92834422 -.00000050 00000-0 -24602-5 0 8434 2 26536 99.0605 73.8547 0009879 293.1671 66.8448 14.12331654287079 1 26536U 00055A 06108.28256486 -.00000050 00000-0 -21447-5 0 8436 2 26536 99.0605 74.2126 0009872 292.1401 67.8725 14.12331679287122 1 26536U 00055A 06108.28256486 -.00000050 00000-0 -21447-5 0 8447 2 26536 99.0605 74.2126 0009872 292.1401 67.8725 14.12331679287122 1 26536U 00055A 06109.34522608 -.00000042 00000-0 21447-5 0 8458 2 26536 99.0614 75.2874 0009829 288.6429 71.3675 14.12331643287276 1 26536U 00055A 06109.34522608 -.00000042 00000-0 21447-5 0 8469 2 26536 99.0614 75.2874 0009829 288.6429 71.3675 14.12331643287276 1 26536U 00055A 06109.34522608 -.00000042 00000-0 21447-5 0 8470 2 26536 99.0614 75.2874 0009829 288.6429 71.3675 14.12331643287276 1 26536U 00055A 06109.34522608 -.00000042 00000-0 21447-5 0 8481 2 26536 99.0614 75.2874 0009829 288.6429 71.3675 14.12331643287276 1 26536U 00055A 06111.18717244 -.00000013 00000-0 18098-4 0 8494 2 26536 99.0623 77.1501 0009772 282.7133 77.2931 14.12331567287532 1 26536U 00055A 06111.68308142 .00000120 00000-0 90095-4 0 8509 2 26536 99.0618 77.6513 0009743 281.1765 78.8341 14.12332327287601 1 26536U 00055A 06112.46236471 .00000290 00000-0 18253-3 0 8504 2 26536 99.0619 78.4391 0009716 278.2418 81.7671 14.12333595287716 1 26536U 00055A 06112.88742831 .00000417 00000-0 25101-3 0 8514 2 26536 99.0618 78.8690 0009743 276.9767 83.0325 14.12334557287779 1 26536U 00055A 06113.31249141 .00000417 00000-0 25101-3 0 8519 2 26536 99.0618 79.2986 0009743 275.7811 84.2249 14.12334950287831 1 26536U 00055A 06113.73755499 .00000387 00000-0 23468-3 0 8524 2 26536 99.0616 79.7281 0009756 274.4047 85.5993 14.12335054287895 1 26536U 00055A 06114.51683845 .00000264 00000-0 16837-3 0 8522 2 26536 99.0615 80.5162 0009767 272.0522 87.9510 14.12335080288000 1 26536U 00055A 06114.51683845 .00000264 00000-0 16837-3 0 8533 2 26536 99.0615 80.5162 0009767 272.0522 87.9510 14.12335080288000 1 26536U 00055A 06114.94190245 .00000208 00000-0 13757-3 0 8544 2 26536 99.0615 80.9458 0009760 270.9979 89.0057 14.12335028288065 1 26536U 00055A 06115.36696641 .00000160 00000-0 11180-3 0 8547 2 26536 99.0617 81.3757 0009753 269.8631 90.1419 14.12335073288120 1 26536U 00055A 06115.79203010 .00000129 00000-0 95145-4 0 8558 2 26536 99.0616 81.8053 0009752 268.5059 91.4981 14.12334986288188 1 26536U 00055A 06116.21709404 .00000045 00000-0 49294-4 0 8555 2 26536 99.0616 82.2352 0009729 267.3188 92.6852 14.12334703288243 1 26536U 00055A 06116.64215815 -.00000021 00000-0 13355-4 0 8565 2 26536 99.0622 82.6653 0009732 265.9362 94.0682 14.12334368288301 1 26536U 00055A 06117.42144272 -.00000151 00000-0 -56883-4 0 8568 2 26536 99.0624 83.4535 0009678 263.7185 96.2876 14.12333695288412 1 26536U 00055A 06117.91735102 -.00000214 00000-0 -91136-4 0 8571 2 26536 99.0624 83.9550 0009670 262.3528 97.6536 14.12333323288485 1 26536U 00055A 06118.41325950 -.00000195 00000-0 -81095-4 0 8574 2 26536 99.0628 84.4565 0009656 260.8313 99.1778 14.12333335288556 1 26536U 00055A 06118.83832351 -.00000127 00000-0 -43910-4 0 8588 2 26536 99.0627 84.8863 0009659 259.8300 100.1791 14.12333544288614 1 26536U 00055A 06119.12169945 -.00000127 00000-0 -44012-4 0 8587 2 26536 99.0627 85.1729 0009655 258.8878 101.1208 14.12333487288658 1 26536U 00055A 06119.97182757 .00000047 00000-0 50503-4 0 8600 2 26536 99.0628 86.0327 0009667 256.1964 103.8164 14.12334350288776 1 26536U 00055A 06120.32604689 .00000139 00000-0 10014-3 0 8596 2 26536 99.0625 86.3907 0009672 254.6579 105.3554 14.12334979288824 1 26536U 00055A 06120.82195400 .00000258 00000-0 16483-3 0 8607 2 26536 99.0630 86.8924 0009665 253.6722 106.3404 14.12335758288893 1 26536U 00055A 06121.45954857 .00000312 00000-0 19444-3 0 8607 2 26536 99.0615 87.5373 0009698 251.6475 108.3642 14.12336456288983 1 26536U 00055A 06121.45954857 .00000312 00000-0 19444-3 0 8618 2 26536 99.0615 87.5373 0009698 251.6475 108.3642 14.12336456288983 1 26536U 00055A 06121.45954857 .00000312 00000-0 19444-3 0 8629 2 26536 99.0615 87.5373 0009698 251.6475 108.3642 14.12336456288983 1 26536U 00055A 06121.45954857 .00000312 00000-0 19444-3 0 8630 2 26536 99.0615 87.5373 0009698 251.6475 108.3642 14.12336456288983 1 26536U 00055A 06121.88461190 .00000337 00000-0 20764-3 0 8656 2 26536 99.0630 87.9674 0009709 250.2870 109.7258 14.12336833289040 1 26536U 00055A 06122.30967503 .00000370 00000-0 22547-3 0 8651 2 26536 99.0631 88.3971 0009738 248.7560 111.2581 14.12337305289105 1 26536U 00055A 06122.80558175 .00000301 00000-0 18833-3 0 8665 2 26536 99.0632 88.8988 0009746 247.2764 112.7359 14.12337287289173 1 26536U 00055A 06123.15980137 .00000274 00000-0 17360-3 0 8664 2 26536 99.0634 89.2573 0009738 246.0646 113.9499 14.12337384289229 1 26536U 00055A 06123.65570841 .00000164 00000-0 11373-3 0 8673 2 26536 99.0634 89.7590 0009767 244.6312 115.3831 14.12337114289293 1 26536U 00055A 06124.43499142 .00000077 00000-0 66445-4 0 8678 2 26536 99.0636 90.5474 0009734 242.6453 117.3718 14.12337005289402 1 26536U 00055A 06125.49765073 -.00000077 00000-0 -16999-4 0 8686 2 26536 99.0637 91.6220 0009719 239.2747 120.7467 14.12336247289557 1 26536U 00055A 06125.85187033 -.00000130 00000-0 -45452-4 0 8697 2 26536 99.0637 91.9802 0009713 238.3807 121.6410 14.12336009289607 1 26536U 00055A 06126.27693406 -.00000162 00000-0 -63087-4 0 8699 2 26536 99.0638 92.4101 0009681 237.1325 122.8908 14.12335804289665 1 26536U 00055A 06126.70199786 -.00000190 00000-0 -78011-4 0 8705 2 26536 99.0636 92.8397 0009710 235.4020 124.6232 14.12335529289721 1 26536U 00055A 06127.41043716 -.00000095 00000-0 -26859-4 0 8702 2 26536 99.0636 93.5558 0009732 233.1953 126.8344 14.12335992289825 1 26536U 00055A 06127.41043716 -.00000095 00000-0 -26859-4 0 8713 2 26536 99.0636 93.5558 0009732 233.1953 126.8344 14.12335992289825 1 26536U 00055A 06127.83550043 .00000019 00000-0 35039-4 0 8720 2 26536 99.0635 93.9857 0009730 232.1419 127.8892 14.12336528289885 1 26536U 00055A 06128.33140741 .00000105 00000-0 81749-4 0 8721 2 26536 99.0634 94.4870 0009770 230.5144 129.5191 14.12337099289959 1 26536U 00055A 06128.75647017 .00000157 00000-0 11019-3 0 8735 2 26536 99.0634 94.9166 0009754 229.1286 130.9040 14.12337422290013 1 26536U 00055A 06129.53575196 .00000293 00000-0 18396-3 0 8736 2 26536 99.0636 95.7048 0009834 226.3093 133.7275 14.12338538290129 1 26536U 00055A 06129.88997079 .00000329 00000-0 20362-3 0 8749 2 26536 99.0633 96.0629 0009837 225.3489 134.6890 14.12338991290177 1 26536U 00055A 06130.38587713 .00000349 00000-0 21407-3 0 8749 2 26536 99.0633 96.5643 0009901 223.7928 136.2477 14.12339545290243 1 26536U 00055A 06130.95262711 .00000346 00000-0 21282-3 0 8759 2 26536 99.0632 97.1375 0009892 221.9589 138.0822 14.12339841290325 1 26536U 00055A 06131.37768966 .00000312 00000-0 19399-3 0 8769 2 26536 99.0635 97.5677 0009908 220.8516 139.1919 14.12340096290382 1 26536U 00055A 06131.80275197 .00000317 00000-0 19693-3 0 8779 2 26536 99.0636 97.9976 0009919 219.6623 140.3815 14.12340309290449 1 26536U 00055A 06132.22781451 .00000255 00000-0 16325-3 0 8771 2 26536 99.0634 98.4278 0009907 218.3776 141.6678 14.12340309290508 1 26536U 00055A 06132.65287715 .00000150 00000-0 10602-3 0 8789 2 26536 99.0635 98.8578 0009907 217.2912 142.7539 14.12339875290566 1 26536U 00055A 06133.43215990 -.00000056 00000-0 -55615-5 0 8784 2 26536 99.0638 99.6464 0009912 214.8873 145.1648 14.12339083290678 1 26536U 00055A 06133.85722274 -.00000103 00000-0 -30794-4 0 8792 2 26536 99.0639 100.0762 0009909 213.6586 146.3946 14.12338824290734 1 26536U 00055A 06134.28228585 -.00000144 00000-0 -53046-4 0 8796 2 26536 99.0638 100.5062 0009879 212.4458 147.6096 14.12338575290791 1 26536U 00055A 06135.41578764 -.00000216 00000-0 -92467-4 0 8801 2 26536 99.0643 101.6532 0009941 209.0423 151.0202 14.12337984290954 1 26536U 00055A 06135.84085070 -.00000161 00000-0 -62268-4 0 8817 2 26536 99.0644 102.0831 0009934 207.9421 152.1222 14.12338064291011 1 26536U 00055A 06136.26591376 -.00000121 00000-0 -40637-4 0 8817 2 26536 99.0643 102.5129 0009984 206.5341 153.5333 14.12338195291075 1 26536U 00055A 06136.69097661 -.00000036 00000-0 54929-5 0 8827 2 26536 99.0646 102.9431 0009989 205.2122 154.8578 14.12338547291139 1 26536U 00055A 06137.39941391 .00000089 00000-0 72955-4 0 8828 2 26536 99.0645 103.6595 0010047 203.2063 156.8673 14.12339443291231 1 26536U 00055A 06137.82447630 .00000160 00000-0 11174-3 0 8839 2 26536 99.0644 104.0893 0010010 202.0830 157.9913 14.12339850291292 1 26536U 00055A 06138.17869509 .00000288 00000-0 18107-3 0 8835 2 26536 99.0644 104.4475 0010059 201.1479 158.9308 14.12340644291342 1 26536U 00055A 06138.67460055 .00000347 00000-0 21319-3 0 8849 2 26536 99.0645 104.9493 0010042 199.5323 160.5470 14.12341244291412 1 26536U 00055A 06139.45388063 .00000382 00000-0 23204-3 0 8848 2 26536 99.0646 105.7375 0010110 197.3813 162.7016 14.12342092291521 1 26536U 00055A 06139.87894250 .00000340 00000-0 20919-3 0 8859 2 26536 99.0642 106.1674 0010080 196.1092 163.9744 14.12342214291589 1 26536U 00055A 06140.30400471 .00000330 00000-0 20390-3 0 8859 2 26536 99.0642 106.5971 0010112 194.8400 165.2477 14.12342500291640 1 26536U 00055A 06140.72906649 .00000252 00000-0 16133-3 0 8867 2 26536 99.0647 107.0274 0010166 193.5468 166.5409 14.12342268291703 1 26536U 00055A 06141.93340988 -.00000024 00000-0 11870-4 0 8872 2 26536 99.0647 108.2458 0010065 190.1224 169.9720 14.12341380291876 1 26536U 00055A 06142.78353492 -.00000119 00000-0 -39677-4 0 8882 2 26536 99.0647 109.1055 0010136 187.6080 172.4925 14.12340833291990 1 26536U 00055A 06143.20859756 -.00000183 00000-0 -74537-4 0 8889 2 26536 99.0645 109.5355 0010144 186.3179 173.7857 14.12340487292050 1 26536U 00055A 06143.63366022 -.00000231 00000-0 -10039-3 0 8896 2 26536 99.0648 109.9656 0010223 184.9435 175.1628 14.12340072292117 1 26536U 00055A 06144.41294162 -.00000204 00000-0 -85605-4 0 8890 2 26536 99.0645 110.7537 0010319 182.6575 177.4561 14.12340122292227 1 26536U 00055A 06144.41294162 -.00000204 00000-0 -85605-4 0 8902 2 26536 99.0645 110.7537 0010319 182.6575 177.4561 14.12340122292227 1 26536U 00055A 06144.76716010 -.00000094 00000-0 -26140-4 0 8918 2 26536 99.0645 111.1119 0010299 181.7190 178.3965 14.12340536292270 1 26536U 00055A 06145.12137848 .00000006 00000-0 28041-4 0 8918 2 26536 99.0644 111.4703 0010367 180.8167 179.3022 14.12341072292328 1 26536U 00055A 06145.97150193 .00000174 00000-0 11946-3 0 8932 2 26536 99.0638 112.3299 0010414 178.3669 181.7560 14.12342139292445 1 26536U 00055A 06146.32571981 .00000244 00000-0 15715-3 0 8929 2 26536 99.0640 112.6882 0010483 177.3461 182.7792 14.12342708292499 1 26536U 00055A 06146.75078112 .00000270 00000-0 17118-3 0 8933 2 26536 99.0638 113.1181 0010438 176.0416 184.0824 14.12342942292558 1 26536U 00055A 06147.45921714 .00000293 00000-0 18388-3 0 8942 2 26536 99.0637 113.8353 0010534 174.1804 185.9496 14.12343600292650 1 26536U 00055A 06147.88427858 .00000326 00000-0 20181-3 0 8951 2 26536 99.0640 114.2654 0010517 172.9542 187.1787 14.12344097292714 1 26536U 00055A 06148.23849621 .00000334 00000-0 20622-3 0 8956 2 26536 99.0641 114.6236 0010505 171.8834 188.2507 14.12344391292768 1 26536U 00055A 06148.59271397 .00000283 00000-0 17821-3 0 8965 2 26536 99.0645 114.9823 0010499 170.9617 189.1731 14.12344326292811 1 26536U 00055A 06149.37199339 .00000200 00000-0 13325-3 0 8961 2 26536 99.0641 115.7708 0010479 168.6983 191.4418 14.12344424292925 1 26536U 00055A 06149.72621125 .00000155 00000-0 10918-3 0 8978 2 26536 99.0647 116.1291 0010460 167.7014 192.4392 14.12344224292973 1 26536U 00055A 06150.15127301 .00000015 00000-0 32826-4 0 8972 2 26536 99.0644 116.5593 0010421 166.2870 193.8550 14.12343661293033 1 26536U 00055A 06150.93055365 -.00000196 00000-0 -81335-4 0 8991 2 26536 99.0649 117.3475 0010450 164.0656 196.0833 14.12342668293143 1 26536U 00055A 06151.35561572 -.00000180 00000-0 -72795-4 0 8982 2 26536 99.0649 117.7775 0010494 162.7690 197.3855 14.12342751293209 1 26536U 00055A 06152.27658295 -.00000168 00000-0 -66271-4 0 8992 2 26536 99.0655 118.7091 0010524 160.2833 199.8756 14.12342473293336 1 26536U 00055A 06152.70164464 -.00000165 00000-0 -64858-4 0 9009 2 26536 99.0661 119.1393 0010603 159.0839 201.0767 14.12342308293394 1 26536U 00055A 06153.41008084 -.00000075 00000-0 -15893-4 0 9008 2 26536 99.0661 119.8559 0010679 157.1592 203.0076 14.12342758293498 1 26536U 00055A 06153.83514222 -.00000002 00000-0 23525-4 0 9011 2 26536 99.0664 120.2858 0010694 156.0598 204.1088 14.12343087293558 1 26536U 00055A 06154.61442096 .00000179 00000-0 12216-3 0 9015 2 26536 99.0666 121.0736 0010752 153.9358 206.2372 14.12344174293668 1 26536U 00055A 06155.39369918 .00000284 00000-0 17871-3 0 9022 2 26536 99.0666 121.8619 0010795 151.9645 208.2127 14.12345201293774 1 26536U 00055A 06155.81875980 .00000322 00000-0 19936-3 0 9038 2 26536 99.0667 122.2921 0010810 150.7267 209.4511 14.12345595293834 1 26536U 00055A 06156.17297720 .00000371 00000-0 22635-3 0 9032 2 26536 99.0666 122.6504 0010880 150.0487 210.1328 14.12346107293888 1 26536U 00055A 06156.59803751 .00000383 00000-0 23259-3 0 9042 2 26536 99.0664 123.0803 0010855 148.7336 211.4476 14.12346453293941 1 26536U 00055A 06157.44815867 .00000259 00000-0 16523-3 0 9046 2 26536 99.0665 123.9405 0010836 146.3409 213.8433 14.12346554294068 1 26536U 00055A 06157.87321960 .00000206 00000-0 13664-3 0 9055 2 26536 99.0659 124.3705 0010841 145.0455 215.1415 14.12346542294121 1 26536U 00055A 06158.29828043 .00000171 00000-0 11783-3 0 9057 2 26536 99.0658 124.8005 0010843 143.6880 216.5015 14.12346550294182 1 26536U 00055A 06158.72334125 .00000082 00000-0 69389-4 0 9066 2 26536 99.0659 125.2305 0010856 142.5299 217.6605 14.12346168294246 1 26536U 00055A 06159.50262022 -.00000094 00000-0 -26247-4 0 9060 2 26536 99.0657 126.0191 0010896 140.4196 219.7767 14.12345399294352 1 26536U 00055A 06159.92768124 -.00000201 00000-0 -84516-4 0 9074 2 26536 99.0657 126.4492 0010943 139.3336 220.8641 14.12344862294411 1 26536U 00055A 06160.28189905 -.00000200 00000-0 -83496-4 0 9074 2 26536 99.0656 126.8073 0010950 138.2490 221.9518 14.12344785294460 1 26536U 00055A 06160.70696015 -.00000194 00000-0 -80646-4 0 9083 2 26536 99.0657 127.2374 0010973 137.1564 223.0463 14.12344626294528 1 26536U 00055A 06161.48623854 -.00000105 00000-0 -32172-4 0 9083 2 26536 99.0658 128.0257 0011038 135.0471 225.1611 14.12345003294635 1 26536U 00055A 06161.84045573 -.00000063 00000-0 -92419-5 0 9094 2 26536 99.0657 128.3841 0011020 134.0490 226.1596 14.12345148294685 1 26536U 00055A 06162.26551657 -.00000061 00000-0 -85710-5 0 9090 2 26536 99.0655 128.8138 0011037 132.8404 227.3698 14.12345167294740 1 26536U 00055A 06162.69057746 .00000029 00000-0 40745-4 0 9109 2 26536 99.0652 129.2435 0011075 131.6183 228.5949 14.12345576294808 1 26536U 00055A 06163.46985462 .00000194 00000-0 12990-3 0 9103 2 26536 99.0654 130.0323 0011138 129.7142 230.5034 14.12346722294913 1 26536U 00055A 06163.89491459 .00000263 00000-0 16743-3 0 9116 2 26536 99.0652 130.4624 0011092 128.4379 231.7801 14.12347287294974 1 26536U 00055A 06164.24913122 .00000323 00000-0 20017-3 0 9118 2 26536 99.0653 130.8205 0011107 127.4458 232.7738 14.12347829295027 1 26536U 00055A 06164.67419102 .00000318 00000-0 19733-3 0 9122 2 26536 99.0655 131.2508 0011111 126.2012 234.0173 14.12347971295080 1 26536U 00055A 06165.45346768 .00000291 00000-0 18292-3 0 9125 2 26536 99.0657 132.0396 0011125 124.2400 235.9820 14.12348416295196 1 26536U 00055A 06165.80768436 .00000286 00000-0 18001-3 0 9137 2 26536 99.0658 132.3978 0011148 123.2693 236.9536 14.12348530295242 1 26536U 00055A 06166.16190108 .00000230 00000-0 14953-3 0 9133 2 26536 99.0657 132.7565 0011159 122.1488 238.0757 14.12348507295296 1 26536U 00055A 06167.36623817 .00000052 00000-0 53276-4 0 9149 2 26536 99.0661 133.9754 0011176 118.9036 241.3263 14.12348141295467 1 26536U 00055A 06167.79129797 -.00000025 00000-0 11293-4 0 9159 2 26536 99.0664 134.4054 0011195 117.7475 242.4802 14.12347660295527 1 26536U 00055A 06168.49973234 -.00000118 00000-0 -38970-4 0 9155 2 26536 99.0666 135.1223 0011243 115.8514 244.3816 14.12347178295623 1 26536U 00055A 06168.49973234 -.00000118 00000-0 -38970-4 0 9166 2 26536 99.0666 135.1223 0011243 115.8514 244.3816 14.12347178295623 1 26536U 00055A 06168.92479259 -.00000171 00000-0 -68198-4 0 9177 2 26536 99.0666 135.5522 0011253 114.6638 245.5697 14.12346869295686 1 26536U 00055A 06169.27900966 -.00000196 00000-0 -81561-4 0 9176 2 26536 99.0665 135.9104 0011274 113.8193 246.4162 14.12346699295739 1 26536U 00055A 06169.27900966 -.00000196 00000-0 -81561-4 0 9187 2 26536 99.0665 135.9104 0011274 113.8193 246.4162 14.12346699295739 1 26536U 00055A 06169.27900966 -.00000196 00000-0 -81561-4 0 9198 2 26536 99.0665 135.9104 0011274 113.8193 246.4162 14.12346699295739 1 26536U 00055A 06169.70406997 -.00000216 00000-0 -92156-4 0 9220 2 26536 99.0668 136.3405 0011337 112.8147 247.4214 14.12346383295794 1 26536U 00055A 06170.41250370 -.00000140 00000-0 -51018-4 0 9220 2 26536 99.0667 137.0572 0011347 111.0192 249.2211 14.12346777295893 1 26536U 00055A 06170.41250370 -.00000140 00000-0 -51018-4 0 9231 2 26536 99.0667 137.0572 0011347 111.0192 249.2211 14.12346777295893 1 26536U 00055A 06170.41250370 -.00000140 00000-0 -51018-4 0 9242 2 26536 99.0667 137.0572 0011347 111.0192 249.2211 14.12346777295893 1 26536U 00055A 06170.83756364 .00000006 00000-0 28219-4 0 9260 2 26536 99.0666 137.4870 0011338 109.8706 250.3716 14.12347435295955 1 26536U 00055A 06171.19177981 .00000056 00000-0 55012-4 0 9268 2 26536 99.0664 137.8454 0011356 109.2920 250.9498 14.12347735296000 1 26536U 00055A 06171.54599609 .00000127 00000-0 93728-4 0 9278 2 26536 99.0663 138.2034 0011426 108.5021 251.7403 14.12348132296052 1 26536U 00055A 06172.46695770 .00000292 00000-0 18331-3 0 9275 2 26536 99.0655 139.1349 0011396 106.2120 254.0315 14.12349546296185 1 26536U 00055A 06172.82117365 .00000366 00000-0 22331-3 0 9282 2 26536 99.0655 139.4931 0011424 105.3432 254.9015 14.12350148296235 1 26536U 00055A 06173.17538937 .00000396 00000-0 23984-3 0 9281 2 26536 99.0654 139.8516 0011403 104.5102 255.7342 14.12350552296285 1 26536U 00055A 06173.60044827 .00000358 00000-0 21904-3 0 9298 2 26536 99.0655 140.2818 0011397 103.3667 256.8761 14.12350633296346 1 26536U 00055A 06174.37972351 .00000277 00000-0 17516-3 0 9299 2 26536 99.0652 141.0705 0011375 101.1405 259.1047 14.12350903296454 1 26536U 00055A 06174.80478239 .00000295 00000-0 18469-3 0 9303 2 26536 99.0649 141.5002 0011358 99.9681 260.2771 14.12351204296515 1 26536U 00055A 06175.51321459 .00000078 00000-0 67257-4 0 9302 2 26536 99.0649 142.2174 0011376 97.8977 262.3470 14.12350404296619 1 26536U 00055A 06175.93827396 -.00000063 00000-0 -92252-5 0 9310 2 26536 99.0649 142.6475 0011421 96.6425 263.6012 14.12349766296674 1 26536U 00055A 06176.64670659 -.00000119 00000-0 -39630-4 0 9320 2 26536 99.0652 143.3645 0011434 94.8283 265.4171 14.12349353296770 1 26536U 00055A 06177.85104221 -.00000206 00000-0 -86861-4 0 9337 2 26536 99.0656 144.5829 0011432 91.5755 268.6731 14.12348750296943 1 26536U 00055A 06178.20525839 -.00000221 00000-0 -95225-4 0 9330 2 26536 99.0654 144.9412 0011437 90.6505 269.5975 14.12348568296993 1 26536U 00055A 06178.91369078 -.00000071 00000-0 -13625-4 0 9358 2 26536 99.0657 145.6579 0011460 88.9778 271.2730 14.12349159297094 1 26536U 00055A 06179.33874966 -.00000011 00000-0 18587-4 0 9346 2 26536 99.0656 146.0877 0011468 88.0773 272.1731 14.12349503297154 1 26536U 00055A 06179.76380851 .00000009 00000-0 29652-4 0 9350 2 26536 99.0661 146.5177 0011485 86.9469 273.3006 14.12349481297216 1 26536U 00055A 06180.11802476 .00000057 00000-0 55958-4 0 9354 2 26536 99.0659 146.8761 0011468 86.1629 274.0875 14.12349848297260 1 26536U 00055A 06180.11802476 .00000057 00000-0 55958-4 0 9365 2 26536 99.0659 146.8761 0011468 86.1629 274.0875 14.12349848297260 1 26536U 00055A 06180.54308342 .00000128 00000-0 94228-4 0 9378 2 26536 99.0664 147.3065 0011490 85.1104 275.1399 14.12350348297328 1 26536U 00055A 06181.32235686 .00000273 00000-0 17281-3 0 9379 2 26536 99.0664 148.0948 0011452 83.1056 277.1424 14.12351504297436 1 26536U 00055A 06181.74741528 .00000322 00000-0 19948-3 0 9380 2 26536 99.0667 148.5252 0011448 82.0200 278.2272 14.12351928297495 1 26536U 00055A 06182.45584557 .00000323 00000-0 19993-3 0 9387 2 26536 99.0667 149.2422 0011419 80.2700 279.9757 14.12352481297597 1 26536U 00055A 06182.88090386 .00000313 00000-0 19486-3 0 9393 2 26536 99.0667 149.6721 0011457 79.0178 281.2273 14.12352735297658 1 26536U 00055A 06183.23511915 .00000271 00000-0 17196-3 0 9398 2 26536 99.0665 150.0305 0011449 78.0547 282.1894 14.12352720297709 1 26536U 00055A 06183.66017754 .00000182 00000-0 12327-3 0 9401 2 26536 99.0669 150.4609 0011443 76.8621 283.3804 14.12352448297764 1 26536U 00055A 06184.43945182 .00000008 00000-0 29071-4 0 9404 2 26536 99.0670 151.2497 0011463 74.6995 285.5437 14.12351924297878 1 26536U 00055A 06184.86451031 -.00000054 00000-0 -43063-5 0 9418 2 26536 99.0673 151.6797 0011467 73.6045 286.6369 14.12351589297937 1 26536U 00055A 06185.21872605 -.00000085 00000-0 -21308-4 0 9413 2 26536 99.0673 152.0382 0011467 72.6704 287.5716 14.12351428297986 1 26536U 00055A 06185.21872605 -.00000085 00000-0 -21308-4 0 9424 2 26536 99.0673 152.0382 0011467 72.6704 287.5716 14.12351428297986 1 26536U 00055A 06185.21872605 -.00000085 00000-0 -21308-4 0 9435 2 26536 99.0673 152.0382 0011467 72.6704 287.5716 14.12351428297986 1 26536U 00055A 06185.64378466 -.00000106 00000-0 -32633-4 0 9457 2 26536 99.0673 152.4683 0011458 71.7623 288.4791 14.12351273298043 1 26536U 00055A 06186.42305894 -.00000148 00000-0 -55657-4 0 9456 2 26536 99.0675 153.2567 0011471 69.8217 290.4197 14.12350998298155 1 26536U 00055A 06186.91896049 -.00000155 00000-0 -59090-4 0 9461 2 26536 99.0675 153.7584 0011479 68.2851 291.9536 14.12350849298220 1 26536U 00055A 06187.27317614 -.00000122 00000-0 -41303-4 0 9469 2 26536 99.0675 154.1166 0011474 67.3832 292.8562 14.12350969298272 1 26536U 00055A 06187.27317614 -.00000122 00000-0 -41303-4 0 9470 2 26536 99.0675 154.1166 0011474 67.3832 292.8562 14.12350969298272 1 26536U 00055A 06187.69823456 -.00000073 00000-0 -14560-4 0 9483 2 26536 99.0678 154.5467 0011490 66.3024 293.9352 14.12351064298336 1 26536U 00055A 06188.47750794 .00000006 00000-0 27869-4 0 9484 2 26536 99.0674 155.3352 0011427 64.6854 295.5509 14.12351565298446 1 26536U 00055A 06188.83172309 .00000106 00000-0 82377-4 0 9491 2 26536 99.0672 155.6933 0011420 63.4711 296.7657 14.12352223298498 1 26536U 00055A 06189.25678072 .00000194 00000-0 13027-3 0 9498 2 26536 99.0672 156.1233 0011386 62.5802 297.6552 14.12352845298550 1 26536U 00055A 06189.68183818 .00000278 00000-0 17548-3 0 9501 2 26536 99.0674 156.5537 0011391 61.3376 298.8950 14.12353419298612 1 26536U 00055A 06190.46111004 .00000379 00000-0 23048-3 0 9501 2 26536 99.0673 157.3426 0011348 59.5649 300.6655 14.12354529298720 1 26536U 00055A 06190.46111004 .00000379 00000-0 23048-3 0 9512 2 26536 99.0673 157.3426 0011348 59.5649 300.6655 14.12354529298720 1 26536U 00055A 06190.81532429 .00000378 00000-0 22998-3 0 9522 2 26536 99.0671 157.7009 0011348 58.4304 301.7964 14.12354737298776 1 26536U 00055A 06191.16953896 .00000357 00000-0 21826-3 0 9522 2 26536 99.0671 158.0595 0011342 57.6431 302.5834 14.12354914298824 1 26536U 00055A 06191.94881108 .00000246 00000-0 15829-3 0 9549 2 26536 99.0670 158.8483 0011340 55.5864 304.6374 14.12354915298937 1 26536U 00055A 06192.30302555 .00000220 00000-0 14393-3 0 9530 2 26536 99.0671 159.2067 0011349 54.6268 305.5958 14.12355018298986 1 26536U 00055A 06192.72808287 .00000123 00000-0 91424-4 0 9543 2 26536 99.0676 159.6371 0011343 53.2348 306.9834 14.12354621299046 1 26536U 00055A 06193.50735616 -.00000051 00000-0 -26727-5 0 9542 2 26536 99.0674 160.4259 0011383 51.0685 309.1490 14.12353810299157 1 26536U 00055A 06193.86157102 -.00000131 00000-0 -46466-4 0 9550 2 26536 99.0676 160.7844 0011372 50.0759 310.1394 14.12353399299204 1 26536U 00055A 06194.21578611 -.00000197 00000-0 -81789-4 0 9551 2 26536 99.0678 161.1428 0011401 49.1622 311.0523 14.12353038299259 1 26536U 00055A 06194.64084421 -.00000235 00000-0 -10283-3 0 9563 2 26536 99.0680 161.5731 0011380 48.1153 312.0978 14.12352644299311 1 26536U 00055A 06195.42011719 -.00000220 00000-0 -94626-4 0 9568 2 26536 99.0681 162.3614 0011390 45.8613 314.3502 14.12352598299425 1 26536U 00055A 06195.84517497 -.00000163 00000-0 -63635-4 0 9571 2 26536 99.0683 162.7914 0011383 44.6881 315.5214 14.12352708299482 1 26536U 00055A 06196.12854675 -.00000113 00000-0 -36382-4 0 9579 2 26536 99.0683 163.0782 0011353 43.9789 316.2297 14.12352893299524 1 26536U 00055A 06196.97866187 .00000032 00000-0 42237-4 0 9599 2 26536 99.0684 163.9384 0011313 41.7544 318.4512 14.12353591299646 1 26536U 00055A 06197.33287608 .00000112 00000-0 85835-4 0 9584 2 26536 99.0683 164.2965 0011266 41.1050 319.0995 14.12354137299691 1 26536U 00055A 06197.75793299 .00000169 00000-0 11646-3 0 9599 2 26536 99.0683 164.7267 0011280 39.9897 320.2107 14.12354516299758 1 26536U 00055A 06198.46636101 .00000333 00000-0 20571-3 0 9596 2 26536 99.0686 165.4435 0011206 38.3113 321.8872 14.12355818299851 1 26536U 00055A 06198.89141751 .00000364 00000-0 22236-3 0 9601 2 26536 99.0681 165.8736 0011224 37.1899 323.0041 14.12356224299913 1 26536U 00055A 06199.24563160 .00000404 00000-0 24412-3 0 9606 2 26536 99.0681 166.2319 0011179 36.3445 323.8494 14.12356707299963 1 26536U 00055A 06199.74153076 .00000392 00000-0 23740-3 0 9612 2 26536 99.0677 166.7335 0011170 35.0891 325.1003 14.12357010300033 1 26536U 00055A 06200.52080171 .00000219 00000-0 14357-3 0 9618 2 26536 99.0678 167.5225 0011130 33.1223 327.0630 14.12356659300142 1 26536U 00055A 06200.52080171 .00000219 00000-0 14357-3 0 9629 2 26536 99.0678 167.5225 0011130 33.1223 327.0630 14.12356659300142 1 26536U 00055A 06200.94585860 .00000109 00000-0 83788-4 0 9634 2 26536 99.0677 167.9529 0011147 31.9997 328.1826 14.12356339300205 1 26536U 00055A 06201.22923021 .00000059 00000-0 56926-4 0 9639 2 26536 99.0677 168.2396 0011157 31.2340 328.9482 14.12356187300248 1 26536U 00055A 06201.65428719 -.00000024 00000-0 12067-4 0 9642 2 26536 99.0680 168.6696 0011133 30.1824 329.9964 14.12355746300301 1 26536U 00055A 06202.43355870 -.00000122 00000-0 -41477-4 0 9643 2 26536 99.0682 169.4585 0011142 27.9475 332.2285 14.12355342300412 1 26536U 00055A 06202.78777304 -.00000136 00000-0 -48917-4 0 9653 2 26536 99.0682 169.8168 0011097 27.0768 333.0976 14.12355173300461 1 26536U 00055A 06203.21283020 -.00000163 00000-0 -63642-4 0 9651 2 26536 99.0678 170.2469 0011128 25.8197 334.3524 14.12355007300529 1 26536U 00055A 06203.63788742 -.00000149 00000-0 -56254-4 0 9664 2 26536 99.0683 170.6774 0011071 24.7127 335.4576 14.12354914300587 1 26536U 00055A 06204.41715870 -.00000157 00000-0 -60336-4 0 9668 2 26536 99.0686 171.4661 0011046 22.5455 337.6207 14.12354818300696 1 26536U 00055A 06204.84221574 -.00000117 00000-0 -38373-4 0 9671 2 26536 99.0691 171.8963 0011012 21.3581 338.8061 14.12354946300751 1 26536U 00055A 06205.19642976 -.00000039 00000-0 36278-5 0 9678 2 26536 99.0690 172.2545 0010991 20.3219 339.8405 14.12355296300801 1 26536U 00055A 06205.62148642 .00000031 00000-0 41480-4 0 9689 2 26536 99.0688 172.6847 0011011 19.1647 340.9947 14.12355645300860 1 26536U 00055A 06206.40075647 .00000164 00000-0 11357-3 0 9686 2 26536 99.0687 173.4734 0010920 16.9541 343.2018 14.12356704300973 1 26536U 00055A 06206.82581256 .00000267 00000-0 16992-3 0 9695 2 26536 99.0685 173.9035 0010931 15.7948 344.3572 14.12357333301034 1 26536U 00055A 06207.18002600 .00000330 00000-0 20365-3 0 9696 2 26536 99.0687 174.2620 0010885 14.8107 345.3401 14.12357904301086 1 26536U 00055A 06207.95929528 .00000336 00000-0 20701-3 0 9711 2 26536 99.0686 175.0510 0010883 12.7556 347.3888 14.12358467301193 1 26536U 00055A 06208.31350865 .00000370 00000-0 22555-3 0 9700 2 26536 99.0688 175.4095 0010850 11.8166 348.3267 14.12358916301245 1 26536U 00055A 06208.31350865 .00000370 00000-0 22555-3 0 9711 2 26536 99.0688 175.4095 0010850 11.8166 348.3267 14.12358916301245 1 26536U 00055A 06208.73856433 .00000273 00000-0 17300-3 0 9724 2 26536 99.0686 175.8396 0010844 10.5287 349.6080 14.12358653301306 1 26536U 00055A 06209.51783435 .00000166 00000-0 11503-3 0 9722 2 26536 99.0686 176.6286 0010862 8.3054 351.8287 14.12358576301410 1 26536U 00055A 06209.51783435 .00000166 00000-0 11503-3 0 9733 2 26536 99.0686 176.6286 0010862 8.3054 351.8287 14.12358576301410 1 26536U 00055A 06209.51783435 .00000166 00000-0 11503-3 0 9744 2 26536 99.0686 176.6286 0010862 8.3054 351.8287 14.12358576301410 1 26536U 00055A 06209.51783435 .00000166 00000-0 11503-3 0 9755 2 26536 99.0686 176.6286 0010862 8.3054 351.8287 14.12358576301410 1 26536U 00055A 06209.87204784 .00000079 00000-0 67586-4 0 9766 2 26536 99.0684 176.9871 0010871 7.4497 352.6810 14.12358243301469 1 26536U 00055A 06210.22626173 .00000021 00000-0 36118-4 0 9761 2 26536 99.0687 177.3456 0010857 6.5412 353.5889 14.12358040301514 1 26536U 00055A 06210.65131809 -.00000141 00000-0 -51758-4 0 9778 2 26536 99.0692 177.7760 0010826 5.3693 354.7555 14.12357143301578 1 26536U 00055A 06211.43058920 -.00000221 00000-0 -94806-4 0 9777 2 26536 99.0691 178.5645 0010789 3.2613 356.8633 14.12356688301680 1 26536U 00055A 06211.85564570 -.00000199 00000-0 -82914-4 0 9788 2 26536 99.0698 178.9948 0010823 2.1056 358.0156 14.12356572301748 1 26536U 00055A 06212.20985962 -.00000238 00000-0 -10404-3 0 9799 2 26536 99.0689 179.3530 0010777 1.0147 359.1048 14.12356373301793 1 26536U 00055A 06212.70575903 -.00000160 00000-0 -61869-4 0 9802 2 26536 99.0691 179.8547 0010757 359.6511 0.4664 14.12356544301862 1 26536U 00055A 06213.41418605 -.00000058 00000-0 -65953-5 0 9801 2 26536 99.0691 180.5715 0010696 357.7032 2.4107 14.12357083301961 1 26536U 00055A 06213.83924215 .00000040 00000-0 46838-4 0 9816 2 26536 99.0691 181.0016 0010688 356.6040 3.5068 14.12357515302025 1 26536U 00055A 06214.26429825 .00000111 00000-0 84865-4 0 9812 2 26536 99.0692 181.4315 0010646 355.3758 4.7334 14.12357984302083 1 26536U 00055A 06214.68935402 .00000187 00000-0 12618-3 0 9821 2 26536 99.0694 181.8616 0010617 354.5070 5.5988 14.12358433302140 1 26536U 00055A 06215.46862273 .00000235 00000-0 15241-3 0 9822 2 26536 99.0694 182.6505 0010560 352.1505 7.9504 14.12359189302251 1 26536U 00055A 06215.89367844 .00000295 00000-0 18498-3 0 9837 2 26536 99.0690 183.0808 0010571 350.9467 9.1521 14.12359735302310 1 26536U 00055A 06216.67294670 .00000350 00000-0 21493-3 0 9831 2 26536 99.0695 183.8696 0010536 348.9060 11.1874 14.12360478302427 1 26536U 00055A 06217.45221506 .00000288 00000-0 18124-3 0 9844 2 26536 99.0694 184.6586 0010516 346.7179 13.3711 14.12360785302535 1 26536U 00055A 06217.87727044 .00000222 00000-0 14546-3 0 9851 2 26536 99.0692 185.0889 0010524 345.6780 14.4071 14.12360697302598 1 26536U 00055A 06218.23148365 .00000163 00000-0 11325-3 0 9851 2 26536 99.0692 185.4475 0010537 344.7639 15.3198 14.12360567302642 1 26536U 00055A 06218.72738194 .00000034 00000-0 43597-4 0 9865 2 26536 99.0696 185.9495 0010540 343.1626 16.9161 14.12359970302717 1 26536U 00055A 06219.43580898 -.00000112 00000-0 -36086-4 0 9864 2 26536 99.0695 186.6668 0010568 341.2898 18.7878 14.12359400302810 1 26536U 00055A 06219.79002224 -.00000140 00000-0 -51158-4 0 9874 2 26536 99.0697 187.0252 0010522 340.1459 19.9295 14.12359142302861 1 26536U 00055A 06220.21507825 -.00000212 00000-0 -90092-4 0 9870 2 26536 99.0694 187.4554 0010554 339.0822 20.9907 14.12358781302920 1 26536U 00055A 06220.64013446 -.00000180 00000-0 -72775-4 0 9881 2 26536 99.0696 187.8860 0010468 337.8469 22.2256 14.12358756302983 1 26536U 00055A 06221.41940339 -.00000204 00000-0 -85505-4 0 9889 2 26536 99.0697 188.6750 0010409 335.4022 24.6651 14.12358538303091 1 26536U 00055A 06221.77361682 -.00000136 00000-0 -48855-4 0 9898 2 26536 99.0701 189.0334 0010434 334.4838 25.5822 14.12358702303141 1 26536U 00055A 06222.12783009 -.00000061 00000-0 -80614-5 0 9896 2 26536 99.0701 189.3919 0010422 333.3527 26.7131 14.12359072303195 1 26536U 00055A 06222.90709845 .00000083 00000-0 69788-4 0 9911 2 26536 99.0703 190.1806 0010366 330.9284 29.1343 14.12359970303304 1 26536U 00055A 06223.26131083 .00000140 00000-0 10109-3 0 9909 2 26536 99.0703 190.5391 0010315 329.7076 30.3514 14.12360347303355 1 26536U 00055A 06223.68636605 .00000228 00000-0 14842-3 0 9911 2 26536 99.0700 190.9692 0010291 328.6711 31.3854 14.12360898303413 1 26536U 00055A 06224.39479100 .00000319 00000-0 19796-3 0 9919 2 26536 99.0700 191.6861 0010262 326.4268 33.6267 14.12361904303513 1 26536U 00055A 06224.81984577 .00000338 00000-0 20812-3 0 9928 2 26536 99.0702 192.1164 0010247 325.4272 34.6220 14.12362190303578 1 26536U 00055A 06225.17405850 .00000337 00000-0 20786-3 0 9929 2 26536 99.0704 192.4752 0010209 324.1982 35.8504 14.12362400303626 1 26536U 00055A 06225.95332616 .00000181 00000-0 12301-3 0 9947 2 26536 99.0708 193.2642 0010246 322.2248 37.8184 14.12362158303730 1 26536U 00055A 06226.30753906 .00000185 00000-0 12514-3 0 9935 2 26536 99.0709 193.6226 0010249 321.2682 38.7757 14.12362380303785 1 26536U 00055A 06226.73259395 .00000094 00000-0 76161-4 0 9944 2 26536 99.0712 194.0529 0010248 319.9619 40.0768 14.12361958303848 1 26536U 00055A 06227.51186252 .00000016 00000-0 33662-4 0 9945 2 26536 99.0709 194.8419 0010236 317.9706 42.0678 14.12361759303955 1 26536U 00055A 06227.51186252 .00000016 00000-0 33662-4 0 9956 2 26536 99.0709 194.8419 0010236 317.9706 42.0678 14.12361759303955 1 26536U 00055A 06227.51186252 .00000016 00000-0 33662-4 0 9967 2 26536 99.0709 194.8419 0010236 317.9706 42.0678 14.12361759303955 1 26536U 00055A 06227.51186252 .00000016 00000-0 33662-4 0 9978 2 26536 99.0709 194.8419 0010236 317.9706 42.0678 14.12361759303955 1 26536U 00055A 06227.51186252 .00000016 00000-0 33662-4 0 9989 2 26536 99.0709 194.8419 0010236 317.9706 42.0678 14.12361759303955 1 26536U 00055A 06227.93691773 -.00000102 00000-0 -30546-4 0 9991 2 26536 99.0710 195.2723 0010245 316.8794 43.1550 14.12361239304017 1 26536U 00055A 06228.29113100 -.00000097 00000-0 -27948-4 0 9999 2 26536 99.0709 195.6306 0010228 315.8573 44.1785 14.12361252304062 1 26536U 00055A 06228.78702886 -.00000150 00000-0 -56451-4 0 02 2 26536 99.0714 196.1329 0010207 314.3548 45.6773 14.12360856304132 1 26536U 00055A 06228.78702886 -.00000150 00000-0 -56451-4 0 13 2 26536 99.0714 196.1329 0010207 314.3548 45.6773 14.12360856304132 1 26536U 00055A 06229.49545495 -.00000202 00000-0 -84446-4 0 27 2 26536 99.0715 196.8501 0010111 312.0110 48.0201 14.12360494304238 1 26536U 00055A 06230.34556573 -.00000103 00000-0 -31172-4 0 31 2 26536 99.0715 197.7106 0010086 309.5178 50.5112 14.12360886304352 1 26536U 00055A 06230.77062103 -.00000079 00000-0 -17749-4 0 46 2 26536 99.0716 198.1409 0010100 308.3670 51.6588 14.12360873304417 1 26536U 00055A 06231.47904655 .00000031 00000-0 41772-4 0 40 2 26536 99.0713 198.8578 0010028 305.9755 54.0507 14.12361550304516 1 26536U 00055A 06231.90410145 .00000150 00000-0 10636-3 0 51 2 26536 99.0709 199.2879 0010057 304.8763 55.1488 14.12362278304573 1 26536U 00055A 06232.25831354 .00000240 00000-0 15513-3 0 58 2 26536 99.0710 199.6464 0010019 303.4953 56.5282 14.12362858304620 1 26536U 00055A 06232.68336803 .00000285 00000-0 17953-3 0 64 2 26536 99.0713 200.0767 0009981 302.3823 57.6385 14.12363299304688 1 26536U 00055A 06233.39179200 .00000354 00000-0 21674-3 0 61 2 26536 99.0711 200.7942 0009979 299.9068 60.1119 14.12364252304782 1 26536U 00055A 06233.81684636 .00000380 00000-0 23123-3 0 73 2 26536 99.0711 201.2243 0009940 298.8687 61.1474 14.12364613304848 1 26536U 00055A 06234.52527073 .00000328 00000-0 20284-3 0 70 2 26536 99.0714 201.9423 0009937 296.7267 63.2882 14.12364864304940 1 26536U 00055A 06234.87948280 .00000246 00000-0 15827-3 0 82 2 26536 99.0714 202.3010 0009920 295.6865 64.3268 14.12364728304995 1 26536U 00055A 06235.37537989 .00000143 00000-0 10257-3 0 86 2 26536 99.0713 202.8030 0009926 294.3387 65.6726 14.12364485305064 1 26536U 00055A 06235.80043481 .00000055 00000-0 54947-4 0 91 2 26536 99.0715 203.2334 0009899 292.9290 67.0812 14.12364093305128 1 26536U 00055A 06236.15464749 -.00000030 00000-0 87147-5 0 97 2 26536 99.0713 203.5923 0009880 292.1198 67.8904 14.12363740305175 1 26536U 00055A 06236.65054512 -.00000103 00000-0 -30764-4 0 101 2 26536 99.0719 204.0947 0009879 290.6096 69.4001 14.12363336305246 1 26536U 00055A 06237.42981312 -.00000193 00000-0 -79880-4 0 105 2 26536 99.0719 204.8834 0009841 288.2122 71.7986 14.12362835305354 1 26536U 00055A 06237.85486806 -.00000179 00000-0 -72414-4 0 111 2 26536 99.0723 205.3138 0009862 287.1003 72.9090 14.12362775305410 1 26536U 00055A 06238.20908060 -.00000185 00000-0 -75424-4 0 113 2 26536 99.0723 205.6722 0009861 286.1024 73.9062 14.12362675305467 1 26536U 00055A 06238.91750577 -.00000107 00000-0 -33206-4 0 137 2 26536 99.0725 206.3896 0009863 283.9568 76.0525 14.12362919305569 1 26536U 00055A 06239.34256049 -.00000068 00000-0 -11858-4 0 124 2 26536 99.0727 206.8199 0009860 282.5742 77.4341 14.12363108305627 1 26536U 00055A 06239.69677274 .00000001 00000-0 25326-4 0 130 2 26536 99.0728 207.1786 0009832 281.6135 78.3937 14.12363374305670 1 26536U 00055A 06240.40519720 .00000127 00000-0 93790-4 0 131 2 26536 99.0728 207.8955 0009784 278.8331 81.1767 14.12364284305772 1 26536U 00055A 06240.83025119 .00000199 00000-0 13273-3 0 149 2 26536 99.0730 208.3260 0009779 277.8658 82.1406 14.12364736305835 1 26536U 00055A 06241.18446326 .00000274 00000-0 17372-3 0 143 2 26536 99.0729 208.6843 0009778 276.4944 83.5135 14.12365299305889 1 26536U 00055A 06241.18446326 .00000274 00000-0 17372-3 0 154 2 26536 99.0729 208.6843 0009778 276.4944 83.5135 14.12365299305889 1 26536U 00055A 06241.18446326 .00000274 00000-0 17372-3 0 165 2 26536 99.0729 208.6843 0009778 276.4944 83.5135 14.12365299305889 1 26536U 00055A 06241.60951723 .00000308 00000-0 19217-3 0 184 2 26536 99.0735 209.1152 0009754 275.4086 84.5971 14.12365692305948 1 26536U 00055A 06242.38878285 .00000372 00000-0 22673-3 0 182 2 26536 99.0734 209.9044 0009787 273.2556 86.7497 14.12366664306059 1 26536U 00055A 06242.38878285 .00000372 00000-0 22673-3 0 193 2 26536 99.0734 209.9044 0009787 273.2556 86.7497 14.12366664306059 1 26536U 00055A 06242.38878285 .00000372 00000-0 22673-3 0 205 2 26536 99.0734 209.9044 0009787 273.2556 86.7497 14.12366664306059 1 26536U 00055A 06242.81383681 .00000346 00000-0 21236-3 0 221 2 26536 99.0734 210.3348 0009759 271.9681 88.0353 14.12366757306111 1 26536U 00055A 06243.16804884 .00000266 00000-0 16939-3 0 228 2 26536 99.0735 210.6935 0009735 271.1094 88.8941 14.12366615306160 1 26536U 00055A 06243.16804884 .00000266 00000-0 16939-3 0 239 2 26536 99.0735 210.6935 0009735 271.1094 88.8941 14.12366615306160 1 26536U 00055A 06243.16804884 .00000266 00000-0 16939-3 0 240 2 26536 99.0735 210.6935 0009735 271.1094 88.8941 14.12366615306160 1 26536U 00055A 06243.66394559 .00000091 00000-0 74458-4 0 267 2 26536 99.0741 211.1959 0009730 269.1073 90.8947 14.12365890306239 1 26536U 00055A 06244.37237057 -.00000029 00000-0 92907-5 0 267 2 26536 99.0740 211.9135 0009699 267.2307 92.7758 14.12365544306333 1 26536U 00055A 06244.79742490 -.00000050 00000-0 -22146-5 0 279 2 26536 99.0741 212.3437 0009701 265.8790 94.1266 14.12365408306393 1 26536U 00055A 06245.57669162 -.00000159 00000-0 -61241-4 0 278 2 26536 99.0741 213.1332 0009717 263.5904 96.4145 14.12364808306502 1 26536U 00055A 06245.57669162 -.00000159 00000-0 -61241-4 0 289 2 26536 99.0741 213.1332 0009717 263.5904 96.4145 14.12364808306502 1 26536U 00055A 06246.42680104 -.00000130 00000-0 -45638-4 0 295 2 26536 99.0742 213.9940 0009721 260.8233 99.1851 14.12364909306625 1 26536U 00055A 06246.78101303 -.00000093 00000-0 -25513-4 0 303 2 26536 99.0745 214.3527 0009698 259.7934 100.2140 14.12364947306674 1 26536U 00055A 06247.20606775 -.00000085 00000-0 -21135-4 0 301 2 26536 99.0744 214.7831 0009715 258.4131 101.5960 14.12364996306735 1 26536U 00055A 06247.63112219 -.00000086 00000-0 -21917-4 0 313 2 26536 99.0748 215.2136 0009703 257.1248 102.8836 14.12364905306797 1 26536U 00055A 06248.41038857 .00000002 00000-0 26231-4 0 315 2 26536 99.0749 216.0030 0009752 254.7003 105.3113 14.12365583306908 1 26536U 00055A 06248.83544261 .00000110 00000-0 84605-4 0 322 2 26536 99.0748 216.4333 0009746 253.8489 106.1624 14.12366161306963 1 26536U 00055A 06249.18965426 .00000243 00000-0 15681-3 0 325 2 26536 99.0748 216.7919 0009802 252.4337 107.5801 14.12366960307012 1 26536U 00055A 06249.61470760 .00000262 00000-0 16714-3 0 335 2 26536 99.0748 217.2224 0009785 251.2045 108.8059 14.12367224307079 1 26536U 00055A 06250.39397280 .00000337 00000-0 20752-3 0 337 2 26536 99.0749 218.0121 0009823 248.9517 111.0619 14.12368280307188 1 26536U 00055A 06250.81902618 .00000325 00000-0 20143-3 0 343 2 26536 99.0751 218.4425 0009791 247.5017 112.5097 14.12368377307246 1 26536U 00055A 06251.17323798 .00000345 00000-0 21193-3 0 347 2 26536 99.0751 218.8015 0009802 246.2649 113.7498 14.12368714307293 1 26536U 00055A 06251.59829147 .00000259 00000-0 16536-3 0 352 2 26536 99.0752 219.2320 0009811 245.0914 114.9222 14.12368584307350 1 26536U 00055A 06252.37755705 .00000130 00000-0 95425-4 0 350 2 26536 99.0753 220.0214 0009796 242.8895 117.1271 14.12368421307469 1 26536U 00055A 06252.80261087 .00000076 00000-0 66013-4 0 364 2 26536 99.0753 220.4518 0009798 241.6938 118.3226 14.12368201307523 1 26536U 00055A 06253.51103478 -.00000050 00000-0 -21831-5 0 366 2 26536 99.0753 221.1694 0009780 239.6812 120.3385 14.12367624307623 1 26536U 00055A 06253.86524656 -.00000094 00000-0 -26267-4 0 375 2 26536 99.0754 221.5280 0009772 238.6453 121.3758 14.12367454307671 1 26536U 00055A 06254.29030070 -.00000166 00000-0 -64933-4 0 377 2 26536 99.0754 221.9584 0009759 237.3563 122.6651 14.12367039307737 1 26536U 00055A 06254.71535521 -.00000176 00000-0 -70468-4 0 387 2 26536 99.0761 222.3893 0009765 236.1193 123.9043 14.12366799307793 1 26536U 00055A 06255.49462149 -.00000195 00000-0 -81014-4 0 388 2 26536 99.0762 223.1784 0009780 233.7195 126.3083 14.12366611307901 1 26536U 00055A 06255.49462149 -.00000195 00000-0 -81014-4 0 399 2 26536 99.0762 223.1784 0009780 233.7195 126.3083 14.12366611307901 1 26536U 00055A 06255.84883325 -.00000106 00000-0 -32780-4 0 401 2 26536 99.0767 223.5371 0009767 232.9488 127.0803 14.12366936307956 1 26536U 00055A 06256.20304489 -.00000074 00000-0 -15304-4 0 408 2 26536 99.0767 223.8957 0009802 231.7265 128.3035 14.12367054308009 1 26536U 00055A 06256.62809889 -.00000040 00000-0 34828-5 0 414 2 26536 99.0771 224.3264 0009804 230.3629 129.6682 14.12367169308067 1 26536U 00055A 06257.40736431 .00000117 00000-0 88607-4 0 410 2 26536 99.0768 225.1152 0009820 228.1535 131.8827 14.12368201308173 1 26536U 00055A 06257.83241760 .00000173 00000-0 11902-3 0 429 2 26536 99.0768 225.5456 0009802 226.9831 133.0522 14.12368569308239 1 26536U 00055A 06258.25747130 .00000277 00000-0 17506-3 0 429 2 26536 99.0768 225.9759 0009862 225.5680 134.4714 14.12369291308299 1 26536U 00055A 06258.25747130 .00000277 00000-0 17506-3 0 430 2 26536 99.0768 225.9759 0009862 225.5680 134.4714 14.12369291308299 1 26536U 00055A 06258.25747130 .00000277 00000-0 17506-3 0 441 2 26536 99.0768 225.9759 0009862 225.5680 134.4714 14.12369291308299 1 26536U 00055A 06258.68252426 .00000377 00000-0 22944-3 0 462 2 26536 99.0772 226.4065 0009828 224.3271 135.7130 14.12370083308359 1 26536U 00055A 06259.46178818 .00000381 00000-0 23172-3 0 460 2 26536 99.0772 227.1961 0009901 221.7810 138.2611 14.12370722308468 1 26536U 00055A 06259.81599903 .00000390 00000-0 23660-3 0 474 2 26536 99.0771 227.5548 0009879 220.8844 139.1578 14.12370992308510 1 26536U 00055A 06260.17021007 .00000343 00000-0 21114-3 0 470 2 26536 99.0773 227.9137 0009864 219.7725 140.2708 14.12371015308569 1 26536U 00055A 06260.94947463 .00000117 00000-0 88307-4 0 497 2 26536 99.0771 228.7035 0009867 217.3464 142.6993 14.12370383308671 1 26536U 00055A 06261.30368625 .00000110 00000-0 84743-4 0 487 2 26536 99.0771 229.0622 0009882 216.2645 143.7863 14.12370523308723 1 26536U 00055A 06261.72873937 -.00000059 00000-0 -68373-5 0 497 2 26536 99.0773 229.4930 0009898 215.0080 145.0398 14.12369643308783 1 26536U 00055A 06262.15379373 -.00000130 00000-0 -45342-4 0 490 2 26536 99.0771 229.9239 0009856 213.8236 146.2289 14.12369273308849 1 26536U 00055A 06262.93305914 -.00000173 00000-0 -69174-4 0 515 2 26536 99.0774 230.7138 0009878 211.3132 148.7450 14.12368954308956 1 26536U 00055A 06263.35811292 -.00000178 00000-0 -71881-4 0 505 2 26536 99.0774 231.1443 0009906 209.8565 150.2049 14.12368890309013 1 26536U 00055A 06263.78316657 -.00000180 00000-0 -72909-4 0 513 2 26536 99.0777 231.5749 0009887 208.6888 151.3733 14.12368712309073 1 26536U 00055A 06264.13737824 -.00000166 00000-0 -64987-4 0 517 2 26536 99.0778 231.9338 0009897 207.6528 152.4123 14.12368706309127 1 26536U 00055A 06264.91664311 -.00000027 00000-0 10300-4 0 541 2 26536 99.0779 232.7232 0009932 205.3052 154.7654 14.12369345309233 1 26536U 00055A 06265.34169634 .00000059 00000-0 56824-4 0 520 2 26536 99.0777 233.1535 0009965 203.9090 156.1646 14.12369890309292 1 26536U 00055A 06265.76674929 .00000098 00000-0 77805-4 0 530 2 26536 99.0780 233.5843 0009949 202.5520 157.5203 14.12370011309355 1 26536U 00055A 06266.12096073 .00000120 00000-0 89778-4 0 537 2 26536 99.0781 233.9430 0009983 201.5691 158.5073 14.12370258309403 1 26536U 00055A 06266.12096073 .00000120 00000-0 89778-4 0 548 2 26536 99.0781 233.9430 0009983 201.5691 158.5073 14.12370258309403 1 26536U 00055A 06266.54601385 .00000168 00000-0 11623-3 0 558 2 26536 99.0783 234.3738 0010024 200.0212 160.0585 14.12370709309465 1 26536U 00055A 06266.90022452 .00000299 00000-0 18716-3 0 577 2 26536 99.0782 234.7328 0010036 199.1994 160.8832 14.12371569309515 1 26536U 00055A 06267.25443469 .00000347 00000-0 21302-3 0 570 2 26536 99.0785 235.0913 0010089 198.1435 161.9390 14.12372036309565 1 26536U 00055A 06267.67948726 .00000346 00000-0 21265-3 0 580 2 26536 99.0792 235.5223 0010080 196.9673 163.1156 14.12372283309628 1 26536U 00055A 06268.45875059 .00000311 00000-0 19338-3 0 585 2 26536 99.0792 236.3119 0010126 194.7264 165.3610 14.12372719309739 1 26536U 00055A 06268.81296117 .00000280 00000-0 17671-3 0 591 2 26536 99.0793 236.6707 0010143 193.6912 166.3975 14.12372760309789 1 26536U 00055A 06269.16717187 .00000232 00000-0 15088-3 0 592 2 26536 99.0795 237.0296 0010135 192.5699 167.5204 14.12372694309830 1 26536U 00055A 06269.66306693 .00000117 00000-0 88176-4 0 606 2 26536 99.0797 237.5319 0010170 191.2303 168.8619 14.12372294309908 1 26536U 00055A 06270.44233164 -.00000113 00000-0 -36369-4 0 601 2 26536 99.0799 238.3218 0010121 189.0869 171.0114 14.12371338310013 1 26536U 00055A 06270.44233164 -.00000113 00000-0 -36369-4 0 612 2 26536 99.0799 238.3218 0010121 189.0869 171.0114 14.12371338310013 1 26536U 00055A 06270.86738485 -.00000146 00000-0 -54455-4 0 627 2 26536 99.0802 238.7523 0010137 187.8862 172.2145 14.12371096310071 1 26536U 00055A 06271.22159594 -.00000186 00000-0 -76031-4 0 624 2 26536 99.0802 239.1111 0010121 186.7817 173.3204 14.12370786310129 1 26536U 00055A 06271.64664948 -.00000212 00000-0 -90350-4 0 635 2 26536 99.0805 239.5419 0010165 185.4737 174.6322 14.12370508310185 1 26536U 00055A 06272.42591397 -.00000200 00000-0 -83428-4 0 634 2 26536 99.0805 240.3312 0010209 183.0818 177.0302 14.12370422310292 1 26536U 00055A 06272.85096714 -.00000155 00000-0 -59323-4 0 641 2 26536 99.0805 240.7615 0010218 181.9375 178.1764 14.12370496310359 1 26536U 00055A 06273.48854686 -.00000058 00000-0 -64254-5 0 643 2 26536 99.0808 241.4075 0010283 179.9118 180.2075 14.12370912310446 1 26536U 00055A 06273.48854686 -.00000058 00000-0 -64254-5 0 654 2 26536 99.0808 241.4075 0010283 179.9118 180.2075 14.12370912310446 1 26536U 00055A 06273.48854686 -.00000058 00000-0 -64254-5 0 665 2 26536 99.0808 241.4075 0010283 179.9118 180.2075 14.12370912310446 1 26536U 00055A 06273.48854686 -.00000058 00000-0 -64254-5 0 676 2 26536 99.0808 241.4075 0010283 179.9118 180.2075 14.12370912310446 1 26536U 00055A 06273.91359972 .00000012 00000-0 31664-4 0 690 2 26536 99.0807 241.8384 0010279 178.8821 181.2394 14.12371295310503 1 26536U 00055A 06274.76370459 .00000192 00000-0 12893-3 0 700 2 26536 99.0806 242.6994 0010314 176.3706 183.7541 14.12372418310625 1 26536U 00055A 06275.18875733 .00000307 00000-0 19155-3 0 708 2 26536 99.0808 243.1299 0010376 175.3381 184.7922 14.12373243310684 1 26536U 00055A 06275.54296707 .00000373 00000-0 22721-3 0 713 2 26536 99.0808 243.4888 0010395 174.0968 186.0340 14.12373858310736 1 26536U 00055A 06276.74728107 .00000360 00000-0 22031-3 0 721 2 26536 99.0807 244.7093 0010460 170.8835 189.2506 14.12374662310909 1 26536U 00055A 06277.52654395 .00000239 00000-0 15431-3 0 726 2 26536 99.0808 245.4993 0010442 168.6322 191.5082 14.12374620311015 1 26536U 00055A 06277.88075409 .00000181 00000-0 12313-3 0 731 2 26536 99.0807 245.8587 0010414 167.5093 192.6324 14.12374543311069 1 26536U 00055A 06278.30580644 .00000108 00000-0 83329-4 0 736 2 26536 99.0804 246.2892 0010426 166.2300 193.9138 14.12374325311122 1 26536U 00055A 06278.73085898 -.00000008 00000-0 20724-4 0 745 2 26536 99.0811 246.7202 0010446 165.1244 195.0209 14.12373751311187 1 26536U 00055A 06279.51012264 -.00000109 00000-0 -34096-4 0 749 2 26536 99.0815 247.5104 0010408 162.8257 197.3270 14.12373257311293 1 26536U 00055A 06279.93517510 -.00000156 00000-0 -59688-4 0 756 2 26536 99.0818 247.9414 0010418 161.5987 198.5554 14.12372957311352 1 26536U 00055A 06280.28938575 -.00000180 00000-0 -72998-4 0 750 2 26536 99.0817 248.3003 0010433 160.6012 199.5553 14.12372755311408 1 26536U 00055A 06280.71443847 -.00000228 00000-0 -98988-4 0 762 2 26536 99.0823 248.7314 0010461 159.4460 200.7126 14.12372383311462 1 26536U 00055A 06281.49370169 -.00000143 00000-0 -52850-4 0 768 2 26536 99.0824 249.5211 0010476 157.3390 202.8261 14.12372650311575 1 26536U 00055A 06281.84791193 -.00000073 00000-0 -14783-4 0 777 2 26536 99.0829 249.8801 0010450 156.3860 203.7808 14.12372955311622 1 26536U 00055A 06282.27296418 -.00000031 00000-0 79547-5 0 778 2 26536 99.0830 250.3106 0010494 155.4498 204.7187 14.12373120311686 1 26536U 00055A 06282.27296418 -.00000031 00000-0 79547-5 0 789 2 26536 99.0830 250.3106 0010494 155.4498 204.7187 14.12373120311686 1 26536U 00055A 06282.27296418 -.00000031 00000-0 79547-5 0 790 2 26536 99.0830 250.3106 0010494 155.4498 204.7187 14.12373120311686 1 26536U 00055A 06282.69801641 .00000023 00000-0 37097-4 0 812 2 26536 99.0830 250.7414 0010538 154.0991 206.0720 14.12373418311749 1 26536U 00055A 06283.40643616 .00000195 00000-0 13078-3 0 810 2 26536 99.0832 251.4593 0010616 152.3901 207.7868 14.12374645311841 1 26536U 00055A 06283.40643616 .00000195 00000-0 13078-3 0 821 2 26536 99.0832 251.4593 0010616 152.3901 207.7868 14.12374645311841 1 26536U 00055A 06283.83148752 .00000234 00000-0 15189-3 0 839 2 26536 99.0830 251.8900 0010607 151.1740 209.0015 14.12374953311901 1 26536U 00055A 06284.25653949 .00000336 00000-0 20695-3 0 836 2 26536 99.0832 252.3205 0010656 150.2712 209.9096 14.12375737311965 1 26536U 00055A 06284.68159054 .00000350 00000-0 21478-3 0 848 2 26536 99.0834 252.7513 0010698 149.0929 211.0874 14.12376093312027 1 26536U 00055A 06285.46085174 .00000315 00000-0 19584-3 0 842 2 26536 99.0836 253.5408 0010715 147.0067 213.1778 14.12376513312137 1 26536U 00055A 06285.88590307 .00000217 00000-0 14254-3 0 858 2 26536 99.0835 253.9715 0010724 145.6799 214.5039 14.12376257312193 1 26536U 00055A 06286.31095510 .00000222 00000-0 14503-3 0 856 2 26536 99.0837 254.4022 0010730 144.3692 215.8195 14.12376503312255 1 26536U 00055A 06286.80684843 .00000088 00000-0 72421-4 0 868 2 26536 99.0841 254.9050 0010759 143.2043 216.9844 14.12376015312324 1 26536U 00055A 06287.16105854 -.00000024 00000-0 11947-4 0 865 2 26536 99.0843 255.2642 0010752 141.9231 218.2670 14.12375499312376 1 26536U 00055A 06287.58611088 -.00000094 00000-0 -26200-4 0 879 2 26536 99.0843 255.6951 0010803 140.9323 219.2622 14.12375154312434 1 26536U 00055A 06288.36537301 -.00000138 00000-0 -49835-4 0 879 2 26536 99.0843 256.4847 0010810 138.5333 221.6674 14.12374986312547 1 26536U 00055A 06288.79042460 -.00000169 00000-0 -66596-4 0 881 2 26536 99.0846 256.9155 0010815 137.3874 222.8118 14.12374585312607 1 26536U 00055A 06289.21547697 -.00000205 00000-0 -86063-4 0 883 2 26536 99.0846 257.3465 0010840 136.1868 224.0159 14.12374311312666 1 26536U 00055A 06289.21547697 -.00000205 00000-0 -86063-4 0 894 2 26536 99.0846 257.3465 0010840 136.1868 224.0159 14.12374311312666 1 26536U 00055A 06289.21547697 -.00000205 00000-0 -86063-4 0 906 2 26536 99.0846 257.3465 0010840 136.1868 224.0159 14.12374311312666 1 26536U 00055A 06289.56968713 -.00000198 00000-0 -82431-4 0 928 2 26536 99.0846 257.7055 0010859 135.2078 224.9974 14.12374228312715 1 26536U 00055A 06290.41979091 -.00000114 00000-0 -36839-4 0 924 2 26536 99.0847 258.5674 0010936 133.0943 227.1167 14.12374601312832 1 26536U 00055A 06290.84484240 -.00000005 00000-0 22119-4 0 933 2 26536 99.0843 258.9980 0010933 131.8560 228.3569 14.12375133312896 1 26536U 00055A 06291.19905176 .00000087 00000-0 72191-4 0 932 2 26536 99.0845 259.3572 0010951 131.1786 229.0357 14.12375635312949 1 26536U 00055A 06291.62410285 .00000181 00000-0 12290-3 0 941 2 26536 99.0842 259.7879 0010956 129.7664 230.4483 14.12376191313005 1 26536U 00055A 06292.40336277 .00000354 00000-0 21702-3 0 946 2 26536 99.0842 260.5776 0010998 128.0869 232.1320 14.12377626313111 1 26536U 00055A 06292.89925504 .00000356 00000-0 21777-3 0 951 2 26536 99.0839 261.0803 0011025 126.6549 233.5623 14.12377910313189 1 26536U 00055A 06293.25346437 .00000399 00000-0 24123-3 0 959 2 26536 99.0843 261.4395 0011022 125.7753 234.4455 14.12378412313235 1 26536U 00055A 06293.25346437 .00000399 00000-0 24123-3 0 960 2 26536 99.0843 261.4395 0011022 125.7753 234.4455 14.12378412313235 1 26536U 00055A 06293.67851485 .00000306 00000-0 19088-3 0 973 2 26536 99.0844 261.8706 0011004 124.6755 235.5434 14.12378238313297 1 26536U 00055A 06294.45777517 .00000169 00000-0 11636-3 0 971 2 26536 99.0846 262.6608 0010985 122.4290 237.7935 14.12378091313406 1 26536U 00055A 06294.81198434 .00000186 00000-0 12593-3 0 989 2 26536 99.0848 263.0197 0010998 121.4686 238.7561 14.12378282313451 1 26536U 00055A 06295.16619330 .00000109 00000-0 83776-4 0 988 2 26536 99.0849 263.3788 0011001 120.2975 239.9262 14.12378004313504 1 26536U 00055A 06295.66208635 .00000046 00000-0 49739-4 0 997 2 26536 99.0854 263.8817 0011007 119.0587 241.1677 14.12377784313575 1 26536U 00055A 06296.37050528 -.00000116 00000-0 -37800-4 0 998 2 26536 99.0854 264.5999 0011053 117.1683 243.0620 14.12377120313675 1 26536U 00055A 06296.79555626 -.00000135 00000-0 -48580-4 0 1004 2 26536 99.0857 265.0309 0011035 115.9322 244.2974 14.12376847313732 1 26536U 00055A 06297.14976580 -.00000201 00000-0 -84263-4 0 1002 2 26536 99.0860 265.3901 0011033 114.6981 245.5323 14.12376454313783 1 26536U 00055A 06297.14976580 -.00000201 00000-0 -84263-4 0 1013 2 26536 99.0860 265.3901 0011033 114.6981 245.5323 14.12376454313783 1 26536U 00055A 06297.14976580 -.00000201 00000-0 -84263-4 0 1024 2 26536 99.0860 265.3901 0011033 114.6981 245.5323 14.12376454313783 1 26536U 00055A 06297.92902667 -.00000212 00000-0 -89991-4 0 1053 2 26536 99.0863 266.1801 0011068 112.6296 247.6048 14.12376228313897 1 26536U 00055A 06298.35407795 -.00000175 00000-0 -69958-4 0 1041 2 26536 99.0861 266.6108 0011109 111.7250 248.5124 14.12376376313952 1 26536U 00055A 06298.35407795 -.00000175 00000-0 -69958-4 0 1052 2 26536 99.0861 266.6108 0011109 111.7250 248.5124 14.12376376313952 1 26536U 00055A 06298.35407795 -.00000175 00000-0 -69958-4 0 1063 2 26536 99.0861 266.6108 0011109 111.7250 248.5124 14.12376376313952 1 26536U 00055A 06298.84997069 -.00000149 00000-0 -56109-4 0 1082 2 26536 99.0865 267.1137 0011118 110.3212 249.9152 14.12376299314026 1 26536U 00055A 06299.20418012 -.00000104 00000-0 -31649-4 0 1082 2 26536 99.0866 267.4726 0011121 109.4355 250.8030 14.12376460314076 1 26536U 00055A 06299.62923110 .00000005 00000-0 27740-4 0 1094 2 26536 99.0869 267.9037 0011180 108.2489 251.9918 14.12376968314136 1 26536U 00055A 06300.40849031 .00000162 00000-0 11278-3 0 1094 2 26536 99.0867 268.6934 0011203 106.4760 253.7674 14.12378097314242 1 26536U 00055A 06300.76269856 .00000226 00000-0 14744-3 0 1108 2 26536 99.0864 269.0523 0011223 105.2705 254.9706 14.12378496314293 1 26536U 00055A 06301.54195713 .00000361 00000-0 22040-3 0 1103 2 26536 99.0866 269.8422 0011238 103.2389 257.0037 14.12379665314406 1 26536U 00055A 06301.89616554 .00000358 00000-0 21914-3 0 1118 2 26536 99.0866 270.2012 0011237 102.1613 258.0815 14.12379946314456 1 26536U 00055A 06302.25037393 .00000377 00000-0 22944-3 0 1123 2 26536 99.0868 270.5603 0011246 101.4259 258.8180 14.12380293314501 1 26536U 00055A 06302.74626538 .00000282 00000-0 17764-3 0 1132 2 26536 99.0871 271.0633 0011237 100.0814 260.1598 14.12380099314576 1 26536U 00055A 06303.52552456 .00000113 00000-0 86310-4 0 1133 2 26536 99.0872 271.8535 0011218 97.7911 262.4523 14.12379719314687 1 26536U 00055A 06303.52552456 .00000113 00000-0 86310-4 0 1144 2 26536 99.0872 271.8535 0011218 97.7911 262.4523 14.12379719314687 1 26536U 00055A 06303.87973317 .00000058 00000-0 56482-4 0 1151 2 26536 99.0870 272.2127 0011227 96.9297 263.3141 14.12379537314735 1 26536U 00055A 06304.30478352 -.00000008 00000-0 20792-4 0 1150 2 26536 99.0871 272.6436 0011243 95.5645 264.6789 14.12379267314791 1 26536U 00055A 06304.65899240 -.00000029 00000-0 91049-5 0 1169 2 26536 99.0876 273.0028 0011239 94.6900 265.5549 14.12379129314844 1 26536U 00055A 06305.43825162 -.00000110 00000-0 -34619-4 0 1169 2 26536 99.0875 273.7931 0011252 92.5828 267.6641 14.12378799314954 1 26536U 00055A 06305.86330176 -.00000135 00000-0 -48275-4 0 1173 2 26536 99.0876 274.2241 0011251 91.4214 268.8234 14.12378529315011 1 26536U 00055A 06306.28835242 -.00000169 00000-0 -66780-4 0 1172 2 26536 99.0876 274.6551 0011264 90.3201 269.9255 14.12378284315076 1 26536U 00055A 06306.28835242 -.00000169 00000-0 -66780-4 0 1183 2 26536 99.0876 274.6551 0011264 90.3201 269.9255 14.12378284315076 1 26536U 00055A 06306.71340300 -.00000138 00000-0 -49915-4 0 1195 2 26536 99.0881 275.0863 0011279 89.1860 271.0607 14.12378306315133 1 26536U 00055A 06307.91771151 .00000034 00000-0 43559-4 0 1203 2 26536 99.0878 276.3075 0011232 85.7971 274.4502 14.12379267315309 1 26536U 00055A 06308.34276125 .00000061 00000-0 57953-4 0 1205 2 26536 99.0877 276.7381 0011229 84.8397 275.4064 14.12379480315367 1 26536U 00055A 06308.76781112 .00000153 00000-0 10795-3 0 1213 2 26536 99.0878 277.1693 0011246 83.4322 276.8138 14.12379990315421 1 26536U 00055A 06309.19286080 .00000260 00000-0 16608-3 0 1213 2 26536 99.0879 277.6002 0011210 82.4583 277.7890 14.12380726315480 1 26536U 00055A 06309.54706823 .00000258 00000-0 16473-3 0 1222 2 26536 99.0877 277.9594 0011219 81.7098 278.5347 14.12380929315536 1 26536U 00055A 06310.39716662 .00000324 00000-0 20069-3 0 1229 2 26536 99.0878 278.8213 0011178 79.4860 280.7581 14.12381985315651 1 26536U 00055A 06310.82221560 .00000313 00000-0 19484-3 0 1233 2 26536 99.0879 279.2522 0011178 78.3393 281.9020 14.12382147315718 1 26536U 00055A 06311.17642345 .00000349 00000-0 21430-3 0 1233 2 26536 99.0880 279.6113 0011176 77.4387 282.8035 14.12382523315760 1 26536U 00055A 06311.60147241 .00000312 00000-0 19404-3 0 1245 2 26536 99.0883 280.0424 0011175 76.3367 283.9036 14.12382594315827 1 26536U 00055A 06312.38073001 .00000110 00000-0 84581-4 0 1248 2 26536 99.0885 280.8325 0011224 74.2487 285.9917 14.12382004315930 1 26536U 00055A 06312.38073001 .00000110 00000-0 84581-4 0 1259 2 26536 99.0885 280.8325 0011224 74.2487 285.9917 14.12382004315930 1 26536U 00055A 06312.38073001 .00000110 00000-0 84581-4 0 1260 2 26536 99.0885 280.8325 0011224 74.2487 285.9917 14.12382004315930 1 26536U 00055A 06312.80577927 -.00000027 00000-0 10034-4 0 1274 2 26536 99.0886 281.2634 0011212 73.4020 286.8351 14.12381335315994 1 26536U 00055A 06313.23082925 -.00000112 00000-0 -35937-4 0 1276 2 26536 99.0887 281.6942 0011259 71.9366 288.3007 14.12380906316054 1 26536U 00055A 06313.23082925 -.00000112 00000-0 -35937-4 0 1287 2 26536 99.0887 281.6942 0011259 71.9366 288.3007 14.12380906316054 1 26536U 00055A 06313.65587923 -.00000151 00000-0 -56996-4 0 1305 2 26536 99.0888 282.1253 0011256 71.0408 289.1979 14.12380648316118 1 26536U 00055A 06314.43513728 -.00000199 00000-0 -83228-4 0 1304 2 26536 99.0888 282.9153 0011269 69.3261 290.9136 14.12380299316225 1 26536U 00055A 06314.78934495 -.00000230 00000-0 -99709-4 0 1318 2 26536 99.0892 283.2745 0011267 68.3288 291.9068 14.12379942316270 1 26536U 00055A 06315.14355336 -.00000188 00000-0 -77013-4 0 1316 2 26536 99.0896 283.6336 0011242 67.5597 292.6781 14.12380061316321 1 26536U 00055A 06315.56860275 -.00000186 00000-0 -76030-4 0 1322 2 26536 99.0894 284.0646 0011250 66.7250 293.5107 14.12379953316380 1 26536U 00055A 06316.41870125 .00000009 00000-0 29570-4 0 1321 2 26536 99.0902 284.9270 0011243 64.6865 295.5488 14.12380968316509 1 26536U 00055A 06316.77290872 .00000037 00000-0 45201-4 0 1336 2 26536 99.0896 285.2860 0011258 63.6372 296.5953 14.12381126316558 1 26536U 00055A 06317.12711653 .00000178 00000-0 12115-3 0 1334 2 26536 99.0896 285.6452 0011195 62.7018 297.5331 14.12381950316608 1 26536U 00055A 06317.62300633 .00000231 00000-0 14990-3 0 1345 2 26536 99.0898 286.1483 0011231 61.3524 298.8773 14.12382330316672 1 26536U 00055A 06318.40226173 .00000377 00000-0 22923-3 0 1344 2 26536 99.0894 286.9387 0011149 59.4124 300.8162 14.12383770316788 1 26536U 00055A 06318.82730987 .00000400 00000-0 24188-3 0 1356 2 26536 99.0887 287.3695 0011146 58.2454 301.9800 14.12384186316847 1 26536U 00055A 06319.18151687 .00000441 00000-0 26416-3 0 1351 2 26536 99.0888 287.7289 0011153 57.1882 303.0364 14.12384661316893 1 26536U 00055A 06319.96077227 .00000282 00000-0 17777-3 0 1379 2 26536 99.0885 288.5195 0011191 54.8500 305.3695 14.12384465317006 1 26536U 00055A 06320.31497959 .00000233 00000-0 15111-3 0 1363 2 26536 99.0885 288.8786 0011197 53.8094 306.4102 14.12384464317057 1 26536U 00055A 06320.31497959 .00000233 00000-0 15111-3 0 1374 2 26536 99.0885 288.8786 0011197 53.8094 306.4102 14.12384464317057 1 26536U 00055A 06320.81086937 .00000126 00000-0 93026-4 0 1383 2 26536 99.0882 289.3815 0011161 52.4325 307.7829 14.12384049317123 1 26536U 00055A 06321.51928427 -.00000019 00000-0 14783-4 0 1385 2 26536 99.0883 290.1003 0011184 50.3846 309.8304 14.12383568317220 1 26536U 00055A 06321.51928427 -.00000019 00000-0 14783-4 0 1396 2 26536 99.0883 290.1003 0011184 50.3846 309.8304 14.12383568317220 1 26536U 00055A 06321.94433292 -.00000107 00000-0 -32905-4 0 1401 2 26536 99.0882 290.5313 0011207 49.2789 310.9338 14.12383187317289 1 26536U 00055A 06322.36938189 -.00000151 00000-0 -56990-4 0 1402 2 26536 99.0883 290.9623 0011171 48.3944 311.8185 14.12382973317340 1 26536U 00055A 06322.79443055 -.00000149 00000-0 -55778-4 0 1413 2 26536 99.0884 291.3932 0011174 47.3180 312.8916 14.12382736317400 1 26536U 00055A 06323.21947960 -.00000174 00000-0 -69683-4 0 1413 2 26536 99.0885 291.8242 0011159 46.1234 314.0860 14.12382573317467 1 26536U 00055A 06323.21947960 -.00000174 00000-0 -69683-4 0 1424 2 26536 99.0885 291.8242 0011159 46.1234 314.0860 14.12382573317467 1 26536U 00055A 06323.21947960 -.00000174 00000-0 -69683-4 0 1435 2 26536 99.0885 291.8242 0011159 46.1234 314.0860 14.12382573317467 1 26536U 00055A 06323.57368690 -.00000183 00000-0 -74106-4 0 1460 2 26536 99.0890 292.1835 0011151 45.3591 314.8485 14.12382409317519 1 26536U 00055A 06324.42378427 -.00000095 00000-0 -26532-4 0 1466 2 26536 99.0894 293.0457 0011129 43.0863 317.1199 14.12382837317631 1 26536U 00055A 06324.42378427 -.00000095 00000-0 -26532-4 0 1477 2 26536 99.0894 293.0457 0011129 43.0863 317.1199 14.12382837317631 1 26536U 00055A 06324.42378427 -.00000095 00000-0 -26532-4 0 1488 2 26536 99.0894 293.0457 0011129 43.0863 317.1199 14.12382837317631 1 26536U 00055A 06324.42378427 -.00000095 00000-0 -26532-4 0 1501 2 26536 99.0894 293.0457 0011129 43.0863 317.1199 14.12382837317631 1 26536U 00055A 06324.84883255 -.00000008 00000-0 20576-4 0 1513 2 26536 99.0896 293.4767 0011111 41.8855 318.3184 14.12383248317699 1 26536U 00055A 06324.99051500 .00000011 00000-0 30747-4 0 1513 2 26536 99.0897 293.6203 0011115 41.4578 318.7432 14.12383318317710 1 26536U 00055A 06325.41556358 .00000086 00000-0 71529-4 0 1528 2 26536 99.0898 294.0512 0011073 40.5158 319.6862 14.12383828317775 1 26536U 00055A 06325.84061141 .00000165 00000-0 11452-3 0 1533 2 26536 99.0896 294.4820 0011098 39.2589 320.9389 14.12384271317838 1 26536U 00055A 06326.26565954 .00000239 00000-0 15448-3 0 1532 2 26536 99.0896 294.9129 0011051 38.2098 321.9877 14.12384859317899 1 26536U 00055A 06326.69070712 .00000295 00000-0 18472-3 0 1545 2 26536 99.0901 295.3442 0011066 37.0883 323.1055 14.12385332317950 1 26536U 00055A 06327.46996128 .00000319 00000-0 19811-3 0 1544 2 26536 99.0901 296.1344 0011037 35.0645 325.1261 14.12386058318062 1 26536U 00055A 06327.89500870 .00000326 00000-0 20163-3 0 1557 2 26536 99.0905 296.5653 0011039 33.8287 326.3584 14.12386360318127 1 26536U 00055A 06328.24921504 .00000331 00000-0 20455-3 0 1558 2 26536 99.0906 296.9246 0011025 32.9157 327.2696 14.12386608318175 1 26536U 00055A 06328.24921504 .00000331 00000-0 20455-3 0 1569 2 26536 99.0906 296.9246 0011025 32.9157 327.2696 14.12386608318175 1 26536U 00055A 06328.24921504 .00000331 00000-0 20455-3 0 1570 2 26536 99.0906 296.9246 0011025 32.9157 327.2696 14.12386608318175 1 26536U 00055A 06328.24921504 .00000331 00000-0 20455-3 0 1581 2 26536 99.0906 296.9246 0011025 32.9157 327.2696 14.12386608318175 1 26536U 00055A 06328.74510376 .00000288 00000-0 18112-3 0 1596 2 26536 99.0900 297.4274 0010997 31.5763 328.6052 14.12386675318244 1 26536U 00055A 06329.52435842 .00000088 00000-0 72769-4 0 1594 2 26536 99.0899 298.2174 0011021 29.4414 330.7364 14.12386040318355 1 26536U 00055A 06329.87856502 .00000031 00000-0 41766-4 0 1605 2 26536 99.0901 298.5766 0011044 28.5078 331.6676 14.12385815318401 1 26536U 00055A 06330.30361309 -.00000047 00000-0 -36926-6 0 1604 2 26536 99.0906 299.0077 0011073 27.3288 332.8448 14.12385493318467 1 26536U 00055A 06330.72866121 -.00000135 00000-0 -48396-4 0 1613 2 26536 99.0913 299.4393 0011013 26.2366 333.9339 14.12384899318526 1 26536U 00055A 06331.15370964 -.00000211 00000-0 -89687-4 0 1619 2 26536 99.0915 299.8704 0011046 25.1341 335.0351 14.12384475318588 1 26536U 00055A 06331.50791669 -.00000209 00000-0 -88226-4 0 1634 2 26536 99.0915 300.2297 0011027 24.2712 335.8983 14.12384418318635 1 26536U 00055A 06332.42885411 -.00000166 00000-0 -65085-4 0 1624 2 26536 99.0917 301.1638 0011012 21.6813 338.4837 14.12384459318769 1 26536U 00055A 06332.92474326 -.00000074 00000-0 -15029-4 0 1630 2 26536 99.0919 301.6669 0011001 20.2299 339.9326 14.12384816318835 1 26536U 00055A 06333.34979085 -.00000010 00000-0 19653-4 0 1635 2 26536 99.0919 302.0978 0010922 19.2052 340.9553 14.12385182318896 1 26536U 00055A 06333.34980009 -.00000002 00000-0 00000+0 0 1635 2 26536 99.0901 302.0979 0011206 22.0804 338.1334 14.12385713318897 1 26536U 00055A 06333.77483824 .00000039 00000-0 45866-4 0 1649 2 26536 99.0922 302.5291 0010967 17.9963 342.1591 14.12385376318956 1 26536U 00055A 06334.19988610 .00000147 00000-0 10462-3 0 1642 2 26536 99.0920 302.9605 0010894 16.6727 343.4835 14.12386041319013 1 26536U 00055A 06334.62493298 .00000222 00000-0 14554-3 0 1654 2 26536 99.0920 303.3916 0010839 15.7838 344.3685 14.12386575319076 1 26536U 00055A 06335.47502664 .00000391 00000-0 23697-3 0 1651 2 26536 99.0919 304.2540 0010710 13.5352 346.6134 14.12388146319195 1 26536U 00055A 06335.90007296 .00000420 00000-0 25250-3 0 1661 2 26536 99.0916 304.6851 0010741 12.1301 348.0127 14.12388620319256 1 26536U 00055A 06336.25427860 .00000457 00000-0 27247-3 0 1661 2 26536 99.0916 305.0443 0010651 11.1068 349.0348 14.12389097319308 1 26536U 00055A 06336.67932498 .00000323 00000-0 20023-3 0 1673 2 26536 99.0919 305.4756 0010656 9.9711 350.1628 14.12388692319367 1 26536U 00055A 06337.52941938 .00000197 00000-0 13163-3 0 1673 2 26536 99.0910 306.3379 0010603 7.4355 352.6965 14.12388686319485 1 26536U 00055A 06337.88362515 .00000071 00000-0 63717-4 0 1683 2 26536 99.0915 306.6973 0010653 6.6114 353.5159 14.12388156319535 1 26536U 00055A 06338.30867283 .00000042 00000-0 47874-4 0 1687 2 26536 99.0911 307.1282 0010651 5.4933 354.6355 14.12388212319593 1 26536U 00055A 06338.73371971 -.00000069 00000-0 -12706-4 0 1696 2 26536 99.0913 307.5594 0010642 4.2167 355.9065 14.12387620319652 1 26536U 00055A 06339.51297349 -.00000147 00000-0 -54669-4 0 1690 2 26536 99.0914 308.3496 0010665 2.0666 358.0544 14.12387244319768 1 26536U 00055A 06339.93802078 -.00000145 00000-0 -53871-4 0 1701 2 26536 99.0914 308.7805 0010689 0.9315 359.1861 14.12387072319820 1 26536U 00055A 06340.29222711 -.00000149 00000-0 -55643-4 0 1705 2 26536 99.0917 309.1399 0010661 0.0206 0.0968 14.12387034319879 1 26536U 00055A 06340.85895678 -.00000136 00000-0 -48991-4 0 1710 2 26536 99.0920 309.7148 0010598 358.5159 1.5987 14.12386994319958 1 26536U 00055A 06341.28400394 -.00000147 00000-0 -54469-4 0 1714 2 26536 99.0919 310.1457 0010592 357.3726 2.7386 14.12386871320015 1 26536U 00055A 06341.77989257 -.00000124 00000-0 -42065-4 0 1723 2 26536 99.0924 310.6490 0010564 356.0420 4.0668 14.12386834320083 1 26536U 00055A 06342.55914538 .00000002 00000-0 26096-4 0 1729 2 26536 99.0931 311.4396 0010520 353.8426 6.2633 14.12387569320192 1 26536U 00055A 06342.55914538 .00000002 00000-0 26096-4 0 1730 2 26536 99.0931 311.4396 0010520 353.8426 6.2633 14.12387569320192 1 26536U 00055A 06342.91335097 .00000177 00000-0 12097-3 0 1746 2 26536 99.0929 311.7988 0010520 352.6372 7.4679 14.12388497320246 1 26536U 00055A 06343.33839708 .00000229 00000-0 14924-3 0 1740 2 26536 99.0929 312.2297 0010468 351.4366 8.6643 14.12389015320304 1 26536U 00055A 06343.33839708 .00000229 00000-0 14924-3 0 1751 2 26536 99.0929 312.2297 0010468 351.4366 8.6643 14.12389015320304 1 26536U 00055A 06343.33839708 .00000229 00000-0 14924-3 0 1762 2 26536 99.0929 312.2297 0010468 351.4366 8.6643 14.12389015320304 1 26536U 00055A 06343.33839708 .00000229 00000-0 14924-3 0 1784 2 26536 99.0929 312.2297 0010468 351.4366 8.6643 14.12389015320304 1 26536U 00055A 06343.83428450 .00000286 00000-0 18019-3 0 1790 2 26536 99.0929 312.7332 0010448 350.1274 9.9695 14.12389509320377 1 26536U 00055A 06344.25933093 .00000369 00000-0 22496-3 0 1797 2 26536 99.0932 313.1642 0010443 348.7668 11.3292 14.12390268320436 1 26536U 00055A 06344.25933093 .00000369 00000-0 22496-3 0 1809 2 26536 99.0932 313.1642 0010443 348.7668 11.3292 14.12390268320436 1 26536U 00055A 06344.25933093 .00000369 00000-0 22496-3 0 1810 2 26536 99.0932 313.1642 0010443 348.7668 11.3292 14.12390268320436 1 26536U 00055A 06344.75521778 .00000378 00000-0 22986-3 0 1823 2 26536 99.0932 313.6678 0010443 347.4895 12.6003 14.12390596320504 1 26536U 00055A 06345.18026420 .00000394 00000-0 23872-3 0 1828 2 26536 99.0934 314.0990 0010442 346.2585 13.8305 14.12391042320561 1 26536U 00055A 06345.60531015 .00000299 00000-0 18694-3 0 1837 2 26536 99.0936 314.5304 0010424 344.9275 15.1565 14.12390867320622 1 26536U 00055A 06346.45540322 .00000155 00000-0 10892-3 0 1835 2 26536 99.0938 315.3929 0010383 342.5993 17.4820 14.12390690320747 1 26536U 00055A 06346.80960839 .00000095 00000-0 76357-4 0 1846 2 26536 99.0939 315.7522 0010410 341.4685 18.6086 14.12390420320791 1 26536U 00055A 06347.23465506 .00000032 00000-0 42437-4 0 1848 2 26536 99.0936 316.1833 0010423 340.4269 19.6484 14.12390221320858 1 26536U 00055A 06347.58886068 -.00000050 00000-0 -20088-5 0 1858 2 26536 99.0937 316.5428 0010392 339.3297 20.7438 14.12389823320900 1 26536U 00055A 06348.43895440 -.00000136 00000-0 -48563-4 0 1859 2 26536 99.0936 317.4052 0010363 337.0876 22.9841 14.12389426321023 1 26536U 00055A 06348.43895440 -.00000136 00000-0 -48563-4 0 1860 2 26536 99.0936 317.4052 0010363 337.0876 22.9841 14.12389426321023 1 26536U 00055A 06348.79315973 -.00000161 00000-0 -62097-4 0 1874 2 26536 99.0940 317.7645 0010378 336.0673 23.9999 14.12389118321077 1 26536U 00055A 06349.14736563 -.00000161 00000-0 -62426-4 0 1872 2 26536 99.0939 318.1238 0010358 335.0223 25.0453 14.12389089321127 1 26536U 00055A 06349.57241223 -.00000155 00000-0 -59030-4 0 1884 2 26536 99.0938 318.5549 0010323 333.8014 26.2638 14.12389035321186 1 26536U 00055A 06350.42250511 -.00000022 00000-0 13048-4 0 1881 2 26536 99.0940 319.4172 0010241 331.1274 28.9360 14.12389796321308 1 26536U 00055A 06350.77670995 .00000029 00000-0 40589-4 0 1898 2 26536 99.0937 319.7765 0010269 330.2791 29.7791 14.12389973321358 1 26536U 00055A 06351.13091543 .00000173 00000-0 11863-3 0 1897 2 26536 99.0934 320.1359 0010225 328.8179 31.2429 14.12390821321401 1 26536U 00055A 06351.91016541 .00000296 00000-0 18547-3 0 1913 2 26536 99.0933 320.9264 0010182 326.7581 33.2953 14.12391862321511 1 26536U 00055A 06352.33521123 .00000393 00000-0 23790-3 0 1900 2 26536 99.0935 321.3576 0010146 325.4144 34.6396 14.12392725321576 1 26536U 00055A 06352.90193812 .00000345 00000-0 21209-3 0 1914 2 26536 99.0927 321.9325 0010134 323.8677 36.1782 14.12392837321654 1 26536U 00055A 06353.25614333 .00000381 00000-0 23140-3 0 1915 2 26536 99.0929 322.2917 0010099 322.7752 37.2726 14.12393285321703 1 26536U 00055A 06353.25614333 .00000381 00000-0 23140-3 0 1926 2 26536 99.0929 322.2917 0010099 322.7752 37.2726 14.12393285321703 1 26536U 00055A 06353.25614333 .00000381 00000-0 23140-3 0 1937 2 26536 99.0929 322.2917 0010099 322.7752 37.2726 14.12393285321703 1 26536U 00055A 06353.75202955 .00000348 00000-0 21365-3 0 1968 2 26536 99.0928 322.7948 0010115 321.3588 38.6848 14.12393488321774 1 26536U 00055A 06354.17707519 .00000280 00000-0 17661-3 0 1960 2 26536 99.0928 323.2259 0010110 320.1601 39.8811 14.12393436321836 1 26536U 00055A 06354.60212098 .00000197 00000-0 13196-3 0 1978 2 26536 99.0928 323.6572 0010070 318.7428 41.2964 14.12393218321893 1 26536U 00055A 06355.38137209 .00000013 00000-0 31915-4 0 1971 2 26536 99.0930 324.4479 0010027 316.4518 43.5855 14.12392590322008 1 26536U 00055A 06355.38137209 .00000013 00000-0 31915-4 0 1982 2 26536 99.0930 324.4479 0010027 316.4518 43.5855 14.12392590322008 1 26536U 00055A 06355.80641798 -.00000027 00000-0 10412-4 0 1998 2 26536 99.0935 324.8791 0010017 315.2261 44.8083 14.12392311322069 1 26536U 00055A 06356.16062322 -.00000085 00000-0 -20925-4 0 1993 2 26536 99.0936 325.2383 0010081 314.7677 45.2658 14.12392096322117 1 26536U 00055A 06356.58566945 -.00000182 00000-0 -73534-4 0 2004 2 26536 99.0937 325.6695 0010086 313.4816 46.5500 14.12391557322171 1 26536U 00055A 06357.43576191 -.00000193 00000-0 -79642-4 0 2001 2 26536 99.0941 326.5318 0010060 311.0820 48.9487 14.12391413322293 1 26536U 00055A 06357.86080798 -.00000166 00000-0 -64798-4 0 2018 2 26536 99.0944 326.9629 0010041 309.6585 50.3700 14.12391319322352 1 26536U 00055A 06358.21501315 -.00000099 00000-0 -28459-4 0 2010 2 26536 99.0945 327.3222 0010034 308.4698 51.5593 14.12391623322408 1 26536U 00055A 06358.64005885 -.00000109 00000-0 -34142-4 0 2027 2 26536 99.0951 327.7537 0010020 307.3087 52.7163 14.12391456322469 1 26536U 00055A 06359.41930967 -.00000043 00000-0 17630-5 0 2021 2 26536 99.0951 328.5442 0010006 304.6717 55.3527 14.12391958322579 1 26536U 00055A 06359.84435539 .00000106 00000-0 82751-4 0 2038 2 26536 99.0952 328.9753 0010048 303.6790 56.3447 14.12392717322638 1 26536U 00055A 06360.34024166 .00000216 00000-0 14229-3 0 2031 2 26536 99.0953 329.4782 0010019 301.9884 58.0343 14.12393473322702 1 26536U 00055A 06360.90696846 .00000315 00000-0 19582-3 0 2041 2 26536 99.0951 330.0533 0010037 300.4877 59.5318 14.12394266322785 1 26536U 00055A 06361.40285434 .00000316 00000-0 19652-3 0 2043 2 26536 99.0953 330.5567 0010023 298.8243 61.1934 14.12394698322851 1 26536U 00055A 06362.39462633 .00000276 00000-0 17440-3 0 2059 2 26536 99.0949 331.5633 0009999 295.6989 64.3152 14.12395173322994 1 26536U 00055A 06363.52808059 .00000114 00000-0 86663-4 0 2067 2 26536 99.0946 332.7134 0009994 292.5302 67.4801 14.12394852323157 1 26536U 00055A 06364.37817173 .00000034 00000-0 43529-4 0 2074 2 26536 99.0944 333.5762 0009950 290.0462 69.9648 14.12394745323273 1 26536U 00055A 06364.80321680 -.00000036 00000-0 53023-5 0 2080 2 26536 99.0948 334.0075 0009941 288.7721 71.2343 14.12394284323335 1 26536U 00055A 06365.22826280 -.00000087 00000-0 -21924-4 0 2084 2 26536 99.0944 334.4389 0009942 287.8321 72.1753 14.12394055323397 1 26536U 00055A 06365.22826280 -.00000087 00000-0 -21924-4 0 2095 2 26536 99.0944 334.4389 0009942 287.8321 72.1753 14.12394055323397 1 26536U 00055A 06365.72414951 -.00000128 00000-0 -44531-4 0 2105 2 26536 99.0946 334.9420 0009912 286.0737 73.9335 14.12393746323468 1 26536U 00055A 07001.14919529 -.00000155 00000-0 -58785-4 0 2106 2 26536 99.0947 335.3733 0009913 285.0422 74.9647 14.12393576323527 1 26536U 00055A 07001.64508204 -.00000183 00000-0 -74162-4 0 2114 2 26536 99.0950 335.8763 0009878 283.1746 76.8321 14.12393281323597 1 26536U 00055A 07002.49517320 -.00000105 00000-0 -31678-4 0 2116 2 26536 99.0955 336.7390 0009860 280.4096 79.5979 14.12393649323718 1 26536U 00055A 07003.48694513 .00000113 00000-0 86011-4 0 2125 2 26536 99.0955 337.7451 0009853 277.2489 82.7581 14.12394935323858 1 26536U 00055A 07004.40787537 .00000291 00000-0 18300-3 0 2130 2 26536 99.0955 338.6793 0009898 274.5524 85.4528 14.12396336323988 1 26536U 00055A 07004.40787537 .00000291 00000-0 18300-3 0 2141 2 26536 99.0955 338.6793 0009898 274.5524 85.4528 14.12396336323988 1 26536U 00055A 07004.83292004 .00000321 00000-0 19915-3 0 2156 2 26536 99.0954 339.1104 0009888 273.4389 86.5642 14.12396660324042 1 26536U 00055A 07005.25796502 .00000370 00000-0 22582-3 0 2153 2 26536 99.0957 339.5415 0009895 272.0198 87.9855 14.12397232324109 1 26536U 00055A 07005.75385013 .00000299 00000-0 18710-3 0 2168 2 26536 99.0960 340.0449 0009892 270.3102 89.6921 14.12397216324172 1 26536U 00055A 07006.17889507 .00000258 00000-0 16505-3 0 2167 2 26536 99.0961 340.4759 0009881 269.1128 90.8900 14.12397277324238 1 26536U 00055A 07006.53309918 .00000227 00000-0 14790-3 0 2171 2 26536 99.0962 340.8357 0009887 268.1692 91.8342 14.12397327324280 1 26536U 00055A 07007.38318914 .00000071 00000-0 63258-4 0 2172 2 26536 99.0964 341.6982 0009890 265.7133 94.2907 14.12396965324407 1 26536U 00055A 07007.38318914 .00000071 00000-0 63258-4 0 2183 2 26536 99.0964 341.6982 0009890 265.7133 94.2907 14.12396965324407 1 26536U 00055A 07007.87907475 -.00000058 00000-0 -63655-5 0 2193 2 26536 99.0971 342.2017 0009873 264.3363 95.6639 14.12396248324470 1 26536U 00055A 07008.30412063 -.00000078 00000-0 -17225-4 0 2199 2 26536 99.0969 342.6330 0009867 263.2532 96.7515 14.12396194324530 1 26536U 00055A 07008.30412063 -.00000078 00000-0 -17225-4 0 2201 2 26536 99.0969 342.6330 0009867 263.2532 96.7515 14.12396194324530 1 26536U 00055A 07008.30412063 -.00000078 00000-0 -17225-4 0 2212 2 26536 99.0969 342.6330 0009867 263.2532 96.7515 14.12396194324530 1 26536U 00055A 07008.30412063 -.00000078 00000-0 -17225-4 0 2234 2 26536 99.0969 342.6330 0009867 263.2532 96.7515 14.12396194324530 1 26536U 00055A 07008.87084741 -.00000204 00000-0 -85349-4 0 2248 2 26536 99.0977 343.2084 0009883 261.4633 98.5393 14.12395434324611 1 26536U 00055A 07009.29589323 -.00000240 00000-0 -10502-3 0 2249 2 26536 99.0977 343.6397 0009873 260.2806 99.7246 14.12395157324678 1 26536U 00055A 07009.79177964 -.00000242 00000-0 -10632-3 0 2255 2 26536 99.0981 344.1431 0009896 258.5788 101.4272 14.12394895324748 1 26536U 00055A 07010.14598423 -.00000175 00000-0 -69970-4 0 2258 2 26536 99.0983 344.5027 0009919 257.4014 102.6071 14.12395151324792 1 26536U 00055A 07010.64187011 -.00000112 00000-0 -35797-4 0 2262 2 26536 99.0983 345.0061 0009913 255.9541 104.0543 14.12395367324865 1 26536U 00055A 07011.49195959 .00000057 00000-0 55700-4 0 2268 2 26536 99.0986 345.8690 0009974 252.9454 107.0642 14.12396330324988 1 26536U 00055A 07012.41288935 .00000216 00000-0 14199-3 0 2272 2 26536 99.0984 346.8040 0010008 249.9163 110.0947 14.12397553325115 1 26536U 00055A 07012.90877454 .00000342 00000-0 21060-3 0 2282 2 26536 99.0979 347.3068 0010037 248.7348 111.2770 14.12398407325182 1 26536U 00055A 07013.47550011 .00000326 00000-0 20200-3 0 2289 2 26536 99.0981 347.8823 0010039 247.0452 112.9661 14.12398787325266 1 26536U 00055A 07013.47550011 .00000326 00000-0 20200-3 0 2290 2 26536 99.0981 347.8823 0010039 247.0452 112.9661 14.12398787325266 1 26536U 00055A 07013.90054445 .00000330 00000-0 20375-3 0 2308 2 26536 99.0978 348.3136 0010020 245.8702 114.1416 14.12399094325320 1 26536U 00055A 07014.32558884 .00000364 00000-0 22243-3 0 2304 2 26536 99.0979 348.7450 0010031 244.4821 115.5325 14.12399622325380 1 26536U 00055A 07014.32558884 .00000364 00000-0 22243-3 0 2315 2 26536 99.0979 348.7450 0010031 244.4821 115.5325 14.12399622325380 1 26536U 00055A 07014.96315475 .00000253 00000-0 16233-3 0 2322 2 26536 99.0979 349.3922 0010010 242.7967 117.2144 14.12399420325474 1 26536U 00055A 07015.45904046 .00000136 00000-0 98739-4 0 2327 2 26536 99.0976 349.8953 0010025 241.7614 118.2523 14.12399117325547 1 26536U 00055A 07015.95492593 .00000015 00000-0 32897-4 0 2331 2 26536 99.0978 350.3986 0010000 240.1952 119.8192 14.12398602325618 1 26536U 00055A 07016.45081184 -.00000045 00000-0 39444-6 0 2338 2 26536 99.0977 350.9017 0010006 238.8496 121.1694 14.12398460325683 1 26536U 00055A 07016.45081184 -.00000045 00000-0 39444-6 0 2349 2 26536 99.0977 350.9017 0010006 238.8496 121.1694 14.12398460325683 1 26536U 00055A 07016.87585642 -.00000108 00000-0 -33633-4 0 2357 2 26536 99.0977 351.3332 0009965 237.5923 122.4260 14.12398073325741 1 26536U 00055A 07017.30090160 -.00000125 00000-0 -42757-4 0 2358 2 26536 99.0976 351.7644 0009948 236.4004 123.6215 14.12397969325802 1 26536U 00055A 07018.50519548 -.00000167 00000-0 -65610-4 0 2367 2 26536 99.0979 352.9865 0009969 232.5712 127.4558 14.12397494325972 1 26536U 00055A 07019.07192192 -.00000128 00000-0 -44556-4 0 2376 2 26536 99.0981 353.5617 0010012 230.8114 129.2177 14.12397510326051 1 26536U 00055A 07019.56780748 -.00000061 00000-0 -78196-5 0 2385 2 26536 99.0985 354.0651 0010004 229.1782 130.8541 14.12397837326125 1 26536U 00055A 07020.06369272 .00000038 00000-0 45372-4 0 2388 2 26536 99.0989 354.5685 0010071 227.6950 132.3404 14.12398408326192 1 26536U 00055A 07020.63041818 .00000125 00000-0 92930-4 0 2394 2 26536 99.0987 355.1437 0010060 225.6128 134.4236 14.12398956326278 1 26536U 00055A 07021.12630308 .00000254 00000-0 16290-3 0 2394 2 26536 99.0987 355.6468 0010100 224.3142 135.7257 14.12399838326349 1 26536U 00055A 07021.12630308 .00000254 00000-0 16290-3 0 2406 2 26536 99.0987 355.6468 0010100 224.3142 135.7257 14.12399838326349 1 26536U 00055A 07021.12630308 .00000254 00000-0 16290-3 0 2417 2 26536 99.0987 355.6468 0010100 224.3142 135.7257 14.12399838326349 1 26536U 00055A 07021.83470934 .00000336 00000-0 20736-3 0 2424 2 26536 99.0989 356.3663 0010120 222.3042 137.7373 14.12400716326445 1 26536U 00055A 07022.18891217 .00000381 00000-0 23168-3 0 2426 2 26536 99.0993 356.7258 0010146 221.1093 138.9321 14.12401167326497 1 26536U 00055A 07022.18891217 .00000381 00000-0 23168-3 0 2437 2 26536 99.0993 356.7258 0010146 221.1093 138.9321 14.12401167326497 1 26536U 00055A 07022.89731832 .00000277 00000-0 17496-3 0 2443 2 26536 99.0990 357.4449 0010145 219.1873 140.8535 14.12401153326591 1 26536U 00055A 07023.39320335 .00000192 00000-0 12884-3 0 2443 2 26536 99.0994 357.9485 0010161 217.7579 142.2873 14.12401105326661 1 26536U 00055A 07024.10160988 .00000120 00000-0 89932-4 0 2450 2 26536 99.1000 358.6678 0010144 215.6562 144.3895 14.12400860326767 1 26536U 00055A 07024.81001718 -.00000039 00000-0 39818-5 0 2463 2 26536 99.1001 359.3868 0010169 213.6158 146.4334 14.12400201326864 1 26536U 00055A 07025.80178804 -.00000002 00000-0 24086-4 0 2486 2 26536 99.1016 0.3931 0010169 210.9119 149.1463 14.12399999327002 1 26536U 00055A 07026.29767282 -.00000112 00000-0 -35639-4 0 2472 2 26536 99.1003 0.8971 0010175 209.3637 150.6945 14.12399561327075 1 26536U 00055A 07026.29767282 -.00000112 00000-0 -35639-4 0 2483 2 26536 99.1003 0.8971 0010175 209.3637 150.6945 14.12399561327075 1 26536U 00055A 07026.79355832 -.00000195 00000-0 -80531-4 0 2495 2 26536 99.1006 1.4002 0010218 207.8642 152.1973 14.12399106327148 1 26536U 00055A 07027.21860306 -.00000088 00000-0 -22516-4 0 2490 2 26536 99.1005 1.8318 0010239 206.6878 153.3791 14.12399519327208 1 26536U 00055A 07027.85616922 -.00000027 00000-0 10110-4 0 2504 2 26536 99.1006 2.4790 0010307 204.8471 155.2226 14.12399793327292 1 26536U 00055A 07028.42289457 .00000006 00000-0 28153-4 0 2509 2 26536 99.1000 3.0543 0010309 203.2349 156.8378 14.12400134327374 1 26536U 00055A 07028.42289457 .00000006 00000-0 28153-4 0 2510 2 26536 99.1000 3.0543 0010309 203.2349 156.8378 14.12400134327374 1 26536U 00055A 07028.42289457 .00000006 00000-0 28153-4 0 2521 2 26536 99.1000 3.0543 0010309 203.2349 156.8378 14.12400134327374 1 26536U 00055A 07028.42289457 .00000006 00000-0 28153-4 0 2543 2 26536 99.1000 3.0543 0010309 203.2349 156.8378 14.12400134327374 1 26536U 00055A 07029.06046054 .00000204 00000-0 13560-3 0 2554 2 26536 99.1004 3.7015 0010337 201.6272 158.4499 14.12401153327461 1 26536U 00055A 07029.06046054 .00000204 00000-0 13560-3 0 2565 2 26536 99.1004 3.7015 0010337 201.6272 158.4499 14.12401153327461 1 26536U 00055A 07029.06046054 .00000204 00000-0 13560-3 0 2576 2 26536 99.1004 3.7015 0010337 201.6272 158.4499 14.12401153327461 1 26536U 00055A 07029.06046054 .00000204 00000-0 13560-3 0 2587 2 26536 99.1004 3.7015 0010337 201.6272 158.4499 14.12401153327461 1 26536U 00055A 07029.62718502 .00000221 00000-0 14465-3 0 2598 2 26536 99.1000 4.2767 0010382 199.7374 160.3405 14.12401554327540 1 26536U 00055A 07030.19390991 .00000364 00000-0 22238-3 0 2595 2 26536 99.0994 4.8519 0010445 198.2433 161.8403 14.12402634327625 1 26536U 00055A 07030.19390991 .00000364 00000-0 22238-3 0 2607 2 26536 99.0994 4.8519 0010445 198.2433 161.8403 14.12402634327625 1 26536U 00055A 07030.61895262 .00000380 00000-0 23111-3 0 2615 2 26536 99.1001 5.2838 0010429 196.9928 163.0897 14.12403059327689 1 26536U 00055A 07031.11483645 .00000351 00000-0 21514-3 0 2612 2 26536 99.0994 5.7867 0010465 195.5818 164.5021 14.12403246327750 1 26536U 00055A 07031.61072051 .00000327 00000-0 20248-3 0 2629 2 26536 99.1002 6.2906 0010415 194.3019 165.7852 14.12403511327824 1 26536U 00055A 07032.10660437 .00000238 00000-0 15405-3 0 2625 2 26536 99.1000 6.7938 0010393 192.7871 167.3013 14.12403397327891 1 26536U 00055A 07032.67332917 .00000102 00000-0 80144-4 0 2630 2 26536 99.1002 7.3690 0010385 191.4005 168.6898 14.12402885327976 1 26536U 00055A 07033.16921385 -.00000028 00000-0 98410-5 0 2632 2 26536 99.1005 7.8723 0010312 189.8729 170.2207 14.12402363328048 1 26536U 00055A 07033.16921385 -.00000028 00000-0 98410-5 0 2643 2 26536 99.1005 7.8723 0010312 189.8729 170.2207 14.12402363328048 1 26536U 00055A 07033.73593932 -.00000119 00000-0 -39419-4 0 2655 2 26536 99.1000 8.4473 0010403 188.0939 172.0050 14.12401889328124 1 26536U 00055A 07034.30266464 -.00000168 00000-0 -65993-4 0 2656 2 26536 99.1002 9.0227 0010379 186.3704 173.7332 14.12401642328200 1 26536U 00055A 07034.79854922 -.00000190 00000-0 -77794-4 0 2669 2 26536 99.1010 9.5264 0010425 184.8965 175.2098 14.12401321328276 1 26536U 00055A 07035.22359330 -.00000179 00000-0 -72162-4 0 2662 2 26536 99.1011 9.9580 0010444 183.6875 176.4233 14.12401342328334 1 26536U 00055A 07035.71947765 -.00000177 00000-0 -71110-4 0 2672 2 26536 99.1017 10.4616 0010509 182.1325 177.9802 14.12401161328408 1 26536U 00055A 07036.14452165 -.00000091 00000-0 -24443-4 0 2677 2 26536 99.1017 10.8929 0010540 181.1182 178.9993 14.12401521328462 1 26536U 00055A 07036.14452165 -.00000091 00000-0 -24443-4 0 2688 2 26536 99.1017 10.8929 0010540 181.1182 178.9993 14.12401521328462 1 26536U 00055A 07036.14452165 -.00000091 00000-0 -24443-4 0 2699 2 26536 99.1017 10.8929 0010540 181.1182 178.9993 14.12401521328462 1 26536U 00055A 07036.56956503 -.00000070 00000-0 -12930-4 0 2718 2 26536 99.1023 11.3251 0010606 179.6576 180.4608 14.12401556328521 1 26536U 00055A 07037.13629008 .00000039 00000-0 45883-4 0 2715 2 26536 99.1025 11.9005 0010631 178.2414 181.8836 14.12402214328609 1 26536U 00055A 07037.63217354 .00000113 00000-0 86298-4 0 2726 2 26536 99.1022 12.4038 0010645 176.7538 183.3718 14.12402686328679 1 26536U 00055A 07038.48225949 .00000261 00000-0 16646-3 0 2722 2 26536 99.1022 13.2669 0010698 174.5576 185.5730 14.12403889328791 1 26536U 00055A 07038.48225949 .00000261 00000-0 16646-3 0 2733 2 26536 99.1022 13.2669 0010698 174.5576 185.5730 14.12403889328791 1 26536U 00055A 07038.48225949 .00000261 00000-0 16646-3 0 2744 2 26536 99.1022 13.2669 0010698 174.5576 185.5730 14.12403889328791 1 26536U 00055A 07038.48225949 .00000261 00000-0 16646-3 0 2755 2 26536 99.1022 13.2669 0010698 174.5576 185.5730 14.12403889328791 1 26536U 00055A 07038.48225949 .00000261 00000-0 16646-3 0 2766 2 26536 99.1022 13.2669 0010698 174.5576 185.5730 14.12403889328791 1 26536U 00055A 07038.97814278 .00000375 00000-0 22848-3 0 2777 2 26536 99.1023 13.7704 0010740 173.3696 186.7645 14.12404753328862 1 26536U 00055A 07040.11158959 .00000315 00000-0 19562-3 0 2787 2 26536 99.1029 14.9218 0010734 170.1914 189.9441 14.12405234329025 1 26536U 00055A 07040.53663281 .00000204 00000-0 13570-3 0 2793 2 26536 99.1031 15.3538 0010706 169.1969 190.9416 14.12404967329087 1 26536U 00055A 07040.53663281 .00000204 00000-0 13570-3 0 2805 2 26536 99.1031 15.3538 0010706 169.1969 190.9416 14.12404967329087 1 26536U 00055A 07041.38671898 .00000080 00000-0 68110-4 0 2816 2 26536 99.1032 16.2170 0010706 166.7979 193.3469 14.12404789329205 1 26536U 00055A 07041.81176192 -.00000036 00000-0 52317-5 0 2827 2 26536 99.1032 16.6484 0010726 165.6089 194.5346 14.12404075329260 1 26536U 00055A 07042.23680585 -.00000099 00000-0 -28834-4 0 2826 2 26536 99.1032 17.0801 0010687 164.2600 195.8897 14.12403856329326 1 26536U 00055A 07042.66184915 -.00000126 00000-0 -43409-4 0 2836 2 26536 99.1031 17.5119 0010778 163.0881 197.0651 14.12403664329386 1 26536U 00055A 07043.37025480 -.00000158 00000-0 -60577-4 0 2836 2 26536 99.1037 18.2316 0010780 160.9803 199.1786 14.12403455329483 1 26536U 00055A 07043.86613835 -.00000167 00000-0 -65734-4 0 2848 2 26536 99.1032 18.7350 0010787 159.5553 200.6040 14.12403222329555 1 26536U 00055A 07044.22034134 -.00000150 00000-0 -56215-4 0 2844 2 26536 99.1032 19.0947 0010805 158.6313 201.5321 14.12403273329600 1 26536U 00055A 07044.71622502 -.00000096 00000-0 -27043-4 0 2857 2 26536 99.1032 19.5982 0010844 157.2821 202.8842 14.12403404329671 1 26536U 00055A 07045.49547008 .00000018 00000-0 34843-4 0 2858 2 26536 99.1033 20.3893 0010933 155.3553 204.8151 14.12404052329780 1 26536U 00055A 07045.84967246 .00000090 00000-0 73920-4 0 2867 2 26536 99.1030 20.7490 0010933 154.3775 205.7958 14.12404513329832 1 26536U 00055A 07046.27471501 .00000136 00000-0 98518-4 0 2860 2 26536 99.1033 21.1805 0010958 153.2817 206.8940 14.12404941329896 1 26536U 00055A 07046.69975738 .00000248 00000-0 15960-3 0 2871 2 26536 99.1031 21.6121 0011011 152.0744 208.1037 14.12405615329955 1 26536U 00055A 07047.47900067 .00000331 00000-0 20425-3 0 2876 2 26536 99.1031 22.4037 0011025 150.3381 209.8412 14.12406656330068 1 26536U 00055A 07047.90404299 .00000330 00000-0 20355-3 0 2882 2 26536 99.1030 22.8352 0011038 149.1297 211.0517 14.12406901330128 1 26536U 00055A 07048.25824493 .00000370 00000-0 22571-3 0 2889 2 26536 99.1032 23.1948 0011066 148.3222 211.8630 14.12407387330173 1 26536U 00055A 07048.25824493 .00000370 00000-0 22571-3 0 2890 2 26536 99.1032 23.1948 0011066 148.3222 211.8630 14.12407387330173 1 26536U 00055A 07048.25824493 .00000370 00000-0 22571-3 0 2902 2 26536 99.1032 23.1948 0011066 148.3222 211.8630 14.12407387330173 1 26536U 00055A 07048.68328664 .00000234 00000-0 15176-3 0 2922 2 26536 99.1036 23.6267 0011157 147.2506 212.9324 14.12406884330230 1 26536U 00055A 07049.46253108 .00000137 00000-0 99333-4 0 2929 2 26536 99.1038 24.4179 0011080 145.2064 214.9824 14.12406930330346 1 26536U 00055A 07049.46253108 .00000137 00000-0 99333-4 0 2930 2 26536 99.1038 24.4179 0011080 145.2064 214.9824 14.12406930330346 1 26536U 00055A 07049.46253108 .00000137 00000-0 99333-4 0 2941 2 26536 99.1038 24.4179 0011080 145.2064 214.9824 14.12406930330346 1 26536U 00055A 07049.88757341 .00000045 00000-0 49118-4 0 2972 2 26536 99.1038 24.8496 0011108 143.8318 216.3576 14.12406529330400 1 26536U 00055A 07050.24177588 -.00000018 00000-0 15114-4 0 2973 2 26536 99.1037 25.2092 0011097 142.8609 217.3326 14.12406335330459 1 26536U 00055A 07050.66681831 -.00000066 00000-0 -10920-4 0 2985 2 26536 99.1037 25.6407 0011100 141.7069 218.4875 14.12406014330518 1 26536U 00055A 07051.51690390 -.00000205 00000-0 -86076-4 0 2980 2 26536 99.1039 26.5044 0011091 139.1305 221.0691 14.12405261330632 1 26536U 00055A 07052.08362759 -.00000210 00000-0 -88889-4 0 2999 2 26536 99.1043 27.0799 0011060 137.2635 222.9393 14.12405081330719 1 26536U 00055A 07052.57951081 -.00000253 00000-0 -11197-3 0 3002 2 26536 99.1044 27.5836 0011108 135.9976 224.2077 14.12404702330783 1 26536U 00055A 07053.42959599 -.00000158 00000-0 -60525-4 0 3003 2 26536 99.1048 28.4472 0011115 133.7167 226.4943 14.12405047330902 1 26536U 00055A 07053.92547876 -.00000038 00000-0 44273-5 0 3019 2 26536 99.1046 28.9508 0011070 132.3273 227.8863 14.12405571330973 1 26536U 00055A 07054.35052075 .00000036 00000-0 44206-4 0 3011 2 26536 99.1045 29.3824 0011093 131.2164 228.9989 14.12406051331033 1 26536U 00055A 07054.84640297 .00000183 00000-0 12407-3 0 3025 2 26536 99.1047 29.8861 0011077 129.8256 230.3919 14.12406880331106 1 26536U 00055A 07055.27144447 .00000305 00000-0 19038-3 0 3022 2 26536 99.1047 30.3177 0011087 128.9193 231.3003 14.12407759331161 1 26536U 00055A 07055.90900635 .00000383 00000-0 23267-3 0 3037 2 26536 99.1048 30.9660 0011129 127.2940 232.9262 14.12408557331255 1 26536U 00055A 07056.33404756 .00000415 00000-0 24961-3 0 3036 2 26536 99.1048 31.3975 0011162 126.4101 233.8114 14.12409090331312 1 26536U 00055A 07056.82992883 .00000333 00000-0 20518-3 0 3047 2 26536 99.1049 31.9013 0011180 125.1658 235.0533 14.12408957331382 1 26536U 00055A 07057.18413055 .00000307 00000-0 19118-3 0 3041 2 26536 99.1048 32.2612 0011191 124.2295 235.9935 14.12409101331432 1 26536U 00055A 07057.82169254 .00000186 00000-0 12586-3 0 3059 2 26536 99.1048 32.9086 0011177 122.5380 237.6848 14.12408888331527 1 26536U 00055A 07058.31757461 .00000099 00000-0 78795-4 0 3055 2 26536 99.1046 33.4124 0011171 120.9627 239.2622 14.12408671331599 1 26536U 00055A 07058.31757461 .00000099 00000-0 78795-4 0 3066 2 26536 99.1046 33.4124 0011171 120.9627 239.2622 14.12408671331599 1 26536U 00055A 07058.31757461 .00000099 00000-0 78795-4 0 3077 2 26536 99.1046 33.4124 0011171 120.9627 239.2622 14.12408671331599 1 26536U 00055A 07058.31757461 .00000099 00000-0 78795-4 0 3088 2 26536 99.1046 33.4124 0011171 120.9627 239.2622 14.12408671331599 1 26536U 00055A 07058.81345671 -.00000005 00000-0 22387-4 0 3094 2 26536 99.1052 33.9162 0011173 119.6756 240.5500 14.12408154331667 1 26536U 00055A 07059.16765859 -.00000064 00000-0 -96959-5 0 3090 2 26536 99.1051 34.2762 0011180 118.4682 241.7602 14.12407904331713 1 26536U 00055A 07059.52186026 -.00000105 00000-0 -32127-4 0 3107 2 26536 99.1036 34.6357 0011357 117.8871 242.3450 14.12407737331766 1 26536U 00055A 07060.51362458 -.00000185 00000-0 -75213-4 0 3115 2 26536 99.1051 35.6430 0011236 114.9759 245.2577 14.12407181331906 1 26536U 00055A 07060.51362458 -.00000185 00000-0 -75213-4 0 3126 2 26536 99.1051 35.6430 0011236 114.9759 245.2577 14.12407181331906 1 26536U 00055A 07061.50538901 -.00000182 00000-0 -73923-4 0 3138 2 26536 99.1056 36.6504 0011230 112.1978 248.0391 14.12406968332044 1 26536U 00055A 07062.42631246 -.00000040 00000-0 32618-5 0 3146 2 26536 99.1055 37.5857 0011250 109.9527 250.2879 14.12407669332179 1 26536U 00055A 07062.85135367 .00000068 00000-0 61964-4 0 3151 2 26536 99.1051 38.0172 0011232 108.5099 251.7314 14.12408292332230 1 26536U 00055A 07063.27639471 .00000125 00000-0 92510-4 0 3158 2 26536 99.1053 38.4487 0011230 107.6068 252.6348 14.12408685332298 1 26536U 00055A 07063.27639471 .00000125 00000-0 92510-4 0 3169 2 26536 99.1053 38.4487 0011230 107.6068 252.6348 14.12408685332298 1 26536U 00055A 07063.27639471 .00000125 00000-0 92510-4 0 3181 2 26536 99.1053 38.4487 0011230 107.6068 252.6348 14.12408685332298 1 26536U 00055A 07063.84311611 .00000270 00000-0 17147-3 0 3203 2 26536 99.1054 39.0246 0011217 105.9483 254.2958 14.12409685332371 1 26536U 00055A 07064.26815644 .00000383 00000-0 23238-3 0 3208 2 26536 99.1056 39.4562 0011224 105.3308 254.9133 14.12410488332438 1 26536U 00055A 07064.90571690 .00000347 00000-0 21306-3 0 3214 2 26536 99.1061 40.1045 0011198 103.5148 256.7262 14.12410800332522 1 26536U 00055A 07065.33075769 .00000342 00000-0 21012-3 0 3217 2 26536 99.1063 40.5362 0011199 102.6930 257.5499 14.12411079332586 1 26536U 00055A 07065.33075769 .00000342 00000-0 21012-3 0 3228 2 26536 99.1063 40.5362 0011199 102.6930 257.5499 14.12411079332586 1 26536U 00055A 07065.89747826 .00000219 00000-0 14386-3 0 3239 2 26536 99.1063 41.1121 0011196 101.0721 259.1676 14.12410813332663 1 26536U 00055A 07066.46419969 .00000124 00000-0 92326-4 0 3233 2 26536 99.1067 41.6881 0011193 99.4986 260.7438 14.12410657332744 1 26536U 00055A 07067.10176089 .00000068 00000-0 61720-4 0 3240 2 26536 99.1069 42.3359 0011218 97.6110 262.6306 14.12410440332836 1 26536U 00055A 07067.59764227 -.00000042 00000-0 23131-5 0 3259 2 26536 99.1073 42.8401 0011193 96.3345 263.9087 14.12409993332901 1 26536U 00055A 07068.51856513 -.00000009 00000-0 20142-4 0 3253 2 26536 99.1081 43.7768 0011364 94.6070 265.6446 14.12410185333030 1 26536U 00055A 07068.51856513 -.00000009 00000-0 20142-4 0 3264 2 26536 99.1081 43.7768 0011364 94.6070 265.6446 14.12410185333030 1 26536U 00055A 07068.51856513 -.00000009 00000-0 20142-4 0 3275 2 26536 99.1081 43.7768 0011364 94.6070 265.6446 14.12410185333030 1 26536U 00055A 07069.01444508 -.00000233 00000-0 -10131-3 0 3285 2 26536 99.1076 44.2801 0011255 92.2029 268.0349 14.12408767333105 1 26536U 00055A 07069.58116827 -.00000222 00000-0 -95467-4 0 3292 2 26536 99.1076 44.8559 0011278 90.7627 269.4843 14.12408652333188 1 26536U 00055A 07070.14788974 -.00000188 00000-0 -76713-4 0 3298 2 26536 99.1077 45.4317 0011270 89.0647 271.1826 14.12408672333265 1 26536U 00055A 07070.14788974 -.00000188 00000-0 -76713-4 0 3300 2 26536 99.1077 45.4317 0011270 89.0647 271.1826 14.12408672333265 1 26536U 00055A 07070.57293072 -.00000117 00000-0 -38345-4 0 3319 2 26536 99.1080 45.8638 0011305 88.0035 272.2452 14.12408986333320 1 26536U 00055A 07071.06881155 .00000029 00000-0 40922-4 0 3313 2 26536 99.1079 46.3677 0011255 86.6860 273.5635 14.12409686333393 1 26536U 00055A 07071.63553192 .00000127 00000-0 94003-4 0 3322 2 26536 99.1077 46.9434 0011291 85.0636 275.1843 14.12410316333472 1 26536U 00055A 07072.06057215 .00000255 00000-0 16321-3 0 3323 2 26536 99.1075 47.3752 0011239 84.2379 276.0112 14.12411157333535 1 26536U 00055A 07072.55645176 .00000326 00000-0 20149-3 0 3339 2 26536 99.1072 47.8790 0011274 83.0787 277.1683 14.12411868333600 1 26536U 00055A 07073.05233152 .00000393 00000-0 23805-3 0 3338 2 26536 99.1070 48.3827 0011246 81.9276 278.3185 14.12412536333674 1 26536U 00055A 07073.61905105 .00000377 00000-0 22932-3 0 3347 2 26536 99.1071 48.9584 0011237 80.3932 279.8507 14.12412941333756 1 26536U 00055A 07074.04409083 .00000339 00000-0 20887-3 0 3344 2 26536 99.1070 49.3901 0011232 79.4885 280.7542 14.12413054333817 1 26536U 00055A 07074.61081059 .00000234 00000-0 15191-3 0 3353 2 26536 99.1077 49.9663 0011221 77.6649 282.5756 14.12412906333891 1 26536U 00055A 07075.03585077 .00000164 00000-0 11376-3 0 3352 2 26536 99.1080 50.3982 0011240 76.4754 283.7651 14.12412757333958 1 26536U 00055A 07075.88593114 .00000000 00000-0 25091-4 0 3366 2 26536 99.1074 51.2615 0011198 74.1574 286.0822 14.12412202334076 1 26536U 00055A 07076.24013129 -.00000055 00000-0 -46888-5 0 3371 2 26536 99.1075 51.6217 0011206 73.0805 287.1586 14.12411967334126 1 26536U 00055A 07076.73601147 -.00000114 00000-0 -36842-4 0 3383 2 26536 99.1081 52.1258 0011208 71.9901 288.2480 14.12411629334197 1 26536U 00055A 07077.09021176 -.00000158 00000-0 -60438-4 0 3387 2 26536 99.1080 52.4856 0011225 70.9896 289.2477 14.12411328334243 1 26536U 00055A 07077.72777234 -.00000165 00000-0 -64280-4 0 3398 2 26536 99.1087 53.1337 0011222 69.3981 290.8399 14.12411187334330 1 26536U 00055A 07078.15281245 -.00000138 00000-0 -50046-4 0 3393 2 26536 99.1087 53.5656 0011204 68.3117 291.9252 14.12411189334396 1 26536U 00055A 07078.15281245 -.00000138 00000-0 -50046-4 0 3405 2 26536 99.1087 53.5656 0011204 68.3117 291.9252 14.12411189334396 1 26536U 00055A 07078.71953264 -.00000165 00000-0 -64569-4 0 3410 2 26536 99.1090 54.1416 0011209 66.7672 293.4675 14.12410953334477 1 26536U 00055A 07079.42793270 -.00000071 00000-0 -13461-4 0 3419 2 26536 99.1085 54.8611 0011160 65.2113 295.0240 14.12411453334578 1 26536U 00055A 07080.13633244 .00000080 00000-0 68505-4 0 3421 2 26536 99.1088 55.5811 0011162 63.1429 297.0916 14.12412263334673 1 26536U 00055A 07080.70305152 .00000212 00000-0 13963-3 0 3433 2 26536 99.1089 56.1573 0011203 61.5096 298.7224 14.12413093334755 1 26536U 00055A 07081.05725071 .00000257 00000-0 16420-3 0 3438 2 26536 99.1092 56.5170 0011174 60.6287 299.6011 14.12413499334805 1 26536U 00055A 07081.62396966 .00000304 00000-0 18993-3 0 3449 2 26536 99.1096 57.0935 0011186 59.2172 301.0107 14.12414059334889 1 26536U 00055A 07082.11984858 .00000326 00000-0 20179-3 0 3440 2 26536 99.1096 57.5973 0011158 57.8904 302.3353 14.12414484334959 1 26536U 00055A 07082.47404772 .00000288 00000-0 18081-3 0 3458 2 26536 99.1099 57.9579 0011152 56.9286 303.2953 14.12414581335006 1 26536U 00055A 07082.89908679 .00000220 00000-0 14430-3 0 3460 2 26536 99.1100 58.3900 0011192 55.6222 304.5987 14.12414513335064 1 26536U 00055A 07083.39496606 .00000143 00000-0 10232-3 0 3468 2 26536 99.1099 58.8939 0011160 54.2548 305.9653 14.12414431335131 1 26536U 00055A 07083.89084512 .00000051 00000-0 52552-4 0 3473 2 26536 99.1101 59.3981 0011187 52.9101 307.3057 14.12413991335209 1 26536U 00055A 07084.24504514 .00000028 00000-0 39902-4 0 3470 2 26536 99.1101 59.7579 0011182 51.9134 308.3039 14.12413932335257 1 26536U 00055A 07084.74092435 -.00000081 00000-0 -19147-4 0 3480 2 26536 99.1104 60.2621 0011156 50.6081 309.6055 14.12413400335323 1 26536U 00055A 07085.09512427 -.00000115 00000-0 -37085-4 0 3486 2 26536 99.1104 60.6223 0011168 49.6095 310.6046 14.12413259335370 1 26536U 00055A 07085.66184356 -.00000176 00000-0 -70458-4 0 3494 2 26536 99.1109 61.1985 0011139 48.3648 311.8466 14.12412828335453 1 26536U 00055A 07086.58276258 -.00000177 00000-0 -70699-4 0 3497 2 26536 99.1107 62.1344 0011096 46.0008 314.2079 14.12412692335588 1 26536U 00055A 07087.07864204 -.00000056 00000-0 -51861-5 0 3505 2 26536 99.1110 62.6386 0011085 44.5127 315.6960 14.12413197335659 1 26536U 00055A 07087.57452082 -.00000014 00000-0 17399-4 0 3518 2 26536 99.1108 63.1422 0011080 43.3612 316.8441 14.12413450335721 1 26536U 00055A 07088.07039979 .00000059 00000-0 57135-4 0 3510 2 26536 99.1108 63.6463 0011025 42.0239 318.1800 14.12413884335793 1 26536U 00055A 07088.56627835 .00000173 00000-0 11881-3 0 3523 2 26536 99.1108 64.1500 0011038 40.7769 319.4247 14.12414579335867 1 26536U 00055A 07089.55803473 .00000322 00000-0 19943-3 0 3520 2 26536 99.1103 65.1578 0010983 38.2493 321.9468 14.12415902336003 1 26536U 00055A 07089.55803473 .00000322 00000-0 19943-3 0 3531 2 26536 99.1103 65.1578 0010983 38.2493 321.9468 14.12415902336003 1 26536U 00055A 07090.47895110 .00000329 00000-0 20339-3 0 3542 2 26536 99.1102 66.0937 0010945 35.7924 324.3983 14.12416648336131 1 26536U 00055A 07090.97482899 .00000312 00000-0 19431-3 0 3557 2 26536 99.1103 66.5974 0010973 34.2951 325.8909 14.12416829336206 1 26536U 00055A 07091.47070725 .00000278 00000-0 17559-3 0 3554 2 26536 99.1106 67.1018 0010983 32.8981 327.2869 14.12417048336275 1 26536U 00055A 07091.47070725 .00000278 00000-0 17559-3 0 3565 2 26536 99.1106 67.1018 0010983 32.8981 327.2869 14.12417048336275 1 26536U 00055A 07091.89574545 .00000171 00000-0 11784-3 0 3577 2 26536 99.1106 67.5337 0010973 31.7817 328.3985 14.12416676336332 1 26536U 00055A 07092.24994460 .00000125 00000-0 92625-4 0 3572 2 26536 99.1107 67.8937 0010985 30.8164 329.3641 14.12416608336380 1 26536U 00055A 07092.88750221 -.00000026 00000-0 10908-4 0 3583 2 26536 99.1109 68.5422 0010969 29.1809 330.9932 14.12415925336470 1 26536U 00055A 07093.45422102 -.00000125 00000-0 -42476-4 0 3587 2 26536 99.1110 69.1183 0010944 27.6488 332.5253 14.12415506336550 1 26536U 00055A 07093.45422102 -.00000125 00000-0 -42476-4 0 3598 2 26536 99.1110 69.1183 0010944 27.6488 332.5253 14.12415506336550 1 26536U 00055A 07094.51681790 -.00000158 00000-0 -60572-4 0 3601 2 26536 99.1114 70.1985 0010920 24.7070 335.4622 14.12415182336704 1 26536U 00055A 07095.01269642 -.00000167 00000-0 -65673-4 0 3613 2 26536 99.1111 70.7024 0010857 23.3186 336.8474 14.12414945336776 1 26536U 00055A 07097.70460937 .00000175 00000-0 11988-3 0 3628 2 26536 99.1116 73.4396 0010748 16.0383 344.1304 14.12416839337151 1 26536U 00055A 07098.34216311 .00000357 00000-0 21833-3 0 3637 2 26536 99.1117 74.0879 0010679 14.1934 345.9592 14.12418207337248 1 26536U 00055A 07098.83803934 .00000394 00000-0 23835-3 0 3640 2 26536 99.1116 74.5923 0010727 12.8183 347.3247 14.12418668337319 1 26536U 00055A 07099.19223758 .00000369 00000-0 22486-3 0 3643 2 26536 99.1116 74.9525 0010677 11.9242 348.2175 14.12418817337362 1 26536U 00055A 07099.61727521 .00000280 00000-0 17660-3 0 3658 2 26536 99.1117 75.3850 0010655 10.7162 349.4216 14.12418663337428 1 26536U 00055A 07100.67986974 .00000125 00000-0 92688-4 0 3658 2 26536 99.1124 76.4659 0010679 7.7228 352.4082 14.12418435337578 1 26536U 00055A 07101.52994622 -.00000077 00000-0 -16779-4 0 3668 2 26536 99.1118 77.3298 0010645 5.3866 354.7413 14.12417664337694 1 26536U 00055A 07102.16750323 -.00000115 00000-0 -37150-4 0 3677 2 26536 99.1122 77.9780 0010677 3.6308 356.4931 14.12417453337788 1 26536U 00055A 07102.87590008 -.00000155 00000-0 -58953-4 0 3686 2 26536 99.1122 78.6981 0010629 1.6882 358.4317 14.12417126337889 1 26536U 00055A 07103.30093831 -.00000171 00000-0 -67801-4 0 3687 2 26536 99.1120 79.1300 0010612 0.5325 359.5853 14.12416961337940 1 26536U 00055A 07103.30093831 -.00000171 00000-0 -67801-4 0 3698 2 26536 99.1120 79.1300 0010612 0.5325 359.5853 14.12416961337940 1 26536U 00055A 07103.72597652 -.00000171 00000-0 -67557-4 0 3704 2 26536 99.1124 79.5622 0010589 359.3448 0.7707 14.12416821338005 1 26536U 00055A 07104.50521298 -.00000106 00000-0 -32302-4 0 3702 2 26536 99.1127 80.3546 0010521 357.1841 2.9286 14.12417086338114 1 26536U 00055A 07105.42612754 .00000112 00000-0 85614-4 0 3712 2 26536 99.1123 81.2906 0010494 354.4942 5.6133 14.12418388338242 1 26536U 00055A 07105.85116482 .00000227 00000-0 14823-3 0 3727 2 26536 99.1122 81.7225 0010545 353.2998 6.8047 14.12419103338305 1 26536U 00055A 07106.27620197 .00000333 00000-0 20554-3 0 3723 2 26536 99.1119 82.1545 0010440 351.9367 8.1663 14.12419870338366 1 26536U 00055A 07106.70123865 .00000343 00000-0 21075-3 0 3732 2 26536 99.1119 82.5866 0010492 350.8406 9.2560 14.12420146338428 1 26536U 00055A 07107.48047352 .00000326 00000-0 20160-3 0 3739 2 26536 99.1112 83.3789 0010398 348.3812 11.7128 14.12420739338530 1 26536U 00055A 07107.48047352 .00000326 00000-0 20160-3 0 3740 2 26536 99.1112 83.3789 0010398 348.3812 11.7128 14.12420739338530 1 26536U 00055A 07108.04718930 .00000283 00000-0 17852-3 0 3757 2 26536 99.1115 83.9552 0010366 346.8161 13.2722 14.12420851338613 1 26536U 00055A 07108.54306606 .00000180 00000-0 12270-3 0 3761 2 26536 99.1118 84.4598 0010418 345.3089 14.7758 14.12420627338686 1 26536U 00055A 07109.10978250 .00000075 00000-0 65861-4 0 3762 2 26536 99.1120 85.0360 0010419 344.0499 16.0305 14.12420239338766 1 26536U 00055A 07109.53482043 .00000018 00000-0 34577-4 0 3777 2 26536 99.1121 85.4684 0010416 342.8014 17.2794 14.12420034338821 1 26536U 00055A 07109.88901831 -.00000064 00000-0 -95184-5 0 3782 2 26536 99.1122 85.8286 0010393 341.8669 18.2116 14.12419688338870 1 26536U 00055A 07110.31405594 -.00000116 00000-0 -37719-4 0 3784 2 26536 99.1122 86.2606 0010348 340.6640 19.4130 14.12419407338932 1 26536U 00055A 07110.80993313 -.00000261 00000-0 -11616-3 0 3798 2 26536 99.1121 86.7650 0010261 339.3562 20.7158 14.12418497339009 1 26536U 00055A 07111.23497159 -.00000257 00000-0 -11414-3 0 3794 2 26536 99.1122 87.1972 0010281 338.3107 21.7635 14.12418455339069 1 26536U 00055A 07111.73084885 -.00000231 00000-0 -99913-4 0 3802 2 26536 99.1127 87.7019 0010279 337.0942 22.9771 14.12418358339136 1 26536U 00055A 07112.51008406 -.00000093 00000-0 -25254-4 0 3807 2 26536 99.1133 88.4946 0010138 334.7553 25.3134 14.12418910339242 1 26536U 00055A 07112.93512145 -.00000032 00000-0 76619-5 0 3818 2 26536 99.1132 88.9268 0010165 333.4881 26.5782 14.12419191339304 1 26536U 00055A 07113.28931915 -.00000014 00000-0 17697-4 0 3817 2 26536 99.1132 89.2869 0010135 332.3997 27.6644 14.12419332339359 1 26536U 00055A 07113.78519604 .00000063 00000-0 59403-4 0 3824 2 26536 99.1131 89.7912 0010097 331.1701 28.8922 14.12419754339427 1 26536U 00055A 07114.13939363 .00000203 00000-0 13519-3 0 3825 2 26536 99.1131 90.1513 0010066 329.7770 30.2861 14.12420601339472 1 26536U 00055A 07114.56442991 .00000250 00000-0 16066-3 0 3831 2 26536 99.1132 90.5837 0010033 328.6724 31.3855 14.12421028339533 1 26536U 00055A 07115.48534261 .00000293 00000-0 18393-3 0 3837 2 26536 99.1129 91.5200 0010011 325.9295 34.1230 14.12421924339660 1 26536U 00055A 07116.05205826 .00000348 00000-0 21376-3 0 3840 2 26536 99.1129 92.0962 0009952 324.1116 35.9391 14.12422492339743 1 26536U 00055A 07116.54793412 .00000324 00000-0 20063-3 0 3854 2 26536 99.1129 92.6005 0009936 322.6522 37.3951 14.12422719339811 1 26536U 00055A 07117.46884691 .00000162 00000-0 11278-3 0 3854 2 26536 99.1126 93.5370 0009962 320.0871 39.9554 14.12422554339949 1 26536U 00055A 07117.46884691 .00000162 00000-0 11278-3 0 3865 2 26536 99.1126 93.5370 0009962 320.0871 39.9554 14.12422554339949 1 26536U 00055A 07117.96472317 .00000055 00000-0 54880-4 0 3877 2 26536 99.1126 94.0414 0009939 318.9013 41.1376 14.12422150340011 1 26536U 00055A 07118.38976052 .00000020 00000-0 35650-4 0 3875 2 26536 99.1127 94.4735 0009922 317.5785 42.4619 14.12422102340072 1 26536U 00055A 07118.74395780 -.00000048 00000-0 -95989-6 0 3884 2 26536 99.1127 94.8335 0009918 316.5863 43.4499 14.12421647340129 1 26536U 00055A 07119.52319279 -.00000164 00000-0 -63803-4 0 3887 2 26536 99.1131 95.6261 0009872 314.2842 45.7511 14.12421089340234 1 26536U 00055A 07120.37326670 -.00000147 00000-0 -54533-4 0 3897 2 26536 99.1131 96.4905 0009833 311.7206 48.3130 14.12421203340358 1 26536U 00055A 07120.79830364 -.00000125 00000-0 -42517-4 0 3900 2 26536 99.1135 96.9231 0009867 310.5916 49.4382 14.12421044340412 1 26536U 00055A 07121.22334103 -.00000116 00000-0 -37538-4 0 3906 2 26536 99.1133 97.3551 0009852 309.2163 50.8142 14.12421072340470 1 26536U 00055A 07121.71921749 -.00000056 00000-0 -53821-5 0 3916 2 26536 99.1136 97.8598 0009866 307.8384 52.1908 14.12421319340540 1 26536U 00055A 07122.07341474 .00000001 00000-0 25606-4 0 3914 2 26536 99.1136 98.2198 0009838 306.5646 53.4641 14.12421671340591 1 26536U 00055A 07122.64013022 .00000112 00000-0 85951-4 0 3925 2 26536 99.1133 98.7960 0009843 304.9313 55.0964 14.12422375340676 1 26536U 00055A 07123.06516633 .00000208 00000-0 13794-3 0 3929 2 26536 99.1130 99.2281 0009810 303.3312 56.6945 14.12423020340732 1 26536U 00055A 07123.70272060 .00000309 00000-0 19233-3 0 3930 2 26536 99.1132 99.8766 0009777 301.5250 58.4982 14.12423825340825 1 26536U 00055A 07124.48195279 .00000340 00000-0 20927-3 0 3939 2 26536 99.1130 100.6693 0009809 298.9879 61.0300 14.12424599340930 1 26536U 00055A 07125.47370405 .00000210 00000-0 13864-3 0 3944 2 26536 99.1131 101.6783 0009805 296.1728 63.8424 14.12424631341071 1 26536U 00055A 07125.96957971 .00000164 00000-0 11409-3 0 3959 2 26536 99.1127 102.1825 0009782 294.8026 65.2114 14.12424634341142 1 26536U 00055A 07126.39461608 .00000076 00000-0 66138-4 0 3956 2 26536 99.1130 102.6149 0009794 293.4715 66.5419 14.12424422341207 1 26536U 00055A 07126.74881305 -.00000019 00000-0 14863-4 0 3962 2 26536 99.1131 102.9750 0009766 292.2020 67.8085 14.12423860341257 1 26536U 00055A 07127.17385002 -.00000084 00000-0 -20312-4 0 3962 2 26536 99.1134 103.4076 0009763 291.2917 68.7198 14.12423591341311 1 26536U 00055A 07127.59888677 -.00000184 00000-0 -74639-4 0 3977 2 26536 99.1139 103.8402 0009736 289.6753 70.3356 14.12423031341372 1 26536U 00055A 07128.09476312 -.00000171 00000-0 -67668-4 0 3972 2 26536 99.1138 104.3446 0009751 288.5378 71.4739 14.12423025341441 1 26536U 00055A 07128.59063917 -.00000219 00000-0 -93489-4 0 3984 2 26536 99.1140 104.8490 0009717 286.7730 73.2373 14.12422676341515 1 26536U 00055A 07129.44071249 -.00000165 00000-0 -64214-4 0 3980 2 26536 99.1142 105.7136 0009700 284.0717 75.9387 14.12422799341635 1 26536U 00055A 07129.93658852 -.00000101 00000-0 -29798-4 0 3994 2 26536 99.1141 106.2181 0009702 282.4136 77.5966 14.12423005341709 1 26536U 00055A 07130.43246438 -.00000023 00000-0 12446-4 0 3998 2 26536 99.1141 106.7222 0009660 280.4549 79.5562 14.12423429341770 1 26536U 00055A 07131.49505435 .00000184 00000-0 12489-3 0 4006 2 26536 99.1143 107.8031 0009635 276.9748 83.0347 14.12424764341926 1 26536U 00055A 07131.49505435 .00000184 00000-0 12489-3 0 4017 2 26536 99.1143 107.8031 0009635 276.9748 83.0347 14.12424764341926 1 26536U 00055A 07131.49505435 .00000184 00000-0 12489-3 0 4028 2 26536 99.1143 107.8031 0009635 276.9748 83.0347 14.12424764341926 1 26536U 00055A 07132.41596465 .00000368 00000-0 22453-3 0 4031 2 26536 99.1143 108.7396 0009678 274.2364 85.7713 14.12426366342053 1 26536U 00055A 07132.84100014 .00000420 00000-0 25254-3 0 4041 2 26536 99.1140 109.1716 0009642 273.1743 86.8315 14.12426854342110 1 26536U 00055A 07133.26603592 .00000425 00000-0 25532-3 0 4041 2 26536 99.1140 109.6038 0009643 271.4430 88.5648 14.12427306342174 1 26536U 00055A 07133.69107114 .00000277 00000-0 17508-3 0 4057 2 26536 99.1141 110.0365 0009665 270.5404 89.4609 14.12426723342235 1 26536U 00055A 07134.39946510 .00000171 00000-0 11770-3 0 4054 2 26536 99.1135 110.7568 0009645 268.7418 91.2653 14.12426811342331 1 26536U 00055A 07134.89533994 .00000078 00000-0 67322-4 0 4069 2 26536 99.1130 111.2613 0009642 267.4679 92.5358 14.12426451342409 1 26536U 00055A 07135.46205494 -.00000048 00000-0 -11302-5 0 4061 2 26536 99.1132 111.8379 0009649 266.0264 93.9778 14.12425932342480 1 26536U 00055A 07136.45380676 -.00000164 00000-0 -63836-4 0 4075 2 26536 99.1129 112.8467 0009637 262.9784 97.0295 14.12425258342620 1 26536U 00055A 07137.37471842 -.00000171 00000-0 -67358-4 0 4085 2 26536 99.1129 113.7831 0009648 260.2117 99.7968 14.12425089342750 1 26536U 00055A 07138.50814829 -.00000118 00000-0 -38621-4 0 4090 2 26536 99.1130 114.9364 0009650 256.4662 103.5441 14.12425124342919 1 26536U 00055A 07138.50814829 -.00000118 00000-0 -38621-4 0 4102 2 26536 99.1130 114.9364 0009650 256.4662 103.5441 14.12425124342919 1 26536U 00055A 07139.49989866 -.00000022 00000-0 12892-4 0 4111 2 26536 99.1136 115.9454 0009650 252.9238 107.0868 14.12425624343059 1 26536U 00055A 07139.92493497 .00000132 00000-0 96521-4 0 4122 2 26536 99.1134 116.3775 0009713 252.0532 107.9621 14.12426497343118 1 26536U 00055A 07140.42080938 .00000204 00000-0 13562-3 0 4124 2 26536 99.1139 116.8821 0009731 250.2672 109.7483 14.12427184343182 1 26536U 00055A 07140.84584441 .00000331 00000-0 20451-3 0 4135 2 26536 99.1140 117.3141 0009687 249.3180 110.6956 14.12427910343248 1 26536U 00055A 07141.41255827 .00000350 00000-0 21458-3 0 4131 2 26536 99.1146 117.8906 0009727 247.2344 112.7819 14.12428502343320 1 26536U 00055A 07141.90843239 .00000335 00000-0 20643-3 0 4144 2 26536 99.1149 118.3952 0009709 245.9285 114.0853 14.12428703343392 1 26536U 00055A 07142.26262877 .00000335 00000-0 20649-3 0 4143 2 26536 99.1149 118.7553 0009717 244.8212 115.1953 14.12428969343443 1 26536U 00055A 07142.82934228 .00000255 00000-0 16315-3 0 4158 2 26536 99.1152 119.3318 0009755 242.7494 117.2661 14.12428838343527 1 26536U 00055A 07143.25437796 .00000119 00000-0 89489-4 0 4156 2 26536 99.1151 119.7642 0009723 241.6388 118.3772 14.12428388343586 1 26536U 00055A 07143.75025319 -.00000038 00000-0 44224-5 0 4166 2 26536 99.1154 120.2687 0009759 239.9634 120.0535 14.12427634343656 1 26536U 00055A 07144.10445024 -.00000063 00000-0 -89371-5 0 4166 2 26536 99.1154 120.6290 0009751 238.9742 121.0472 14.12427572343709 1 26536U 00055A 07144.60032519 -.00000138 00000-0 -49557-4 0 4177 2 26536 99.1156 121.1336 0009779 237.1620 122.8598 14.12427131343770 1 26536U 00055A 07145.45039707 -.00000166 00000-0 -65057-4 0 4171 2 26536 99.1154 121.9978 0009771 234.6097 125.4164 14.12426945343893 1 26536U 00055A 07145.45039707 -.00000166 00000-0 -65057-4 0 4182 2 26536 99.1154 121.9978 0009771 234.6097 125.4164 14.12426945343893 1 26536U 00055A 07145.59207566 .00000118 00000-0 89047-4 0 4198 2 26536 99.1147 122.1407 0009725 234.9908 125.0398 14.12428609343915 1 26536U 00055A 07146.44214712 -.00000132 00000-0 -46656-4 0 4203 2 26536 99.1147 123.0065 0009824 231.5870 128.4422 14.12426988344033 1 26536U 00055A 07146.86718299 -.00000046 00000-0 92406-7 0 4219 2 26536 99.1145 123.4389 0009831 230.3996 129.6323 14.12427338344097 1 26536U 00055A 07147.29221850 -.00000016 00000-0 16509-4 0 4213 2 26536 99.1146 123.8712 0009866 228.7607 131.2732 14.12427564344151 1 26536U 00055A 07147.78809320 .00000032 00000-0 42533-4 0 4225 2 26536 99.1144 124.3753 0009846 227.4504 132.5838 14.12427786344225 1 26536U 00055A 07148.56732424 .00000176 00000-0 12035-3 0 4224 2 26536 99.1140 125.1678 0009889 225.0707 134.9666 14.12428842344333 1 26536U 00055A 07149.41739398 .00000345 00000-0 21174-3 0 4239 2 26536 99.1139 126.0326 0009932 222.7144 137.3271 14.12430307344450 1 26536U 00055A 07149.91326774 .00000360 00000-0 21995-3 0 4243 2 26536 99.1135 126.5368 0009904 221.2421 138.7990 14.12430683344526 1 26536U 00055A 07150.40914193 .00000335 00000-0 20682-3 0 4241 2 26536 99.1140 127.0417 0009964 219.8549 140.1901 14.12431006344599 1 26536U 00055A 07150.90501558 .00000301 00000-0 18803-3 0 4259 2 26536 99.1139 127.5464 0009919 218.5424 141.5019 14.12431122344664 1 26536U 00055A 07151.40088981 .00000209 00000-0 13842-3 0 4250 2 26536 99.1139 128.0507 0009904 217.4050 142.6416 14.12431010344732 1 26536U 00055A 07151.82593486 .00000218 00000-0 11829-3 0 4261 2 26536 99.1156 128.4834 0009846 216.7358 143.3609 14.12430673344798 1 26536U 00055A 07151.96760311 .00000047 00000-0 50579-4 0 4265 2 26536 99.1138 128.6274 0009834 215.6812 144.3648 14.12430330344815 1 26536U 00055A 07152.39263917 -.00000029 00000-0 95845-5 0 4271 2 26536 99.1140 129.0597 0009876 214.4085 145.6444 14.12430084344876 1 26536U 00055A 07153.38438851 -.00000189 00000-0 -77509-4 0 4287 2 26536 99.1143 130.0686 0009846 211.4906 148.5669 14.12429193345013 1 26536U 00055A 07153.38438851 -.00000189 00000-0 -77509-4 0 4298 2 26536 99.1143 130.0686 0009846 211.4906 148.5669 14.12429193345013 1 26536U 00055A 07154.16362068 -.00000219 00000-0 -93406-4 0 4301 2 26536 99.1144 130.8616 0009973 209.0859 150.9787 14.12428791345129 1 26536U 00055A 07155.43872648 -.00000121 00000-0 -40345-4 0 4319 2 26536 99.1146 132.1587 0010090 204.8952 155.1758 14.12428968345303 1 26536U 00055A 07155.43872648 -.00000121 00000-0 -40345-4 0 4320 2 26536 99.1146 132.1587 0010090 204.8952 155.1758 14.12428968345303 1 26536U 00055A 07156.43047471 .00000032 00000-0 42307-4 0 4339 2 26536 99.1149 133.1678 0010168 201.9405 158.1351 14.12429800345448 1 26536U 00055A 07156.43047471 .00000032 00000-0 42307-4 0 4340 2 26536 99.1149 133.1678 0010168 201.9405 158.1351 14.12429800345448 1 26536U 00055A 07156.92634874 .00000158 00000-0 11054-3 0 4357 2 26536 99.1147 133.6722 0010211 200.7912 159.2877 14.12430527345511 1 26536U 00055A 07157.42222225 .00000239 00000-0 15468-3 0 4359 2 26536 99.1150 134.1766 0010252 199.3074 160.7737 14.12431230345587 1 26536U 00055A 07157.84725647 .00000366 00000-0 22317-3 0 4364 2 26536 99.1150 134.6091 0010267 198.0728 162.0097 14.12432053345646 1 26536U 00055A 07158.48480747 .00000357 00000-0 21831-3 0 4364 2 26536 99.1154 135.2578 0010323 195.8708 164.2111 14.12432427345739 1 26536U 00055A 07158.48480747 .00000357 00000-0 21831-3 0 4375 2 26536 99.1154 135.2578 0010323 195.8708 164.2111 14.12432427345739 1 26536U 00055A 07159.40571554 .00000282 00000-0 17773-3 0 4383 2 26536 99.1150 136.1948 0010271 193.7634 166.3250 14.12432911345862 1 26536U 00055A 07159.83074997 .00000253 00000-0 16211-3 0 4394 2 26536 99.1152 136.6271 0010295 192.5171 167.5732 14.12432928345920 1 26536U 00055A 07160.25578452 .00000136 00000-0 98517-4 0 4397 2 26536 99.1151 137.0594 0010277 191.2357 168.8560 14.12432576345982 1 26536U 00055A 07160.68081942 -.00000025 00000-0 11230-4 0 4404 2 26536 99.1149 137.4917 0010350 190.0842 170.0091 14.12431807346048 1 26536U 00055A 07161.46005044 -.00000154 00000-0 -58229-4 0 4403 2 26536 99.1150 138.2843 0010322 187.9306 172.1699 14.12431274346153 1 26536U 00055A 07161.88508534 -.00000131 00000-0 -45952-4 0 4416 2 26536 99.1149 138.7166 0010344 186.6957 173.4079 14.12431266346210 1 26536U 00055A 07162.31012013 -.00000161 00000-0 -61939-4 0 4413 2 26536 99.1148 139.1491 0010385 185.2983 174.8080 14.12431096346278 1 26536U 00055A 07162.87683330 -.00000135 00000-0 -48181-4 0 4426 2 26536 99.1146 139.7254 0010399 183.7857 176.3244 14.12431095346354 1 26536U 00055A 07163.30186805 -.00000094 00000-0 -26098-4 0 4427 2 26536 99.1143 140.1576 0010407 182.6164 177.4966 14.12431276346414 1 26536U 00055A 07163.72690263 -.00000111 00000-0 -34878-4 0 4437 2 26536 99.1146 140.5899 0010428 181.3784 178.7345 14.12431007346479 1 26536U 00055A 07164.08109868 -.00000051 00000-0 -23559-5 0 4431 2 26536 99.1145 140.9501 0010459 180.4505 179.6678 14.12431312346521 1 26536U 00055A 07164.57697224 .00000013 00000-0 31982-4 0 4448 2 26536 99.1147 141.4547 0010501 178.7900 181.3312 14.12431639346590 1 26536U 00055A 07165.42704061 .00000147 00000-0 10470-3 0 4447 2 26536 99.1145 142.3196 0010597 176.5611 183.5661 14.12432680346710 1 26536U 00055A 07165.85207448 .00000239 00000-0 15423-3 0 4457 2 26536 99.1147 142.7520 0010547 175.2956 184.8318 14.12433226346776 1 26536U 00055A 07166.27710862 .00000287 00000-0 18048-3 0 4452 2 26536 99.1146 143.1843 0010602 174.2182 185.9134 14.12433767346835 1 26536U 00055A 07166.77298124 .00000359 00000-0 21961-3 0 4468 2 26536 99.1149 143.6890 0010577 172.5897 187.5433 14.12434382346902 1 26536U 00055A 07167.12717609 .00000392 00000-0 23753-3 0 4460 2 26536 99.1147 144.0494 0010598 171.6869 188.4492 14.12434867346955 1 26536U 00055A 07167.90640454 .00000270 00000-0 17110-3 0 4486 2 26536 99.1152 144.8429 0010617 169.3516 190.7866 14.12434797347068 1 26536U 00055A 07168.47311646 .00000144 00000-0 10310-3 0 4471 2 26536 99.1151 145.4194 0010621 167.8411 192.2993 14.12434476347146 1 26536U 00055A 07168.89815077 .00000096 00000-0 76917-4 0 4487 2 26536 99.1151 145.8520 0010636 166.6258 193.5180 14.12434305347205 1 26536U 00055A 07169.32318498 .00000009 00000-0 29855-4 0 4484 2 26536 99.1151 146.2842 0010647 165.3553 194.7916 14.12434035347269 1 26536U 00055A 07170.24409302 -.00000184 00000-0 -74495-4 0 4499 2 26536 99.1155 147.2212 0010678 162.7004 197.4523 14.12432967347391 1 26536U 00055A 07170.59828847 -.00000232 00000-0 -10043-3 0 4500 2 26536 99.1156 147.5818 0010687 161.6969 198.4576 14.12432570347440 1 26536U 00055A 07171.94423080 -.00000200 00000-0 -83085-4 0 4513 2 26536 99.1163 148.9510 0010787 158.3516 201.8132 14.12432386347637 1 26536U 00055A 07172.86513799 -.00000069 00000-0 -12205-4 0 4522 2 26536 99.1165 149.8878 0010848 155.8902 204.2799 14.12432904347761 1 26536U 00055A 07173.78604414 .00000159 00000-0 11124-3 0 4536 2 26536 99.1164 150.8245 0010960 153.4192 206.7564 14.12434263347891 1 26536U 00055A 07174.21107759 .00000311 00000-0 19363-3 0 4538 2 26536 99.1164 151.2568 0011007 152.6790 207.5009 14.12435277347958 1 26536U 00055A 07174.63611019 .00000369 00000-0 22514-3 0 4549 2 26536 99.1165 151.6892 0010989 151.3941 208.7839 14.12435809348018 1 26536U 00055A 07175.41533768 .00000383 00000-0 23256-3 0 4540 2 26536 99.1167 152.4818 0011036 149.3908 210.7911 14.12436545348125 1 26536U 00055A 07175.41533768 .00000383 00000-0 23256-3 0 4551 2 26536 99.1167 152.4818 0011036 149.3908 210.7911 14.12436545348125 1 26536U 00055A 07175.84037075 .00000355 00000-0 21705-3 0 4565 2 26536 99.1164 152.9140 0011073 148.2023 211.9803 14.12436659348187 1 26536U 00055A 07176.26540415 .00000332 00000-0 20499-3 0 4563 2 26536 99.1161 153.3464 0011093 146.9331 213.2536 14.12436953348249 1 26536U 00055A 07176.76127596 .00000213 00000-0 14030-3 0 4572 2 26536 99.1159 153.8510 0011094 145.5405 214.6449 14.12436555348315 1 26536U 00055A 07177.11547099 .00000151 00000-0 10652-3 0 4573 2 26536 99.1155 154.2116 0011064 144.3400 215.8498 14.12436461348365 1 26536U 00055A 07177.61134326 -.00000005 00000-0 22352-4 0 4584 2 26536 99.1151 154.7158 0011097 143.1961 216.9941 14.12435758348438 1 26536U 00055A 07178.46141069 -.00000173 00000-0 -68929-4 0 4587 2 26536 99.1150 155.5810 0011103 140.8959 219.2996 14.12435017348557 1 26536U 00055A 07178.46141069 -.00000173 00000-0 -68929-4 0 4598 2 26536 99.1150 155.5810 0011103 140.8959 219.2996 14.12435017348557 1 26536U 00055A 07179.45315646 -.00000262 00000-0 -11682-3 0 4606 2 26536 99.1152 156.5902 0011158 138.1413 222.0616 14.12434372348696 1 26536U 00055A 07179.94902919 -.00000200 00000-0 -83516-4 0 4614 2 26536 99.1147 157.0947 0011183 136.9041 223.3027 14.12434520348769 1 26536U 00055A 07180.30322360 -.00000170 00000-0 -67218-4 0 4619 2 26536 99.1146 157.4547 0011212 136.1210 224.0868 14.12434614348812 1 26536U 00055A 07180.79909598 -.00000098 00000-0 -28044-4 0 4620 2 26536 99.1153 157.9596 0011199 134.4854 225.7234 14.12434750348881 1 26536U 00055A 07181.15329071 -.00000045 00000-0 71016-6 0 4623 2 26536 99.1153 158.3200 0011279 133.9642 226.2488 14.12435032348933 1 26536U 00055A 07181.15329071 -.00000045 00000-0 71016-6 0 4634 2 26536 99.1153 158.3200 0011279 133.9642 226.2488 14.12435032348933 1 26536U 00055A 07181.57832372 .00000014 00000-0 32793-4 0 4646 2 26536 99.1153 158.7523 0011311 132.7637 227.4497 14.12435321348993 1 26536U 00055A 07182.42838976 .00000147 00000-0 10461-3 0 4641 2 26536 99.1156 159.6173 0011335 130.7863 229.4321 14.12436337349113 1 26536U 00055A 07182.92426117 .00000270 00000-0 17125-3 0 4658 2 26536 99.1158 160.1218 0011312 129.3815 230.8378 14.12437117349180 1 26536U 00055A 07183.42013244 .00000293 00000-0 18379-3 0 4654 2 26536 99.1161 160.6264 0011318 128.0864 232.1345 14.12437633349256 1 26536U 00055A 07183.84516481 .00000382 00000-0 23202-3 0 4662 2 26536 99.1161 161.0587 0011292 126.7515 233.4696 14.12438249349312 1 26536U 00055A 07184.34103599 .00000369 00000-0 22487-3 0 4669 2 26536 99.1160 161.5631 0011336 125.5802 234.6434 14.12438661349389 1 26536U 00055A 07184.83690691 .00000279 00000-0 17630-3 0 4672 2 26536 99.1165 162.0681 0011362 124.1184 236.1024 14.12438377349456 1 26536U 00055A 07185.26194017 .00000224 00000-0 14613-3 0 4679 2 26536 99.1165 162.5005 0011366 122.7455 237.4803 14.12438424349519 1 26536U 00055A 07185.75781150 .00000149 00000-0 10583-3 0 4682 2 26536 99.1164 163.0050 0011367 121.5031 238.7229 14.12438181349585 1 26536U 00055A 07186.11200569 .00000085 00000-0 71080-4 0 4682 2 26536 99.1163 163.3653 0011361 120.3346 239.8937 14.12438023349635 1 26536U 00055A 07186.53703848 -.00000057 00000-0 -58774-5 0 4694 2 26536 99.1166 163.7980 0011367 119.3234 240.9047 14.12437333349699 1 26536U 00055A 07187.52878254 -.00000188 00000-0 -77089-4 0 4692 2 26536 99.1167 164.8070 0011408 116.7401 243.4935 14.12436588349836 1 26536U 00055A 07187.95381557 -.00000203 00000-0 -85030-4 0 4709 2 26536 99.1165 165.2396 0011410 115.4872 244.7479 14.12436430349890 1 26536U 00055A 07188.37884861 -.00000218 00000-0 -92828-4 0 4701 2 26536 99.1165 165.6719 0011437 114.4372 245.7999 14.12436287349951 1 26536U 00055A 07188.37884861 -.00000218 00000-0 -92828-4 0 4712 2 26536 99.1165 165.6719 0011437 114.4372 245.7999 14.12436287349951 1 26536U 00055A 07188.80388155 -.00000231 00000-0 -10014-3 0 4727 2 26536 99.1167 166.1043 0011440 113.2868 246.9496 14.12435961350012 1 26536U 00055A 07189.22891493 -.00000190 00000-0 -78075-4 0 4724 2 26536 99.1167 166.5364 0011428 112.8987 247.3425 14.12436082350073 1 26536U 00055A 07189.58310850 -.00000128 00000-0 -44393-4 0 4734 2 26536 99.1166 166.8968 0011476 111.8682 248.3719 14.12436266350126 1 26536U 00055A 07190.43317303 .00000143 00000-0 10248-3 0 4736 2 26536 99.1167 167.7616 0011505 110.0942 250.1496 14.12437835350249 1 26536U 00055A 07190.43317303 .00000143 00000-0 10248-3 0 4747 2 26536 99.1167 167.7616 0011505 110.0942 250.1496 14.12437835350249 1 26536U 00055A 07190.92904371 .00000223 00000-0 14568-3 0 4757 2 26536 99.1165 168.2658 0011468 108.7750 251.4681 14.12438417350313 1 26536U 00055A 07191.35407571 .00000365 00000-0 22270-3 0 4751 2 26536 99.1165 168.6982 0011499 107.7651 252.4811 14.12439450350370 1 26536U 00055A 07191.77910698 .00000362 00000-0 22129-3 0 4767 2 26536 99.1167 169.1308 0011514 106.2921 253.9492 14.12439590350435 1 26536U 00055A 07192.13330074 .00000449 00000-0 26827-3 0 4767 2 26536 99.1168 169.4914 0011548 105.4967 254.7495 14.12440290350486 1 26536U 00055A 07192.13330074 .00000449 00000-0 26827-3 0 4778 2 26536 99.1168 169.4914 0011548 105.4967 254.7495 14.12440290350486 1 26536U 00055A 07192.55833212 .00000381 00000-0 23138-3 0 4784 2 26536 99.1169 169.9240 0011518 104.2797 255.9641 14.12440323350549 1 26536U 00055A 07193.47923440 .00000218 00000-0 14310-3 0 4780 2 26536 99.1170 170.8614 0011499 101.7111 258.5328 14.12440201350677 1 26536U 00055A 07193.90426653 .00000131 00000-0 95878-4 0 4796 2 26536 99.1167 171.2939 0011531 100.5600 259.6852 14.12439986350734 1 26536U 00055A 07194.32929866 .00000093 00000-0 75395-4 0 4796 2 26536 99.1166 171.7261 0011548 99.3944 260.8526 14.12439965350795 1 26536U 00055A 07194.54181468 .00000092 00000-0 74908-4 0 4808 2 26536 99.1174 171.9410 0011488 98.0464 262.1953 14.12439409350824 1 26536U 00055A 07195.46271803 -.00000180 00000-0 -72548-4 0 4812 2 26536 99.1165 172.8795 0011512 96.3187 263.9288 14.12438642350953 1 26536U 00055A 07195.88775033 -.00000166 00000-0 -64843-4 0 4826 2 26536 99.1164 173.3121 0011525 95.2619 264.9866 14.12438552351014 1 26536U 00055A 07196.31278253 -.00000197 00000-0 -81545-4 0 4829 2 26536 99.1164 173.7446 0011548 94.1582 266.0907 14.12438337351076 1 26536U 00055A 07196.73781481 -.00000208 00000-0 -87555-4 0 4838 2 26536 99.1164 174.1771 0011562 93.2729 266.9762 14.12438086351137 1 26536U 00055A 07197.09200845 -.00000167 00000-0 -65308-4 0 4834 2 26536 99.1161 174.5374 0011546 92.3618 267.8892 14.12438240351187 1 26536U 00055A 07197.58787909 -.00000144 00000-0 -52872-4 0 4847 2 26536 99.1166 175.0421 0011574 91.0842 269.1661 14.12438226351258 1 26536U 00055A 07198.50878152 -.00000016 00000-0 16581-4 0 4845 2 26536 99.1169 175.9790 0011588 88.8427 271.4085 14.12438858351388 1 26536U 00055A 07198.50878152 -.00000016 00000-0 16581-4 0 4856 2 26536 99.1169 175.9790 0011588 88.8427 271.4085 14.12438858351388 1 26536U 00055A 07198.50878152 -.00000016 00000-0 16581-4 0 4867 2 26536 99.1169 175.9790 0011588 88.8427 271.4085 14.12438858351388 1 26536U 00055A 07198.93381325 .00000119 00000-0 89313-4 0 4894 2 26536 99.1170 176.4117 0011536 87.7553 272.4977 14.12439623351449 1 26536U 00055A 07199.42968288 .00000166 00000-0 11467-3 0 4894 2 26536 99.1172 176.9164 0011548 86.6644 273.5868 14.12440094351513 1 26536U 00055A 07199.85471408 .00000285 00000-0 17949-3 0 4909 2 26536 99.1173 177.3489 0011563 85.2617 274.9885 14.12440817351574 1 26536U 00055A 07200.20890665 .00000330 00000-0 20356-3 0 4908 2 26536 99.1173 177.7092 0011544 84.6405 275.6103 14.12441316351627 1 26536U 00055A 07200.70477596 .00000355 00000-0 21704-3 0 4913 2 26536 99.1177 178.2142 0011562 83.0302 277.2171 14.12441666351690 1 26536U 00055A 07201.48399942 .00000279 00000-0 17617-3 0 4910 2 26536 99.1180 179.0074 0011518 80.9766 279.2692 14.12441950351807 1 26536U 00055A 07201.48399942 .00000279 00000-0 17617-3 0 4921 2 26536 99.1180 179.0074 0011518 80.9766 279.2692 14.12441950351807 1 26536U 00055A 07201.97986916 .00000218 00000-0 14289-3 0 4934 2 26536 99.1181 179.5120 0011551 79.6436 280.6015 14.12441889351874 1 26536U 00055A 07202.40490057 .00000128 00000-0 94416-4 0 4930 2 26536 99.1182 179.9445 0011533 78.6260 281.6199 14.12441709351935 1 26536U 00055A 07202.82993173 .00000058 00000-0 56495-4 0 4941 2 26536 99.1184 180.3771 0011533 77.6640 282.5802 14.12441399351998 1 26536U 00055A 07203.25496323 .00000017 00000-0 33974-4 0 4946 2 26536 99.1184 180.8098 0011555 76.4100 283.8355 14.12441344352052 1 26536U 00055A 07203.53831737 .00000068 00000-0 62047-4 0 4959 2 26536 99.1191 181.0940 0011432 79.8635 280.3873 14.12441440352091 1 26536U 00055A 07203.89250902 -.00000104 00000-0 -31495-4 0 4964 2 26536 99.1184 181.4588 0011543 74.4869 285.7495 14.12440725352148 1 26536U 00055A 07204.31754193 -.00000121 00000-0 -40640-4 0 4964 2 26536 99.1183 181.8911 0011552 73.1426 287.1010 14.12440644352202 1 26536U 00055A 07204.88425039 -.00000193 00000-0 -79296-4 0 4979 2 26536 99.1183 182.4678 0011532 71.6638 288.5765 14.12440076352284 1 26536U 00055A 07205.23844372 -.00000215 00000-0 -91678-4 0 4977 2 26536 99.1183 182.8282 0011531 70.6573 289.5842 14.12439881352330 1 26536U 00055A 07205.66347530 -.00000202 00000-0 -84175-4 0 4989 2 26536 99.1183 183.2607 0011529 69.7033 290.5377 14.12439757352396 1 26536U 00055A 07206.51353796 -.00000154 00000-0 -58360-4 0 4988 2 26536 99.1182 184.1255 0011527 67.6926 292.5475 14.12439932352510 1 26536U 00055A 07206.93856928 -.00000008 00000-0 20811-4 0 4997 2 26536 99.1176 184.5580 0011473 66.5935 293.6483 14.12440668352571 1 26536U 00055A 07207.36359971 .00000078 00000-0 67399-4 0 4999 2 26536 99.1177 184.9903 0011452 65.6034 294.6360 14.12441221352630 1 26536U 00055A 07207.85946872 .00000199 00000-0 13274-3 0 5004 2 26536 99.1176 185.4950 0011449 64.0793 296.1571 14.12441896352705 1 26536U 00055A 07208.28449927 .00000248 00000-0 15935-3 0 5002 2 26536 99.1175 185.9274 0011398 63.2915 296.9447 14.12442426352764 1 26536U 00055A 07208.78036787 .00000315 00000-0 19585-3 0 5014 2 26536 99.1171 186.4318 0011437 62.0877 298.1448 14.12442959352837 1 26536U 00055A 07209.13455999 .00000338 00000-0 20823-3 0 5016 2 26536 99.1170 186.7924 0011404 61.3638 298.8698 14.12443424352880 1 26536U 00055A 07209.55958994 .00000317 00000-0 19659-3 0 5028 2 26536 99.1173 187.2252 0011427 60.3131 299.9170 14.12443607352942 1 26536U 00055A 07210.40965036 .00000284 00000-0 17907-3 0 5026 2 26536 99.1169 188.0906 0011372 57.9439 302.2834 14.12444141353067 1 26536U 00055A 07210.40965036 .00000284 00000-0 17907-3 0 5037 2 26536 99.1169 188.0906 0011372 57.9439 302.2834 14.12444141353067 1 26536U 00055A 07210.83468049 .00000197 00000-0 13166-3 0 5043 2 26536 99.1171 188.5232 0011349 57.0846 303.1388 14.12443819353126 1 26536U 00055A 07211.18887286 .00000142 00000-0 10197-3 0 5041 2 26536 99.1169 188.8838 0011378 56.0096 304.2145 14.12443753353171 1 26536U 00055A 07211.18887286 .00000142 00000-0 10197-3 0 5052 2 26536 99.1169 188.8838 0011378 56.0096 304.2145 14.12443753353171 1 26536U 00055A 07211.68474166 .00000019 00000-0 35031-4 0 5076 2 26536 99.1172 189.3885 0011361 54.6446 305.5753 14.12443172353240 1 26536U 00055A 07212.46396515 -.00000121 00000-0 -40370-4 0 5072 2 26536 99.1174 190.1817 0011355 52.6510 307.5698 14.12442597353352 1 26536U 00055A 07212.46396515 -.00000121 00000-0 -40370-4 0 5083 2 26536 99.1174 190.1817 0011355 52.6510 307.5698 14.12442597353352 1 26536U 00055A 07212.88899566 -.00000191 00000-0 -78550-4 0 5092 2 26536 99.1175 190.6142 0011343 51.4581 308.7586 14.12442110353418 1 26536U 00055A 07213.31402675 -.00000215 00000-0 -91638-4 0 5091 2 26536 99.1177 191.0466 0011366 50.3419 309.8749 14.12441894353474 1 26536U 00055A 07213.31402675 -.00000215 00000-0 -91638-4 0 5103 2 26536 99.1177 191.0466 0011366 50.3419 309.8749 14.12441894353474 1 26536U 00055A 07213.31402675 -.00000215 00000-0 -91638-4 0 5114 2 26536 99.1177 191.0466 0011366 50.3419 309.8749 14.12441894353474 1 26536U 00055A 07213.80989608 -.00000213 00000-0 -90471-4 0 5149 2 26536 99.1186 191.5517 0011334 49.0809 311.1339 14.12441629353544 1 26536U 00055A 07214.23492698 -.00000194 00000-0 -79985-4 0 5140 2 26536 99.1186 191.9842 0011315 48.0175 312.1975 14.12441694353609 1 26536U 00055A 07214.58911899 -.00000180 00000-0 -72403-4 0 5151 2 26536 99.1188 192.3448 0011311 47.0164 313.1953 14.12441613353654 1 26536U 00055A 07215.43917973 -.00000017 00000-0 15689-4 0 5167 2 26536 99.1189 193.2100 0011256 44.6474 315.5620 14.12442495353774 1 26536U 00055A 07215.43917973 -.00000017 00000-0 15689-4 0 5178 2 26536 99.1189 193.2100 0011256 44.6474 315.5620 14.12442495353774 1 26536U 00055A 07215.43917973 -.00000017 00000-0 15689-4 0 5189 2 26536 99.1189 193.2100 0011256 44.6474 315.5620 14.12442495353774 1 26536U 00055A 07215.43917973 -.00000017 00000-0 15689-4 0 5190 2 26536 99.1189 193.2100 0011256 44.6474 315.5620 14.12442495353774 1 26536U 00055A 07215.43917973 -.00000017 00000-0 15689-4 0 5213 2 26536 99.1189 193.2100 0011256 44.6474 315.5620 14.12442495353774 1 26536U 00055A 07215.86420990 .00000094 00000-0 75865-4 0 5225 2 26536 99.1190 193.6424 0011279 43.3465 316.8603 14.12443028353835 1 26536U 00055A 07216.28924002 .00000156 00000-0 10956-3 0 5223 2 26536 99.1190 194.0749 0011213 42.4667 317.7395 14.12443516353898 1 26536U 00055A 07216.71426972 .00000227 00000-0 14811-3 0 5238 2 26536 99.1194 194.5077 0011259 41.2126 318.9892 14.12443960353953 1 26536U 00055A 07217.49349081 .00000295 00000-0 18490-3 0 5231 2 26536 99.1196 195.3010 0011208 39.1526 321.0457 14.12444851354060 1 26536U 00055A 07217.91852050 .00000317 00000-0 19676-3 0 5246 2 26536 99.1194 195.7337 0011228 37.8244 322.3715 14.12445246354125 1 26536U 00055A 07218.41438837 .00000292 00000-0 18319-3 0 5240 2 26536 99.1192 196.2383 0011171 36.4859 323.7077 14.12445521354193 1 26536U 00055A 07218.91025605 .00000278 00000-0 17541-3 0 5251 2 26536 99.1191 196.7431 0011198 35.0854 325.1035 14.12445695354260 1 26536U 00055A 07219.33528586 .00000235 00000-0 15244-3 0 5255 2 26536 99.1191 197.1754 0011191 33.9059 326.2821 14.12445785354322 1 26536U 00055A 07219.33528586 .00000235 00000-0 15244-3 0 5266 2 26536 99.1191 197.1754 0011191 33.9059 326.2821 14.12445785354322 1 26536U 00055A 07219.33528586 .00000235 00000-0 15244-3 0 5277 2 26536 99.1191 197.1754 0011191 33.9059 326.2821 14.12445785354322 1 26536U 00055A 07219.76031540 .00000133 00000-0 97033-4 0 5301 2 26536 99.1194 197.6081 0011158 32.8473 327.3357 14.12445314354384 1 26536U 00055A 07220.11450738 .00000065 00000-0 60271-4 0 5304 2 26536 99.1193 197.9686 0011202 31.8405 328.3426 14.12445130354431 1 26536U 00055A 07220.11450738 .00000065 00000-0 60271-4 0 5315 2 26536 99.1193 197.9686 0011202 31.8405 328.3426 14.12445130354431 1 26536U 00055A 07220.11450738 .00000065 00000-0 60271-4 0 5326 2 26536 99.1193 197.9686 0011202 31.8405 328.3426 14.12445130354431 1 26536U 00055A 07220.53953732 -.00000045 00000-0 58042-6 0 5351 2 26536 99.1197 198.4014 0011205 30.4657 329.7140 14.12444608354496 1 26536U 00055A 07221.46043648 -.00000263 00000-0 -11763-3 0 5360 2 26536 99.1200 199.3386 0011148 28.1934 331.9834 14.12443449354623 1 26536U 00055A 07221.88546675 -.00000212 00000-0 -89531-4 0 5378 2 26536 99.1199 199.7711 0011103 27.0646 333.1118 14.12443546354688 1 26536U 00055A 07222.31049659 -.00000228 00000-0 -98391-4 0 5378 2 26536 99.1199 200.2036 0011068 26.0161 334.1569 14.12443374354744 1 26536U 00055A 07222.73552670 -.00000217 00000-0 -92687-4 0 5387 2 26536 99.1199 200.6362 0011055 24.8417 335.3280 14.12443181354802 1 26536U 00055A 07223.51474827 -.00000110 00000-0 -34560-4 0 5389 2 26536 99.1199 201.4295 0010983 22.8355 337.3312 14.12443627354919 1 26536U 00055A 07223.93977819 .00000055 00000-0 54897-4 0 5396 2 26536 99.1199 201.8623 0010985 21.4714 338.6958 14.12444516354978 1 26536U 00055A 07224.43564546 .00000178 00000-0 12124-3 0 5393 2 26536 99.1204 202.3670 0010912 20.4664 339.6974 14.12445296355040 1 26536U 00055A 07224.78983612 .00000231 00000-0 15025-3 0 5405 2 26536 99.1199 202.7275 0010938 19.4661 340.6922 14.12445624355096 1 26536U 00055A 07225.49821767 .00000351 00000-0 21505-3 0 5409 2 26536 99.1203 203.4483 0010905 17.2248 342.9287 14.12446748355190 1 26536U 00055A 07225.49821767 .00000351 00000-0 21505-3 0 5410 2 26536 99.1203 203.4483 0010905 17.2248 342.9287 14.12446748355190 1 26536U 00055A 07225.92324682 .00000329 00000-0 20320-3 0 5422 2 26536 99.1200 203.8817 0010778 16.5125 343.6392 14.12446884355259 1 26536U 00055A 07226.41911411 .00000351 00000-0 21525-3 0 5422 2 26536 99.1198 204.3870 0010769 14.9308 345.2189 14.12447397355325 1 26536U 00055A 07226.84414280 .00000307 00000-0 19142-3 0 5435 2 26536 99.1201 204.8196 0010776 13.8240 346.3199 14.12447362355388 1 26536U 00055A 07227.19833405 .00000223 00000-0 14590-3 0 5437 2 26536 99.1201 205.1803 0010812 12.9293 347.2139 14.12447243355434 1 26536U 00055A 07227.55252513 .00000173 00000-0 11866-3 0 5440 2 26536 99.1205 205.5413 0010804 11.9195 348.2218 14.12447124355482 1 26536U 00055A 07228.47342216 -.00000001 00000-0 24427-4 0 5441 2 26536 99.1207 206.4787 0010813 9.3832 350.7530 14.12446509355613 1 26536U 00055A 07228.89845153 -.00000078 00000-0 -17339-4 0 5455 2 26536 99.1207 206.9113 0010777 8.3571 351.7761 14.12446126355677 1 26536U 00055A 07229.39431940 -.00000139 00000-0 -50040-4 0 5450 2 26536 99.1207 207.4160 0010760 6.9769 353.1551 14.12445914355745 1 26536U 00055A 07229.81934876 -.00000169 00000-0 -66521-4 0 5468 2 26536 99.1211 207.8485 0010731 5.8093 354.3184 14.12445528355803 1 26536U 00055A 07230.31521686 -.00000182 00000-0 -73259-4 0 5467 2 26536 99.1211 208.3533 0010777 4.4056 355.7216 14.12445484355876 1 26536U 00055A 07230.74024622 -.00000203 00000-0 -84635-4 0 5477 2 26536 99.1214 208.7860 0010678 3.4429 356.6804 14.12445128355934 1 26536U 00055A 07231.51946693 -.00000169 00000-0 -66199-4 0 5470 2 26536 99.1217 209.5792 0010566 1.2280 358.8918 14.12445146356040 1 26536U 00055A 07231.87365824 -.00000104 00000-0 -31189-4 0 5481 2 26536 99.1216 209.9397 0010550 0.0544 0.0646 14.12445413356093 1 26536U 00055A 07232.36952566 -.00000050 00000-0 -17809-5 0 5485 2 26536 99.1219 210.4444 0010473 358.7741 1.3430 14.12445752356161 1 26536U 00055A 07232.79455456 .00000028 00000-0 40260-4 0 5498 2 26536 99.1219 210.8769 0010536 357.7109 2.4014 14.12446088356222 1 26536U 00055A 07233.21958383 .00000113 00000-0 86132-4 0 5496 2 26536 99.1219 211.3096 0010453 356.4093 3.7035 14.12446675356282 1 26536U 00055A 07233.64461229 .00000188 00000-0 12686-3 0 5507 2 26536 99.1224 211.7427 0010479 355.3055 4.8024 14.12447144356343 1 26536U 00055A 07234.77802127 .00000356 00000-0 21811-3 0 5516 2 26536 99.1222 212.8972 0010386 351.7844 8.3152 14.12448708356507 1 26536U 00055A 07235.13221174 .00000340 00000-0 20913-3 0 5519 2 26536 99.1221 213.2579 0010371 350.7763 9.3218 14.12448944356558 1 26536U 00055A 07235.13221174 .00000340 00000-0 20913-3 0 5520 2 26536 99.1221 213.2579 0010371 350.7763 9.3218 14.12448944356558 1 26536U 00055A 07235.84059236 .00000261 00000-0 16617-3 0 5535 2 26536 99.1224 213.9792 0010366 348.7828 11.3081 14.12448929356653 1 26536U 00055A 07236.19478330 .00000175 00000-0 11969-3 0 5533 2 26536 99.1223 214.3398 0010373 347.8756 12.2151 14.12448758356701 1 26536U 00055A 07236.19478330 .00000175 00000-0 11969-3 0 5544 2 26536 99.1223 214.3398 0010373 347.8756 12.2151 14.12448758356701 1 26536U 00055A 07236.61981207 .00000111 00000-0 85471-4 0 5554 2 26536 99.1225 214.7726 0010373 346.5815 13.5063 14.12448549356764 1 26536U 00055A 07237.46986979 -.00000028 00000-0 96823-5 0 5551 2 26536 99.1227 215.6384 0010375 344.2550 15.8285 14.12448091356885 1 26536U 00055A 07237.46986979 -.00000028 00000-0 96823-5 0 5562 2 26536 99.1227 215.6384 0010375 344.2550 15.8285 14.12448091356885 1 26536U 00055A 07237.82406064 -.00000069 00000-0 -12376-4 0 5571 2 26536 99.1225 215.9986 0010310 343.2306 16.8517 14.12447873356933 1 26536U 00055A 07238.17825145 -.00000113 00000-0 -35906-4 0 5579 2 26536 99.1228 216.3595 0010315 342.3094 17.7709 14.12447658356985 1 26536U 00055A 07238.60328048 -.00000177 00000-0 -70686-4 0 5582 2 26536 99.1228 216.7923 0010274 341.1074 18.9699 14.12447195357048 1 26536U 00055A 07239.52417698 -.00000233 00000-0 -10118-3 0 5580 2 26536 99.1230 217.7301 0010246 338.4478 21.6256 14.12446735357171 1 26536U 00055A 07240.44507325 -.00000131 00000-0 -45826-4 0 5593 2 26536 99.1235 218.6677 0010176 335.7220 24.3495 14.12447127357305 1 26536U 00055A 07240.87010188 -.00000015 00000-0 16756-4 0 6159 2 26536 99.1231 219.1006 0010181 334.3088 25.7601 14.12447620357364 1 26536U 00055A 07241.50764531 .00000137 00000-0 99320-4 0 5610 2 26536 99.1231 219.7500 0010111 332.5733 27.4973 14.12448541357453 1 26536U 00055A 07241.50764531 .00000137 00000-0 99320-4 0 5621 2 26536 99.1231 219.7500 0010111 332.5733 27.4973 14.12448541357453 1 26536U 00055A 07241.50764531 .00000137 00000-0 99320-4 0 5632 2 26536 99.1231 219.7500 0010111 332.5733 27.4973 14.12448541357453 1 26536U 00055A 07241.50764531 .00000137 00000-0 99320-4 0 5643 2 26536 99.1231 219.7500 0010111 332.5733 27.4973 14.12448541357453 1 26536U 00055A 07241.50764531 .00000137 00000-0 99320-4 0 5665 2 26536 99.1231 219.7500 0010111 332.5733 27.4973 14.12448541357453 1 26536U 00055A 07242.35770071 .00000279 00000-0 17625-3 0 5670 2 26536 99.1231 220.6153 0010036 329.9117 30.1496 14.12449674357572 1 26536U 00055A 07242.85356664 .00000274 00000-0 17347-3 0 5680 2 26536 99.1232 221.1205 0010071 328.6261 31.4291 14.12449839357640 1 26536U 00055A 07243.27859522 .00000309 00000-0 19224-3 0 5683 2 26536 99.1233 221.5531 0010038 327.3427 32.7138 14.12450354357705 1 26536U 00055A 07243.77446100 .00000243 00000-0 15686-3 0 5698 2 26536 99.1233 222.0582 0010023 325.8297 34.2202 14.12450208357773 1 26536U 00055A 07244.48284186 .00000156 00000-0 10941-3 0 5693 2 26536 99.1237 222.7799 0010032 323.9139 36.1347 14.12450178357876 1 26536U 00055A 07245.40373663 .00000047 00000-0 50625-4 0 5700 2 26536 99.1240 223.7175 0010010 321.3168 38.7283 14.12450003358009 1 26536U 00055A 07245.40373663 .00000047 00000-0 50625-4 0 5711 2 26536 99.1240 223.7175 0010010 321.3168 38.7283 14.12450003358009 1 26536U 00055A 07245.40373663 .00000047 00000-0 50625-4 0 5722 2 26536 99.1240 223.7175 0010010 321.3168 38.7283 14.12450003358009 1 26536U 00055A 07245.82876492 -.00000033 00000-0 70420-5 0 5751 2 26536 99.1244 224.1501 0009984 320.1712 39.8691 14.12449490358060 1 26536U 00055A 07246.18295595 -.00000062 00000-0 -82947-5 0 5750 2 26536 99.1245 224.5107 0009993 319.2526 40.7898 14.12449420358118 1 26536U 00055A 07246.60798438 -.00000218 00000-0 -92865-4 0 5764 2 26536 99.1246 224.9434 0009982 317.7261 42.3112 14.12448549358177 1 26536U 00055A 07247.45804211 -.00000215 00000-0 -91192-4 0 5764 2 26536 99.1248 225.8091 0010016 315.5885 44.4479 14.12448439358296 1 26536U 00055A 07247.45804211 -.00000215 00000-0 -91192-4 0 5775 2 26536 99.1248 225.8091 0010016 315.5885 44.4479 14.12448439358296 1 26536U 00055A 07247.88307094 -.00000164 00000-0 -63916-4 0 5786 2 26536 99.1252 226.2420 0009990 314.1795 45.8567 14.12448531358359 1 26536U 00055A 07248.37893758 -.00000187 00000-0 -75931-4 0 5783 2 26536 99.1252 226.7468 0009952 312.6110 47.4228 14.12448386358426 1 26536U 00055A 07248.87480439 -.00000103 00000-0 -30482-4 0 5797 2 26536 99.1255 227.2520 0009963 311.2230 48.8095 14.12448635358495 1 26536U 00055A 07249.29983286 -.00000053 00000-0 -38213-5 0 5797 2 26536 99.1256 227.6848 0009940 309.9324 50.0990 14.12448895358550 1 26536U 00055A 07249.79569929 .00000046 00000-0 49899-4 0 5809 2 26536 99.1258 228.1898 0009948 308.7333 51.2957 14.12449323358629 1 26536U 00055A 07249.79570823 -.00000001 00000-0 00000+0 0 5790 2 26536 99.1261 228.1907 0010000 308.6715 51.4043 14.12449217358628 1 26536U 00055A 07250.22072764 .00000120 00000-0 90194-4 0 5802 2 26536 99.1258 228.6227 0009921 307.1018 52.9284 14.12449929358683 1 26536U 00055A 07251.42497253 .00000311 00000-0 19345-3 0 5810 2 26536 99.1257 229.8494 0009882 303.4330 56.5903 14.12451574358859 1 26536U 00055A 07251.42497253 .00000311 00000-0 19345-3 0 5821 2 26536 99.1257 229.8494 0009882 303.4330 56.5903 14.12451574358859 1 26536U 00055A 07252.20419020 .00000328 00000-0 20283-3 0 5836 2 26536 99.1258 230.6429 0009821 300.9217 59.0991 14.12452109358969 1 26536U 00055A 07252.20419020 .00000328 00000-0 20283-3 0 5847 2 26536 99.1258 230.6429 0009821 300.9217 59.0991 14.12452109358969 1 26536U 00055A 07252.62921785 .00000215 00000-0 14150-3 0 5851 2 26536 99.1261 231.0759 0009808 299.7014 60.3147 14.12451692359021 1 26536U 00055A 07253.40843601 .00000111 00000-0 85135-4 0 5855 2 26536 99.1257 231.8694 0009793 297.1279 62.8888 14.12451744359139 1 26536U 00055A 07253.40843601 .00000111 00000-0 85135-4 0 5866 2 26536 99.1257 231.8694 0009793 297.1279 62.8888 14.12451744359139 1 26536U 00055A 07253.40843601 .00000111 00000-0 85135-4 0 5877 2 26536 99.1257 231.8694 0009793 297.1279 62.8888 14.12451744359139 1 26536U 00055A 07253.90430195 .00000021 00000-0 36346-4 0 5894 2 26536 99.1256 232.3745 0009779 295.6175 64.3961 14.12451355359208 1 26536U 00055A 07254.32933043 -.00000036 00000-0 57144-5 0 5898 2 26536 99.1257 232.8072 0009764 294.2573 65.7572 14.12451144359263 1 26536U 00055A 07254.32933043 -.00000036 00000-0 57144-5 0 5900 2 26536 99.1257 232.8072 0009764 294.2573 65.7572 14.12451144359263 1 26536U 00055A 07254.32933043 -.00000036 00000-0 57144-5 0 5911 2 26536 99.1257 232.8072 0009764 294.2573 65.7572 14.12451144359263 1 26536U 00055A 07254.32933043 -.00000036 00000-0 57144-5 0 5922 2 26536 99.1257 232.8072 0009764 294.2573 65.7572 14.12451144359263 1 26536U 00055A 07254.75435863 -.00000109 00000-0 -33988-4 0 5938 2 26536 99.1257 233.2401 0009735 292.8531 67.1584 14.12450620359324 1 26536U 00055A 07255.17938742 -.00000149 00000-0 -55637-4 0 5938 2 26536 99.1255 233.6729 0009735 291.6987 68.3148 14.12450448359384 1 26536U 00055A 07255.17938742 -.00000149 00000-0 -55637-4 0 5949 2 26536 99.1255 233.6729 0009735 291.6987 68.3148 14.12450448359384 1 26536U 00055A 07255.60441575 -.00000210 00000-0 -88485-4 0 5957 2 26536 99.1254 234.1057 0009709 290.2583 69.7532 14.12450001359445 1 26536U 00055A 07256.87950113 -.00000178 00000-0 -71477-4 0 5967 2 26536 99.1254 235.4041 0009690 286.2357 73.7750 14.12449837359627 1 26536U 00055A 07257.30452966 -.00000153 00000-0 -57487-4 0 5967 2 26536 99.1255 235.8370 0009685 284.7111 75.3005 14.12449933359686 1 26536U 00055A 07257.72955785 -.00000057 00000-0 -55370-5 0 5974 2 26536 99.1258 236.2701 0009683 283.5573 76.4529 14.12450237359748 1 26536U 00055A 07258.50877583 .00000051 00000-0 52729-4 0 5976 2 26536 99.1260 237.0638 0009667 280.8988 79.1111 14.12450953359855 1 26536U 00055A 07258.93380376 .00000145 00000-0 10346-3 0 5985 2 26536 99.1259 237.4965 0009699 279.7982 80.2111 14.12451506359911 1 26536U 00055A 07259.28799348 .00000231 00000-0 15018-3 0 5984 2 26536 99.1261 237.8571 0009691 278.5175 81.4923 14.12452120359966 1 26536U 00055A 07259.71302087 .00000274 00000-0 17357-3 0 5998 2 26536 99.1265 238.2904 0009681 277.5527 82.4539 14.12452461360025 1 26536U 00055A 07260.49223829 .00000293 00000-0 18394-3 0 5994 2 26536 99.1270 239.0846 0009686 275.1886 84.8183 14.12453105360131 1 26536U 00055A 07260.49223829 .00000293 00000-0 18394-3 0 6007 2 26536 99.1270 239.0846 0009686 275.1886 84.8183 14.12453105360131 1 26536U 00055A 07260.91726581 .00000262 00000-0 16680-3 0 6010 2 26536 99.1274 239.5176 0009674 274.0594 85.9458 14.12453172360194 1 26536U 00055A 07261.27145573 .00000222 00000-0 14541-3 0 6016 2 26536 99.1275 239.8782 0009667 273.0346 86.9711 14.12453197360243 1 26536U 00055A 07262.47570216 -.00000068 00000-0 -11625-4 0 6027 2 26536 99.1283 241.1050 0009669 269.0871 90.9188 14.12451993360410 1 26536U 00055A 07262.90073025 -.00000130 00000-0 -45208-4 0 6036 2 26536 99.1282 241.5380 0009646 267.9963 92.0083 14.12451620360473 1 26536U 00055A 07263.32575880 -.00000164 00000-0 -63658-4 0 6035 2 26536 99.1284 241.9708 0009639 266.7991 93.2073 14.12451394360530 1 26536U 00055A 07263.82162515 -.00000246 00000-0 -10805-3 0 6044 2 26536 99.1287 242.4760 0009619 265.0090 94.9960 14.12450740360602 1 26536U 00055A 07264.17581597 -.00000249 00000-0 -10998-3 0 6044 2 26536 99.1287 242.8368 0009637 263.8783 96.1301 14.12450664360658 1 26536U 00055A 07264.17581597 -.00000249 00000-0 -10998-3 0 6055 2 26536 99.1287 242.8368 0009637 263.8783 96.1301 14.12450664360658 1 26536U 00055A 07264.53000613 -.00000289 00000-0 -13161-3 0 6060 2 26536 99.1287 243.1976 0009623 262.3147 97.6929 14.12450305360700 1 26536U 00055A 07265.38006292 -.00000214 00000-0 -90640-4 0 6069 2 26536 99.1286 244.0633 0009661 259.4222 100.5875 14.12450447360826 1 26536U 00055A 07265.80509121 -.00000158 00000-0 -60503-4 0 6078 2 26536 99.1285 244.4962 0009650 258.3375 101.6718 14.12450562360881 1 26536U 00055A 07266.23011965 -.00000077 00000-0 -16356-4 0 6077 2 26536 99.1284 244.9291 0009696 256.8913 103.1210 14.12450988360944 1 26536U 00055A 07266.58430931 .00000003 00000-0 26518-4 0 6082 2 26536 99.1282 245.2896 0009649 255.6326 104.3788 14.12451389360994 1 26536U 00055A 07267.43436475 .00000163 00000-0 11337-3 0 6085 2 26536 99.1278 246.1555 0009694 253.0041 107.0081 14.12452495361117 1 26536U 00055A 07267.85939245 .00000282 00000-0 17772-3 0 6096 2 26536 99.1276 246.5884 0009696 252.2413 107.7715 14.12453254361171 1 26536U 00055A 07268.28441987 .00000335 00000-0 20681-3 0 6097 2 26536 99.1278 247.0214 0009749 250.4194 109.5951 14.12453839361239 1 26536U 00055A 07268.70944692 .00000324 00000-0 20070-3 0 6107 2 26536 99.1278 247.4547 0009735 249.3897 110.6213 14.12453978361298 1 26536U 00055A 07269.48866443 .00000239 00000-0 15463-3 0 6105 2 26536 99.1278 248.2489 0009760 247.0860 112.9275 14.12454111361401 1 26536U 00055A 07269.48866443 .00000239 00000-0 15463-3 0 6116 2 26536 99.1278 248.2489 0009760 247.0860 112.9275 14.12454111361401 1 26536U 00055A 07269.48866443 .00000239 00000-0 15463-3 0 6127 2 26536 99.1278 248.2489 0009760 247.0860 112.9275 14.12454111361401 1 26536U 00055A 07269.48866443 .00000239 00000-0 15463-3 0 6138 2 26536 99.1278 248.2489 0009760 247.0860 112.9275 14.12454111361401 1 26536U 00055A 07269.91369205 .00000170 00000-0 11728-3 0 6156 2 26536 99.1278 248.6818 0009765 245.7093 114.3043 14.12453965361460 1 26536U 00055A 07270.33871991 .00000144 00000-0 10317-3 0 6158 2 26536 99.1275 249.1146 0009771 244.8224 115.1930 14.12454052361529 1 26536U 00055A 07270.69290963 .00000025 00000-0 38842-4 0 6164 2 26536 99.1283 249.4759 0009806 243.4916 116.5221 14.12453413361576 1 26536U 00055A 07271.47212812 -.00000109 00000-0 -34143-4 0 6163 2 26536 99.1288 250.2704 0009789 241.6083 118.4099 14.12452899361689 1 26536U 00055A 07272.81805080 -.00000306 00000-0 -14069-3 0 6171 2 26536 99.1301 251.6416 0009794 237.3602 122.6588 14.12451346361872 1 26536U 00055A 07273.24307998 -.00000303 00000-0 -13897-3 0 6180 2 26536 99.1298 252.0746 0009784 236.2968 123.7281 14.12451265361939 1 26536U 00055A 07274.02229872 -.00000206 00000-0 -86455-4 0 6207 2 26536 99.1306 252.8687 0009818 233.8490 126.1797 14.12451360362040 1 26536U 00055A 07274.44732672 -.00000150 00000-0 -55969-4 0 6192 2 26536 99.1307 253.3017 0009806 232.5984 127.4310 14.12451575362105 1 26536U 00055A 07274.44732672 -.00000150 00000-0 -55969-4 0 6204 2 26536 99.1307 253.3017 0009806 232.5984 127.4310 14.12451575362105 1 26536U 00055A 07274.87235480 -.00000049 00000-0 -15039-5 0 6219 2 26536 99.1309 253.7348 0009800 231.6614 128.3698 14.12452035362169 1 26536U 00055A 07275.36822069 .00000049 00000-0 51786-4 0 6215 2 26536 99.1309 254.2397 0009836 230.1723 129.8612 14.12452599362238 1 26536U 00055A 07275.79324820 .00000128 00000-0 94483-4 0 6224 2 26536 99.1306 254.6725 0009811 229.2463 130.7858 14.12452987362297 1 26536U 00055A 07276.50162735 .00000231 00000-0 15043-3 0 6228 2 26536 99.1307 255.3938 0009887 226.9885 133.0467 14.12453936362395 1 26536U 00055A 07276.50162735 .00000231 00000-0 15043-3 0 6239 2 26536 99.1307 255.3938 0009887 226.9885 133.0467 14.12453936362395 1 26536U 00055A 07276.50162735 .00000231 00000-0 15043-3 0 6240 2 26536 99.1307 255.3938 0009887 226.9885 133.0467 14.12453936362395 1 26536U 00055A 07276.50162735 .00000231 00000-0 15043-3 0 6251 2 26536 99.1307 255.3938 0009887 226.9885 133.0467 14.12453936362395 1 26536U 00055A 07276.92665486 .00000226 00000-0 14757-3 0 6275 2 26536 99.1306 255.8269 0009918 225.6549 134.3811 14.12454134362459 1 26536U 00055A 07277.35168247 .00000275 00000-0 17424-3 0 6274 2 26536 99.1308 256.2602 0009955 224.2272 135.8122 14.12454646362512 1 26536U 00055A 07277.77670960 .00000257 00000-0 16422-3 0 6288 2 26536 99.1306 256.6932 0009961 222.9438 137.0942 14.12454718362576 1 26536U 00055A 07278.20173735 .00000231 00000-0 15040-3 0 6282 2 26536 99.1307 257.1262 0009972 221.6667 138.3743 14.12454857362635 1 26536U 00055A 07278.55592691 .00000153 00000-0 10810-3 0 6290 2 26536 99.1308 257.4873 0009997 220.5990 139.4422 14.12454612362681 1 26536U 00055A 07279.47682078 -.00000004 00000-0 22888-4 0 6296 2 26536 99.1308 258.4257 0010050 217.6395 142.4070 14.12454057362817 1 26536U 00055A 07280.18520100 -.00000161 00000-0 -62080-4 0 6308 2 26536 99.1308 259.1473 0010036 215.4884 144.5609 14.12453227362918 1 26536U 00055A 07280.61022924 -.00000157 00000-0 -59906-4 0 6316 2 26536 99.1311 259.5806 0010048 214.1022 145.9502 14.12453094362974 1 26536U 00055A 07281.46028571 -.00000257 00000-0 -11411-3 0 6313 2 26536 99.1311 260.4469 0010095 211.4633 148.5942 14.12452453363099 1 26536U 00055A 07281.88531385 -.00000159 00000-0 -61096-4 0 6328 2 26536 99.1316 260.8801 0010087 210.3207 149.7399 14.12452761363152 1 26536U 00055A 07282.23950364 -.00000162 00000-0 -62387-4 0 6328 2 26536 99.1316 261.2410 0010110 209.2615 150.7994 14.12452677363205 1 26536U 00055A 07282.23950364 -.00000162 00000-0 -62387-4 0 6339 2 26536 99.1316 261.2410 0010110 209.2615 150.7994 14.12452677363205 1 26536U 00055A 07282.23950364 -.00000162 00000-0 -62387-4 0 6340 2 26536 99.1316 261.2410 0010110 209.2615 150.7994 14.12452677363205 1 26536U 00055A 07282.73536982 -.00000114 00000-0 -36365-4 0 6367 2 26536 99.1318 261.7461 0010100 207.7849 152.2787 14.12452771363278 1 26536U 00055A 07283.51458761 -.00000044 00000-0 14086-5 0 6360 2 26536 99.1318 262.5403 0010117 205.5812 154.4870 14.12453181363382 1 26536U 00055A 07283.51458761 -.00000044 00000-0 14086-5 0 6371 2 26536 99.1318 262.5403 0010117 205.5812 154.4870 14.12453181363382 1 26536U 00055A 07283.93961546 .00000067 00000-0 61554-4 0 6383 2 26536 99.1317 262.9731 0010143 204.4874 155.5840 14.12453747363448 1 26536U 00055A 07284.29380488 .00000101 00000-0 79881-4 0 6384 2 26536 99.1318 263.3340 0010174 203.4281 156.6440 14.12454035363499 1 26536U 00055A 07284.71883240 .00000185 00000-0 12552-3 0 6399 2 26536 99.1317 263.7671 0010162 202.2469 157.8276 14.12454586363559 1 26536U 00055A 07285.49804879 .00000260 00000-0 16611-3 0 6390 2 26536 99.1319 264.5616 0010239 199.9714 160.1065 14.12455454363669 1 26536U 00055A 07285.85223810 .00000254 00000-0 16252-3 0 6406 2 26536 99.1317 264.9223 0010224 199.0734 161.0039 14.12455499363718 1 26536U 00055A 07286.34810364 .00000284 00000-0 17888-3 0 6406 2 26536 99.1318 265.4273 0010264 197.7022 162.3809 14.12456017363782 1 26536U 00055A 07286.70229263 .00000208 00000-0 13763-3 0 6413 2 26536 99.1321 265.7885 0010283 196.5757 163.5056 14.12455757363834 1 26536U 00055A 07287.48150974 .00000082 00000-0 69587-4 0 6417 2 26536 99.1321 266.5824 0010281 194.5035 165.5822 14.12455496363946 1 26536U 00055A 07287.48150974 .00000082 00000-0 69587-4 0 6428 2 26536 99.1321 266.5824 0010281 194.5035 165.5822 14.12455496363946 1 26536U 00055A 07288.40240358 -.00000083 00000-0 -19568-4 0 6435 2 26536 99.1325 267.5207 0010337 191.6083 168.4852 14.12454793364078 1 26536U 00055A 07288.40240358 -.00000083 00000-0 -19568-4 0 6446 2 26536 99.1325 267.5207 0010337 191.6083 168.4852 14.12454793364078 1 26536U 00055A 07288.82743117 -.00000175 00000-0 -69611-4 0 6450 2 26536 99.1326 267.9538 0010356 190.4598 169.6330 14.12454131364136 1 26536U 00055A 07289.18162160 -.00000252 00000-0 -11157-3 0 6450 2 26536 99.1327 268.3146 0010325 189.3850 170.7112 14.12453663364186 1 26536U 00055A 07289.60664990 -.00000310 00000-0 -14290-3 0 6462 2 26536 99.1328 268.7477 0010351 188.1344 171.9650 14.12453172364244 1 26536U 00055A 07290.38586834 -.00000324 00000-0 -15055-3 0 6464 2 26536 99.1332 269.5416 0010373 185.8058 174.3005 14.12452835364359 1 26536U 00055A 07290.81089634 -.00000248 00000-0 -10920-3 0 6470 2 26536 99.1334 269.9749 0010335 184.6345 175.4732 14.12452883364417 1 26536U 00055A 07291.30676257 -.00000180 00000-0 -72573-4 0 6476 2 26536 99.1332 270.4802 0010435 183.3714 176.7424 14.12453145364480 1 26536U 00055A 07291.30676257 -.00000180 00000-0 -72573-4 0 6487 2 26536 99.1332 270.4802 0010435 183.3714 176.7424 14.12453145364480 1 26536U 00055A 07291.73178999 -.00000069 00000-0 -12371-4 0 6491 2 26536 99.1333 270.9132 0010391 182.1444 177.9699 14.12453574364540 1 26536U 00055A 07292.51100664 .00000136 00000-0 98806-4 0 6492 2 26536 99.1333 271.7076 0010501 179.9268 180.1929 14.12454831364658 1 26536U 00055A 07292.51100664 .00000136 00000-0 98806-4 0 6504 2 26536 99.1333 271.7076 0010501 179.9268 180.1929 14.12454831364658 1 26536U 00055A 07292.93603377 .00000254 00000-0 16238-3 0 6519 2 26536 99.1333 272.1408 0010522 178.9745 181.1473 14.12455536364719 1 26536U 00055A 07293.36106065 .00000300 00000-0 18775-3 0 6519 2 26536 99.1334 272.5740 0010577 177.8278 182.2962 14.12456104364775 1 26536U 00055A 07293.78608740 .00000285 00000-0 17967-3 0 6527 2 26536 99.1334 273.0072 0010573 176.5706 183.5521 14.12456176364838 1 26536U 00055A 07294.49446611 .00000273 00000-0 17287-3 0 6525 2 26536 99.1334 273.7299 0010628 174.7480 185.3806 14.12456630364938 1 26536U 00055A 07294.49446611 .00000273 00000-0 17287-3 0 6536 2 26536 99.1334 273.7299 0010628 174.7480 185.3806 14.12456630364938 1 26536U 00055A 07294.91949311 .00000221 00000-0 14501-3 0 6548 2 26536 99.1332 274.1631 0010639 173.4819 186.6477 14.12456600364996 1 26536U 00055A 07295.34452045 .00000208 00000-0 13792-3 0 6545 2 26536 99.1332 274.5961 0010661 172.3083 187.8257 14.12456807365058 1 26536U 00055A 07295.76954736 .00000106 00000-0 82658-4 0 6551 2 26536 99.1333 275.0294 0010698 171.1598 188.9735 14.12456363365119 1 26536U 00055A 07296.12373719 .00000063 00000-0 59063-4 0 6554 2 26536 99.1331 275.3903 0010641 170.0069 190.1304 14.12456298365165 1 26536U 00055A 07296.54876454 -.00000025 00000-0 11427-4 0 6566 2 26536 99.1332 275.8234 0010667 168.8229 191.3161 14.12455886365222 1 26536U 00055A 07297.39882013 -.00000162 00000-0 -62421-4 0 6561 2 26536 99.1331 276.6896 0010673 166.2536 193.8925 14.12455179365347 1 26536U 00055A 07297.39882013 -.00000162 00000-0 -62421-4 0 6572 2 26536 99.1331 276.6896 0010673 166.2536 193.8925 14.12455179365347 1 26536U 00055A 07297.82384768 -.00000294 00000-0 -13389-3 0 6589 2 26536 99.1326 277.1224 0010729 164.9727 195.1727 14.12454277365401 1 26536U 00055A 07298.24887622 -.00000266 00000-0 -11875-3 0 6580 2 26536 99.1329 277.5556 0010733 163.8172 196.3368 14.12454377365464 1 26536U 00055A 07298.67390350 -.00000241 00000-0 -10565-3 0 6593 2 26536 99.1330 277.9887 0010815 162.6509 197.5040 14.12454285365524 1 26536U 00055A 07299.45312045 -.00000180 00000-0 -72443-4 0 6591 2 26536 99.1331 278.7826 0010865 160.5314 199.6280 14.12454471365631 1 26536U 00055A 07300.44485102 .00000033 00000-0 42969-4 0 6605 2 26536 99.1329 279.7934 0010907 157.8378 202.3291 14.12455453365775 1 26536U 00055A 07300.86987792 .00000143 00000-0 10269-3 0 6613 2 26536 99.1333 280.2266 0010880 156.6793 203.4891 14.12456055365837 1 26536U 00055A 07301.29490475 .00000187 00000-0 12658-3 0 6610 2 26536 99.1334 280.6597 0010943 155.7386 204.4323 14.12456487365893 1 26536U 00055A 07301.71993139 .00000207 00000-0 13695-3 0 6628 2 26536 99.1337 281.0931 0010921 154.4021 205.7679 14.12456630365956 1 26536U 00055A 07302.42830933 .00000248 00000-0 15953-3 0 6623 2 26536 99.1341 281.8155 0010950 152.7181 207.4574 14.12457391366057 1 26536U 00055A 07302.42830933 .00000248 00000-0 15953-3 0 6634 2 26536 99.1341 281.8155 0010950 152.7181 207.4574 14.12457391366057 1 26536U 00055A 07302.92417373 .00000275 00000-0 17409-3 0 6647 2 26536 99.1344 282.3207 0010964 151.3384 208.8382 14.12457674366123 1 26536U 00055A 07303.27836279 .00000277 00000-0 17493-3 0 6641 2 26536 99.1346 282.6818 0010961 150.3444 209.8352 14.12457924366170 1 26536U 00055A 07303.27836279 .00000277 00000-0 17493-3 0 6652 2 26536 99.1346 282.6818 0010961 150.3444 209.8352 14.12457924366170 1 26536U 00055A 07303.70338932 .00000152 00000-0 10720-3 0 6662 2 26536 99.1348 283.1153 0010968 149.3078 210.8705 14.12457422366232 1 26536U 00055A 07304.48260609 -.00000037 00000-0 50608-5 0 6667 2 26536 99.1352 283.9094 0010921 147.0646 213.1199 14.12456784366349 1 26536U 00055A 07304.48260609 -.00000037 00000-0 50608-5 0 6678 2 26536 99.1352 283.9094 0010921 147.0646 213.1199 14.12456784366349 1 26536U 00055A 07304.90763317 -.00000068 00000-0 -11995-4 0 6680 2 26536 99.1354 284.3425 0010946 145.7844 214.4014 14.12456512366402 1 26536U 00055A 07305.33266057 -.00000086 00000-0 -21281-4 0 6686 2 26536 99.1356 284.7754 0010960 144.5950 215.5955 14.12456489366469 1 26536U 00055A 07305.82852533 -.00000189 00000-0 -77177-4 0 6690 2 26536 99.1357 285.2809 0011027 143.3743 216.8160 14.12455812366538 1 26536U 00055A 07306.18271516 -.00000229 00000-0 -98733-4 0 6692 2 26536 99.1358 285.6420 0011030 142.3108 217.8836 14.12455577366584 1 26536U 00055A 07306.60774249 -.00000273 00000-0 -12260-3 0 6701 2 26536 99.1361 286.0754 0011037 141.1700 219.0255 14.12455141366648 1 26536U 00055A 07307.38695933 -.00000210 00000-0 -88608-4 0 6700 2 26536 99.1357 286.8694 0011046 138.9250 221.2766 14.12455312366752 1 26536U 00055A 07307.81198646 -.00000198 00000-0 -82097-4 0 6719 2 26536 99.1355 287.3026 0011045 137.8075 222.3935 14.12455063366817 1 26536U 00055A 07308.23701414 -.00000135 00000-0 -48261-4 0 6715 2 26536 99.1354 287.7358 0011075 136.8539 223.3534 14.12455403366875 1 26536U 00055A 07308.66204081 -.00000071 00000-0 -13324-4 0 6722 2 26536 99.1354 288.1689 0011061 135.4789 224.7280 14.12455641366938 1 26536U 00055A 07309.37041841 .00000122 00000-0 91239-4 0 6720 2 26536 99.1348 288.8908 0011098 133.8314 226.3800 14.12456885367037 1 26536U 00055A 07309.86628256 .00000209 00000-0 13828-3 0 6739 2 26536 99.1350 289.3964 0011092 132.2780 227.9330 14.12457338367109 1 26536U 00055A 07310.22047150 .00000337 00000-0 20740-3 0 6732 2 26536 99.1347 289.7575 0011109 131.6805 228.5357 14.12458223367152 1 26536U 00055A 07310.57465940 .00000291 00000-0 18269-3 0 6744 2 26536 99.1353 290.1191 0011111 130.7748 229.4382 14.12458224367203 1 26536U 00055A 07311.42471202 .00000313 00000-0 19445-3 0 6749 2 26536 99.1350 290.9856 0011086 128.4610 231.7564 14.12459006367329 1 26536U 00055A 07311.42471202 .00000313 00000-0 19445-3 0 6750 2 26536 99.1350 290.9856 0011086 128.4610 231.7564 14.12459006367329 1 26536U 00055A 07311.92057566 .00000253 00000-0 16202-3 0 6760 2 26536 99.1351 291.4911 0011139 127.1741 233.0422 14.12458901367396 1 26536U 00055A 07312.27476463 .00000251 00000-0 16106-3 0 6761 2 26536 99.1350 291.8521 0011151 126.1942 234.0266 14.12459158367440 1 26536U 00055A 07312.69979060 .00000097 00000-0 77515-4 0 6779 2 26536 99.1355 292.2855 0011169 125.2180 234.9997 14.12458423367504 1 26536U 00055A 07313.47900664 -.00000103 00000-0 -30930-4 0 6770 2 26536 99.1355 293.0796 0011184 123.1200 237.1034 14.12457652367616 1 26536U 00055A 07313.90403340 -.00000169 00000-0 -66204-4 0 6783 2 26536 99.1357 293.5128 0011216 121.9667 238.2574 14.12457180367674 1 26536U 00055A 07314.25822272 -.00000213 00000-0 -90471-4 0 6784 2 26536 99.1358 293.8736 0011239 120.9309 239.2961 14.12456916367723 1 26536U 00055A 07314.75408740 -.00000297 00000-0 -13598-3 0 6796 2 26536 99.1359 294.3791 0011255 119.7833 240.4443 14.12456247367790 1 26536U 00055A 07315.17911466 -.00000276 00000-0 -12418-3 0 6794 2 26536 99.1361 294.8122 0011258 118.7759 241.4564 14.12456265367857 1 26536U 00055A 07315.53330337 -.00000300 00000-0 -13761-3 0 6808 2 26536 99.1358 295.1730 0011294 117.9471 242.2845 14.12456015367904 1 26536U 00055A 07316.45419478 -.00000182 00000-0 -73510-4 0 6801 2 26536 99.1360 296.1114 0011318 115.7091 244.5274 14.12456352368035 1 26536U 00055A 07316.80838336 -.00000072 00000-0 -13730-4 0 6815 2 26536 99.1362 296.4723 0011300 114.5482 245.6874 14.12456689368084 1 26536U 00055A 07317.23341000 -.00000004 00000-0 22837-4 0 6812 2 26536 99.1364 296.9055 0011327 113.6816 246.5574 14.12457107368149 1 26536U 00055A 07317.65843602 .00000065 00000-0 60362-4 0 6825 2 26536 99.1364 297.3388 0011318 112.2564 247.9814 14.12457462368201 1 26536U 00055A 07318.43765044 .00000164 00000-0 11398-3 0 6829 2 26536 99.1366 298.1331 0011306 110.3832 249.8571 14.12458355368319 1 26536U 00055A 07318.79183860 .00000200 00000-0 13345-3 0 6834 2 26536 99.1368 298.4942 0011307 109.2166 251.0216 14.12458522368362 1 26536U 00055A 07319.21686498 .00000267 00000-0 16982-3 0 6830 2 26536 99.1370 298.9275 0011307 108.2801 251.9625 14.12459129368428 1 26536U 00055A 07319.57105277 .00000301 00000-0 18778-3 0 6845 2 26536 99.1371 299.2885 0011347 107.3038 252.9381 14.12459527368473 1 26536U 00055A 07320.42110422 .00000210 00000-0 13881-3 0 6848 2 26536 99.1374 300.1548 0011338 104.7596 255.4818 14.12459658368595 1 26536U 00055A 07320.42110422 .00000210 00000-0 13881-3 0 6859 2 26536 99.1374 300.1548 0011338 104.7596 255.4818 14.12459658368595 1 26536U 00055A 07320.77529260 .00000241 00000-0 15544-3 0 6864 2 26536 99.1376 300.5162 0011345 103.6831 256.5595 14.12459867368643 1 26536U 00055A 07321.12948081 .00000159 00000-0 11126-3 0 6860 2 26536 99.1377 300.8772 0011359 102.6345 257.6077 14.12459628368695 1 26536U 00055A 07321.55450692 .00000020 00000-0 35696-4 0 6870 2 26536 99.1376 301.3106 0011308 101.6402 258.6011 14.12459008368756 1 26536U 00055A 07322.47539758 -.00000200 00000-0 -83351-4 0 6876 2 26536 99.1376 302.2492 0011353 99.1905 261.0536 14.12457941368881 1 26536U 00055A 07323.25461292 -.00000272 00000-0 -12215-3 0 6880 2 26536 99.1377 303.0435 0011380 97.0122 263.2339 14.12457326368990 1 26536U 00055A 07323.25461292 -.00000272 00000-0 -12215-3 0 6891 2 26536 99.1377 303.0435 0011380 97.0122 263.2339 14.12457326368990 1 26536U 00055A 07323.67963942 -.00000288 00000-0 -13102-3 0 6899 2 26536 99.1378 303.4768 0011409 96.1707 264.0759 14.12456974369056 1 26536U 00055A 07324.45885393 -.00000216 00000-0 -91894-4 0 6895 2 26536 99.1379 304.2713 0011354 94.3049 265.9420 14.12457173369163 1 26536U 00055A 07324.88388034 -.00000166 00000-0 -64833-4 0 6901 2 26536 99.1377 304.7045 0011344 93.4861 266.7622 14.12457266369228 1 26536U 00055A 07325.30890644 -.00000079 00000-0 -17517-4 0 6904 2 26536 99.1377 305.1380 0011366 92.4007 267.8490 14.12457695369287 1 26536U 00055A 07325.73393218 -.00000035 00000-0 63204-5 0 6913 2 26536 99.1375 305.5711 0011380 91.2751 268.9726 14.12457836369344 1 26536U 00055A 07326.08812061 .00000124 00000-0 92096-4 0 6912 2 26536 99.1374 305.9323 0011336 90.3856 269.8664 14.12458788369396 1 26536U 00055A 07326.72565841 .00000203 00000-0 13491-3 0 6924 2 26536 99.1372 306.5821 0011395 88.4870 271.7612 14.12459380369487 1 26536U 00055A 07327.43403339 .00000323 00000-0 20020-3 0 6925 2 26536 99.1372 307.3046 0011324 87.0789 273.1686 14.12460533369581 1 26536U 00055A 07327.43403339 .00000323 00000-0 20020-3 0 6936 2 26536 99.1372 307.3046 0011324 87.0789 273.1686 14.12460533369581 1 26536U 00055A 07327.85905851 .00000320 00000-0 19806-3 0 6946 2 26536 99.1370 307.7378 0011352 85.8875 274.3573 14.12460671369642 1 26536U 00055A 07328.21324661 .00000366 00000-0 22333-3 0 6940 2 26536 99.1370 308.0988 0011336 84.9400 275.3081 14.12461214369693 1 26536U 00055A 07329.41748490 .00000120 00000-0 89835-4 0 6953 2 26536 99.1369 309.3261 0011341 81.2204 279.0244 14.12460782369867 1 26536U 00055A 07329.91334775 .00000014 00000-0 32774-4 0 6968 2 26536 99.1375 309.8319 0011348 79.9039 280.3378 14.12460258369939 1 26536U 00055A 07330.33837375 -.00000023 00000-0 12435-4 0 6963 2 26536 99.1375 310.2650 0011357 78.7200 281.5238 14.12460132369995 1 26536U 00055A 07330.33837375 -.00000023 00000-0 12435-4 0 6974 2 26536 99.1375 310.2650 0011357 78.7200 281.5238 14.12460132369995 1 26536U 00055A 07330.33837375 -.00000023 00000-0 12435-4 0 6985 2 26536 99.1375 310.2650 0011357 78.7200 281.5238 14.12460132369995 1 26536U 00055A 07330.76339928 -.00000123 00000-0 -41404-4 0 7007 2 26536 99.1376 310.6983 0011337 77.6271 282.6138 14.12459482370059 1 26536U 00055A 07331.47177630 -.00000294 00000-0 -13423-3 0 7015 2 26536 99.1380 311.4203 0011349 75.6107 284.6322 14.12458570370152 1 26536U 00055A 07332.39266548 -.00000272 00000-0 -12238-3 0 7024 2 26536 99.1383 312.3591 0011347 73.4502 286.7923 14.12458359370287 1 26536U 00055A 07332.88852883 -.00000146 00000-0 -53739-4 0 7034 2 26536 99.1384 312.8646 0011330 71.8252 288.4169 14.12458709370358 1 26536U 00055A 07333.24271662 -.00000152 00000-0 -56970-4 0 7032 2 26536 99.1386 313.2258 0011313 71.0205 289.2194 14.12458613370402 1 26536U 00055A 07333.24271662 -.00000152 00000-0 -56970-4 0 7043 2 26536 99.1386 313.2258 0011313 71.0205 289.2194 14.12458613370402 1 26536U 00055A 07333.66774231 -.00000070 00000-0 -12815-4 0 7059 2 26536 99.1387 313.6591 0011352 69.8766 290.3630 14.12458859370463 1 26536U 00055A 07334.44695534 -.00000022 00000-0 13400-4 0 7051 2 26536 99.1386 314.4534 0011285 67.8939 292.3439 14.12459282370575 1 26536U 00055A 07334.87198066 .00000037 00000-0 45209-4 0 7064 2 26536 99.1386 314.8866 0011309 66.6207 293.6151 14.12459519370634 1 26536U 00055A 07335.43868126 .00000130 00000-0 95225-4 0 7065 2 26536 99.1388 315.4644 0011256 65.3897 294.8493 14.12460293370711 1 26536U 00055A 07335.79286798 .00000152 00000-0 10751-3 0 7078 2 26536 99.1391 315.8257 0011280 64.4314 295.8008 14.12460377370761 1 26536U 00055A 07336.21789339 .00000243 00000-0 15657-3 0 7076 2 26536 99.1391 316.2590 0011230 63.5192 296.7166 14.12461128370822 1 26536U 00055A 07336.71375505 .00000282 00000-0 17788-3 0 7088 2 26536 99.1396 316.7647 0011265 61.9955 298.2347 14.12461488370896 1 26536U 00055A 07337.49296696 .00000248 00000-0 15932-3 0 7088 2 26536 99.1397 317.5593 0011249 59.8641 300.3630 14.12461830371001 1 26536U 00055A 07338.83887941 -.00000027 00000-0 10575-4 0 7104 2 26536 99.1394 318.9314 0011236 56.7223 303.4983 14.12460802371195 1 26536U 00055A 07339.26390517 -.00000092 00000-0 -24627-4 0 7106 2 26536 99.1395 319.3651 0011299 55.3428 304.8797 14.12460597371252 1 26536U 00055A 07339.75976788 -.00000157 00000-0 -59652-4 0 7119 2 26536 99.1392 319.8705 0011262 54.3162 305.9038 14.12460117371324 1 26536U 00055A 07340.18479341 -.00000212 00000-0 -89674-4 0 7110 2 26536 99.1393 320.3041 0011301 53.1045 307.1157 14.12459851371381 1 26536U 00055A 07340.53898116 -.00000228 00000-0 -98501-4 0 7121 2 26536 99.1389 320.6648 0011262 52.4528 307.7662 14.12459617371439 1 26536U 00055A 07341.45986888 -.00000208 00000-0 -87373-4 0 7120 2 26536 99.1387 321.6034 0011248 49.7309 310.4836 14.12459548371568 1 26536U 00055A 07341.88489434 -.00000118 00000-0 -38880-4 0 7143 2 26536 99.1384 322.0368 0011204 48.7253 311.4896 14.12459821371627 1 26536U 00055A 07342.30991926 -.00000130 00000-0 -45135-4 0 7140 2 26536 99.1385 322.4702 0011197 47.6057 312.6073 14.12459820371680 1 26536U 00055A 07342.73494422 -.00000034 00000-0 65914-5 0 7157 2 26536 99.1383 322.9036 0011193 46.3529 313.8579 14.12460154371742 1 26536U 00055A 07343.15996912 .00000083 00000-0 70032-4 0 7154 2 26536 99.1383 323.3368 0011136 45.1732 315.0383 14.12460879371803 1 26536U 00055A 07343.51415570 .00000083 00000-0 70194-4 0 7160 2 26536 99.1383 323.6978 0011141 44.3287 315.8778 14.12461015371859 1 26536U 00055A 07344.36420444 .00000266 00000-0 16935-3 0 7165 2 26536 99.1383 324.5642 0011078 41.9367 318.2674 14.12462385371974 1 26536U 00055A 07344.93090311 .00000261 00000-0 16648-3 0 7171 2 26536 99.1385 325.1423 0011074 40.3057 319.8915 14.12462536372058 1 26536U 00055A 07345.35592778 .00000305 00000-0 19013-3 0 7170 2 26536 99.1389 325.5756 0011065 39.2442 320.9542 14.12463084372115 1 26536U 00055A 07345.78095166 .00000194 00000-0 13022-3 0 7187 2 26536 99.1390 326.0091 0011066 37.9830 322.2082 14.12462640372179 1 26536U 00055A 07346.13513930 .00000164 00000-0 11403-3 0 7189 2 26536 99.1392 326.3702 0011082 36.9691 323.2239 14.12462701372224 1 26536U 00055A 07346.56016361 .00000088 00000-0 72890-4 0 7196 2 26536 99.1394 326.8037 0011078 35.6845 324.5050 14.12462462372289 1 26536U 00055A 07347.41021310 -.00000064 00000-0 -96436-5 0 7190 2 26536 99.1395 327.6701 0011091 33.3437 326.8427 14.12461892372407 1 26536U 00055A 07347.41021310 -.00000064 00000-0 -96436-5 0 7202 2 26536 99.1395 327.6701 0011091 33.3437 326.8427 14.12461892372407 1 26536U 00055A 07348.47277526 -.00000231 00000-0 -99944-4 0 7214 2 26536 99.1398 328.7535 0011063 30.4923 329.6883 14.12460833372551 1 26536U 00055A 07348.47277526 -.00000231 00000-0 -99944-4 0 7225 2 26536 99.1398 328.7535 0011063 30.4923 329.6883 14.12460833372551 1 26536U 00055A 07348.96863767 -.00000253 00000-0 -11165-3 0 7230 2 26536 99.1401 329.2590 0011017 29.3414 330.8369 14.12460510372627 1 26536U 00055A 07349.39366269 -.00000256 00000-0 -11372-3 0 7236 2 26536 99.1402 329.6924 0010984 28.3471 331.8307 14.12460431372688 1 26536U 00055A 07349.81868739 -.00000211 00000-0 -88966-4 0 7248 2 26536 99.1402 330.1256 0010979 27.1304 333.0435 14.12460357372749 1 26536U 00055A 07350.17287492 -.00000130 00000-0 -45496-4 0 7241 2 26536 99.1404 330.4868 0010981 26.0181 334.1566 14.12460740372795 1 26536U 00055A 07350.52706174 -.00000133 00000-0 -47073-4 0 7250 2 26536 99.1405 330.8480 0010930 25.2877 334.8832 14.12460680372849 1 26536U 00055A 07351.37711078 -.00000003 00000-0 23782-4 0 7259 2 26536 99.1408 331.7146 0010859 22.9301 337.2379 14.12461421372967 1 26536U 00055A 07351.80213486 .00000051 00000-0 52530-4 0 7263 2 26536 99.1404 332.1480 0010878 21.8466 338.3158 14.12461585373026 1 26536U 00055A 07352.15632215 .00000162 00000-0 11281-3 0 7267 2 26536 99.1404 332.5092 0010766 20.8695 339.2957 14.12462323373071 1 26536U 00055A 07352.58134560 .00000221 00000-0 14506-3 0 7274 2 26536 99.1407 332.9430 0010770 19.8775 340.2821 14.12462781373133 1 26536U 00055A 07353.50223060 .00000285 00000-0 17960-3 0 7278 2 26536 99.1408 333.8825 0010699 17.3398 342.8148 14.12463722373266 1 26536U 00055A 07354.42311541 .00000279 00000-0 17601-3 0 7288 2 26536 99.1405 334.8214 0010727 14.4154 345.7323 14.12464295373393 1 26536U 00055A 07354.91897631 .00000167 00000-0 11529-3 0 7291 2 26536 99.1406 335.3271 0010677 13.2479 346.8933 14.12463866373464 1 26536U 00055A 07355.34400086 .00000117 00000-0 88637-4 0 7293 2 26536 99.1404 335.7603 0010689 12.0834 348.0585 14.12463850373527 1 26536U 00055A 07355.76902483 -.00000015 00000-0 16856-4 0 7301 2 26536 99.1400 336.1935 0010676 10.7965 349.3395 14.12463154373588 1 26536U 00055A 07356.54823667 -.00000155 00000-0 -59035-4 0 7306 2 26536 99.1399 336.9879 0010676 8.6747 351.4600 14.12462518373692 1 26536U 00055A 07357.39828561 -.00000212 00000-0 -89562-4 0 7311 2 26536 99.1399 337.8545 0010678 6.4384 353.6930 14.12462129373819 1 26536U 00055A 07358.24833462 -.00000182 00000-0 -73159-4 0 7324 2 26536 99.1402 338.7212 0010634 4.0094 356.1179 14.12461953373939 1 26536U 00055A 07358.60252126 -.00000210 00000-0 -88580-4 0 7333 2 26536 99.1402 339.0822 0010586 3.1089 357.0137 14.12461642373984 1 26536U 00055A 07359.09838339 -.00000106 00000-0 -32386-4 0 7330 2 26536 99.1400 339.5878 0010601 1.6284 358.4950 14.12462118374052 1 26536U 00055A 07359.52340717 -.00000112 00000-0 -35296-4 0 7347 2 26536 99.1398 340.0210 0010556 0.4795 359.6391 14.12462087374112 1 26536U 00055A 07360.44429250 .00000066 00000-0 61149-4 0 7342 2 26536 99.1400 340.9600 0010467 357.7309 2.3843 14.12463127374242 1 26536U 00055A 07360.44429250 .00000066 00000-0 61149-4 0 7353 2 26536 99.1400 340.9600 0010467 357.7309 2.3843 14.12463127374242 1 26536U 00055A 07360.94015329 .00000196 00000-0 13119-3 0 7364 2 26536 99.1405 341.4656 0010472 356.3573 3.7539 14.12463857374313 1 26536U 00055A 07361.43601403 .00000233 00000-0 15153-3 0 7365 2 26536 99.1406 341.9715 0010411 354.8876 5.2209 14.12464373374389 1 26536U 00055A 07361.93187454 .00000290 00000-0 18232-3 0 7370 2 26536 99.1409 342.4771 0010437 353.5896 6.5135 14.12464826374459 1 26536U 00055A 07362.42773541 .00000259 00000-0 16545-3 0 7373 2 26536 99.1410 342.9830 0010394 352.0149 8.0861 14.12465050374520 1 26536U 00055A 07362.92359599 .00000194 00000-0 13009-3 0 7382 2 26536 99.1412 343.4887 0010431 350.8009 9.2937 14.12464892374590 1 26536U 00055A 07363.27778288 .00000174 00000-0 11933-3 0 7383 2 26536 99.1413 343.8498 0010416 349.8018 10.2940 14.12464997374642 1 26536U 00055A 07363.84448084 .00000026 00000-0 39357-4 0 7392 2 26536 99.1418 344.4280 0010394 348.2469 11.8410 14.12464254374725 1 26536U 00055A 07364.19866821 -.00000066 00000-0 -10606-4 0 7396 2 26536 99.1421 344.7892 0010382 347.3592 12.7307 14.12463941374777 1 26536U 00055A 07364.62369222 -.00000183 00000-0 -74084-4 0 7409 2 26536 99.1419 345.2227 0010368 346.1818 13.9040 14.12463239374838 1 26536U 00055A 07365.47374108 -.00000249 00000-0 -10952-3 0 7408 2 26536 99.1421 346.0896 0010383 343.9414 16.1429 14.12462788374953 1 26536U 00055A 07365.47374108 -.00000249 00000-0 -10952-3 0 7419 2 26536 99.1421 346.0896 0010383 343.9414 16.1429 14.12462788374953 1 26536U 00055A 08001.46546424 -.00000236 00000-0 -10251-3 0 7427 2 26536 99.1421 347.1010 0010330 341.1695 18.9102 14.12462537375092 1 26536U 00055A 08001.81965095 -.00000256 00000-0 -11355-3 0 7434 2 26536 99.1419 347.4620 0010317 340.1404 19.9345 14.12462133375149 1 26536U 00055A 08002.24467575 -.00000204 00000-0 -85315-4 0 7433 2 26536 99.1419 347.8954 0010280 338.8682 21.2088 14.12462338375208 1 26536U 00055A 08002.66969961 -.00000087 00000-0 -21879-4 0 7440 2 26536 99.1420 348.3290 0010251 337.7608 22.3133 14.12462729375266 1 26536U 00055A 08003.09472353 .00000015 00000-0 33415-4 0 7440 2 26536 99.1420 348.7625 0010208 336.2137 23.8605 14.12463368375322 1 26536U 00055A 08004.44063057 .00000261 00000-0 16623-3 0 7452 2 26536 99.1416 350.1349 0010143 332.1173 27.9475 14.12465194375510 1 26536U 00055A 08004.44063057 .00000261 00000-0 16623-3 0 7463 2 26536 99.1416 350.1349 0010143 332.1173 27.9475 14.12465194375510 1 26536U 00055A 08004.44063057 .00000261 00000-0 16623-3 0 7474 2 26536 99.1416 350.1349 0010143 332.1173 27.9475 14.12465194375510 1 26536U 00055A 08004.86565361 .00000332 00000-0 20485-3 0 7497 2 26536 99.1415 350.5686 0010126 330.9801 29.0802 14.12465657375579 1 26536U 00055A 08005.43235144 .00000322 00000-0 19978-3 0 7498 2 26536 99.1414 351.1466 0010118 329.2084 30.8500 14.12466099375651 1 26536U 00055A 08005.85737449 .00000261 00000-0 16644-3 0 7500 2 26536 99.1413 351.5799 0010070 327.8469 32.2064 14.12465949375712 1 26536U 00055A 08006.21156100 .00000224 00000-0 14649-3 0 7502 2 26536 99.1412 351.9412 0010092 326.9236 33.1300 14.12466042375766 1 26536U 00055A 08006.56574709 .00000133 00000-0 97368-4 0 7519 2 26536 99.1413 352.3024 0010097 325.8680 34.1826 14.12465772375816 1 26536U 00055A 08007.41579439 .00000015 00000-0 33532-4 0 7511 2 26536 99.1413 353.1689 0010094 323.4076 36.6402 14.12465476375933 1 26536U 00055A 08007.91165514 -.00000078 00000-0 -16907-4 0 7520 2 26536 99.1412 353.6746 0010098 322.0208 38.0219 14.12464945376008 1 26536U 00055A 08008.33667940 -.00000119 00000-0 -39048-4 0 7524 2 26536 99.1412 354.1079 0010091 320.9619 39.0817 14.12464764376069 1 26536U 00055A 08008.33667940 -.00000119 00000-0 -39048-4 0 7535 2 26536 99.1412 354.1079 0010091 320.9619 39.0817 14.12464764376069 1 26536U 00055A 08008.33667940 -.00000119 00000-0 -39048-4 0 7546 2 26536 99.1412 354.1079 0010091 320.9619 39.0817 14.12464764376069 1 26536U 00055A 08008.33667940 -.00000119 00000-0 -39048-4 0 7557 2 26536 99.1412 354.1079 0010091 320.9619 39.0817 14.12464764376069 1 26536U 00055A 08008.76170321 -.00000189 00000-0 -77355-4 0 7567 2 26536 99.1414 354.5414 0010050 319.5357 40.5041 14.12464165376124 1 26536U 00055A 08009.54091436 -.00000293 00000-0 -13329-3 0 7569 2 26536 99.1414 355.3359 0009984 317.2757 42.7637 14.12463510376234 1 26536U 00055A 08010.46179933 -.00000211 00000-0 -89147-4 0 7574 2 26536 99.1416 356.2751 0009996 314.6127 45.4234 14.12463718376364 1 26536U 00055A 08011.45352165 -.00000086 00000-0 -21560-4 0 7580 2 26536 99.1420 357.2867 0009951 311.6180 48.4152 14.12464151376505 1 26536U 00055A 08012.44524352 .00000064 00000-0 59616-4 0 7597 2 26536 99.1426 358.2983 0009945 308.7870 51.2437 14.12465011376646 1 26536U 00055A 08012.87026671 .00000176 00000-0 12074-3 0 7607 2 26536 99.1425 358.7318 0009943 307.7315 52.2969 14.12465640376709 1 26536U 00055A 08013.43696437 .00000268 00000-0 17046-3 0 7609 2 26536 99.1429 359.3099 0009942 305.9465 54.0823 14.12466551376780 1 26536U 00055A 08013.86198679 .00000280 00000-0 17656-3 0 7613 2 26536 99.1429 359.7434 0009939 304.8835 55.1374 14.12466634376844 1 26536U 00055A 08014.35784768 .00000314 00000-0 19526-3 0 7614 2 26536 99.1432 0.2493 0009903 303.2163 56.8079 14.12467213376911 1 26536U 00055A 08015.49124285 .00000063 00000-0 59394-4 0 7622 2 26536 99.1435 1.4056 0009893 299.7842 60.2324 14.12466468377074 1 26536U 00055A 08015.49124285 .00000063 00000-0 59394-4 0 7633 2 26536 99.1435 1.4056 0009893 299.7842 60.2324 14.12466468377074 1 26536U 00055A 08016.48296504 -.00000078 00000-0 -17283-4 0 7647 2 26536 99.1438 2.4174 0009834 296.7072 63.3099 14.12465893377216 1 26536U 00055A 08017.47468720 -.00000240 00000-0 -10475-3 0 7655 2 26536 99.1437 3.4292 0009766 293.7160 66.2976 14.12464828377354 1 26536U 00055A 08018.53724713 -.00000298 00000-0 -13602-3 0 7669 2 26536 99.1437 4.5132 0009706 290.2967 69.7155 14.12464152377504 1 26536U 00055A 08018.53724713 -.00000298 00000-0 -13602-3 0 7670 2 26536 99.1437 4.5132 0009706 290.2967 69.7155 14.12464152377504 1 26536U 00055A 08019.45813203 -.00000220 00000-0 -93946-4 0 7681 2 26536 99.1437 5.4522 0009699 287.0528 72.9586 14.12464321377631 1 26536U 00055A 08019.95399333 .00000002 00000-0 26039-4 0 7695 2 26536 99.1437 5.9582 0009734 285.6970 74.3179 14.12465347377708 1 26536U 00055A 08020.37901606 .00000067 00000-0 61531-4 0 7692 2 26536 99.1435 6.3917 0009712 284.2327 75.7790 14.12465835377762 1 26536U 00055A 08020.87487643 .00000187 00000-0 12662-3 0 7702 2 26536 99.1431 6.8971 0009734 283.1571 76.8521 14.12466469377832 1 26536U 00055A 08021.37073692 .00000319 00000-0 19777-3 0 7704 2 26536 99.1429 7.4027 0009741 281.3312 78.6813 14.12467551377904 1 26536U 00055A 08021.86659620 .00000329 00000-0 20309-3 0 7714 2 26536 99.1428 7.9087 0009761 280.1712 79.8343 14.12467817377970 1 26536U 00055A 08022.22078234 .00000406 00000-0 24514-3 0 7720 2 26536 99.1432 8.2699 0009779 279.0877 80.9207 14.12468493378026 1 26536U 00055A 08022.64580475 .00000305 00000-0 19047-3 0 7735 2 26536 99.1430 8.7035 0009794 277.9070 82.0958 14.12468220378082 1 26536U 00055A 08023.49585150 .00000064 00000-0 59916-4 0 7736 2 26536 99.1430 9.5704 0009826 275.5297 84.4728 14.12467550378205 1 26536U 00055A 08023.49585150 .00000064 00000-0 59916-4 0 7747 2 26536 99.1430 9.5704 0009826 275.5297 84.4728 14.12467550378205 1 26536U 00055A 08024.48757357 -.00000087 00000-0 -21652-4 0 7751 2 26536 99.1429 10.5821 0009806 273.2479 86.7569 14.12466931378345 1 26536U 00055A 08025.05427143 -.00000222 00000-0 -94988-4 0 7766 2 26536 99.1432 11.1598 0009769 271.3712 88.6308 14.12466123378428 1 26536U 00055A 08025.55013299 -.00000274 00000-0 -12319-3 0 7779 2 26536 99.1434 11.6657 0009746 269.3834 90.6222 14.12465729378494 1 26536U 00055A 08026.47101753 -.00000238 00000-0 -10343-3 0 7779 2 26536 99.1437 12.6052 0009743 266.6962 93.3096 14.12465626378626 1 26536U 00055A 08026.89604134 -.00000172 00000-0 -67672-4 0 7782 2 26536 99.1439 13.0388 0009763 265.0853 94.9217 14.12465740378684 1 26536U 00055A 08027.39190218 -.00000190 00000-0 -77622-4 0 7787 2 26536 99.1440 13.5445 0009754 263.3420 96.6650 14.12465622378753 1 26536U 00055A 08027.81692587 -.00000130 00000-0 -45004-4 0 7794 2 26536 99.1446 13.9784 0009739 262.0552 97.9517 14.12465700378814 1 26536U 00055A 08028.17111234 -.00000051 00000-0 -26233-5 0 7795 2 26536 99.1447 14.3398 0009776 260.7779 99.2317 14.12466117378869 1 26536U 00055A 08028.17111234 -.00000051 00000-0 -26233-5 0 7807 2 26536 99.1447 14.3398 0009776 260.7779 99.2317 14.12466117378869 1 26536U 00055A 08028.17111234 -.00000051 00000-0 -26233-5 0 7818 2 26536 99.1447 14.3398 0009776 260.7779 99.2317 14.12466117378869 1 26536U 00055A 08028.17111234 -.00000051 00000-0 -26233-5 0 7830 2 26536 99.1447 14.3398 0009776 260.7779 99.2317 14.12466117378869 1 26536U 00055A 08029.51701924 .00000107 00000-0 83204-4 0 7841 2 26536 99.1458 15.7138 0009781 256.8817 103.1276 14.12467164379057 1 26536U 00055A 08030.50873961 .00000235 00000-0 15243-3 0 7853 2 26536 99.1460 16.7259 0009804 253.9468 106.0628 14.12468189379197 1 26536U 00055A 08031.42962261 .00000212 00000-0 13993-3 0 7863 2 26536 99.1464 17.6657 0009823 251.3192 108.6907 14.12468651379327 1 26536U 00055A 08031.92548284 .00000172 00000-0 11853-3 0 7872 2 26536 99.1462 18.1718 0009811 249.8365 110.1730 14.12468600379393 1 26536U 00055A 08032.49218058 .00000088 00000-0 73005-4 0 7872 2 26536 99.1462 18.7499 0009818 248.1493 111.8618 14.12468397379471 1 26536U 00055A 08033.41306489 -.00000053 00000-0 -32344-5 0 7888 2 26536 99.1457 19.6894 0009768 245.5164 114.4982 14.12467888379606 1 26536U 00055A 08033.69641388 -.00000180 00000-0 -72276-4 0 7897 2 26536 99.1453 19.9784 0009760 244.2514 115.7616 14.12467118379648 1 26536U 00055A 08034.47562440 -.00000270 00000-0 -12100-3 0 7906 2 26536 99.1452 20.7731 0009794 241.9039 118.1137 14.12466531379757 1 26536U 00055A 08035.53818357 -.00000238 00000-0 -10389-3 0 7917 2 26536 99.1450 21.8572 0009828 238.5309 121.4899 14.12466294379905 1 26536U 00055A 08035.53818357 -.00000238 00000-0 -10389-3 0 7928 2 26536 99.1450 21.8572 0009828 238.5309 121.4899 14.12466294379905 1 26536U 00055A 08036.52990531 -.00000109 00000-0 -33597-4 0 7938 2 26536 99.1449 22.8688 0009856 235.4572 124.5684 14.12466791380046 1 26536U 00055A 08037.52162598 .00000077 00000-0 67068-4 0 7946 2 26536 99.1448 23.8805 0009889 232.6640 127.3642 14.12467854380189 1 26536U 00055A 08038.44250907 .00000223 00000-0 14572-3 0 7955 2 26536 99.1452 24.8203 0009944 229.9452 130.0870 14.12469035380311 1 26536U 00055A 08038.93836881 .00000296 00000-0 18543-3 0 7963 2 26536 99.1450 25.3262 0009953 228.5486 131.4834 14.12469583380382 1 26536U 00055A 08039.43422872 .00000297 00000-0 18572-3 0 7963 2 26536 99.1454 25.8325 0009962 227.2080 132.8262 14.12469983380459 1 26536U 00055A 08039.93008841 .00000267 00000-0 16983-3 0 7976 2 26536 99.1457 26.3386 0009951 225.9006 134.1326 14.12470040380526 1 26536U 00055A 08040.49678578 .00000170 00000-0 11745-3 0 7973 2 26536 99.1460 26.9170 0009962 224.2900 135.7454 14.12469857380606 1 26536U 00055A 08040.49678578 .00000170 00000-0 11745-3 0 7984 2 26536 99.1460 26.9170 0009962 224.2900 135.7454 14.12469857380606 1 26536U 00055A 08040.92180898 .00000015 00000-0 33396-4 0 7991 2 26536 99.1462 27.3507 0009991 222.9219 137.1134 14.12469125380662 1 26536U 00055A 08041.41766997 -.00000094 00000-0 -25834-4 0 7993 2 26536 99.1462 27.8567 0009988 221.5826 138.4577 14.12468741380734 1 26536U 00055A 08041.77185615 -.00000112 00000-0 -35467-4 0 8001 2 26536 99.1467 28.2182 0009988 220.6749 139.3664 14.12468509380785 1 26536U 00055A 08042.19687966 -.00000207 00000-0 -87046-4 0 8009 2 26536 99.1469 28.6517 0009980 219.4238 140.6193 14.12468013380843 1 26536U 00055A 08043.47195082 -.00000307 00000-0 -14101-3 0 8017 2 26536 99.1473 29.9532 0010045 215.3876 144.6633 14.12467035381023 1 26536U 00055A 08043.47195082 -.00000307 00000-0 -14101-3 0 8039 2 26536 99.1473 29.9532 0010045 215.3876 144.6633 14.12467035381023 1 26536U 00055A 08044.46367248 -.00000234 00000-0 -10139-3 0 8029 2 26536 99.1478 30.9653 0010075 212.4879 147.5679 14.12467025381164 1 26536U 00055A 08044.46367248 -.00000234 00000-0 -10139-3 0 8030 2 26536 99.1478 30.9653 0010075 212.4879 147.5679 14.12467025381164 1 26536U 00055A 08044.46367248 -.00000234 00000-0 -10139-3 0 8041 2 26536 99.1478 30.9653 0010075 212.4879 147.5679 14.12467025381164 1 26536U 00055A 08044.88869612 -.00000125 00000-0 -42385-4 0 8069 2 26536 99.1480 31.3991 0010084 211.2520 148.8074 14.12467424381220 1 26536U 00055A 08045.31371932 -.00000081 00000-0 -18650-4 0 8060 2 26536 99.1482 31.8327 0010112 209.9028 150.1584 14.12467651381289 1 26536U 00055A 08045.73874253 .00000006 00000-0 28562-4 0 8079 2 26536 99.1479 32.2663 0010086 208.6461 151.4163 14.12468010381344 1 26536U 00055A 08046.44711377 .00000198 00000-0 13248-3 0 8071 2 26536 99.1482 32.9894 0010150 206.5930 153.4737 14.12469303381447 1 26536U 00055A 08046.44711377 .00000198 00000-0 13248-3 0 8082 2 26536 99.1482 32.9894 0010150 206.5930 153.4737 14.12469303381447 1 26536U 00055A 08046.80129934 .00000211 00000-0 13962-3 0 8094 2 26536 99.1481 33.3527 0010149 205.3708 154.6958 14.12469400381493 1 26536U 00055A 08046.87213667 .00000248 00000-0 15933-3 0 8100 2 26536 99.1483 33.4240 0010157 205.1034 154.9654 14.12469664381507 1 26536U 00055A 08047.22632227 .00000311 00000-0 19362-3 0 8119 2 26536 99.1479 33.7847 0010222 204.1489 155.9226 14.12470271381551 1 26536U 00055A 08047.65134458 .00000299 00000-0 18694-3 0 8122 2 26536 99.1477 34.2186 0010225 202.8824 157.1880 14.12470402381615 1 26536U 00055A 08048.07636754 .00000332 00000-0 20494-3 0 8124 2 26536 99.1479 34.6523 0010265 201.6544 158.4209 14.12470908381672 1 26536U 00055A 08048.64306398 .00000189 00000-0 12776-3 0 8130 2 26536 99.1477 35.2309 0010315 199.9588 160.1147 14.12470474381750 1 26536U 00055A 08049.42227312 .00000087 00000-0 72218-4 0 8130 2 26536 99.1475 36.0261 0010302 197.7969 162.2843 14.12470442381862 1 26536U 00055A 08049.84729587 -.00000045 00000-0 77307-6 0 8149 2 26536 99.1475 36.4597 0010355 196.4899 163.5896 14.12469641381922 1 26536U 00055A 08050.27231967 -.00000104 00000-0 -31371-4 0 8144 2 26536 99.1475 36.8939 0010301 195.1275 164.9582 14.12469486381981 1 26536U 00055A 08050.62650571 -.00000174 00000-0 -68919-4 0 8155 2 26536 99.1475 37.2552 0010367 193.9670 166.1203 14.12469045382036 1 26536U 00055A 08051.40571537 -.00000204 00000-0 -85123-4 0 8156 2 26536 99.1476 38.0505 0010352 191.6211 168.4734 14.12468824382144 1 26536U 00055A 08051.40571537 -.00000204 00000-0 -85123-4 0 8167 2 26536 99.1476 38.0505 0010352 191.6211 168.4734 14.12468824382144 1 26536U 00055A 08051.90157565 -.00000186 00000-0 -75608-4 0 8170 2 26536 99.1477 38.5565 0010383 190.3113 169.7839 14.12468610382218 1 26536U 00055A 08052.32659915 -.00000188 00000-0 -76745-4 0 8178 2 26536 99.1477 38.9903 0010339 189.0550 171.0438 14.12468564382274 1 26536U 00055A 08052.75162247 -.00000186 00000-0 -75642-4 0 8186 2 26536 99.1477 39.4240 0010366 187.8402 172.2594 14.12468275382338 1 26536U 00055A 08053.10580897 -.00000154 00000-0 -58316-4 0 8185 2 26536 99.1478 39.7854 0010397 186.8946 173.2106 14.12468469382389 1 26536U 00055A 08053.60166916 -.00000140 00000-0 -50537-4 0 8195 2 26536 99.1478 40.2914 0010403 185.4411 174.6652 14.12468444382455 1 26536U 00055A 08054.45171456 .00000030 00000-0 41449-4 0 8192 2 26536 99.1477 41.1590 0010498 183.2947 176.8166 14.12469492382579 1 26536U 00055A 08054.87673744 .00000144 00000-0 10310-3 0 8205 2 26536 99.1479 41.5928 0010435 182.1117 178.0018 14.12470037382632 1 26536U 00055A 08055.37259736 .00000260 00000-0 16570-3 0 8205 2 26536 99.1481 42.0988 0010490 180.6994 179.4206 14.12470963382704 1 26536U 00055A 08055.79761914 .00000241 00000-0 15539-3 0 8211 2 26536 99.1483 42.5331 0010505 179.5550 180.5614 14.12470955382768 1 26536U 00055A 08056.50599004 .00000245 00000-0 15788-3 0 8210 2 26536 99.1487 43.2567 0010529 177.7905 182.3311 14.12471475382864 1 26536U 00055A 08057.14352374 .00000201 00000-0 13403-3 0 8223 2 26536 99.1490 43.9074 0010528 175.7867 184.3373 14.12471532382956 1 26536U 00055A 08057.63938365 .00000060 00000-0 57526-4 0 8236 2 26536 99.1492 44.4139 0010572 174.5088 185.6171 14.12470947383025 1 26536U 00055A 08058.48942965 -.00000093 00000-0 -25261-4 0 8230 2 26536 99.1498 45.2820 0010595 172.1195 188.0131 14.12470352383141 1 26536U 00055A 08059.48115047 -.00000262 00000-0 -11690-3 0 8243 2 26536 99.1499 46.2943 0010614 169.2592 190.8800 14.12469339383281 1 26536U 00055A 08060.47287127 -.00000294 00000-0 -13397-3 0 8255 2 26536 99.1500 47.3067 0010673 166.4997 193.6465 14.12468856383423 1 26536U 00055A 08060.82705726 -.00000237 00000-0 -10333-3 0 8269 2 26536 99.1503 47.6687 0010752 165.6731 194.4754 14.12468828383476 1 26536U 00055A 08061.18124318 -.00000190 00000-0 -77584-4 0 8272 2 26536 99.1503 48.0298 0010754 164.6865 195.4651 14.12469040383528 1 26536U 00055A 08061.60626604 -.00000199 00000-0 -82813-4 0 8285 2 26536 99.1502 48.4636 0010758 163.4811 196.6708 14.12468834383581 1 26536U 00055A 08062.17296384 -.00000067 00000-0 -11055-4 0 8280 2 26536 99.1501 49.0421 0010810 162.0951 198.0646 14.12469453383662 1 26536U 00055A 08062.59798607 .00000008 00000-0 29668-4 0 8294 2 26536 99.1502 49.4759 0010793 160.7491 199.4103 14.12469848383723 1 26536U 00055A 08063.44803069 .00000198 00000-0 13213-3 0 8296 2 26536 99.1503 50.3437 0010855 158.7528 201.4128 14.12471253383842 1 26536U 00055A 08063.44803069 .00000198 00000-0 13213-3 0 8308 2 26536 99.1503 50.3437 0010855 158.7528 201.4128 14.12471253383842 1 26536U 00055A 08063.94388960 .00000307 00000-0 19157-3 0 8317 2 26536 99.1503 50.8499 0010834 157.3568 202.8089 14.12471934383916 1 26536U 00055A 08064.43974877 .00000369 00000-0 22511-3 0 8316 2 26536 99.1503 51.3561 0010858 155.9816 204.1886 14.12472695383980 1 26536U 00055A 08064.43974877 .00000369 00000-0 22511-3 0 8327 2 26536 99.1503 51.3561 0010858 155.9816 204.1886 14.12472695383980 1 26536U 00055A 08065.43146647 .00000317 00000-0 19648-3 0 8335 2 26536 99.1504 52.3686 0010870 153.3090 206.8636 14.12473154384120 1 26536U 00055A 08065.43146647 .00000317 00000-0 19648-3 0 8346 2 26536 99.1504 52.3686 0010870 153.3090 206.8636 14.12473154384120 1 26536U 00055A 08065.43146647 .00000317 00000-0 19648-3 0 8357 2 26536 99.1504 52.3686 0010870 153.3090 206.8636 14.12473154384120 1 26536U 00055A 08066.35234872 .00000089 00000-0 73430-4 0 8375 2 26536 99.1505 53.3087 0010896 150.5279 209.6506 14.12472383384257 1 26536U 00055A 08066.77737089 -.00000086 00000-0 -21491-4 0 8389 2 26536 99.1502 53.7423 0010952 149.5454 210.6307 14.12471391384314 1 26536U 00055A 08067.13155720 -.00000148 00000-0 -55219-4 0 8380 2 26536 99.1501 54.1039 0010923 148.3554 211.8267 14.12471145384367 1 26536U 00055A 08067.55657989 -.00000208 00000-0 -87518-4 0 8395 2 26536 99.1501 54.5378 0010984 147.2555 212.9295 14.12470778384424 1 26536U 00055A 08068.40662550 -.00000254 00000-0 -11211-3 0 8397 2 26536 99.1501 55.4056 0010995 144.7897 215.4010 14.12470365384548 1 26536U 00055A 08068.40662550 -.00000254 00000-0 -11211-3 0 8409 2 26536 99.1501 55.4056 0010995 144.7897 215.4010 14.12470365384548 1 26536U 00055A 08068.83164809 -.00000243 00000-0 -10613-3 0 8414 2 26536 99.1507 55.8396 0011019 143.5924 216.5991 14.12470112384608 1 26536U 00055A 08069.61085654 -.00000208 00000-0 -87332-4 0 8415 2 26536 99.1507 56.6351 0010998 141.4892 218.7068 14.12470047384712 1 26536U 00055A 08070.46090163 -.00000143 00000-0 -52266-4 0 8428 2 26536 99.1509 57.5031 0011031 139.3522 220.8489 14.12470331384834 1 26536U 00055A 08070.46090163 -.00000143 00000-0 -52266-4 0 8439 2 26536 99.1509 57.5031 0011031 139.3522 220.8489 14.12470331384834 1 26536U 00055A 08070.46090163 -.00000143 00000-0 -52266-4 0 8440 2 26536 99.1509 57.5031 0011031 139.3522 220.8489 14.12470331384834 1 26536U 00055A 08070.88592407 -.00000022 00000-0 13159-4 0 8469 2 26536 99.1509 57.9369 0011022 138.2010 222.0021 14.12470793384896 1 26536U 00055A 08071.24010922 .00000010 00000-0 30677-4 0 8467 2 26536 99.1509 58.2985 0011046 137.4248 222.7799 14.12471038384942 1 26536U 00055A 08071.87764257 .00000138 00000-0 99633-4 0 8472 2 26536 99.1515 58.9501 0011048 135.4973 224.7113 14.12471788385030 1 26536U 00055A 08072.44433834 .00000233 00000-0 15139-3 0 8474 2 26536 99.1520 59.5290 0011113 134.0795 226.1333 14.12472655385111 1 26536U 00055A 08072.44433834 .00000233 00000-0 15139-3 0 8485 2 26536 99.1520 59.5290 0011113 134.0795 226.1333 14.12472655385111 1 26536U 00055A 08072.94019647 .00000329 00000-0 20340-3 0 8499 2 26536 99.1524 60.0356 0011123 132.6846 227.5271 14.12473323385183 1 26536U 00055A 08073.36521803 .00000351 00000-0 21490-3 0 8490 2 26536 99.1527 60.4698 0011137 131.6882 228.5252 14.12473747385240 1 26536U 00055A 08073.86107633 .00000210 00000-0 13905-3 0 8504 2 26536 99.1526 60.9765 0011201 130.4533 229.7569 14.12473185385319 1 26536U 00055A 08074.56944681 .00000072 00000-0 63883-4 0 8501 2 26536 99.1527 61.6997 0011225 128.7321 231.4836 14.12472827385416 1 26536U 00055A 08075.49032844 -.00000055 00000-0 -47506-5 0 8512 2 26536 99.1526 62.6399 0011276 126.1545 234.0673 14.12472389385543 1 26536U 00055A 08075.91535038 -.00000121 00000-0 -40446-4 0 8522 2 26536 99.1525 63.0739 0011282 125.0297 235.1914 14.12471956385600 1 26536U 00055A 08076.34037290 -.00000149 00000-0 -55394-4 0 8525 2 26536 99.1526 63.5078 0011301 123.7771 236.4477 14.12471820385660 1 26536U 00055A 08076.76539507 -.00000180 00000-0 -72104-4 0 8533 2 26536 99.1522 63.9416 0011295 122.6176 237.6065 14.12471412385725 1 26536U 00055A 08077.19041777 -.00000179 00000-0 -71626-4 0 8534 2 26536 99.1523 64.3756 0011298 121.5393 238.6892 14.12471371385789 1 26536U 00055A 08077.54460280 -.00000231 00000-0 -99731-4 0 8544 2 26536 99.1520 64.7370 0011328 120.6400 239.5882 14.12471012385832 1 26536U 00055A 08078.46548450 -.00000184 00000-0 -74343-4 0 8541 2 26536 99.1518 65.6771 0011308 117.9928 242.2397 14.12471104385964 1 26536U 00055A 08078.89050667 -.00000043 00000-0 17837-5 0 8556 2 26536 99.1515 66.1110 0011267 116.5413 243.6936 14.12471707386023 1 26536U 00055A 08079.24469134 -.00000012 00000-0 18644-4 0 8551 2 26536 99.1513 66.4726 0011268 115.8476 244.3875 14.12471930386072 1 26536U 00055A 08079.81138708 .00000078 00000-0 67572-4 0 8560 2 26536 99.1508 67.0510 0011289 114.1442 246.0921 14.12472405386150 1 26536U 00055A 08080.51975558 .00000192 00000-0 12917-3 0 8560 2 26536 99.1511 67.7745 0011295 112.5463 247.6898 14.12473332386254 1 26536U 00055A 08080.51975558 .00000192 00000-0 12917-3 0 8571 2 26536 99.1511 67.7745 0011295 112.5463 247.6898 14.12473332386254 1 26536U 00055A 08080.94477727 .00000290 00000-0 18217-3 0 8582 2 26536 99.1511 68.2086 0011262 111.4577 248.7816 14.12474014386313 1 26536U 00055A 08081.36979822 .00000317 00000-0 19685-3 0 8582 2 26536 99.1512 68.6424 0011273 110.3941 249.8457 14.12474520386370 1 26536U 00055A 08081.79481912 .00000248 00000-0 15954-3 0 8596 2 26536 99.1515 69.0766 0011299 109.3652 250.8707 14.12474228386434 1 26536U 00055A 08082.21984108 .00000219 00000-0 14366-3 0 8593 2 26536 99.1514 69.5106 0011303 108.2016 252.0388 14.12474389386497 1 26536U 00055A 08082.57402541 .00000142 00000-0 10186-3 0 8601 2 26536 99.1518 69.8727 0011307 107.3138 252.9261 14.12474178386543 1 26536U 00055A 08082.99904688 .00000085 00000-0 71241-4 0 8602 2 26536 99.1521 70.3067 0011333 106.1926 254.0478 14.12474003386609 1 26536U 00055A 08083.77825291 -.00000060 00000-0 -72475-5 0 8618 2 26536 99.1521 71.1023 0011332 104.1577 256.0816 14.12473310386719 1 26536U 00055A 08084.13243826 -.00000132 00000-0 -46185-4 0 8615 2 26536 99.1521 71.4642 0011343 102.9517 257.2911 14.12473037386761 1 26536U 00055A 08084.55746008 -.00000185 00000-0 -74813-4 0 8629 2 26536 99.1524 71.8984 0011338 101.9514 258.2925 14.12472695386829 1 26536U 00055A 08085.47834105 -.00000282 00000-0 -12769-3 0 8637 2 26536 99.1526 72.8388 0011370 99.2740 260.9720 14.12471952386958 1 26536U 00055A 08086.32838465 -.00000241 00000-0 -10542-3 0 8648 2 26536 99.1526 73.7069 0011394 97.1345 263.1125 14.12471817387076 1 26536U 00055A 08086.75340653 -.00000181 00000-0 -72675-4 0 8652 2 26536 99.1526 74.1411 0011394 95.8010 264.4460 14.12471855387131 1 26536U 00055A 08087.10759147 -.00000081 00000-0 -18865-4 0 8654 2 26536 99.1527 74.5027 0011370 95.0932 265.1572 14.12472355387181 1 26536U 00055A 08087.74512339 -.00000049 00000-0 -14675-5 0 8665 2 26536 99.1525 75.1538 0011393 93.3231 266.9244 14.12472415387273 1 26536U 00055A 08088.17014509 .00000079 00000-0 68154-4 0 8660 2 26536 99.1522 75.5876 0011346 92.9643 267.2882 14.12473205387336 1 26536U 00055A 08088.17014509 .00000079 00000-0 68154-4 0 8671 2 26536 99.1522 75.5876 0011346 92.9643 267.2882 14.12473205387336 1 26536U 00055A 08088.59516544 .00000137 00000-0 99253-4 0 8683 2 26536 99.1532 76.0223 0011431 92.1063 268.1433 14.12473641387394 1 26536U 00055A 08089.44520678 .00000268 00000-0 17039-3 0 8687 2 26536 99.1536 76.8908 0011374 90.2080 270.0408 14.12474817387514 1 26536U 00055A 08089.44520678 .00000268 00000-0 17039-3 0 8698 2 26536 99.1536 76.8908 0011374 90.2080 270.0408 14.12474817387514 1 26536U 00055A 08089.87022743 .00000316 00000-0 19608-3 0 8705 2 26536 99.1533 77.3249 0011388 89.0639 271.1834 14.12475219387574 1 26536U 00055A 08090.36608503 .00000334 00000-0 20604-3 0 8703 2 26536 99.1535 77.8313 0011395 88.0139 272.2350 14.12475718387642 1 26536U 00055A 08090.86194212 .00000258 00000-0 16471-3 0 8718 2 26536 99.1535 78.3381 0011355 86.5845 273.6591 14.12475480387712 1 26536U 00055A 08091.28696345 .00000171 00000-0 11796-3 0 8718 2 26536 99.1534 78.7723 0011363 85.3611 274.8843 14.12475332387777 1 26536U 00055A 08091.71198445 .00000074 00000-0 65455-4 0 8729 2 26536 99.1537 79.2066 0011348 84.3242 275.9199 14.12474914387836 1 26536U 00055A 08092.13700575 -.00000036 00000-0 57348-5 0 8721 2 26536 99.1533 79.6409 0011370 83.0028 277.2416 14.12474516387891 1 26536U 00055A 08092.63286393 -.00000161 00000-0 -61795-4 0 8734 2 26536 99.1534 80.1472 0011363 81.8404 278.4029 14.12473815387967 1 26536U 00055A 08093.48290696 -.00000233 00000-0 -10111-3 0 8734 2 26536 99.1529 81.0151 0011398 79.1545 281.0909 14.12473408388088 1 26536U 00055A 08093.48290696 -.00000233 00000-0 -10111-3 0 8745 2 26536 99.1529 81.0151 0011398 79.1545 281.0909 14.12473408388088 1 26536U 00055A 08093.90792824 -.00000177 00000-0 -70744-4 0 8759 2 26536 99.1526 81.4490 0011395 78.0032 282.2421 14.12473487388147 1 26536U 00055A 08094.40378627 -.00000166 00000-0 -64850-4 0 8755 2 26536 99.1526 81.9554 0011403 76.7351 283.5104 14.12473517388216 1 26536U 00055A 08094.89964412 -.00000121 00000-0 -40502-4 0 8761 2 26536 99.1527 82.4617 0011410 75.3279 284.9157 14.12473563388286 1 26536U 00055A 08095.32466529 -.00000123 00000-0 -41590-4 0 8766 2 26536 99.1527 82.8957 0011419 74.2203 286.0229 14.12473512388345 1 26536U 00055A 08095.82052332 -.00000080 00000-0 -17934-4 0 8772 2 26536 99.1526 83.4018 0011454 72.6708 287.5706 14.12473534388418 1 26536U 00055A 08096.17470782 .00000007 00000-0 28852-4 0 8772 2 26536 99.1526 83.7635 0011398 72.0599 288.1853 14.12474069388464 1 26536U 00055A 08096.59972806 .00000083 00000-0 70117-4 0 8788 2 26536 99.1525 84.1975 0011439 70.9017 289.3405 14.12474534388523 1 26536U 00055A 08097.37893202 .00000224 00000-0 14662-3 0 8786 2 26536 99.1526 84.9934 0011393 69.2459 290.9958 14.12475679388631 1 26536U 00055A 08097.37893202 .00000224 00000-0 14662-3 0 8797 2 26536 99.1526 84.9934 0011393 69.2459 290.9958 14.12475679388631 1 26536U 00055A 08097.80395195 .00000281 00000-0 17712-3 0 8807 2 26536 99.1529 85.4279 0011415 67.8555 292.3818 14.12476035388692 1 26536U 00055A 08098.15813574 .00000347 00000-0 21288-3 0 8808 2 26536 99.1528 85.7896 0011359 67.0753 293.1641 14.12476652388742 1 26536U 00055A 08098.58315537 .00000319 00000-0 19779-3 0 8813 2 26536 99.1533 86.2243 0011359 65.6658 294.5685 14.12476762388800 1 26536U 00055A 08099.43319630 .00000180 00000-0 12258-3 0 8817 2 26536 99.1532 87.0927 0011342 63.5658 296.6676 14.12476605388928 1 26536U 00055A 08099.85821643 .00000097 00000-0 77676-4 0 8829 2 26536 99.1537 87.5272 0011296 62.6893 297.5405 14.12476223388982 1 26536U 00055A 08100.28323713 -.00000033 00000-0 70760-5 0 8823 2 26536 99.1535 87.9614 0011330 61.3825 298.8458 14.12475717389041 1 26536U 00055A 08100.70825805 -.00000116 00000-0 -37431-4 0 8830 2 26536 99.1536 88.3957 0011312 60.2271 300.0001 14.12475190389102 1 26536U 00055A 08101.41662639 -.00000216 00000-0 -91932-4 0 8841 2 26536 99.1539 89.1195 0011312 58.3895 301.8386 14.12474699389207 1 26536U 00055A 08102.47917836 -.00000230 00000-0 -99489-4 0 8852 2 26536 99.1540 90.2045 0011284 55.7248 304.5002 14.12474273389356 1 26536U 00055A 08102.47917836 -.00000230 00000-0 -99489-4 0 8863 2 26536 99.1540 90.2045 0011284 55.7248 304.5002 14.12474273389356 1 26536U 00055A 08102.97503575 -.00000171 00000-0 -67592-4 0 8874 2 26536 99.1539 90.7111 0011300 54.2089 306.0134 14.12474351389427 1 26536U 00055A 08103.47089327 -.00000190 00000-0 -77460-4 0 8870 2 26536 99.1540 91.2176 0011317 53.0161 307.2045 14.12474182389495 1 26536U 00055A 08103.47089327 -.00000190 00000-0 -77460-4 0 8881 2 26536 99.1540 91.2176 0011317 53.0161 307.2045 14.12474182389495 1 26536U 00055A 08103.47089327 -.00000190 00000-0 -77460-4 0 8892 2 26536 99.1540 91.2176 0011317 53.0161 307.2045 14.12474182389495 1 26536U 00055A 08103.82507727 -.00000142 00000-0 -51774-4 0 8910 2 26536 99.1541 91.5795 0011335 51.8820 308.3361 14.12474152389540 1 26536U 00055A 08104.25009828 -.00000107 00000-0 -32775-4 0 8918 2 26536 99.1540 92.0136 0011282 50.8570 309.3629 14.12474391389606 1 26536U 00055A 08104.60428169 -.00000057 00000-0 -54787-5 0 8923 2 26536 99.1540 92.3753 0011288 49.9577 310.2591 14.12474592389653 1 26536U 00055A 08105.38348520 .00000132 00000-0 96775-4 0 8925 2 26536 99.1539 93.1709 0011234 47.8707 312.3446 14.12475857389763 1 26536U 00055A 08105.87934157 .00000189 00000-0 12768-3 0 8938 2 26536 99.1537 93.6775 0011258 46.3687 313.8411 14.12476208389833 1 26536U 00055A 08106.23352510 .00000284 00000-0 17911-3 0 8937 2 26536 99.1537 94.0393 0011207 45.4920 314.7198 14.12476946389884 1 26536U 00055A 08106.65854434 .00000284 00000-0 17890-3 0 8942 2 26536 99.1538 94.4736 0011224 44.2541 315.9512 14.12477091389947 1 26536U 00055A 08107.43774730 .00000287 00000-0 18025-3 0 8943 2 26536 99.1534 95.2701 0011145 42.0980 318.1054 14.12477766390058 1 26536U 00055A 08107.43774730 .00000287 00000-0 18025-3 0 8954 2 26536 99.1534 95.2701 0011145 42.0980 318.1054 14.12477766390058 1 26536U 00055A 08107.79193016 .00000249 00000-0 16015-3 0 8961 2 26536 99.1540 95.6319 0011115 41.2380 318.9608 14.12477632390107 1 26536U 00055A 08108.21695022 .00000165 00000-0 11434-3 0 8960 2 26536 99.1539 96.0661 0011102 40.1393 320.0586 14.12477502390169 1 26536U 00055A 08108.57113351 .00000054 00000-0 54395-4 0 8971 2 26536 99.1538 96.4278 0011071 39.1691 321.0261 14.12477065390211 1 26536U 00055A 08109.42117407 -.00000071 00000-0 -13425-4 0 8972 2 26536 99.1537 97.2960 0011071 36.8955 323.2980 14.12476637390333 1 26536U 00055A 08109.84619396 -.00000120 00000-0 -39852-4 0 8980 2 26536 99.1536 97.7300 0011092 35.7001 324.4879 14.12476171390397 1 26536U 00055A 08110.27121468 -.00000194 00000-0 -79571-4 0 8980 2 26536 99.1536 98.1642 0011135 34.5513 325.6365 14.12475787390456 1 26536U 00055A 08110.62539849 -.00000284 00000-0 -12848-3 0 8999 2 26536 99.1538 98.5261 0011052 33.9784 326.2083 14.12475206390506 1 26536U 00055A 08111.40460265 -.00000265 00000-0 -11817-3 0 8995 2 26536 99.1537 99.3221 0011061 31.8132 328.3717 14.12475124390612 1 26536U 00055A 08111.40460265 -.00000265 00000-0 -11817-3 0 9008 2 26536 99.1537 99.3221 0011061 31.8132 328.3717 14.12475124390612 1 26536U 00055A 08111.40460265 -.00000265 00000-0 -11817-3 0 9019 2 26536 99.1537 99.3221 0011061 31.8132 328.3717 14.12475124390612 1 26536U 00055A 08111.75878612 -.00000229 00000-0 -98913-4 0 9020 2 26536 99.1537 99.6840 0011105 30.8191 329.3617 14.12474991390661 1 26536U 00055A 08112.18380685 -.00000182 00000-0 -73362-4 0 9025 2 26536 99.1537 100.1183 0011075 29.7039 330.4781 14.12475170390725 1 26536U 00055A 08112.18380685 -.00000182 00000-0 -73362-4 0 9036 2 26536 99.1537 100.1183 0011075 29.7039 330.4781 14.12475170390725 1 26536U 00055A 08112.18380685 -.00000182 00000-0 -73362-4 0 9047 2 26536 99.1537 100.1183 0011075 29.7039 330.4781 14.12475170390725 1 26536U 00055A 08112.53799008 -.00000155 00000-0 -58728-4 0 9059 2 26536 99.1539 100.4802 0011046 28.9545 331.2244 14.12475216390778 1 26536U 00055A 08113.38802973 .00000108 00000-0 83783-4 0 9054 2 26536 99.1542 101.3484 0011015 26.6683 333.5089 14.12476725390893 1 26536U 00055A 08113.38802973 .00000108 00000-0 83783-4 0 9065 2 26536 99.1542 101.3484 0011015 26.6683 333.5089 14.12476725390893 1 26536U 00055A 08113.38802973 .00000108 00000-0 83783-4 0 9076 2 26536 99.1542 101.3484 0011015 26.6683 333.5089 14.12476725390893 1 26536U 00055A 08113.88388553 .00000173 00000-0 11870-3 0 9084 2 26536 99.1545 101.8552 0011027 25.2375 334.9325 14.12477011390968 1 26536U 00055A 08114.66308805 .00000269 00000-0 17056-3 0 9081 2 26536 99.1546 102.6517 0010919 23.5507 336.6166 14.12477867391070 1 26536U 00055A 08115.51312651 .00000264 00000-0 16810-3 0 9105 2 26536 99.1550 103.5204 0010849 21.1353 339.0260 14.12478436391191 1 26536U 00055A 08115.93814593 .00000218 00000-0 14332-3 0 9097 2 26536 99.1552 103.9545 0010858 19.9452 340.2121 14.12478370391254 1 26536U 00055A 08116.85902181 .00000039 00000-0 46257-4 0 9116 2 26536 99.1558 104.8954 0010738 17.6370 342.5149 14.12477764391380 1 26536U 00055A 08117.28404182 .00000001 00000-0 25785-4 0 9103 2 26536 99.1557 105.3297 0010764 16.4696 343.6822 14.12477742391445 1 26536U 00055A 08117.70906140 -.00000111 00000-0 -34895-4 0 9118 2 26536 99.1558 105.7639 0010733 15.3492 344.7971 14.12477059391503 1 26536U 00055A 08118.55910163 -.00000239 00000-0 -10439-3 0 9110 2 26536 99.1558 106.6323 0010732 13.1750 346.9679 14.12476329391626 1 26536U 00055A 08118.91328538 -.00000157 00000-0 -60018-4 0 9128 2 26536 99.1556 106.9941 0010710 12.0487 348.0963 14.12476674391671 1 26536U 00055A 08119.83416104 -.00000191 00000-0 -78206-4 0 9123 2 26536 99.1559 107.9349 0010677 9.5144 350.6204 14.12476233391803 1 26536U 00055A 08120.54252779 -.00000178 00000-0 -71094-4 0 9144 2 26536 99.1556 108.6587 0010586 7.5246 352.6083 14.12476222391908 1 26536U 00055A 08120.96754779 -.00000068 00000-0 -11759-4 0 9136 2 26536 99.1555 109.0930 0010596 6.2198 353.9129 14.12476725391966 1 26536U 00055A 08121.81758631 .00000080 00000-0 68710-4 0 9155 2 26536 99.1547 109.9607 0010610 3.8178 356.3068 14.12477511392082 1 26536U 00055A 08122.17176940 .00000151 00000-0 10716-3 0 9142 2 26536 99.1547 110.3226 0010531 2.6922 357.4335 14.12478047392131 1 26536U 00055A 08122.52595166 .00000172 00000-0 11856-3 0 9156 2 26536 99.1549 110.6847 0010480 1.8880 358.2341 14.12478360392181 1 26536U 00055A 08123.44682593 .00000348 00000-0 21360-3 0 9155 2 26536 99.1548 111.6254 0010423 359.3038 0.8134 14.12479815392317 1 26536U 00055A 08123.80100800 .00000336 00000-0 20685-3 0 9168 2 26536 99.1547 111.9872 0010455 358.5021 1.6093 14.12479868392369 1 26536U 00055A 08124.58020969 .00000235 00000-0 15219-3 0 9166 2 26536 99.1546 112.7832 0010418 356.0907 4.0162 14.12479884392472 1 26536U 00055A 08125.85526739 .00000016 00000-0 33879-4 0 9174 2 26536 99.1545 114.0860 0010382 352.7427 7.3563 14.12479172392658 1 26536U 00055A 08126.91781596 -.00000181 00000-0 -72478-4 0 9180 2 26536 99.1548 115.1723 0010349 349.8766 10.2164 14.12478223392800 1 26536U 00055A 08126.91781596 -.00000181 00000-0 -72478-4 0 9191 2 26536 99.1548 115.1723 0010349 349.8766 10.2164 14.12478223392800 1 26536U 00055A 08127.76785552 -.00000189 00000-0 -77111-4 0 9198 2 26536 99.1547 116.0407 0010336 347.6120 12.4786 14.12477881392920 1 26536U 00055A 08128.19287526 -.00000201 00000-0 -83649-4 0 9204 2 26536 99.1545 116.4749 0010324 346.3600 13.7299 14.12477797392982 1 26536U 00055A 08128.90124140 -.00000202 00000-0 -84302-4 0 9225 2 26536 99.1547 117.1985 0010269 344.2776 15.8090 14.12477525393086 1 26536U 00055A 08129.39709740 -.00000130 00000-0 -44872-4 0 9211 2 26536 99.1548 117.7052 0010231 342.8580 17.2276 14.12477902393153 1 26536U 00055A 08129.39709740 -.00000130 00000-0 -44872-4 0 9222 2 26536 99.1548 117.7052 0010231 342.8580 17.2276 14.12477902393153 1 26536U 00055A 08129.75127973 -.00000075 00000-0 -15167-4 0 9238 2 26536 99.1545 118.0670 0010211 341.9877 18.0925 14.12477980393209 1 26536U 00055A 08130.10546279 .00000087 00000-0 72200-4 0 9235 2 26536 99.1544 118.4287 0010165 340.7157 19.3679 14.12478914393255 1 26536U 00055A 08130.88466361 .00000190 00000-0 12782-3 0 9258 2 26536 99.1545 119.2250 0010136 338.5514 21.5242 14.12479594393363 1 26536U 00055A 08131.30968243 .00000242 00000-0 15641-3 0 9246 2 26536 99.1546 119.6591 0010101 337.1814 22.8933 14.12480176393422 1 26536U 00055A 08131.30968243 .00000242 00000-0 15641-3 0 9257 2 26536 99.1546 119.6591 0010101 337.1814 22.8933 14.12480176393422 1 26536U 00055A 08131.73470077 .00000259 00000-0 16545-3 0 9260 2 26536 99.1550 120.0937 0010114 336.1593 23.9093 14.12480333393484 1 26536U 00055A 08132.51390151 .00000231 00000-0 15003-3 0 9269 2 26536 99.1556 120.8903 0010077 333.5290 26.5346 14.12480718393593 1 26536U 00055A 08132.51390151 .00000231 00000-0 15003-3 0 9270 2 26536 99.1556 120.8903 0010077 333.5290 26.5346 14.12480718393593 1 26536U 00055A 08132.93892059 .00000186 00000-0 12589-3 0 9286 2 26536 99.1553 121.3244 0010051 332.3935 27.6693 14.12480745393653 1 26536U 00055A 08133.36393946 .00000167 00000-0 11574-3 0 9287 2 26536 99.1554 121.7586 0010017 331.1843 28.8776 14.12480894393711 1 26536U 00055A 08133.78895808 .00000081 00000-0 69133-4 0 9298 2 26536 99.1555 122.1931 0010061 329.9054 30.1504 14.12480445393772 1 26536U 00055A 08134.56816004 .00000016 00000-0 33861-4 0 9293 2 26536 99.1553 122.9893 0010089 327.8139 32.2411 14.12480337393888 1 26536U 00055A 08134.92234250 -.00000048 00000-0 -59088-6 0 9300 2 26536 99.1554 123.3514 0010079 326.8757 33.1767 14.12480040393939 1 26536U 00055A 08135.27652526 -.00000122 00000-0 -40900-4 0 9303 2 26536 99.1554 123.7131 0010069 325.9984 34.0529 14.12479703393984 1 26536U 00055A 08135.27652526 -.00000122 00000-0 -40900-4 0 9314 2 26536 99.1554 123.7131 0010069 325.9984 34.0529 14.12479703393984 1 26536U 00055A 08135.77238110 -.00000145 00000-0 -53031-4 0 9323 2 26536 99.1554 124.2195 0010055 324.4344 35.6136 14.12479305394057 1 26536U 00055A 08136.55158349 -.00000232 00000-0 -10033-3 0 9326 2 26536 99.1550 125.0154 0010011 322.1763 37.8704 14.12478813394169 1 26536U 00055A 08136.55158349 -.00000232 00000-0 -10033-3 0 9337 2 26536 99.1550 125.0154 0010011 322.1763 37.8704 14.12478813394169 1 26536U 00055A 08136.97660286 -.00000180 00000-0 -71935-4 0 9343 2 26536 99.1548 125.4496 0009997 321.0646 38.9816 14.12478961394225 1 26536U 00055A 08137.40162198 -.00000204 00000-0 -85156-4 0 9348 2 26536 99.1547 125.8838 0009996 319.6954 40.3478 14.12478763394289 1 26536U 00055A 08137.89747793 -.00000068 00000-0 -11741-4 0 9359 2 26536 99.1548 126.3903 0009955 318.1280 41.9160 14.12479318394350 1 26536U 00055A 08138.25166001 -.00000019 00000-0 14856-4 0 9352 2 26536 99.1546 126.7519 0009902 316.9058 43.1351 14.12479566394403 1 26536U 00055A 08138.67667891 .00000046 00000-0 49976-4 0 9362 2 26536 99.1548 127.1863 0009907 315.8475 44.1910 14.12479858394460 1 26536U 00055A 08139.38504294 .00000224 00000-0 14662-3 0 9369 2 26536 99.1545 127.9095 0009872 313.2074 46.8294 14.12481176394561 1 26536U 00055A 08139.38504294 .00000224 00000-0 14662-3 0 9370 2 26536 99.1545 127.9095 0009872 313.2074 46.8294 14.12481176394561 1 26536U 00055A 08139.73922472 .00000222 00000-0 14555-3 0 9381 2 26536 99.1547 128.2718 0009839 312.3714 47.6602 14.12481157394610 1 26536U 00055A 08140.51842504 .00000295 00000-0 18495-3 0 9383 2 26536 99.1547 129.0683 0009812 309.5730 50.4572 14.12482157394728 1 26536U 00055A 08141.43929827 .00000221 00000-0 14464-3 0 9391 2 26536 99.1545 130.0093 0009795 306.9712 53.0555 14.12482443394856 1 26536U 00055A 08141.86431674 .00000206 00000-0 13697-3 0 9408 2 26536 99.1551 130.4436 0009787 305.7128 54.3115 14.12482439394915 1 26536U 00055A 08142.28933541 .00000145 00000-0 10360-3 0 9401 2 26536 99.1551 130.8779 0009794 304.6290 55.3942 14.12482337394977 1 26536U 00055A 08142.71435408 -.00000005 00000-0 22764-4 0 9417 2 26536 99.1550 131.3121 0009779 303.1817 56.8377 14.12481558395035 1 26536U 00055A 08143.49355635 -.00000180 00000-0 -72195-4 0 9414 2 26536 99.1546 132.1083 0009738 301.1222 58.8999 14.12480855395142 1 26536U 00055A 08143.91857514 -.00000215 00000-0 -91009-4 0 9429 2 26536 99.1544 132.5425 0009723 299.8373 60.1820 14.12480520395203 1 26536U 00055A 08144.34359438 -.00000224 00000-0 -95793-4 0 9423 2 26536 99.1545 132.9768 0009693 298.8197 61.1999 14.12480389395264 1 26536U 00055A 08144.34359438 -.00000224 00000-0 -95793-4 0 9434 2 26536 99.1545 132.9768 0009693 298.8197 61.1999 14.12480389395264 1 26536U 00055A 08144.76861348 -.00000266 00000-0 -11855-3 0 9441 2 26536 99.1545 133.4108 0009668 297.2891 62.7277 14.12479849395326 1 26536U 00055A 08145.12279655 -.00000235 00000-0 -10218-3 0 9444 2 26536 99.1545 133.7727 0009671 296.4101 63.6092 14.12479968395377 1 26536U 00055A 08145.90199769 -.00000125 00000-0 -42531-4 0 9461 2 26536 99.1549 134.5690 0009626 293.7563 66.2611 14.12480317395489 1 26536U 00055A 08146.32701655 -.00000083 00000-0 -19697-4 0 9450 2 26536 99.1548 135.0032 0009614 292.3642 67.6525 14.12480505395549 1 26536U 00055A 08146.32701655 -.00000083 00000-0 -19697-4 0 9461 2 26536 99.1548 135.0032 0009614 292.3642 67.6525 14.12480505395549 1 26536U 00055A 08146.32701655 -.00000083 00000-0 -19697-4 0 9472 2 26536 99.1548 135.0032 0009614 292.3642 67.6525 14.12480505395549 1 26536U 00055A 08146.32701655 -.00000083 00000-0 -19697-4 0 9483 2 26536 99.1548 135.0032 0009614 292.3642 67.6525 14.12480505395549 1 26536U 00055A 08146.68119881 -.00000032 00000-0 76726-5 0 9497 2 26536 99.1544 135.3649 0009569 291.0971 68.9175 14.12480603395591 1 26536U 00055A 08147.46039926 .00000068 00000-0 62011-4 0 9494 2 26536 99.1544 136.1610 0009588 288.4195 71.5942 14.12481491395708 1 26536U 00055A 08147.46039926 .00000068 00000-0 62011-4 0 9506 2 26536 99.1544 136.1610 0009588 288.4195 71.5942 14.12481491395708 1 26536U 00055A 08147.88541787 .00000195 00000-0 13075-3 0 9512 2 26536 99.1541 136.5953 0009591 287.1412 72.8724 14.12482153395765 1 26536U 00055A 08148.31043615 .00000310 00000-0 19316-3 0 9511 2 26536 99.1542 137.0296 0009601 285.6164 74.3987 14.12483061395825 1 26536U 00055A 08148.73545367 .00000308 00000-0 19212-3 0 9521 2 26536 99.1552 137.4645 0009567 284.6873 75.3218 14.12483182395883 1 26536U 00055A 08149.44381729 .00000275 00000-0 17399-3 0 9527 2 26536 99.1553 138.1884 0009612 282.1452 77.8640 14.12483688395982 1 26536U 00055A 08150.29385390 .00000258 00000-0 16468-3 0 9538 2 26536 99.1554 139.0574 0009570 280.1100 79.8983 14.12483990396103 1 26536U 00055A 08150.71887215 .00000049 00000-0 51686-4 0 9549 2 26536 99.1555 139.4917 0009583 278.6219 81.3816 14.12482998396162 1 26536U 00055A 08151.49807370 -.00000086 00000-0 -21431-4 0 9547 2 26536 99.1553 140.2877 0009566 276.6001 83.4074 14.12482581396272 1 26536U 00055A 08151.49807370 -.00000086 00000-0 -21431-4 0 9558 2 26536 99.1553 140.2877 0009566 276.6001 83.4074 14.12482581396272 1 26536U 00055A 08151.92309238 -.00000123 00000-0 -41238-4 0 9566 2 26536 99.1553 140.7221 0009563 275.3669 84.6400 14.12482333396331 1 26536U 00055A 08152.41894768 -.00000182 00000-0 -73339-4 0 9560 2 26536 99.1553 141.2287 0009535 273.6381 86.3699 14.12482056396409 1 26536U 00055A 08152.77312997 -.00000169 00000-0 -66373-4 0 9574 2 26536 99.1557 141.5905 0009531 272.6065 87.4001 14.12481834396454 1 26536U 00055A 08153.55233142 -.00000228 00000-0 -98095-4 0 9577 2 26536 99.1554 142.3864 0009501 270.1075 89.9007 14.12481448396561 1 26536U 00055A 08154.40236887 -.00000124 00000-0 -41663-4 0 9586 2 26536 99.1551 143.2547 0009510 267.4061 92.6037 14.12481855396689 1 26536U 00055A 08154.89822391 -.00000061 00000-0 -77325-5 0 9596 2 26536 99.1550 143.7611 0009521 265.8440 94.1647 14.12482006396751 1 26536U 00055A 08155.39407911 -.00000002 00000-0 24130-4 0 9598 2 26536 99.1547 144.2675 0009524 264.0564 95.9552 14.12482448396826 1 26536U 00055A 08155.88993363 .00000154 00000-0 10852-3 0 9607 2 26536 99.1544 144.7740 0009538 262.9067 97.1042 14.12483257396895 1 26536U 00055A 08156.31495162 .00000234 00000-0 15166-3 0 9602 2 26536 99.1542 145.2082 0009565 261.3055 98.7064 14.12483924396957 1 26536U 00055A 08156.66913288 .00000264 00000-0 16831-3 0 9618 2 26536 99.1548 145.5705 0009495 260.6298 99.3785 14.12484124397008 1 26536U 00055A 08157.02331499 .00000347 00000-0 21331-3 0 9610 2 26536 99.1546 145.9326 0009538 259.2577 100.7547 14.12484808397058 1 26536U 00055A 08157.94418673 .00000317 00000-0 19666-3 0 9638 2 26536 99.1546 146.8738 0009522 256.5762 103.4337 14.12485265397183 1 26536U 00055A 08158.36920479 .00000317 00000-0 19681-3 0 9623 2 26536 99.1544 147.3079 0009551 254.8981 105.1149 14.12485669397246 1 26536U 00055A 08158.72338596 .00000191 00000-0 12847-3 0 9634 2 26536 99.1550 147.6703 0009564 253.9751 106.0318 14.12484994397292 1 26536U 00055A 08159.07756857 .00000077 00000-0 66958-4 0 9644 2 26536 99.1548 148.0324 0009511 253.1315 106.8791 14.12484648397348 1 26536U 00055A 08159.92760587 -.00000100 00000-0 -28647-4 0 9667 2 26536 99.1550 148.9014 0009544 250.6364 109.3769 14.12483810397464 1 26536U 00055A 08160.28178799 -.00000149 00000-0 -55215-4 0 9659 2 26536 99.1550 149.2634 0009527 249.6901 110.3237 14.12483554397515 1 26536U 00055A 08160.70680666 -.00000202 00000-0 -84162-4 0 9661 2 26536 99.1551 149.6978 0009540 248.2711 111.7428 14.12483072397578 1 26536U 00055A 08161.41517133 -.00000256 00000-0 -11352-3 0 9667 2 26536 99.1551 150.4215 0009560 245.9535 114.0646 14.12482784397670 1 26536U 00055A 08161.91102635 -.00000219 00000-0 -93196-4 0 9676 2 26536 99.1551 150.9280 0009567 244.3125 115.7057 14.12482652397748 1 26536U 00055A 08162.26520872 -.00000171 00000-0 -67072-4 0 9673 2 26536 99.1550 151.2900 0009600 243.1173 116.9043 14.12482887397791 1 26536U 00055A 08162.61939049 -.00000197 00000-0 -81174-4 0 9680 2 26536 99.1550 151.6518 0009602 241.8826 118.1353 14.12482477397841 1 26536U 00055A 08163.46942776 -.00000056 00000-0 -50455-5 0 9688 2 26536 99.1552 152.5203 0009630 239.2544 120.7705 14.12483335397960 1 26536U 00055A 08163.46942776 -.00000056 00000-0 -50455-5 0 9699 2 26536 99.1552 152.5203 0009630 239.2544 120.7705 14.12483335397960 1 26536U 00055A 08163.82360941 .00000027 00000-0 40028-4 0 9709 2 26536 99.1552 152.8823 0009620 238.5243 121.4987 14.12483617398018 1 26536U 00055A 08164.24862795 .00000113 00000-0 86262-4 0 9706 2 26536 99.1553 153.3166 0009711 236.8373 123.1909 14.12484239398071 1 26536U 00055A 08164.67364545 .00000249 00000-0 15981-3 0 9713 2 26536 99.1556 153.7510 0009651 235.8745 124.1519 14.12484946398136 1 26536U 00055A 08165.45284445 .00000335 00000-0 20659-3 0 9714 2 26536 99.1557 154.5471 0009749 233.1065 126.9227 14.12486013398241 1 26536U 00055A 08165.45284445 .00000335 00000-0 20659-3 0 9725 2 26536 99.1557 154.5471 0009749 233.1065 126.9227 14.12486013398241 1 26536U 00055A 08165.87786199 .00000316 00000-0 19600-3 0 9738 2 26536 99.1560 154.9816 0009759 231.6723 128.3548 14.12486022398306 1 26536U 00055A 08166.72789744 .00000264 00000-0 16829-3 0 9734 2 26536 99.1558 155.8503 0009802 229.3420 130.6875 14.12486429398426 1 26536U 00055A 08167.50709752 .00000123 00000-0 91582-4 0 9747 2 26536 99.1558 156.6467 0009771 227.3173 132.7169 14.12486142398535 1 26536U 00055A 08168.28629743 -.00000005 00000-0 22524-4 0 9755 2 26536 99.1555 157.4429 0009743 224.9809 135.0558 14.12485657398647 1 26536U 00055A 08168.71131572 -.00000141 00000-0 -51097-4 0 9761 2 26536 99.1552 157.8770 0009793 223.6206 136.4161 14.12484895398704 1 26536U 00055A 08169.49051664 -.00000264 00000-0 -11772-3 0 9761 2 26536 99.1552 158.6730 0009767 221.5402 138.5020 14.12484199398811 1 26536U 00055A 08169.49051664 -.00000264 00000-0 -11772-3 0 9772 2 26536 99.1552 158.6730 0009767 221.5402 138.5020 14.12484199398811 1 26536U 00055A 08169.91553529 -.00000242 00000-0 -10550-3 0 9786 2 26536 99.1550 159.1074 0009821 220.1827 139.8627 14.12484120398870 1 26536U 00055A 08170.76557195 -.00000202 00000-0 -84292-4 0 9785 2 26536 99.1547 159.9754 0009803 217.6683 142.3792 14.12483959398994 1 26536U 00055A 08171.11975429 -.00000120 00000-0 -39755-4 0 9793 2 26536 99.1547 160.3374 0009830 216.7565 143.2959 14.12484337399040 1 26536U 00055A 08171.54477225 -.00000110 00000-0 -34194-4 0 9804 2 26536 99.1550 160.7717 0009834 215.1533 144.8993 14.12484326399101 1 26536U 00055A 08172.53648198 .00000123 00000-0 91685-4 0 9803 2 26536 99.1551 161.7853 0009965 211.8878 148.1772 14.12485625399244 1 26536U 00055A 08172.53648198 .00000123 00000-0 91685-4 0 9814 2 26536 99.1551 161.7853 0009965 211.8878 148.1772 14.12485625399244 1 26536U 00055A 08173.38651601 .00000233 00000-0 15142-3 0 9827 2 26536 99.1554 162.6537 0009993 209.5449 150.5169 14.12486565399369 1 26536U 00055A 08173.81153357 .00000266 00000-0 16927-3 0 9839 2 26536 99.1557 163.0886 0010017 208.2000 151.8626 14.12486848399425 1 26536U 00055A 08174.59073224 .00000290 00000-0 18237-3 0 9832 2 26536 99.1559 163.8851 0010038 205.9865 154.0794 14.12487500399532 1 26536U 00055A 08175.44076730 .00000244 00000-0 15745-3 0 9843 2 26536 99.1561 164.7539 0010073 203.4998 156.5718 14.12487933399653 1 26536U 00055A 08175.86578461 .00000151 00000-0 10704-3 0 9855 2 26536 99.1564 165.1883 0010107 202.1926 157.8773 14.12487487399714 1 26536U 00055A 08176.29080285 .00000050 00000-0 52373-4 0 9852 2 26536 99.1562 165.6227 0010094 200.8928 159.1816 14.12487198399779 1 26536U 00055A 08176.85749334 -.00000045 00000-0 65684-6 0 9868 2 26536 99.1562 166.2017 0010148 199.4282 160.6476 14.12486645399853 1 26536U 00055A 08177.21167540 -.00000113 00000-0 -35918-4 0 9864 2 26536 99.1561 166.5637 0010071 198.4648 161.6143 14.12486342399905 1 26536U 00055A 08177.56585733 -.00000218 00000-0 -93015-4 0 9879 2 26536 99.1562 166.9256 0010161 197.3135 162.7678 14.12485735399951 1 26536U 00055A 08178.41589406 -.00000251 00000-0 -11076-3 0 9878 2 26536 99.1561 167.7940 0010160 194.6722 165.4165 14.12485378400070 1 26536U 00055A 08178.84091211 -.00000206 00000-0 -86452-4 0 9889 2 26536 99.1562 168.2282 0010216 193.5746 166.5156 14.12485316400133 1 26536U 00055A 08179.26593030 -.00000174 00000-0 -68847-4 0 9884 2 26536 99.1559 168.6626 0010244 192.3532 167.7409 14.12485455400190 1 26536U 00055A 08179.76178450 -.00000176 00000-0 -70305-4 0 9899 2 26536 99.1559 169.1693 0010301 190.6483 169.4460 14.12485186400265 1 26536U 00055A 08180.54098418 -.00000037 00000-0 49576-5 0 9894 2 26536 99.1559 169.9655 0010374 188.4485 171.6535 14.12485961400379 1 26536U 00055A 08180.54098418 -.00000037 00000-0 49576-5 0 9906 2 26536 99.1559 169.9655 0010374 188.4485 171.6535 14.12485961400379 1 26536U 00055A 08180.89516547 .00000034 00000-0 43396-4 0 9912 2 26536 99.1557 170.3272 0010365 187.6096 172.4930 14.12486307400426 1 26536U 00055A 08181.39101953 .00000165 00000-0 11470-3 0 9911 2 26536 99.1556 170.8338 0010448 186.2202 173.8889 14.12487231400491 1 26536U 00055A 08181.81603623 .00000234 00000-0 15185-3 0 9924 2 26536 99.1558 171.2684 0010418 184.8163 175.2903 14.12487620400551 1 26536U 00055A 08182.17021762 .00000313 00000-0 19454-3 0 9923 2 26536 99.1559 171.6302 0010524 183.9635 176.1492 14.12488333400606 1 26536U 00055A 08182.66607040 .00000341 00000-0 20960-3 0 9932 2 26536 99.1561 172.1372 0010491 182.5623 177.5491 14.12488735400674 1 26536U 00055A 08183.44526830 .00000353 00000-0 21597-3 0 9936 2 26536 99.1561 172.9337 0010516 180.5677 179.5482 14.12489446400782 1 26536U 00055A 08183.44526830 .00000353 00000-0 21597-3 0 9947 2 26536 99.1561 172.9337 0010516 180.5677 179.5482 14.12489446400782 1 26536U 00055A 08183.94112147 .00000263 00000-0 16771-3 0 9953 2 26536 99.1557 173.4406 0010499 178.9781 181.1382 14.12489309400851 1 26536U 00055A 08184.36613911 .00000222 00000-0 14550-3 0 9953 2 26536 99.1559 173.8750 0010480 177.5596 182.5618 14.12489398400910 1 26536U 00055A 08184.79115629 .00000095 00000-0 76735-4 0 9966 2 26536 99.1558 174.3092 0010489 176.6834 183.4368 14.12488736400971 1 26536U 00055A 08185.57035588 -.00000166 00000-0 -64488-4 0 9961 2 26536 99.1555 175.1058 0010511 174.4770 185.6494 14.12487535401083 1 26536U 00055A 08186.56206468 -.00000300 00000-0 -13733-3 0 9975 2 26536 99.1553 176.1191 0010537 171.3981 188.7365 14.12486588401222 1 26536U 00055A 08186.56206468 -.00000300 00000-0 -13733-3 0 9986 2 26536 99.1553 176.1191 0010537 171.3981 188.7365 14.12486588401222 1 26536U 00055A 08186.91624641 -.00000240 00000-0 -10475-3 0 9996 2 26536 99.1551 176.4809 0010521 170.4477 189.6908 14.12486737401276 1 26536U 00055A 08187.27042771 -.00000304 00000-0 -13955-3 0 9991 2 26536 99.1548 176.8427 0010545 169.3550 190.7836 14.12486308401320 1 26536U 00055A 08187.62460956 -.00000291 00000-0 -13254-3 0 09 2 26536 99.1549 177.2047 0010604 168.2944 191.8478 14.12486155401374 1 26536U 00055A 08188.47464454 -.00000081 00000-0 -18806-4 0 06 2 26536 99.1547 178.0732 0010672 165.8516 194.2973 14.12487116401493 1 26536U 00055A 08188.47464454 -.00000081 00000-0 -18806-4 0 17 2 26536 99.1547 178.0732 0010672 165.8516 194.2973 14.12487116401493 1 26536U 00055A 08188.82882563 -.00000056 00000-0 -49734-5 0 29 2 26536 99.1549 178.4350 0010679 164.8855 195.2626 14.12487041401546 1 26536U 00055A 08189.32467989 .00000061 00000-0 58313-4 0 22 2 26536 99.1552 178.9422 0010809 164.0083 196.1494 14.12487842401615 1 26536U 00055A 08189.32467989 .00000061 00000-0 58313-4 0 33 2 26536 99.1552 178.9422 0010809 164.0083 196.1494 14.12487842401615 1 26536U 00055A 08189.74969614 .00000136 00000-0 98847-4 0 41 2 26536 99.1554 179.3767 0010807 162.6622 197.4922 14.12488217401678 1 26536U 00055A 08190.45805738 .00000240 00000-0 15510-3 0 48 2 26536 99.1557 180.1011 0010831 160.8820 199.2759 14.12489217401770 1 26536U 00055A 08190.45805738 .00000240 00000-0 15510-3 0 59 2 26536 99.1557 180.1011 0010831 160.8820 199.2759 14.12489217401770 1 26536U 00055A 08191.44976323 .00000332 00000-0 20506-3 0 62 2 26536 99.1563 181.1146 0010872 158.3833 201.7811 14.12490361401914 1 26536U 00055A 08191.80394357 .00000259 00000-0 16521-3 0 74 2 26536 99.1566 181.4769 0010893 157.4278 202.7341 14.12490031401965 1 26536U 00055A 08192.22896101 .00000246 00000-0 15850-3 0 75 2 26536 99.1568 181.9114 0010864 155.9819 204.1857 14.12490260402028 1 26536U 00055A 08192.72481390 .00000115 00000-0 87147-4 0 85 2 26536 99.1571 182.4183 0010906 154.7431 205.4239 14.12489684402091 1 26536U 00055A 08193.57484838 -.00000062 00000-0 -84414-5 0 87 2 26536 99.1566 183.2870 0010914 152.5024 207.6705 14.12489105402214 1 26536U 00055A 08193.57484838 -.00000062 00000-0 -84414-5 0 98 2 26536 99.1566 183.2870 0010914 152.5024 207.6705 14.12489105402214 1 26536U 00055A 08193.92902971 -.00000072 00000-0 -13885-4 0 106 2 26536 99.1565 183.6489 0010899 151.4283 208.7483 14.12489052402261 1 26536U 00055A 08194.35404689 -.00000121 00000-0 -40310-4 0 105 2 26536 99.1565 184.0829 0010901 150.1730 210.0059 14.12488837402323 1 26536U 00055A 08194.84990036 -.00000242 00000-0 -10577-3 0 111 2 26536 99.1567 184.5897 0010969 149.0111 211.1674 14.12487940402395 1 26536U 00055A 08195.62909952 -.00000270 00000-0 -12084-3 0 111 2 26536 99.1568 185.3860 0011046 146.8685 213.3176 14.12487545402508 1 26536U 00055A 08195.98328090 -.00000258 00000-0 -11464-3 0 126 2 26536 99.1566 185.7479 0011049 145.9363 214.2533 14.12487556402556 1 26536U 00055A 08196.40829818 -.00000214 00000-0 -90529-4 0 120 2 26536 99.1566 186.1820 0011096 144.7967 215.3963 14.12487747402618 1 26536U 00055A 08196.83331519 -.00000161 00000-0 -62117-4 0 137 2 26536 99.1563 186.6161 0011112 143.5831 216.6089 14.12487704402676 1 26536U 00055A 08197.25833283 -.00000026 00000-0 11281-4 0 134 2 26536 99.1562 187.0505 0011124 142.7235 217.4766 14.12488513402731 1 26536U 00055A 08197.68334894 .00000050 00000-0 52160-4 0 143 2 26536 99.1564 187.4846 0011147 141.3337 218.8640 14.12488860402795 1 26536U 00055A 08198.53338192 .00000241 00000-0 15556-3 0 142 2 26536 99.1565 188.3534 0011161 139.1787 221.0231 14.12490199402914 1 26536U 00055A 08198.53338192 .00000241 00000-0 15556-3 0 153 2 26536 99.1565 188.3534 0011161 139.1787 221.0231 14.12490199402914 1 26536U 00055A 08199.45425047 .00000291 00000-0 18263-3 0 165 2 26536 99.1565 189.2949 0011180 136.8615 223.3435 14.12491133403044 1 26536U 00055A 08200.51679159 .00000237 00000-0 15319-3 0 170 2 26536 99.1567 190.3810 0011164 133.8421 226.3675 14.12491495403196 1 26536U 00055A 08201.43766052 .00000082 00000-0 69357-4 0 182 2 26536 99.1569 191.3223 0011185 131.2186 228.9941 14.12491163403321 1 26536U 00055A 08201.86267706 .00000012 00000-0 31824-4 0 193 2 26536 99.1567 191.7564 0011234 130.3578 229.8548 14.12490702403388 1 26536U 00055A 08202.28769408 -.00000085 00000-0 -20879-4 0 196 2 26536 99.1565 192.1909 0011223 128.8210 231.3946 14.12490349403441 1 26536U 00055A 08202.71271102 -.00000162 00000-0 -62543-4 0 205 2 26536 99.1569 192.6258 0011265 127.8875 232.3296 14.12489775403506 1 26536U 00055A 08203.49190878 -.00000253 00000-0 -11163-3 0 203 2 26536 99.1567 193.4221 0011281 125.8013 234.4204 14.12489260403616 1 26536U 00055A 08203.49190878 -.00000253 00000-0 -11163-3 0 214 2 26536 99.1567 193.4221 0011281 125.8013 234.4204 14.12489260403616 1 26536U 00055A 08204.41277900 -.00000267 00000-0 -11911-3 0 226 2 26536 99.1572 194.3631 0011353 123.4848 236.7424 14.12488884403741 1 26536U 00055A 08204.90863189 -.00000136 00000-0 -48195-4 0 231 2 26536 99.1574 194.8699 0011319 122.1019 238.1269 14.12489237403814 1 26536U 00055A 08205.33364844 -.00000086 00000-0 -21186-4 0 238 2 26536 99.1574 195.3044 0011342 121.0812 239.1494 14.12489485403871 1 26536U 00055A 08205.75866482 -.00000096 00000-0 -26700-4 0 248 2 26536 99.1574 195.7386 0011367 119.8845 240.3443 14.12489285403935 1 26536U 00055A 08206.18368191 .00000069 00000-0 62529-4 0 247 2 26536 99.1572 196.1728 0011337 119.0850 241.1517 14.12490273403999 1 26536U 00055A 08206.75036941 .00000192 00000-0 12911-3 0 252 2 26536 99.1579 196.7525 0011348 117.2541 242.9802 14.12490983404070 1 26536U 00055A 08207.52956466 .00000295 00000-0 18454-3 0 253 2 26536 99.1584 197.5492 0011368 115.4829 244.7518 14.12491999404183 1 26536U 00055A 08207.52956466 .00000295 00000-0 18454-3 0 264 2 26536 99.1584 197.5492 0011368 115.4829 244.7518 14.12491999404183 1 26536U 00055A 08207.88374463 .00000312 00000-0 19382-3 0 276 2 26536 99.1589 197.9112 0011364 114.4549 245.7801 14.12492210404234 1 26536U 00055A 08208.30876063 .00000319 00000-0 19781-3 0 277 2 26536 99.1589 198.3456 0011374 113.4595 246.7788 14.12492659404299 1 26536U 00055A 08208.73377602 .00000228 00000-0 14844-3 0 284 2 26536 99.1591 198.7802 0011384 112.2920 247.9421 14.12492279404353 1 26536U 00055A 08209.51297242 .00000119 00000-0 89384-4 0 283 2 26536 99.1589 199.5766 0011371 110.1370 250.1013 14.12492186404462 1 26536U 00055A 08209.51297242 .00000119 00000-0 89384-4 0 294 2 26536 99.1589 199.5766 0011371 110.1370 250.1013 14.12492186404462 1 26536U 00055A 08209.93798850 .00000026 00000-0 39433-4 0 300 2 26536 99.1587 200.0111 0011411 109.0859 251.1529 14.12491841404523 1 26536U 00055A 08210.36300483 -.00000015 00000-0 16954-4 0 302 2 26536 99.1587 200.4455 0011420 107.7374 252.5040 14.12491766404580 1 26536U 00055A 08210.78802089 -.00000056 00000-0 -53632-5 0 319 2 26536 99.1591 200.8802 0011406 106.5059 253.7340 14.12491369404648 1 26536U 00055A 08211.21303748 -.00000099 00000-0 -28152-4 0 311 2 26536 99.1589 201.3150 0011416 105.0163 255.2269 14.12491257404708 1 26536U 00055A 08211.56721764 -.00000158 00000-0 -60201-4 0 329 2 26536 99.1587 201.6771 0011438 104.2849 255.9584 14.12490894404752 1 26536U 00055A 08212.48808660 -.00000272 00000-0 -12201-3 0 325 2 26536 99.1584 202.6180 0011471 101.8952 258.3498 14.12490094404886 1 26536U 00055A 08212.84226713 -.00000208 00000-0 -87410-4 0 333 2 26536 99.1581 202.9799 0011481 100.9030 259.3433 14.12490155404934 1 26536U 00055A 08213.33811962 -.00000206 00000-0 -86566-4 0 333 2 26536 99.1580 203.4867 0011492 99.4955 260.7533 14.12490188405007 1 26536U 00055A 08213.76313566 -.00000184 00000-0 -74626-4 0 347 2 26536 99.1578 203.9211 0011497 98.5967 261.6503 14.12490024405062 1 26536U 00055A 08214.11731611 -.00000066 00000-0 -10354-4 0 349 2 26536 99.1581 204.2831 0011481 97.7641 262.4879 14.12490703405116 1 26536U 00055A 08214.96734708 .00000154 00000-0 10870-3 0 362 2 26536 99.1582 205.1522 0011486 95.9426 264.3093 14.12491937405232 1 26536U 00055A 08215.46319807 .00000236 00000-0 15287-3 0 354 2 26536 99.1584 205.6591 0011514 94.8907 265.3605 14.12492619405305 1 26536U 00055A 08215.46319807 .00000236 00000-0 15287-3 0 365 2 26536 99.1584 205.6591 0011514 94.8907 265.3605 14.12492619405305 1 26536U 00055A 08215.46319807 .00000236 00000-0 15287-3 0 376 2 26536 99.1584 205.6591 0011514 94.8907 265.3605 14.12492619405305 1 26536U 00055A 08215.88821311 .00000337 00000-0 20754-3 0 388 2 26536 99.1584 206.0935 0011545 93.5184 266.7304 14.12493221405366 1 26536U 00055A 08216.24239263 .00000389 00000-0 23582-3 0 387 2 26536 99.1585 206.4555 0011542 92.7776 267.4741 14.12493849405419 1 26536U 00055A 08216.66740730 .00000276 00000-0 17470-3 0 394 2 26536 99.1591 206.8905 0011525 91.7393 268.5067 14.12493456405477 1 26536U 00055A 08217.51743808 .00000194 00000-0 13012-3 0 395 2 26536 99.1599 207.7599 0011490 89.6530 270.5946 14.12493665405598 1 26536U 00055A 08217.51743808 .00000194 00000-0 13012-3 0 407 2 26536 99.1599 207.7599 0011490 89.6530 270.5946 14.12493665405598 1 26536U 00055A 08217.51743808 .00000194 00000-0 13012-3 0 418 2 26536 99.1599 207.7599 0011490 89.6530 270.5946 14.12493665405598 1 26536U 00055A 08217.51743808 .00000194 00000-0 13012-3 0 429 2 26536 99.1599 207.7599 0011490 89.6530 270.5946 14.12493665405598 1 26536U 00055A 08217.51743808 .00000194 00000-0 13012-3 0 430 2 26536 99.1599 207.7599 0011490 89.6530 270.5946 14.12493665405598 1 26536U 00055A 08218.36746888 .00000090 00000-0 73792-4 0 443 2 26536 99.1602 208.6288 0011522 87.6681 272.5804 14.12493526405714 1 26536U 00055A 08218.86332009 .00000008 00000-0 29427-4 0 450 2 26536 99.1605 209.1358 0011506 86.3769 273.8687 14.12493037405783 1 26536U 00055A 08219.35917196 -.00000107 00000-0 -32629-4 0 451 2 26536 99.1606 209.6428 0011572 84.6798 275.5663 14.12492540405852 1 26536U 00055A 08219.71335213 -.00000243 00000-0 -10624-3 0 467 2 26536 99.1606 210.0049 0011534 84.0934 276.1514 14.12491585405907 1 26536U 00055A 08220.49254859 -.00000322 00000-0 -14933-3 0 465 2 26536 99.1606 210.8014 0011539 82.0213 278.2270 14.12491004406011 1 26536U 00055A 08221.41341652 -.00000310 00000-0 -14239-3 0 473 2 26536 99.1609 211.7426 0011554 79.8674 280.3819 14.12490727406141 1 26536U 00055A 08222.61762708 -.00000014 00000-0 17779-4 0 489 2 26536 99.1606 212.9737 0011560 76.7103 283.5367 14.12491794406313 1 26536U 00055A 08223.39682113 .00000203 00000-0 13490-3 0 491 2 26536 99.1604 213.7699 0011489 74.8866 285.3597 14.12493194406425 1 26536U 00055A 08223.82183589 .00000191 00000-0 12827-3 0 503 2 26536 99.1605 214.2046 0011506 73.6747 286.5668 14.12493187406483 1 26536U 00055A 08224.17601561 .00000300 00000-0 18743-3 0 502 2 26536 99.1604 214.5666 0011433 73.0783 287.1683 14.12494007406538 1 26536U 00055A 08224.60102969 .00000237 00000-0 15358-3 0 517 2 26536 99.1604 215.0013 0011416 72.0199 288.2204 14.12493946406599 1 26536U 00055A 08225.38022363 .00000302 00000-0 18866-3 0 512 2 26536 99.1606 215.7977 0011413 70.0448 290.1961 14.12494801406705 1 26536U 00055A 08225.38022363 .00000302 00000-0 18866-3 0 523 2 26536 99.1606 215.7977 0011413 70.0448 290.1961 14.12494801406705 1 26536U 00055A 08225.80523810 .00000203 00000-0 13525-3 0 531 2 26536 99.1607 216.2324 0011398 69.0139 291.2213 14.12494354406766 1 26536U 00055A 08226.15941784 .00000205 00000-0 13589-3 0 536 2 26536 99.1604 216.5947 0011366 68.1008 292.1383 14.12494633406811 1 26536U 00055A 08226.93861147 .00000079 00000-0 67884-4 0 555 2 26536 99.1601 217.3910 0011356 66.0335 294.2013 14.12494315406928 1 26536U 00055A 08227.36362649 .00000022 00000-0 37286-4 0 546 2 26536 99.1603 217.8257 0011376 64.8139 295.4202 14.12494174406981 1 26536U 00055A 08227.36362649 .00000022 00000-0 37286-4 0 557 2 26536 99.1603 217.8257 0011376 64.8139 295.4202 14.12494174406981 1 26536U 00055A 08227.78864150 -.00000103 00000-0 -30411-4 0 563 2 26536 99.1607 218.2603 0011373 63.6760 296.5531 14.12493332407049 1 26536U 00055A 08228.21365752 -.00000179 00000-0 -71601-4 0 565 2 26536 99.1606 218.6949 0011437 62.3623 297.8695 14.12492994407105 1 26536U 00055A 08228.56783709 -.00000245 00000-0 -10736-3 0 575 2 26536 99.1603 219.0569 0011406 61.5804 298.6505 14.12492535407158 1 26536U 00055A 08229.41786805 -.00000252 00000-0 -11118-3 0 584 2 26536 99.1604 219.9259 0011426 59.3221 300.9090 14.12492321407276 1 26536U 00055A 08229.84288313 -.00000263 00000-0 -11686-3 0 595 2 26536 99.1603 220.3603 0011399 58.3293 301.8974 14.12491938407332 1 26536U 00055A 08230.55124187 -.00000170 00000-0 -66545-4 0 595 2 26536 99.1603 221.0849 0011400 56.3775 303.8488 14.12492314407430 1 26536U 00055A 08230.55124187 -.00000170 00000-0 -66545-4 0 607 2 26536 99.1603 221.0849 0011400 56.3775 303.8488 14.12492314407430 1 26536U 00055A 08230.55124187 -.00000170 00000-0 -66545-4 0 618 2 26536 99.1603 221.0849 0011400 56.3775 303.8488 14.12492314407430 1 26536U 00055A 08231.47210741 .00000030 00000-0 41372-4 0 627 2 26536 99.1602 222.0264 0011402 53.6011 306.6224 14.12493355407565 1 26536U 00055A 08232.46380801 .00000143 00000-0 10231-3 0 637 2 26536 99.1606 223.0404 0011296 51.1808 309.0385 14.12494273407705 1 26536U 00055A 08232.88882240 .00000238 00000-0 15389-3 0 642 2 26536 99.1609 223.4750 0011336 49.8710 310.3452 14.12494773407768 1 26536U 00055A 08233.24300115 .00000302 00000-0 18835-3 0 640 2 26536 99.1608 223.8370 0011262 49.1469 311.0705 14.12495402407816 1 26536U 00055A 08233.66801489 .00000250 00000-0 16071-3 0 659 2 26536 99.1615 224.2721 0011286 47.9798 312.2311 14.12495297407870 1 26536U 00055A 08234.51804375 .00000215 00000-0 14174-3 0 654 2 26536 99.1619 225.1416 0011266 45.7306 314.4785 14.12495692407995 1 26536U 00055A 08235.29723697 .00000046 00000-0 50130-4 0 663 2 26536 99.1624 225.9380 0011282 43.5786 316.6248 14.12495057408102 1 26536U 00055A 08235.72225190 -.00000123 00000-0 -41317-4 0 672 2 26536 99.1624 226.3725 0011227 42.6199 317.5802 14.12494120408169 1 26536U 00055A 08236.50144662 -.00000275 00000-0 -12384-3 0 672 2 26536 99.1626 227.1692 0011224 40.5876 319.6127 14.12493320408275 1 26536U 00055A 08236.50144662 -.00000275 00000-0 -12384-3 0 683 2 26536 99.1626 227.1692 0011224 40.5876 319.6127 14.12493320408275 1 26536U 00055A 08236.85562580 -.00000258 00000-0 -11455-3 0 694 2 26536 99.1629 227.5312 0011227 39.7306 320.4680 14.12493146408328 1 26536U 00055A 08237.28064090 -.00000305 00000-0 -14008-3 0 695 2 26536 99.1628 227.9658 0011232 38.5084 321.6891 14.12492876408382 1 26536U 00055A 08237.28064090 -.00000305 00000-0 -14008-3 0 707 2 26536 99.1628 227.9658 0011232 38.5084 321.6891 14.12492876408382 1 26536U 00055A 08237.70565588 -.00000251 00000-0 -11035-3 0 710 2 26536 99.1631 228.4004 0011222 37.5211 322.6744 14.12492838408440 1 26536U 00055A 08238.05983504 -.00000207 00000-0 -86529-4 0 713 2 26536 99.1631 228.7625 0011216 36.4607 323.7344 14.12493004408491 1 26536U 00055A 08238.98070056 -.00000074 00000-0 -14782-4 0 730 2 26536 99.1629 229.7041 0011209 33.8088 326.3826 14.12493425408623 1 26536U 00055A 08239.40571481 -.00000055 00000-0 -46391-5 0 726 2 26536 99.1628 230.1385 0011155 32.6445 327.5431 14.12493586408682 1 26536U 00055A 08239.40571481 -.00000055 00000-0 -46391-5 0 737 2 26536 99.1628 230.1385 0011155 32.6445 327.5431 14.12493586408682 1 26536U 00055A 08239.83072926 .00000010 00000-0 30767-4 0 743 2 26536 99.1627 230.5730 0011162 31.5672 328.6166 14.12493800408740 1 26536U 00055A 08240.60992220 .00000088 00000-0 72695-4 0 749 2 26536 99.1630 231.3700 0011071 29.6478 330.5322 14.12494414408851 1 26536U 00055A 08241.53078603 .00000224 00000-0 14623-3 0 751 2 26536 99.1630 232.3121 0010964 27.2485 332.9273 14.12495542408989 1 26536U 00055A 08242.52248501 .00000235 00000-0 15244-3 0 760 2 26536 99.1628 233.3268 0010947 24.4537 335.7142 14.12496157409123 1 26536U 00055A 08242.94749915 .00000224 00000-0 14628-3 0 775 2 26536 99.1627 233.7616 0010925 23.4062 336.7598 14.12496302409185 1 26536U 00055A 08243.44334882 .00000151 00000-0 10691-3 0 779 2 26536 99.1625 234.2686 0010880 21.9463 338.2168 14.12496250409254 1 26536U 00055A 08243.86836283 .00000066 00000-0 60926-4 0 780 2 26536 99.1626 234.7034 0010809 21.0311 339.1271 14.12495780409310 1 26536U 00055A 08244.36421321 -.00000003 00000-0 23697-4 0 785 2 26536 99.1627 235.2106 0010845 19.7866 340.3714 14.12495613409384 1 26536U 00055A 08244.78922755 -.00000146 00000-0 -53638-4 0 796 2 26536 99.1625 235.6452 0010764 18.7653 341.3872 14.12494714409447 1 26536U 00055A 08245.14340704 -.00000211 00000-0 -88721-4 0 799 2 26536 99.1624 236.0074 0010785 17.8018 342.3527 14.12494445409493 1 26536U 00055A 08245.56842160 -.00000257 00000-0 -11358-3 0 801 2 26536 99.1624 236.4419 0010737 16.7497 343.4024 14.12494081409553 1 26536U 00055A 08246.48928666 -.00000304 00000-0 -13906-3 0 803 2 26536 99.1622 237.3832 0010665 14.2666 345.8804 14.12493528409682 1 26536U 00055A 08246.48928666 -.00000304 00000-0 -13906-3 0 814 2 26536 99.1622 237.3832 0010665 14.2666 345.8804 14.12493528409682 1 26536U 00055A 08247.55182380 -.00000195 00000-0 -80127-4 0 827 2 26536 99.1622 238.4694 0010543 11.4459 348.6998 14.12493712409831 1 26536U 00055A 08248.04767338 -.00000019 00000-0 15070-4 0 834 2 26536 99.1622 238.9764 0010525 9.8240 350.3180 14.12494543409907 1 26536U 00055A 08248.96853692 .00000125 00000-0 92665-4 0 858 2 26536 99.1625 239.9183 0010503 7.1863 352.9484 14.12495397410033 1 26536U 00055A 08249.39355056 .00000210 00000-0 13878-3 0 849 2 26536 99.1628 240.3526 0010485 6.0943 354.0381 14.12496093410098 1 26536U 00055A 08249.88939963 .00000308 00000-0 19180-3 0 859 2 26536 99.1632 240.8601 0010572 4.5375 355.5887 14.12496677410164 1 26536U 00055A 08250.52692030 .00000294 00000-0 18447-3 0 852 2 26536 99.1636 241.5125 0010557 2.4994 357.6238 14.12497098410255 1 26536U 00055A 08251.44778322 .00000173 00000-0 11903-3 0 860 2 26536 99.1639 242.4545 0010577 359.6989 0.4166 14.12497065410388 1 26536U 00055A 08251.87279703 .00000145 00000-0 10380-3 0 874 2 26536 99.1647 242.8894 0010548 358.5607 1.5512 14.12496934410449 1 26536U 00055A 08252.36864674 -.00000002 00000-0 24249-4 0 879 2 26536 99.1647 243.3965 0010582 357.3840 2.7240 14.12496375410516 1 26536U 00055A 08252.86449694 -.00000147 00000-0 -54192-4 0 887 2 26536 99.1654 243.9036 0010537 355.7844 4.3195 14.12495432410582 1 26536U 00055A 08253.50201905 -.00000271 00000-0 -12149-3 0 883 2 26536 99.1653 244.5557 0010591 354.1713 5.9321 14.12494848410672 1 26536U 00055A 08254.49371982 -.00000298 00000-0 -13597-3 0 893 2 26536 99.1652 245.5697 0010462 351.4244 8.6755 14.12494244410810 1 26536U 00055A 08254.91873422 -.00000216 00000-0 -91737-4 0 901 2 26536 99.1649 246.0043 0010399 350.1792 9.9190 14.12494404410871 1 26536U 00055A 08255.41458419 -.00000180 00000-0 -72207-4 0 903 2 26536 99.1649 246.5112 0010318 348.7977 11.2987 14.12494556410948 1 26536U 00055A 08255.91043394 -.00000026 00000-0 11363-4 0 915 2 26536 99.1648 247.0183 0010329 347.3909 12.7030 14.12495205411019 1 26536U 00055A 08256.40628337 .00000021 00000-0 36486-4 0 913 2 26536 99.1649 247.5254 0010286 345.9219 14.1685 14.12495548411083 1 26536U 00055A 08256.76046142 .00000062 00000-0 58762-4 0 927 2 26536 99.1648 247.8876 0010318 345.1060 14.9787 14.12495599411130 1 26536U 00055A 08257.53965363 .00000198 00000-0 13245-3 0 924 2 26536 99.1647 248.6845 0010327 342.8881 17.1947 14.12496600411248 1 26536U 00055A 08258.46051628 .00000203 00000-0 13521-3 0 932 2 26536 99.1647 249.6268 0010277 340.0378 20.0389 14.12497209411376 1 26536U 00055A 08258.88552994 .00000216 00000-0 14192-3 0 940 2 26536 99.1645 250.0613 0010273 338.9031 21.1698 14.12497310411437 1 26536U 00055A 08259.45221508 .00000210 00000-0 13882-3 0 947 2 26536 99.1648 250.6415 0010280 337.3295 22.7440 14.12497776411516 1 26536U 00055A 08259.87722818 .00000186 00000-0 12609-3 0 952 2 26536 99.1652 251.0763 0010231 336.0571 24.0101 14.12497669411577 1 26536U 00055A 08260.37307771 .00000192 00000-0 12923-3 0 952 2 26536 99.1651 251.5835 0010243 334.9024 25.1652 14.12498006411641 1 26536U 00055A 08260.37307771 .00000192 00000-0 12923-3 0 963 2 26536 99.1651 251.5835 0010243 334.9024 25.1652 14.12498006411641 1 26536U 00055A 08260.79809107 .00000069 00000-0 62421-4 0 972 2 26536 99.1652 252.0184 0010216 333.6483 26.4126 14.12497355411703 1 26536U 00055A 08261.22310552 -.00000017 00000-0 16313-4 0 975 2 26536 99.1650 252.4532 0010224 332.4904 27.5714 14.12497098411761 1 26536U 00055A 08261.64811945 -.00000108 00000-0 -33417-4 0 980 2 26536 99.1651 252.8879 0010210 331.1732 28.8851 14.12496560411826 1 26536U 00055A 08262.49814797 -.00000252 00000-0 -11084-3 0 987 2 26536 99.1651 253.7571 0010171 328.6803 31.3751 14.12495750411942 1 26536U 00055A 08263.48984807 -.00000309 00000-0 -14214-3 0 999 2 26536 99.1650 254.7712 0010200 326.1429 33.9085 14.12495145412081 1 26536U 00055A 08263.48984807 -.00000309 00000-0 -14214-3 0 1002 2 26536 99.1650 254.7712 0010200 326.1429 33.9085 14.12495145412081 1 26536U 00055A 08263.91486255 -.00000185 00000-0 -74898-4 0 1023 2 26536 99.1656 255.2060 0010184 324.8285 35.2234 14.12495499412145 1 26536U 00055A 08264.41071212 -.00000193 00000-0 -79200-4 0 1023 2 26536 99.1655 255.7128 0010112 323.1194 36.9297 14.12495435412211 1 26536U 00055A 08264.83572609 -.00000159 00000-0 -60849-4 0 1037 2 26536 99.1654 256.1476 0010119 321.9368 38.1076 14.12495305412278 1 26536U 00055A 08265.33157639 -.00000019 00000-0 15086-4 0 1032 2 26536 99.1659 256.6550 0010052 320.0909 39.9583 14.12496134412349 1 26536U 00055A 08265.75658928 .00000028 00000-0 40453-4 0 1041 2 26536 99.1655 257.0894 0010020 318.8322 41.2094 14.12496327412404 1 26536U 00055A 08266.11076760 .00000165 00000-0 11476-3 0 1044 2 26536 99.1657 257.4515 0010000 317.3432 42.7007 14.12497174412450 1 26536U 00055A 08266.11076760 .00000165 00000-0 11476-3 0 1055 2 26536 99.1657 257.4515 0010000 317.3432 42.7007 14.12497174412450 1 26536U 00055A 08266.53578047 .00000173 00000-0 11899-3 0 1065 2 26536 99.1662 257.8866 0009975 316.4549 43.5834 14.12497405412518 1 26536U 00055A 08267.03162978 .00000261 00000-0 16672-3 0 1065 2 26536 99.1658 258.3932 0009926 314.5570 45.4808 14.12498025412580 1 26536U 00055A 08267.66914966 .00000270 00000-0 17119-3 0 1074 2 26536 99.1661 259.0458 0009871 312.7138 47.3198 14.12498371412671 1 26536U 00055A 08268.09416317 .00000240 00000-0 15524-3 0 1074 2 26536 99.1661 259.4805 0009845 311.4059 48.6264 14.12498515412735 1 26536U 00055A 08268.09416317 .00000240 00000-0 15524-3 0 1085 2 26536 99.1661 259.4805 0009845 311.4059 48.6264 14.12498515412735 1 26536U 00055A 08268.59001214 .00000208 00000-0 13793-3 0 1097 2 26536 99.1662 259.9879 0009841 310.0377 49.9921 14.12498593412804 1 26536U 00055A 08269.01502569 .00000100 00000-0 79542-4 0 1090 2 26536 99.1660 260.4226 0009804 308.6671 51.3602 14.12498245412867 1 26536U 00055A 08270.00672474 -.00000094 00000-0 -25597-4 0 1101 2 26536 99.1661 261.4368 0009792 305.8812 54.1417 14.12497324413007 1 26536U 00055A 08270.50257486 -.00000230 00000-0 -99367-4 0 1117 2 26536 99.1664 261.9441 0009774 304.1475 55.8755 14.12496620413072 1 26536U 00055A 08270.99842487 -.00000235 00000-0 -10172-3 0 1112 2 26536 99.1662 262.4513 0009776 302.9275 57.0959 14.12496503413140 1 26536U 00055A 08271.63594600 -.00000307 00000-0 -14068-3 0 1124 2 26536 99.1660 263.1032 0009765 300.9752 59.0447 14.12495874413232 1 26536U 00055A 08272.13179630 -.00000208 00000-0 -87259-4 0 1125 2 26536 99.1660 263.6106 0009816 299.7900 60.2320 14.12496220413304 1 26536U 00055A 08272.13179630 -.00000208 00000-0 -87259-4 0 1136 2 26536 99.1660 263.6106 0009816 299.7900 60.2320 14.12496220413304 1 26536U 00055A 08272.62764572 -.00000226 00000-0 -96940-4 0 1143 2 26536 99.1662 264.1178 0009801 298.3232 61.6949 14.12495968413375 1 26536U 00055A 08273.05266004 -.00000057 00000-0 -55948-5 0 1144 2 26536 99.1659 264.5524 0009816 296.6807 63.3402 14.12496706413436 1 26536U 00055A 08273.97352258 .00000086 00000-0 72100-4 0 1162 2 26536 99.1659 265.4944 0009789 293.8530 66.1632 14.12497500413566 1 26536U 00055A 08274.46937172 .00000168 00000-0 11635-3 0 1156 2 26536 99.1659 266.0015 0009770 292.6094 67.4070 14.12498209413639 1 26536U 00055A 08274.46937172 .00000168 00000-0 11635-3 0 1167 2 26536 99.1659 266.0015 0009770 292.6094 67.4070 14.12498209413639 1 26536U 00055A 08275.53190477 .00000294 00000-0 18438-3 0 1174 2 26536 99.1659 267.0888 0009766 289.3085 70.7032 14.12499257413781 1 26536U 00055A 08275.53190477 .00000294 00000-0 18438-3 0 1185 2 26536 99.1659 267.0888 0009766 289.3085 70.7032 14.12499257413781 1 26536U 00055A 08276.02775357 .00000233 00000-0 15160-3 0 1199 2 26536 99.1663 267.5961 0009748 287.6877 72.3216 14.12499220413853 1 26536U 00055A 08276.80694493 .00000171 00000-0 11808-3 0 1204 2 26536 99.1670 268.3933 0009724 285.2794 74.7283 14.12499219413965 1 26536U 00055A 08277.30279422 .00000073 00000-0 64725-4 0 1209 2 26536 99.1670 268.9004 0009719 283.8507 76.1575 14.12499042414033 1 26536U 00055A 08277.30279422 .00000073 00000-0 64725-4 0 1210 2 26536 99.1670 268.9004 0009719 283.8507 76.1575 14.12499042414033 1 26536U 00055A 08277.79864338 -.00000038 00000-0 49006-5 0 1228 2 26536 99.1672 269.4076 0009703 282.1407 77.8647 14.12498437414107 1 26536U 00055A 08278.15282201 -.00000116 00000-0 -37550-4 0 1220 2 26536 99.1674 269.7698 0009692 281.4601 78.5463 14.12498087414157 1 26536U 00055A 08278.64867175 -.00000199 00000-0 -82637-4 0 1231 2 26536 99.1677 270.2771 0009671 279.6130 80.3935 14.12497555414224 1 26536U 00055A 08279.49870005 -.00000309 00000-0 -14178-3 0 1238 2 26536 99.1678 271.1466 0009661 276.9701 83.0369 14.12496848414347 1 26536U 00055A 08279.49870005 -.00000309 00000-0 -14178-3 0 1249 2 26536 99.1678 271.1466 0009661 276.9701 83.0369 14.12496848414347 1 26536U 00055A 08279.92371428 -.00000260 00000-0 -11542-3 0 1251 2 26536 99.1681 271.5815 0009667 275.3990 84.6090 14.12496826414403 1 26536U 00055A 08280.49039968 -.00000279 00000-0 -12576-3 0 1253 2 26536 99.1681 272.1612 0009640 273.7831 86.2240 14.12496569414489 1 26536U 00055A 08280.98624965 -.00000169 00000-0 -66025-4 0 1262 2 26536 99.1682 272.6685 0009645 272.1240 87.8850 14.12496887414552 1 26536U 00055A 08281.90711291 .00000013 00000-0 32409-4 0 1281 2 26536 99.1680 273.6104 0009668 269.4548 90.5541 14.12497695414682 1 26536U 00055A 08282.47379767 .00000072 00000-0 64437-4 0 1272 2 26536 99.1680 274.1901 0009680 267.4458 92.5635 14.12498181414761 1 26536U 00055A 08282.89881091 .00000163 00000-0 11376-3 0 1281 2 26536 99.1679 274.6249 0009680 266.4249 93.5819 14.12498659414828 1 26536U 00055A 08283.46549571 .00000245 00000-0 15789-3 0 1282 2 26536 99.1683 275.2050 0009716 264.5159 95.4948 14.12499504414902 1 26536U 00055A 08284.38635738 .00000309 00000-0 19248-3 0 1291 2 26536 99.1681 276.1471 0009725 261.3909 98.6182 14.12500333415038 1 26536U 00055A 08284.95304120 .00000242 00000-0 15644-3 0 1306 2 26536 99.1680 276.7271 0009710 259.9736 100.0310 14.12500264415119 1 26536U 00055A 08285.37805502 .00000214 00000-0 14087-3 0 1302 2 26536 99.1679 277.1617 0009737 258.5528 101.4551 14.12500396415173 1 26536U 00055A 08285.80306819 .00000085 00000-0 71091-4 0 1313 2 26536 99.1679 277.5966 0009760 257.7074 102.2957 14.12499720415231 1 26536U 00055A 08286.15724699 .00000002 00000-0 26444-4 0 1313 2 26536 99.1678 277.9589 0009731 256.9126 103.0942 14.12499443415282 1 26536U 00055A 08286.93643936 -.00000163 00000-0 -62690-4 0 1338 2 26536 99.1676 278.7560 0009745 254.6093 105.3993 14.12498605415393 1 26536U 00055A 08287.36145336 -.00000209 00000-0 -87705-4 0 1321 2 26536 99.1676 279.1908 0009714 253.4296 106.5801 14.12498317415450 1 26536U 00055A 08287.36145336 -.00000209 00000-0 -87705-4 0 1332 2 26536 99.1676 279.1908 0009714 253.4296 106.5801 14.12498317415450 1 26536U 00055A 08287.78646744 -.00000232 00000-0 -10023-3 0 1342 2 26536 99.1676 279.6256 0009704 252.0143 107.9955 14.12497925415512 1 26536U 00055A 08288.21148182 -.00000236 00000-0 -10222-3 0 1349 2 26536 99.1674 280.0604 0009701 250.9479 109.0652 14.12497882415574 1 26536U 00055A 08288.91983854 -.00000166 00000-0 -64357-4 0 1362 2 26536 99.1672 280.7847 0009738 248.7784 111.2371 14.12497980415675 1 26536U 00055A 08289.48652350 -.00000174 00000-0 -68596-4 0 1356 2 26536 99.1670 281.3644 0009753 247.0191 112.9959 14.12497868415750 1 26536U 00055A 08289.48652350 -.00000174 00000-0 -68596-4 0 1367 2 26536 99.1670 281.3644 0009753 247.0191 112.9959 14.12497868415750 1 26536U 00055A 08289.84070178 -.00000097 00000-0 -27090-4 0 1378 2 26536 99.1667 281.7265 0009757 245.9635 114.0514 14.12498017415806 1 26536U 00055A 08290.19488018 -.00000040 00000-0 36307-5 0 1373 2 26536 99.1667 282.0888 0009804 244.8078 115.2108 14.12498415415852 1 26536U 00055A 08290.69072916 .00000069 00000-0 62642-4 0 1385 2 26536 99.1669 282.5962 0009768 243.3752 116.6435 14.12498953415927 1 26536U 00055A 08291.04490701 .00000174 00000-0 11949-3 0 1381 2 26536 99.1669 282.9584 0009851 242.0905 117.9307 14.12499645415976 1 26536U 00055A 08291.54075542 .00000218 00000-0 14339-3 0 1394 2 26536 99.1666 283.4657 0009859 240.3011 119.7193 14.12500131416042 1 26536U 00055A 08292.46161727 .00000283 00000-0 17825-3 0 1392 2 26536 99.1669 284.4075 0009897 237.7716 122.2512 14.12501063416177 1 26536U 00055A 08292.81579460 .00000300 00000-0 18775-3 0 1405 2 26536 99.1672 284.7701 0009879 236.7627 123.2580 14.12501201416226 1 26536U 00055A 08293.24080807 .00000278 00000-0 17592-3 0 1405 2 26536 99.1672 285.2048 0009871 235.5161 124.5072 14.12501380416282 1 26536U 00055A 08293.73665677 .00000111 00000-0 85569-4 0 1410 2 26536 99.1679 285.7122 0009892 234.0116 126.0094 14.12500649416350 1 26536U 00055A 08294.16167098 .00000014 00000-0 32886-4 0 1418 2 26536 99.1679 286.1469 0009863 232.8892 127.1363 14.12500361416413 1 26536U 00055A 08294.65752029 -.00000090 00000-0 -23674-4 0 1428 2 26536 99.1682 286.6541 0009893 231.6602 128.3661 14.12499843416485 1 26536U 00055A 08295.01169868 -.00000181 00000-0 -72844-4 0 1426 2 26536 99.1682 287.0163 0009817 230.6718 129.3559 14.12499368416538 1 26536U 00055A 08295.50754857 -.00000253 00000-0 -11154-3 0 1435 2 26536 99.1681 287.5234 0009836 229.3719 130.6590 14.12498918416606 1 26536U 00055A 08296.00339829 -.00000285 00000-0 -12888-3 0 1439 2 26536 99.1684 288.0307 0009839 227.6825 132.3506 14.12498542416674 1 26536U 00055A 08296.64091952 -.00000288 00000-0 -13054-3 0 1441 2 26536 99.1687 288.6830 0009854 225.7159 134.3204 14.12498191416767 1 26536U 00055A 08297.06593369 -.00000219 00000-0 -93051-4 0 1447 2 26536 99.1689 289.1180 0009862 224.3980 135.6422 14.12498395416828 1 26536U 00055A 08297.06593369 -.00000219 00000-0 -93051-4 0 1458 2 26536 99.1689 289.1180 0009862 224.3980 135.6422 14.12498395416828 1 26536U 00055A 08297.06593369 -.00000219 00000-0 -93051-4 0 1469 2 26536 99.1689 289.1180 0009862 224.3980 135.6422 14.12498395416828 1 26536U 00055A 08297.56178308 -.00000201 00000-0 -83486-4 0 1479 2 26536 99.1689 289.6253 0009846 223.2037 136.8368 14.12498355416892 1 26536U 00055A 08298.48264606 -.00000043 00000-0 19992-5 0 1473 2 26536 99.1690 290.5672 0009900 220.6081 139.4372 14.12499144417028 1 26536U 00055A 08298.90765955 .00000070 00000-0 62981-4 0 1488 2 26536 99.1692 291.0020 0009900 219.4214 140.6247 14.12499616417082 1 26536U 00055A 08299.47434432 .00000141 00000-0 10134-3 0 1485 2 26536 99.1694 291.5820 0009988 217.4116 142.6397 14.12500255417161 1 26536U 00055A 08299.89935713 .00000203 00000-0 13508-3 0 1497 2 26536 99.1694 292.0170 0009978 216.1314 143.9185 14.12500635417228 1 26536U 00055A 08300.39520609 .00000313 00000-0 19445-3 0 1497 2 26536 99.1693 292.5243 0010012 214.7740 145.2814 14.12501570417291 1 26536U 00055A 08300.82021852 .00000240 00000-0 15503-3 0 1503 2 26536 99.1691 292.9592 0010017 213.4178 146.6327 14.12501291417357 1 26536U 00055A 08301.17439690 .00000267 00000-0 16948-3 0 1508 2 26536 99.1688 293.3217 0010033 212.4321 147.6246 14.12501674417401 1 26536U 00055A 08301.74108082 .00000260 00000-0 16576-3 0 1510 2 26536 99.1688 293.9015 0009995 210.9675 149.0898 14.12501938417483 1 26536U 00055A 08302.09525854 .00000168 00000-0 11616-3 0 1516 2 26536 99.1688 294.2640 0010050 209.6909 150.3675 14.12501652417537 1 26536U 00055A 08302.59110756 .00000103 00000-0 80817-4 0 1522 2 26536 99.1688 294.7711 0010047 208.2563 151.8054 14.12501549417608 1 26536U 00055A 08302.94528543 .00000000 00000-0 25473-4 0 1521 2 26536 99.1685 295.1338 0010113 207.0278 153.0344 14.12501053417650 1 26536U 00055A 08303.51197036 -.00000121 00000-0 -40003-4 0 1537 2 26536 99.1684 295.7135 0010097 205.4924 154.5732 14.12500544417731 1 26536U 00055A 08304.00781984 -.00000142 00000-0 -51784-4 0 1534 2 26536 99.1681 296.2207 0010145 203.8179 156.2513 14.12500295417809 1 26536U 00055A 08304.50366929 -.00000217 00000-0 -91929-4 0 1546 2 26536 99.1679 296.7278 0010196 202.2438 157.8287 14.12499882417877 1 26536U 00055A 08305.49536832 -.00000304 00000-0 -13911-3 0 1559 2 26536 99.1678 297.7421 0010249 199.2808 160.7969 14.12499134418019 1 26536U 00055A 08305.84954681 -.00000217 00000-0 -91933-4 0 1569 2 26536 99.1681 298.1044 0010245 198.2627 161.8185 14.12499306418061 1 26536U 00055A 08306.41623194 -.00000177 00000-0 -70729-4 0 1560 2 26536 99.1680 298.6840 0010290 196.6090 163.4773 14.12499467418143 1 26536U 00055A 08307.19542375 -.00000031 00000-0 83483-5 0 1578 2 26536 99.1680 299.4811 0010348 194.5015 165.5903 14.12500028418254 1 26536U 00055A 08308.47046283 .00000229 00000-0 14895-3 0 1585 2 26536 99.1685 300.7852 0010378 190.8002 169.2975 14.12501780418434 1 26536U 00055A 08308.89547547 .00000267 00000-0 16996-3 0 1597 2 26536 99.1688 301.2200 0010358 189.5106 170.5856 14.12502032418498 1 26536U 00055A 08309.39132435 .00000317 00000-0 19696-3 0 1595 2 26536 99.1689 301.7272 0010398 188.0968 172.0056 14.12502661418562 1 26536U 00055A 08310.38302149 .00000239 00000-0 15438-3 0 1602 2 26536 99.1691 302.7418 0010415 185.4076 174.6995 14.12502787418704 1 26536U 00055A 08310.80803415 .00000097 00000-0 77683-4 0 1615 2 26536 99.1694 303.1769 0010472 184.1789 175.9254 14.12502092418768 1 26536U 00055A 08311.23304809 -.00000022 00000-0 13237-4 0 1610 2 26536 99.1695 303.6117 0010488 182.9237 177.1860 14.12501688418826 1 26536U 00055A 08311.65806161 -.00000125 00000-0 -42314-4 0 1628 2 26536 99.1695 304.0464 0010525 181.7620 178.3493 14.12501115418887 1 26536U 00055A 08312.08307547 -.00000160 00000-0 -61514-4 0 1622 2 26536 99.1696 304.4812 0010510 180.5178 179.5981 14.12500929418942 1 26536U 00055A 08312.57892459 -.00000226 00000-0 -96832-4 0 1632 2 26536 99.1697 304.9884 0010561 179.1103 181.0078 14.12500448419015 1 26536U 00055A 08313.57062316 -.00000292 00000-0 -13252-3 0 1631 2 26536 99.1695 306.0029 0010633 176.3831 183.7413 14.12499871419158 1 26536U 00055A 08313.92480145 -.00000199 00000-0 -82268-4 0 1645 2 26536 99.1694 306.3654 0010607 175.4634 184.6653 14.12500182419206 1 26536U 00055A 08314.42065045 -.00000167 00000-0 -65116-4 0 1647 2 26536 99.1694 306.8727 0010621 174.0113 186.1203 14.12500302419274 1 26536U 00055A 08314.84566381 -.00000111 00000-0 -34664-4 0 1656 2 26536 99.1693 307.3075 0010541 172.7404 187.3911 14.12500328419338 1 26536U 00055A 08315.34151329 -.00000029 00000-0 95698-5 0 1656 2 26536 99.1693 307.8149 0010615 171.4892 188.6503 14.12500869419403 1 26536U 00055A 08315.83736153 .00000014 00000-0 32735-4 0 1660 2 26536 99.1692 308.3221 0010601 170.0364 190.1013 14.12500983419471 1 26536U 00055A 08316.33321066 .00000113 00000-0 86477-4 0 1661 2 26536 99.1693 308.8295 0010685 168.8996 191.2458 14.12501711419549 1 26536U 00055A 08316.75822299 .00000216 00000-0 14222-3 0 1674 2 26536 99.1694 309.2645 0010653 167.4076 192.7374 14.12502357419600 1 26536U 00055A 08317.39574224 .00000325 00000-0 20080-3 0 1677 2 26536 99.1691 309.9169 0010686 165.8477 194.3040 14.12503426419693 1 26536U 00055A 08317.39574224 .00000325 00000-0 20080-3 0 1688 2 26536 99.1691 309.9169 0010686 165.8477 194.3040 14.12503426419693 1 26536U 00055A 08318.59994414 .00000282 00000-0 17757-3 0 1698 2 26536 99.1692 311.1493 0010659 162.4697 197.6830 14.12503857419866 1 26536U 00055A 08319.44997034 .00000059 00000-0 57022-4 0 1708 2 26536 99.1695 312.0188 0010739 160.1517 200.0071 14.12503158419988 1 26536U 00055A 08320.44166753 -.00000150 00000-0 -55821-4 0 1716 2 26536 99.1694 313.0331 0010767 157.2647 202.8986 14.12502214420125 1 26536U 00055A 08320.44166753 -.00000150 00000-0 -55821-4 0 1727 2 26536 99.1694 313.0331 0010767 157.2647 202.8986 14.12502214420125 1 26536U 00055A 08321.36253014 -.00000188 00000-0 -76714-4 0 1732 2 26536 99.1695 313.9750 0010720 154.4761 205.6947 14.12501720420258 1 26536U 00055A 08322.14172140 -.00000262 00000-0 -11663-3 0 1744 2 26536 99.1697 314.7720 0010719 152.3819 207.7923 14.12501017420363 1 26536U 00055A 08323.48759679 -.00000211 00000-0 -88976-4 0 1757 2 26536 99.1704 316.1489 0010786 148.7821 211.4004 14.12500948420551 1 26536U 00055A 08323.48759679 -.00000211 00000-0 -88976-4 0 1768 2 26536 99.1704 316.1489 0010786 148.7821 211.4004 14.12500948420551 1 26536U 00055A 08324.47929391 .00000014 00000-0 32940-4 0 1778 2 26536 99.1703 317.1632 0010855 146.2837 213.9058 14.12501970420695 1 26536U 00055A 08324.97514187 .00000115 00000-0 87460-4 0 1786 2 26536 99.1707 317.6705 0010864 145.0026 215.1876 14.12502494420764 1 26536U 00055A 08325.75434147 -.00000013 00000-0 00000+0 0 1788 2 26536 99.1705 318.4706 0010838 142.8307 217.4101 14.12501988420875 1 26536U 00055A 08326.03767300 .00000312 00000-0 19411-3 0 1792 2 26536 99.1708 318.7580 0010936 142.2793 217.9164 14.12503917420916 1 26536U 00055A 08326.46268508 .00000293 00000-0 18398-3 0 1808 2 26536 99.1709 319.1929 0010946 141.1283 219.0683 14.12504211420975 1 26536U 00055A 08327.45438076 .00000197 00000-0 13203-3 0 1811 2 26536 99.1709 320.2077 0010978 138.4865 221.7140 14.12504310421117 1 26536U 00055A 08328.37524151 .00000038 00000-0 45881-4 0 1826 2 26536 99.1708 321.1502 0011003 135.7046 224.4991 14.12503764421240 1 26536U 00055A 08329.22526796 -.00000176 00000-0 -69934-4 0 1839 2 26536 99.1704 322.0196 0011030 133.3659 226.8426 14.12502565421369 1 26536U 00055A 08329.79195188 -.00000246 00000-0 -10773-3 0 1843 2 26536 99.1702 322.5993 0011045 131.9737 228.2362 14.12501995421444 1 26536U 00055A 08330.21696518 -.00000240 00000-0 -10469-3 0 1841 2 26536 99.1700 323.0342 0011031 130.6239 229.5903 14.12501985421505 1 26536U 00055A 08330.71281351 -.00000261 00000-0 -11608-3 0 1851 2 26536 99.1699 323.5410 0011083 129.4691 230.7450 14.12501550421574 1 26536U 00055A 08331.06699135 -.00000228 00000-0 -98075-4 0 1850 2 26536 99.1699 323.9034 0011071 128.5262 231.6917 14.12501634421628 1 26536U 00055A 08331.56283970 -.00000221 00000-0 -94389-4 0 1869 2 26536 99.1700 324.4105 0011130 127.2989 232.9208 14.12501545421699 1 26536U 00055A 08332.48370027 -.00000034 00000-0 65577-5 0 1860 2 26536 99.1699 325.3525 0011144 125.2894 234.9346 14.12502477421825 1 26536U 00055A 08332.48370027 -.00000034 00000-0 65577-5 0 1871 2 26536 99.1699 325.3525 0011144 125.2894 234.9346 14.12502477421825 1 26536U 00055A 08332.90871259 .00000104 00000-0 81620-4 0 1885 2 26536 99.1697 325.7871 0011127 123.9960 236.2291 14.12503177421889 1 26536U 00055A 08333.40456016 .00000230 00000-0 14944-3 0 1885 2 26536 99.1697 326.2940 0011174 122.9871 237.2422 14.12504136421955 1 26536U 00055A 08333.82957151 .00000291 00000-0 18277-3 0 1898 2 26536 99.1699 326.7290 0011153 121.6017 238.6235 14.12504505422010 1 26536U 00055A 08334.39625451 .00000384 00000-0 23313-3 0 1896 2 26536 99.1699 327.3086 0011171 120.2870 239.9439 14.12505453422093 1 26536U 00055A 08334.82126570 .00000301 00000-0 18819-3 0 1908 2 26536 99.1701 327.7434 0011157 119.1167 241.1085 14.12505162422154 1 26536U 00055A 08335.45878425 .00000186 00000-0 12606-3 0 1900 2 26536 99.1703 328.3956 0011139 117.3214 242.9084 14.12505149422248 1 26536U 00055A 08335.45878425 .00000186 00000-0 12606-3 0 1911 2 26536 99.1703 328.3956 0011139 117.3214 242.9084 14.12505149422248 1 26536U 00055A 08336.37964427 .00000052 00000-0 53465-4 0 1923 2 26536 99.1704 329.3378 0011173 114.6707 245.5622 14.12504735422374 1 26536U 00055A 08336.37964427 .00000052 00000-0 53465-4 0 1934 2 26536 99.1704 329.3378 0011173 114.6707 245.5622 14.12504735422374 1 26536U 00055A 08336.80465642 -.00000041 00000-0 31595-5 0 1948 2 26536 99.1699 329.7724 0011146 113.4474 246.7834 14.12504158422438 1 26536U 00055A 08337.22966934 -.00000167 00000-0 -65349-4 0 1948 2 26536 99.1699 330.2070 0011154 111.9055 248.3275 14.12503567422492 1 26536U 00055A 08337.72551767 -.00000257 00000-0 -11362-3 0 1953 2 26536 99.1699 330.7144 0011193 110.8197 249.4148 14.12502850422560 1 26536U 00055A 08338.57554341 -.00000332 00000-0 -15435-3 0 1957 2 26536 99.1703 331.5842 0011229 108.6130 251.6263 14.12502237422687 1 26536U 00055A 08339.49640418 -.00000280 00000-0 -12608-3 0 1962 2 26536 99.1706 332.5264 0011252 106.2579 253.9846 14.12502144422810 1 26536U 00055A 08340.48809945 -.00000094 00000-0 -25769-4 0 1972 2 26536 99.1707 333.5411 0011273 104.3299 255.9148 14.12502863422957 1 26536U 00055A 08340.91311150 .00000052 00000-0 53198-4 0 1986 2 26536 99.1706 333.9759 0011264 103.1283 257.1169 14.12503528423019 1 26536U 00055A 08341.40895871 .00000142 00000-0 10223-3 0 1989 2 26536 99.1707 334.4832 0011268 102.1345 258.1124 14.12504197423082 1 26536U 00055A 08341.83397007 .00000151 00000-0 10679-3 0 1990 2 26536 99.1708 334.9183 0011300 100.9508 259.2917 14.12504228423145 1 26536U 00055A 08342.40065313 .00000280 00000-0 17681-3 0 1999 2 26536 99.1707 335.4980 0011280 99.8162 260.4337 14.12505310423226 1 26536U 00055A 08342.82566376 .00000316 00000-0 19590-3 0 2004 2 26536 99.1710 335.9333 0011274 98.3918 261.8521 14.12505630423284 1 26536U 00055A 08343.17984028 .00000318 00000-0 19730-3 0 2009 2 26536 99.1709 336.2957 0011273 97.6344 262.6113 14.12505910423335 1 26536U 00055A 08343.67568689 .00000214 00000-0 14093-3 0 2018 2 26536 99.1711 336.8032 0011269 96.3518 263.8912 14.12505643423403 1 26536U 00055A 08344.52571036 .00000126 00000-0 93193-4 0 2025 2 26536 99.1710 337.6729 0011265 94.2949 265.9498 14.12505673423523 1 26536U 00055A 08345.51740532 -.00000135 00000-0 -47560-4 0 2034 2 26536 99.1707 338.6876 0011275 91.3125 268.9323 14.12504489423667 1 26536U 00055A 08345.51740532 -.00000135 00000-0 -47560-4 0 2045 2 26536 99.1707 338.6876 0011275 91.3125 268.9323 14.12504489423667 1 26536U 00055A 08345.51740532 -.00000135 00000-0 -47560-4 0 2056 2 26536 99.1707 338.6876 0011275 91.3125 268.9323 14.12504489423667 1 26536U 00055A 08346.43826499 -.00000221 00000-0 -94388-4 0 2062 2 26536 99.1710 339.6294 0011297 89.2759 270.9709 14.12503924423797 1 26536U 00055A 08346.86328638 .00000014 00000-0 74873-5 0 2067 2 26536 99.1708 340.0657 0011196 87.4978 272.7948 14.12504479423852 1 26536U 00055A 08346.93411236 -.00000180 00000-0 -72418-4 0 2071 2 26536 99.1710 340.1367 0011276 87.9647 272.2815 14.12503852423864 1 26536U 00055A 08347.42995980 -.00000171 00000-0 -67401-4 0 2075 2 26536 99.1708 340.6438 0011293 86.6172 273.6300 14.12503864423938 1 26536U 00055A 08347.42995980 -.00000171 00000-0 -67401-4 0 2086 2 26536 99.1708 340.6438 0011293 86.6172 273.6300 14.12503864423938 1 26536U 00055A 08347.85497169 -.00000197 00000-0 -81172-4 0 2099 2 26536 99.1708 341.0785 0011316 85.7189 274.5255 14.12503465423994 1 26536U 00055A 08348.27998425 -.00000170 00000-0 -66702-4 0 2090 2 26536 99.1708 341.5134 0011302 84.7682 275.4795 14.12503542424052 1 26536U 00055A 08348.70499607 -.00000135 00000-0 -47856-4 0 2108 2 26536 99.1706 341.9480 0011311 83.4225 276.8229 14.12503538424116 1 26536U 00055A 08349.55501950 .00000034 00000-0 43461-4 0 2101 2 26536 99.1705 342.8173 0011308 81.0988 279.1479 14.12504544424234 1 26536U 00055A 08350.47587707 .00000224 00000-0 14623-3 0 2117 2 26536 99.1706 343.7593 0011275 78.3843 281.8611 14.12505929424363 1 26536U 00055A 08351.04255846 .00000272 00000-0 17217-3 0 2123 2 26536 99.1708 344.3390 0011299 76.6114 283.6299 14.12506292424440 1 26536U 00055A 08351.53840516 .00000228 00000-0 14849-3 0 2131 2 26536 99.1709 344.8467 0011277 75.1255 285.1159 14.12506392424518 1 26536U 00055A 08352.45926296 .00000097 00000-0 77779-4 0 2139 2 26536 99.1711 345.7887 0011257 72.4660 287.7735 14.12506263424644 1 26536U 00055A 08352.45926296 .00000097 00000-0 77779-4 0 2140 2 26536 99.1711 345.7887 0011257 72.4660 287.7735 14.12506263424644 1 26536U 00055A 08352.88427424 .00000067 00000-0 61223-4 0 2151 2 26536 99.1719 346.2237 0011234 71.5326 288.7052 14.12506085424703 1 26536U 00055A 08353.45095612 -.00000059 00000-0 -65782-5 0 2153 2 26536 99.1720 346.8032 0011211 70.0454 290.1910 14.12505649424788 1 26536U 00055A 08354.58432046 -.00000201 00000-0 -83351-4 0 2165 2 26536 99.1722 347.9630 0011182 67.2317 293.0016 14.12504716424940 1 26536U 00055A 08355.00933244 -.00000223 00000-0 -95414-4 0 2177 2 26536 99.1723 348.3979 0011177 66.2075 294.0264 14.12504469425005 1 26536U 00055A 08355.57601477 -.00000305 00000-0 -13959-3 0 2184 2 26536 99.1720 348.9776 0011150 64.7965 295.4353 14.12503896425080 1 26536U 00055A 08356.49687372 -.00000237 00000-0 -10282-3 0 2184 2 26536 99.1718 349.9197 0011149 62.2166 298.0144 14.12503918425216 1 26536U 00055A 08356.49687372 -.00000237 00000-0 -10282-3 0 2195 2 26536 99.1718 349.9197 0011149 62.2166 298.0144 14.12503918425216 1 26536U 00055A 08356.85105004 -.00000189 00000-0 -77223-4 0 2209 2 26536 99.1718 350.2821 0011166 61.2126 299.0163 14.12503941425262 1 26536U 00055A 08357.41773249 -.00000072 00000-0 -13610-4 0 2205 2 26536 99.1718 350.8621 0011142 59.8358 300.3964 14.12504592425347 1 26536U 00055A 08357.91357840 .00000022 00000-0 37216-4 0 2217 2 26536 99.1714 351.3693 0011134 58.4397 301.7872 14.12505008425411 1 26536U 00055A 08358.48026009 .00000154 00000-0 10874-3 0 2216 2 26536 99.1714 351.9493 0011107 57.2037 303.0247 14.12505922425497 1 26536U 00055A 08358.48026009 .00000154 00000-0 10874-3 0 2227 2 26536 99.1714 351.9493 0011107 57.2037 303.0247 14.12505922425497 1 26536U 00055A 08358.90527036 .00000233 00000-0 15122-3 0 2230 2 26536 99.1712 352.3842 0011129 55.8674 304.3549 14.12506361425557 1 26536U 00055A 08359.33028140 .00000311 00000-0 19370-3 0 2236 2 26536 99.1713 352.8192 0011105 54.7269 305.4963 14.12507055425613 1 26536U 00055A 08360.39280806 .00000323 00000-0 20006-3 0 2245 2 26536 99.1711 353.9062 0011110 51.8364 308.3820 14.12507829425768 1 26536U 00055A 08360.88865339 .00000187 00000-0 12618-3 0 2258 2 26536 99.1712 354.4135 0011087 50.6140 309.5964 14.12507263425830 1 26536U 00055A 08361.38450012 .00000200 00000-0 13342-3 0 2264 2 26536 99.1709 354.9207 0011054 49.2588 310.9562 14.12507706425905 1 26536U 00055A 08362.23452219 -.00000044 00000-0 14570-5 0 2274 2 26536 99.1711 355.7906 0011084 46.7363 313.4721 14.12506566426021 1 26536U 00055A 08363.58039164 -.00000316 00000-0 -14562-3 0 2286 2 26536 99.1707 357.1671 0011015 43.2766 316.9263 14.12504898426210 1 26536U 00055A 08364.50124978 -.00000322 00000-0 -14922-3 0 2295 2 26536 99.1706 358.1092 0011006 40.8298 319.3704 14.12504526426349 1 26536U 00055A 08365.06793167 -.00000210 00000-0 -88270-4 0 2305 2 26536 99.1708 358.6889 0010896 39.5693 320.6306 14.12504787426421 1 26536U 00055A 08365.63461293 -.00000113 00000-0 -36013-4 0 2311 2 26536 99.1710 359.2688 0010918 38.1217 322.0745 14.12505145426501 1 26536U 00055A 08366.55546928 .00000078 00000-0 67489-4 0 2311 2 26536 99.1711 0.2114 0010845 35.7683 324.4224 14.12506214426638 1 26536U 00055A 09001.19297388 .00000257 00000-0 16415-3 0 2323 2 26536 99.1712 0.8635 0010820 33.9078 326.2821 14.12507301426725 1 26536U 00055A 09001.68881880 .00000186 00000-0 12579-3 0 2332 2 26536 99.1714 1.3712 0010789 32.8236 327.3581 14.12507103426799 1 26536U 00055A 09002.04299478 .00000248 00000-0 15940-3 0 2333 2 26536 99.1713 1.7337 0010731 31.8002 328.3840 14.12507662426847 1 26536U 00055A 09002.75134503 .00000193 00000-0 12980-3 0 2349 2 26536 99.1718 2.4591 0010736 29.8262 330.3507 14.12507750426944 1 26536U 00055A 09003.17635571 .00000219 00000-0 14397-3 0 2340 2 26536 99.1719 2.8939 0010732 28.5911 331.5857 14.12508134427004 1 26536U 00055A 09003.17635571 .00000219 00000-0 14397-3 0 2351 2 26536 99.1719 2.8939 0010732 28.5911 331.5857 14.12508134427004 1 26536U 00055A 09003.67220086 .00000090 00000-0 74077-4 0 2367 2 26536 99.1719 3.4013 0010719 27.0643 333.1056 14.12507666427070 1 26536U 00055A 09004.02637681 .00000039 00000-0 46501-4 0 2364 2 26536 99.1719 3.7639 0010777 26.0307 334.1386 14.12507479427122 1 26536U 00055A 09004.02637681 .00000039 00000-0 46501-4 0 2375 2 26536 99.1719 3.7639 0010777 26.0307 334.1386 14.12507479427122 1 26536U 00055A 09004.59305787 -.00000112 00000-0 -35404-4 0 2381 2 26536 99.1720 4.3437 0010752 24.4187 335.7465 14.12506787427203 1 26536U 00055A 09005.51391528 -.00000221 00000-0 -94365-4 0 2384 2 26536 99.1722 5.2860 0010746 21.8749 338.2877 14.12506165427332 1 26536U 00055A 09006.57644294 -.00000312 00000-0 -14342-3 0 2390 2 26536 99.1723 6.3732 0010723 19.1492 341.0070 14.12505310427487 1 26536U 00055A 09007.49730018 -.00000225 00000-0 -96361-4 0 2409 2 26536 99.1726 7.3156 0010678 16.4785 343.6739 14.12505438427611 1 26536U 00055A 09007.49730018 -.00000225 00000-0 -96361-4 0 2410 2 26536 99.1726 7.3156 0010678 16.4785 343.6739 14.12505438427611 1 26536U 00055A 09008.06398156 -.00000117 00000-0 -37990-4 0 2421 2 26536 99.1726 7.8953 0010682 14.9053 345.2454 14.12505822427694 1 26536U 00055A 09008.63066246 -.00000036 00000-0 58066-5 0 2434 2 26536 99.1726 8.4750 0010696 13.3836 346.7638 14.12506232427778 1 26536U 00055A 09009.12650806 .00000124 00000-0 92303-4 0 2438 2 26536 99.1727 8.9823 0010656 11.7973 348.3487 14.12507105427843 1 26536U 00055A 09009.62235293 .00000281 00000-0 17721-3 0 2447 2 26536 99.1727 9.4897 0010680 10.6225 349.5205 14.12508180427918 1 26536U 00055A 09010.47237240 .00000317 00000-0 19696-3 0 2450 2 26536 99.1725 10.3592 0010607 8.1027 352.0315 14.12508925428032 1 26536U 00055A 09010.89738239 .00000282 00000-0 17778-3 0 2461 2 26536 99.1725 10.7940 0010574 6.9012 353.2279 14.12508851428092 1 26536U 00055A 09011.32239290 .00000250 00000-0 16059-3 0 2469 2 26536 99.1725 11.2288 0010533 5.7592 354.3703 14.12509053428154 1 26536U 00055A 09011.74740279 .00000115 00000-0 87473-4 0 2479 2 26536 99.1723 11.6636 0010552 4.5428 355.5801 14.12508490428212 1 26536U 00055A 09012.52658894 -.00000024 00000-0 12401-4 0 2476 2 26536 99.1725 12.4608 0010605 2.3235 357.7970 14.12508116428321 1 26536U 00055A 09013.51828029 -.00000134 00000-0 -47062-4 0 2480 2 26536 99.1723 13.4754 0010571 359.6405 0.4754 14.12507591428464 1 26536U 00055A 09014.01412587 -.00000140 00000-0 -50706-4 0 2491 2 26536 99.1725 13.9830 0010551 358.3661 1.7460 14.12507359428532 1 26536U 00055A 09014.58080688 -.00000267 00000-0 -11942-3 0 2506 2 26536 99.1723 14.5628 0010516 356.7168 3.3915 14.12506625428614 1 26536U 00055A 09015.43082909 -.00000281 00000-0 -12686-3 0 2501 2 26536 99.1724 15.4325 0010494 354.4593 5.6480 14.12506302428738 1 26536U 00055A 09015.43082909 -.00000281 00000-0 -12686-3 0 2512 2 26536 99.1724 15.4325 0010494 354.4593 5.6480 14.12506302428738 1 26536U 00055A 09015.43083875 -.00000295 00000-0 00000+0 0 2501 2 26536 99.1690 15.4312 0010520 357.8858 2.2739 14.12507055428733 1 26536U 00055A 09015.85583958 -.00000267 00000-0 -11920-3 0 2523 2 26536 99.1728 15.8678 0010516 353.3058 6.7952 14.12505966428793 1 26536U 00055A 09016.35168609 -.00000173 00000-0 -68056-4 0 2520 2 26536 99.1729 16.3751 0010484 351.8028 8.3011 14.12506424428868 1 26536U 00055A 09016.77669610 -.00000110 00000-0 -34116-4 0 2536 2 26536 99.1731 16.8102 0010454 350.6035 9.4945 14.12506532428923 1 26536U 00055A 09017.20170678 .00000026 00000-0 39619-4 0 2533 2 26536 99.1731 17.2451 0010350 348.9618 11.1375 14.12507271428981 1 26536U 00055A 09017.91005625 .00000167 00000-0 11545-3 0 2555 2 26536 99.1733 17.9703 0010322 347.2396 12.8519 14.12508134429083 1 26536U 00055A 09018.33506641 .00000275 00000-0 17419-3 0 2541 2 26536 99.1733 18.4051 0010272 345.8163 14.2750 14.12508927429145 1 26536U 00055A 09018.33506641 .00000275 00000-0 17419-3 0 2552 2 26536 99.1733 18.4051 0010272 345.8163 14.2750 14.12508927429145 1 26536U 00055A 09018.76007582 .00000243 00000-0 15684-3 0 2567 2 26536 99.1735 18.8405 0010259 344.6687 15.4157 14.12508936429208 1 26536U 00055A 09019.53926071 .00000276 00000-0 17463-3 0 2569 2 26536 99.1736 19.6381 0010229 342.4394 17.6417 14.12509609429312 1 26536U 00055A 09019.89343567 .00000262 00000-0 16678-3 0 2574 2 26536 99.1739 20.0007 0010194 341.2460 18.8329 14.12509683429360 1 26536U 00055A 09020.38928056 .00000220 00000-0 14411-3 0 2579 2 26536 99.1738 20.5080 0010188 339.9061 20.1704 14.12509836429430 1 26536U 00055A 09020.81429042 .00000088 00000-0 72983-4 0 2580 2 26536 99.1736 20.9429 0010218 338.6111 21.4587 14.12509184429490 1 26536U 00055A 09021.16846631 -.00000001 00000-0 24658-4 0 2588 2 26536 99.1737 21.3053 0010243 337.9129 22.1576 14.12508828429544 1 26536U 00055A 09021.94765215 -.00000148 00000-0 -54832-4 0 2605 2 26536 99.1736 22.1027 0010224 335.7948 24.2715 14.12508099429657 1 26536U 00055A 09022.44349809 -.00000204 00000-0 -84910-4 0 2599 2 26536 99.1735 22.6100 0010212 334.5856 25.4805 14.12507803429728 1 26536U 00055A 09022.86850869 -.00000217 00000-0 -92265-4 0 2606 2 26536 99.1732 23.0449 0010232 333.3206 26.7419 14.12507438429789 1 26536U 00055A 09023.36435474 -.00000233 00000-0 -10068-3 0 2601 2 26536 99.1732 23.5524 0010278 332.1322 27.9302 14.12507321429857 1 26536U 00055A 09023.36435474 -.00000233 00000-0 -10068-3 0 2612 2 26536 99.1732 23.5524 0010278 332.1322 27.9302 14.12507321429857 1 26536U 00055A 09023.78936527 -.00000213 00000-0 -90173-4 0 2628 2 26536 99.1732 23.9872 0010239 330.8621 29.1970 14.12507121429911 1 26536U 00055A 09024.49771622 -.00000201 00000-0 -83178-4 0 2624 2 26536 99.1731 24.7121 0010183 328.7411 31.3163 14.12507173430016 1 26536U 00055A 09024.92272671 -.00000074 00000-0 -14968-4 0 2632 2 26536 99.1729 25.1470 0010227 327.6296 32.4262 14.12507651430072 1 26536U 00055A 09025.34773693 -.00000029 00000-0 96343-5 0 2636 2 26536 99.1732 25.5819 0010184 326.4811 33.5732 14.12507942430133 1 26536U 00055A 09025.70191196 .00000030 00000-0 41358-4 0 2645 2 26536 99.1731 25.9443 0010154 325.6122 34.4389 14.12508151430188 1 26536U 00055A 09026.48109677 .00000116 00000-0 87923-4 0 2647 2 26536 99.1728 26.7417 0010081 322.8029 37.2452 14.12508967430297 1 26536U 00055A 09026.48109677 .00000116 00000-0 87923-4 0 2658 2 26536 99.1728 26.7417 0010081 322.8029 37.2452 14.12508967430297 1 26536U 00055A 09026.90610673 .00000160 00000-0 11214-3 0 2667 2 26536 99.1725 27.1768 0010076 321.6826 38.3620 14.12509194430353 1 26536U 00055A 09027.26028195 .00000305 00000-0 19009-3 0 2660 2 26536 99.1726 27.5393 0010052 320.3418 39.7062 14.12510186430403 1 26536U 00055A 09027.68529082 .00000249 00000-0 16001-3 0 2674 2 26536 99.1729 27.9745 0010033 319.0436 40.9966 14.12510115430460 1 26536U 00055A 09028.46447555 .00000187 00000-0 12674-3 0 2678 2 26536 99.1730 28.7720 0010000 316.5366 43.5012 14.12510339430573 1 26536U 00055A 09028.46447555 .00000187 00000-0 12674-3 0 2689 2 26536 99.1730 28.7720 0010000 316.5366 43.5012 14.12510339430573 1 26536U 00055A 09028.81865043 .00000161 00000-0 11235-3 0 2699 2 26536 99.1731 29.1345 0010026 315.7244 44.3102 14.12510226430626 1 26536U 00055A 09029.31449562 .00000060 00000-0 57987-4 0 2692 2 26536 99.1733 29.6417 0009992 314.4343 45.5987 14.12509920430699 1 26536U 00055A 09029.73950596 -.00000061 00000-0 -77984-5 0 2707 2 26536 99.1734 30.0768 0009977 312.9813 47.0493 14.12509268430754 1 26536U 00055A 09030.44785713 -.00000218 00000-0 -92762-4 0 2708 2 26536 99.1736 30.8018 0009969 311.0254 49.0056 14.12508583430859 1 26536U 00055A 09030.44785713 -.00000218 00000-0 -92762-4 0 2719 2 26536 99.1736 30.8018 0009969 311.0254 49.0056 14.12508583430859 1 26536U 00055A 09030.87286745 -.00000273 00000-0 -12240-3 0 2721 2 26536 99.1738 31.2371 0009894 309.5072 50.5205 14.12508017430917 1 26536U 00055A 09031.29787835 -.00000307 00000-0 -14057-3 0 2720 2 26536 99.1737 31.6719 0009922 308.6196 51.4085 14.12507769430970 1 26536U 00055A 09031.65205391 -.00000290 00000-0 -13133-3 0 2738 2 26536 99.1743 32.0347 0009890 307.5682 52.4593 14.12507639431029 1 26536U 00055A 09032.50207494 -.00000241 00000-0 -10525-3 0 2737 2 26536 99.1745 32.9047 0009811 304.7216 55.3046 14.12507636431147 1 26536U 00055A 09032.50207494 -.00000241 00000-0 -10525-3 0 2748 2 26536 99.1745 32.9047 0009811 304.7216 55.3046 14.12507636431147 1 26536U 00055A 09032.85625021 -.00000182 00000-0 -73072-4 0 2758 2 26536 99.1747 33.2672 0009790 303.7152 56.3086 14.12507688431198 1 26536U 00055A 09033.21042576 -.00000093 00000-0 -24872-4 0 2752 2 26536 99.1749 33.6297 0009787 302.4516 57.5742 14.12508163431240 1 26536U 00055A 09033.56460052 -.00000052 00000-0 -29407-5 0 2769 2 26536 99.1750 33.9924 0009766 301.5160 58.5061 14.12508313431291 1 26536U 00055A 09034.34378570 .00000079 00000-0 68209-4 0 2768 2 26536 99.1751 34.7900 0009756 298.8070 61.2135 14.12509086431406 1 26536U 00055A 09034.34378570 .00000079 00000-0 68209-4 0 2779 2 26536 99.1751 34.7900 0009756 298.8070 61.2135 14.12509086431406 1 26536U 00055A 09034.83963072 .00000142 00000-0 10198-3 0 2785 2 26536 99.1751 35.2978 0009757 297.5219 62.4964 14.12509458431472 1 26536U 00055A 09035.26464080 .00000229 00000-0 14901-3 0 2780 2 26536 99.1751 35.7330 0009764 295.9530 64.0671 14.12510171431539 1 26536U 00055A 09035.68965001 .00000263 00000-0 16752-3 0 2790 2 26536 99.1753 36.1683 0009772 294.8425 65.1730 14.12510524431593 1 26536U 00055A 09036.39799968 .00000288 00000-0 18123-3 0 2797 2 26536 99.1753 36.8934 0009740 292.4474 67.5679 14.12511120431694 1 26536U 00055A 09036.39799968 .00000288 00000-0 18123-3 0 2809 2 26536 99.1753 36.8934 0009740 292.4474 67.5679 14.12511120431694 1 26536U 00055A 09036.82300907 .00000194 00000-0 13011-3 0 2816 2 26536 99.1751 37.3286 0009767 291.2390 68.7697 14.12510679431759 1 26536U 00055A 09037.53135945 .00000083 00000-0 70468-4 0 2810 2 26536 99.1750 38.0538 0009830 289.4957 70.5137 14.12510564431859 1 26536U 00055A 09037.95636961 .00000006 00000-0 28429-4 0 2826 2 26536 99.1749 38.4890 0009805 288.4193 71.5884 14.12510201431910 1 26536U 00055A 09038.31054515 -.00000043 00000-0 23357-5 0 2824 2 26536 99.1750 38.8515 0009779 287.5215 72.4877 14.12510017431967 1 26536U 00055A 09038.66472040 -.00000099 00000-0 -28201-4 0 2834 2 26536 99.1746 39.2138 0009777 286.3422 73.6663 14.12509699432010 1 26536U 00055A 09039.44390621 -.00000176 00000-0 -69803-4 0 2834 2 26536 99.1745 40.0112 0009760 284.1940 75.8149 14.12509306432124 1 26536U 00055A 09039.44390621 -.00000176 00000-0 -69803-4 0 2845 2 26536 99.1745 40.0112 0009760 284.1940 75.8149 14.12509306432124 1 26536U 00055A 09039.79808144 -.00000192 00000-0 -78504-4 0 2854 2 26536 99.1746 40.3735 0009737 282.9997 77.0071 14.12508987432178 1 26536U 00055A 09040.22309217 -.00000208 00000-0 -87366-4 0 2855 2 26536 99.1745 40.8085 0009737 281.9356 78.0726 14.12508867432230 1 26536U 00055A 09040.57726752 -.00000265 00000-0 -11801-3 0 2864 2 26536 99.1743 41.1707 0009734 280.7208 79.2861 14.12508481432283 1 26536U 00055A 09041.35645354 -.00000200 00000-0 -83052-4 0 2866 2 26536 99.1744 41.9681 0009707 278.0553 81.9527 14.12508569432394 1 26536U 00055A 09041.35645354 -.00000200 00000-0 -83052-4 0 2877 2 26536 99.1744 41.9681 0009707 278.0553 81.9527 14.12508569432394 1 26536U 00055A 09041.78146393 -.00000122 00000-0 -40592-4 0 2889 2 26536 99.1741 42.4029 0009711 276.8974 83.1097 14.12508741432456 1 26536U 00055A 09042.20647438 -.00000037 00000-0 53825-5 0 2881 2 26536 99.1741 42.8379 0009726 275.6036 84.4061 14.12509278432518 1 26536U 00055A 09042.63148407 .00000028 00000-0 40698-4 0 2893 2 26536 99.1741 43.2728 0009709 274.4277 85.5796 14.12509624432574 1 26536U 00055A 09043.41066864 .00000265 00000-0 16877-3 0 2890 2 26536 99.1742 44.0702 0009720 271.8981 88.1109 14.12511156432684 1 26536U 00055A 09043.41066864 .00000265 00000-0 16877-3 0 2902 2 26536 99.1742 44.0702 0009720 271.8981 88.1109 14.12511156432684 1 26536U 00055A 09043.97734774 .00000260 00000-0 16600-3 0 2915 2 26536 99.1744 44.6505 0009701 270.3958 89.6083 14.12511338432768 1 26536U 00055A 09044.47319284 .00000311 00000-0 19374-3 0 2914 2 26536 99.1747 45.1583 0009709 268.7053 91.3023 14.12511937432835 1 26536U 00055A 09044.47319284 .00000311 00000-0 19374-3 0 2925 2 26536 99.1747 45.1583 0009709 268.7053 91.3023 14.12511937432835 1 26536U 00055A 09045.46488258 .00000104 00000-0 81536-4 0 2934 2 26536 99.1752 46.1741 0009723 265.7945 94.2108 14.12511321432979 1 26536U 00055A 09046.45657288 -.00000032 00000-0 81027-5 0 2943 2 26536 99.1756 47.1896 0009720 263.2506 96.7553 14.12510862433115 1 26536U 00055A 09046.95241801 -.00000104 00000-0 -31118-4 0 2955 2 26536 99.1756 47.6973 0009708 261.8626 98.1415 14.12510380433184 1 26536U 00055A 09047.44826377 -.00000207 00000-0 -86504-4 0 2950 2 26536 99.1756 48.2048 0009714 260.2793 99.7270 14.12509856433259 1 26536U 00055A 09047.80243928 -.00000214 00000-0 -90527-4 0 2964 2 26536 99.1759 48.5674 0009695 259.2862 100.7196 14.12509520433307 1 26536U 00055A 09048.15661506 -.00000225 00000-0 -96530-4 0 2961 2 26536 99.1758 48.9300 0009693 258.2770 101.7317 14.12509407433356 1 26536U 00055A 09048.58162549 -.00000298 00000-0 -13566-3 0 2979 2 26536 99.1759 49.3653 0009719 256.9030 103.1052 14.12508923433417 1 26536U 00055A 09049.50248175 -.00000247 00000-0 -10829-3 0 2975 2 26536 99.1760 50.3081 0009746 253.8779 106.1339 14.12508940433546 1 26536U 00055A 09050.49417230 -.00000061 00000-0 -78144-5 0 2986 2 26536 99.1760 51.3233 0009780 250.8777 109.1356 14.12509685433683 1 26536U 00055A 09051.41502698 .00000185 00000-0 12563-3 0 2999 2 26536 99.1759 52.2659 0009803 247.8365 112.1793 14.12511152433814 1 26536U 00055A 09052.40671630 .00000305 00000-0 19031-3 0 3006 2 26536 99.1759 53.2813 0009817 244.9028 115.1141 14.12512234433953 1 26536U 00055A 09052.83172565 .00000293 00000-0 18380-3 0 3019 2 26536 99.1758 53.7165 0009823 243.4728 116.5418 14.12512292434019 1 26536U 00055A 09053.61091040 .00000218 00000-0 14316-3 0 3016 2 26536 99.1760 54.5142 0009825 241.0875 118.9295 14.12512375434128 1 26536U 00055A 09054.46093065 .00000033 00000-0 43080-4 0 3026 2 26536 99.1758 55.3844 0009856 238.4523 121.5685 14.12511883434246 1 26536U 00055A 09055.45262177 -.00000158 00000-0 -60395-4 0 3037 2 26536 99.1758 56.3994 0009833 235.3686 124.6570 14.12510893434386 1 26536U 00055A 09056.37347719 -.00000157 00000-0 -59537-4 0 3041 2 26536 99.1760 57.3421 0009830 232.6394 127.3884 14.12510667434510 1 26536U 00055A 09056.86932251 -.00000187 00000-0 -75664-4 0 3059 2 26536 99.1762 57.8498 0009870 230.7203 129.3079 14.12510246434581 1 26536U 00055A 09057.29433324 -.00000170 00000-0 -66600-4 0 3056 2 26536 99.1762 58.2849 0009885 229.4935 130.5393 14.12510334434647 1 26536U 00055A 09057.71934332 -.00000210 00000-0 -88257-4 0 3066 2 26536 99.1767 58.7202 0009930 228.0806 131.9504 14.12509872434704 1 26536U 00055A 09058.07351908 -.00000153 00000-0 -57467-4 0 3063 2 26536 99.1769 59.0827 0009970 227.0380 132.9981 14.12510136434753 1 26536U 00055A 09058.56936416 -.00000153 00000-0 -57571-4 0 3077 2 26536 99.1768 59.5902 0009976 225.5225 134.5137 14.12510081434826 1 26536U 00055A 09059.49021949 -.00000006 00000-0 21892-4 0 3079 2 26536 99.1768 60.5331 0010026 222.8844 137.1573 14.12510947434957 1 26536U 00055A 09059.49021949 -.00000006 00000-0 21892-4 0 3080 2 26536 99.1768 60.5331 0010026 222.8844 137.1573 14.12510947434957 1 26536U 00055A 09059.91522921 .00000108 00000-0 84006-4 0 3092 2 26536 99.1770 60.9683 0010027 221.7451 138.2963 14.12511419435015 1 26536U 00055A 09060.41107418 .00000213 00000-0 14043-3 0 3099 2 26536 99.1770 61.4761 0010063 220.3058 139.7402 14.12512209435085 1 26536U 00055A 09060.76524840 .00000258 00000-0 16461-3 0 3106 2 26536 99.1769 61.8390 0010013 219.3498 140.6936 14.12512488435134 1 26536U 00055A 09061.54443286 .00000211 00000-0 13922-3 0 3105 2 26536 99.1774 62.6373 0010111 216.8872 143.1604 14.12512816435244 1 26536U 00055A 09061.54443286 .00000211 00000-0 13922-3 0 3116 2 26536 99.1774 62.6373 0010111 216.8872 143.1604 14.12512816435244 1 26536U 00055A 09062.46528794 .00000089 00000-0 73716-4 0 3128 2 26536 99.1776 63.5805 0010089 214.3655 145.6866 14.12512563435372 1 26536U 00055A 09062.89029769 .00000018 00000-0 35169-4 0 3136 2 26536 99.1774 64.0156 0010121 213.1070 146.9440 14.12512139435438 1 26536U 00055A 09063.31530818 -.00000044 00000-0 15419-5 0 3133 2 26536 99.1775 64.4509 0010065 211.9702 148.0850 14.12511961435496 1 26536U 00055A 09063.74031838 -.00000084 00000-0 -20067-4 0 3148 2 26536 99.1777 64.8862 0010071 210.7139 149.3428 14.12511657435556 1 26536U 00055A 09064.51950407 -.00000200 00000-0 -82721-4 0 3141 2 26536 99.1775 65.6841 0010066 208.5889 151.4728 14.12511110435664 1 26536U 00055A 09064.51950407 -.00000200 00000-0 -82721-4 0 3152 2 26536 99.1775 65.6841 0010066 208.5889 151.4728 14.12511110435664 1 26536U 00055A 09065.44036012 -.00000270 00000-0 -12049-3 0 3165 2 26536 99.1775 66.6270 0010123 205.6747 154.3923 14.12510457435792 1 26536U 00055A 09065.86537061 -.00000249 00000-0 -10927-3 0 3171 2 26536 99.1775 67.0621 0010125 204.5256 155.5429 14.12510276435852 1 26536U 00055A 09066.21954618 -.00000224 00000-0 -96067-4 0 3175 2 26536 99.1775 67.4249 0010139 203.5778 156.4946 14.12510354435902 1 26536U 00055A 09066.64455641 -.00000222 00000-0 -94970-4 0 3184 2 26536 99.1772 67.8598 0010137 202.3871 157.6862 14.12510247435966 1 26536U 00055A 09067.49457655 -.00000052 00000-0 -29291-5 0 3181 2 26536 99.1766 68.7298 0010185 200.0958 159.9834 14.12511160436083 1 26536U 00055A 09067.84875139 .00000070 00000-0 63019-4 0 3195 2 26536 99.1765 69.0923 0010081 199.2687 160.8100 14.12511616436133 1 26536U 00055A 09068.27376161 .00000182 00000-0 12364-3 0 3194 2 26536 99.1763 69.5275 0010177 198.0573 162.0277 14.12512373436199 1 26536U 00055A 09068.69877075 .00000199 00000-0 13297-3 0 3206 2 26536 99.1763 69.9625 0010214 196.6132 163.4703 14.12512579436253 1 26536U 00055A 09069.47795470 .00000249 00000-0 15978-3 0 3205 2 26536 99.1761 70.7601 0010278 194.5139 165.5737 14.12513450436360 1 26536U 00055A 09069.47795470 .00000249 00000-0 15978-3 0 3216 2 26536 99.1761 70.7601 0010278 194.5139 165.5737 14.12513450436360 1 26536U 00055A 09070.04463416 .00000236 00000-0 15269-3 0 3223 2 26536 99.1759 71.3401 0010334 192.8349 167.2549 14.12513591436444 1 26536U 00055A 09070.75298363 .00000177 00000-0 12078-3 0 3238 2 26536 99.1761 72.0654 0010375 190.6312 169.4624 14.12513601436547 1 26536U 00055A 09071.17799354 .00000115 00000-0 87410-4 0 3236 2 26536 99.1761 72.5007 0010358 189.3947 170.7023 14.12513522436601 1 26536U 00055A 09071.60300332 .00000015 00000-0 33297-4 0 3242 2 26536 99.1761 72.9359 0010376 188.2794 171.8190 14.12513122436662 1 26536U 00055A 09072.45302362 -.00000133 00000-0 -46430-4 0 3247 2 26536 99.1766 73.8065 0010437 185.6672 174.4380 14.12512455436786 1 26536U 00055A 09072.87803363 -.00000238 00000-0 -10358-3 0 3256 2 26536 99.1767 74.2417 0010494 184.4027 175.7019 14.12511653436846 1 26536U 00055A 09073.23220948 -.00000277 00000-0 -12478-3 0 3257 2 26536 99.1767 74.6044 0010481 183.3660 176.7441 14.12511404436892 1 26536U 00055A 09073.58638473 -.00000312 00000-0 -14346-3 0 3268 2 26536 99.1766 74.9672 0010513 182.2885 177.8235 14.12511064436945 1 26536U 00055A 09074.43640531 -.00000282 00000-0 -12740-3 0 3263 2 26536 99.1769 75.8377 0010595 179.8904 180.2281 14.12510940437069 1 26536U 00055A 09074.86141556 -.00000202 00000-0 -83918-4 0 3272 2 26536 99.1770 76.2733 0010562 178.7511 181.3693 14.12511058437125 1 26536U 00055A 09075.21559077 -.00000095 00000-0 -25942-4 0 3276 2 26536 99.1770 76.6361 0010627 177.9217 182.2034 14.12511547437179 1 26536U 00055A 09075.71143537 -.00000124 00000-0 -41803-4 0 3289 2 26536 99.1770 77.1440 0010612 176.5306 183.5927 14.12511258437243 1 26536U 00055A 09076.49062012 .00000049 00000-0 51873-4 0 3285 2 26536 99.1772 77.9421 0010684 174.5010 185.6294 14.12512321437355 1 26536U 00055A 09076.49062012 .00000049 00000-0 51873-4 0 3296 2 26536 99.1772 77.9421 0010684 174.5010 185.6294 14.12512321437355 1 26536U 00055A 09077.41147422 .00000206 00000-0 13658-3 0 3303 2 26536 99.1769 78.8849 0010724 172.0288 188.1078 14.12513471437489 1 26536U 00055A 09077.83648341 .00000231 00000-0 15024-3 0 3313 2 26536 99.1772 79.3205 0010694 170.7733 189.3626 14.12513683437545 1 26536U 00055A 09078.19065824 .00000295 00000-0 18482-3 0 3313 2 26536 99.1769 79.6832 0010720 169.8306 190.3102 14.12514234437594 1 26536U 00055A 09078.75733702 .00000273 00000-0 17275-3 0 3328 2 26536 99.1776 80.2640 0010728 168.2823 191.8585 14.12514361437673 1 26536U 00055A 09079.11151176 .00000222 00000-0 14537-3 0 3320 2 26536 99.1773 80.6268 0010741 167.3196 192.8244 14.12514386437724 1 26536U 00055A 09079.53652115 .00000135 00000-0 98272-4 0 3338 2 26536 99.1774 81.0620 0010689 166.2942 193.8505 14.12514154437780 1 26536U 00055A 09080.45737622 -.00000101 00000-0 -29620-4 0 3334 2 26536 99.1773 82.0051 0010789 163.6290 196.5233 14.12513170437916 1 26536U 00055A 09080.45737622 -.00000101 00000-0 -29620-4 0 3345 2 26536 99.1773 82.0051 0010789 163.6290 196.5233 14.12513170437916 1 26536U 00055A 09080.88238594 -.00000179 00000-0 -71549-4 0 3359 2 26536 99.1776 82.4403 0010865 162.4412 197.7108 14.12512535437976 1 26536U 00055A 09081.30739642 -.00000265 00000-0 -11822-3 0 3350 2 26536 99.1776 82.8756 0010844 161.2492 198.9076 14.12512119438036 1 26536U 00055A 09081.73240657 -.00000262 00000-0 -11648-3 0 3364 2 26536 99.1776 83.3107 0010890 160.0033 200.1563 14.12511881438099 1 26536U 00055A 09082.51159171 -.00000286 00000-0 -12932-3 0 3364 2 26536 99.1772 84.1084 0010915 157.8516 202.3129 14.12511565438200 1 26536U 00055A 09082.51159171 -.00000286 00000-0 -12932-3 0 3375 2 26536 99.1772 84.1084 0010915 157.8516 202.3129 14.12511565438200 1 26536U 00055A 09083.50328185 -.00000150 00000-0 -56024-4 0 3391 2 26536 99.1771 85.1236 0011003 155.3092 204.8632 14.12511941438349 1 26536U 00055A 09083.99912648 -.00000024 00000-0 12027-4 0 3380 2 26536 99.1770 85.6314 0010994 154.0281 206.1470 14.12512493438410 1 26536U 00055A 09084.49497084 .00000074 00000-0 65201-4 0 3395 2 26536 99.1769 86.1389 0011030 152.6043 207.5741 14.12513126438485 1 26536U 00055A 09084.91997997 .00000131 00000-0 95952-4 0 3402 2 26536 99.1768 86.5740 0011036 151.3979 208.7798 14.12513406438542 1 26536U 00055A 09085.34498960 .00000225 00000-0 14703-3 0 3404 2 26536 99.1766 87.0091 0011079 150.4928 209.6905 14.12514137438605 1 26536U 00055A 09085.84083317 .00000280 00000-0 17683-3 0 3417 2 26536 99.1768 87.5170 0011065 148.8432 211.3392 14.12514587438672 1 26536U 00055A 09086.26584248 .00000340 00000-0 20907-3 0 3413 2 26536 99.1768 87.9522 0011106 147.9495 212.2377 14.12515211438737 1 26536U 00055A 09086.69085103 .00000275 00000-0 17373-3 0 3427 2 26536 99.1767 88.3876 0011097 146.8416 213.3436 14.12515129438795 1 26536U 00055A 09087.11586041 .00000209 00000-0 13854-3 0 3429 2 26536 99.1765 88.8229 0011116 145.5955 214.5924 14.12515071438854 1 26536U 00055A 09087.61170459 .00000113 00000-0 86417-4 0 3437 2 26536 99.1767 89.3310 0011092 144.2442 215.9457 14.12514826438924 1 26536U 00055A 09088.46172371 -.00000048 00000-0 -60233-6 0 3435 2 26536 99.1767 90.2014 0011091 142.0579 218.1371 14.12514239439044 1 26536U 00055A 09088.46172371 -.00000048 00000-0 -60233-6 0 3446 2 26536 99.1767 90.2014 0011091 142.0579 218.1371 14.12514239439044 1 26536U 00055A 09088.88673312 -.00000121 00000-0 -40025-4 0 3451 2 26536 99.1768 90.6366 0011130 140.8162 219.3789 14.12513716439109 1 26536U 00055A 09089.38257807 -.00000181 00000-0 -72629-4 0 3455 2 26536 99.1767 91.1445 0011118 139.2965 220.9032 14.12513415439173 1 26536U 00055A 09089.94925764 -.00000208 00000-0 -87298-4 0 3460 2 26536 99.1767 91.7250 0011126 138.0192 222.1826 14.12513048439257 1 26536U 00055A 09090.44510242 -.00000295 00000-0 -13440-3 0 3461 2 26536 99.1768 92.2330 0011136 136.6050 223.5993 14.12512522439325 1 26536U 00055A 09091.36595724 -.00000246 00000-0 -10801-3 0 3476 2 26536 99.1767 93.1760 0011143 134.2470 225.9627 14.12512322439451 1 26536U 00055A 09091.86180193 -.00000183 00000-0 -74009-4 0 3483 2 26536 99.1770 93.6841 0011139 132.7945 227.4172 14.12512396439526 1 26536U 00055A 09092.28681164 -.00000129 00000-0 -44575-4 0 3489 2 26536 99.1771 94.1193 0011173 132.0498 228.1651 14.12512619439581 1 26536U 00055A 09092.71182089 -.00000056 00000-0 -48911-5 0 3498 2 26536 99.1774 94.5548 0011190 130.7035 229.5117 14.12512874439645 1 26536U 00055A 09093.42016911 .00000155 00000-0 10920-3 0 3492 2 26536 99.1774 95.2802 0011206 129.0300 231.1894 14.12514252439744 1 26536U 00055A 09093.42016911 .00000155 00000-0 10920-3 0 3504 2 26536 99.1774 95.2802 0011206 129.0300 231.1894 14.12514252439744 1 26536U 00055A 09093.91601272 .00000216 00000-0 14224-3 0 3518 2 26536 99.1775 95.7883 0011193 127.5354 232.6831 14.12514613439812 1 26536U 00055A 09094.41185674 .00000323 00000-0 19973-3 0 3512 2 26536 99.1775 96.2961 0011208 126.3045 233.9195 14.12515506439882 1 26536U 00055A 09094.41185674 .00000323 00000-0 19973-3 0 3523 2 26536 99.1775 96.2961 0011208 126.3045 233.9195 14.12515506439882 1 26536U 00055A 09094.76603012 .00000258 00000-0 16460-3 0 3538 2 26536 99.1776 96.6591 0011227 125.3804 234.8386 14.12515212439931 1 26536U 00055A 09095.19103963 .00000253 00000-0 16185-3 0 3535 2 26536 99.1775 97.0944 0011242 124.2725 235.9518 14.12515499439996 1 26536U 00055A 09095.89938740 .00000204 00000-0 13562-3 0 3555 2 26536 99.1776 97.8199 0011279 122.3451 237.8797 14.12515619440099 1 26536U 00055A 09096.32439646 .00000155 00000-0 10916-3 0 3549 2 26536 99.1774 98.2551 0011271 120.9518 239.2752 14.12515627440157 1 26536U 00055A 09096.82024017 .00000092 00000-0 75210-4 0 3556 2 26536 99.1773 98.7627 0011266 119.5862 240.6411 14.12515387440224 1 26536U 00055A 09097.52858911 -.00000090 00000-0 -23698-4 0 3555 2 26536 99.1770 99.4881 0011266 117.5645 242.6660 14.12514625440321 1 26536U 00055A 09097.52858911 -.00000090 00000-0 -23698-4 0 3566 2 26536 99.1770 99.4881 0011266 117.5645 242.6660 14.12514625440321 1 26536U 00055A 09097.95359839 -.00000157 00000-0 -59617-4 0 3573 2 26536 99.1768 99.9231 0011310 116.5186 243.7126 14.12514168440388 1 26536U 00055A 09098.37860798 -.00000245 00000-0 -10728-3 0 3578 2 26536 99.1767 100.3582 0011335 115.3605 244.8726 14.12513654440447 1 26536U 00055A 09098.80361762 -.00000293 00000-0 -13324-3 0 3582 2 26536 99.1765 100.7933 0011340 114.3374 245.8971 14.12513174440504 1 26536U 00055A 09099.15779242 -.00000366 00000-0 -17262-3 0 3583 2 26536 99.1764 101.1561 0011358 113.4776 246.7587 14.12512720440554 1 26536U 00055A 09099.93697644 -.00000233 00000-0 -10056-3 0 3604 2 26536 99.1763 101.9537 0011364 111.4386 248.8020 14.12513037440665 1 26536U 00055A 09100.36198552 -.00000192 00000-0 -78827-4 0 3591 2 26536 99.1764 102.3888 0011370 110.4765 249.7647 14.12513151440726 1 26536U 00055A 09100.36198552 -.00000192 00000-0 -78827-4 0 3603 2 26536 99.1764 102.3888 0011370 110.4765 249.7647 14.12513151440726 1 26536U 00055A 09100.71615968 -.00000090 00000-0 -23516-4 0 3610 2 26536 99.1763 102.7515 0011375 109.3499 250.8912 14.12513494440775 1 26536U 00055A 09101.49534220 .00000132 00000-0 96425-4 0 3611 2 26536 99.1763 103.5497 0011374 107.5354 252.7085 14.12514827440887 1 26536U 00055A 09101.92035060 .00000211 00000-0 13920-3 0 3624 2 26536 99.1761 103.9848 0011398 106.4625 253.7807 14.12515314440946 1 26536U 00055A 09102.34535916 .00000256 00000-0 16374-3 0 3621 2 26536 99.1760 104.4200 0011400 105.4992 254.7453 14.12515787441003 1 26536U 00055A 09102.69953267 .00000192 00000-0 12921-3 0 3636 2 26536 99.1765 104.7833 0011404 104.5555 255.6861 14.12515554441052 1 26536U 00055A 09103.47871509 .00000221 00000-0 14502-3 0 3631 2 26536 99.1766 105.5817 0011386 102.5037 257.7417 14.12516273441167 1 26536U 00055A 09103.83288857 .00000160 00000-0 11180-3 0 3641 2 26536 99.1769 105.9446 0011400 101.5932 258.6491 14.12515966441218 1 26536U 00055A 09104.25789760 .00000169 00000-0 11650-3 0 3648 2 26536 99.1771 106.3800 0011403 100.4588 259.7875 14.12516216441271 1 26536U 00055A 09104.68290587 .00000080 00000-0 68375-4 0 3659 2 26536 99.1774 106.8156 0011396 99.2147 261.0295 14.12515910441339 1 26536U 00055A 09105.03707996 .00000024 00000-0 38455-4 0 3650 2 26536 99.1772 107.1784 0011413 98.0144 262.2308 14.12515734441389 1 26536U 00055A 09105.88709762 -.00000137 00000-0 -49017-4 0 3671 2 26536 99.1773 108.0487 0011449 96.1582 264.0868 14.12514820441504 1 26536U 00055A 09106.31210695 -.00000188 00000-0 -76273-4 0 3661 2 26536 99.1771 108.4839 0011453 94.8233 265.4240 14.12514563441569 1 26536U 00055A 09106.31210695 -.00000188 00000-0 -76273-4 0 3672 2 26536 99.1771 108.4839 0011453 94.8233 265.4240 14.12514563441569 1 26536U 00055A 09106.66628112 -.00000258 00000-0 -11409-3 0 3685 2 26536 99.1772 108.8467 0011459 94.0175 266.2296 14.12514103441610 1 26536U 00055A 09107.51629913 -.00000303 00000-0 -13844-3 0 3686 2 26536 99.1774 109.7173 0011440 91.8068 268.4410 14.12513637441738 1 26536U 00055A 09107.94130835 -.00000193 00000-0 -79374-4 0 3692 2 26536 99.1775 110.1525 0011450 90.7117 269.5387 14.12513961441791 1 26536U 00055A 09108.36631696 -.00000213 00000-0 -90050-4 0 3697 2 26536 99.1774 110.5876 0011437 89.5780 270.6702 14.12513776441855 1 26536U 00055A 09108.72049116 -.00000200 00000-0 -83162-4 0 3701 2 26536 99.1774 110.9503 0011441 88.5596 271.6878 14.12513627441901 1 26536U 00055A 09109.49967347 -.00000049 00000-0 -10201-5 0 3707 2 26536 99.1773 111.7483 0011395 86.5277 273.7206 14.12514497442015 1 26536U 00055A 09109.49967347 -.00000049 00000-0 -10201-5 0 3718 2 26536 99.1773 111.7483 0011395 86.5277 273.7206 14.12514497442015 1 26536U 00055A 09109.92468210 .00000039 00000-0 46238-4 0 3727 2 26536 99.1770 112.1833 0011387 85.5052 274.7431 14.12514884442074 1 26536U 00055A 09110.42052531 .00000131 00000-0 95841-4 0 3726 2 26536 99.1770 112.6911 0011366 84.5327 275.7178 14.12515572442149 1 26536U 00055A 09110.84553299 .00000212 00000-0 13978-3 0 3730 2 26536 99.1771 113.1266 0011360 83.1743 277.0725 14.12516045442206 1 26536U 00055A 09111.34137587 .00000296 00000-0 18551-3 0 3738 2 26536 99.1773 113.6346 0011353 81.9404 278.3077 14.12516761442270 1 26536U 00055A 09111.69554880 .00000278 00000-0 17562-3 0 3747 2 26536 99.1771 113.9975 0011348 81.0991 279.1459 14.12516857442320 1 26536U 00055A 09112.47472999 .00000283 00000-0 17841-3 0 3740 2 26536 99.1771 114.7956 0011360 78.9691 281.2760 14.12517509442430 1 26536U 00055A 09112.47472999 .00000283 00000-0 17841-3 0 3751 2 26536 99.1771 114.7956 0011360 78.9691 281.2760 14.12517509442430 1 26536U 00055A 09112.97057234 .00000142 00000-0 10178-3 0 3768 2 26536 99.1768 115.3036 0011386 77.6403 282.5995 14.12516950442508 1 26536U 00055A 09113.39558122 .00000121 00000-0 90937-4 0 3766 2 26536 99.1769 115.7388 0011404 76.5932 283.6507 14.12517031442567 1 26536U 00055A 09113.82058919 -.00000021 00000-0 14002-4 0 3773 2 26536 99.1769 116.1742 0011383 75.7279 284.5115 14.12516240442620 1 26536U 00055A 09114.17476346 -.00000129 00000-0 -44284-4 0 3775 2 26536 99.1766 116.5370 0011403 74.6499 285.5920 14.12515841442679 1 26536U 00055A 09114.95394562 -.00000202 00000-0 -83792-4 0 3791 2 26536 99.1766 117.3348 0011441 72.5873 287.6527 14.12515286442789 1 26536U 00055A 09115.30811973 -.00000258 00000-0 -11444-3 0 3785 2 26536 99.1764 117.6976 0011434 71.5833 288.6575 14.12514936442835 1 26536U 00055A 09115.66229363 -.00000226 00000-0 -97125-4 0 3797 2 26536 99.1764 118.0602 0011450 70.7718 289.4696 14.12514939442888 1 26536U 00055A 09116.44147572 -.00000222 00000-0 -95046-4 0 3791 2 26536 99.1764 118.8581 0011422 68.9811 291.2592 14.12514815442995 1 26536U 00055A 09116.86648407 -.00000173 00000-0 -68142-4 0 3804 2 26536 99.1765 119.2934 0011428 67.8918 292.3459 14.12514759443054 1 26536U 00055A 09117.29149277 -.00000161 00000-0 -61802-4 0 3806 2 26536 99.1765 119.7287 0011408 66.7473 293.4914 14.12514818443113 1 26536U 00055A 09117.64566624 -.00000176 00000-0 -69907-4 0 3815 2 26536 99.1764 120.0914 0011404 65.7965 294.4391 14.12514623443164 1 26536U 00055A 09118.42484785 .00000007 00000-0 28764-4 0 3816 2 26536 99.1762 120.8892 0011340 64.0282 296.2081 14.12515646443272 1 26536U 00055A 09118.84985561 .00000127 00000-0 94131-4 0 3825 2 26536 99.1763 121.3246 0011375 62.4701 297.7629 14.12516184443337 1 26536U 00055A 09119.27486358 .00000243 00000-0 15640-3 0 3829 2 26536 99.1763 121.7600 0011312 61.5392 298.6959 14.12517023443397 1 26536U 00055A 09119.69987055 .00000235 00000-0 15214-3 0 3834 2 26536 99.1769 122.1958 0011324 60.5112 299.7179 14.12517125443452 1 26536U 00055A 09120.47905135 .00000237 00000-0 15355-3 0 3839 2 26536 99.1771 122.9941 0011253 58.7958 301.4320 14.12517611443564 1 26536U 00055A 09120.83322424 .00000173 00000-0 11907-3 0 3842 2 26536 99.1772 123.3569 0011258 57.9294 302.2943 14.12517347443617 1 26536U 00055A 09121.25823241 .00000191 00000-0 12849-3 0 3848 2 26536 99.1768 123.7920 0011258 56.5984 303.6274 14.12517718443678 1 26536U 00055A 09121.25823241 .00000191 00000-0 12849-3 0 3859 2 26536 99.1768 123.7920 0011258 56.5984 303.6274 14.12517718443678 1 26536U 00055A 09121.61240516 .00000114 00000-0 86876-4 0 3865 2 26536 99.1769 124.1548 0011248 55.5597 304.6624 14.12517506443729 1 26536U 00055A 09122.46242113 -.00000069 00000-0 -12312-4 0 3869 2 26536 99.1767 125.0253 0011230 53.3587 306.8605 14.12516785443840 1 26536U 00055A 09122.88742916 -.00000087 00000-0 -21622-4 0 3876 2 26536 99.1771 125.4606 0011208 52.3294 307.8877 14.12516530443907 1 26536U 00055A 09123.59577635 -.00000221 00000-0 -94168-4 0 3874 2 26536 99.1769 126.1856 0011222 50.4140 309.8009 14.12515754444002 1 26536U 00055A 09124.44579309 -.00000316 00000-0 -14582-3 0 3886 2 26536 99.1767 127.0559 0011199 48.1177 312.0951 14.12515079444122 1 26536U 00055A 09124.79996663 -.00000310 00000-0 -14256-3 0 3893 2 26536 99.1767 127.4184 0011201 47.1870 313.0227 14.12514762444173 1 26536U 00055A 09125.22497535 -.00000255 00000-0 -11243-3 0 3897 2 26536 99.1765 127.8537 0011185 45.9300 314.2814 14.12514934444235 1 26536U 00055A 09125.57914852 -.00000214 00000-0 -90560-4 0 3908 2 26536 99.1767 128.2164 0011176 45.3839 314.8258 14.12515067444280 1 26536U 00055A 09125.93332180 -.00000138 00000-0 -49138-4 0 3917 2 26536 99.1762 128.5788 0011161 44.0613 316.1457 14.12515299444339 1 26536U 00055A 09126.35832982 -.00000055 00000-0 -42254-5 0 3910 2 26536 99.1764 129.0144 0011095 43.1544 317.0525 14.12515710444392 1 26536U 00055A 09126.78333732 .00000061 00000-0 58321-4 0 3923 2 26536 99.1761 129.4493 0011138 42.2095 317.9946 14.12516280444455 1 26536U 00055A 09127.20834495 .00000198 00000-0 13245-3 0 3929 2 26536 99.1758 129.8847 0011014 41.0726 319.1324 14.12517174444513 1 26536U 00055A 09127.56251695 .00000263 00000-0 16767-3 0 3939 2 26536 99.1761 130.2477 0011032 40.3635 319.8365 14.12517699444562 1 26536U 00055A 09128.41253105 .00000396 00000-0 23946-3 0 3936 2 26536 99.1757 131.1182 0010961 38.1512 322.0448 14.12518979444682 1 26536U 00055A 09128.76670330 .00000283 00000-0 17854-3 0 3944 2 26536 99.1755 131.4810 0010927 37.3956 322.7933 14.12518481444736 1 26536U 00055A 09129.19171129 .00000305 00000-0 18997-3 0 3948 2 26536 99.1753 131.9163 0010965 36.0946 324.0969 14.12518934444790 1 26536U 00055A 09129.90005670 .00000140 00000-0 10116-3 0 3968 2 26536 99.1754 132.6416 0010884 34.2746 325.9109 14.12518404444897 1 26536U 00055A 09130.32506426 .00000045 00000-0 49865-4 0 3958 2 26536 99.1751 133.0769 0010929 33.0178 327.1658 14.12518158444952 1 26536U 00055A 09130.75007187 -.00000135 00000-0 -47852-4 0 3962 2 26536 99.1754 133.5121 0010886 31.9435 328.2350 14.12517137445012 1 26536U 00055A 09131.45841867 -.00000179 00000-0 -71726-4 0 3966 2 26536 99.1752 134.2375 0010888 29.8931 330.2865 14.12516989445117 1 26536U 00055A 09131.88342624 -.00000249 00000-0 -10930-3 0 3978 2 26536 99.1753 134.6727 0010858 28.7304 331.4438 14.12516367445177 1 26536U 00055A 09132.30843460 -.00000223 00000-0 -95270-4 0 3973 2 26536 99.1751 135.1081 0010892 27.3979 332.7779 14.12516453445230 1 26536U 00055A 09132.30843460 -.00000223 00000-0 -95270-4 0 3984 2 26536 99.1751 135.1081 0010892 27.3979 332.7779 14.12516453445230 1 26536U 00055A 09132.73344215 -.00000236 00000-0 -10241-3 0 3994 2 26536 99.1753 135.5434 0010847 26.2731 333.8983 14.12516139445298 1 26536U 00055A 09133.15845018 -.00000195 00000-0 -80267-4 0 3998 2 26536 99.1752 135.9788 0010822 25.0108 335.1607 14.12516292445356 1 26536U 00055A 09133.93763097 -.00000164 00000-0 -63452-4 0 4017 2 26536 99.1755 136.7767 0010745 22.9844 337.1815 14.12516115445461 1 26536U 00055A 09134.36263872 -.00000118 00000-0 -38809-4 0 4007 2 26536 99.1755 137.2119 0010710 21.8925 338.2723 14.12516349445524 1 26536U 00055A 09134.36263872 -.00000118 00000-0 -38809-4 0 4018 2 26536 99.1755 137.2119 0010710 21.8925 338.2723 14.12516349445524 1 26536U 00055A 09134.85848077 -.00000034 00000-0 67519-5 0 4026 2 26536 99.1758 137.7197 0010752 20.5001 339.6610 14.12516679445598 1 26536U 00055A 09135.42515752 .00000161 00000-0 11213-3 0 4029 2 26536 99.1757 138.3000 0010646 18.8243 341.3403 14.12518028445676 1 26536U 00055A 09135.85016317 .00000230 00000-0 14947-3 0 4034 2 26536 99.1760 138.7357 0010760 17.4738 342.6781 14.12518313445737 1 26536U 00055A 09136.34600526 .00000336 00000-0 20712-3 0 4034 2 26536 99.1760 139.2434 0010675 15.9708 344.1839 14.12519249445802 1 26536U 00055A 09136.77101133 .00000285 00000-0 17945-3 0 4049 2 26536 99.1763 139.6792 0010644 15.0173 345.1281 14.12519070445869 1 26536U 00055A 09137.19601888 .00000305 00000-0 19051-3 0 4041 2 26536 99.1763 140.1143 0010582 13.7192 346.4283 14.12519524445920 1 26536U 00055A 09137.62102534 .00000220 00000-0 14402-3 0 4055 2 26536 99.1761 140.5495 0010551 12.4872 347.6545 14.12519364445981 1 26536U 00055A 09138.47103982 .00000018 00000-0 35178-4 0 4056 2 26536 99.1764 141.4199 0010543 10.1385 349.9989 14.12518804446100 1 26536U 00055A 09138.89604704 .00000000 00000-0 25460-4 0 4065 2 26536 99.1767 141.8552 0010487 8.8638 351.2705 14.12518611446166 1 26536U 00055A 09139.39188890 -.00000036 00000-0 58708-5 0 4066 2 26536 99.1763 142.3629 0010455 7.5569 352.5759 14.12518547446236 1 26536U 00055A 09139.88773054 -.00000111 00000-0 -34598-4 0 4078 2 26536 99.1760 142.8707 0010443 6.1059 354.0208 14.12517997446303 1 26536U 00055A 09140.38357300 -.00000166 00000-0 -64335-4 0 4079 2 26536 99.1757 143.3783 0010451 4.7654 355.3612 14.12517758446378 1 26536U 00055A 09140.80858046 -.00000236 00000-0 -10243-3 0 4086 2 26536 99.1755 143.8134 0010339 3.7917 356.3310 14.12517157446433 1 26536U 00055A 09141.16275384 -.00000265 00000-0 -11806-3 0 4082 2 26536 99.1756 144.1762 0010319 2.8272 357.2959 14.12516953446484 1 26536U 00055A 09141.72943066 -.00000224 00000-0 -95673-4 0 4094 2 26536 99.1757 144.7563 0010300 1.3625 358.7581 14.12516921446567 1 26536U 00055A 09142.43777609 -.00000125 00000-0 -42272-4 0 4098 2 26536 99.1755 145.4815 0010241 359.2928 0.8244 14.12517370446669 1 26536U 00055A 09142.43777609 -.00000125 00000-0 -42272-4 0 4100 2 26536 99.1755 145.4815 0010241 359.2928 0.8244 14.12517370446669 1 26536U 00055A 09142.86278328 -.00000119 00000-0 -39301-4 0 4114 2 26536 99.1753 145.9168 0010335 358.2040 1.9073 14.12517198446728 1 26536U 00055A 09143.21695664 .00000036 00000-0 44963-4 0 4116 2 26536 99.1753 146.2796 0010274 356.8784 3.2377 14.12518111446773 1 26536U 00055A 09143.64196281 .00000124 00000-0 92521-4 0 4126 2 26536 99.1754 146.7148 0010325 355.8251 4.2844 14.12518633446831 1 26536U 00055A 09144.42114147 .00000313 00000-0 19437-3 0 4128 2 26536 99.1751 147.5126 0010354 353.6532 6.4522 14.12520073446943 1 26536U 00055A 09144.42114147 .00000313 00000-0 19437-3 0 4139 2 26536 99.1751 147.5126 0010354 353.6532 6.4522 14.12520073446943 1 26536U 00055A 09144.77531338 .00000337 00000-0 20734-3 0 4141 2 26536 99.1754 147.8756 0010414 352.7773 7.3224 14.12520223446993 1 26536U 00055A 09145.48365769 .00000286 00000-0 18009-3 0 4148 2 26536 99.1755 148.6013 0010388 350.4240 9.6722 14.12520639447094 1 26536U 00055A 09145.48365769 .00000286 00000-0 18009-3 0 4159 2 26536 99.1755 148.6013 0010388 350.4240 9.6722 14.12520639447094 1 26536U 00055A 09145.90866435 .00000285 00000-0 17967-3 0 4164 2 26536 99.1757 149.0365 0010388 349.2103 10.8829 14.12520765447154 1 26536U 00055A 09146.33367109 .00000191 00000-0 12849-3 0 4166 2 26536 99.1751 149.4718 0010366 348.0386 12.0519 14.12520559447218 1 26536U 00055A 09146.68784356 .00000037 00000-0 45190-4 0 4177 2 26536 99.1757 149.8349 0010357 346.9580 13.1287 14.12519827447266 1 26536U 00055A 09147.46702341 -.00000084 00000-0 -20334-4 0 4175 2 26536 99.1752 150.6329 0010348 344.7101 15.3757 14.12519511447372 1 26536U 00055A 09147.82119579 -.00000096 00000-0 -26554-4 0 4184 2 26536 99.1759 150.9956 0010335 343.7081 16.3739 14.12519231447426 1 26536U 00055A 09148.24620310 -.00000164 00000-0 -63552-4 0 4186 2 26536 99.1755 151.4308 0010345 342.6175 17.4628 14.12518891447488 1 26536U 00055A 09148.60037591 -.00000179 00000-0 -71401-4 0 4198 2 26536 99.1758 151.7938 0010241 341.6349 18.4457 14.12518757447538 1 26536U 00055A 09149.45039017 -.00000204 00000-0 -84924-4 0 4190 2 26536 99.1759 152.6644 0010150 339.1416 20.9355 14.12518514447658 1 26536U 00055A 09149.80456256 -.00000175 00000-0 -69099-4 0 4202 2 26536 99.1759 153.0270 0010109 338.1313 21.9416 14.12518384447707 1 26536U 00055A 09150.22956999 -.00000176 00000-0 -69943-4 0 4208 2 26536 99.1760 153.4623 0010098 336.8469 23.2253 14.12518311447769 1 26536U 00055A 09150.93791523 -.00000110 00000-0 -34405-4 0 4221 2 26536 99.1761 154.1879 0010052 334.7667 25.3028 14.12518521447865 1 26536U 00055A 09151.36292212 -.00000056 00000-0 -47798-5 0 4218 2 26536 99.1762 154.6232 0010019 333.5573 26.5101 14.12518784447923 1 26536U 00055A 09151.36292212 -.00000056 00000-0 -47798-5 0 4229 2 26536 99.1762 154.6232 0010019 333.5573 26.5101 14.12518784447923 1 26536U 00055A 09151.78792896 .00000017 00000-0 34348-4 0 4230 2 26536 99.1764 155.0584 0010038 332.3995 27.6643 14.12519011447989 1 26536U 00055A 09152.14210151 .00000111 00000-0 85343-4 0 4236 2 26536 99.1765 155.4211 0010058 331.2529 28.8118 14.12519644448033 1 26536U 00055A 09152.49627328 .00000159 00000-0 11106-3 0 4240 2 26536 99.1771 155.7842 0010028 330.3017 29.7604 14.12520101448087 1 26536U 00055A 09153.41712058 .00000322 00000-0 19943-3 0 4247 2 26536 99.1768 156.7270 0009973 327.6754 32.3831 14.12521371448210 1 26536U 00055A 09153.77129201 .00000300 00000-0 18738-3 0 4256 2 26536 99.1770 157.0898 0010016 326.8012 33.2505 14.12521323448261 1 26536U 00055A 09154.19629887 .00000307 00000-0 19161-3 0 4256 2 26536 99.1769 157.5251 0010065 325.5836 34.4685 14.12521668448322 1 26536U 00055A 09154.97547728 .00000173 00000-0 11871-3 0 4278 2 26536 99.1770 158.3233 0010030 323.4612 36.5858 14.12521435448433 1 26536U 00055A 09155.32964957 .00000159 00000-0 11140-3 0 4278 2 26536 99.1771 158.6861 0010015 322.2960 37.7508 14.12521518448482 1 26536U 00055A 09155.82549028 .00000047 00000-0 50829-4 0 4286 2 26536 99.1771 159.1936 0009941 320.6357 39.4061 14.12521007448553 1 26536U 00055A 09156.17966295 -.00000054 00000-0 -39432-5 0 4282 2 26536 99.1770 159.5565 0009958 319.9024 40.1392 14.12520619448604 1 26536U 00055A 09156.60466996 -.00000126 00000-0 -42877-4 0 4290 2 26536 99.1768 159.9915 0009950 318.6272 41.4130 14.12520206448669 1 26536U 00055A 09157.38384964 -.00000204 00000-0 -84752-4 0 4295 2 26536 99.1766 160.7894 0009917 316.4495 43.5890 14.12519710448775 1 26536U 00055A 09157.38384964 -.00000204 00000-0 -84752-4 0 4307 2 26536 99.1766 160.7894 0009917 316.4495 43.5890 14.12519710448775 1 26536U 00055A 09157.73802214 -.00000237 00000-0 -10289-3 0 4319 2 26536 99.1764 161.1519 0009921 315.4653 44.5703 14.12519310448828 1 26536U 00055A 09158.51720174 -.00000226 00000-0 -96808-4 0 4310 2 26536 99.1761 161.9499 0009848 312.7840 47.2514 14.12519300448937 1 26536U 00055A 09158.51720174 -.00000226 00000-0 -96808-4 0 4321 2 26536 99.1761 161.9499 0009848 312.7840 47.2514 14.12519300448937 1 26536U 00055A 09158.94220863 -.00000145 00000-0 -53118-4 0 4336 2 26536 99.1762 162.3851 0009806 311.3439 48.6902 14.12519512448995 1 26536U 00055A 09159.36721539 -.00000101 00000-0 -29248-4 0 4338 2 26536 99.1760 162.8201 0009780 310.1278 49.9050 14.12519711449053 1 26536U 00055A 09159.72138762 -.00000030 00000-0 90287-5 0 4341 2 26536 99.1757 163.1829 0009764 309.0572 50.9735 14.12519944449101 1 26536U 00055A 09160.50056597 .00000049 00000-0 51937-4 0 4341 2 26536 99.1753 163.9808 0009758 306.4855 53.5421 14.12520654449213 1 26536U 00055A 09160.85473813 .00000088 00000-0 73113-4 0 4357 2 26536 99.1752 164.3434 0009738 305.6133 54.4120 14.12520780449261 1 26536U 00055A 09161.27974502 .00000215 00000-0 14141-3 0 4352 2 26536 99.1751 164.7787 0009714 303.8549 56.1748 14.12521708449323 1 26536U 00055A 09161.70475042 .00000208 00000-0 13790-3 0 4367 2 26536 99.1751 165.2143 0009683 302.6354 57.3871 14.12521788449385 1 26536U 00055A 09162.41309403 .00000344 00000-0 21158-3 0 4361 2 26536 99.1750 165.9397 0009646 300.1977 59.8265 14.12523077449483 1 26536U 00055A 09162.41309403 .00000344 00000-0 21158-3 0 4372 2 26536 99.1750 165.9397 0009646 300.1977 59.8265 14.12523077449483 1 26536U 00055A 09162.83809950 .00000224 00000-0 14633-3 0 4388 2 26536 99.1749 166.3751 0009600 298.9795 61.0362 14.12522503449545 1 26536U 00055A 09163.26310672 .00000273 00000-0 17310-3 0 4383 2 26536 99.1749 166.8103 0009601 297.4473 62.5746 14.12523079449607 1 26536U 00055A 09163.75894659 .00000093 00000-0 75590-4 0 4395 2 26536 99.1753 167.3184 0009547 295.5513 64.4630 14.12522307449673 1 26536U 00055A 09164.46729124 -.00000045 00000-0 77468-6 0 4394 2 26536 99.1754 168.0438 0009562 293.2681 66.7481 14.12521949449773 1 26536U 00055A 09164.46729124 -.00000045 00000-0 77468-6 0 4406 2 26536 99.1754 168.0438 0009562 293.2681 66.7481 14.12521949449773 1 26536U 00055A 09164.82146333 -.00000090 00000-0 -23594-4 0 4412 2 26536 99.1756 168.4065 0009559 292.3905 67.6229 14.12521579449825 1 26536U 00055A 09165.67147724 -.00000193 00000-0 -78982-4 0 4416 2 26536 99.1758 169.2767 0009560 290.0486 69.9649 14.12520948449949 1 26536U 00055A 09166.37982189 -.00000229 00000-0 -98596-4 0 4420 2 26536 99.1758 170.0019 0009550 287.9294 72.0834 14.12520662450047 1 26536U 00055A 09166.80482881 -.00000205 00000-0 -85462-4 0 4435 2 26536 99.1760 170.4371 0009568 286.7806 73.2306 14.12520482450104 1 26536U 00055A 09167.51317358 -.00000209 00000-0 -87826-4 0 4430 2 26536 99.1761 171.1625 0009583 284.8571 75.1543 14.12520445450204 1 26536U 00055A 09168.43402132 -.00000014 00000-0 17541-4 0 4448 2 26536 99.1760 172.1051 0009590 282.2408 77.7718 14.12521426450332 1 26536U 00055A 09168.92986186 .00000045 00000-0 49736-4 0 4453 2 26536 99.1762 172.6132 0009629 281.4643 78.5435 14.12521602450403 1 26536U 00055A 09169.28403426 .00000139 00000-0 10072-3 0 4458 2 26536 99.1761 172.9757 0009644 280.3997 79.6118 14.12522261450452 1 26536U 00055A 09170.41738325 .00000340 00000-0 20909-3 0 4469 2 26536 99.1761 174.1367 0009637 276.7350 83.2747 14.12523885450617 1 26536U 00055A 09170.41738325 .00000340 00000-0 20909-3 0 4470 2 26536 99.1761 174.1367 0009637 276.7350 83.2747 14.12523885450617 1 26536U 00055A 09170.41738325 .00000340 00000-0 20909-3 0 4481 2 26536 99.1761 174.1367 0009637 276.7350 83.2747 14.12523885450617 1 26536U 00055A 09170.77155441 .00000293 00000-0 18405-3 0 4498 2 26536 99.1762 174.4994 0009624 275.7098 84.2948 14.12523735450664 1 26536U 00055A 09171.55073252 .00000221 00000-0 14499-3 0 4494 2 26536 99.1765 175.2981 0009589 273.4528 86.5532 14.12523871450772 1 26536U 00055A 09171.55073252 .00000221 00000-0 14499-3 0 4506 2 26536 99.1765 175.2981 0009589 273.4528 86.5532 14.12523871450772 1 26536U 00055A 09172.75491727 -.00000025 00000-0 11926-4 0 4517 2 26536 99.1759 176.5311 0009542 269.2024 90.8027 14.12522899450944 1 26536U 00055A 09172.75491727 -.00000025 00000-0 11926-4 0 4528 2 26536 99.1759 176.5311 0009542 269.2024 90.8027 14.12522899450944 1 26536U 00055A 09172.75491727 -.00000025 00000-0 11926-4 0 4539 2 26536 99.1759 176.5311 0009542 269.2024 90.8027 14.12522899450944 1 26536U 00055A 09173.17992413 -.00000077 00000-0 -16454-4 0 4544 2 26536 99.1755 176.9664 0009549 267.9242 92.0835 14.12522743451006 1 26536U 00055A 09173.95910257 -.00000156 00000-0 -58839-4 0 4569 2 26536 99.1753 177.7645 0009535 265.2683 94.7390 14.12522286451116 1 26536U 00055A 09174.38410932 -.00000196 00000-0 -80460-4 0 4550 2 26536 99.1753 178.1997 0009524 263.8091 96.1993 14.12522022451175 1 26536U 00055A 09174.73828160 -.00000212 00000-0 -89151-4 0 4561 2 26536 99.1754 178.5624 0009515 262.6074 97.4004 14.12521712451223 1 26536U 00055A 09175.16328861 -.00000197 00000-0 -81435-4 0 4561 2 26536 99.1751 178.9977 0009514 261.5554 98.4546 14.12521702451282 1 26536U 00055A 09175.51746078 -.00000240 00000-0 -10443-3 0 4574 2 26536 99.1751 179.3604 0009521 260.3387 99.6709 14.12521443451335 1 26536U 00055A 09176.36747407 -.00000119 00000-0 -38863-4 0 4577 2 26536 99.1747 180.2307 0009534 257.4384 102.5742 14.12521910451452 1 26536U 00055A 09176.36747407 -.00000119 00000-0 -38863-4 0 4588 2 26536 99.1747 180.2307 0009534 257.4384 102.5742 14.12521910451452 1 26536U 00055A 09176.79248040 -.00000038 00000-0 49829-5 0 4599 2 26536 99.1746 180.6661 0009530 256.0399 103.9722 14.12522175451519 1 26536U 00055A 09177.21748687 .00000121 00000-0 90745-4 0 4593 2 26536 99.1744 181.1014 0009588 254.5815 105.4348 14.12523114451575 1 26536U 00055A 09177.64249223 .00000162 00000-0 11311-3 0 4600 2 26536 99.1750 181.5372 0009533 253.0984 106.9144 14.12523405451634 1 26536U 00055A 09178.42166961 .00000350 00000-0 21478-3 0 4608 2 26536 99.1748 182.3350 0009577 250.5302 109.4863 14.12524929451740 1 26536U 00055A 09178.42166961 .00000350 00000-0 21478-3 0 4619 2 26536 99.1748 182.3350 0009577 250.5302 109.4863 14.12524929451740 1 26536U 00055A 09178.84667488 .00000281 00000-0 17754-3 0 4621 2 26536 99.1750 182.7708 0009579 249.2908 110.7200 14.12524660451802 1 26536U 00055A 09179.69668687 .00000167 00000-0 11560-3 0 4629 2 26536 99.1754 183.6418 0009593 246.3031 113.7093 14.12524587451929 1 26536U 00055A 09180.47586525 .00000089 00000-0 73350-4 0 4637 2 26536 99.1757 184.4398 0009600 243.9301 116.0883 14.12524661452039 1 26536U 00055A 09180.90087120 .00000032 00000-0 42462-4 0 4641 2 26536 99.1758 184.8750 0009647 242.3647 117.6526 14.12524323452095 1 26536U 00055A 09181.25504333 -.00000027 00000-0 10768-4 0 4649 2 26536 99.1759 185.2377 0009612 241.6133 118.4063 14.12524187452149 1 26536U 00055A 09181.68004960 -.00000149 00000-0 -55484-4 0 4658 2 26536 99.1761 185.6730 0009629 240.3422 119.6755 14.12523404452203 1 26536U 00055A 09182.45922863 -.00000224 00000-0 -95985-4 0 4659 2 26536 99.1761 186.4707 0009658 237.9612 122.0624 14.12523055452318 1 26536U 00055A 09182.81340068 -.00000204 00000-0 -84922-4 0 4668 2 26536 99.1760 186.8334 0009647 236.7347 123.2884 14.12522834452367 1 26536U 00055A 09183.23840760 -.00000221 00000-0 -94233-4 0 4664 2 26536 99.1760 187.2687 0009677 235.4732 124.5541 14.12522760452429 1 26536U 00055A 09183.66341395 -.00000255 00000-0 -11279-3 0 4677 2 26536 99.1759 187.7036 0009698 233.9345 126.0918 14.12522361452484 1 26536U 00055A 09184.44259245 -.00000166 00000-0 -64460-4 0 4678 2 26536 99.1758 188.5013 0009751 231.4623 128.5686 14.12522782452597 1 26536U 00055A 09184.44259245 -.00000166 00000-0 -64460-4 0 4689 2 26536 99.1758 188.5013 0009751 231.4623 128.5686 14.12522782452597 1 26536U 00055A 09184.79676445 -.00000066 00000-0 -10594-4 0 4691 2 26536 99.1758 188.8641 0009724 230.8838 129.1466 14.12523019452641 1 26536U 00055A 09185.64677658 .00000079 00000-0 67950-4 0 4693 2 26536 99.1756 189.7345 0009807 228.3668 131.6671 14.12523955452763 1 26536U 00055A 09185.64677658 .00000079 00000-0 67950-4 0 4705 2 26536 99.1756 189.7345 0009807 228.3668 131.6671 14.12523955452763 1 26536U 00055A 09186.42595361 .00000253 00000-0 16228-3 0 4718 2 26536 99.1751 190.5321 0009866 226.1778 133.8594 14.12525335452879 1 26536U 00055A 09186.78012487 .00000291 00000-0 18272-3 0 4724 2 26536 99.1752 190.8950 0009806 225.3388 134.6963 14.12525507452929 1 26536U 00055A 09187.48846750 .00000301 00000-0 18810-3 0 4720 2 26536 99.1751 191.6209 0009910 223.3491 136.6895 14.12526217453020 1 26536U 00055A 09187.91347325 .00000288 00000-0 18123-3 0 4734 2 26536 99.1752 192.0561 0009944 222.0629 137.9764 14.12526278453085 1 26536U 00055A 09188.26764491 .00000263 00000-0 16767-3 0 4735 2 26536 99.1751 192.4190 0009935 221.0482 138.9943 14.12526452453132 1 26536U 00055A 09188.76348473 .00000110 00000-0 84586-4 0 4745 2 26536 99.1754 192.9270 0009967 219.5662 140.4740 14.12525773453202 1 26536U 00055A 09189.11765707 .00000055 00000-0 55165-4 0 4747 2 26536 99.1753 193.2898 0009962 218.5645 141.4814 14.12525720453256 1 26536U 00055A 09189.89683462 -.00000094 00000-0 -25490-4 0 4764 2 26536 99.1752 194.0876 0010028 216.0607 143.9862 14.12524965453368 1 26536U 00055A 09190.32184123 -.00000129 00000-0 -44310-4 0 4754 2 26536 99.1750 194.5230 0010005 214.8247 145.2269 14.12524837453427 1 26536U 00055A 09190.32184123 -.00000129 00000-0 -44310-4 0 4765 2 26536 99.1750 194.5230 0010005 214.8247 145.2269 14.12524837453427 1 26536U 00055A 09191.10101921 -.00000215 00000-0 -91211-4 0 4776 2 26536 99.1753 195.3213 0010046 212.3170 147.7368 14.12524212453539 1 26536U 00055A 09191.88019787 -.00000221 00000-0 -94139-4 0 4790 2 26536 99.1756 196.1191 0010077 209.8472 150.2115 14.12523813453643 1 26536U 00055A 09192.30520456 -.00000204 00000-0 -85160-4 0 4782 2 26536 99.1756 196.5545 0010108 208.4523 151.6119 14.12523909453709 1 26536U 00055A 09192.65937618 -.00000197 00000-0 -81204-4 0 4799 2 26536 99.1755 196.9172 0010123 207.2860 152.7774 14.12523740453753 1 26536U 00055A 09192.65937618 -.00000197 00000-0 -81204-4 0 4801 2 26536 99.1755 196.9172 0010123 207.2860 152.7774 14.12523740453753 1 26536U 00055A 09193.43855387 -.00000059 00000-0 -66555-5 0 4811 2 26536 99.1754 197.7150 0010182 205.1008 154.9681 14.12524565453862 1 26536U 00055A 09193.86355988 .00000033 00000-0 43044-4 0 4828 2 26536 99.1756 198.1505 0010129 204.1593 155.9095 14.12524793453922 1 26536U 00055A 09194.35940062 .00000123 00000-0 92002-4 0 4824 2 26536 99.1757 198.6584 0010199 202.7471 157.3297 14.12525554453994 1 26536U 00055A 09194.78440562 .00000186 00000-0 12578-3 0 4830 2 26536 99.1761 199.0939 0010175 201.4977 158.5763 14.12525858454055 1 26536U 00055A 09195.20941157 .00000316 00000-0 19597-3 0 4837 2 26536 99.1760 199.5291 0010229 200.5161 159.5645 14.12526843454117 1 26536U 00055A 09195.91775352 .00000320 00000-0 19852-3 0 4858 2 26536 99.1761 200.2548 0010270 198.4143 161.6665 14.12527236454218 1 26536U 00055A 09196.34275882 .00000346 00000-0 21236-3 0 4845 2 26536 99.1761 200.6900 0010262 197.1290 162.9546 14.12527743454275 1 26536U 00055A 09196.76776390 .00000165 00000-0 11468-3 0 4857 2 26536 99.1762 201.1257 0010326 196.0793 164.0003 14.12526895454339 1 26536U 00055A 09197.54694152 .00000059 00000-0 57137-4 0 4855 2 26536 99.1762 201.9237 0010305 194.1578 165.9292 14.12526797454445 1 26536U 00055A 09197.90111313 .00000000 00000-0 25440-4 0 4867 2 26536 99.1764 202.2863 0010381 192.9313 167.1574 14.12526440454490 1 26536U 00055A 09198.39695352 -.00000084 00000-0 -20026-4 0 4860 2 26536 99.1765 202.7942 0010342 191.4446 168.6484 14.12526191454569 1 26536U 00055A 09198.82195948 -.00000157 00000-0 -59593-4 0 4877 2 26536 99.1765 203.2295 0010403 190.1394 169.9540 14.12525574454620 1 26536U 00055A 09199.60113771 -.00000226 00000-0 -96749-4 0 4879 2 26536 99.1762 204.0273 0010421 187.9395 172.1608 14.12525123454730 1 26536U 00055A 09200.45115025 -.00000243 00000-0 -10605-3 0 4885 2 26536 99.1759 204.8978 0010511 185.3932 174.7140 14.12524815454854 1 26536U 00055A 09200.87615627 -.00000214 00000-0 -90219-4 0 4893 2 26536 99.1758 205.3330 0010510 184.1884 175.9189 14.12524621454911 1 26536U 00055A 09201.44283162 -.00000131 00000-0 -45536-4 0 4892 2 26536 99.1756 205.9134 0010596 182.6198 177.4972 14.12525134454997 1 26536U 00055A 09201.79700239 -.00000022 00000-0 13415-4 0 4900 2 26536 99.1758 206.2762 0010547 181.5628 178.5509 14.12525444455041 1 26536U 00055A 09202.22200849 .00000053 00000-0 53899-4 0 4904 2 26536 99.1754 206.7116 0010614 180.6182 179.5014 14.12525973455101 1 26536U 00055A 09202.71784797 .00000143 00000-0 10269-3 0 4911 2 26536 99.1758 207.2195 0010599 178.9357 181.1842 14.12526432455170 1 26536U 00055A 09203.14285364 .00000301 00000-0 18789-3 0 4916 2 26536 99.1754 207.6549 0010663 178.0242 182.1028 14.12527556455231 1 26536U 00055A 09203.92202890 .00000356 00000-0 21793-3 0 4936 2 26536 99.1753 208.4530 0010643 175.6952 184.4302 14.12528271455345 1 26536U 00055A 09204.41786845 .00000364 00000-0 22209-3 0 4929 2 26536 99.1751 208.9610 0010700 174.3445 185.7869 14.12528836455411 1 26536U 00055A 09204.84287305 .00000260 00000-0 16585-3 0 4939 2 26536 99.1754 209.3967 0010674 173.3309 186.7959 14.12528353455473 1 26536U 00055A 09205.19704493 .00000237 00000-0 15332-3 0 4933 2 26536 99.1750 209.7597 0010656 172.2780 187.8561 14.12528560455520 1 26536U 00055A 09205.90538717 .00000094 00000-0 76247-4 0 4952 2 26536 99.1755 210.4855 0010726 170.4593 189.6773 14.12528011455628 1 26536U 00055A 09206.40122685 .00000009 00000-0 30245-4 0 4944 2 26536 99.1753 210.9933 0010693 168.9334 191.2064 14.12527850455695 1 26536U 00055A 09206.40122685 .00000009 00000-0 30245-4 0 4955 2 26536 99.1753 210.9933 0010693 168.9334 191.2064 14.12527850455695 1 26536U 00055A 09206.82623237 -.00000153 00000-0 -57507-4 0 4963 2 26536 99.1755 211.4288 0010769 167.7301 192.4085 14.12526814455753 1 26536U 00055A 09207.60541019 -.00000182 00000-0 -73093-4 0 4967 2 26536 99.1757 212.2268 0010787 165.5172 194.6304 14.12526553455864 1 26536U 00055A 09207.60541019 -.00000182 00000-0 -73093-4 0 4978 2 26536 99.1757 212.2268 0010787 165.5172 194.6304 14.12526553455864 1 26536U 00055A 09208.52625612 -.00000283 00000-0 -12785-3 0 4985 2 26536 99.1757 213.1700 0010851 163.2505 196.9024 14.12525849455997 1 26536U 00055A 09208.88042779 -.00000271 00000-0 -12155-3 0 4990 2 26536 99.1760 213.5326 0010923 162.2390 197.9157 14.12525596456044 1 26536U 00055A 09209.30543397 -.00000228 00000-0 -97800-4 0 4993 2 26536 99.1759 213.9679 0010956 161.1697 198.9910 14.12525793456105 1 26536U 00055A 09209.87210802 -.00000153 00000-0 -57319-4 0 5008 2 26536 99.1763 214.5484 0010965 159.4634 200.6984 14.12525863456180 1 26536U 00055A 09210.22627954 -.00000060 00000-0 -69377-5 0 5004 2 26536 99.1760 214.9111 0010999 158.7869 201.3803 14.12526437456239 1 26536U 00055A 09210.65128444 -.00000021 00000-0 13958-4 0 5011 2 26536 99.1763 215.3465 0011014 157.5075 202.6582 14.12526559456293 1 26536U 00055A 09211.00545583 .00000131 00000-0 96218-4 0 5019 2 26536 99.1762 215.7092 0010983 156.6213 203.5499 14.12527463456348 1 26536U 00055A 09211.57212889 .00000166 00000-0 11508-3 0 5028 2 26536 99.1765 216.2900 0011051 155.1044 205.0674 14.12527831456428 1 26536U 00055A 09212.42213860 .00000321 00000-0 19873-3 0 5029 2 26536 99.1768 217.1608 0011054 152.8237 207.3533 14.12529144456548 1 26536U 00055A 09212.42213860 .00000321 00000-0 19873-3 0 5030 2 26536 99.1768 217.1608 0011054 152.8237 207.3533 14.12529144456548 1 26536U 00055A 09212.77630894 .00000287 00000-0 18031-3 0 5045 2 26536 99.1767 217.5238 0011032 151.8831 208.2910 14.12528989456595 1 26536U 00055A 09213.55548506 .00000212 00000-0 14010-3 0 5041 2 26536 99.1768 218.3221 0010974 149.6436 210.5364 14.12529203456709 1 26536U 00055A 09213.90965592 .00000185 00000-0 12548-3 0 5052 2 26536 99.1772 218.6847 0011007 148.5875 211.5937 14.12529106456758 1 26536U 00055A 09214.47632942 .00000051 00000-0 52791-4 0 5052 2 26536 99.1768 219.2651 0011009 147.0447 213.1399 14.12528807456830 1 26536U 00055A 09214.83050047 -.00000022 00000-0 13106-4 0 5069 2 26536 99.1769 219.6279 0011095 146.1129 214.0718 14.12528258456883 1 26536U 00055A 09215.39717466 -.00000125 00000-0 -42451-4 0 5066 2 26536 99.1771 220.2085 0011105 144.4311 215.7594 14.12527875456968 1 26536U 00055A 09215.82218009 -.00000232 00000-0 -10030-3 0 5070 2 26536 99.1772 220.6439 0011139 143.4072 216.7827 14.12527063457023 1 26536U 00055A 09216.24718626 -.00000274 00000-0 -12316-3 0 5072 2 26536 99.1769 221.0792 0011131 142.2106 217.9857 14.12526869457088 1 26536U 00055A 09216.67219165 -.00000325 00000-0 -15035-3 0 5082 2 26536 99.1769 221.5144 0011168 141.1092 219.0869 14.12526323457144 1 26536U 00055A 09217.45136821 -.00000247 00000-0 -10836-3 0 5083 2 26536 99.1767 222.3125 0011202 139.2009 221.0010 14.12526616457253 1 26536U 00055A 09217.87637370 -.00000178 00000-0 -71285-4 0 5094 2 26536 99.1767 222.7477 0011192 137.7982 222.4040 14.12526594457318 1 26536U 00055A 09218.23054527 -.00000099 00000-0 -28537-4 0 5096 2 26536 99.1765 223.1106 0011229 137.2465 222.9620 14.12527030457362 1 26536U 00055A 09219.43472514 .00000143 00000-0 10253-3 0 5104 2 26536 99.1764 224.3441 0011279 134.2836 225.9283 14.12528542457536 1 26536U 00055A 09219.78889554 .00000179 00000-0 12184-3 0 5113 2 26536 99.1766 224.7073 0011257 133.3683 226.8413 14.12528621457587 1 26536U 00055A 09220.56807053 .00000264 00000-0 16790-3 0 5117 2 26536 99.1767 225.5058 0011240 131.3168 228.8968 14.12529602457697 1 26536U 00055A 09220.92224114 .00000325 00000-0 20088-3 0 5122 2 26536 99.1769 225.8685 0011225 130.2614 229.9541 14.12530038457745 1 26536U 00055A 09221.34724557 .00000315 00000-0 19551-3 0 5127 2 26536 99.1767 226.3040 0011234 129.3535 230.8644 14.12530372457808 1 26536U 00055A 09221.70141566 .00000237 00000-0 15341-3 0 5137 2 26536 99.1772 226.6669 0011196 128.1360 232.0785 14.12530019457857 1 26536U 00055A 09222.48059145 .00000068 00000-0 61971-4 0 5137 2 26536 99.1775 227.4651 0011219 126.3899 233.8310 14.12529690457961 1 26536U 00055A 09222.48059145 .00000068 00000-0 61971-4 0 5148 2 26536 99.1775 227.4651 0011219 126.3899 233.8310 14.12529690457961 1 26536U 00055A 09222.83476189 .00000016 00000-0 33968-4 0 5157 2 26536 99.1779 227.8280 0011275 125.6080 234.6115 14.12529268458013 1 26536U 00055A 09223.25976714 -.00000074 00000-0 -14718-4 0 5151 2 26536 99.1779 228.2635 0011270 124.1298 236.0930 14.12528945458070 1 26536U 00055A 09223.61393808 -.00000159 00000-0 -60622-4 0 5168 2 26536 99.1782 228.6266 0011317 123.4473 236.7769 14.12528464458126 1 26536U 00055A 09224.39311432 -.00000226 00000-0 -96873-4 0 5169 2 26536 99.1784 229.4245 0011351 121.1623 239.0668 14.12528037458236 1 26536U 00055A 09224.39311432 -.00000226 00000-0 -96873-4 0 5170 2 26536 99.1784 229.4245 0011351 121.1623 239.0668 14.12528037458236 1 26536U 00055A 09224.74728509 -.00000273 00000-0 -12236-3 0 5189 2 26536 99.1785 229.7873 0011383 120.3052 239.9226 14.12527515458283 1 26536U 00055A 09225.52646149 -.00000318 00000-0 -14688-3 0 5188 2 26536 99.1786 230.5852 0011412 118.3490 241.8829 14.12527055458399 1 26536U 00055A 09225.88063270 -.00000243 00000-0 -10643-3 0 5190 2 26536 99.1787 230.9478 0011423 117.3026 242.9318 14.12527198458443 1 26536U 00055A 09226.23480360 -.00000191 00000-0 -77904-4 0 5199 2 26536 99.1788 231.3107 0011424 116.4479 243.7896 14.12527489458499 1 26536U 00055A 09226.65980817 -.00000162 00000-0 -62238-4 0 5201 2 26536 99.1788 231.7462 0011458 115.3753 244.8605 14.12527447458558 1 26536U 00055A 09227.43898332 -.00000020 00000-0 14450-4 0 5203 2 26536 99.1784 232.5439 0011438 113.3665 246.8719 14.12528280458661 1 26536U 00055A 09227.43898332 -.00000020 00000-0 14450-4 0 5214 2 26536 99.1784 232.5439 0011438 113.3665 246.8719 14.12528280458661 1 26536U 00055A 09227.79315388 .00000100 00000-0 79145-4 0 5229 2 26536 99.1789 232.9069 0011411 112.0768 248.1619 14.12528767458710 1 26536U 00055A 09228.57232811 .00000234 00000-0 15193-3 0 5225 2 26536 99.1789 233.7048 0011394 110.1672 250.0736 14.12529931458827 1 26536U 00055A 09228.92649817 .00000315 00000-0 19541-3 0 5234 2 26536 99.1792 234.0678 0011350 109.1395 251.1014 14.12530459458879 1 26536U 00055A 09229.42233617 .00000290 00000-0 18194-3 0 5232 2 26536 99.1788 234.5756 0011363 108.1981 252.0435 14.12530730458947 1 26536U 00055A 09229.70567209 .00000253 00000-0 16186-3 0 5249 2 26536 99.1792 234.8663 0011280 107.0666 253.1723 14.12530594458982 1 26536U 00055A 09230.48484685 .00000142 00000-0 10181-3 0 5248 2 26536 99.1792 235.6649 0011333 105.7038 254.5384 14.12530469459094 1 26536U 00055A 09230.48484685 .00000142 00000-0 10181-3 0 5259 2 26536 99.1792 235.6649 0011333 105.7038 254.5384 14.12530469459094 1 26536U 00055A 09230.90985097 .00000065 00000-0 60210-4 0 5263 2 26536 99.1790 236.1003 0011358 104.8386 255.4022 14.12530098459159 1 26536U 00055A 09231.33485567 -.00000019 00000-0 15125-4 0 5263 2 26536 99.1788 236.5358 0011367 103.6186 256.6247 14.12529881459215 1 26536U 00055A 09231.75986009 -.00000157 00000-0 -59764-4 0 5278 2 26536 99.1787 236.9711 0011391 102.6556 257.5853 14.12529069459275 1 26536U 00055A 09232.11403128 -.00000132 00000-0 -45979-4 0 5271 2 26536 99.1782 237.3340 0011387 101.4748 258.7714 14.12529238459321 1 26536U 00055A 09232.89320594 -.00000172 00000-0 -67519-4 0 5291 2 26536 99.1782 238.1321 0011446 99.6387 260.6060 14.12528805459439 1 26536U 00055A 09233.31821091 -.00000160 00000-0 -61187-4 0 5288 2 26536 99.1783 238.5677 0011457 98.5527 261.6955 14.12528843459496 1 26536U 00055A 09233.74321527 -.00000259 00000-0 -11504-3 0 5291 2 26536 99.1781 239.0028 0011479 97.7040 262.5413 14.12528155459557 1 26536U 00055A 09234.45155655 -.00000188 00000-0 -76511-4 0 5298 2 26536 99.1780 239.7285 0011498 95.9600 264.2897 14.12528491459650 1 26536U 00055A 09234.45155655 -.00000188 00000-0 -76511-4 0 5300 2 26536 99.1780 239.7285 0011498 95.9600 264.2897 14.12528491459650 1 26536U 00055A 09234.87656093 -.00000084 00000-0 -20452-4 0 5317 2 26536 99.1779 240.1638 0011512 94.5870 265.6614 14.12528722459713 1 26536U 00055A 09235.65573541 -.00000024 00000-0 12182-4 0 5314 2 26536 99.1781 240.9621 0011531 92.7689 267.4796 14.12529052459825 1 26536U 00055A 09236.43490945 .00000106 00000-0 82340-4 0 5321 2 26536 99.1778 241.7601 0011517 90.7826 269.4675 14.12530032459933 1 26536U 00055A 09236.85991339 .00000215 00000-0 14131-3 0 5334 2 26536 99.1782 242.1958 0011529 89.4909 270.7584 14.12530543459995 1 26536U 00055A 09237.21408334 .00000278 00000-0 17551-3 0 5331 2 26536 99.1782 242.5586 0011514 88.6417 271.6099 14.12531160460040 1 26536U 00055A 09237.70992052 .00000217 00000-0 14265-3 0 5343 2 26536 99.1786 243.0671 0011529 87.2251 273.0210 14.12530985460115 1 26536U 00055A 09238.48909435 .00000159 00000-0 11146-3 0 5342 2 26536 99.1786 243.8654 0011475 85.2001 275.0480 14.12531282460229 1 26536U 00055A 09238.48909435 .00000159 00000-0 11146-3 0 5353 2 26536 99.1786 243.8654 0011475 85.2001 275.0480 14.12531282460229 1 26536U 00055A 09238.84326410 .00000147 00000-0 10493-3 0 5361 2 26536 99.1788 244.2283 0011512 84.5033 275.7427 14.12531138460276 1 26536U 00055A 09239.26826831 .00000103 00000-0 80819-4 0 5362 2 26536 99.1787 244.6635 0011498 83.2986 276.9495 14.12531180460338 1 26536U 00055A 09239.62243805 -.00000021 00000-0 13767-4 0 5375 2 26536 99.1791 245.0266 0011486 82.6024 277.6428 14.12530560460381 1 26536U 00055A 09240.47244639 -.00000122 00000-0 -40752-4 0 5373 2 26536 99.1791 245.8973 0011457 80.5598 279.6869 14.12530183460501 1 26536U 00055A 09240.47244639 -.00000122 00000-0 -40752-4 0 5384 2 26536 99.1791 245.8973 0011457 80.5598 279.6869 14.12530183460501 1 26536U 00055A 09240.89745039 -.00000128 00000-0 -43984-4 0 5397 2 26536 99.1792 246.3326 0011451 79.5855 280.6591 14.12529907460560 1 26536U 00055A 09241.32245479 -.00000166 00000-0 -64727-4 0 5399 2 26536 99.1791 246.7679 0011463 78.3816 281.8640 14.12529741460622 1 26536U 00055A 09241.74745894 -.00000243 00000-0 -10613-3 0 5403 2 26536 99.1797 247.2034 0011469 77.3312 282.9113 14.12529072460685 1 26536U 00055A 09242.45579960 -.00000224 00000-0 -95865-4 0 5403 2 26536 99.1795 247.9289 0011449 75.6661 284.5790 14.12529140460784 1 26536U 00055A 09242.45579960 -.00000224 00000-0 -95865-4 0 5414 2 26536 99.1795 247.9289 0011449 75.6661 284.5790 14.12529140460784 1 26536U 00055A 09242.88080373 -.00000211 00000-0 -88959-4 0 5429 2 26536 99.1795 248.3641 0011444 74.6217 285.6203 14.12528854460841 1 26536U 00055A 09243.23497433 -.00000160 00000-0 -61036-4 0 5428 2 26536 99.1793 248.7271 0011422 73.8000 286.4457 14.12529154460898 1 26536U 00055A 09243.73081208 -.00000087 00000-0 -21994-4 0 5430 2 26536 99.1796 249.2352 0011445 72.2597 287.9830 14.12529363460967 1 26536U 00055A 09244.43915116 .00000086 00000-0 71925-4 0 5438 2 26536 99.1795 249.9607 0011407 70.3920 289.8498 14.12530531461065 1 26536U 00055A 09244.93498859 .00000170 00000-0 11709-3 0 5441 2 26536 99.1795 250.4688 0011376 68.7908 291.4470 14.12530851461135 1 26536U 00055A 09245.35999241 .00000240 00000-0 15487-3 0 5444 2 26536 99.1797 250.9043 0011378 67.6108 292.6294 14.12531505461199 1 26536U 00055A 09245.35999241 .00000240 00000-0 15487-3 0 5455 2 26536 99.1797 250.9043 0011378 67.6108 292.6294 14.12531505461199 1 26536U 00055A 09245.78499536 .00000271 00000-0 17202-3 0 5466 2 26536 99.1798 251.3397 0011390 66.5077 293.7282 14.12531780461255 1 26536U 00055A 09246.20999888 .00000295 00000-0 18487-3 0 5461 2 26536 99.1797 251.7753 0011362 65.4047 294.8324 14.12532251461318 1 26536U 00055A 09246.91833752 .00000213 00000-0 14024-3 0 5481 2 26536 99.1798 252.5010 0011314 63.6524 296.5800 14.12532131461417 1 26536U 00055A 09247.41417479 .00000204 00000-0 13554-3 0 5477 2 26536 99.1796 253.0090 0011283 62.4147 297.8186 14.12532504461484 1 26536U 00055A 09247.83917756 .00000081 00000-0 69237-4 0 5480 2 26536 99.1800 253.4448 0011258 61.3542 298.8717 14.12531822461540 1 26536U 00055A 09248.61835128 -.00000045 00000-0 10672-5 0 5480 2 26536 99.1800 254.2432 0011249 59.2426 300.9842 14.12531419461657 1 26536U 00055A 09249.39752488 -.00000160 00000-0 -61351-4 0 5492 2 26536 99.1800 255.0414 0011227 57.4331 302.7926 14.12530835461763 1 26536U 00055A 09249.75169452 -.00000202 00000-0 -84148-4 0 5503 2 26536 99.1800 255.4042 0011222 56.5425 303.6790 14.12530319461815 1 26536U 00055A 09250.46003439 -.00000226 00000-0 -97116-4 0 5500 2 26536 99.1796 256.1298 0011160 54.7233 305.4988 14.12530212461910 1 26536U 00055A 09250.46003439 -.00000226 00000-0 -97116-4 0 5511 2 26536 99.1796 256.1298 0011160 54.7233 305.4988 14.12530212461910 1 26536U 00055A 09250.88503805 -.00000259 00000-0 -11480-3 0 5525 2 26536 99.1797 256.5652 0011149 53.5890 306.6287 14.12529710461974 1 26536U 00055A 09251.31004242 -.00000195 00000-0 -80440-4 0 5527 2 26536 99.1795 257.0006 0011114 52.5743 307.6470 14.12530025462033 1 26536U 00055A 09251.73504564 -.00000131 00000-0 -45613-4 0 5539 2 26536 99.1794 257.4360 0011111 51.3133 308.9030 14.12530088462097 1 26536U 00055A 09252.16004946 -.00000063 00000-0 -90377-5 0 5538 2 26536 99.1793 257.8713 0011097 50.0387 310.1785 14.12530493462151 1 26536U 00055A 09252.93922200 .00000088 00000-0 72666-4 0 5552 2 26536 99.1796 258.6696 0011123 47.7454 312.4672 14.12531265462261 1 26536U 00055A 09253.36422515 .00000202 00000-0 13446-3 0 5541 2 26536 99.1797 259.1050 0011086 46.6685 313.5447 14.12532082462321 1 26536U 00055A 09253.36422515 .00000202 00000-0 13446-3 0 5552 2 26536 99.1797 259.1050 0011086 46.6685 313.5447 14.12532082462321 1 26536U 00055A 09253.86006137 .00000255 00000-0 16319-3 0 5566 2 26536 99.1798 259.6131 0011122 45.0930 315.1133 14.12532461462392 1 26536U 00055A 09254.28506455 .00000335 00000-0 20666-3 0 5560 2 26536 99.1796 260.0484 0011084 43.9162 316.2919 14.12533245462450 1 26536U 00055A 09254.78090047 .00000277 00000-0 17512-3 0 5572 2 26536 99.1801 260.5566 0011094 42.4043 317.7951 14.12533101462527 1 26536U 00055A 09255.56007305 .00000108 00000-0 83733-4 0 5576 2 26536 99.1805 261.3552 0011092 40.2501 319.9474 14.12532766462630 1 26536U 00055A 09256.48091333 -.00000058 00000-0 -59864-5 0 5588 2 26536 99.1803 262.2985 0011098 37.7221 322.4713 14.12532221462769 1 26536U 00055A 09256.48091333 -.00000058 00000-0 -59864-5 0 5599 2 26536 99.1803 262.2985 0011098 37.7221 322.4713 14.12532221462769 1 26536U 00055A 09256.83508281 -.00000142 00000-0 -51481-4 0 5605 2 26536 99.1805 262.6614 0011080 36.9635 323.2260 14.12531535462814 1 26536U 00055A 09257.40175460 -.00000159 00000-0 -60661-4 0 5606 2 26536 99.1804 263.2419 0011082 35.3395 324.8528 14.12531574462896 1 26536U 00055A 09258.46426258 -.00000203 00000-0 -84225-4 0 5610 2 26536 99.1802 264.3307 0011041 32.6200 327.5650 14.12531109463040 1 26536U 00055A 09259.45593732 -.00000200 00000-0 -82836-4 0 5626 2 26536 99.1802 265.3466 0010927 30.2570 329.9241 14.12530824463183 1 26536U 00055A 09259.88094058 -.00000169 00000-0 -66187-4 0 5636 2 26536 99.1800 265.7820 0010921 29.1336 331.0432 14.12530688463241 1 26536U 00055A 09260.30594431 -.00000066 00000-0 -10487-4 0 5633 2 26536 99.1799 266.2175 0010861 27.9427 332.2371 14.12531302463303 1 26536U 00055A 09260.80178062 -.00000001 00000-0 24938-4 0 5641 2 26536 99.1799 266.7255 0010867 26.4879 333.6848 14.12531505463374 1 26536U 00055A 09261.22678382 .00000100 00000-0 79298-4 0 5646 2 26536 99.1796 267.1611 0010791 25.2794 334.8946 14.12532211463435 1 26536U 00055A 09261.58095215 .00000130 00000-0 95418-4 0 5659 2 26536 99.1798 267.5242 0010790 24.4039 335.7649 14.12532492463489 1 26536U 00055A 09262.36012375 .00000307 00000-0 19121-3 0 5654 2 26536 99.1796 268.3224 0010842 21.9042 338.2618 14.12533775463591 1 26536U 00055A 09262.36012375 .00000307 00000-0 19121-3 0 5665 2 26536 99.1796 268.3224 0010842 21.9042 338.2618 14.12533775463591 1 26536U 00055A 09262.78512571 .00000231 00000-0 15040-3 0 5677 2 26536 99.1796 268.7580 0010796 20.9061 339.2518 14.12533482463650 1 26536U 00055A 09263.56429706 .00000200 00000-0 13326-3 0 5672 2 26536 99.1796 269.5566 0010775 18.5162 341.6384 14.12533902463762 1 26536U 00055A 09264.83930512 .00000085 00000-0 71053-4 0 5689 2 26536 99.1795 270.8626 0010794 14.8826 345.2637 14.12533690463945 1 26536U 00055A 09265.33514189 .00000003 00000-0 26885-4 0 5697 2 26536 99.1794 271.3707 0010767 13.5775 346.5681 14.12533514464016 1 26536U 00055A 09265.83097833 -.00000069 00000-0 -12235-4 0 5704 2 26536 99.1797 271.8787 0010781 12.1482 347.9913 14.12532986464080 1 26536U 00055A 09266.25598177 -.00000156 00000-0 -58806-4 0 5709 2 26536 99.1799 272.3139 0010765 11.0729 349.0665 14.12532578464144 1 26536U 00055A 09266.68098490 -.00000235 00000-0 -10201-3 0 5714 2 26536 99.1801 272.7492 0010719 10.0063 350.1301 14.12532008464208 1 26536U 00055A 09267.46015759 -.00000282 00000-0 -12702-3 0 5718 2 26536 99.1801 273.5473 0010661 7.8043 352.3304 14.12531629464311 1 26536U 00055A 09268.02682832 -.00000228 00000-0 -97858-4 0 5720 2 26536 99.1806 274.1278 0010673 6.0895 354.0413 14.12531615464398 1 26536U 00055A 09268.94766861 -.00000106 00000-0 -32023-4 0 5746 2 26536 99.1810 275.0711 0010664 3.4654 356.6615 14.12531828464522 1 26536U 00055A 09269.37267119 -.00000017 00000-0 16102-4 0 5735 2 26536 99.1812 275.5063 0010612 2.2730 357.8517 14.12532324464586 1 26536U 00055A 09269.37267119 -.00000017 00000-0 16102-4 0 5746 2 26536 99.1812 275.5063 0010612 2.2730 357.8517 14.12532324464586 1 26536U 00055A 09269.72683972 .00000031 00000-0 41880-4 0 5751 2 26536 99.1811 275.8691 0010607 1.5413 358.5786 14.12532503464630 1 26536U 00055A 09270.50601086 .00000161 00000-0 11222-3 0 5755 2 26536 99.1814 276.6673 0010561 359.2096 0.9071 14.12533551464742 1 26536U 00055A 09270.50601086 .00000161 00000-0 11222-3 0 5766 2 26536 99.1814 276.6673 0010561 359.2096 0.9071 14.12533551464742 1 26536U 00055A 09270.93101315 .00000206 00000-0 13687-3 0 5771 2 26536 99.1813 277.1028 0010539 358.1041 2.0082 14.12533813464807 1 26536U 00055A 09271.35601576 .00000297 00000-0 18572-3 0 5770 2 26536 99.1816 277.5382 0010483 356.8439 3.2703 14.12534631464869 1 26536U 00055A 09271.71018353 .00000257 00000-0 16405-3 0 5785 2 26536 99.1816 277.9011 0010488 355.7697 4.3363 14.12534520464918 1 26536U 00055A 09272.13518620 .00000263 00000-0 16763-3 0 5788 2 26536 99.1816 278.3366 0010491 354.6646 5.4414 14.12534837464978 1 26536U 00055A 09272.70185570 .00000127 00000-0 94147-4 0 5798 2 26536 99.1818 278.9173 0010479 352.9666 7.1324 14.12534380465053 1 26536U 00055A 09273.12685865 .00000037 00000-0 45145-4 0 5791 2 26536 99.1817 279.3528 0010519 351.9318 8.1664 14.12534119465114 1 26536U 00055A 09273.90603039 -.00000076 00000-0 -15650-4 0 5816 2 26536 99.1819 280.1507 0010426 349.7532 10.3409 14.12533489465226 1 26536U 00055A 09274.40186708 -.00000136 00000-0 -48121-4 0 5806 2 26536 99.1814 280.6589 0010487 348.5297 11.5631 14.12533333465293 1 26536U 00055A 09274.75603603 -.00000200 00000-0 -83072-4 0 5819 2 26536 99.1814 281.0218 0010442 347.4955 12.5932 14.12532780465343 1 26536U 00055A 09275.11020553 -.00000225 00000-0 -96304-4 0 5816 2 26536 99.1812 281.3848 0010459 346.5126 13.5769 14.12532664465396 1 26536U 00055A 09275.88937751 -.00000233 00000-0 -10080-3 0 5834 2 26536 99.1810 282.1828 0010341 344.3577 15.7271 14.12532239465500 1 26536U 00055A 09276.31438060 -.00000197 00000-0 -81086-4 0 5825 2 26536 99.1808 282.6183 0010299 343.0711 17.0141 14.12532435465569 1 26536U 00055A 09276.31438060 -.00000197 00000-0 -81086-4 0 5836 2 26536 99.1808 282.6183 0010299 343.0711 17.0141 14.12532435465569 1 26536U 00055A 09276.73938305 -.00000136 00000-0 -48129-4 0 5844 2 26536 99.1806 283.0536 0010281 341.9858 18.0949 14.12532526465629 1 26536U 00055A 09277.51855412 -.00000016 00000-0 16785-4 0 5847 2 26536 99.1803 283.8518 0010221 339.5847 20.4922 14.12533278465734 1 26536U 00055A 09277.51855412 -.00000016 00000-0 16785-4 0 5858 2 26536 99.1803 283.8518 0010221 339.5847 20.4922 14.12533278465734 1 26536U 00055A 09277.94355669 .00000103 00000-0 81289-4 0 5862 2 26536 99.1803 284.2872 0010274 338.4128 21.6623 14.12533862465796 1 26536U 00055A 09278.36855894 .00000151 00000-0 10675-3 0 5867 2 26536 99.1801 284.7226 0010200 337.0121 23.0614 14.12534291465859 1 26536U 00055A 09278.79356091 .00000168 00000-0 11615-3 0 5873 2 26536 99.1801 285.1582 0010150 335.8256 24.2426 14.12534370465917 1 26536U 00055A 09279.50189750 .00000229 00000-0 14917-3 0 5875 2 26536 99.1801 285.8839 0010104 333.3992 26.6662 14.12535246466011 1 26536U 00055A 09279.50189750 .00000229 00000-0 14917-3 0 5886 2 26536 99.1801 285.8839 0010104 333.3992 26.6662 14.12535246466011 1 26536U 00055A 09279.92689957 .00000251 00000-0 16116-3 0 5895 2 26536 99.1799 286.3193 0010094 332.2884 27.7737 14.12535477466079 1 26536U 00055A 09280.28106817 .00000263 00000-0 16757-3 0 5899 2 26536 99.1801 286.6823 0010074 331.1691 28.8936 14.12535815466123 1 26536U 00055A 09280.63523620 .00000171 00000-0 11788-3 0 5902 2 26536 99.1800 287.0452 0010065 330.0886 29.9681 14.12535444466171 1 26536U 00055A 09281.41440738 .00000115 00000-0 87762-4 0 5901 2 26536 99.1801 287.8432 0009981 327.7077 32.3487 14.12535528466285 1 26536U 00055A 09281.83940936 .00000010 00000-0 30893-4 0 5910 2 26536 99.1803 288.2789 0009931 326.4531 33.5976 14.12534928466349 1 26536U 00055A 09282.33524603 -.00000060 00000-0 -68417-5 0 5927 2 26536 99.1803 288.7868 0009930 324.9732 35.0785 14.12534752466415 1 26536U 00055A 09282.76024836 -.00000136 00000-0 -48436-4 0 5930 2 26536 99.1802 289.2220 0009884 323.6421 36.4054 14.12534212466472 1 26536U 00055A 09283.53942051 -.00000284 00000-0 -12839-3 0 5935 2 26536 99.1802 290.0199 0009889 321.4951 38.5505 14.12533346466589 1 26536U 00055A 09283.96442349 -.00000235 00000-0 -10192-3 0 5944 2 26536 99.1806 290.4553 0009897 320.2999 39.7451 14.12533340466643 1 26536U 00055A 09284.46026003 -.00000319 00000-0 -14691-3 0 5946 2 26536 99.1805 290.9632 0009877 318.8976 41.1443 14.12532824466713 1 26536U 00055A 09284.81442932 -.00000271 00000-0 -12094-3 0 5951 2 26536 99.1805 291.3260 0009865 317.9003 42.1408 14.12532780466761 1 26536U 00055A 09285.59360091 -.00000214 00000-0 -90185-4 0 5957 2 26536 99.1806 292.1241 0009862 315.5134 44.5253 14.12532956466877 1 26536U 00055A 09286.37277215 .00000030 00000-0 41826-4 0 5962 2 26536 99.1804 292.9221 0009867 312.9868 47.0508 14.12534119466987 1 26536U 00055A 09286.93944163 .00000128 00000-0 94322-4 0 5975 2 26536 99.1804 293.5024 0009803 311.1611 48.8728 14.12534637467060 1 26536U 00055A 09287.36444378 .00000244 00000-0 15749-3 0 5970 2 26536 99.1804 293.9375 0009774 309.6096 50.4252 14.12535504467121 1 26536U 00055A 09287.78944516 .00000248 00000-0 15928-3 0 5989 2 26536 99.1803 294.3730 0009733 308.4873 51.5412 14.12535657467180 1 26536U 00055A 09288.21444753 .00000306 00000-0 19056-3 0 5987 2 26536 99.1801 294.8084 0009730 306.9683 53.0620 14.12536260467240 1 26536U 00055A 09288.71028269 .00000212 00000-0 13992-3 0 5992 2 26536 99.1801 295.3168 0009726 305.4137 54.6104 14.12536040467310 1 26536U 00055A 09289.48945320 .00000175 00000-0 11991-3 0 5998 2 26536 99.1803 296.1151 0009750 303.0997 56.9233 14.12536397467423 1 26536U 00055A 09289.91445525 .00000091 00000-0 74354-4 0 6001 2 26536 99.1800 296.5502 0009669 301.5021 58.5177 14.12535979467480 1 26536U 00055A 09290.41029160 .00000046 00000-0 49983-4 0 6001 2 26536 99.1799 297.0587 0009651 300.2301 59.7915 14.12535997467555 1 26536U 00055A 09290.83529371 -.00000087 00000-0 -21452-4 0 6015 2 26536 99.1796 297.4937 0009630 298.8383 61.1776 14.12535176467612 1 26536U 00055A 09291.61446566 -.00000232 00000-0 -10013-3 0 6018 2 26536 99.1797 298.2921 0009619 296.4487 63.5679 14.12534406467726 1 26536U 00055A 09292.46447103 -.00000241 00000-0 -10483-3 0 6022 2 26536 99.1796 299.1628 0009634 293.8028 66.2137 14.12534249467845 1 26536U 00055A 09292.88947367 -.00000260 00000-0 -11550-3 0 6033 2 26536 99.1796 299.5982 0009639 292.4647 67.5486 14.12533813467903 1 26536U 00055A 09293.38531070 -.00000190 00000-0 -77545-4 0 6038 2 26536 99.1794 300.1060 0009633 290.6765 69.3411 14.12534136467976 1 26536U 00055A 09293.81031273 -.00000142 00000-0 -51227-4 0 6043 2 26536 99.1795 300.5413 0009629 289.5643 70.4486 14.12534159468038 1 26536U 00055A 09294.23531555 -.00000059 00000-0 -64450-5 0 6048 2 26536 99.1793 300.9766 0009621 287.8130 72.2029 14.12534636468094 1 26536U 00055A 09294.58948365 -.00000063 00000-0 -85063-5 0 6056 2 26536 99.1793 301.3394 0009621 286.8251 73.1865 14.12534619468144 1 26536U 00055A 09295.01448628 .00000098 00000-0 78294-4 0 6055 2 26536 99.1794 301.7747 0009673 285.7015 74.3123 14.12535462468208 1 26536U 00055A 09295.51032171 .00000110 00000-0 84627-4 0 6065 2 26536 99.1795 302.2825 0009654 283.9758 76.0363 14.12535819468273 1 26536U 00055A 09296.00615724 .00000294 00000-0 18406-3 0 6065 2 26536 99.1794 302.7906 0009689 282.6779 77.3334 14.12536839468347 1 26536U 00055A 09296.92699417 .00000259 00000-0 16556-3 0 6084 2 26536 99.1794 303.7337 0009680 280.0133 79.9917 14.12537111468476 1 26536U 00055A 09297.42283027 .00000298 00000-0 18644-3 0 6078 2 26536 99.1795 304.2414 0009675 278.3757 81.6345 14.12537791468542 1 26536U 00055A 09297.42283027 .00000298 00000-0 18644-3 0 6089 2 26536 99.1795 304.2414 0009675 278.3757 81.6345 14.12537791468542 1 26536U 00055A 09297.77699781 .00000157 00000-0 11024-3 0 6095 2 26536 99.1797 304.6043 0009699 277.3337 82.6685 14.12537074468592 1 26536U 00055A 09298.55616930 -.00000057 00000-0 -56362-5 0 6094 2 26536 99.1797 305.4023 0009723 275.2821 84.7219 14.12536272468700 1 26536U 00055A 09298.98117196 -.00000142 00000-0 -51696-4 0 6102 2 26536 99.1796 305.8379 0009713 274.1361 85.8682 14.12535859468765 1 26536U 00055A 09299.40617470 -.00000183 00000-0 -73368-4 0 6105 2 26536 99.1797 306.2732 0009694 273.0857 86.9198 14.12535621468828 1 26536U 00055A 09299.90201105 -.00000225 00000-0 -96259-4 0 6116 2 26536 99.1795 306.7810 0009697 271.4675 88.5364 14.12535101468894 1 26536U 00055A 09300.39784789 -.00000251 00000-0 -11058-3 0 6118 2 26536 99.1795 307.2889 0009689 270.1961 89.8108 14.12534958468968 1 26536U 00055A 09300.82285042 -.00000230 00000-0 -99267-4 0 6121 2 26536 99.1795 307.7241 0009700 269.1362 90.8690 14.12534770469020 1 26536U 00055A 09301.17701954 -.00000210 00000-0 -87978-4 0 6129 2 26536 99.1795 308.0869 0009719 267.9360 92.0716 14.12534833469072 1 26536U 00055A 09301.67285574 -.00000216 00000-0 -91651-4 0 6139 2 26536 99.1796 308.5949 0009694 266.1394 93.8665 14.12534566469140 1 26536U 00055A 09302.09785866 -.00000091 00000-0 -24118-4 0 6130 2 26536 99.1795 309.0303 0009738 264.6867 95.3227 14.12535106469205 1 26536U 00055A 09302.59369444 -.00000082 00000-0 -18934-4 0 6145 2 26536 99.1795 309.5381 0009728 263.0677 96.9397 14.12535158469276 1 26536U 00055A 09303.37286525 .00000092 00000-0 75191-4 0 6158 2 26536 99.1798 310.3362 0009761 260.7739 99.2354 14.12536172469386 1 26536U 00055A 09303.37286525 .00000092 00000-0 75191-4 0 6169 2 26536 99.1798 310.3362 0009761 260.7739 99.2354 14.12536172469386 1 26536U 00055A 09303.79786710 .00000146 00000-0 10423-3 0 6173 2 26536 99.1797 310.7715 0009728 259.6432 100.3637 14.12536442469446 1 26536U 00055A 09304.93120516 .00000298 00000-0 18635-3 0 6199 2 26536 99.1802 311.9327 0009775 256.3067 103.7001 14.12537803469607 1 26536U 00055A 09305.78120852 .00000203 00000-0 13497-3 0 6205 2 26536 99.1799 312.8034 0009820 253.3525 106.6530 14.12537880469721 1 26536U 00055A 09306.56037928 .00000099 00000-0 79066-4 0 6201 2 26536 99.1795 313.6016 0009831 251.5732 108.4355 14.12537853469835 1 26536U 00055A 09307.41038394 .00000003 00000-0 27043-4 0 6218 2 26536 99.1792 314.4725 0009817 248.7885 111.2237 14.12537537469952 1 26536U 00055A 09307.83538601 -.00000151 00000-0 -56173-4 0 6223 2 26536 99.1789 314.9075 0009849 247.3197 112.6892 14.12536618470017 1 26536U 00055A 09308.40205665 -.00000206 00000-0 -86050-4 0 6226 2 26536 99.1786 315.4880 0009821 245.9365 114.0776 14.12536350470093 1 26536U 00055A 09308.82705919 -.00000251 00000-0 -11045-3 0 6231 2 26536 99.1784 315.9231 0009834 244.4102 115.6037 14.12535862470154 1 26536U 00055A 09309.25206214 -.00000224 00000-0 -96011-4 0 6230 2 26536 99.1781 316.3584 0009833 243.3283 116.6901 14.12535984470217 1 26536U 00055A 09309.60623059 -.00000263 00000-0 -11685-3 0 6246 2 26536 99.1782 316.7211 0009843 242.0617 117.9550 14.12535620470263 1 26536U 00055A 09310.52706936 -.00000190 00000-0 -77583-4 0 6244 2 26536 99.1781 317.6642 0009903 239.3643 120.6559 14.12535824470395 1 26536U 00055A 09310.52706936 -.00000190 00000-0 -77583-4 0 6255 2 26536 99.1781 317.6642 0009903 239.3643 120.6559 14.12535824470395 1 26536U 00055A 09311.44790796 -.00000022 00000-0 13291-4 0 6264 2 26536 99.1780 318.6068 0009941 236.4418 123.5835 14.12536592470524 1 26536U 00055A 09311.80207606 .00000050 00000-0 52383-4 0 6273 2 26536 99.1782 318.9698 0009926 235.6995 124.3231 14.12536813470572 1 26536U 00055A 09312.58124618 .00000137 00000-0 99153-4 0 6272 2 26536 99.1785 319.7680 0009977 233.4130 126.6122 14.12537639470681 1 26536U 00055A 09313.43124985 .00000309 00000-0 19221-3 0 6283 2 26536 99.1787 320.6383 0010013 230.8341 129.1960 14.12538960470802 1 26536U 00055A 09313.92708481 .00000261 00000-0 16640-3 0 6296 2 26536 99.1790 321.1464 0010012 229.6758 130.3505 14.12538818470877 1 26536U 00055A 09314.42292089 .00000227 00000-0 14824-3 0 6298 2 26536 99.1792 321.6541 0010035 228.0902 131.9423 14.12539072470946 1 26536U 00055A 09314.84792245 .00000122 00000-0 91262-4 0 6301 2 26536 99.1794 322.0895 0010046 226.8074 133.2213 14.12538478471002 1 26536U 00055A 09315.69792742 -.00000044 00000-0 14216-5 0 6306 2 26536 99.1796 322.9601 0010025 224.5587 135.4757 14.12537868471121 1 26536U 00055A 09315.69792742 -.00000044 00000-0 14216-5 0 6317 2 26536 99.1796 322.9601 0010025 224.5587 135.4757 14.12537868471121 1 26536U 00055A 09316.47709882 -.00000166 00000-0 -64221-4 0 6324 2 26536 99.1797 323.7581 0010052 222.1733 137.8670 14.12537314471233 1 26536U 00055A 09316.90210105 -.00000169 00000-0 -65962-4 0 6334 2 26536 99.1798 324.1933 0010055 220.8753 139.1648 14.12537034471295 1 26536U 00055A 09317.25627006 -.00000246 00000-0 -10791-3 0 6341 2 26536 99.1797 324.5562 0010053 219.7892 140.2535 14.12536632471342 1 26536U 00055A 09317.68127276 -.00000294 00000-0 -13387-3 0 6350 2 26536 99.1794 324.9910 0010091 218.3519 141.6921 14.12536125471401 1 26536U 00055A 09318.53127801 -.00000266 00000-0 -11849-3 0 6359 2 26536 99.1792 325.8616 0010090 216.1000 143.9495 14.12536120471521 1 26536U 00055A 09318.88544686 -.00000196 00000-0 -80461-4 0 6361 2 26536 99.1788 326.2241 0010099 214.9974 145.0535 14.12536206471578 1 26536U 00055A 09319.38128336 -.00000064 00000-0 -94254-5 0 6367 2 26536 99.1786 326.7319 0010202 213.4683 146.5905 14.12536975471642 1 26536U 00055A 09319.80628464 -.00000001 00000-0 24951-4 0 6378 2 26536 99.1784 327.1671 0010133 212.4666 147.5874 14.12537129471704 1 26536U 00055A 09320.37295472 .00000168 00000-0 11602-3 0 6372 2 26536 99.1782 327.7476 0010233 210.8277 149.2361 14.12538275471783 1 26536U 00055A 09320.79795547 .00000192 00000-0 12887-3 0 6380 2 26536 99.1781 328.1829 0010217 209.4763 150.5821 14.12538435471846 1 26536U 00055A 09321.57712496 .00000318 00000-0 19749-3 0 6383 2 26536 99.1778 328.9810 0010294 207.2082 152.8551 14.12539668471951 1 26536U 00055A 09322.42712826 .00000329 00000-0 20330-3 0 6396 2 26536 99.1773 329.8515 0010347 204.7257 155.3429 14.12540357472076 1 26536U 00055A 09322.78129595 .00000223 00000-0 14571-3 0 6405 2 26536 99.1774 330.2144 0010380 203.9010 156.1640 14.12539811472129 1 26536U 00055A 09323.20629839 .00000145 00000-0 10390-3 0 6407 2 26536 99.1773 330.6496 0010352 202.6527 157.4178 14.12539728472183 1 26536U 00055A 09323.98546906 -.00000048 00000-0 -83518-6 0 6426 2 26536 99.1777 331.4474 0010371 200.5224 159.5519 14.12538877472292 1 26536U 00055A 09324.48130491 -.00000127 00000-0 -43620-4 0 6415 2 26536 99.1777 331.9552 0010369 199.0697 161.0083 14.12538589472369 1 26536U 00055A 09324.48130491 -.00000127 00000-0 -43620-4 0 6426 2 26536 99.1777 331.9552 0010369 199.0697 161.0083 14.12538589472369 1 26536U 00055A 09324.83547339 -.00000185 00000-0 -74764-4 0 6436 2 26536 99.1777 332.3177 0010374 198.0186 162.0586 14.12538020472410 1 26536U 00055A 09325.61464481 -.00000279 00000-0 -12535-3 0 6430 2 26536 99.1779 333.1154 0010379 195.7362 164.3477 14.12537396472522 1 26536U 00055A 09326.46464963 -.00000231 00000-0 -99425-4 0 6442 2 26536 99.1779 333.9857 0010457 193.3317 166.7592 14.12537411472646 1 26536U 00055A 09326.81881806 -.00000238 00000-0 -10313-3 0 6456 2 26536 99.1781 334.3484 0010483 192.3467 167.7432 14.12537059472691 1 26536U 00055A 09327.24382093 -.00000177 00000-0 -70586-4 0 6459 2 26536 99.1781 334.7836 0010527 191.2822 168.8146 14.12537334472755 1 26536U 00055A 09327.59798902 -.00000147 00000-0 -54004-4 0 6462 2 26536 99.1783 335.1464 0010530 190.1863 169.9105 14.12537440472807 1 26536U 00055A 09328.51882663 .00000057 00000-0 56108-4 0 6468 2 26536 99.1784 336.0895 0010638 187.6183 172.4865 14.12538616472933 1 26536U 00055A 09328.51882663 .00000057 00000-0 56108-4 0 6479 2 26536 99.1784 336.0895 0010638 187.6183 172.4865 14.12538616472933 1 26536U 00055A 09329.01466164 .00000220 00000-0 14436-3 0 6489 2 26536 99.1787 336.5973 0010598 186.3583 173.7473 14.12539454473002 1 26536U 00055A 09329.58133030 .00000266 00000-0 16930-3 0 6496 2 26536 99.1787 337.1777 0010636 184.7269 175.3821 14.12540046473089 1 26536U 00055A 09330.50216681 .00000269 00000-0 17046-3 0 6496 2 26536 99.1788 338.1208 0010662 182.2865 177.8271 14.12540664473211 1 26536U 00055A 09330.50216681 .00000269 00000-0 17046-3 0 6508 2 26536 99.1788 338.1208 0010662 182.2865 177.8271 14.12540664473211 1 26536U 00055A 09330.85633442 .00000233 00000-0 15139-3 0 6517 2 26536 99.1789 338.4837 0010674 181.1926 178.9190 14.12540473473267 1 26536U 00055A 09331.35217008 .00000184 00000-0 12469-3 0 6517 2 26536 99.1787 338.9916 0010679 179.7809 180.3369 14.12540598473337 1 26536U 00055A 09331.77717152 .00000085 00000-0 71266-4 0 6520 2 26536 99.1790 339.4270 0010696 178.7042 181.4127 14.12540106473392 1 26536U 00055A 09332.62717563 -.00000095 00000-0 -25896-4 0 6522 2 26536 99.1788 340.2979 0010698 176.2006 183.9229 14.12539404473513 1 26536U 00055A 09333.47718009 -.00000222 00000-0 -94906-4 0 6533 2 26536 99.1786 341.1685 0010680 173.6617 186.4687 14.12538752473639 1 26536U 00055A 09333.90218223 -.00000257 00000-0 -11389-3 0 6546 2 26536 99.1784 341.6036 0010750 172.3035 187.8281 14.12538246473699 1 26536U 00055A 09334.39801859 -.00000226 00000-0 -96944-4 0 6540 2 26536 99.1783 342.1115 0010736 171.0291 189.1099 14.12538383473768 1 26536U 00055A 09334.89385396 -.00000229 00000-0 -98366-4 0 6552 2 26536 99.1780 342.6190 0010774 169.6547 190.4835 14.12538049473832 1 26536U 00055A 09335.38969019 -.00000187 00000-0 -75893-4 0 6550 2 26536 99.1778 343.1269 0010819 168.3804 191.7648 14.12538254473906 1 26536U 00055A 09335.81469180 -.00000107 00000-0 -32417-4 0 6560 2 26536 99.1775 343.5617 0010849 167.1407 193.0047 14.12538435473968 1 26536U 00055A 09336.23969386 .00000011 00000-0 31150-4 0 6565 2 26536 99.1773 343.9969 0010897 166.1869 193.9648 14.12539137474028 1 26536U 00055A 09336.66469489 .00000031 00000-0 42174-4 0 6572 2 26536 99.1771 344.4319 0010889 164.9460 195.2035 14.12539238474088 1 26536U 00055A 09337.51469769 .00000150 00000-0 10638-3 0 6579 2 26536 99.1767 345.3019 0010944 162.9389 197.2167 14.12540306474200 1 26536U 00055A 09338.50636690 .00000263 00000-0 16753-3 0 6588 2 26536 99.1766 346.3172 0010985 160.3744 199.7855 14.12541411474346 1 26536U 00055A 09338.93136803 .00000284 00000-0 17876-3 0 6597 2 26536 99.1766 346.7521 0010980 159.2258 200.9347 14.12541601474409 1 26536U 00055A 09339.35636946 .00000277 00000-0 17477-3 0 6596 2 26536 99.1765 347.1873 0010982 158.0123 202.1527 14.12541924474461 1 26536U 00055A 09339.85220388 .00000123 00000-0 91683-4 0 6604 2 26536 99.1770 347.6950 0011044 156.7798 203.3830 14.12541211474538 1 26536U 00055A 09340.56054033 -.00000043 00000-0 18137-5 0 6602 2 26536 99.1770 348.4203 0010956 154.7405 205.4284 14.12540674474631 1 26536U 00055A 09341.48137783 -.00000214 00000-0 -90313-4 0 6615 2 26536 99.1777 349.3635 0011037 152.2287 207.9474 14.12539744474767 1 26536U 00055A 09342.11888046 -.00000289 00000-0 -13077-3 0 6625 2 26536 99.1779 350.0163 0011092 150.5467 209.6313 14.12539074474853 1 26536U 00055A 09342.54388273 -.00000294 00000-0 -13345-3 0 6634 2 26536 99.1779 350.4514 0011108 149.3964 210.7864 14.12538932474916 1 26536U 00055A 09343.11055188 -.00000238 00000-0 -10365-3 0 6631 2 26536 99.1780 351.0316 0011126 147.9229 212.2627 14.12538872474998 1 26536U 00055A 09343.60638739 -.00000253 00000-0 -11174-3 0 6641 2 26536 99.1781 351.5394 0011165 146.5391 213.6489 14.12538609475066 1 26536U 00055A 09344.10222310 -.00000091 00000-0 -24190-4 0 6644 2 26536 99.1781 352.0473 0011159 145.3855 214.8084 14.12539282475135 1 26536U 00055A 09344.66889141 -.00000085 00000-0 -20533-4 0 6657 2 26536 99.1781 352.6276 0011159 143.8332 216.3600 14.12539284475217 1 26536U 00055A 09345.16472675 .00000076 00000-0 66342-4 0 6659 2 26536 99.1781 353.1352 0011191 142.8376 217.3615 14.12540103475287 1 26536U 00055A 09345.16472675 .00000076 00000-0 66342-4 0 6660 2 26536 99.1781 353.1352 0011191 142.8376 217.3615 14.12540103475287 1 26536U 00055A 09345.73139460 .00000136 00000-0 98578-4 0 6679 2 26536 99.1783 353.7156 0011203 141.1183 219.0800 14.12540497475369 1 26536U 00055A 09346.29806302 .00000281 00000-0 17699-3 0 6672 2 26536 99.1783 354.2958 0011192 139.7232 220.4816 14.12541596475443 1 26536U 00055A 09346.29806302 .00000281 00000-0 17699-3 0 6683 2 26536 99.1783 354.2958 0011192 139.7232 220.4816 14.12541596475443 1 26536U 00055A 09346.93556363 .00000302 00000-0 18833-3 0 6699 2 26536 99.1782 354.9488 0011169 137.8649 222.3371 14.12541982475538 1 26536U 00055A 09347.64389865 .00000193 00000-0 12975-3 0 6698 2 26536 99.1782 355.6742 0011174 136.0375 224.1670 14.12541892475635 1 26536U 00055A 09348.06889992 .00000176 00000-0 12011-3 0 6705 2 26536 99.1780 356.1097 0011174 134.7820 225.4260 14.12542049475692 1 26536U 00055A 09348.91890166 .00000042 00000-0 47792-4 0 6712 2 26536 99.1777 356.9802 0011186 132.6705 227.5374 14.12541570475813 1 26536U 00055A 09349.48555968 .00000091 00000-0 74663-4 0 9650 2 26536 99.1786 357.5612 0011208 129.4119 230.7550 14.12541947475895 1 26536U 00055A 09349.91057142 -.00000177 00000-0 -70419-4 0 6726 2 26536 99.1770 357.9954 0011198 129.9139 230.2960 14.12540457475958 1 26536U 00055A 09350.83140893 -.00000255 00000-0 -11249-3 0 6738 2 26536 99.1764 358.9380 0011192 127.4646 232.7535 14.12539817476083 1 26536U 00055A 09351.25641069 -.00000236 00000-0 -10248-3 0 6733 2 26536 99.1762 359.3732 0011197 126.4074 233.8150 14.12539867476143 1 26536U 00055A 09351.25641069 -.00000236 00000-0 -10248-3 0 6744 2 26536 99.1762 359.3732 0011197 126.4074 233.8150 14.12539867476143 1 26536U 00055A 09351.82307906 -.00000229 00000-0 -98662-4 0 6756 2 26536 99.1759 359.9530 0011224 124.8882 235.3336 14.12539582476227 1 26536U 00055A 09352.24808086 -.00000209 00000-0 -87622-4 0 6750 2 26536 99.1758 0.3882 0011239 124.0036 236.2229 14.12539678476285 1 26536U 00055A 09352.81474915 -.00000101 00000-0 -29367-4 0 6767 2 26536 99.1757 0.9681 0011260 122.3379 237.8899 14.12540022476366 1 26536U 00055A 09353.23975030 -.00000006 00000-0 22139-4 0 6761 2 26536 99.1759 1.4032 0011292 121.5242 238.7070 14.12540551476424 1 26536U 00055A 09353.66475086 .00000089 00000-0 73210-4 0 6771 2 26536 99.1758 1.8385 0011277 120.2274 240.0033 14.12541100476484 1 26536U 00055A 09354.58558565 .00000287 00000-0 18035-3 0 6770 2 26536 99.1763 2.7814 0011323 117.9358 242.2990 14.12542462476618 1 26536U 00055A 09354.58558565 .00000287 00000-0 18035-3 0 6781 2 26536 99.1763 2.7814 0011323 117.9358 242.2990 14.12542462476618 1 26536U 00055A 09354.93975229 .00000286 00000-0 17968-3 0 6794 2 26536 99.1762 3.1440 0011301 116.7994 243.4314 14.12542533476663 1 26536U 00055A 09355.43558673 .00000322 00000-0 19903-3 0 6792 2 26536 99.1764 3.6518 0011324 115.4921 244.7444 14.12543164476734 1 26536U 00055A 09355.43558673 .00000322 00000-0 19903-3 0 6804 2 26536 99.1764 3.6518 0011324 115.4921 244.7444 14.12543164476734 1 26536U 00055A 09355.86058672 .00000266 00000-0 16901-3 0 6818 2 26536 99.1768 4.0872 0011336 114.2649 245.9669 14.12542918476797 1 26536U 00055A 09356.35642134 .00000255 00000-0 16298-3 0 6812 2 26536 99.1768 4.5952 0011338 112.8788 247.3592 14.12543310476867 1 26536U 00055A 09356.78142146 .00000092 00000-0 75166-4 0 6827 2 26536 99.1771 5.0305 0011330 111.8601 248.3729 14.12542501476925 1 26536U 00055A 09357.27725642 .00000023 00000-0 37729-4 0 6827 2 26536 99.1771 5.5383 0011336 110.2540 249.9844 14.12542399476994 1 26536U 00055A 09357.27725642 .00000023 00000-0 37729-4 0 6838 2 26536 99.1771 5.5383 0011336 110.2540 249.9844 14.12542399476994 1 26536U 00055A 09357.84392403 -.00000160 00000-0 -61196-4 0 6846 2 26536 99.1773 6.1185 0011338 108.9192 251.3161 14.12541349477075 1 26536U 00055A 09358.41059290 -.00000187 00000-0 -75843-4 0 6847 2 26536 99.1775 6.6984 0011356 107.3375 252.9049 14.12541236477151 1 26536U 00055A 09358.41059290 -.00000187 00000-0 -75843-4 0 6858 2 26536 99.1775 6.6984 0011356 107.3375 252.9049 14.12541236477151 1 26536U 00055A 09359.40226259 -.00000299 00000-0 -13629-3 0 6867 2 26536 99.1777 7.7142 0011383 105.0928 255.1524 14.12540274477299 1 26536U 00055A 09359.82726342 -.00000263 00000-0 -11688-3 0 6876 2 26536 99.1778 8.1495 0011367 103.9213 256.3222 14.12540142477351 1 26536U 00055A 09360.39393181 -.00000216 00000-0 -91585-4 0 6874 2 26536 99.1778 8.7297 0011357 102.6191 257.6285 14.12540325477432 1 26536U 00055A 09360.88976586 -.00000110 00000-0 -34492-4 0 6882 2 26536 99.1779 9.2377 0011338 101.0101 259.2354 14.12540600477500 1 26536U 00055A 09361.38560032 -.00000088 00000-0 -22476-4 0 6886 2 26536 99.1778 9.7453 0011331 99.8411 260.4064 14.12540790477579 1 26536U 00055A 09361.81060087 .00000015 00000-0 33317-4 0 6894 2 26536 99.1781 10.1806 0011329 98.4196 261.8264 14.12541168477637 1 26536U 00055A 09362.37726862 .00000147 00000-0 10460-3 0 6895 2 26536 99.1781 10.7609 0011297 97.1437 263.1079 14.12542159477711 1 26536U 00055A 09363.43976864 .00000295 00000-0 18479-3 0 6906 2 26536 99.1780 11.8492 0011277 94.4792 265.7709 14.12543472477867 1 26536U 00055A 09363.43976864 .00000295 00000-0 18479-3 0 6917 2 26536 99.1780 11.8492 0011277 94.4792 265.7709 14.12543472477867 1 26536U 00055A 09363.86476793 .00000264 00000-0 16815-3 0 6929 2 26536 99.1781 12.2846 0011255 92.9793 267.2632 14.12543339477927 1 26536U 00055A 09364.36060208 .00000319 00000-0 19753-3 0 6920 2 26536 99.1781 12.7924 0011236 91.8528 268.3957 14.12544041477992 1 26536U 00055A 09364.85643477 .00000190 00000-0 12797-3 0 6938 2 26536 99.1779 13.3000 0011235 90.5102 269.7314 14.12543548478066 1 26536U 00055A 09365.21060233 .00000150 00000-0 10626-3 0 6937 2 26536 99.1778 13.6628 0011243 89.4637 270.7822 14.12543602478116 1 26536U 00055A 09365.63560239 .00000017 00000-0 34486-4 0 6948 2 26536 99.1776 14.0978 0011208 88.1240 272.1190 14.12543067478179 1 26536U 00055A 10001.55643749 -.00000134 00000-0 -47480-4 0 6946 2 26536 99.1773 15.0405 0011248 85.7031 274.5427 14.12542336478309 1 26536U 00055A 10002.54810582 -.00000318 00000-0 -14653-3 0 6957 2 26536 99.1771 16.0557 0011267 83.3276 276.9169 14.12541146478444 1 26536U 00055A 10003.82310763 -.00000194 00000-0 -79727-4 0 6973 2 26536 99.1770 17.3609 0011264 79.9629 280.2806 14.12541203478625 1 26536U 00055A 10004.31894195 -.00000095 00000-0 -26199-4 0 6979 2 26536 99.1771 17.8685 0011221 78.8761 281.3720 14.12541774478690 1 26536U 00055A 10004.74394153 -.00000095 00000-0 -26030-4 0 6980 2 26536 99.1770 18.3038 0011233 77.4438 282.7965 14.12541528478756 1 26536U 00055A 10005.59394180 .00000102 00000-0 80217-4 0 6988 2 26536 99.1774 19.1740 0011173 75.8365 284.4067 14.12542822478876 1 26536U 00055A 10006.01894158 .00000183 00000-0 12424-3 0 6990 2 26536 99.1775 19.6092 0011163 74.4182 285.8228 14.12543304478930 1 26536U 00055A 10006.58560807 .00000162 00000-0 11271-3 0 7002 2 26536 99.1777 20.1895 0011123 73.1205 287.1198 14.12543548479019 1 26536U 00055A 10007.08144104 .00000229 00000-0 14876-3 0 7015 2 26536 99.1779 20.6971 0011102 71.5953 288.6419 14.12543914479086 1 26536U 00055A 10007.57727421 .00000225 00000-0 14704-3 0 7025 2 26536 99.1783 21.2053 0011111 70.1453 290.0916 14.12544180479152 1 26536U 00055A 10008.42727426 .00000121 00000-0 90708-4 0 7029 2 26536 99.1789 22.0759 0011154 68.0543 292.1818 14.12544034479278 1 26536U 00055A 10008.42727426 .00000121 00000-0 90708-4 0 7030 2 26536 99.1789 22.0759 0011154 68.0543 292.1818 14.12544034479278 1 26536U 00055A 10008.85227388 .00000050 00000-0 52021-4 0 7047 2 26536 99.1791 22.5113 0011128 67.1592 293.0725 14.12543586479330 1 26536U 00055A 10009.27727430 -.00000025 00000-0 11806-4 0 7046 2 26536 99.1793 22.9469 0011181 65.4850 294.7473 14.12543398479392 1 26536U 00055A 10009.70227447 -.00000099 00000-0 -28243-4 0 7053 2 26536 99.1793 23.3822 0011163 64.4917 295.7386 14.12542914479457 1 26536U 00055A 10010.55227527 -.00000248 00000-0 -10866-3 0 7054 2 26536 99.1791 24.2526 0011191 61.9652 298.2636 14.12542115479577 1 26536U 00055A 10010.97727585 -.00000231 00000-0 -99746-4 0 7067 2 26536 99.1792 24.6878 0011170 60.9868 299.2425 14.12542013479638 1 26536U 00055A 10011.40227608 -.00000287 00000-0 -12964-3 0 7064 2 26536 99.1792 25.1230 0011160 59.9424 300.2851 14.12541652479691 1 26536U 00055A 10011.82727654 -.00000266 00000-0 -11833-3 0 7078 2 26536 99.1788 25.5579 0011168 58.7633 301.4623 14.12541444479759 1 26536U 00055A 10012.60644367 -.00000216 00000-0 -91282-4 0 7076 2 26536 99.1785 26.3557 0011128 56.8617 303.3627 14.12541580479866 1 26536U 00055A 10012.60644367 -.00000216 00000-0 -91282-4 0 7087 2 26536 99.1785 26.3557 0011128 56.8617 303.3627 14.12541580479866 1 26536U 00055A 10013.45644349 .00000050 00000-0 52335-4 0 7092 2 26536 99.1782 27.2259 0011069 54.6592 305.5652 14.12542955479986 1 26536U 00055A 10013.88144266 .00000082 00000-0 69784-4 0 7105 2 26536 99.1779 27.6610 0011096 53.0862 307.1306 14.12543012480048 1 26536U 00055A 10014.30644295 .00000225 00000-0 14692-3 0 7106 2 26536 99.1777 28.0961 0011001 52.1626 308.0593 14.12544014480102 1 26536U 00055A 10014.73144148 .00000231 00000-0 15008-3 0 7115 2 26536 99.1775 28.5311 0011058 51.0953 309.1189 14.12544198480169 1 26536U 00055A 10015.58143986 .00000307 00000-0 19142-3 0 7115 2 26536 99.1772 29.4014 0010980 48.7116 311.4994 14.12545231480285 1 26536U 00055A 10016.50227211 .00000195 00000-0 13079-3 0 7121 2 26536 99.1772 30.3447 0010985 46.2331 313.9748 14.12545235480416 1 26536U 00055A 10016.85643809 .00000086 00000-0 71716-4 0 7137 2 26536 99.1773 30.7072 0010971 45.4032 314.7990 14.12544614480462 1 26536U 00055A 10017.21060509 .00000045 00000-0 49750-4 0 7136 2 26536 99.1773 31.0700 0011025 44.1806 316.0238 14.12544595480514 1 26536U 00055A 10017.70643782 -.00000091 00000-0 -23700-4 0 7141 2 26536 99.1773 31.5775 0010984 42.8632 317.3369 14.12543947480582 1 26536U 00055A 10018.55643767 -.00000214 00000-0 -90250-4 0 7149 2 26536 99.1771 32.4478 0010969 40.5558 319.6421 14.12543326480704 1 26536U 00055A 10018.55643767 -.00000214 00000-0 -90250-4 0 7150 2 26536 99.1771 32.4478 0010969 40.5558 319.6421 14.12543326480704 1 26536U 00055A 10019.33560413 -.00000234 00000-0 -10120-3 0 7163 2 26536 99.1771 33.2455 0010953 38.6267 321.5678 14.12542939480813 1 26536U 00055A 10019.76060419 -.00000243 00000-0 -10591-3 0 7174 2 26536 99.1773 33.6808 0010912 37.5751 322.6174 14.12542630480879 1 26536U 00055A 10020.25643765 -.00000219 00000-0 -93368-4 0 7178 2 26536 99.1773 34.1886 0010913 36.1500 324.0422 14.12542666480948 1 26536U 00055A 10020.61060399 -.00000282 00000-0 -12745-3 0 7184 2 26536 99.1772 34.5511 0010892 35.3070 324.8811 14.12542224480990 1 26536U 00055A 10021.46060346 -.00000078 00000-0 -16799-4 0 7187 2 26536 99.1770 35.4212 0010773 33.1292 327.0583 14.12543196481111 1 26536U 00055A 10021.88560263 -.00000049 00000-0 -10281-5 0 7196 2 26536 99.1772 35.8565 0010801 31.7933 328.3872 14.12543124481178 1 26536U 00055A 10022.31060275 .00000095 00000-0 76710-4 0 7190 2 26536 99.1773 36.2917 0010702 30.7712 329.4138 14.12544021481230 1 26536U 00055A 10022.73560120 .00000096 00000-0 77372-4 0 7208 2 26536 99.1775 36.7273 0010719 29.5817 330.5950 14.12544059481294 1 26536U 00055A 10023.16060086 .00000241 00000-0 15554-3 0 7207 2 26536 99.1774 37.1625 0010714 28.1608 332.0178 14.12544997481354 1 26536U 00055A 10023.93976509 .00000253 00000-0 16217-3 0 7220 2 26536 99.1776 37.9609 0010721 26.0108 334.1587 14.12545424481461 1 26536U 00055A 10024.29393122 .00000291 00000-0 18231-3 0 7213 2 26536 99.1778 38.3236 0010684 25.0878 335.0825 14.12545867481517 1 26536U 00055A 10024.71892983 .00000135 00000-0 98470-4 0 7221 2 26536 99.1784 38.7592 0010649 24.0593 336.1034 14.12545210481579 1 26536U 00055A 10025.56892893 .00000056 00000-0 55537-4 0 7224 2 26536 99.1782 39.6299 0010652 21.6875 338.4745 14.12545200481697 1 26536U 00055A 10026.48976084 -.00000091 00000-0 -23809-4 0 7230 2 26536 99.1784 40.5732 0010658 19.1646 340.9917 14.12544611481825 1 26536U 00055A 10026.84392709 -.00000117 00000-0 -38014-4 0 7240 2 26536 99.1783 40.9360 0010676 18.1106 342.0420 14.12544268481870 1 26536U 00055A 10027.33976018 -.00000199 00000-0 -82043-4 0 7247 2 26536 99.1784 41.4436 0010716 16.8015 343.3496 14.12543865481947 1 26536U 00055A 10027.76475998 -.00000200 00000-0 -83038-4 0 7254 2 26536 99.1784 41.8786 0010706 15.6819 344.4669 14.12543598482002 1 26536U 00055A 10028.54392616 -.00000257 00000-0 -11380-3 0 7258 2 26536 99.1780 42.6763 0010680 13.5607 346.5851 14.12543212482116 1 26536U 00055A 10028.96892586 -.00000165 00000-0 -63667-4 0 7260 2 26536 99.1780 43.1113 0010649 12.3252 347.8195 14.12543480482177 1 26536U 00055A 10029.39392516 -.00000165 00000-0 -63967-4 0 7269 2 26536 99.1779 43.5465 0010634 11.1957 348.9459 14.12543482482236 1 26536U 00055A 10029.81892459 -.00000114 00000-0 -36549-4 0 7278 2 26536 99.1775 43.9814 0010608 10.0765 350.0614 14.12543516482291 1 26536U 00055A 10030.17309100 .00000031 00000-0 42013-4 0 7274 2 26536 99.1774 44.3441 0010549 8.8747 351.2655 14.12544303482349 1 26536U 00055A 10030.59808946 .00000046 00000-0 49914-4 0 7286 2 26536 99.1776 44.7794 0010500 7.8112 352.3232 14.12544503482400 1 26536U 00055A 10031.44808709 .00000207 00000-0 13743-3 0 7287 2 26536 99.1773 45.6494 0010476 5.2496 354.8795 14.12545677482520 1 26536U 00055A 10031.44808709 .00000207 00000-0 13743-3 0 7298 2 26536 99.1773 45.6494 0010476 5.2496 354.8795 14.12545677482520 1 26536U 00055A 10031.80225265 .00000242 00000-0 15605-3 0 7308 2 26536 99.1773 46.0120 0010507 4.4822 355.6428 14.12545890482574 1 26536U 00055A 10032.22725178 .00000314 00000-0 19518-3 0 7300 2 26536 99.1767 46.4473 0010450 3.1670 356.9592 14.12546561482635 1 26536U 00055A 10032.58141682 .00000257 00000-0 16419-3 0 7315 2 26536 99.1769 46.8101 0010467 2.0849 358.0355 14.12546532482686 1 26536U 00055A 10033.43141463 .00000225 00000-0 14709-3 0 7312 2 26536 99.1773 47.6805 0010385 359.8067 0.3107 14.12546835482807 1 26536U 00055A 10033.92724614 .00000098 00000-0 78116-4 0 7323 2 26536 99.1774 48.1885 0010344 358.2393 1.8701 14.12546218482870 1 26536U 00055A 10034.42307883 -.00000026 00000-0 11460-4 0 7325 2 26536 99.1775 48.6962 0010371 357.0963 3.0122 14.12545791482946 1 26536U 00055A 10034.91891141 -.00000142 00000-0 -51296-4 0 7336 2 26536 99.1773 49.2040 0010401 355.5608 4.5430 14.12545042483017 1 26536U 00055A 10035.34391136 -.00000214 00000-0 -90456-4 0 7334 2 26536 99.1772 49.6391 0010407 354.5018 5.6030 14.12544700483073 1 26536U 00055A 10035.76891079 -.00000232 00000-0 -10014-3 0 7343 2 26536 99.1774 50.0743 0010379 353.2725 6.8296 14.12544360483137 1 26536U 00055A 10036.19391038 -.00000281 00000-0 -12639-3 0 7340 2 26536 99.1777 50.5096 0010403 352.1571 7.9430 14.12544006483196 1 26536U 00055A 10036.76057653 -.00000268 00000-0 -11953-3 0 7359 2 26536 99.1778 51.0899 0010323 350.4791 9.6191 14.12543794483275 1 26536U 00055A 10037.53974190 -.00000250 00000-0 -11012-3 0 7356 2 26536 99.1780 51.8880 0010248 348.1700 11.9240 14.12543739483388 1 26536U 00055A 10037.53974190 -.00000250 00000-0 -11012-3 0 7367 2 26536 99.1780 51.8880 0010248 348.1700 11.9240 14.12543739483388 1 26536U 00055A 10037.89390801 -.00000190 00000-0 -77220-4 0 7375 2 26536 99.1780 52.2507 0010270 347.2933 12.7971 14.12543760483432 1 26536U 00055A 10038.24807446 -.00000101 00000-0 -29029-4 0 7379 2 26536 99.1779 52.6133 0010265 346.1536 13.9386 14.12544250483483 1 26536U 00055A 10038.67307323 -.00000045 00000-0 79309-6 0 7380 2 26536 99.1780 53.0485 0010237 345.0501 15.0380 14.12544525483548 1 26536U 00055A 10039.45223766 .00000127 00000-0 94237-4 0 7380 2 26536 99.1781 53.8465 0010169 342.5682 17.5162 14.12545614483658 1 26536U 00055A 10039.45223766 .00000127 00000-0 94237-4 0 7391 2 26536 99.1781 53.8465 0010169 342.5682 17.5162 14.12545614483658 1 26536U 00055A 10040.44390094 .00000299 00000-0 18719-3 0 7403 2 26536 99.1783 54.8624 0010075 339.6185 20.4605 14.12546951483794 1 26536U 00055A 10041.43556441 .00000266 00000-0 16891-3 0 7417 2 26536 99.1783 55.8782 0010023 336.6843 23.3886 14.12547311483931 1 26536U 00055A 10041.86056265 .00000151 00000-0 10707-3 0 7427 2 26536 99.1783 56.3134 0009955 335.3995 24.6663 14.12546792483999 1 26536U 00055A 10042.28556206 .00000136 00000-0 98662-4 0 7424 2 26536 99.1783 56.7488 0009956 334.2877 25.7806 14.12546997484059 1 26536U 00055A 10042.78139363 .00000014 00000-0 32977-4 0 7433 2 26536 99.1781 57.2565 0009944 332.8015 27.2602 14.12546427484121 1 26536U 00055A 10043.20639308 -.00000004 00000-0 23017-4 0 7430 2 26536 99.1779 57.6918 0009979 331.7321 28.3307 14.12546452484188 1 26536U 00055A 10043.70222504 -.00000130 00000-0 -45091-4 0 7449 2 26536 99.1778 58.1995 0009952 330.2066 29.8511 14.12545788484251 1 26536U 00055A 10044.55222384 -.00000227 00000-0 -97177-4 0 7448 2 26536 99.1775 59.0699 0009999 327.9901 32.0657 14.12545239484372 1 26536U 00055A 10044.90638995 -.00000224 00000-0 -95516-4 0 7459 2 26536 99.1774 59.4324 0009979 326.9988 33.0552 14.12545038484420 1 26536U 00055A 10045.75638846 -.00000225 00000-0 -96287-4 0 7466 2 26536 99.1772 60.3029 0010003 324.6681 35.3817 14.12544771484541 1 26536U 00055A 10046.18138803 -.00000151 00000-0 -56127-4 0 7469 2 26536 99.1771 60.7380 0009984 323.2234 36.8283 14.12545119484606 1 26536U 00055A 10046.67721991 -.00000155 00000-0 -58206-4 0 7474 2 26536 99.1770 61.2456 0009951 321.7697 38.2767 14.12544987484677 1 26536U 00055A 10047.10221923 .00000019 00000-0 35536-4 0 7471 2 26536 99.1769 61.6807 0009962 320.3144 39.7344 14.12545865484733 1 26536U 00055A 10047.52721737 .00000064 00000-0 59664-4 0 7484 2 26536 99.1767 62.1157 0009938 319.0204 41.0240 14.12546271484799 1 26536U 00055A 10048.80221182 .00000300 00000-0 18743-3 0 7491 2 26536 99.1769 63.4211 0009890 315.2969 44.7375 14.12547932484973 1 26536U 00055A 10049.15637775 .00000313 00000-0 19448-3 0 7496 2 26536 99.1768 63.7838 0009843 313.9018 46.1351 14.12548248485026 1 26536U 00055A 10049.58137586 .00000257 00000-0 16428-3 0 7502 2 26536 99.1771 64.2193 0009874 312.7377 47.2956 14.12548293485088 1 26536U 00055A 10050.07720738 .00000202 00000-0 13476-3 0 7505 2 26536 99.1772 64.7272 0009838 311.1791 48.8512 14.12548213485150 1 26536U 00055A 10050.57303917 .00000040 00000-0 47169-4 0 7514 2 26536 99.1775 65.2354 0009842 309.6017 50.4260 14.12547636485223 1 26536U 00055A 10051.49387055 -.00000098 00000-0 -27818-4 0 7515 2 26536 99.1779 66.1786 0009848 307.2982 52.7294 14.12547114485354 1 26536U 00055A 10051.84803611 -.00000118 00000-0 -38452-4 0 7525 2 26536 99.1781 66.5414 0009851 306.3394 53.6847 14.12546807485408 1 26536U 00055A 10052.20220221 -.00000146 00000-0 -53769-4 0 7525 2 26536 99.1781 66.9042 0009885 305.6895 54.3351 14.12546683485459 1 26536U 00055A 10052.62720120 -.00000182 00000-0 -73066-4 0 7537 2 26536 99.1781 67.3394 0009862 304.3630 55.6603 14.12546412485513 1 26536U 00055A 10053.40636618 -.00000211 00000-0 -88717-4 0 7534 2 26536 99.1780 68.1375 0009855 302.1762 57.8446 14.12546047485629 1 26536U 00055A 10053.40636618 -.00000211 00000-0 -88717-4 0 7545 2 26536 99.1780 68.1375 0009855 302.1762 57.8446 14.12546047485629 1 26536U 00055A 10053.83136543 -.00000262 00000-0 -11633-3 0 7553 2 26536 99.1780 68.5730 0009838 300.6954 59.3232 14.12545531485688 1 26536U 00055A 10054.18553181 -.00000201 00000-0 -83544-4 0 7557 2 26536 99.1778 68.9357 0009859 299.6903 60.3310 14.12545805485737 1 26536U 00055A 10054.75219698 -.00000196 00000-0 -80564-4 0 7565 2 26536 99.1779 69.5160 0009818 297.7779 62.2399 14.12545620485814 1 26536U 00055A 10055.17719621 -.00000066 00000-0 -10321-4 0 7563 2 26536 99.1774 69.9512 0009851 296.5305 63.4895 14.12546294485871 1 26536U 00055A 10055.67302769 -.00000004 00000-0 23135-4 0 7578 2 26536 99.1776 70.4589 0009815 295.0917 64.9245 14.12546582485940 1 26536U 00055A 10056.52302422 .00000212 00000-0 13992-3 0 7578 2 26536 99.1771 71.3292 0009812 292.1258 67.8891 14.12548084486061 1 26536U 00055A 10056.94802237 .00000283 00000-0 17853-3 0 7582 2 26536 99.1770 71.7644 0009816 291.1211 68.8910 14.12548579486126 1 26536U 00055A 10057.37302076 .00000362 00000-0 22095-3 0 7588 2 26536 99.1769 72.1994 0009810 289.4282 70.5860 14.12549333486188 1 26536U 00055A 10057.72718529 .00000277 00000-0 17526-3 0 7590 2 26536 99.1771 72.5625 0009800 288.3314 71.6761 14.12549042486234 1 26536U 00055A 10058.50634946 .00000205 00000-0 13593-3 0 7598 2 26536 99.1769 73.3606 0009807 286.0602 73.9490 14.12549249486346 1 26536U 00055A 10058.50634946 .00000205 00000-0 13593-3 0 7600 2 26536 99.1769 73.3606 0009807 286.0602 73.9490 14.12549249486346 1 26536U 00055A 10058.86051465 .00000154 00000-0 10836-3 0 7619 2 26536 99.1769 73.7232 0009777 285.0078 74.9979 14.12548959486392 1 26536U 00055A 10059.28551360 .00000037 00000-0 45160-4 0 7614 2 26536 99.1766 74.1585 0009771 283.9849 76.0222 14.12548659486450 1 26536U 00055A 10059.71051232 -.00000054 00000-0 -40762-5 0 7621 2 26536 99.1765 74.5936 0009770 282.6738 77.3320 14.12548194486519 1 26536U 00055A 10060.48967709 -.00000147 00000-0 -54014-4 0 7629 2 26536 99.1764 75.3913 0009739 280.4887 79.5189 14.12547846486620 1 26536U 00055A 10061.90634000 -.00000185 00000-0 -74823-4 0 7635 2 26536 99.1761 76.8417 0009692 276.3596 83.6456 14.12547168486823 1 26536U 00055A 10061.90634000 -.00000185 00000-0 -74823-4 0 7657 2 26536 99.1761 76.8417 0009692 276.3596 83.6456 14.12547168486823 1 26536U 00055A 10062.33133931 -.00000225 00000-0 -96359-4 0 7644 2 26536 99.1760 77.2770 0009680 275.2193 84.7876 14.12546982486884 1 26536U 00055A 10062.75633830 -.00000210 00000-0 -88355-4 0 7655 2 26536 99.1757 77.7121 0009682 274.1658 85.8398 14.12546806486944 1 26536U 00055A 10063.53550285 -.00000133 00000-0 -46535-4 0 7652 2 26536 99.1758 78.5097 0009705 271.5419 88.4655 14.12547221487058 1 26536U 00055A 10063.53550285 -.00000133 00000-0 -46535-4 0 7663 2 26536 99.1758 78.5097 0009705 271.5419 88.4655 14.12547221487058 1 26536U 00055A 10064.38550014 .00000052 00000-0 53398-4 0 7671 2 26536 99.1759 79.3800 0009729 268.7443 91.2642 14.12548146487179 1 26536U 00055A 10064.81049830 .00000101 00000-0 80144-4 0 7683 2 26536 99.1761 79.8154 0009711 267.4833 92.5223 14.12548361487234 1 26536U 00055A 10065.16466392 .00000252 00000-0 16130-3 0 7688 2 26536 99.1758 80.1781 0009762 266.0935 93.9165 14.12549302487286 1 26536U 00055A 10065.94382635 .00000244 00000-0 15704-3 0 7701 2 26536 99.1764 80.9766 0009771 263.4373 96.5675 14.12549690487398 1 26536U 00055A 10066.29799181 .00000291 00000-0 18284-3 0 7694 2 26536 99.1765 81.3396 0009790 261.9492 98.0587 14.12550159487446 1 26536U 00055A 10066.29799181 .00000291 00000-0 18284-3 0 7706 2 26536 99.1765 81.3396 0009790 261.9492 98.0587 14.12550159487446 1 26536U 00055A 10066.65215657 .00000270 00000-0 17136-3 0 7710 2 26536 99.1769 81.7027 0009794 260.9487 99.0570 14.12550277487491 1 26536U 00055A 10067.43132064 .00000166 00000-0 11480-3 0 7717 2 26536 99.1771 82.5009 0009787 258.3247 101.6834 14.12550112487604 1 26536U 00055A 10067.85631869 .00000031 00000-0 42220-4 0 7729 2 26536 99.1774 82.9364 0009795 256.8439 103.1600 14.12549409487661 1 26536U 00055A 10068.28131789 -.00000046 00000-0 67407-6 0 7726 2 26536 99.1772 83.3717 0009772 255.8406 104.1666 14.12549152487729 1 26536U 00055A 10068.70631668 -.00000164 00000-0 -63464-4 0 7734 2 26536 99.1772 83.8071 0009782 254.5549 105.4515 14.12548466487782 1 26536U 00055A 10069.48548197 -.00000265 00000-0 -11773-3 0 7731 2 26536 99.1770 84.6048 0009742 252.4925 107.5184 14.12547886487896 1 26536U 00055A 10069.48548197 -.00000265 00000-0 -11773-3 0 7742 2 26536 99.1770 84.6048 0009742 252.4925 107.5184 14.12547886487896 1 26536U 00055A 10069.83964773 -.00000276 00000-0 -12391-3 0 7753 2 26536 99.1772 84.9675 0009742 251.4344 108.5752 14.12547507487949 1 26536U 00055A 10070.26464716 -.00000309 00000-0 -14176-3 0 7754 2 26536 99.1771 85.4027 0009731 250.3111 109.7014 14.12547260488001 1 26536U 00055A 10070.68964628 -.00000291 00000-0 -13199-3 0 7762 2 26536 99.1769 85.8377 0009734 248.8142 111.1996 14.12547151488060 1 26536U 00055A 10071.46881027 -.00000104 00000-0 -30780-4 0 7769 2 26536 99.1768 86.6353 0009795 246.2627 113.7538 14.12548083488176 1 26536U 00055A 10071.46881027 -.00000104 00000-0 -30780-4 0 7770 2 26536 99.1768 86.6353 0009795 246.2627 113.7538 14.12548083488176 1 26536U 00055A 10071.89380880 -.00000012 00000-0 18995-4 0 7780 2 26536 99.1765 87.0703 0009756 245.5545 114.4599 14.12548311488231 1 26536U 00055A 10072.31880786 .00000124 00000-0 92350-4 0 7788 2 26536 99.1764 87.5055 0009817 244.1483 115.8723 14.12549167488299 1 26536U 00055A 10072.74380553 .00000161 00000-0 11237-3 0 7798 2 26536 99.1764 87.9407 0009818 242.8376 117.1796 14.12549450488358 1 26536U 00055A 10073.45213566 .00000302 00000-0 18846-3 0 7796 2 26536 99.1760 88.6658 0009852 240.6034 119.4170 14.12550673488456 1 26536U 00055A 10073.45213566 .00000302 00000-0 18846-3 0 7808 2 26536 99.1760 88.6658 0009852 240.6034 119.4170 14.12550673488456 1 26536U 00055A 10073.87713349 .00000277 00000-0 17491-3 0 7815 2 26536 99.1762 89.1012 0009849 239.4742 120.5430 14.12550611488517 1 26536U 00055A 10074.23129918 .00000312 00000-0 19402-3 0 7813 2 26536 99.1756 89.4640 0009899 238.2310 121.7918 14.12551102488568 1 26536U 00055A 10074.65629682 .00000223 00000-0 14591-3 0 7828 2 26536 99.1758 89.8994 0009906 237.2632 122.7569 14.12550954488625 1 26536U 00055A 10075.43546024 .00000223 00000-0 14561-3 0 7820 2 26536 99.1762 90.6974 0009960 234.6834 125.3412 14.12551379488733 1 26536U 00055A 10075.86045813 .00000101 00000-0 79890-4 0 7830 2 26536 99.1763 91.1327 0009957 233.6054 126.4157 14.12550788488798 1 26536U 00055A 10076.28545715 .00000021 00000-0 36602-4 0 7838 2 26536 99.1760 91.5681 0009918 232.5949 127.4307 14.12550581488856 1 26536U 00055A 10076.71045568 -.00000072 00000-0 -13558-4 0 7841 2 26536 99.1759 92.0032 0009941 231.3113 128.7149 14.12550108488916 1 26536U 00055A 10077.41878707 -.00000143 00000-0 -52253-4 0 7842 2 26536 99.1760 92.7284 0009929 229.2025 130.8286 14.12549750489017 1 26536U 00055A 10077.84378561 -.00000221 00000-0 -93949-4 0 7857 2 26536 99.1760 93.1636 0009950 227.9130 132.1173 14.12549164489074 1 26536U 00055A 10078.26878482 -.00000232 00000-0 -99939-4 0 7858 2 26536 99.1760 93.5987 0009952 226.6784 133.3563 14.12549030489135 1 26536U 00055A 10078.69378353 -.00000276 00000-0 -12372-3 0 7861 2 26536 99.1761 94.0339 0009985 225.2630 134.7726 14.12548654489197 1 26536U 00055A 10079.04794938 -.00000236 00000-0 -10225-3 0 7863 2 26536 99.1761 94.3966 0010000 224.3374 135.7009 14.12548717489242 1 26536U 00055A 10079.89794650 -.00000142 00000-0 -51558-4 0 7880 2 26536 99.1756 95.2668 0010004 221.7239 138.3162 14.12548901489367 1 26536U 00055A 10080.25211238 -.00000048 00000-0 -89646-6 0 7873 2 26536 99.1755 95.6295 0010056 220.7340 139.3116 14.12549433489412 1 26536U 00055A 10080.25211238 -.00000048 00000-0 -89646-6 0 7884 2 26536 99.1755 95.6295 0010056 220.7340 139.3116 14.12549433489412 1 26536U 00055A 10080.67711037 -.00000019 00000-0 14952-4 0 7896 2 26536 99.1757 96.0648 0010049 219.3157 140.7291 14.12549577489478 1 26536U 00055A 10081.45627361 .00000150 00000-0 10624-3 0 7895 2 26536 99.1757 96.8625 0010157 216.8189 143.2303 14.12550690489580 1 26536U 00055A 10081.88127159 .00000212 00000-0 13990-3 0 7902 2 26536 99.1761 97.2982 0010072 215.9647 144.0840 14.12551055489649 1 26536U 00055A 10082.23543692 .00000298 00000-0 18647-3 0 7904 2 26536 99.1760 97.6608 0010139 214.8510 145.2029 14.12551751489698 1 26536U 00055A 10082.73126730 .00000280 00000-0 17662-3 0 7917 2 26536 99.1761 98.1688 0010165 213.4162 146.6364 14.12551939489763 1 26536U 00055A 10083.43959735 .00000267 00000-0 16935-3 0 7911 2 26536 99.1758 98.8943 0010204 211.2245 148.8325 14.12552344489865 1 26536U 00055A 10083.93542809 .00000184 00000-0 12471-3 0 7926 2 26536 99.1761 99.4022 0010219 209.7335 150.3226 14.12552048489939 1 26536U 00055A 10084.07709468 .00000145 00000-0 10372-3 0 7923 2 26536 99.1760 99.5475 0010193 209.3594 150.6995 14.12551912489952 1 26536U 00055A 10085.42292296 -.00000069 00000-0 -12248-4 0 7932 2 26536 99.1761 100.9258 0010185 205.3696 154.6979 14.12551182490147 1 26536U 00055A 10085.84792117 -.00000161 00000-0 -61487-4 0 7948 2 26536 99.1760 101.3609 0010217 204.2271 155.8391 14.12550517490203 1 26536U 00055A 10086.20208715 -.00000204 00000-0 -85254-4 0 7941 2 26536 99.1759 101.7237 0010162 203.2681 156.8026 14.12550300490256 1 26536U 00055A 10086.62708581 -.00000235 00000-0 -10197-3 0 7951 2 26536 99.1756 102.1585 0010168 201.9684 158.1048 14.12550012490314 1 26536U 00055A 10087.47708315 -.00000216 00000-0 -91407-4 0 7953 2 26536 99.1754 103.0289 0010190 199.5287 160.5508 14.12549931490438 1 26536U 00055A 10087.83124844 -.00000206 00000-0 -86091-4 0 7965 2 26536 99.1755 103.3914 0010197 198.4790 161.5999 14.12549712490488 1 26536U 00055A 10088.25624743 -.00000109 00000-0 -33546-4 0 7964 2 26536 99.1753 103.8266 0010215 197.4503 162.6357 14.12550238490545 1 26536U 00055A 10088.75207833 -.00000067 00000-0 -11096-4 0 7976 2 26536 99.1750 104.3341 0010247 195.9511 164.1341 14.12550325490614 1 26536U 00055A 10089.17707684 .00000113 00000-0 86149-4 0 7973 2 26536 99.1747 104.7692 0010335 194.9016 165.1906 14.12551328490678 1 26536U 00055A 10089.95623892 .00000199 00000-0 13294-3 0 7993 2 26536 99.1745 105.5667 0010349 192.5439 167.5482 14.12552065490781 1 26536U 00055A 10090.38123681 .00000296 00000-0 18546-3 0 7985 2 26536 99.1743 106.0017 0010440 191.3715 168.7258 14.12552864490848 1 26536U 00055A 10090.80623387 .00000289 00000-0 18120-3 0 7991 2 26536 99.1743 106.4371 0010434 190.0100 170.0846 14.12552957490901 1 26536U 00055A 10091.16039903 .00000339 00000-0 20834-3 0 7997 2 26536 99.1739 106.7998 0010518 189.0975 171.0029 14.12553493490950 1 26536U 00055A 10091.93956087 .00000232 00000-0 15069-3 0 8013 2 26536 99.1746 107.5981 0010544 186.8784 173.2219 14.12553371491064 1 26536U 00055A 10092.29372605 .00000163 00000-0 11346-3 0 8007 2 26536 99.1746 107.9610 0010578 185.7895 174.3145 14.12553241491117 1 26536U 00055A 10092.71872394 .00000040 00000-0 46832-4 0 8018 2 26536 99.1749 108.3963 0010584 184.7037 175.4011 14.12552704491173 1 26536U 00055A 10093.49788757 -.00000097 00000-0 -26962-4 0 8019 2 26536 99.1749 109.1942 0010578 182.4057 177.7068 14.12552255491289 1 26536U 00055A 10093.85205250 -.00000168 00000-0 -65727-4 0 8023 2 26536 99.1749 109.5567 0010643 181.3762 178.7354 14.12551668491332 1 26536U 00055A 10094.27705123 -.00000238 00000-0 -10329-3 0 8029 2 26536 99.1748 109.9919 0010632 180.0615 180.0548 14.12551307491394 1 26536U 00055A 10094.70204970 -.00000270 00000-0 -12082-3 0 8036 2 26536 99.1750 110.4270 0010674 178.8143 181.3051 14.12550966491451 1 26536U 00055A 10095.48121332 -.00000243 00000-0 -10610-3 0 8037 2 26536 99.1750 111.2251 0010709 176.6114 183.5143 14.12550949491561 1 26536U 00055A 10095.48121332 -.00000243 00000-0 -10610-3 0 8048 2 26536 99.1750 111.2251 0010709 176.6114 183.5143 14.12550949491561 1 26536U 00055A 10095.90621150 -.00000228 00000-0 -97839-4 0 8051 2 26536 99.1752 111.6602 0010713 175.4639 184.6618 14.12550683491622 1 26536U 00055A 10096.26037718 -.00000184 00000-0 -74000-4 0 8058 2 26536 99.1750 112.0230 0010730 174.5483 185.5830 14.12550898491677 1 26536U 00055A 10096.68537515 -.00000187 00000-0 -75634-4 0 8062 2 26536 99.1750 112.4580 0010767 173.2988 186.8331 14.12550781491733 1 26536U 00055A 10097.46453793 .00000006 00000-0 28566-4 0 8064 2 26536 99.1745 113.2553 0010786 171.3005 188.8368 14.12551807491840 1 26536U 00055A 10097.88953581 .00000101 00000-0 79603-4 0 8075 2 26536 99.1744 113.6905 0010731 170.0638 190.0757 14.12552295491908 1 26536U 00055A 10098.24370061 .00000237 00000-0 15349-3 0 8078 2 26536 99.1742 114.0532 0010778 169.3419 190.8026 14.12553193491956 1 26536U 00055A 10098.66869744 .00000241 00000-0 15562-3 0 8088 2 26536 99.1746 114.4887 0010806 168.1064 192.0365 14.12553430492014 1 26536U 00055A 10099.16452797 .00000395 00000-0 23876-3 0 8087 2 26536 99.1742 114.9964 0010809 166.9205 193.2281 14.12554501492084 1 26536U 00055A 10099.94368910 .00000305 00000-0 19025-3 0 8101 2 26536 99.1743 115.7941 0010850 164.8690 195.2790 14.12554547492199 1 26536U 00055A 10100.29785383 .00000308 00000-0 19193-3 0 8096 2 26536 99.1742 116.1571 0010868 163.8616 196.2905 14.12554847492246 1 26536U 00055A 10100.29785383 .00000308 00000-0 19193-3 0 8108 2 26536 99.1742 116.1571 0010868 163.8616 196.2905 14.12554847492246 1 26536U 00055A 10100.72285097 .00000123 00000-0 91625-4 0 8110 2 26536 99.1745 116.5924 0010920 162.8543 197.2965 14.12554096492302 1 26536U 00055A 10101.14784905 .00000056 00000-0 55716-4 0 8115 2 26536 99.1743 117.0277 0010866 161.4942 198.6611 14.12553957492368 1 26536U 00055A 10101.14784905 .00000056 00000-0 55716-4 0 8126 2 26536 99.1743 117.0277 0010866 161.4942 198.6611 14.12553957492368 1 26536U 00055A 10101.14784905 .00000056 00000-0 55716-4 0 8137 2 26536 99.1743 117.0277 0010866 161.4942 198.6611 14.12553957492368 1 26536U 00055A 10101.92701141 -.00000083 00000-0 -19599-4 0 8157 2 26536 99.1742 117.8253 0010917 159.5083 200.6500 14.12553266492476 1 26536U 00055A 10102.28117670 -.00000168 00000-0 -65392-4 0 8140 2 26536 99.1742 118.1880 0010904 158.4088 201.7534 14.12552905492529 1 26536U 00055A 10102.84784066 -.00000201 00000-0 -83442-4 0 8156 2 26536 99.1740 118.7679 0010949 156.8328 203.3331 14.12552570492607 1 26536U 00055A 10103.20200574 -.00000217 00000-0 -92030-4 0 8154 2 26536 99.1739 119.1305 0010948 155.8327 204.3363 14.12552453492654 1 26536U 00055A 10103.98116844 -.00000187 00000-0 -75798-4 0 8175 2 26536 99.1738 119.9281 0010953 153.7223 206.4508 14.12552368492763 1 26536U 00055A 10104.26450036 -.00000206 00000-0 -86150-4 0 8166 2 26536 99.1736 120.2182 0010997 153.0329 207.1415 14.12552187492803 1 26536U 00055A 10104.83116440 -.00000163 00000-0 -62764-4 0 8175 2 26536 99.1732 120.7980 0010954 151.3263 208.8511 14.12552160492885 1 26536U 00055A 10105.25616244 -.00000049 00000-0 -12126-5 0 8170 2 26536 99.1731 121.2332 0011024 150.5575 209.6267 14.12552794492944 1 26536U 00055A 10105.25616244 -.00000049 00000-0 -12126-5 0 8181 2 26536 99.1731 121.2332 0011024 150.5575 209.6267 14.12552794492944 1 26536U 00055A 10105.61032633 -.00000071 00000-0 -13342-4 0 8191 2 26536 99.1729 121.5955 0011061 149.6386 210.5428 14.12552703492990 1 26536U 00055A 10106.10615713 .00000108 00000-0 83361-4 0 8199 2 26536 99.1725 122.1031 0011027 148.3086 211.8787 14.12553645493060 1 26536U 00055A 10106.46032102 .00000144 00000-0 10314-3 0 8202 2 26536 99.1726 122.4655 0011098 147.4360 212.7519 14.12554044493112 1 26536U 00055A 10107.38114760 .00000359 00000-0 21923-3 0 8201 2 26536 99.1720 123.4084 0011100 145.0412 215.1505 14.12555538493244 1 26536U 00055A 10107.80614421 .00000317 00000-0 19632-3 0 8216 2 26536 99.1727 123.8442 0011152 143.8366 216.3544 14.12555539493308 1 26536U 00055A 10108.23114145 .00000306 00000-0 19058-3 0 8212 2 26536 99.1723 124.2794 0011136 142.5175 217.6772 14.12555808493367 1 26536U 00055A 10108.58530553 .00000237 00000-0 15308-3 0 8223 2 26536 99.1726 124.6424 0011106 141.6161 218.5790 14.12555687493417 1 26536U 00055A 10109.43530017 .00000092 00000-0 75041-4 0 8223 2 26536 99.1724 125.5126 0011180 139.1463 221.0545 14.12555326493533 1 26536U 00055A 10109.93113003 .00000002 00000-0 26316-4 0 8233 2 26536 99.1726 126.0204 0011146 137.6743 222.5262 14.12554873493600 1 26536U 00055A 10110.28529484 -.00000175 00000-0 -69365-4 0 8231 2 26536 99.1725 126.3831 0011174 136.5614 223.6407 14.12554074493655 1 26536U 00055A 10110.71029283 -.00000203 00000-0 -84702-4 0 8246 2 26536 99.1729 126.8184 0011211 135.6086 224.5980 14.12553767493711 1 26536U 00055A 10111.13529041 -.00000244 00000-0 -10666-3 0 8242 2 26536 99.1727 127.2535 0011210 134.3633 225.8456 14.12553498493776 1 26536U 00055A 10111.91445230 -.00000223 00000-0 -95513-4 0 8269 2 26536 99.1731 128.0512 0011269 132.3392 227.8720 14.12553227493887 1 26536U 00055A 10112.26861727 -.00000222 00000-0 -94789-4 0 8253 2 26536 99.1730 128.4138 0011281 131.3885 228.8267 14.12553195493931 1 26536U 00055A 10112.26861727 -.00000222 00000-0 -94789-4 0 8264 2 26536 99.1730 128.4138 0011281 131.3885 228.8267 14.12553195493931 1 26536U 00055A 10112.69361467 -.00000282 00000-0 -12711-3 0 8278 2 26536 99.1730 128.8488 0011289 130.3314 229.8835 14.12552721493999 1 26536U 00055A 10113.47277664 -.00000127 00000-0 -43463-4 0 8277 2 26536 99.1730 129.6463 0011327 128.5177 231.7036 14.12553436494103 1 26536U 00055A 10113.89777365 -.00000073 00000-0 -14187-4 0 8288 2 26536 99.1729 130.0814 0011304 127.1512 233.0683 14.12553473494160 1 26536U 00055A 10114.25193840 .00000066 00000-0 60773-4 0 8281 2 26536 99.1728 130.4441 0011294 126.5416 233.6845 14.12554293494216 1 26536U 00055A 10114.67693466 .00000094 00000-0 76126-4 0 8297 2 26536 99.1731 130.8794 0011347 125.3667 234.8573 14.12554548494279 1 26536U 00055A 10115.45609504 .00000344 00000-0 21084-3 0 8294 2 26536 99.1726 131.6768 0011333 123.2963 236.9322 14.12556253494386 1 26536U 00055A 10115.88109106 .00000314 00000-0 19506-3 0 8309 2 26536 99.1727 132.1120 0011340 121.9333 238.2913 14.12556233494445 1 26536U 00055A 10116.23525543 .00000406 00000-0 24462-3 0 8305 2 26536 99.1723 132.4748 0011342 121.2224 239.0086 14.12556983494491 1 26536U 00055A 10116.66025123 .00000313 00000-0 19443-3 0 8312 2 26536 99.1726 132.9100 0011292 119.9802 240.2475 14.12556878494557 1 26536U 00055A 10117.22691374 .00000202 00000-0 13451-3 0 8312 2 26536 99.1718 133.4904 0011307 118.3236 241.9068 14.12556670494632 1 26536U 00055A 10117.22691374 .00000202 00000-0 13451-3 0 8323 2 26536 99.1718 133.4904 0011307 118.3236 241.9068 14.12556670494632 1 26536U 00055A 10117.79357578 .00000133 00000-0 97285-4 0 8332 2 26536 99.1720 134.0706 0011294 116.8295 243.4015 14.12556513494719 1 26536U 00055A 10118.14773984 -.00000009 00000-0 20147-4 0 8331 2 26536 99.1714 134.4334 0011305 115.4521 244.7789 14.12555960494765 1 26536U 00055A 10118.14773984 -.00000009 00000-0 20147-4 0 8342 2 26536 99.1714 134.4334 0011305 115.4521 244.7789 14.12555960494765 1 26536U 00055A 10118.64356989 -.00000060 00000-0 -73565-5 0 8351 2 26536 99.1715 134.9411 0011318 114.1977 246.0372 14.12555730494838 1 26536U 00055A 10119.42273109 -.00000201 00000-0 -83606-4 0 8353 2 26536 99.1715 135.7386 0011348 111.7840 248.4526 14.12554959494944 1 26536U 00055A 10119.42273109 -.00000201 00000-0 -83606-4 0 8364 2 26536 99.1715 135.7386 0011348 111.7840 248.4526 14.12554959494944 1 26536U 00055A 10119.84772829 -.00000177 00000-0 -70286-4 0 8376 2 26536 99.1715 136.1736 0011417 111.0646 249.1752 14.12554889495001 1 26536U 00055A 10120.27272513 -.00000200 00000-0 -82935-4 0 8371 2 26536 99.1712 136.6086 0011397 109.9094 250.3305 14.12554684495068 1 26536U 00055A 10120.62688932 -.00000245 00000-0 -10733-3 0 8382 2 26536 99.1713 136.9712 0011434 109.2653 250.9753 14.12554348495110 1 26536U 00055A 10121.47688297 -.00000167 00000-0 -64961-4 0 8386 2 26536 99.1712 137.8412 0011454 107.3402 252.9034 14.12554634495234 1 26536U 00055A 10121.83104689 -.00000175 00000-0 -69297-4 0 8391 2 26536 99.1713 138.2038 0011470 106.3401 253.9013 14.12554338495284 1 26536U 00055A 10122.25604433 -.00000061 00000-0 -77214-5 0 8393 2 26536 99.1713 138.6389 0011451 105.3399 254.9079 14.12554940495340 1 26536U 00055A 10122.61020758 -.00000038 00000-0 44435-5 0 8409 2 26536 99.1716 139.0017 0011465 104.3360 255.9090 14.12555049495398 1 26536U 00055A 10123.38936745 .00000170 00000-0 11682-3 0 8408 2 26536 99.1717 139.7992 0011444 102.4936 257.7539 14.12556314495500 1 26536U 00055A 10124.38102466 .00000371 00000-0 22559-3 0 8413 2 26536 99.1717 140.8147 0011455 100.4639 259.7862 14.12557894495645 1 26536U 00055A 10124.73518714 .00000314 00000-0 19463-3 0 8427 2 26536 99.1721 141.1775 0011449 99.4566 260.7881 14.12557792495695 1 26536U 00055A 10125.51434648 .00000260 00000-0 16563-3 0 8425 2 26536 99.1722 141.9756 0011428 97.3621 262.8843 14.12558126495805 1 26536U 00055A 10125.93934238 .00000219 00000-0 14330-3 0 8436 2 26536 99.1726 142.4106 0011443 96.3503 263.8949 14.12558011495866 1 26536U 00055A 10126.29350599 .00000069 00000-0 62494-4 0 8436 2 26536 99.1724 142.7732 0011475 95.2232 265.0216 14.12557453495910 1 26536U 00055A 10126.71850262 -.00000074 00000-0 -14739-4 0 8443 2 26536 99.1725 143.2084 0011455 94.1181 266.1273 14.12556764495971 1 26536U 00055A 10127.49766317 -.00000170 00000-0 -66727-4 0 8447 2 26536 99.1726 144.0060 0011487 92.2241 268.0256 14.12556345496086 1 26536U 00055A 10127.92265928 -.00000182 00000-0 -73169-4 0 8459 2 26536 99.1726 144.4410 0011484 91.0893 269.1581 14.12556057496146 1 26536U 00055A 10128.27682319 -.00000224 00000-0 -95654-4 0 8455 2 26536 99.1727 144.8034 0011502 90.2040 270.0447 14.12555824496197 1 26536U 00055A 10128.77265244 -.00000207 00000-0 -86525-4 0 8463 2 26536 99.1729 145.3110 0011502 88.7434 271.5051 14.12555652496263 1 26536U 00055A 10129.12681627 -.00000191 00000-0 -78134-4 0 8469 2 26536 99.1729 145.6735 0011491 87.7237 272.5259 14.12555677496310 1 26536U 00055A 10129.90597600 -.00000144 00000-0 -52801-4 0 8485 2 26536 99.1726 146.4710 0011498 85.5743 274.6734 14.12555688496429 1 26536U 00055A 10130.33097261 -.00000063 00000-0 -86364-5 0 8473 2 26536 99.1725 146.9061 0011470 84.5669 275.6843 14.12556139496488 1 26536U 00055A 10130.82680096 -.00000021 00000-0 13822-4 0 8483 2 26536 99.1722 147.4135 0011480 83.3249 276.9229 14.12556259496558 1 26536U 00055A 10131.18096448 .00000116 00000-0 87831-4 0 8480 2 26536 99.1721 147.7760 0011428 82.5666 277.6849 14.12557093496609 1 26536U 00055A 10131.96012247 .00000239 00000-0 15422-3 0 8506 2 26536 99.1719 148.5733 0011458 80.3426 279.9044 14.12558013496715 1 26536U 00055A 10132.38511803 .00000308 00000-0 19171-3 0 8495 2 26536 99.1717 149.0080 0011432 79.4764 280.7717 14.12558645496774 1 26536U 00055A 10132.81011305 .00000294 00000-0 18404-3 0 8509 2 26536 99.1716 149.4431 0011455 78.3812 281.8630 14.12558767496832 1 26536U 00055A 10133.16427618 .00000354 00000-0 21628-3 0 8505 2 26536 99.1711 149.8058 0011426 77.4257 282.8212 14.12559366496885 1 26536U 00055A 10133.94343372 .00000275 00000-0 17358-3 0 8524 2 26536 99.1711 150.6034 0011417 75.4243 284.8175 14.12559452496990 1 26536U 00055A 10134.29759675 .00000193 00000-0 12961-3 0 8513 2 26536 99.1707 150.9659 0011442 74.3037 285.9376 14.12559271497049 1 26536U 00055A 10134.79342491 .00000073 00000-0 64424-4 0 8522 2 26536 99.1707 151.4734 0011420 73.0269 287.2124 14.12558780497116 1 26536U 00055A 10135.21842088 -.00000046 00000-0 17056-6 0 8529 2 26536 99.1704 151.9085 0011460 71.7431 288.4966 14.12558351497174 1 26536U 00055A 10135.57258422 -.00000121 00000-0 -40299-4 0 8530 2 26536 99.1705 152.2711 0011430 70.7523 289.4875 14.12557988497224 1 26536U 00055A 10136.42257597 -.00000226 00000-0 -96711-4 0 8533 2 26536 99.1703 153.1409 0011458 68.5898 291.6485 14.12557314497344 1 26536U 00055A 10136.42257597 -.00000226 00000-0 -96711-4 0 8544 2 26536 99.1703 153.1409 0011458 68.5898 291.6485 14.12557314497344 1 26536U 00055A 10136.77673935 -.00000263 00000-0 -11689-3 0 8552 2 26536 99.1703 153.5035 0011438 67.8221 292.4150 14.12556909497395 1 26536U 00055A 10137.20173555 -.00000258 00000-0 -11449-3 0 8552 2 26536 99.1700 153.9386 0011423 66.6835 293.5546 14.12556811497457 1 26536U 00055A 10137.55589868 -.00000308 00000-0 -14134-3 0 8569 2 26536 99.1701 154.3010 0011416 65.7480 294.4884 14.12556488497506 1 26536U 00055A 10138.33505749 -.00000183 00000-0 -73788-4 0 8564 2 26536 99.1700 155.0985 0011366 63.9479 296.2872 14.12556867497616 1 26536U 00055A 10138.76005322 -.00000113 00000-0 -36113-4 0 8578 2 26536 99.1700 155.5335 0011365 62.8957 297.3379 14.12557030497671 1 26536U 00055A 10139.18504894 .00000023 00000-0 37789-4 0 8571 2 26536 99.1698 155.9685 0011293 61.8963 298.3392 14.12557756497733 1 26536U 00055A 10139.96420622 .00000145 00000-0 10354-3 0 8598 2 26536 99.1704 156.7664 0011325 59.7583 300.4712 14.12558567497841 1 26536U 00055A 10140.31836892 .00000257 00000-0 16426-3 0 8588 2 26536 99.1703 157.1289 0011262 59.0159 301.2150 14.12559315497892 1 26536U 00055A 10140.31836892 .00000257 00000-0 16426-3 0 8599 2 26536 99.1703 157.1289 0011262 59.0159 301.2150 14.12559315497892 1 26536U 00055A 10140.67253086 .00000231 00000-0 15000-3 0 8607 2 26536 99.1706 157.4918 0011279 58.1018 302.1239 14.12559326497945 1 26536U 00055A 10141.45168800 .00000378 00000-0 22939-3 0 8604 2 26536 99.1704 158.2895 0011240 56.0667 304.1585 14.12560673498057 1 26536U 00055A 10141.94751481 .00000298 00000-0 18638-3 0 8614 2 26536 99.1709 158.7973 0011235 54.4949 305.7238 14.12560488498127 1 26536U 00055A 10142.37251012 .00000270 00000-0 17100-3 0 8610 2 26536 99.1708 159.2325 0011246 53.3957 306.8240 14.12560664498189 1 26536U 00055A 10142.72667246 .00000158 00000-0 11074-3 0 8629 2 26536 99.1711 159.5952 0011234 52.3673 307.8485 14.12560182498236 1 26536U 00055A 10143.50583075 -.00000027 00000-0 10699-4 0 8622 2 26536 99.1709 160.3927 0011239 50.2396 309.9760 14.12559586498346 1 26536U 00055A 10143.50583075 -.00000027 00000-0 10699-4 0 8633 2 26536 99.1709 160.3927 0011239 50.2396 309.9760 14.12559586498346 1 26536U 00055A 10143.93082580 -.00000091 00000-0 -24127-4 0 8649 2 26536 99.1710 160.8276 0011244 49.1500 311.0616 14.12559115498409 1 26536U 00055A 10144.35582148 -.00000163 00000-0 -63044-4 0 8642 2 26536 99.1707 161.2626 0011276 47.8110 312.4011 14.12558827498465 1 26536U 00055A 10144.85164934 -.00000220 00000-0 -93762-4 0 8651 2 26536 99.1709 161.7700 0011239 46.6375 313.5713 14.12558311498531 1 26536U 00055A 10145.20581249 -.00000241 00000-0 -10498-3 0 8650 2 26536 99.1706 162.1325 0011271 45.5250 314.6844 14.12558194498583 1 26536U 00055A 10145.63080784 -.00000261 00000-0 -11583-3 0 8664 2 26536 99.1706 162.5674 0011255 44.4698 315.7373 14.12557926498648 1 26536U 00055A 10146.40996570 -.00000208 00000-0 -87257-4 0 8662 2 26536 99.1704 163.3647 0011205 42.3634 317.8401 14.12557995498750 1 26536U 00055A 10146.83496113 -.00000149 00000-0 -55224-4 0 8671 2 26536 99.1703 163.7996 0011193 41.3470 318.8550 14.12558085498817 1 26536U 00055A 10147.18912389 -.00000020 00000-0 14195-4 0 8677 2 26536 99.1702 164.1622 0011075 40.6267 319.5781 14.12558822498860 1 26536U 00055A 10147.54328549 -.00000032 00000-0 81577-5 0 8689 2 26536 99.1700 164.5244 0011063 39.7066 320.4922 14.12558875498917 1 26536U 00055A 10148.32244259 .00000256 00000-0 16330-3 0 8681 2 26536 99.1695 165.3218 0010975 37.6107 322.5876 14.12560469499020 1 26536U 00055A 10148.74743630 .00000267 00000-0 16943-3 0 8697 2 26536 99.1697 165.7568 0011010 36.4200 323.7707 14.12560666499087 1 26536U 00055A 10149.45576013 .00000340 00000-0 20887-3 0 8699 2 26536 99.1695 166.4819 0010897 34.6177 325.5707 14.12561589499183 1 26536U 00055A 10149.88075429 .00000346 00000-0 21223-3 0 8704 2 26536 99.1696 166.9169 0010894 33.3806 326.8044 14.12561865499241 1 26536U 00055A 10150.23491622 .00000326 00000-0 20120-3 0 8705 2 26536 99.1692 167.2798 0010871 32.4741 327.7093 14.12562021499296 1 26536U 00055A 10150.65991043 .00000240 00000-0 15475-3 0 8716 2 26536 99.1696 167.7151 0010865 31.1622 329.0174 14.12561854499350 1 26536U 00055A 10151.43906751 .00000118 00000-0 89211-4 0 8719 2 26536 99.1693 168.5126 0010908 29.1570 331.0210 14.12561618499469 1 26536U 00055A 10151.79322936 .00000005 00000-0 27981-4 0 8727 2 26536 99.1694 168.8753 0010860 28.1482 332.0244 14.12560989499511 1 26536U 00055A 10152.28905681 -.00000103 00000-0 -30234-4 0 8722 2 26536 99.1693 169.3828 0010927 26.7399 333.4315 14.12560593499586 1 26536U 00055A 10152.71405176 -.00000145 00000-0 -52994-4 0 8738 2 26536 99.1697 169.8181 0010901 25.6638 334.5061 14.12560256499646 1 26536U 00055A 10153.49320904 -.00000217 00000-0 -92103-4 0 8735 2 26536 99.1696 170.6158 0010825 23.7890 336.3789 14.12559870499752 1 26536U 00055A 10153.84737119 -.00000185 00000-0 -74789-4 0 8749 2 26536 99.1697 170.9783 0010810 22.8962 337.2686 14.12559793499800 1 26536U 00055A 10154.27236608 -.00000186 00000-0 -75310-4 0 8746 2 26536 99.1697 171.4132 0010822 21.6610 338.5020 14.12559714499869 1 26536U 00055A 10154.62652838 -.00000181 00000-0 -72433-4 0 8751 2 26536 99.1699 171.7759 0010821 20.7361 339.4245 14.12559606499916 1 26536U 00055A 10155.33485273 -.00000106 00000-0 -32122-4 0 8755 2 26536 99.1699 172.5005 0010747 18.8389 341.3188 14.12559946500013 1 26536U 00055A 10155.75984728 -.00000049 00000-0 -12767-5 0 8761 2 26536 99.1699 172.9356 0010719 17.7608 342.3942 14.12560114500071 1 26536U 00055A 10156.11400940 .00000091 00000-0 74656-4 0 8760 2 26536 99.1696 173.2980 0010665 16.6108 343.5457 14.12560944500129 1 26536U 00055A 10156.89316427 .00000191 00000-0 12857-3 0 8788 2 26536 99.1699 174.0955 0010706 14.5750 345.5708 14.12561655500232 1 26536U 00055A 10157.24732649 .00000300 00000-0 18742-3 0 8776 2 26536 99.1697 174.4581 0010629 13.5207 346.6280 14.12562429500281 1 26536U 00055A 10157.24732649 .00000300 00000-0 18742-3 0 8787 2 26536 99.1697 174.4581 0010629 13.5207 346.6280 14.12562429500281 1 26536U 00055A 10157.67231979 .00000270 00000-0 17089-3 0 8794 2 26536 99.1701 174.8933 0010652 12.2719 347.8703 14.12562545500341 1 26536U 00055A 10158.45147517 .00000360 00000-0 21963-3 0 8791 2 26536 99.1698 175.6906 0010576 10.1741 349.9656 14.12563542500452 1 26536U 00055A 10158.80563625 .00000191 00000-0 12829-3 0 8807 2 26536 99.1701 176.0533 0010568 9.0289 351.1026 14.12562817500509 1 26536U 00055A 10159.23063095 .00000167 00000-0 11531-3 0 8803 2 26536 99.1699 176.4883 0010590 7.8448 352.2886 14.12562939500562 1 26536U 00055A 10159.58479248 .00000121 00000-0 90662-4 0 8816 2 26536 99.1702 176.8509 0010567 6.8355 353.2957 14.12562910500611 1 26536U 00055A 10160.29311597 .00000002 00000-0 26530-4 0 8819 2 26536 99.1701 177.5762 0010619 5.0203 355.1053 14.12562429500714 1 26536U 00055A 10160.71811034 -.00000085 00000-0 -20910-4 0 8827 2 26536 99.1700 178.0110 0010624 3.8563 356.2663 14.12561940500779 1 26536U 00055A 10161.49726697 -.00000172 00000-0 -67487-4 0 8820 2 26536 99.1699 178.8085 0010659 1.6883 358.4328 14.12561594500883 1 26536U 00055A 10161.92226110 -.00000190 00000-0 -77526-4 0 8839 2 26536 99.1700 179.2434 0010644 0.5728 359.5434 14.12561221500943 1 26536U 00055A 10162.27642346 -.00000202 00000-0 -83801-4 0 8838 2 26536 99.1696 179.6059 0010675 359.5777 0.5388 14.12561152500998 1 26536U 00055A 10162.70141777 -.00000239 00000-0 -10371-3 0 8840 2 26536 99.1697 180.0408 0010621 358.4269 1.6860 14.12560784501053 1 26536U 00055A 10163.12641243 -.00000134 00000-0 -47249-4 0 8849 2 26536 99.1695 180.4759 0010646 357.0724 3.0415 14.12561264501115 1 26536U 00055A 10163.90556788 -.00000091 00000-0 -23869-4 0 8860 2 26536 99.1693 181.2731 0010601 354.8875 5.2180 14.12561286501224 1 26536U 00055A 10164.25972996 .00000015 00000-0 33252-4 0 8852 2 26536 99.1690 181.6356 0010560 353.7196 6.3878 14.12561901501271 1 26536U 00055A 10164.68472340 .00000007 00000-0 29047-4 0 8866 2 26536 99.1694 182.0705 0010576 352.5711 7.5304 14.12561948501330 1 26536U 00055A 10165.18054984 .00000214 00000-0 14097-3 0 8860 2 26536 99.1687 182.5780 0010462 350.7070 9.3960 14.12563084501401 1 26536U 00055A 10165.60554255 .00000249 00000-0 16009-3 0 8877 2 26536 99.1690 183.0130 0010439 349.6056 10.4912 14.12563557501466 1 26536U 00055A 10166.38469680 .00000376 00000-0 22857-3 0 8879 2 26536 99.1688 183.8104 0010309 347.1864 12.9059 14.12564692501570 1 26536U 00055A 10166.73885757 .00000272 00000-0 17230-3 0 8880 2 26536 99.1695 184.1731 0010262 346.1699 13.9163 14.12564332501625 1 26536U 00055A 10167.16385148 .00000274 00000-0 17349-3 0 8880 2 26536 99.1695 184.6081 0010192 344.8585 15.2284 14.12564594501684 1 26536U 00055A 10167.94300569 .00000219 00000-0 14369-3 0 8901 2 26536 99.1699 185.4058 0010194 342.7197 17.3609 14.12564777501798 1 26536U 00055A 10168.29716711 .00000097 00000-0 77666-4 0 8892 2 26536 99.1699 185.7684 0010177 341.9193 18.1586 14.12564315501841 1 26536U 00055A 10168.29716711 .00000097 00000-0 77666-4 0 8904 2 26536 99.1699 185.7684 0010177 341.9193 18.1586 14.12564315501841 1 26536U 00055A 10168.72216112 -.00000041 00000-0 31913-5 0 8919 2 26536 99.1700 186.2035 0010177 340.6502 19.4250 14.12563646501905 1 26536U 00055A 10169.50131739 -.00000160 00000-0 -61261-4 0 8918 2 26536 99.1700 187.0010 0010087 338.5931 21.4831 14.12563107502012 1 26536U 00055A 10169.50131739 -.00000160 00000-0 -61261-4 0 8929 2 26536 99.1700 187.0010 0010087 338.5931 21.4831 14.12563107502012 1 26536U 00055A 10169.92631096 -.00000175 00000-0 -69149-4 0 8936 2 26536 99.1702 187.4358 0010098 337.4369 22.6339 14.12562793502070 1 26536U 00055A 10170.28047295 -.00000226 00000-0 -97096-4 0 8938 2 26536 99.1701 187.7983 0010097 336.6010 23.4694 14.12562496502128 1 26536U 00055A 10170.63463478 -.00000254 00000-0 -11199-3 0 8943 2 26536 99.1703 188.1609 0010063 335.5479 24.5212 14.12562226502174 1 26536U 00055A 10171.34295807 -.00000231 00000-0 -99337-4 0 8947 2 26536 99.1703 188.8859 0010033 333.3651 26.7004 14.12562152502275 1 26536U 00055A 10171.34295807 -.00000231 00000-0 -99337-4 0 8958 2 26536 99.1703 188.8859 0010033 333.3651 26.7004 14.12562152502275 1 26536U 00055A 10171.76795222 -.00000191 00000-0 -77820-4 0 8969 2 26536 99.1701 189.3209 0010055 332.2326 27.8306 14.12562116502333 1 26536U 00055A 10172.12211406 -.00000064 00000-0 -91366-5 0 8968 2 26536 99.1699 189.6833 0010065 331.0631 29.0016 14.12562742502384 1 26536U 00055A 10172.54710735 -.00000021 00000-0 14082-4 0 8975 2 26536 99.1701 190.1183 0010025 329.8283 30.2329 14.12563038502444 1 26536U 00055A 10173.39709428 .00000098 00000-0 78309-4 0 8971 2 26536 99.1699 190.9880 0009890 326.8958 33.1614 14.12563790502563 1 26536U 00055A 10173.82208754 .00000170 00000-0 11740-3 0 8982 2 26536 99.1700 191.4231 0009908 325.8060 34.2473 14.12564193502625 1 26536U 00055A 10174.17624880 .00000299 00000-0 18701-3 0 8989 2 26536 99.1697 191.7856 0009888 324.4343 35.6203 14.12565030502674 1 26536U 00055A 10174.60124139 .00000285 00000-0 17939-3 0 8997 2 26536 99.1700 192.2209 0009867 323.1828 36.8667 14.12565273502731 1 26536U 00055A 10175.45122757 .00000332 00000-0 20495-3 0 8999 2 26536 99.1696 193.0910 0009773 320.4531 39.5940 14.12566121502850 1 26536U 00055A 10176.08871672 .00000252 00000-0 16136-3 0 9007 2 26536 99.1697 193.7439 0009818 318.7063 41.3333 14.12566057502949 1 26536U 00055A 10176.65537468 .00000153 00000-0 10812-3 0 9018 2 26536 99.1697 194.3239 0009825 317.0139 43.0244 14.12565811503025 1 26536U 00055A 10177.08036819 .00000030 00000-0 41405-4 0 9017 2 26536 99.1694 194.7588 0009790 315.8685 44.1673 14.12565325503080 1 26536U 00055A 10177.93035553 -.00000151 00000-0 -56402-4 0 9036 2 26536 99.1695 195.6287 0009786 313.2332 46.7991 14.12564409503200 1 26536U 00055A 10178.35534971 -.00000229 00000-0 -98535-4 0 9029 2 26536 99.1693 196.0637 0009805 312.4253 47.6072 14.12563988503264 1 26536U 00055A 10179.13450534 -.00000256 00000-0 -11287-3 0 9037 2 26536 99.1695 196.8613 0009777 310.1608 49.8711 14.12563600503372 1 26536U 00055A 10179.55949911 -.00000262 00000-0 -11644-3 0 9040 2 26536 99.1694 197.2961 0009762 308.8773 51.1536 14.12563480503437 1 26536U 00055A 10180.40948613 -.00000122 00000-0 -40913-4 0 9041 2 26536 99.1696 198.1659 0009752 306.2330 53.7948 14.12563957503550 1 26536U 00055A 10180.97614432 .00000000 00000-0 25534-4 0 9058 2 26536 99.1693 198.7459 0009793 304.9534 55.0735 14.12564512503633 1 26536U 00055A 10181.54280210 .00000093 00000-0 75815-4 0 9065 2 26536 99.1693 199.3259 0009728 302.6359 57.3913 14.12565154503711 1 26536U 00055A 10182.03862695 .00000215 00000-0 14170-3 0 9065 2 26536 99.1693 199.8335 0009754 301.3229 58.7008 14.12565925503785 1 26536U 00055A 10182.46361969 .00000280 00000-0 17665-3 0 9075 2 26536 99.1694 200.2683 0009717 299.7814 60.2412 14.12566529503843 1 26536U 00055A 10182.88861224 .00000281 00000-0 17705-3 0 9087 2 26536 99.1696 200.7036 0009715 298.6554 61.3623 14.12566636503901 1 26536U 00055A 10183.24277339 .00000365 00000-0 22255-3 0 9085 2 26536 99.1693 201.0663 0009699 297.1161 62.9048 14.12567319503959 1 26536U 00055A 10183.80942983 .00000318 00000-0 19689-3 0 9097 2 26536 99.1694 201.6463 0009736 295.6990 64.3159 14.12567453504037 1 26536U 00055A 10184.51775179 .00000157 00000-0 11014-3 0 9092 2 26536 99.1695 202.3715 0009738 293.6338 66.3805 14.12567164504132 1 26536U 00055A 10184.94274475 .00000082 00000-0 69869-4 0 9103 2 26536 99.1697 202.8065 0009709 292.2218 67.7897 14.12566796504199 1 26536U 00055A 10185.43857041 -.00000012 00000-0 18857-4 0 9109 2 26536 99.1695 203.3139 0009683 290.9569 69.0548 14.12566484504260 1 26536U 00055A 10185.79273169 -.00000067 00000-0 -10668-4 0 9115 2 26536 99.1696 203.6764 0009666 289.8124 70.1986 14.12566126504311 1 26536U 00055A 10186.21772529 -.00000152 00000-0 -56735-4 0 9117 2 26536 99.1697 204.1112 0009650 288.8694 71.1417 14.12565751504378 1 26536U 00055A 10187.06771245 -.00000207 00000-0 -86449-4 0 9122 2 26536 99.1693 204.9810 0009645 286.4508 73.5600 14.12565298504498 1 26536U 00055A 10187.56353829 -.00000255 00000-0 -11254-3 0 9136 2 26536 99.1695 205.4885 0009635 284.8127 75.1972 14.12564901504564 1 26536U 00055A 10188.05936432 -.00000193 00000-0 -79276-4 0 9138 2 26536 99.1697 205.9959 0009644 283.4830 76.5276 14.12565007504637 1 26536U 00055A 10188.05936432 -.00000193 00000-0 -79276-4 0 9149 2 26536 99.1697 205.9959 0009644 283.4830 76.5276 14.12565007504637 1 26536U 00055A 10188.62602231 -.00000148 00000-0 -54429-4 0 9153 2 26536 99.1698 206.5758 0009608 281.5917 78.4192 14.12565128504718 1 26536U 00055A 10189.40517638 -.00000027 00000-0 10654-4 0 9153 2 26536 99.1698 207.3729 0009628 279.1043 80.9054 14.12565744504821 1 26536U 00055A 10189.40517638 -.00000027 00000-0 10654-4 0 9164 2 26536 99.1698 207.3729 0009628 279.1043 80.9054 14.12565744504821 1 26536U 00055A 10189.75933725 -.00000004 00000-0 23235-4 0 9176 2 26536 99.1697 207.7353 0009609 277.9825 82.0250 14.12565756504879 1 26536U 00055A 10190.25516301 .00000168 00000-0 11584-3 0 9173 2 26536 99.1695 208.2426 0009657 276.3167 83.6954 14.12566766504947 1 26536U 00055A 10190.60932294 .00000203 00000-0 13489-3 0 9182 2 26536 99.1698 208.6051 0009633 275.1271 84.8814 14.12567167504994 1 26536U 00055A 10191.38847605 .00000339 00000-0 20834-3 0 9181 2 26536 99.1696 209.4025 0009653 272.6582 87.3498 14.12568302505103 1 26536U 00055A 10191.81346843 .00000293 00000-0 18351-3 0 9198 2 26536 99.1698 209.8375 0009647 271.2572 88.7479 14.12568290505160 1 26536U 00055A 10192.23846141 .00000318 00000-0 19693-3 0 9199 2 26536 99.1693 210.2726 0009658 269.8674 90.1401 14.12568733505220 1 26536U 00055A 10193.44260754 .00000161 00000-0 11204-3 0 9201 2 26536 99.1693 211.5054 0009638 266.4457 93.5609 14.12568611505398 1 26536U 00055A 10193.79676811 .00000043 00000-0 48724-4 0 9212 2 26536 99.1692 211.8678 0009655 265.4387 94.5652 14.12568033505445 1 26536U 00055A 10194.22176153 -.00000108 00000-0 -32966-4 0 9210 2 26536 99.1691 212.3029 0009631 264.4278 95.5762 14.12567370505505 1 26536U 00055A 10194.64675522 -.00000131 00000-0 -45409-4 0 9223 2 26536 99.1693 212.7381 0009615 263.3934 96.6142 14.12567246505563 1 26536U 00055A 10195.42590962 -.00000208 00000-0 -87088-4 0 9228 2 26536 99.1695 213.5355 0009606 260.9860 99.0219 14.12566661505670 1 26536U 00055A 10195.42590962 -.00000208 00000-0 -87088-4 0 9239 2 26536 99.1695 213.5355 0009606 260.9860 99.0219 14.12566661505670 1 26536U 00055A 10195.85090302 -.00000224 00000-0 -95600-4 0 9247 2 26536 99.1697 213.9706 0009612 259.4950 100.5131 14.12566359505738 1 26536U 00055A 10196.27589656 -.00000203 00000-0 -84357-4 0 9243 2 26536 99.1694 214.4058 0009630 258.1568 101.8542 14.12566429505796 1 26536U 00055A 10196.70088959 -.00000205 00000-0 -85631-4 0 9250 2 26536 99.1697 214.8409 0009612 256.6613 103.3486 14.12566251505851 1 26536U 00055A 10197.48004364 -.00000099 00000-0 -28052-4 0 9259 2 26536 99.1696 215.6381 0009632 254.3433 105.6688 14.12566791505965 1 26536U 00055A 10198.47169360 .00000111 00000-0 85143-4 0 9265 2 26536 99.1695 216.6530 0009697 250.8104 109.2036 14.12567873506104 1 26536U 00055A 10198.89668624 .00000144 00000-0 10306-3 0 9273 2 26536 99.1698 217.0881 0009688 249.6163 110.3967 14.12568106506164 1 26536U 00055A 10199.25084702 .00000283 00000-0 17823-3 0 9278 2 26536 99.1695 217.4507 0009755 248.3920 111.6254 14.12569013506219 1 26536U 00055A 10199.67583884 .00000269 00000-0 17062-3 0 9289 2 26536 99.1699 217.8859 0009749 247.1096 112.9045 14.12569211506279 1 26536U 00055A 10200.10083145 .00000331 00000-0 20415-3 0 9281 2 26536 99.1697 218.3208 0009783 245.7452 114.2711 14.12569783506335 1 26536U 00055A 10200.87998413 .00000286 00000-0 17967-3 0 9308 2 26536 99.1696 219.1184 0009812 243.4893 116.5267 14.12569998506444 1 26536U 00055A 10201.44664073 .00000210 00000-0 13855-3 0 9291 2 26536 99.1695 219.6982 0009780 241.9337 118.0826 14.12569986506528 1 26536U 00055A 10201.87163351 .00000088 00000-0 72880-4 0 9300 2 26536 99.1697 220.1335 0009830 240.3627 119.6533 14.12569410506580 1 26536U 00055A 10202.22579465 -.00000054 00000-0 -37221-5 0 9303 2 26536 99.1696 220.4961 0009800 239.3173 120.7005 14.12568792506633 1 26536U 00055A 10202.93411623 -.00000117 00000-0 -38130-4 0 9323 2 26536 99.1701 221.2212 0009801 237.2399 122.7795 14.12568372506739 1 26536U 00055A 10203.28827768 -.00000194 00000-0 -79604-4 0 9318 2 26536 99.1698 221.5837 0009743 236.4947 123.5278 14.12567992506782 1 26536U 00055A 10203.71327107 -.00000292 00000-0 -13259-3 0 9321 2 26536 99.1699 222.0187 0009789 234.8292 125.1948 14.12567338506845 1 26536U 00055A 10204.06743244 -.00000268 00000-0 -11960-3 0 9335 2 26536 99.1696 222.3811 0009789 233.8631 126.1650 14.12567415506897 1 26536U 00055A 10204.56325766 -.00000238 00000-0 -10359-3 0 9344 2 26536 99.1695 222.8883 0009780 232.4341 127.5952 14.12567405506961 1 26536U 00055A 10205.41324386 -.00000135 00000-0 -47716-4 0 9340 2 26536 99.1695 223.7581 0009822 229.7625 130.2706 14.12567679507082 1 26536U 00055A 10205.76741306 -.00000002 00000-0 00000+0 0 9356 2 26536 99.1701 224.1208 0009836 229.3554 130.7244 14.12568439507136 1 26536U 00055A 10206.47572556 .00000061 00000-0 58123-4 0 9363 2 26536 99.1694 224.8454 0009923 226.2653 133.7717 14.12568740507234 1 26536U 00055A 10206.82988593 .00000108 00000-0 83537-4 0 9374 2 26536 99.1693 225.2079 0009882 225.4325 134.6035 14.12568959507282 1 26536U 00055A 10207.25487886 .00000309 00000-0 19245-3 0 9378 2 26536 99.1691 225.6430 0009916 224.6106 135.4320 14.12570225507343 1 26536U 00055A 10207.25487886 .00000309 00000-0 19245-3 0 9389 2 26536 99.1691 225.6430 0009916 224.6106 135.4320 14.12570225507343 1 26536U 00055A 10207.67987025 .00000269 00000-0 17039-3 0 9390 2 26536 99.1692 226.0779 0009919 223.2661 136.7722 14.12570280507407 1 26536U 00055A 10208.45902312 .00000328 00000-0 20233-3 0 9399 2 26536 99.1690 226.8753 0009930 220.9377 139.1063 14.12571133507511 1 26536U 00055A 10208.95484705 .00000317 00000-0 19677-3 0 9405 2 26536 99.1693 227.3828 0009946 219.4932 140.5500 14.12571303507588 1 26536U 00055A 10209.30900746 .00000256 00000-0 16374-3 0 9406 2 26536 99.1691 227.7454 0009910 218.4397 141.6052 14.12571228507636 1 26536U 00055A 10209.66316794 .00000178 00000-0 12164-3 0 9416 2 26536 99.1694 228.1082 0009941 217.5111 142.5357 14.12571040507684 1 26536U 00055A 10210.15899243 .00000092 00000-0 74948-4 0 9411 2 26536 99.1688 228.6157 0009881 216.1588 143.8891 14.12570800507759 1 26536U 00055A 10210.86731351 .00000021 00000-0 36349-4 0 9431 2 26536 99.1691 229.3407 0009912 214.1593 145.8925 14.12570536507855 1 26536U 00055A 10211.29230626 -.00000128 00000-0 -43788-4 0 9422 2 26536 99.1686 229.7757 0009867 212.8778 147.1746 14.12569839507917 1 26536U 00055A 10211.29230626 -.00000128 00000-0 -43788-4 0 9433 2 26536 99.1686 229.7757 0009867 212.8778 147.1746 14.12569839507917 1 26536U 00055A 10211.71729962 -.00000214 00000-0 -90293-4 0 9446 2 26536 99.1689 230.2108 0009904 211.4870 148.5689 14.12569243507973 1 26536U 00055A 10211.78814203 -.00000002 00000-0 00000+0 0 9453 2 26536 99.1701 230.2829 0009949 211.7585 148.3457 14.12569403507983 1 26536U 00055A 10212.42562131 -.00000270 00000-0 -12069-3 0 9466 2 26536 99.1687 230.9356 0009909 209.3943 150.6670 14.12568892508070 1 26536U 00055A 10212.85061433 -.00000262 00000-0 -11652-3 0 9471 2 26536 99.1690 231.3706 0010003 207.9322 152.1309 14.12568596508134 1 26536U 00055A 10213.27560750 -.00000228 00000-0 -97705-4 0 9470 2 26536 99.1688 231.8054 0010015 206.7596 153.3077 14.12568687508197 1 26536U 00055A 10213.62976803 -.00000227 00000-0 -97630-4 0 9486 2 26536 99.1690 232.1680 0010022 205.7302 154.3378 14.12568598508243 1 26536U 00055A 10214.47975327 .00000003 00000-0 26596-4 0 9483 2 26536 99.1684 233.0374 0010116 203.2928 156.7820 14.12569748508366 1 26536U 00055A 10215.32973799 .00000172 00000-0 11804-3 0 9492 2 26536 99.1686 233.9071 0010197 200.9229 159.1559 14.12570650508481 1 26536U 00055A 10215.75472979 .00000175 00000-0 11957-3 0 9507 2 26536 99.1686 234.3419 0010190 199.6831 160.3945 14.12570827508544 1 26536U 00055A 10216.46304990 .00000251 00000-0 16105-3 0 9508 2 26536 99.1687 235.0668 0010345 197.5516 162.5304 14.12571581508640 1 26536U 00055A 10216.88804197 .00000244 00000-0 15718-3 0 9510 2 26536 99.1691 235.5022 0010316 196.3854 163.6972 14.12571681508705 1 26536U 00055A 10217.24220234 .00000281 00000-0 17727-3 0 9518 2 26536 99.1694 235.8644 0010338 195.4227 164.6647 14.12572145508750 1 26536U 00055A 10217.66719400 .00000214 00000-0 14112-3 0 9524 2 26536 99.1697 236.2998 0010374 194.2328 165.8541 14.12572049508815 1 26536U 00055A 10218.44634654 .00000175 00000-0 11982-3 0 9526 2 26536 99.1694 237.0973 0010402 191.9229 168.1704 14.12572244508926 1 26536U 00055A 10218.87133841 .00000095 00000-0 76433-4 0 9530 2 26536 99.1694 237.5323 0010446 190.4965 169.5962 14.12571876508986 1 26536U 00055A 10219.22549902 -.00000022 00000-0 13564-4 0 9536 2 26536 99.1694 237.8949 0010408 189.4725 170.6223 14.12571364509035 1 26536U 00055A 10219.65049187 -.00000093 00000-0 -25019-4 0 9541 2 26536 99.1699 238.3302 0010452 188.2927 171.8068 14.12571052509099 1 26536U 00055A 10220.21714848 -.00000227 00000-0 -97521-4 0 9555 2 26536 99.1700 238.9103 0010437 186.5123 173.5881 14.12570283509175 1 26536U 00055A 10220.57130966 -.00000275 00000-0 -12341-3 0 9567 2 26536 99.1702 239.2728 0010477 185.4936 174.6121 14.12569962509225 1 26536U 00055A 10221.35046291 -.00000261 00000-0 -11562-3 0 9560 2 26536 99.1702 240.0704 0010424 183.2375 176.8725 14.12569737509330 1 26536U 00055A 10221.35046291 -.00000261 00000-0 -11562-3 0 9571 2 26536 99.1702 240.0704 0010424 183.2375 176.8725 14.12569737509330 1 26536U 00055A 10221.77545581 -.00000233 00000-0 -10048-3 0 9581 2 26536 99.1702 240.5052 0010462 181.9719 178.1412 14.12569625509390 1 26536U 00055A 10222.12961649 -.00000169 00000-0 -65848-4 0 9585 2 26536 99.1699 240.8678 0010457 181.0614 179.0564 14.12569972509440 1 26536U 00055A 10222.48377654 -.00000102 00000-0 -29695-4 0 9599 2 26536 99.1699 241.2302 0010477 179.9686 180.1510 14.12570333509498 1 26536U 00055A 10223.40459292 .00000107 00000-0 83279-4 0 9592 2 26536 99.1697 242.1727 0010506 177.4294 182.6950 14.12571322509627 1 26536U 00055A 10223.82958486 .00000135 00000-0 98271-4 0 9608 2 26536 99.1699 242.6078 0010537 176.2158 183.9097 14.12571538509684 1 26536U 00055A 10224.25457702 .00000283 00000-0 17820-3 0 9605 2 26536 99.1694 243.0429 0010578 175.2720 184.8598 14.12572557509748 1 26536U 00055A 10225.38788754 .00000338 00000-0 20806-3 0 9614 2 26536 99.1686 244.2028 0010623 172.2303 187.9044 14.12573604509904 1 26536U 00055A 10225.88371084 .00000240 00000-0 15461-3 0 9627 2 26536 99.1689 244.7106 0010669 170.9425 189.1912 14.12573317509975 1 26536U 00055A 10226.30870307 .00000236 00000-0 15277-3 0 9627 2 26536 99.1686 245.1455 0010700 169.8084 190.3317 14.12573632510030 1 26536U 00055A 10226.73369444 .00000102 00000-0 80232-4 0 9636 2 26536 99.1690 245.5807 0010687 168.6673 191.4709 14.12573078510092 1 26536U 00055A 10227.51284698 -.00000061 00000-0 -76372-5 0 9637 2 26536 99.1691 246.3783 0010701 166.4605 193.6850 14.12572539510208 1 26536U 00055A 10227.93783902 -.00000140 00000-0 -50181-4 0 9643 2 26536 99.1695 246.8134 0010726 165.2584 194.8874 14.12571964510263 1 26536U 00055A 10228.29199967 -.00000228 00000-0 -98021-4 0 9647 2 26536 99.1693 247.1758 0010723 164.1288 196.0207 14.12571519510319 1 26536U 00055A 10228.71699221 -.00000307 00000-0 -14091-3 0 9655 2 26536 99.1694 247.6107 0010783 163.0994 197.0531 14.12570973510371 1 26536U 00055A 10229.49614494 -.00000303 00000-0 -13874-3 0 9654 2 26536 99.1695 248.4078 0010804 160.8802 199.2781 14.12570757510488 1 26536U 00055A 10230.34612962 -.00000192 00000-0 -78382-4 0 9661 2 26536 99.1697 249.2777 0010777 158.6253 201.5382 14.12570925510604 1 26536U 00055A 10230.34612962 -.00000192 00000-0 -78382-4 0 9672 2 26536 99.1697 249.2777 0010777 158.6253 201.5382 14.12570925510604 1 26536U 00055A 10230.77112180 -.00000147 00000-0 -54073-4 0 9688 2 26536 99.1699 249.7127 0010806 157.4323 202.7327 14.12570934510666 1 26536U 00055A 10231.47944138 .00000039 00000-0 46308-4 0 9682 2 26536 99.1698 250.4374 0010906 155.7641 204.4066 14.12572050510764 1 26536U 00055A 10232.40025691 .00000216 00000-0 14195-3 0 9696 2 26536 99.1698 251.3798 0010914 153.4559 206.7209 14.12573165510892 1 26536U 00055A 10232.75441594 .00000216 00000-0 14185-3 0 9709 2 26536 99.1699 251.7424 0010893 152.4110 207.7633 14.12573269510944 1 26536U 00055A 10233.17940775 .00000314 00000-0 19485-3 0 9708 2 26536 99.1697 252.1773 0010935 151.4672 208.7126 14.12573993511003 1 26536U 00055A 10233.53356675 .00000315 00000-0 19529-3 0 9719 2 26536 99.1700 252.5400 0010944 150.5358 209.6441 14.12574337511058 1 26536U 00055A 10234.38354954 .00000274 00000-0 17323-3 0 9715 2 26536 99.1700 253.4098 0010990 148.1645 212.0195 14.12574608511172 1 26536U 00055A 10234.73770883 .00000174 00000-0 11921-3 0 9725 2 26536 99.1703 253.7726 0010991 147.2127 212.9699 14.12574197511229 1 26536U 00055A 10235.16270074 .00000081 00000-0 69077-4 0 9723 2 26536 99.1702 254.2078 0011011 145.9723 214.2139 14.12573931511280 1 26536U 00055A 10235.94185197 -.00000031 00000-0 83898-5 0 9746 2 26536 99.1702 255.0050 0011038 143.9592 216.2298 14.12573456511392 1 26536U 00055A 10236.29601216 -.00000109 00000-0 -33947-4 0 9735 2 26536 99.1701 255.3677 0011022 142.7328 217.4593 14.12573104511443 1 26536U 00055A 10236.72100419 -.00000148 00000-0 -54578-4 0 9749 2 26536 99.1702 255.8025 0011087 141.6653 218.5304 14.12572848511509 1 26536U 00055A 10237.21682800 -.00000238 00000-0 -10334-3 0 9744 2 26536 99.1700 256.3101 0011094 140.1599 220.0372 14.12572327511571 1 26536U 00055A 10237.57098825 -.00000261 00000-0 -11582-3 0 9754 2 26536 99.1700 256.6725 0011109 139.2429 220.9577 14.12572112511628 1 26536U 00055A 10238.42097204 -.00000214 00000-0 -90188-4 0 9757 2 26536 99.1700 257.5423 0011111 136.8209 223.3840 14.12572070511741 1 26536U 00055A 10238.84596393 -.00000145 00000-0 -53308-4 0 9763 2 26536 99.1698 257.9772 0011114 135.5402 224.6669 14.12572224511803 1 26536U 00055A 10239.20012374 -.00000100 00000-0 -28927-4 0 9766 2 26536 99.1695 258.3398 0011121 134.7174 225.4927 14.12572483511852 1 26536U 00055A 10239.62511513 -.00000078 00000-0 -17048-4 0 9778 2 26536 99.1695 258.7746 0011174 133.6171 226.5936 14.12572566511917 1 26536U 00055A 10240.40426586 .00000098 00000-0 78384-4 0 9771 2 26536 99.1691 259.5717 0011172 131.7129 228.5015 14.12573580512020 1 26536U 00055A 10240.82925701 .00000156 00000-0 10922-3 0 9789 2 26536 99.1691 260.0067 0011210 130.5530 229.6624 14.12573944512089 1 26536U 00055A 10241.18341636 .00000290 00000-0 18193-3 0 9785 2 26536 99.1687 260.3691 0011205 129.8719 230.3477 14.12574829512138 1 26536U 00055A 10241.60840667 .00000292 00000-0 18285-3 0 9795 2 26536 99.1689 260.8042 0011214 128.6983 231.5196 14.12575137512195 1 26536U 00055A 10242.38755666 .00000331 00000-0 20415-3 0 9797 2 26536 99.1685 261.6014 0011242 126.7256 233.4960 14.12575845512301 1 26536U 00055A 10242.38755666 .00000331 00000-0 20415-3 0 9809 2 26536 99.1685 261.6014 0011242 126.7256 233.4960 14.12575845512301 1 26536U 00055A 10242.81254718 .00000225 00000-0 14691-3 0 9811 2 26536 99.1690 262.0367 0011263 125.5779 234.6404 14.12575398512368 1 26536U 00055A 10243.23753881 .00000144 00000-0 10303-3 0 9819 2 26536 99.1688 262.4717 0011289 124.5504 235.6728 14.12575262512428 1 26536U 00055A 10243.66252984 .00000062 00000-0 58677-4 0 9821 2 26536 99.1689 262.9067 0011260 123.3485 236.8754 14.12575027512483 1 26536U 00055A 10244.37084878 -.00000079 00000-0 -17563-4 0 9824 2 26536 99.1694 263.6316 0011286 121.3185 238.9081 14.12574416512585 1 26536U 00055A 10244.79584017 -.00000164 00000-0 -63423-4 0 9832 2 26536 99.1697 264.0666 0011291 120.1586 240.0680 14.12573838512642 1 26536U 00055A 10245.22083199 -.00000246 00000-0 -10769-3 0 9831 2 26536 99.1697 264.5014 0011314 118.9777 241.2519 14.12573377512706 1 26536U 00055A 10245.57499175 -.00000291 00000-0 -13185-3 0 9840 2 26536 99.1697 264.8638 0011326 118.1810 242.0506 14.12573068512751 1 26536U 00055A 10246.42497470 -.00000266 00000-0 -11870-3 0 9842 2 26536 99.1700 265.7335 0011364 116.0922 244.1424 14.12572843512878 1 26536U 00055A 10246.77913429 -.00000250 00000-0 -10981-3 0 9853 2 26536 99.1702 266.0959 0011358 115.1643 245.0704 14.12572672512926 1 26536U 00055A 10247.55828522 -.00000193 00000-0 -79277-4 0 9859 2 26536 99.1702 266.8933 0011390 113.3617 246.8767 14.12572863513036 1 26536U 00055A 10248.40826725 .00000078 00000-0 67471-4 0 9861 2 26536 99.1699 267.7629 0011369 111.4041 248.8380 14.12574202513154 1 26536U 00055A 10248.76242581 .00000113 00000-0 86186-4 0 9877 2 26536 99.1699 268.1253 0011398 110.4658 249.7737 14.12574403513202 1 26536U 00055A 10249.18741686 .00000263 00000-0 16750-3 0 9880 2 26536 99.1696 268.5602 0011375 109.5184 250.7260 14.12575386513269 1 26536U 00055A 10249.61240672 .00000295 00000-0 18465-3 0 9898 2 26536 99.1696 268.9950 0011397 108.3419 251.9002 14.12575858513329 1 26536U 00055A 10250.39155579 .00000384 00000-0 23283-3 0 9899 2 26536 99.1692 269.7926 0011383 106.3230 253.9202 14.12576770513431 1 26536U 00055A 10250.95820928 .00000351 00000-0 21452-3 0 9900 2 26536 99.1693 270.3724 0011359 104.8106 255.4313 14.12577000513510 1 26536U 00055A 10251.31236800 .00000272 00000-0 17217-3 0 9907 2 26536 99.1690 270.7350 0011381 103.8179 256.4238 14.12576841513564 1 26536U 00055A 10251.73735865 .00000127 00000-0 94001-4 0 9915 2 26536 99.1691 271.1700 0011334 102.5685 257.6723 14.12576297513629 1 26536U 00055A 10252.09151794 -.00000001 00000-0 24764-4 0 9919 2 26536 99.1685 271.5327 0011371 101.6462 258.5958 14.12575755513678 1 26536U 00055A 10252.51650907 -.00000056 00000-0 -50390-5 0 9923 2 26536 99.1685 271.9674 0011355 100.4314 259.8135 14.12575600513739 1 26536U 00055A 10253.29565935 -.00000207 00000-0 -86583-4 0 9925 2 26536 99.1682 272.7646 0011371 98.0856 262.1597 14.12574694513848 1 26536U 00055A 10253.29565935 -.00000207 00000-0 -86583-4 0 9936 2 26536 99.1682 272.7646 0011371 98.0856 262.1597 14.12574694513848 1 26536U 00055A 10253.86231405 -.00000216 00000-0 -91702-4 0 9941 2 26536 99.1682 273.3442 0011371 96.6108 263.6356 14.12574443513923 1 26536U 00055A 10254.28730503 -.00000219 00000-0 -93322-4 0 9944 2 26536 99.1679 273.7791 0011371 95.3091 264.9384 14.12574372513989 1 26536U 00055A 10254.64146406 -.00000228 00000-0 -97803-4 0 9956 2 26536 99.1681 274.1415 0011402 94.7125 265.5352 14.12574218514034 1 26536U 00055A 10255.49144549 -.00000132 00000-0 -46250-4 0 9950 2 26536 99.1682 275.0111 0011390 92.6767 267.5720 14.12574536514150 1 26536U 00055A 10255.91643614 -.00000100 00000-0 -28939-4 0 9964 2 26536 99.1682 275.4459 0011379 91.4735 268.7730 14.12574483514210 1 26536U 00055A 10256.27059539 -.00000045 00000-0 77700-6 0 9960 2 26536 99.1680 275.8084 0011357 90.7127 269.5372 14.12574825514265 1 26536U 00055A 10256.76641744 -.00000028 00000-0 10152-4 0 9977 2 26536 99.1678 276.3154 0011391 89.3581 270.8894 14.12574881514336 1 26536U 00055A 10257.54556592 .00000117 00000-0 88590-4 0 9979 2 26536 99.1681 277.1128 0011330 87.6055 272.6425 14.12575986514449 1 26536U 00055A 10258.46637753 .00000308 00000-0 19152-3 0 9980 2 26536 99.1681 278.0549 0011308 85.3960 274.8520 14.12577310514578 1 26536U 00055A 10258.82053546 .00000263 00000-0 16745-3 0 9998 2 26536 99.1685 278.4174 0011326 84.4304 275.8138 14.12577200514622 1 26536U 00055A 10259.24552582 .00000293 00000-0 18349-3 0 9994 2 26536 99.1686 278.8522 0011312 83.4900 276.7570 14.12577626514688 1 26536U 00055A 10259.74134703 .00000140 00000-0 10056-3 0 01 2 26536 99.1688 279.3595 0011296 82.1746 278.0673 14.12577083514755 1 26536U 00055A 10260.09550601 .00000070 00000-0 62903-4 0 01 2 26536 99.1687 279.7219 0011316 81.1392 279.1046 14.12576883514809 1 26536U 00055A 10260.87465467 -.00000027 00000-0 10497-4 0 17 2 26536 99.1688 280.5193 0011280 79.1515 281.0909 14.12576526514911 1 26536U 00055A 10261.29964512 -.00000095 00000-0 -26164-4 0 13 2 26536 99.1688 280.9541 0011315 77.7837 282.4586 14.12576236514972 1 26536U 00055A 10261.65380393 -.00000121 00000-0 -40061-4 0 25 2 26536 99.1690 281.3166 0011316 76.8736 283.3693 14.12576058515020 1 26536U 00055A 10262.50378474 -.00000175 00000-0 -69534-4 0 22 2 26536 99.1688 282.1863 0011317 74.7969 285.4457 14.12575709515142 1 26536U 00055A 10262.92877502 -.00000161 00000-0 -61784-4 0 39 2 26536 99.1692 282.6213 0011287 73.6076 286.6327 14.12575519515209 1 26536U 00055A 10263.28293386 -.00000165 00000-0 -64046-4 0 39 2 26536 99.1688 282.9838 0011289 72.5041 287.7367 14.12575483515253 1 26536U 00055A 10263.70792420 -.00000199 00000-0 -82457-4 0 43 2 26536 99.1689 283.4187 0011285 71.4004 288.8383 14.12575168515317 1 26536U 00055A 10264.41624141 -.00000145 00000-0 -53382-4 0 42 2 26536 99.1685 284.1435 0011263 69.5291 290.7090 14.12575356515416 1 26536U 00055A 10264.84123181 -.00000107 00000-0 -32434-4 0 51 2 26536 99.1682 284.5782 0011255 68.4408 291.7970 14.12575462515473 1 26536U 00055A 10265.26622202 .00000076 00000-0 66107-4 0 53 2 26536 99.1684 285.0133 0011166 67.5651 292.6762 14.12576472515530 1 26536U 00055A 10265.69121088 .00000132 00000-0 96247-4 0 68 2 26536 99.1683 285.4480 0011190 66.5308 293.7053 14.12576916515597 1 26536U 00055A 10266.47035811 .00000360 00000-0 21946-3 0 69 2 26536 99.1679 286.2452 0011155 64.6124 295.6235 14.12578542515709 1 26536U 00055A 10266.89534681 .00000310 00000-0 19288-3 0 76 2 26536 99.1678 286.6801 0011200 63.1830 297.0448 14.12578408515768 1 26536U 00055A 10267.24950539 .00000376 00000-0 22811-3 0 78 2 26536 99.1671 287.0425 0011151 62.4547 297.7774 14.12578996515817 1 26536U 00055A 10267.67449424 .00000312 00000-0 19350-3 0 86 2 26536 99.1677 287.4778 0011132 61.1452 299.0826 14.12579019515874 1 26536U 00055A 10268.45364184 .00000187 00000-0 12642-3 0 89 2 26536 99.1673 288.2751 0011149 59.1954 301.0311 14.12578888515980 1 26536U 00055A 10268.45364184 .00000187 00000-0 12642-3 0 90 2 26536 99.1673 288.2751 0011149 59.1954 301.0311 14.12578888515980 1 26536U 00055A 10268.87863112 .00000073 00000-0 64605-4 0 104 2 26536 99.1673 288.7097 0011129 58.0943 302.1278 14.12578370516040 1 26536U 00055A 10269.23278958 .00000011 00000-0 31044-4 0 106 2 26536 99.1669 289.0722 0011206 56.6869 303.5358 14.12578198516098 1 26536U 00055A 10269.65777934 -.00000089 00000-0 -22765-4 0 118 2 26536 99.1671 289.5071 0011185 55.4999 304.7209 14.12577709516152 1 26536U 00055A 10270.08276931 -.00000178 00000-0 -70878-4 0 115 2 26536 99.1671 289.9419 0011241 54.1858 306.0331 14.12577222516213 1 26536U 00055A 10270.93274922 -.00000219 00000-0 -93166-4 0 130 2 26536 99.1671 290.8113 0011209 52.0820 308.1346 14.12576720516339 1 26536U 00055A 10271.28690779 -.00000236 00000-0 -10244-3 0 124 2 26536 99.1670 291.1735 0011187 51.1144 309.1028 14.12576585516388 1 26536U 00055A 10271.28690779 -.00000236 00000-0 -10244-3 0 135 2 26536 99.1670 291.1735 0011187 51.1144 309.1028 14.12576585516388 1 26536U 00055A 10271.78273801 -.00000005 00000-0 00000+0 0 131 2 26536 99.1681 291.6804 0011074 49.6492 310.6114 14.12577272516450 1 26536U 00055A 10272.49104509 -.00000161 00000-0 -61976-4 0 147 2 26536 99.1664 292.4047 0011117 48.2987 311.9138 14.12576776516550 1 26536U 00055A 10272.49104509 -.00000161 00000-0 -61976-4 0 158 2 26536 99.1664 292.4047 0011117 48.2987 311.9138 14.12576776516550 1 26536U 00055A 10273.41185627 -.00000015 00000-0 17130-4 0 162 2 26536 99.1669 293.3467 0011040 45.7405 314.4693 14.12577292516685 1 26536U 00055A 10273.41185627 -.00000015 00000-0 17130-4 0 173 2 26536 99.1669 293.3467 0011040 45.7405 314.4693 14.12577292516685 1 26536U 00055A 10273.83684548 .00000088 00000-0 72517-4 0 185 2 26536 99.1671 293.7816 0011069 44.6173 315.5897 14.12577770516747 1 26536U 00055A 10274.33266638 .00000238 00000-0 15389-3 0 187 2 26536 99.1671 294.2886 0011006 43.3855 316.8234 14.12578863516815 1 26536U 00055A 10274.68682294 .00000233 00000-0 15116-3 0 199 2 26536 99.1675 294.6513 0010982 42.6136 317.5882 14.12578985516863 1 26536U 00055A 10275.11181211 .00000366 00000-0 22288-3 0 196 2 26536 99.1675 295.0860 0010954 41.2628 318.9396 14.12579874516923 1 26536U 00055A 10275.89095768 .00000248 00000-0 15898-3 0 213 2 26536 99.1681 295.8836 0010919 39.1312 321.0610 14.12579697517038 1 26536U 00055A 10276.24511579 .00000230 00000-0 14945-3 0 208 2 26536 99.1679 296.2459 0010919 38.1147 322.0797 14.12579878517089 1 26536U 00055A 10276.74093601 .00000093 00000-0 75199-4 0 211 2 26536 99.1681 296.7534 0010897 36.6465 323.5426 14.12579420517158 1 26536U 00055A 10277.44925201 -.00000025 00000-0 11783-4 0 214 2 26536 99.1681 297.4780 0010937 34.8226 325.3660 14.12578997517258 1 26536U 00055A 10277.44925201 -.00000025 00000-0 11783-4 0 225 2 26536 99.1681 297.4780 0010937 34.8226 325.3660 14.12578997517258 1 26536U 00055A 10277.87424107 -.00000119 00000-0 -38931-4 0 231 2 26536 99.1681 297.9131 0010964 33.4758 326.7074 14.12578396517312 1 26536U 00055A 10278.22839941 -.00000192 00000-0 -78456-4 0 234 2 26536 99.1683 298.2755 0010960 32.6133 327.5704 14.12578040517364 1 26536U 00055A 10278.72422054 -.00000235 00000-0 -10152-3 0 249 2 26536 99.1680 298.7824 0010961 31.2544 328.9267 14.12577673517433 1 26536U 00055A 10279.07837863 -.00000201 00000-0 -83176-4 0 246 2 26536 99.1680 299.1447 0010960 30.2076 329.9738 14.12577781517486 1 26536U 00055A 10279.50336783 -.00000216 00000-0 -91526-4 0 254 2 26536 99.1681 299.5793 0010937 29.1804 330.9980 14.12577638517544 1 26536U 00055A 10280.35334665 -.00000157 00000-0 -59406-4 0 251 2 26536 99.1680 300.4491 0010909 26.7509 333.4233 14.12577690517664 1 26536U 00055A 10280.35334665 -.00000157 00000-0 -59406-4 0 262 2 26536 99.1680 300.4491 0010909 26.7509 333.4233 14.12577690517664 1 26536U 00055A 10280.77833591 -.00000072 00000-0 -13922-4 0 270 2 26536 99.1677 300.8837 0010955 25.5327 334.6385 14.12577922517720 1 26536U 00055A 10281.55748216 .00000025 00000-0 38980-4 0 273 2 26536 99.1672 301.6806 0010919 23.2739 336.8930 14.12578677517832 1 26536U 00055A 10281.91163966 .00000089 00000-0 73512-4 0 287 2 26536 99.1672 302.0428 0010928 22.4154 337.7489 14.12578918517881 1 26536U 00055A 10282.33662879 .00000205 00000-0 13612-3 0 285 2 26536 99.1674 302.4776 0010872 21.2386 338.9275 14.12579735517946 1 26536U 00055A 10282.76161678 .00000211 00000-0 13907-3 0 298 2 26536 99.1668 302.9123 0010797 20.2435 339.9158 14.12579890518001 1 26536U 00055A 10283.46993085 .00000310 00000-0 19244-3 0 291 2 26536 99.1664 303.6367 0010713 18.3902 341.7671 14.12580944518104 1 26536U 00055A 10283.89491895 .00000250 00000-0 16047-3 0 303 2 26536 99.1664 304.0717 0010685 17.1944 342.9561 14.12580755518166 1 26536U 00055A 10284.24907654 .00000264 00000-0 16805-3 0 305 2 26536 99.1659 304.4341 0010688 16.1936 343.9586 14.12581123518214 1 26536U 00055A 10284.67406469 .00000166 00000-0 11479-3 0 314 2 26536 99.1658 304.8687 0010674 14.9134 345.2329 14.12580821518271 1 26536U 00055A 10285.45321087 .00000085 00000-0 71067-4 0 313 2 26536 99.1654 305.6654 0010668 12.8088 347.3346 14.12580736518387 1 26536U 00055A 10285.45321087 .00000085 00000-0 71067-4 0 324 2 26536 99.1654 305.6654 0010668 12.8088 347.3346 14.12580736518387 1 26536U 00055A 10286.51568290 -.00000093 00000-0 -25186-4 0 334 2 26536 99.1659 306.7524 0010640 9.8943 350.2430 14.12580015518530 1 26536U 00055A 10287.43649241 -.00000201 00000-0 -83174-4 0 345 2 26536 99.1660 307.6938 0010569 7.4723 352.6593 14.12579250518660 1 26536U 00055A 10287.93231311 -.00000213 00000-0 -89821-4 0 354 2 26536 99.1661 308.2009 0010573 5.9551 354.1735 14.12578942518734 1 26536U 00055A 10288.35730236 -.00000214 00000-0 -90453-4 0 355 2 26536 99.1661 308.6356 0010573 4.7791 355.3487 14.12578866518794 1 26536U 00055A 10288.85312284 -.00000232 00000-0 -10017-3 0 367 2 26536 99.1664 309.1428 0010566 3.3645 356.7582 14.12578489518868 1 26536U 00055A 10289.20728077 -.00000226 00000-0 -96989-4 0 364 2 26536 99.1665 309.5049 0010531 2.2978 357.8258 14.12578517518911 1 26536U 00055A 10289.91559529 -.00000117 00000-0 -37776-4 0 386 2 26536 99.1665 310.2294 0010504 0.4299 359.6878 14.12578839519015 1 26536U 00055A 10290.34058440 .00000032 00000-0 42310-4 0 374 2 26536 99.1669 310.6641 0010454 359.0449 1.0754 14.12579700519078 1 26536U 00055A 10290.69474069 .00000135 00000-0 98107-4 0 381 2 26536 99.1667 311.0265 0010402 358.2841 1.8310 14.12580274519123 1 26536U 00055A 10291.11972897 .00000259 00000-0 16513-3 0 388 2 26536 99.1668 311.4611 0010357 356.8817 3.2322 14.12581094519185 1 26536U 00055A 10291.11972897 .00000259 00000-0 16513-3 0 399 2 26536 99.1668 311.4611 0010357 356.8817 3.2322 14.12581094519185 1 26536U 00055A 10291.96970443 .00000335 00000-0 20644-3 0 415 2 26536 99.1670 312.3308 0010422 354.5362 5.5673 14.12581955519308 1 26536U 00055A 10292.39469295 .00000373 00000-0 22671-3 0 404 2 26536 99.1667 312.7655 0010373 353.2420 6.8624 14.12582504519366 1 26536U 00055A 10292.89051191 .00000241 00000-0 15541-3 0 414 2 26536 99.1665 313.2727 0010350 351.8693 8.2266 14.12582068519432 1 26536U 00055A 10293.38633217 .00000162 00000-0 11285-3 0 417 2 26536 99.1663 313.7800 0010332 350.4922 9.6046 14.12582039519504 1 26536U 00055A 10293.81132039 .00000065 00000-0 60598-4 0 426 2 26536 99.1664 314.2147 0010304 349.1653 10.9272 14.12581612519568 1 26536U 00055A 10294.23630909 -.00000006 00000-0 22244-4 0 424 2 26536 99.1660 314.6498 0010356 348.1058 11.9854 14.12581417519629 1 26536U 00055A 10294.59046628 -.00000061 00000-0 -76766-5 0 434 2 26536 99.1661 315.0121 0010336 347.0436 13.0465 14.12581217519678 1 26536U 00055A 10294.73213801 .00000187 00000-0 10113-3 0 427 2 26536 99.1662 315.1567 0010452 346.5422 13.5951 14.12582256519693 1 26536U 00055A 10295.36961210 -.00000115 00000-0 -37007-4 0 437 2 26536 99.1658 315.8091 0010396 345.1083 14.9775 14.12580876519787 1 26536U 00055A 10295.72376929 -.00000135 00000-0 -47532-4 0 441 2 26536 99.1657 316.1713 0010398 344.0476 16.0360 14.12580687519836 1 26536U 00055A 10296.14875798 -.00000141 00000-0 -50950-4 0 441 2 26536 99.1655 316.6060 0010392 342.7921 17.2899 14.12580610519890 1 26536U 00055A 10296.92790397 -.00000184 00000-0 -74381-4 0 461 2 26536 99.1652 317.4025 0010329 340.5421 19.5353 14.12580140520001 1 26536U 00055A 10297.42372423 -.00000151 00000-0 -56102-4 0 457 2 26536 99.1652 317.9098 0010291 338.9764 21.1011 14.12580342520076 1 26536U 00055A 10297.77788090 -.00000128 00000-0 -44151-4 0 462 2 26536 99.1648 318.2717 0010253 337.9110 22.1617 14.12580298520124 1 26536U 00055A 10298.20286965 .00000007 00000-0 29153-4 0 464 2 26536 99.1646 318.7063 0010239 336.4527 23.6214 14.12581013520182 1 26536U 00055A 10298.55702593 .00000005 00000-0 28013-4 0 475 2 26536 99.1644 319.0683 0010207 335.4421 24.6271 14.12581133520232 1 26536U 00055A 10299.40700223 .00000203 00000-0 13470-3 0 478 2 26536 99.1641 319.9373 0010159 332.9094 27.1577 14.12582361520352 1 26536U 00055A 10299.76115836 .00000219 00000-0 14364-3 0 488 2 26536 99.1641 320.2994 0010128 331.8014 28.2607 14.12582557520401 1 26536U 00055A 10300.25697773 .00000338 00000-0 20780-3 0 481 2 26536 99.1639 320.8063 0010090 330.1474 29.9153 14.12583466520472 1 26536U 00055A 10300.82362739 .00000274 00000-0 17332-3 0 494 2 26536 99.1641 321.3857 0010053 328.5056 31.5491 14.12583466520551 1 26536U 00055A 10301.53194052 .00000237 00000-0 15326-3 0 506 2 26536 99.1640 322.1099 0010070 326.3961 33.6569 14.12583853520657 1 26536U 00055A 10302.45274796 .00000094 00000-0 76100-4 0 512 2 26536 99.1644 323.0516 0010051 323.9098 36.1391 14.12583472520780 1 26536U 00055A 10302.87773581 -.00000045 00000-0 89777-6 0 528 2 26536 99.1646 323.4863 0010076 322.6562 37.3865 14.12582683520849 1 26536U 00055A 10303.30272472 -.00000155 00000-0 -58561-4 0 528 2 26536 99.1649 323.9208 0010064 321.5497 38.4940 14.12582193520901 1 26536U 00055A 10303.79854463 -.00000207 00000-0 -86340-4 0 532 2 26536 99.1649 324.4278 0010045 320.0282 40.0137 14.12581761520973 1 26536U 00055A 10304.15270183 -.00000250 00000-0 -10999-3 0 538 2 26536 99.1650 324.7900 0010040 319.0412 41.0002 14.12581496521022 1 26536U 00055A 10304.57769034 -.00000281 00000-0 -12660-3 0 544 2 26536 99.1649 325.2244 0010026 317.7161 42.3242 14.12581253521084 1 26536U 00055A 10305.42766725 -.00000227 00000-0 -97638-4 0 542 2 26536 99.1649 326.0939 0009985 315.1245 44.9129 14.12581171521206 1 26536U 00055A 10305.92348706 -.00000172 00000-0 -67856-4 0 551 2 26536 99.1646 326.6008 0009978 313.7424 46.2925 14.12581226521278 1 26536U 00055A 10306.27764411 -.00000080 00000-0 -17808-4 0 555 2 26536 99.1644 326.9629 0009995 312.7210 47.3148 14.12581715521327 1 26536U 00055A 10306.84429477 .00000026 00000-0 39574-4 0 561 2 26536 99.1644 327.5423 0009969 311.2522 48.7807 14.12582218521402 1 26536U 00055A 10307.26928268 .00000110 00000-0 84707-4 0 562 2 26536 99.1642 327.9767 0009966 309.6504 50.3814 14.12582748521464 1 26536U 00055A 10307.62343890 .00000146 00000-0 10436-3 0 571 2 26536 99.1644 328.3391 0009921 308.6555 51.3743 14.12583119521511 1 26536U 00055A 10308.47341397 .00000300 00000-0 18711-3 0 571 2 26536 99.1642 329.2084 0009888 306.0094 54.0175 14.12584358521638 1 26536U 00055A 10308.89840129 .00000302 00000-0 18820-3 0 588 2 26536 99.1640 329.6429 0009881 304.8521 55.1702 14.12584512521693 1 26536U 00055A 10309.39422050 .00000281 00000-0 17692-3 0 585 2 26536 99.1639 330.1502 0009871 303.4951 56.5279 14.12584794521765 1 26536U 00055A 10309.74837672 .00000194 00000-0 13031-3 0 591 2 26536 99.1640 330.5123 0009853 302.2123 57.8071 14.12584498521819 1 26536U 00055A 10310.17336476 .00000195 00000-0 13043-3 0 590 2 26536 99.1639 330.9473 0009879 301.1558 58.8646 14.12584741521873 1 26536U 00055A 10310.52752101 .00000124 00000-0 92377-4 0 608 2 26536 99.1637 331.3090 0009888 300.1527 59.8658 14.12584630521923 1 26536U 00055A 10311.44832827 -.00000029 00000-0 97195-5 0 603 2 26536 99.1638 332.2509 0009859 297.6458 62.3701 14.12584030522057 1 26536U 00055A 10311.87331632 -.00000103 00000-0 -30493-4 0 610 2 26536 99.1636 332.6854 0009860 296.3617 63.6514 14.12583507522118 1 26536U 00055A 10312.29830486 -.00000182 00000-0 -73194-4 0 610 2 26536 99.1636 333.1201 0009836 295.2171 64.7971 14.12583132522175 1 26536U 00055A 10312.86495590 -.00000206 00000-0 -85864-4 0 621 2 26536 99.1632 333.6991 0009821 293.3559 66.6571 14.12582784522253 1 26536U 00055A 10313.21911293 -.00000204 00000-0 -85149-4 0 628 2 26536 99.1631 334.0611 0009812 292.3781 67.6358 14.12582776522303 1 26536U 00055A 10313.64410104 -.00000192 00000-0 -78257-4 0 639 2 26536 99.1630 334.4955 0009818 291.0678 68.9455 14.12582781522368 1 26536U 00055A 10314.49407728 -.00000123 00000-0 -41281-4 0 632 2 26536 99.1628 335.3643 0009807 288.0467 71.9662 14.12582992522480 1 26536U 00055A 10314.49407728 -.00000123 00000-0 -41281-4 0 643 2 26536 99.1628 335.3643 0009807 288.0467 71.9662 14.12582992522480 1 26536U 00055A 10314.98989637 -.00000032 00000-0 77145-5 0 659 2 26536 99.1625 335.8711 0009830 286.7895 73.2208 14.12583335522555 1 26536U 00055A 10315.55654699 .00000035 00000-0 44302-4 0 661 2 26536 99.1627 336.4503 0009785 284.4368 75.5751 14.12583811522638 1 26536U 00055A 10316.05236565 .00000178 00000-0 12156-3 0 664 2 26536 99.1628 336.9572 0009809 283.2852 76.7247 14.12584619522700 1 26536U 00055A 10316.47735294 .00000235 00000-0 15239-3 0 673 2 26536 99.1625 337.3914 0009791 281.5424 78.4671 14.12585171522768 1 26536U 00055A 10317.46899007 .00000339 00000-0 20860-3 0 688 2 26536 99.1623 338.4052 0009812 278.8128 81.1951 14.12586277522901 1 26536U 00055A 10317.89397694 .00000262 00000-0 16690-3 0 692 2 26536 99.1625 338.8400 0009813 277.6340 82.3680 14.12585975522960 1 26536U 00055A 10318.46062746 .00000248 00000-0 15926-3 0 698 2 26536 99.1626 339.4192 0009817 275.9317 84.0745 14.12586366523041 1 26536U 00055A 10318.88561452 .00000140 00000-0 10106-3 0 700 2 26536 99.1629 339.8541 0009814 274.5219 85.4798 14.12585894523104 1 26536U 00055A 10319.45226504 .00000034 00000-0 43887-4 0 705 2 26536 99.1631 340.4336 0009792 273.0890 86.9139 14.12585595523182 1 26536U 00055A 10320.08974677 -.00000161 00000-0 -61702-4 0 717 2 26536 99.1634 341.0857 0009804 271.3984 88.6013 14.12584565523275 1 26536U 00055A 10320.58556697 -.00000224 00000-0 -95980-4 0 726 2 26536 99.1633 341.5926 0009813 270.1513 89.8525 14.12584180523343 1 26536U 00055A 10321.08138649 -.00000235 00000-0 -10191-3 0 727 2 26536 99.1631 342.0995 0009799 268.4645 91.5406 14.12583980523415 1 26536U 00055A 10321.57720590 -.00000270 00000-0 -12071-3 0 732 2 26536 99.1633 342.6065 0009809 267.1249 92.8798 14.12583666523485 1 26536U 00055A 10322.85216974 -.00000079 00000-0 -17361-4 0 757 2 26536 99.1634 343.9101 0009803 263.2523 96.7535 14.12584195523667 1 26536U 00055A 10323.63131363 -.00000003 00000-0 23646-4 0 762 2 26536 99.1629 344.7064 0009846 260.5216 99.4846 14.12584745523772 1 26536U 00055A 10324.83544446 .00000228 00000-0 14835-3 0 784 2 26536 99.1620 345.9369 0009851 256.5958 103.4112 14.12586264523947 1 26536U 00055A 10325.61458719 .00000337 00000-0 20733-3 0 794 2 26536 99.1618 346.7335 0009901 253.8599 106.1485 14.12587439524054 1 26536U 00055A 10326.46456140 .00000341 00000-0 20964-3 0 795 2 26536 99.1617 347.6026 0009912 251.0549 108.9551 14.12588051524175 1 26536U 00055A 10327.95201739 -.00000001 00000-0 24685-4 0 825 2 26536 99.1613 349.1230 0009930 246.5341 113.4761 14.12586807524388 1 26536U 00055A 10328.30617407 -.00000119 00000-0 -39048-4 0 828 2 26536 99.1612 349.4852 0009897 245.7244 114.2874 14.12586309524432 1 26536U 00055A 10329.43947499 -.00000213 00000-0 -89604-4 0 839 2 26536 99.1611 350.6436 0009906 242.2907 117.7253 14.12585645524590 1 26536U 00055A 10329.43947499 -.00000213 00000-0 -89604-4 0 840 2 26536 99.1611 350.6436 0009906 242.2907 117.7253 14.12585645524590 1 26536U 00055A 10330.43111346 -.00000174 00000-0 -68545-4 0 854 2 26536 99.1609 351.6572 0009937 239.2259 120.7952 14.12585575524737 1 26536U 00055A 10331.42275173 -.00000118 00000-0 -38714-4 0 867 2 26536 99.1604 352.6705 0009974 236.2478 123.7772 14.12585640524873 1 26536U 00055A 10332.55605185 .00000057 00000-0 55828-4 0 878 2 26536 99.1605 353.8289 0010033 232.7847 127.2465 14.12586674525038 1 26536U 00055A 10332.55605185 .00000057 00000-0 55828-4 0 889 2 26536 99.1605 353.8289 0010033 232.7847 127.2465 14.12586674525038 1 26536U 00055A 10333.54768766 .00000228 00000-0 14818-3 0 898 2 26536 99.1606 354.8424 0010032 230.3593 129.6711 14.12587951525176 1 26536U 00055A 10334.11433682 .00000267 00000-0 16937-3 0 907 2 26536 99.1608 355.4218 0010059 228.5953 131.4352 14.12588335525252 1 26536U 00055A 10334.61015509 .00000261 00000-0 16638-3 0 919 2 26536 99.1610 355.9289 0010053 227.4091 132.6235 14.12588647525320 1 26536U 00055A 10335.46012916 .00000201 00000-0 13361-3 0 916 2 26536 99.1615 356.7980 0010069 224.8047 135.2312 14.12588819525440 1 26536U 00055A 10335.46012916 .00000201 00000-0 13361-3 0 927 2 26536 99.1615 356.7980 0010069 224.8047 135.2312 14.12588819525440 1 26536U 00055A 10335.88511608 .00000069 00000-0 62409-4 0 936 2 26536 99.1617 357.2327 0010090 223.6785 136.3547 14.12588154525504 1 26536U 00055A 10336.23927285 -.00000006 00000-0 22006-4 0 939 2 26536 99.1620 357.5947 0010090 222.6747 137.3631 14.12587890525552 1 26536U 00055A 10336.66426027 -.00000122 00000-0 -40475-4 0 945 2 26536 99.1620 358.0294 0010098 221.6924 138.3453 14.12587280525610 1 26536U 00055A 10337.51423632 -.00000225 00000-0 -96167-4 0 942 2 26536 99.1618 358.8980 0010098 218.9257 141.1203 14.12586683525739 1 26536U 00055A 10337.51423632 -.00000225 00000-0 -96167-4 0 953 2 26536 99.1618 358.8980 0010098 218.9257 141.1203 14.12586683525739 1 26536U 00055A 10337.93922366 -.00000239 00000-0 -10416-3 0 965 2 26536 99.1617 359.3323 0010134 217.6453 142.3996 14.12586312525797 1 26536U 00055A 10338.29338039 -.00000222 00000-0 -94585-4 0 965 2 26536 99.1615 359.6946 0010150 216.6132 143.4369 14.12586443525847 1 26536U 00055A 10338.78919899 -.00000179 00000-0 -71271-4 0 977 2 26536 99.1615 0.2012 0010185 214.9791 145.0716 14.12586413525919 1 26536U 00055A 10339.14335536 -.00000075 00000-0 -15370-4 0 971 2 26536 99.1612 0.5634 0010216 214.0975 145.9570 14.12586900525962 1 26536U 00055A 10339.56834238 -.00000067 00000-0 -10924-4 0 982 2 26536 99.1610 0.9975 0010212 212.8102 147.2444 14.12587002526023 1 26536U 00055A 10340.41831710 .00000051 00000-0 52833-4 0 986 2 26536 99.1606 1.8661 0010335 210.1632 149.8962 14.12587573526144 1 26536U 00055A 10340.41831710 .00000051 00000-0 52833-4 0 997 2 26536 99.1606 1.8661 0010335 210.1632 149.8962 14.12587573526144 1 26536U 00055A 10340.91413540 .00000119 00000-0 89572-4 0 1007 2 26536 99.1603 2.3725 0010284 209.0030 151.0583 14.12588048526210 1 26536U 00055A 10341.40995363 .00000202 00000-0 13433-3 0 1005 2 26536 99.1599 2.8790 0010349 207.6637 152.4021 14.12588783526285 1 26536U 00055A 10342.61408209 .00000274 00000-0 17305-3 0 1019 2 26536 99.1599 4.1099 0010377 204.2219 155.8458 14.12589813526457 1 26536U 00055A 10343.39322465 .00000255 00000-0 16288-3 0 1023 2 26536 99.1599 4.9062 0010412 201.8480 158.2246 14.12590185526566 1 26536U 00055A 10343.88904242 .00000124 00000-0 92084-4 0 1031 2 26536 99.1601 5.4131 0010386 200.7182 159.3528 14.12589626526631 1 26536U 00055A 10344.24319892 .00000008 00000-0 29571-4 0 1035 2 26536 99.1601 5.7752 0010341 199.6676 160.4075 14.12589212526684 1 26536U 00055A 10344.73901746 -.00000095 00000-0 -25991-4 0 1045 2 26536 99.1598 6.2817 0010329 198.4852 161.5926 14.12588734526759 1 26536U 00055A 10345.51816142 -.00000184 00000-0 -74321-4 0 1047 2 26536 99.1597 7.0781 0010327 196.1080 163.9777 14.12588280526861 1 26536U 00055A 10345.51816142 -.00000184 00000-0 -74321-4 0 1058 2 26536 99.1597 7.0781 0010327 196.1080 163.9777 14.12588280526861 1 26536U 00055A 10345.51816142 -.00000184 00000-0 -74321-4 0 1069 2 26536 99.1597 7.0781 0010327 196.1080 163.9777 14.12588280526861 1 26536U 00055A 10346.36813621 -.00000239 00000-0 -10395-3 0 1074 2 26536 99.1596 7.9468 0010360 193.6692 166.4208 14.12587723526980 1 26536U 00055A 10346.79312350 -.00000230 00000-0 -98930-4 0 1088 2 26536 99.1597 8.3812 0010371 192.4609 167.6300 14.12587501527044 1 26536U 00055A 10347.50143574 -.00000164 00000-0 -63588-4 0 1085 2 26536 99.1597 9.1050 0010433 190.4752 169.6217 14.12587762527142 1 26536U 00055A 10347.50143574 -.00000164 00000-0 -63588-4 0 1096 2 26536 99.1597 9.1050 0010433 190.4752 169.6217 14.12587762527142 1 26536U 00055A 10348.42224150 -.00000069 00000-0 -11910-4 0 1106 2 26536 99.1599 10.0460 0010446 188.0327 172.0695 14.12588060527279 1 26536U 00055A 10348.77639729 -.00000005 00000-0 22435-4 0 1110 2 26536 99.1596 10.4076 0010474 186.8537 173.2500 14.12588336527323 1 26536U 00055A 10349.20138439 .00000131 00000-0 95884-4 0 1118 2 26536 99.1595 10.8420 0010578 185.8373 174.2723 14.12589146527385 1 26536U 00055A 10349.62637048 .00000168 00000-0 11595-3 0 1121 2 26536 99.1598 11.2767 0010633 184.4483 175.6609 14.12589523527440 1 26536U 00055A 10350.54717423 .00000286 00000-0 17940-3 0 1121 2 26536 99.1601 12.2183 0010692 182.1045 178.0087 14.12590669527576 1 26536U 00055A 10350.97216068 .00000309 00000-0 19180-3 0 1132 2 26536 99.1603 12.6528 0010678 180.8341 179.2805 14.12590951527635 1 26536U 00055A 10351.39714731 .00000289 00000-0 18153-3 0 1135 2 26536 99.1605 13.0872 0010717 179.6566 180.4615 14.12591171527697 1 26536U 00055A 10351.82213366 .00000144 00000-0 10295-3 0 1141 2 26536 99.1606 13.5216 0010757 178.3855 181.7308 14.12590510527752 1 26536U 00055A 10352.24712113 .00000071 00000-0 63263-4 0 1145 2 26536 99.1604 13.9561 0010726 177.0912 183.0312 14.12590376527810 1 26536U 00055A 10352.67210799 .00000040 00000-0 46727-4 0 1158 2 26536 99.1602 14.3904 0010707 175.9188 184.2070 14.12590361527879 1 26536U 00055A 10353.45125082 -.00000070 00000-0 -12512-4 0 1155 2 26536 99.1602 15.1868 0010722 173.5789 186.5523 14.12589882527981 1 26536U 00055A 10353.45125082 -.00000070 00000-0 -12512-4 0 1166 2 26536 99.1602 15.1868 0010722 173.5789 186.5523 14.12589882527981 1 26536U 00055A 10353.87623760 -.00000145 00000-0 -53259-4 0 1175 2 26536 99.1600 15.6211 0010730 172.3769 187.7540 14.12589345528044 1 26536U 00055A 10354.30122510 -.00000166 00000-0 -64403-4 0 1177 2 26536 99.1600 16.0555 0010710 171.1825 188.9540 14.12589249528101 1 26536U 00055A 10354.93870554 -.00000146 00000-0 -53487-4 0 1183 2 26536 99.1600 16.7068 0010733 169.3730 190.7667 14.12589121528195 1 26536U 00055A 10355.29286147 -.00000147 00000-0 -54465-4 0 1180 2 26536 99.1596 17.0686 0010699 168.3487 191.7940 14.12589142528242 1 26536U 00055A 10355.78867954 -.00000146 00000-0 -53525-4 0 1191 2 26536 99.1595 17.5752 0010698 166.9406 193.2034 14.12588950528319 1 26536U 00055A 10356.21366684 -.00000110 00000-0 -34356-4 0 1196 2 26536 99.1594 18.0097 0010723 165.8540 194.2957 14.12589184528373 1 26536U 00055A 10356.63865338 -.00000109 00000-0 -33916-4 0 1203 2 26536 99.1591 18.4437 0010784 164.6536 195.4972 14.12589188528432 1 26536U 00055A 10357.41779547 .00000085 00000-0 71259-4 0 1209 2 26536 99.1588 19.2399 0010818 162.7932 197.3631 14.12590216528540 1 26536U 00055A 10357.41779547 .00000085 00000-0 71259-4 0 1210 2 26536 99.1588 19.2399 0010818 162.7932 197.3631 14.12590216528540 1 26536U 00055A 10357.84278168 .00000151 00000-0 10683-3 0 1228 2 26536 99.1585 19.6740 0010812 161.5458 198.6114 14.12590624528605 1 26536U 00055A 10358.26776809 .00000295 00000-0 18430-3 0 1227 2 26536 99.1583 20.1083 0010818 160.6168 199.5455 14.12591597528668 1 26536U 00055A 10358.76358458 .00000271 00000-0 17170-3 0 1233 2 26536 99.1582 20.6149 0010866 159.1430 201.0175 14.12591743528732 1 26536U 00055A 10359.25940201 .00000357 00000-0 21811-3 0 1233 2 26536 99.1577 21.1216 0010862 157.9017 202.2648 14.12592545528807 1 26536U 00055A 10359.68438748 .00000268 00000-0 16966-3 0 1245 2 26536 99.1579 21.5561 0010851 156.7233 203.4408 14.12592356528864 1 26536U 00055A 10360.53436040 .00000110 00000-0 84747-4 0 1243 2 26536 99.1580 22.4250 0010882 154.3596 205.8110 14.12592039528988 1 26536U 00055A 10360.53436040 .00000110 00000-0 84747-4 0 1254 2 26536 99.1580 22.4250 0010882 154.3596 205.8110 14.12592039528988 1 26536U 00055A 10360.88851562 .00000031 00000-0 41742-4 0 1263 2 26536 99.1579 22.7869 0010905 153.4330 206.7377 14.12591616529039 1 26536U 00055A 10361.31350236 -.00000077 00000-0 -16214-4 0 1262 2 26536 99.1579 23.2213 0010875 152.0346 208.1394 14.12591217529094 1 26536U 00055A 10361.80932013 -.00000177 00000-0 -70403-4 0 1277 2 26536 99.1581 23.7280 0010860 150.6759 209.4992 14.12590529529163 1 26536U 00055A 10362.23430733 -.00000222 00000-0 -94776-4 0 1277 2 26536 99.1580 24.1623 0010852 149.3652 210.8153 14.12590279529220 1 26536U 00055A 10362.58846292 -.00000286 00000-0 -12921-3 0 1288 2 26536 99.1580 24.5241 0010905 148.5644 211.6181 14.12589898529271 1 26536U 00055A 10363.50926730 -.00000255 00000-0 -11245-3 0 1281 2 26536 99.1583 25.4652 0010979 146.1848 214.0031 14.12589765529400 1 26536U 00055A 10363.50926730 -.00000255 00000-0 -11245-3 0 1292 2 26536 99.1583 25.4652 0010979 146.1848 214.0031 14.12589765529400 1 26536U 00055A 10364.43007166 -.00000180 00000-0 -72259-4 0 1300 2 26536 99.1586 26.4064 0010998 143.7256 216.4664 14.12589780529537 1 26536U 00055A 10364.92588953 -.00000124 00000-0 -41632-4 0 1312 2 26536 99.1584 26.9129 0011025 142.4651 217.7294 14.12589828529603 1 26536U 00055A 10365.28004510 .00000009 00000-0 29999-4 0 1316 2 26536 99.1585 27.2748 0011059 141.7643 218.4361 14.12590587529657 1 26536U 00055A 10365.77586177 .00000071 00000-0 63249-4 0 1320 2 26536 99.1585 27.7815 0011069 140.2431 219.9561 14.12590936529721 1 26536U 00055A 11001.20084801 .00000204 00000-0 13536-3 0 1324 2 26536 99.1584 28.2159 0011073 139.4019 220.8022 14.12591809529783 1 26536U 00055A 11001.62583327 .00000216 00000-0 14173-3 0 1339 2 26536 99.1585 28.6502 0011105 138.2485 221.9542 14.12592121529844 1 26536U 00055A 11002.12165012 .00000330 00000-0 20312-3 0 1331 2 26536 99.1580 29.1570 0011118 136.9796 223.2264 14.12592906529919 1 26536U 00055A 11002.54663550 .00000320 00000-0 19808-3 0 1345 2 26536 99.1580 29.5914 0011090 135.7824 224.4239 14.12593234529979 1 26536U 00055A 11003.46743757 .00000313 00000-0 19390-3 0 1343 2 26536 99.1577 30.5323 0011102 133.0745 227.1347 14.12593812530107 1 26536U 00055A 11003.46743757 .00000313 00000-0 19390-3 0 1354 2 26536 99.1577 30.5323 0011102 133.0745 227.1347 14.12593812530107 1 26536U 00055A 11003.89242323 .00000149 00000-0 10553-3 0 1364 2 26536 99.1575 30.9665 0011127 132.1348 228.0727 14.12593097530167 1 26536U 00055A 11004.38824069 .00000043 00000-0 48602-4 0 1362 2 26536 99.1573 31.4731 0011108 130.5867 229.6255 14.12592822530238 1 26536U 00055A 11004.81322679 -.00000056 00000-0 -53573-5 0 1371 2 26536 99.1572 31.9072 0011075 129.3194 230.8925 14.12592224530292 1 26536U 00055A 11005.23821343 -.00000137 00000-0 -49002-4 0 1371 2 26536 99.1571 32.3415 0011086 127.9620 232.2541 14.12591878530358 1 26536U 00055A 11005.23821343 -.00000137 00000-0 -49002-4 0 1382 2 26536 99.1571 32.3415 0011086 127.9620 232.2541 14.12591878530358 1 26536U 00055A 11005.80486176 -.00000217 00000-0 -91880-4 0 1397 2 26536 99.1571 32.9204 0011141 126.6623 233.5559 14.12591314530438 1 26536U 00055A 11006.30067930 -.00000252 00000-0 -11107-3 0 1398 2 26536 99.1569 33.4269 0011133 125.0892 235.1326 14.12591092530505 1 26536U 00055A 11006.30067930 -.00000252 00000-0 -11107-3 0 1400 2 26536 99.1569 33.4269 0011133 125.0892 235.1326 14.12591092530505 1 26536U 00055A 11006.79649661 -.00000225 00000-0 -96350-4 0 1415 2 26536 99.1572 33.9335 0011183 123.8657 236.3582 14.12590961530576 1 26536U 00055A 11007.29231393 -.00000161 00000-0 -61809-4 0 1410 2 26536 99.1572 34.4403 0011198 122.6948 237.5336 14.12591249530642 1 26536U 00055A 11008.49644041 -.00000047 00000-0 -12471-6 0 1428 2 26536 99.1572 35.6705 0011249 119.6295 240.6015 14.12591740530812 1 26536U 00055A 11008.49644041 -.00000047 00000-0 -12471-6 0 1439 2 26536 99.1572 35.6705 0011249 119.6295 240.6015 14.12591740530812 1 26536U 00055A 11009.41724307 .00000066 00000-0 60996-4 0 1449 2 26536 99.1570 36.6112 0011272 117.3200 242.9149 14.12592402530943 1 26536U 00055A 11009.84222828 .00000133 00000-0 96922-4 0 1451 2 26536 99.1570 37.0456 0011304 116.2247 244.0090 14.12592730531004 1 26536U 00055A 11010.33804485 .00000270 00000-0 17080-3 0 1451 2 26536 99.1569 37.5523 0011286 115.1153 245.1238 14.12593754531075 1 26536U 00055A 11010.76302925 .00000265 00000-0 16803-3 0 1467 2 26536 99.1571 37.9869 0011288 114.0357 246.1992 14.12593925531136 1 26536U 00055A 11011.54216873 .00000267 00000-0 16945-3 0 1469 2 26536 99.1570 38.7833 0011261 112.1436 248.0937 14.12594510531246 1 26536U 00055A 11012.53380139 .00000077 00000-0 66876-4 0 1475 2 26536 99.1571 39.7965 0011258 109.1317 251.1068 14.12594024531389 1 26536U 00055A 11013.31294184 -.00000130 00000-0 -45364-4 0 1488 2 26536 99.1572 40.5929 0011241 106.6821 253.5564 14.12592997531490 1 26536U 00055A 11013.87958964 -.00000156 00000-0 -59301-4 0 1497 2 26536 99.1572 41.1720 0011261 105.2315 255.0093 14.12592689531572 1 26536U 00055A 11014.37540638 -.00000242 00000-0 -10578-3 0 1496 2 26536 99.1572 41.6786 0011273 103.8622 256.3796 14.12592240531642 1 26536U 00055A 11014.37540638 -.00000242 00000-0 -10578-3 0 1508 2 26536 99.1572 41.6786 0011273 103.8622 256.3796 14.12592240531642 1 26536U 00055A 11014.87122328 -.00000249 00000-0 -10947-3 0 1513 2 26536 99.1574 42.1852 0011292 102.5995 257.6432 14.12591923531710 1 26536U 00055A 11015.29620925 -.00000243 00000-0 -10633-3 0 1512 2 26536 99.1574 42.6196 0011280 101.6012 258.6440 14.12591873531773 1 26536U 00055A 11015.72119482 -.00000235 00000-0 -10155-3 0 1522 2 26536 99.1574 43.0539 0011309 100.3438 259.9004 14.12591711531837 1 26536U 00055A 11016.50033505 -.00000125 00000-0 -42667-4 0 1522 2 26536 99.1575 43.8499 0011293 98.5789 261.6678 14.12592183531943 1 26536U 00055A 11016.50033505 -.00000125 00000-0 -42667-4 0 1533 2 26536 99.1575 43.8499 0011293 98.5789 261.6678 14.12592183531943 1 26536U 00055A 11016.92532045 -.00000091 00000-0 -24215-4 0 1544 2 26536 99.1576 44.2842 0011295 97.2819 262.9629 14.12592171532008 1 26536U 00055A 11017.35030629 .00000045 00000-0 49552-4 0 1541 2 26536 99.1576 44.7186 0011279 96.5805 263.6700 14.12592958532060 1 26536U 00055A 11017.77529076 .00000133 00000-0 96964-4 0 1554 2 26536 99.1573 45.1526 0011331 95.4982 264.7498 14.12593510532121 1 26536U 00055A 11018.27110656 .00000304 00000-0 18934-3 0 1550 2 26536 99.1569 45.6593 0011283 94.2635 265.9872 14.12594647532191 1 26536U 00055A 11018.62525971 .00000309 00000-0 19181-3 0 1560 2 26536 99.1569 46.0211 0011293 93.1888 267.0571 14.12594898532245 1 26536U 00055A 11019.47522947 .00000362 00000-0 22061-3 0 1564 2 26536 99.1568 46.8896 0011291 91.0377 269.2109 14.12595779532362 1 26536U 00055A 11019.47522947 .00000362 00000-0 22061-3 0 1575 2 26536 99.1568 46.8896 0011291 91.0377 269.2109 14.12595779532362 1 26536U 00055A 11019.97104428 .00000255 00000-0 16281-3 0 1589 2 26536 99.1567 47.3962 0011299 89.4092 270.8325 14.12595399532438 1 26536U 00055A 11020.32519910 .00000212 00000-0 13985-3 0 1587 2 26536 99.1565 47.7581 0011291 88.4012 271.8452 14.12595476532483 1 26536U 00055A 11020.75018368 .00000081 00000-0 68593-4 0 1596 2 26536 99.1565 48.1923 0011281 87.3708 272.8722 14.12594906532542 1 26536U 00055A 11021.17516910 -.00000032 00000-0 80167-5 0 1598 2 26536 99.1561 48.6266 0011304 86.0268 274.2178 14.12594539532606 1 26536U 00055A 11021.60015431 -.00000068 00000-0 -11870-4 0 1604 2 26536 99.1561 49.0607 0011303 84.8568 275.3892 14.12594428532666 1 26536U 00055A 11022.37929393 -.00000173 00000-0 -68583-4 0 1600 2 26536 99.1560 49.8566 0011312 82.9062 277.3390 14.12593706532770 1 26536U 00055A 11022.80427915 -.00000198 00000-0 -81595-4 0 1617 2 26536 99.1560 50.2908 0011312 82.0449 278.2001 14.12593422532837 1 26536U 00055A 11023.58341853 -.00000267 00000-0 -11884-3 0 1619 2 26536 99.1557 51.0867 0011288 80.1207 280.1233 14.12593000532942 1 26536U 00055A 11023.58341853 -.00000267 00000-0 -11884-3 0 1620 2 26536 99.1557 51.0867 0011288 80.1207 280.1233 14.12593000532942 1 26536U 00055A 11023.58341853 -.00000267 00000-0 -11884-3 0 1631 2 26536 99.1557 51.0867 0011288 80.1207 280.1233 14.12593000532942 1 26536U 00055A 11024.36255801 -.00000185 00000-0 -74783-4 0 1643 2 26536 99.1558 51.8826 0011274 78.2451 281.9986 14.12593120533050 1 26536U 00055A 11024.85837412 -.00000146 00000-0 -53488-4 0 1658 2 26536 99.1556 52.3891 0011264 77.1381 283.1050 14.12593092533127 1 26536U 00055A 11025.28335932 -.00000038 00000-0 45073-5 0 1657 2 26536 99.1557 52.8233 0011226 76.0396 284.2063 14.12593700533183 1 26536U 00055A 11025.85000527 .00000040 00000-0 46571-4 0 1665 2 26536 99.1554 53.4020 0011259 74.3091 285.9332 14.12594120533263 1 26536U 00055A 11026.48748239 .00000138 00000-0 99718-4 0 1663 2 26536 99.1554 54.0532 0011215 72.8492 287.3950 14.12594907533353 1 26536U 00055A 11026.48748239 .00000138 00000-0 99718-4 0 1674 2 26536 99.1554 54.0532 0011215 72.8492 287.3950 14.12594907533353 1 26536U 00055A 11027.40828136 .00000297 00000-0 18540-3 0 1682 2 26536 99.1553 54.9940 0011202 70.3013 289.9391 14.12596077533483 1 26536U 00055A 11028.54157256 .00000141 00000-0 10146-3 0 1699 2 26536 99.1559 56.1526 0011182 67.0127 293.2213 14.12595955533642 1 26536U 00055A 11029.03738773 .00000093 00000-0 75125-4 0 1700 2 26536 99.1554 56.6593 0011207 65.4897 294.7418 14.12595810533711 1 26536U 00055A 11029.88735723 -.00000060 00000-0 -71721-5 0 1722 2 26536 99.1559 57.5280 0011224 62.9748 297.2536 14.12594995533830 1 26536U 00055A 11030.38317318 -.00000122 00000-0 -40909-4 0 1716 2 26536 99.1556 58.0346 0011246 61.4913 298.7385 14.12594778533903 1 26536U 00055A 11030.80815787 -.00000213 00000-0 -89693-4 0 1721 2 26536 99.1557 58.4689 0011178 60.8360 299.3917 14.12594198533961 1 26536U 00055A 11031.58729692 -.00000247 00000-0 -10823-3 0 1721 2 26536 99.1560 59.2649 0011192 58.5902 301.6368 14.12593886534075 1 26536U 00055A 11032.43726625 -.00000173 00000-0 -68178-4 0 1735 2 26536 99.1557 60.1334 0011181 56.2920 303.9321 14.12594013534196 1 26536U 00055A 11033.57055844 -.00000045 00000-0 82507-6 0 1741 2 26536 99.1555 61.2910 0011120 53.4590 306.7621 14.12594552534351 1 26536U 00055A 11034.49135756 .00000181 00000-0 12276-3 0 1758 2 26536 99.1551 62.2313 0011037 51.4180 308.8022 14.12595929534486 1 26536U 00055A 11034.84551017 .00000216 00000-0 14193-3 0 1769 2 26536 99.1548 62.5929 0011062 50.3488 309.8644 14.12596098534530 1 26536U 00055A 11035.27049453 .00000300 00000-0 18697-3 0 1760 2 26536 99.1547 63.0271 0011011 49.2735 310.9419 14.12596815534597 1 26536U 00055A 11035.62464720 .00000280 00000-0 17635-3 0 1776 2 26536 99.1549 63.3891 0011015 48.2119 311.9987 14.12596949534644 1 26536U 00055A 11036.47461490 .00000294 00000-0 18384-3 0 1778 2 26536 99.1541 64.2574 0010998 46.0056 314.2024 14.12597573534764 1 26536U 00055A 11036.47461490 .00000294 00000-0 18384-3 0 1789 2 26536 99.1541 64.2574 0010998 46.0056 314.2024 14.12597573534764 1 26536U 00055A 11036.82876786 .00000180 00000-0 12219-3 0 1792 2 26536 99.1542 64.6193 0010976 45.1553 315.0474 14.12597064534813 1 26536U 00055A 11037.25375233 .00000100 00000-0 79176-4 0 1799 2 26536 99.1539 65.0537 0010982 44.0595 316.1438 14.12596903534876 1 26536U 00055A 11037.60790575 .00000060 00000-0 57473-4 0 1801 2 26536 99.1540 65.4154 0010968 43.2029 317.0001 14.12596859534926 1 26536U 00055A 11038.38704307 -.00000046 00000-0 14342-6 0 1800 2 26536 99.1536 66.2116 0010983 41.0813 319.1171 14.12596457535030 1 26536U 00055A 11038.38704307 -.00000046 00000-0 14342-6 0 1811 2 26536 99.1536 66.2116 0010983 41.0813 319.1171 14.12596457535030 1 26536U 00055A 11038.81202730 -.00000085 00000-0 -20551-4 0 1824 2 26536 99.1538 66.6460 0010980 39.8166 320.3792 14.12596125535092 1 26536U 00055A 11039.23701171 -.00000145 00000-0 -53103-4 0 1820 2 26536 99.1535 67.0801 0011014 38.5640 321.6305 14.12595840535159 1 26536U 00055A 11040.44113417 -.00000269 00000-0 -12006-3 0 1839 2 26536 99.1535 68.3102 0010933 35.4701 324.7192 14.12594907535320 1 26536U 00055A 11040.79528793 -.00000262 00000-0 -11651-3 0 1843 2 26536 99.1536 68.6720 0010914 34.5327 325.6544 14.12594672535378 1 26536U 00055A 11041.22027259 -.00000171 00000-0 -67416-4 0 1843 2 26536 99.1535 69.1061 0010896 33.2262 326.9629 14.12595129535437 1 26536U 00055A 11041.64525619 -.00000219 00000-0 -93161-4 0 1852 2 26536 99.1538 69.5405 0010872 32.2044 327.9783 14.12594776535492 1 26536U 00055A 11042.42439369 .00000025 00000-0 38858-4 0 1850 2 26536 99.1534 70.3362 0010766 30.0577 330.1243 14.12595953535607 1 26536U 00055A 11042.84937713 .00000065 00000-0 60039-4 0 1863 2 26536 99.1533 70.7704 0010800 28.8610 331.3156 14.12596169535664 1 26536U 00055A 11043.27436114 .00000222 00000-0 14480-3 0 1863 2 26536 99.1532 71.2047 0010731 27.6303 332.5485 14.12597173535729 1 26536U 00055A 11043.62851326 .00000247 00000-0 15847-3 0 1874 2 26536 99.1535 71.5666 0010715 26.7373 333.4356 14.12597514535772 1 26536U 00055A 11044.40764952 .00000356 00000-0 21739-3 0 1877 2 26536 99.1535 72.3626 0010673 24.5726 335.5972 14.12598539535885 1 26536U 00055A 11044.40764952 .00000356 00000-0 21739-3 0 1888 2 26536 99.1535 72.3626 0010673 24.5726 335.5972 14.12598539535885 1 26536U 00055A 11044.83263236 .00000313 00000-0 19431-3 0 1894 2 26536 99.1538 72.7970 0010695 23.2732 336.8900 14.12598528535941 1 26536U 00055A 11045.18678547 .00000266 00000-0 16870-3 0 1899 2 26536 99.1535 73.1589 0010731 22.2781 337.8836 14.12598489535993 1 26536U 00055A 11045.96592222 .00000067 00000-0 61073-4 0 1918 2 26536 99.1541 73.9549 0010657 20.1854 339.9707 14.12597706536104 1 26536U 00055A 11046.32007572 -.00000074 00000-0 -14630-4 0 1904 2 26536 99.1538 74.3168 0010728 19.1772 340.9778 14.12597183536152 1 26536U 00055A 11046.74505986 -.00000096 00000-0 -26862-4 0 1917 2 26536 99.1537 74.7509 0010723 18.1252 342.0293 14.12597035536219 1 26536U 00055A 11047.52419699 -.00000177 00000-0 -70538-4 0 1918 2 26536 99.1536 75.5469 0010775 15.8436 344.3071 14.12596671536323 1 26536U 00055A 11047.87835017 -.00000154 00000-0 -58267-4 0 1923 2 26536 99.1536 75.9085 0010765 14.9083 345.2396 14.12596570536371 1 26536U 00055A 11048.30333418 -.00000165 00000-0 -63932-4 0 1927 2 26536 99.1533 76.3426 0010795 13.6903 346.4560 14.12596482536437 1 26536U 00055A 11048.72831806 -.00000172 00000-0 -67752-4 0 1930 2 26536 99.1534 76.7766 0010754 12.6718 347.4721 14.12596329536493 1 26536U 00055A 11049.50745486 -.00000109 00000-0 -33613-4 0 1934 2 26536 99.1535 77.5726 0010728 10.5143 349.6259 14.12596624536600 1 26536U 00055A 11049.50745486 -.00000109 00000-0 -33613-4 0 1945 2 26536 99.1535 77.5726 0010728 10.5143 349.6259 14.12596624536600 1 26536U 00055A 11049.93243854 -.00000119 00000-0 -39360-4 0 1951 2 26536 99.1535 78.0065 0010725 9.3635 350.7720 14.12596399536662 1 26536U 00055A 11050.28659207 -.00000047 00000-0 -49518-7 0 1953 2 26536 99.1533 78.3683 0010654 8.2810 351.8572 14.12596870536710 1 26536U 00055A 11050.78240573 -.00000009 00000-0 20499-4 0 1962 2 26536 99.1529 78.8743 0010614 7.0172 353.1148 14.12597006536784 1 26536U 00055A 11051.56154140 .00000174 00000-0 11933-3 0 1967 2 26536 99.1530 79.6699 0010523 4.6874 355.4415 14.12598305536893 1 26536U 00055A 11051.91569373 .00000250 00000-0 16018-3 0 1979 2 26536 99.1528 80.0318 0010536 3.7195 356.4054 14.12598745536948 1 26536U 00055A 11052.34067686 .00000354 00000-0 21627-3 0 1974 2 26536 99.1526 80.4659 0010450 2.4076 357.7182 14.12599630537005 1 26536U 00055A 11052.83648945 .00000342 00000-0 20980-3 0 1980 2 26536 99.1529 80.9725 0010437 1.1039 359.0141 14.12599859537077 1 26536U 00055A 11053.26147250 .00000348 00000-0 21316-3 0 1981 2 26536 99.1527 81.4065 0010404 359.9897 0.1275 14.12600216537137 1 26536U 00055A 11053.68645516 .00000221 00000-0 14453-3 0 1990 2 26536 99.1528 81.8407 0010391 358.6032 1.5082 14.12599822537191 1 26536U 00055A 11054.46559133 .00000066 00000-0 60610-4 0 1990 2 26536 99.1523 82.6367 0010340 356.4550 3.6532 14.12599357537304 1 26536U 00055A 11054.89057462 -.00000029 00000-0 95912-5 0 2002 2 26536 99.1526 83.0708 0010322 355.1200 4.9844 14.12598846537367 1 26536U 00055A 11055.31555828 -.00000176 00000-0 -69710-4 0 2009 2 26536 99.1523 83.5052 0010389 354.1468 5.9554 14.12598213537423 1 26536U 00055A 11055.66971162 -.00000218 00000-0 -92515-4 0 2017 2 26536 99.1527 83.8673 0010329 353.2146 6.8882 14.12597903537470 1 26536U 00055A 11056.51967862 -.00000219 00000-0 -93171-4 0 2014 2 26536 99.1525 84.7355 0010389 350.8582 9.2400 14.12597718537598 1 26536U 00055A 11056.51967862 -.00000219 00000-0 -93171-4 0 2025 2 26536 99.1525 84.7355 0010389 350.8582 9.2400 14.12597718537598 1 26536U 00055A 11056.94466214 -.00000192 00000-0 -78308-4 0 2033 2 26536 99.1528 85.1696 0010372 349.6643 10.4306 14.12597567537658 1 26536U 00055A 11057.36964587 -.00000198 00000-0 -81962-4 0 2032 2 26536 99.1527 85.6039 0010367 348.4380 11.6559 14.12597490537717 1 26536U 00055A 11057.72379872 -.00000238 00000-0 -10332-3 0 2047 2 26536 99.1528 85.9657 0010339 347.4163 12.6737 14.12597113537760 1 26536U 00055A 11058.14878268 -.00000169 00000-0 -66326-4 0 2045 2 26536 99.1528 86.3997 0010306 346.0202 14.0713 14.12597429537822 1 26536U 00055A 11058.92791843 -.00000091 00000-0 -23965-4 0 2062 2 26536 99.1527 87.1955 0010276 343.8129 16.2711 14.12597622537932 1 26536U 00055A 11059.35290202 .00000065 00000-0 60238-4 0 2055 2 26536 99.1528 87.6296 0010220 342.3553 17.7315 14.12598540537992 1 26536U 00055A 11059.35290202 .00000065 00000-0 60238-4 0 2066 2 26536 99.1528 87.6296 0010220 342.3553 17.7315 14.12598540537992 1 26536U 00055A 11059.91954535 .00000127 00000-0 93626-4 0 2071 2 26536 99.1529 88.2086 0010209 340.9177 19.1616 14.12598938538071 1 26536U 00055A 11060.34452840 .00000318 00000-0 19668-3 0 2077 2 26536 99.1529 88.6427 0010169 339.3958 20.6858 14.12600186538139 1 26536U 00055A 11060.76951004 .00000313 00000-0 19401-3 0 2080 2 26536 99.1528 89.0770 0010138 338.3132 21.7596 14.12600364538198 1 26536U 00055A 11061.19449300 .00000409 00000-0 24587-3 0 2086 2 26536 99.1523 89.5111 0010108 336.8653 23.2088 14.12601169538259 1 26536U 00055A 11061.61947498 .00000326 00000-0 20146-3 0 2090 2 26536 99.1524 89.9454 0010089 335.5841 24.4839 14.12601118538315 1 26536U 00055A 11062.46944085 .00000200 00000-0 13315-3 0 2094 2 26536 99.1522 90.8134 0010016 333.2884 26.7766 14.12600971538434 1 26536U 00055A 11062.46944085 .00000200 00000-0 13315-3 0 2106 2 26536 99.1522 90.8134 0010016 333.2884 26.7766 14.12600971538434 1 26536U 00055A 11062.89442351 .00000058 00000-0 56630-4 0 2112 2 26536 99.1520 91.2474 0010062 332.0415 28.0167 14.12600258538496 1 26536U 00055A 11063.31940725 -.00000073 00000-0 -14440-4 0 2110 2 26536 99.1514 91.6816 0010123 331.1797 28.8792 14.12599803538556 1 26536U 00055A 11063.67356017 -.00000102 00000-0 -29836-4 0 2123 2 26536 99.1515 92.0433 0010129 330.1524 29.9064 14.12599631538609 1 26536U 00055A 11064.52352668 -.00000201 00000-0 -83571-4 0 2122 2 26536 99.1512 92.9112 0010083 327.8061 32.2496 14.12599095538720 1 26536U 00055A 11064.52352668 -.00000201 00000-0 -83571-4 0 2133 2 26536 99.1512 92.9112 0010083 327.8061 32.2496 14.12599095538720 1 26536U 00055A 11064.87767931 -.00000185 00000-0 -74896-4 0 2146 2 26536 99.1512 93.2727 0010075 326.7985 33.2540 14.12598887538774 1 26536U 00055A 11065.44432396 -.00000176 00000-0 -69625-4 0 2148 2 26536 99.1513 93.8514 0010068 325.1683 34.8846 14.12598932538851 1 26536U 00055A 11065.86930689 -.00000144 00000-0 -52453-4 0 2159 2 26536 99.1514 94.2852 0009998 323.7792 36.2703 14.12598894538919 1 26536U 00055A 11066.29429014 -.00000088 00000-0 -22248-4 0 2158 2 26536 99.1513 94.7192 0009998 322.3909 37.6588 14.12599212538972 1 26536U 00055A 11066.71927282 -.00000121 00000-0 -40402-4 0 2166 2 26536 99.1513 95.1531 0009975 321.0865 38.9583 14.12599001539039 1 26536U 00055A 11067.56923844 .00000043 00000-0 48422-4 0 2161 2 26536 99.1510 96.0211 0009917 318.1608 41.8823 14.12600020539156 1 26536U 00055A 11067.99422103 .00000160 00000-0 11178-3 0 2178 2 26536 99.1509 96.4550 0009930 317.0154 43.0256 14.12600637539218 1 26536U 00055A 11068.63169488 .00000228 00000-0 14844-3 0 2183 2 26536 99.1512 97.1063 0009905 314.9166 45.1229 14.12601327539300 1 26536U 00055A 11069.12750732 .00000315 00000-0 19527-3 0 2186 2 26536 99.1508 97.6127 0009858 313.1171 46.9197 14.12602031539378 1 26536U 00055A 11069.12750732 .00000315 00000-0 19527-3 0 2197 2 26536 99.1508 97.6127 0009858 313.1171 46.9197 14.12602031539378 1 26536U 00055A 11069.62331962 .00000291 00000-0 18249-3 0 2207 2 26536 99.1511 98.1195 0009894 311.9183 48.1139 14.12602265539449 1 26536U 00055A 11070.26079314 .00000285 00000-0 17884-3 0 2206 2 26536 99.1505 98.7707 0009852 309.7664 50.2635 14.12602597539533 1 26536U 00055A 11070.89826651 .00000166 00000-0 11462-3 0 2214 2 26536 99.1508 99.4221 0009852 307.7516 52.2736 14.12602300539625 1 26536U 00055A 11071.32324936 .00000049 00000-0 51681-4 0 2210 2 26536 99.1505 99.8564 0009870 306.9010 53.1232 14.12601932539683 1 26536U 00055A 11071.74823230 -.00000028 00000-0 98366-5 0 2228 2 26536 99.1507 100.2907 0009863 305.7712 54.2519 14.12601532539744 1 26536U 00055A 11072.45653727 -.00000097 00000-0 -26935-4 0 2228 2 26536 99.1508 101.0140 0009860 303.8672 56.1560 14.12601257539846 1 26536U 00055A 11072.81068953 -.00000149 00000-0 -55332-4 0 2231 2 26536 99.1508 101.3757 0009821 302.5110 57.5099 14.12600862539891 1 26536U 00055A 11073.23567260 -.00000171 00000-0 -67122-4 0 2238 2 26536 99.1507 101.8098 0009852 301.6861 58.3348 14.12600754539953 1 26536U 00055A 11073.66065552 -.00000175 00000-0 -69407-4 0 2245 2 26536 99.1508 102.2438 0009815 300.3385 59.6817 14.12600636540016 1 26536U 00055A 11074.43979067 -.00000135 00000-0 -47612-4 0 2246 2 26536 99.1508 103.0394 0009826 298.0291 61.9891 14.12600707540126 1 26536U 00055A 11074.43979067 -.00000135 00000-0 -47612-4 0 2257 2 26536 99.1508 103.0394 0009826 298.0291 61.9891 14.12600707540126 1 26536U 00055A 11074.79394299 -.00000117 00000-0 -37766-4 0 2264 2 26536 99.1508 103.4012 0009781 296.8706 63.1463 14.12600656540171 1 26536U 00055A 11075.50224722 -.00000009 00000-0 20503-4 0 2267 2 26536 99.1505 104.1242 0009775 294.5982 65.4180 14.12601330540277 1 26536U 00055A 11075.50224722 -.00000009 00000-0 20503-4 0 2278 2 26536 99.1505 104.1242 0009775 294.5982 65.4180 14.12601330540277 1 26536U 00055A 11075.92722976 .00000031 00000-0 41672-4 0 2283 2 26536 99.1505 104.5580 0009762 293.3829 66.6311 14.12601453540331 1 26536U 00055A 11076.28138209 .00000181 00000-0 12320-3 0 2286 2 26536 99.1505 104.9197 0009773 292.0135 68.0047 14.12602406540383 1 26536U 00055A 11076.70636354 .00000212 00000-0 13984-3 0 2290 2 26536 99.1505 105.3536 0009753 290.7254 69.2877 14.12602757540440 1 26536U 00055A 11077.41466688 .00000350 00000-0 21443-3 0 2292 2 26536 99.1500 106.0769 0009757 288.4913 71.5213 14.12603888540548 1 26536U 00055A 11077.83964854 .00000309 00000-0 19191-3 0 2309 2 26536 99.1499 106.5108 0009713 287.0841 72.9244 14.12603867540607 1 26536U 00055A 11078.26463095 .00000331 00000-0 20395-3 0 2301 2 26536 99.1496 106.9448 0009714 285.6011 74.4101 14.12604337540667 1 26536U 00055A 11078.61878224 .00000214 00000-0 14102-3 0 2314 2 26536 99.1495 107.3064 0009727 284.6162 75.3910 14.12603994540717 1 26536U 00055A 11079.32708616 .00000139 00000-0 10044-3 0 2317 2 26536 99.1492 108.0301 0009696 282.7466 77.2610 14.12603941540818 1 26536U 00055A 11079.75206842 .00000011 00000-0 31206-4 0 2322 2 26536 99.1491 108.4640 0009710 281.4472 78.5580 14.12603365540873 1 26536U 00055A 11080.53120331 -.00000117 00000-0 -38145-4 0 2326 2 26536 99.1493 109.2599 0009699 279.1998 80.8072 14.12602893540989 1 26536U 00055A 11081.38116859 -.00000142 00000-0 -51422-4 0 2332 2 26536 99.1488 110.1279 0009713 276.7066 83.3011 14.12602633541103 1 26536U 00055A 11081.87698130 -.00000164 00000-0 -63635-4 0 2347 2 26536 99.1489 110.6341 0009726 275.3015 84.7035 14.12602312541174 1 26536U 00055A 11082.30196416 -.00000200 00000-0 -82989-4 0 2340 2 26536 99.1485 111.0680 0009715 273.8871 86.1188 14.12602072541237 1 26536U 00055A 11082.65611643 -.00000223 00000-0 -95025-4 0 2353 2 26536 99.1487 111.4297 0009713 272.6730 87.3331 14.12601878541287 1 26536U 00055A 11083.43525091 -.00000125 00000-0 -42387-4 0 2355 2 26536 99.1484 112.2253 0009732 270.4041 89.6021 14.12602265541391 1 26536U 00055A 11083.43525091 -.00000125 00000-0 -42387-4 0 2366 2 26536 99.1484 112.2253 0009732 270.4041 89.6021 14.12602265541391 1 26536U 00055A 11083.86023348 -.00000088 00000-0 -22218-4 0 2371 2 26536 99.1483 112.6593 0009724 268.8125 91.1935 14.12602302541457 1 26536U 00055A 11084.21438566 .00000019 00000-0 35221-4 0 2373 2 26536 99.1484 113.0209 0009763 267.3705 92.6388 14.12602912541509 1 26536U 00055A 11084.56853696 .00000042 00000-0 48001-4 0 2383 2 26536 99.1484 113.3825 0009753 266.0675 93.9398 14.12603179541553 1 26536U 00055A 11085.48933131 .00000257 00000-0 16417-3 0 2381 2 26536 99.1480 114.3228 0009784 263.4652 96.5441 14.12604647541680 1 26536U 00055A 11085.91431259 .00000289 00000-0 18133-3 0 2396 2 26536 99.1483 114.7572 0009753 262.5954 97.4093 14.12604901541743 1 26536U 00055A 11086.41012511 .00000360 00000-0 21949-3 0 2397 2 26536 99.1480 115.2635 0009778 260.9907 99.0185 14.12605691541818 1 26536U 00055A 11086.76427596 .00000233 00000-0 15092-3 0 2401 2 26536 99.1481 115.6253 0009768 259.8973 100.1062 14.12605201541868 1 26536U 00055A 11087.18925847 .00000220 00000-0 14416-3 0 2405 2 26536 99.1477 116.0594 0009759 258.9153 101.0916 14.12605374541922 1 26536U 00055A 11087.54341008 .00000149 00000-0 10571-3 0 2415 2 26536 99.1481 116.4213 0009787 257.6869 102.3206 14.12605283541970 1 26536U 00055A 11088.46420475 -.00000009 00000-0 20549-4 0 2416 2 26536 99.1481 117.3613 0009785 255.1391 104.8689 14.12604712542109 1 26536U 00055A 11089.45583021 -.00000147 00000-0 -54199-4 0 2426 2 26536 99.1482 118.3739 0009798 251.9538 108.0555 14.12603934542249 1 26536U 00055A 11089.45584194 -.00000153 00000-0 00000+0 0 2421 2 26536 99.1463 118.3711 0009179 251.2367 108.8292 14.12604300542248 1 26536U 00055A 11089.80998235 -.00000190 00000-0 -77241-4 0 2434 2 26536 99.1483 118.7354 0009825 250.7000 109.3097 14.12603558542291 1 26536U 00055A 11090.23496504 -.00000152 00000-0 -56720-4 0 2432 2 26536 99.1480 119.1694 0009828 249.5525 110.4610 14.12603747542352 1 26536U 00055A 11090.65994706 -.00000181 00000-0 -72763-4 0 2443 2 26536 99.1478 119.6030 0009832 248.2524 111.7595 14.12603503542411 1 26536U 00055A 11091.50991164 -.00000106 00000-0 -31997-4 0 2444 2 26536 99.1475 120.4707 0009881 245.4297 114.5859 14.12603877542530 1 26536U 00055A 11091.50991164 -.00000106 00000-0 -31997-4 0 2455 2 26536 99.1475 120.4707 0009881 245.4297 114.5859 14.12603877542530 1 26536U 00055A 11091.93489375 -.00000044 00000-0 13300-5 0 2468 2 26536 99.1474 120.9046 0009893 244.3454 115.6695 14.12604019542591 1 26536U 00055A 11092.35987609 .00000068 00000-0 62050-4 0 2468 2 26536 99.1472 121.3384 0009962 242.7382 117.2816 14.12604703542658 1 26536U 00055A 11092.71402707 .00000133 00000-0 96809-4 0 2472 2 26536 99.1472 121.6999 0009933 241.7727 118.2449 14.12605097542709 1 26536U 00055A 11093.49315992 .00000304 00000-0 18923-3 0 2477 2 26536 99.1468 122.4953 0009980 239.3909 120.6302 14.12606466542818 1 26536U 00055A 11093.49315992 .00000304 00000-0 18923-3 0 2488 2 26536 99.1468 122.4953 0009980 239.3909 120.6302 14.12606466542818 1 26536U 00055A 11093.91814107 .00000311 00000-0 19314-3 0 2491 2 26536 99.1467 122.9293 0009943 238.2843 121.7343 14.12606673542876 1 26536U 00055A 11094.41395318 .00000460 00000-0 27363-3 0 2493 2 26536 99.1463 123.4356 0009968 237.0665 122.9587 14.12607877542942 1 26536U 00055A 11094.76810340 .00000375 00000-0 22759-3 0 2509 2 26536 99.1465 123.7973 0009978 236.0529 123.9666 14.12607651542995 1 26536U 00055A 11095.19308522 .00000324 00000-0 19993-3 0 2501 2 26536 99.1464 124.2313 0009978 234.7478 125.2753 14.12607770543058 1 26536U 00055A 11095.61806662 .00000272 00000-0 17199-3 0 2515 2 26536 99.1466 124.6652 0009992 233.6215 126.4031 14.12607843543113 1 26536U 00055A 11096.25553909 .00000137 00000-0 98871-4 0 2516 2 26536 99.1465 125.3163 0009970 231.6509 128.3756 14.12607465543202 1 26536U 00055A 11096.82218115 -.00000008 00000-0 20930-4 0 2526 2 26536 99.1465 125.8946 0010026 229.8725 130.1540 14.12606846543281 1 26536U 00055A 11097.17633303 -.00000032 00000-0 79253-5 0 2525 2 26536 99.1461 126.2564 0009995 229.0380 130.9928 14.12606852543331 1 26536U 00055A 11097.53048436 -.00000098 00000-0 -27932-4 0 2532 2 26536 99.1462 126.6179 0010028 227.8204 132.2115 14.12606609543386 1 26536U 00055A 11098.30961792 -.00000139 00000-0 -49766-4 0 2532 2 26536 99.1460 127.4133 0010028 225.6695 134.3660 14.12606254543499 1 26536U 00055A 11098.80542996 -.00000141 00000-0 -50764-4 0 2542 2 26536 99.1461 127.9194 0010059 224.0540 135.9824 14.12606049543567 1 26536U 00055A 11099.15958167 -.00000124 00000-0 -42060-4 0 2543 2 26536 99.1459 128.2810 0010067 222.9999 137.0402 14.12606185543619 1 26536U 00055A 11099.93871480 -.00000102 00000-0 -29715-4 0 2561 2 26536 99.1458 129.0763 0010094 220.7071 139.3348 14.12606123543729 1 26536U 00055A 11100.29286634 .00000007 00000-0 28814-4 0 2554 2 26536 99.1454 129.4377 0010156 219.6416 140.4052 14.12606754543779 1 26536U 00055A 11100.78867755 .00000022 00000-0 37054-4 0 2561 2 26536 99.1454 129.9438 0010200 218.0446 142.0012 14.12606879543848 1 26536U 00055A 11101.49697908 .00000227 00000-0 14745-3 0 2569 2 26536 99.1452 130.6667 0010270 215.9549 144.0946 14.12608271543943 1 26536U 00055A 11101.49697908 .00000227 00000-0 14745-3 0 2570 2 26536 99.1452 130.6667 0010270 215.9549 144.0946 14.12608271543943 1 26536U 00055A 11101.92196004 .00000285 00000-0 17890-3 0 2588 2 26536 99.1455 131.1008 0010211 214.9514 145.0982 14.12608671544000 1 26536U 00055A 11102.27611108 .00000374 00000-0 22694-3 0 2581 2 26536 99.1453 131.4624 0010285 213.8846 146.1697 14.12609392544053 1 26536U 00055A 11102.77192156 .00000319 00000-0 19725-3 0 2594 2 26536 99.1456 131.9689 0010290 212.3940 147.6581 14.12609421544126 1 26536U 00055A 11103.48022296 .00000366 00000-0 22286-3 0 2598 2 26536 99.1457 132.6920 0010360 210.2986 149.7590 14.12610275544221 1 26536U 00055A 11103.83437345 .00000279 00000-0 17597-3 0 2606 2 26536 99.1459 133.0537 0010339 209.3482 150.7080 14.12609997544278 1 26536U 00055A 11104.25935476 .00000198 00000-0 13184-3 0 2609 2 26536 99.1454 133.4878 0010349 208.0631 151.9969 14.12609884544339 1 26536U 00055A 11104.68433583 .00000128 00000-0 94053-4 0 2617 2 26536 99.1455 133.9216 0010327 207.0984 152.9632 14.12609689544394 1 26536U 00055A 11105.46346844 -.00000020 00000-0 14584-4 0 2610 2 26536 99.1456 134.7170 0010304 204.7401 155.3273 14.12609127544504 1 26536U 00055A 11105.81761940 -.00000090 00000-0 -23531-4 0 2628 2 26536 99.1455 135.0785 0010294 203.9174 156.1496 14.12608671544559 1 26536U 00055A 11106.24260107 -.00000182 00000-0 -73040-4 0 2627 2 26536 99.1454 135.5124 0010340 202.5296 157.5415 14.12608245544612 1 26536U 00055A 11106.59675234 -.00000187 00000-0 -75620-4 0 2638 2 26536 99.1454 135.8738 0010338 201.4635 158.6108 14.12608182544664 1 26536U 00055A 11107.44671494 -.00000185 00000-0 -74957-4 0 2637 2 26536 99.1452 136.7414 0010391 198.9553 161.1234 14.12608002544784 1 26536U 00055A 11107.87169635 -.00000119 00000-0 -38920-4 0 2641 2 26536 99.1452 137.1750 0010377 197.7062 162.3753 14.12608148544845 1 26536U 00055A 11108.22584743 -.00000052 00000-0 -29275-5 0 2642 2 26536 99.1449 137.5364 0010424 196.8270 163.2583 14.12608516544895 1 26536U 00055A 11108.57999799 -.00000020 00000-0 14195-4 0 2650 2 26536 99.1450 137.8979 0010469 195.6761 164.4104 14.12608757544948 1 26536U 00055A 11109.28829910 .00000165 00000-0 11418-3 0 2659 2 26536 99.1447 138.6207 0010513 193.7922 166.2983 14.12609822545046 1 26536U 00055A 11109.71327959 .00000179 00000-0 12153-3 0 2666 2 26536 99.1448 139.0545 0010524 192.4920 167.5989 14.12610025545107 1 26536U 00055A 11110.20909058 .00000263 00000-0 16709-3 0 2663 2 26536 99.1441 139.5604 0010537 191.2393 168.8569 14.12610746545171 1 26536U 00055A 11110.56324060 .00000269 00000-0 17014-3 0 2673 2 26536 99.1442 139.9218 0010567 190.2588 169.8380 14.12611064545227 1 26536U 00055A 11111.27154118 .00000356 00000-0 21755-3 0 2671 2 26536 99.1437 140.6449 0010549 188.3725 171.7282 14.12611904545324 1 26536U 00055A 11111.27154118 .00000356 00000-0 21755-3 0 2682 2 26536 99.1437 140.6449 0010549 188.3725 171.7282 14.12611904545324 1 26536U 00055A 11111.76735125 .00000236 00000-0 15236-3 0 2694 2 26536 99.1441 141.1512 0010600 186.9836 173.1166 14.12611621545391 1 26536U 00055A 11112.47565205 .00000260 00000-0 16554-3 0 2694 2 26536 99.1435 141.8743 0010608 184.9075 175.2001 14.12612272545493 1 26536U 00055A 11112.82980204 .00000156 00000-0 10953-3 0 2706 2 26536 99.1438 142.2362 0010683 183.9781 176.1279 14.12611785545545 1 26536U 00055A 11113.25478290 .00000105 00000-0 81576-4 0 2705 2 26536 99.1432 142.6701 0010686 182.8206 177.2894 14.12611665545602 1 26536U 00055A 11113.60893345 .00000005 00000-0 27992-4 0 2718 2 26536 99.1435 143.0317 0010729 181.8823 178.2301 14.12611311545652 1 26536U 00055A 11114.31723459 -.00000094 00000-0 -25694-4 0 2712 2 26536 99.1433 143.7546 0010815 179.7092 180.4080 14.12610882545753 1 26536U 00055A 11114.74221536 -.00000141 00000-0 -50816-4 0 2726 2 26536 99.1438 144.1886 0010845 178.4280 181.6916 14.12610547545814 1 26536U 00055A 11115.16719632 -.00000178 00000-0 -71102-4 0 2723 2 26536 99.1438 144.6224 0010859 177.2029 182.9202 14.12610321545876 1 26536U 00055A 11115.94632758 -.00000214 00000-0 -90411-4 0 2749 2 26536 99.1439 145.4175 0010888 174.9975 185.1282 14.12609877545986 1 26536U 00055A 11116.30047885 -.00000173 00000-0 -68172-4 0 2733 2 26536 99.1436 145.7790 0010915 174.0795 186.0529 14.12610076546035 1 26536U 00055A 11116.65462916 -.00000144 00000-0 -52695-4 0 2749 2 26536 99.1440 146.1406 0010958 173.0444 187.0893 14.12610168546088 1 26536U 00055A 11117.29209968 .00000010 00000-0 30630-4 0 2741 2 26536 99.1437 146.7911 0010980 171.4278 188.7099 14.12610933546179 1 26536U 00055A 11117.78791004 .00000040 00000-0 46477-4 0 2752 2 26536 99.1440 147.2973 0010977 169.9718 190.1676 14.12611099546244 1 26536U 00055A 11118.14206046 .00000212 00000-0 13949-3 0 2758 2 26536 99.1437 147.6588 0011004 169.2598 190.8856 14.12612094546295 1 26536U 00055A 11118.14206046 .00000212 00000-0 13949-3 0 2769 2 26536 99.1437 147.6588 0011004 169.2598 190.8856 14.12612094546295 1 26536U 00055A 11118.49620974 .00000253 00000-0 16168-3 0 2779 2 26536 99.1435 148.0199 0011013 168.2162 191.9280 14.12612538546344 1 26536U 00055A 11119.06284962 .00000395 00000-0 23847-3 0 2775 2 26536 99.1436 148.5987 0010966 166.6772 193.4716 14.12613612546424 1 26536U 00055A 11119.91280807 .00000387 00000-0 23413-3 0 2795 2 26536 99.1439 149.4662 0011031 164.4109 195.7377 14.12614213546540 1 26536U 00055A 11120.26695821 .00000374 00000-0 22720-3 0 2786 2 26536 99.1435 149.8277 0011053 163.3622 196.7915 14.12614485546599 1 26536U 00055A 11120.26695821 .00000374 00000-0 22720-3 0 2797 2 26536 99.1435 149.8277 0011053 163.3622 196.7915 14.12614485546599 1 26536U 00055A 11120.62110777 .00000277 00000-0 17479-3 0 2808 2 26536 99.1438 150.1894 0011052 162.6099 197.5438 14.12614261546648 1 26536U 00055A 11121.25857768 .00000152 00000-0 10732-3 0 2803 2 26536 99.1435 150.8401 0011067 160.6438 199.5140 14.12613985546731 1 26536U 00055A 11121.75438756 .00000010 00000-0 30378-4 0 2813 2 26536 99.1435 151.3460 0011072 159.5230 200.6364 14.12613429546808 1 26536U 00055A 11122.46268807 -.00000104 00000-0 -31140-4 0 2814 2 26536 99.1429 152.0691 0011044 157.2987 202.8670 14.12612984546908 1 26536U 00055A 11122.81683812 -.00000155 00000-0 -58570-4 0 2823 2 26536 99.1427 152.4304 0011065 156.3990 203.7678 14.12612615546952 1 26536U 00055A 11123.24181846 -.00000145 00000-0 -53008-4 0 2821 2 26536 99.1426 152.8643 0011067 155.2722 204.8998 14.12612717547012 1 26536U 00055A 11123.59596817 -.00000134 00000-0 -47305-4 0 2839 2 26536 99.1428 153.2259 0011075 154.2785 205.8945 14.12612729547060 1 26536U 00055A 11124.44592779 -.00000080 00000-0 -18008-4 0 2835 2 26536 99.1425 154.0932 0011153 152.0245 208.1528 14.12612905547180 1 26536U 00055A 11124.80007776 -.00000059 00000-0 -68234-5 0 2847 2 26536 99.1423 154.4545 0011105 150.9425 209.2362 14.12612934547232 1 26536U 00055A 11125.15422781 .00000018 00000-0 34535-4 0 2842 2 26536 99.1418 154.8159 0011118 150.0614 210.1223 14.12613423547282 1 26536U 00055A 11125.93335676 .00000072 00000-0 63814-4 0 2868 2 26536 99.1416 155.6107 0011098 147.8098 212.3749 14.12613754547395 1 26536U 00055A 11126.28750657 .00000163 00000-0 11304-3 0 2853 2 26536 99.1415 155.9721 0011196 147.1443 213.0465 14.12614426547441 1 26536U 00055A 11126.78331518 .00000207 00000-0 13669-3 0 2865 2 26536 99.1414 156.4782 0011188 145.5021 214.6881 14.12614843547518 1 26536U 00055A 11127.49161315 .00000413 00000-0 24808-3 0 2866 2 26536 99.1413 157.2009 0011200 143.6495 216.5461 14.12616485547617 1 26536U 00055A 11127.49161315 .00000413 00000-0 24808-3 0 2877 2 26536 99.1413 157.2009 0011200 143.6495 216.5461 14.12616485547617 1 26536U 00055A 11127.91659153 .00000404 00000-0 24305-3 0 2889 2 26536 99.1416 157.6347 0011168 142.3702 217.8231 14.12616637547673 1 26536U 00055A 11128.27074092 .00000407 00000-0 24457-3 0 2883 2 26536 99.1410 157.9963 0011177 141.4506 218.7469 14.12616982547728 1 26536U 00055A 11128.62488974 .00000347 00000-0 21254-3 0 2896 2 26536 99.1414 158.3581 0011148 140.4503 219.7469 14.12616952547770 1 26536U 00055A 11129.40401769 .00000231 00000-0 14975-3 0 2894 2 26536 99.1411 159.1533 0011229 138.4860 221.7149 14.12616866547880 1 26536U 00055A 11129.75816693 .00000069 00000-0 62428-4 0 2906 2 26536 99.1413 159.5149 0011234 137.6165 222.5844 14.12616156547933 1 26536U 00055A 11130.53729597 -.00000097 00000-0 -27404-4 0 2919 2 26536 99.1417 160.3101 0011255 135.5480 224.6598 14.12615576548042 1 26536U 00055A 11130.74979448 .00000219 00000-0 11854-3 0 2908 2 26536 99.1427 160.5273 0011148 134.7781 225.4773 14.12616766548070 1 26536U 00055A 11131.38725424 -.00000165 00000-0 -64012-4 0 2921 2 26536 99.1414 161.1777 0011261 133.0365 227.1738 14.12615118548168 1 26536U 00055A 11131.74140384 -.00000174 00000-0 -69045-4 0 2939 2 26536 99.1418 161.5392 0011262 132.1670 228.0457 14.12614944548219 1 26536U 00055A 11132.16638315 -.00000125 00000-0 -42321-4 0 2936 2 26536 99.1416 161.9728 0011271 131.2492 228.9665 14.12615076548279 1 26536U 00055A 11132.94551127 -.00000148 00000-0 -54958-4 0 2953 2 26536 99.1417 162.7678 0011307 129.1042 231.1118 14.12614786548388 1 26536U 00055A 11133.29966104 -.00000060 00000-0 -76128-5 0 2943 2 26536 99.1416 163.1292 0011362 128.5691 231.6533 14.12615244548430 1 26536U 00055A 11133.65380965 -.00000069 00000-0 -12303-4 0 2952 2 26536 99.1415 163.4903 0011392 127.6730 232.5475 14.12615183548480 1 26536U 00055A 11134.43293770 .00000067 00000-0 61138-4 0 2952 2 26536 99.1411 164.2852 0011409 125.6132 234.6126 14.12616015548594 1 26536U 00055A 11134.78708632 .00000126 00000-0 93104-4 0 2963 2 26536 99.1414 164.6468 0011412 124.5926 235.6327 14.12616323548649 1 26536U 00055A 11135.21206500 .00000275 00000-0 17349-3 0 2960 2 26536 99.1410 165.0804 0011388 123.6807 236.5498 14.12617350548701 1 26536U 00055A 11135.92036103 .00000339 00000-0 20808-3 0 2985 2 26536 99.1410 165.8030 0011456 121.5351 238.6926 14.12618122548805 1 26536U 00055A 11136.34533949 .00000446 00000-0 26556-3 0 2976 2 26536 99.1407 166.2367 0011463 120.6614 239.5718 14.12619030548863 1 26536U 00055A 11136.69948715 .00000376 00000-0 22818-3 0 2985 2 26536 99.1410 166.5983 0011456 119.6726 240.5567 14.12618920548915 1 26536U 00055A 11137.40778433 .00000313 00000-0 19405-3 0 2982 2 26536 99.1404 167.3211 0011518 117.8732 242.3604 14.12619132549017 1 26536U 00055A 11137.83276224 .00000187 00000-0 12571-3 0 2997 2 26536 99.1409 167.7550 0011483 116.8065 243.4254 14.12618684549071 1 26536U 00055A 11138.25774078 .00000102 00000-0 80172-4 0 2994 2 26536 99.1402 168.1890 0011466 115.3633 244.8713 14.12618530549134 1 26536U 00055A 11138.61188942 -.00000027 00000-0 10615-4 0 3008 2 26536 99.1407 168.5506 0011446 114.5176 245.7175 14.12618008549185 1 26536U 00055A 11139.32018692 -.00000110 00000-0 -34191-4 0 3000 2 26536 99.1402 169.2735 0011455 112.3802 247.8572 14.12617590549284 1 26536U 00055A 11139.32018692 -.00000110 00000-0 -34191-4 0 3011 2 26536 99.1402 169.2735 0011455 112.3802 247.8572 14.12617590549284 1 26536U 00055A 11139.74516548 -.00000141 00000-0 -51038-4 0 3024 2 26536 99.1402 169.7070 0011485 111.4028 248.8365 14.12617353549349 1 26536U 00055A 11140.45346282 -.00000147 00000-0 -54330-4 0 3024 2 26536 99.1399 170.4297 0011478 109.4078 250.8337 14.12617269549447 1 26536U 00055A 11140.45346282 -.00000147 00000-0 -54330-4 0 3035 2 26536 99.1399 170.4297 0011478 109.4078 250.8337 14.12617269549447 1 26536U 00055A 11140.87844118 -.00000192 00000-0 -78597-4 0 3044 2 26536 99.1400 170.8634 0011483 108.4714 251.7693 14.12616848549505 1 26536U 00055A 11141.23259021 -.00000174 00000-0 -69161-4 0 3045 2 26536 99.1398 171.2249 0011473 107.3939 252.8500 14.12616935549555 1 26536U 00055A 11141.65756846 -.00000144 00000-0 -52565-4 0 3056 2 26536 99.1399 171.6585 0011495 106.2432 254.0016 14.12617044549618 1 26536U 00055A 11142.43669478 .00000023 00000-0 37340-4 0 3055 2 26536 99.1395 172.4532 0011485 104.6294 255.6175 14.12617869549722 1 26536U 00055A 11142.79084278 .00000056 00000-0 55003-4 0 3066 2 26536 99.1397 172.8146 0011505 103.5356 256.7094 14.12618005549779 1 26536U 00055A 11143.14499129 .00000161 00000-0 11215-3 0 3064 2 26536 99.1395 173.1761 0011472 102.6678 257.5812 14.12618723549824 1 26536U 00055A 11143.92411620 .00000247 00000-0 15852-3 0 3088 2 26536 99.1399 173.9712 0011496 100.5112 259.7347 14.12619457549932 1 26536U 00055A 11144.34909398 .00000369 00000-0 22446-3 0 3070 2 26536 99.1398 174.4048 0011474 99.5128 260.7376 14.12620406549995 1 26536U 00055A 11144.70324103 .00000331 00000-0 20349-3 0 3085 2 26536 99.1402 174.7667 0011462 98.3863 261.8599 14.12620480550040 1 26536U 00055A 11145.41153670 .00000288 00000-0 18058-3 0 3088 2 26536 99.1402 175.4894 0011476 96.6521 263.5951 14.12620752550141 1 26536U 00055A 11145.76568446 .00000194 00000-0 12965-3 0 3095 2 26536 99.1406 175.8511 0011462 95.5853 264.6600 14.12620404550198 1 26536U 00055A 11146.19066224 .00000140 00000-0 10041-3 0 3094 2 26536 99.1402 176.2848 0011478 94.5243 265.7231 14.12620346550255 1 26536U 00055A 11146.89895793 .00000029 00000-0 40484-4 0 3116 2 26536 99.1407 177.0077 0011464 92.7566 267.4896 14.12619936550356 1 26536U 00055A 11147.32393577 -.00000085 00000-0 -21076-4 0 3107 2 26536 99.1403 177.4412 0011490 91.6162 268.6307 14.12619478550416 1 26536U 00055A 11147.67808411 -.00000139 00000-0 -49786-4 0 3112 2 26536 99.1408 177.8031 0011495 90.7164 269.5317 14.12619171550465 1 26536U 00055A 11148.45720990 -.00000162 00000-0 -62156-4 0 3116 2 26536 99.1405 178.5977 0011512 88.8510 271.3985 14.12619018550576 1 26536U 00055A 11148.81135787 -.00000176 00000-0 -70089-4 0 3120 2 26536 99.1406 178.9591 0011510 87.8823 272.3652 14.12618730550625 1 26536U 00055A 11149.23633590 -.00000163 00000-0 -63127-4 0 3123 2 26536 99.1403 179.3926 0011499 86.7143 273.5356 14.12618777550689 1 26536U 00055A 11149.59048377 -.00000201 00000-0 -83582-4 0 3136 2 26536 99.1405 179.7539 0011497 85.9048 274.3439 14.12618569550734 1 26536U 00055A 11150.36960916 -.00000051 00000-0 -27351-5 0 3131 2 26536 99.1400 180.5488 0011483 83.7178 276.5314 14.12619207550845 1 26536U 00055A 11150.36960916 -.00000051 00000-0 -27351-5 0 3142 2 26536 99.1400 180.5488 0011483 83.7178 276.5314 14.12619207550845 1 26536U 00055A 11150.72375689 -.00000014 00000-0 17319-4 0 3150 2 26536 99.1399 180.9099 0011513 82.9641 277.2844 14.12619372550898 1 26536U 00055A 11151.50288114 .00000158 00000-0 11057-3 0 3153 2 26536 99.1394 181.7046 0011456 81.1391 279.1087 14.12620531551006 1 26536U 00055A 11151.85702854 .00000211 00000-0 13896-3 0 3167 2 26536 99.1392 182.0659 0011480 80.2296 280.0174 14.12620898551058 1 26536U 00055A 11152.21117598 .00000366 00000-0 22272-3 0 3162 2 26536 99.1387 182.4273 0011428 79.4933 280.7568 14.12621925551100 1 26536U 00055A 11152.56532236 .00000366 00000-0 22282-3 0 3172 2 26536 99.1389 182.7886 0011426 78.6647 281.5814 14.12622273551151 1 26536U 00055A 11153.41527530 .00000397 00000-0 23913-3 0 3174 2 26536 99.1387 183.6558 0011428 76.2380 284.0068 14.12623099551274 1 26536U 00055A 11153.41527530 .00000397 00000-0 23913-3 0 3185 2 26536 99.1387 183.6558 0011428 76.2380 284.0068 14.12623099551274 1 26536U 00055A 11153.76942211 .00000308 00000-0 19102-3 0 3198 2 26536 99.1391 184.0175 0011435 75.3058 284.9355 14.12622857551324 1 26536U 00055A 11154.19439895 .00000244 00000-0 15682-3 0 3193 2 26536 99.1387 184.4513 0011456 74.1271 286.1150 14.12622855551387 1 26536U 00055A 11154.90269338 .00000090 00000-0 73384-4 0 3211 2 26536 99.1388 185.1739 0011450 72.0890 288.1502 14.12622302551485 1 26536U 00055A 11155.32767044 .00000024 00000-0 38025-4 0 3204 2 26536 99.1384 185.6077 0011470 70.7425 289.4978 14.12622196551541 1 26536U 00055A 11155.68181771 -.00000058 00000-0 -62434-5 0 3212 2 26536 99.1389 185.9693 0011444 69.9016 290.3374 14.12621809551596 1 26536U 00055A 11156.39011243 -.00000166 00000-0 -64743-4 0 3211 2 26536 99.1388 186.6919 0011468 68.0085 292.2285 14.12621265551695 1 26536U 00055A 11156.39011243 -.00000166 00000-0 -64743-4 0 3222 2 26536 99.1388 186.6919 0011468 68.0085 292.2285 14.12621265551695 1 26536U 00055A 11156.74426014 -.00000188 00000-0 -76289-4 0 3230 2 26536 99.1386 187.0532 0011461 67.0886 293.1489 14.12621041551744 1 26536U 00055A 11157.52338429 -.00000125 00000-0 -42650-4 0 3235 2 26536 99.1389 187.8480 0011439 65.0466 295.1912 14.12621311551859 1 26536U 00055A 11157.94836070 -.00000127 00000-0 -43592-4 0 3245 2 26536 99.1391 188.2816 0011451 63.9005 296.3327 14.12621086551919 1 26536U 00055A 11158.30250840 -.00000054 00000-0 -39619-5 0 3246 2 26536 99.1388 188.6431 0011382 63.2587 296.9783 14.12621497551966 1 26536U 00055A 11158.72748442 -.00000014 00000-0 17692-4 0 3254 2 26536 99.1391 189.0768 0011398 62.0745 298.1589 14.12621728552021 1 26536U 00055A 11159.50660738 .00000094 00000-0 75572-4 0 3250 2 26536 99.1387 189.8713 0011311 60.5979 299.6334 14.12622477552139 1 26536U 00055A 11159.50660738 .00000094 00000-0 75572-4 0 3261 2 26536 99.1387 189.8713 0011311 60.5979 299.6334 14.12622477552139 1 26536U 00055A 11159.93158348 .00000163 00000-0 11304-3 0 3277 2 26536 99.1390 190.3053 0011344 59.2306 300.9980 14.12622845552190 1 26536U 00055A 11160.28573036 .00000243 00000-0 15612-3 0 3277 2 26536 99.1388 190.6666 0011292 58.4104 301.8197 14.12623476552246 1 26536U 00055A 11160.71070582 .00000253 00000-0 16144-3 0 3286 2 26536 99.1392 191.1007 0011294 57.3506 302.8757 14.12623767552305 1 26536U 00055A 11161.13568168 .00000312 00000-0 19354-3 0 3287 2 26536 99.1390 191.5342 0011260 56.1119 304.1138 14.12624344552365 1 26536U 00055A 11161.84397375 .00000299 00000-0 18617-3 0 3303 2 26536 99.1397 192.2574 0011280 54.2741 305.9442 14.12624673552462 1 26536U 00055A 11162.26895009 .00000298 00000-0 18568-3 0 3299 2 26536 99.1395 192.6910 0011267 53.0889 307.1318 14.12625006552527 1 26536U 00055A 11162.69392551 .00000187 00000-0 12597-3 0 3305 2 26536 99.1397 193.1248 0011237 51.8862 308.3302 14.12624691552584 1 26536U 00055A 11163.47304825 .00000094 00000-0 75963-4 0 3303 2 26536 99.1399 193.9196 0011265 49.6512 310.5639 14.12624552552690 1 26536U 00055A 11163.82719468 -.00000056 00000-0 -52873-5 0 3312 2 26536 99.1401 194.2810 0011192 48.9066 311.3041 14.12623774552743 1 26536U 00055A 11164.25217116 -.00000116 00000-0 -37766-4 0 3313 2 26536 99.1400 194.7147 0011258 47.5607 312.6505 14.12623555552802 1 26536U 00055A 11164.60631799 -.00000152 00000-0 -57175-4 0 3326 2 26536 99.1401 195.0761 0011226 46.6446 313.5658 14.12623345552856 1 26536U 00055A 11165.45626999 -.00000172 00000-0 -67790-4 0 3322 2 26536 99.1396 195.9431 0011187 44.4540 315.7522 14.12623085552977 1 26536U 00055A 11165.81041685 -.00000163 00000-0 -63191-4 0 3337 2 26536 99.1398 196.3043 0011217 43.4077 316.7967 14.12622955553027 1 26536U 00055A 11166.16456378 -.00000093 00000-0 -24917-4 0 3330 2 26536 99.1395 196.6658 0011184 42.3264 317.8793 14.12623319553077 1 26536U 00055A 11166.94368598 -.00000081 00000-0 -18689-4 0 3350 2 26536 99.1391 197.4603 0011136 40.3768 319.8225 14.12623229553180 1 26536U 00055A 11167.29783271 .00000033 00000-0 42684-4 0 3344 2 26536 99.1389 197.8217 0011103 39.3524 320.8490 14.12623912553235 1 26536U 00055A 11167.29783271 .00000033 00000-0 42684-4 0 3355 2 26536 99.1389 197.8217 0011103 39.3524 320.8490 14.12623912553235 1 26536U 00055A 11167.72280776 .00000072 00000-0 63817-4 0 3360 2 26536 99.1392 198.2554 0011092 38.3640 321.8327 14.12624175553291 1 26536U 00055A 11168.50192879 .00000242 00000-0 15559-3 0 3361 2 26536 99.1386 199.0500 0010996 36.3686 323.8246 14.12625449553404 1 26536U 00055A 11168.85607459 .00000253 00000-0 16141-3 0 3375 2 26536 99.1388 199.4113 0011057 35.2294 324.9589 14.12625564553457 1 26536U 00055A 11169.28105019 .00000352 00000-0 21529-3 0 3374 2 26536 99.1385 199.8451 0010986 34.1471 326.0437 14.12626399553517 1 26536U 00055A 11169.70602455 .00000314 00000-0 19446-3 0 3381 2 26536 99.1387 200.2788 0010999 32.8813 327.3029 14.12626496553573 1 26536U 00055A 11170.13099973 .00000360 00000-0 21953-3 0 3382 2 26536 99.1385 200.7126 0010973 31.6503 328.5340 14.12627060553631 1 26536U 00055A 11170.55597425 .00000256 00000-0 16341-3 0 3393 2 26536 99.1388 201.1464 0010911 30.4048 329.7747 14.12626926553697 1 26536U 00055A 11171.47675344 .00000133 00000-0 96861-4 0 3392 2 26536 99.1386 202.0859 0010876 28.1476 332.0257 14.12626686553823 1 26536U 00055A 11171.90172883 .00000012 00000-0 31572-4 0 3406 2 26536 99.1388 202.5197 0010842 27.0018 333.1683 14.12626067553882 1 26536U 00055A 11172.32670458 -.00000097 00000-0 -27220-4 0 3404 2 26536 99.1385 202.9533 0010881 25.8077 334.3615 14.12625620553940 1 26536U 00055A 11172.75168023 -.00000187 00000-0 -75963-4 0 3419 2 26536 99.1387 203.3868 0010832 24.6891 335.4783 14.12625100554004 1 26536U 00055A 11173.53080197 -.00000243 00000-0 -10606-3 0 3416 2 26536 99.1387 204.1814 0010770 22.6949 337.4696 14.12624718554118 1 26536U 00055A 11173.88494827 -.00000207 00000-0 -86505-4 0 3426 2 26536 99.1387 204.5427 0010731 21.7530 338.4100 14.12624726554160 1 26536U 00055A 11174.30992370 -.00000118 00000-0 -38530-4 0 3426 2 26536 99.1386 204.9760 0010689 20.4860 339.6770 14.12625151554223 1 26536U 00055A 11174.66406921 -.00000092 00000-0 -24767-4 0 3436 2 26536 99.1389 205.3375 0010679 19.6016 340.5565 14.12625185554270 1 26536U 00055A 11175.37236119 -.00000036 00000-0 56851-5 0 3432 2 26536 99.1388 206.0600 0010613 17.6418 342.5127 14.12625471554375 1 26536U 00055A 11175.86816553 .00000054 00000-0 54449-4 0 3442 2 26536 99.1388 206.5657 0010623 16.3570 343.7953 14.12625889554449 1 26536U 00055A 11176.29314045 .00000149 00000-0 10544-3 0 3441 2 26536 99.1388 206.9993 0010522 15.1250 345.0271 14.12626543554509 1 26536U 00055A 11176.64728550 .00000177 00000-0 12085-3 0 3454 2 26536 99.1392 207.3610 0010521 14.1421 346.0052 14.12626870554559 1 26536U 00055A 11177.42640583 .00000263 00000-0 16716-3 0 3451 2 26536 99.1390 208.1557 0010450 11.9830 348.1614 14.12627682554667 1 26536U 00055A 11177.85137989 .00000295 00000-0 18409-3 0 3466 2 26536 99.1395 208.5897 0010509 10.6604 349.4787 14.12628057554722 1 26536U 00055A 11178.27635436 .00000359 00000-0 21904-3 0 3468 2 26536 99.1390 209.0233 0010518 9.3821 350.7555 14.12628657554783 1 26536U 00055A 11178.77215745 .00000249 00000-0 15951-3 0 3474 2 26536 99.1397 209.5295 0010489 8.0917 352.0394 14.12628380554859 1 26536U 00055A 11179.12630330 .00000171 00000-0 11762-3 0 3475 2 26536 99.1393 209.8911 0010544 7.1071 353.0234 14.12628263554906 1 26536U 00055A 11179.90542324 .00000127 00000-0 93561-4 0 3497 2 26536 99.1396 210.6859 0010526 4.9567 355.1694 14.12628314555018 1 26536U 00055A 11180.33039787 .00000049 00000-0 51760-4 0 3487 2 26536 99.1393 211.1195 0010567 3.7717 356.3514 14.12628079555071 1 26536U 00055A 11180.75537268 -.00000069 00000-0 -12202-4 0 3493 2 26536 99.1395 211.5531 0010510 2.5159 357.6040 14.12627468555132 1 26536U 00055A 11181.18034781 -.00000122 00000-0 -40825-4 0 3495 2 26536 99.1393 211.9867 0010514 1.3788 358.7404 14.12627231555195 1 26536U 00055A 11181.81781852 .00000164 00000-0 88670-4 0 3497 2 26536 99.1397 212.6370 0010470 359.3102 0.8535 14.12628567555286 1 26536U 00055A 11181.88863923 -.00000198 00000-0 -81565-4 0 3512 2 26536 99.1396 212.7090 0010448 359.3988 0.7159 14.12626688555296 1 26536U 00055A 11182.31361434 -.00000164 00000-0 -63457-4 0 3503 2 26536 99.1393 213.1425 0010482 358.1442 1.9700 14.12626810555359 1 26536U 00055A 11182.73858901 -.00000182 00000-0 -73179-4 0 3512 2 26536 99.1394 213.5760 0010414 357.0482 3.0621 14.12626561555418 1 26536U 00055A 11183.09273491 -.00000143 00000-0 -51932-4 0 3517 2 26536 99.1391 213.9375 0010428 355.9488 4.1620 14.12626800555461 1 26536U 00055A 11183.87185475 -.00000088 00000-0 -22474-4 0 3536 2 26536 99.1384 214.7318 0010352 353.7491 6.3542 14.12626890555573 1 26536U 00055A 11184.36765890 .00000098 00000-0 77902-4 0 3520 2 26536 99.1382 215.2373 0010295 352.0742 8.0320 14.12627916555646 1 26536U 00055A 11184.79263233 .00000145 00000-0 10338-3 0 3534 2 26536 99.1384 215.6708 0010295 351.0386 9.0607 14.12628286555704 1 26536U 00055A 11185.14677753 .00000272 00000-0 17171-3 0 3533 2 26536 99.1380 216.0321 0010271 349.8842 10.2157 14.12629149555750 1 26536U 00055A 11185.92589593 .00000301 00000-0 18743-3 0 3554 2 26536 99.1382 216.8270 0010305 347.8367 12.2540 14.12629682555863 1 26536U 00055A 11186.28004119 .00000380 00000-0 23023-3 0 3543 2 26536 99.1376 217.1886 0010267 346.5622 13.5302 14.12630388555911 1 26536U 00055A 11186.28004119 .00000380 00000-0 23023-3 0 3554 2 26536 99.1376 217.1886 0010267 346.5622 13.5302 14.12630388555911 1 26536U 00055A 11186.77584336 .00000330 00000-0 20325-3 0 3560 2 26536 99.1382 217.6948 0010285 345.1217 14.9636 14.12630482555984 1 26536U 00055A 11187.55496226 .00000199 00000-0 13233-3 0 3560 2 26536 99.1382 218.4898 0010220 342.6862 17.3954 14.12630424556093 1 26536U 00055A 11188.26325247 .00000053 00000-0 53623-4 0 3571 2 26536 99.1384 219.2124 0010229 340.8506 19.2259 14.12629897556192 1 26536U 00055A 11189.32568850 -.00000125 00000-0 -42483-4 0 3583 2 26536 99.1385 220.2966 0010213 337.7545 22.3173 14.12629030556346 1 26536U 00055A 11189.82149200 -.00000194 00000-0 -79661-4 0 3597 2 26536 99.1387 220.8025 0010139 336.1516 23.9177 14.12628565556419 1 26536U 00055A 11190.24646655 -.00000227 00000-0 -97573-4 0 3590 2 26536 99.1387 221.2360 0010126 334.9399 25.1282 14.12628347556472 1 26536U 00055A 11190.60061192 -.00000218 00000-0 -92498-4 0 3600 2 26536 99.1387 221.5972 0010124 334.0048 26.0624 14.12628350556524 1 26536U 00055A 11191.45056050 -.00000135 00000-0 -47778-4 0 3600 2 26536 99.1392 222.4643 0010060 331.4182 28.6449 14.12628552556644 1 26536U 00055A 11191.80470559 -.00000125 00000-0 -42260-4 0 3614 2 26536 99.1390 222.8254 0010036 330.5264 29.5333 14.12628450556692 1 26536U 00055A 11192.30050929 -.00000056 00000-0 -48893-5 0 3617 2 26536 99.1388 223.3311 0010010 328.8738 31.1866 14.12628819556764 1 26536U 00055A 11192.65465404 .00000020 00000-0 36122-4 0 3624 2 26536 99.1387 223.6922 0010005 328.1001 31.9576 14.12629230556814 1 26536U 00055A 11193.43377298 .00000150 00000-0 10611-3 0 3622 2 26536 99.1385 224.4869 0010005 325.6353 34.4201 14.12630114556921 1 26536U 00055A 11193.85874632 .00000222 00000-0 14469-3 0 3638 2 26536 99.1388 224.9207 0010032 324.6792 35.3717 14.12630582556988 1 26536U 00055A 11194.28372007 .00000339 00000-0 20814-3 0 3635 2 26536 99.1387 225.3541 0010042 323.3464 36.7053 14.12631494557045 1 26536U 00055A 11194.77952184 .00000302 00000-0 18826-3 0 3640 2 26536 99.1392 225.8602 0010042 322.0129 38.0314 14.12631550557114 1 26536U 00055A 11195.48781113 .00000313 00000-0 19393-3 0 3643 2 26536 99.1388 226.5827 0009993 319.6519 40.3913 14.12632163557217 1 26536U 00055A 11195.48781113 .00000313 00000-0 19393-3 0 3654 2 26536 99.1388 226.5827 0009993 319.6519 40.3913 14.12632163557217 1 26536U 00055A 11195.84195552 .00000226 00000-0 14727-3 0 3660 2 26536 99.1390 226.9441 0009973 318.5897 41.4490 14.12631835557263 1 26536U 00055A 11196.26692952 .00000178 00000-0 12116-3 0 3669 2 26536 99.1385 227.3779 0009963 317.3628 42.6767 14.12631887557328 1 26536U 00055A 11196.62107412 .00000080 00000-0 68526-4 0 3671 2 26536 99.1386 227.7392 0009981 316.2438 43.7933 14.12631623557371 1 26536U 00055A 11197.40019286 -.00000008 00000-0 20714-4 0 3677 2 26536 99.1385 228.5341 0009915 314.0878 45.9472 14.12631306557486 1 26536U 00055A 11197.82516664 -.00000069 00000-0 -12037-4 0 3683 2 26536 99.1387 228.9678 0009874 312.7297 47.3025 14.12630918557544 1 26536U 00055A 11198.25014080 -.00000135 00000-0 -47595-4 0 3687 2 26536 99.1384 229.4013 0009867 311.5469 48.4847 14.12630623557604 1 26536U 00055A 11198.67511489 -.00000122 00000-0 -40961-4 0 3695 2 26536 99.1383 229.8347 0009826 310.2408 49.7908 14.12630628557664 1 26536U 00055A 11199.45423356 -.00000147 00000-0 -54048-4 0 3695 2 26536 99.1382 230.6295 0009783 307.8438 52.1843 14.12630425557775 1 26536U 00055A 11199.80837865 -.00000142 00000-0 -51564-4 0 3705 2 26536 99.1380 230.9906 0009763 306.7511 53.2755 14.12630273557824 1 26536U 00055A 11200.23335287 -.00000110 00000-0 -33992-4 0 3706 2 26536 99.1379 231.4242 0009754 305.3210 54.7072 14.12630483557889 1 26536U 00055A 11200.94164213 -.00000009 00000-0 20226-4 0 3727 2 26536 99.1380 232.1467 0009741 303.3344 56.6895 14.12630878557983 1 26536U 00055A 11201.29578701 .00000103 00000-0 80742-4 0 3719 2 26536 99.1378 232.5079 0009727 301.8156 58.2111 14.12631595558034 1 26536U 00055A 11201.72075982 .00000122 00000-0 90876-4 0 3721 2 26536 99.1379 232.9415 0009700 300.5636 59.4581 14.12631807558099 1 26536U 00055A 11202.14573336 .00000306 00000-0 19042-3 0 3723 2 26536 99.1375 233.3750 0009760 299.2147 60.8093 14.12632957558157 1 26536U 00055A 11202.92484984 .00000307 00000-0 19082-3 0 3746 2 26536 99.1377 234.1698 0009738 296.9560 63.0599 14.12633409558268 1 26536U 00055A 11203.27899447 .00000370 00000-0 22502-3 0 3739 2 26536 99.1375 234.5311 0009736 295.5927 64.4257 14.12633987558315 1 26536U 00055A 11203.27899447 .00000370 00000-0 22502-3 0 3740 2 26536 99.1375 234.5311 0009736 295.5927 64.4257 14.12633987558315 1 26536U 00055A 11203.70396705 .00000288 00000-0 18065-3 0 3755 2 26536 99.1381 234.9651 0009761 294.3528 65.6612 14.12633914558379 1 26536U 00055A 11204.48308473 .00000226 00000-0 14731-3 0 3754 2 26536 99.1382 235.7598 0009722 291.8410 68.1731 14.12634074558488 1 26536U 00055A 11204.83722880 .00000068 00000-0 62015-4 0 3769 2 26536 99.1384 236.1210 0009770 290.8321 69.1763 14.12633319558532 1 26536U 00055A 11205.26220280 -.00000013 00000-0 18366-4 0 3765 2 26536 99.1380 236.5544 0009765 289.9873 70.0227 14.12633035558594 1 26536U 00055A 11205.61634764 -.00000087 00000-0 -21644-4 0 3776 2 26536 99.1381 236.9156 0009788 288.9519 71.0585 14.12632741558646 1 26536U 00055A 11206.46629491 -.00000184 00000-0 -74285-4 0 3778 2 26536 99.1383 237.7825 0009751 286.6784 73.3300 14.12632115558767 1 26536U 00055A 11206.46629491 -.00000184 00000-0 -74285-4 0 3789 2 26536 99.1383 237.7825 0009751 286.6784 73.3300 14.12632115558767 1 26536U 00055A 11206.82043993 -.00000196 00000-0 -80467-4 0 3799 2 26536 99.1384 238.1438 0009736 285.5977 74.4114 14.12631920558812 1 26536U 00055A 11207.52872936 -.00000187 00000-0 -75917-4 0 3798 2 26536 99.1385 238.8663 0009721 283.3433 76.6663 14.12631906558915 1 26536U 00055A 11207.95370293 -.00000173 00000-0 -68347-4 0 3800 2 26536 99.1386 239.2998 0009721 282.0470 77.9604 14.12631740558970 1 26536U 00055A 11208.30784790 -.00000126 00000-0 -42961-4 0 3803 2 26536 99.1385 239.6610 0009736 281.1812 78.8278 14.12631949559025 1 26536U 00055A 11208.73282136 -.00000115 00000-0 -36953-4 0 3810 2 26536 99.1384 240.0942 0009702 279.6302 80.3777 14.12631932559087 1 26536U 00055A 11209.15779504 .00000009 00000-0 29972-4 0 3810 2 26536 99.1379 240.5277 0009735 278.5937 81.4163 14.12632599559143 1 26536U 00055A 11209.86608335 .00000092 00000-0 74833-4 0 3831 2 26536 99.1383 241.2503 0009719 276.4009 83.6056 14.12633079559247 1 26536U 00055A 11210.29105674 .00000268 00000-0 16967-3 0 3825 2 26536 99.1381 241.6839 0009761 275.0236 84.9876 14.12634251559309 1 26536U 00055A 11210.64519987 .00000259 00000-0 16475-3 0 3835 2 26536 99.1386 242.0454 0009753 273.7664 86.2390 14.12634385559352 1 26536U 00055A 11211.42431671 .00000385 00000-0 23273-3 0 3839 2 26536 99.1382 242.8402 0009756 271.4884 88.5182 14.12635556559468 1 26536U 00055A 11211.84928913 .00000342 00000-0 20980-3 0 3841 2 26536 99.1384 243.2740 0009752 270.2261 89.7775 14.12635584559521 1 26536U 00055A 11212.27426216 .00000288 00000-0 18055-3 0 3847 2 26536 99.1380 243.7077 0009735 269.1397 90.8646 14.12635644559586 1 26536U 00055A 11212.62840631 .00000199 00000-0 13279-3 0 3852 2 26536 99.1379 244.0688 0009760 268.3393 91.6646 14.12635451559632 1 26536U 00055A 11213.47835240 .00000080 00000-0 68513-4 0 3857 2 26536 99.1375 244.9361 0009740 265.5274 94.4775 14.12635199559756 1 26536U 00055A 11213.83249664 -.00000022 00000-0 13326-4 0 3866 2 26536 99.1375 245.2974 0009764 264.3447 95.6586 14.12634645559809 1 26536U 00055A 11214.25747019 -.00000120 00000-0 -39720-4 0 3866 2 26536 99.1371 245.7309 0009752 262.9871 97.0181 14.12634270559861 1 26536U 00055A 11214.61161472 -.00000145 00000-0 -53098-4 0 3871 2 26536 99.1371 246.0919 0009758 262.0887 97.9174 14.12634123559910 1 26536U 00055A 11215.46156129 -.00000203 00000-0 -84435-4 0 3872 2 26536 99.1367 246.9586 0009742 259.4573 100.5491 14.12633686560030 1 26536U 00055A 11215.74487709 -.00000168 00000-0 -65455-4 0 3886 2 26536 99.1368 247.2475 0009710 258.7558 101.2525 14.12633764560079 1 26536U 00055A 11216.16985043 -.00000140 00000-0 -50449-4 0 3884 2 26536 99.1364 247.6808 0009748 257.2841 102.7251 14.12633807560136 1 26536U 00055A 11216.94896783 -.00000114 00000-0 -36468-4 0 3901 2 26536 99.1365 248.4753 0009721 254.9416 105.0669 14.12633778560246 1 26536U 00055A 11217.30311256 -.00000044 00000-0 13966-5 0 3897 2 26536 99.1363 248.8362 0009790 253.4838 106.5286 14.12634146560298 1 26536U 00055A 11217.72808531 -.00000000 00000-0 25085-4 0 3908 2 26536 99.1365 249.2697 0009768 252.0532 107.9584 14.12634375560354 1 26536U 00055A 11218.15305836 .00000098 00000-0 78110-4 0 3909 2 26536 99.1364 249.7030 0009803 250.5542 109.4604 14.12635010560417 1 26536U 00055A 11218.93217425 .00000209 00000-0 13779-3 0 3926 2 26536 99.1369 250.4977 0009794 248.3513 111.6604 14.12635820560529 1 26536U 00055A 11219.28631849 .00000343 00000-0 20996-3 0 3912 2 26536 99.1366 250.8589 0009834 247.3262 112.6907 14.12636760560570 1 26536U 00055A 11219.64046151 .00000353 00000-0 21555-3 0 3922 2 26536 99.1371 251.2206 0009822 246.3314 113.6828 14.12637072560627 1 26536U 00055A 11220.34874912 .00000352 00000-0 21532-3 0 3929 2 26536 99.1370 251.9428 0009837 244.0133 116.0031 14.12637527560728 1 26536U 00055A 11220.77372130 .00000203 00000-0 13441-3 0 3937 2 26536 99.1373 252.3765 0009865 242.5946 117.4190 14.12636993560789 1 26536U 00055A 11221.12786568 .00000143 00000-0 10205-3 0 3939 2 26536 99.1372 252.7378 0009852 241.5878 118.4292 14.12636907560836 1 26536U 00055A 11221.62366714 .00000046 00000-0 50041-4 0 3947 2 26536 99.1374 253.2434 0009873 240.1568 119.8610 14.12636628560908 1 26536U 00055A 11222.04864003 .00000001 00000-0 25381-4 0 3948 2 26536 99.1371 253.6770 0009862 239.0364 120.9828 14.12636475560961 1 26536U 00055A 11222.96941496 -.00000149 00000-0 -55060-4 0 3965 2 26536 99.1376 254.6162 0009877 236.0894 123.9317 14.12635570561099 1 26536U 00055A 11223.39438838 -.00000192 00000-0 -78402-4 0 3956 2 26536 99.1375 255.0497 0009837 235.0733 124.9512 14.12635364561157 1 26536U 00055A 11223.39438838 -.00000192 00000-0 -78402-4 0 3967 2 26536 99.1375 255.0497 0009837 235.0733 124.9512 14.12635364561157 1 26536U 00055A 11223.81936152 -.00000173 00000-0 -68320-4 0 3974 2 26536 99.1374 255.4831 0009830 233.8912 126.1345 14.12635233561210 1 26536U 00055A 11224.17350589 -.00000200 00000-0 -82840-4 0 3972 2 26536 99.1372 255.8444 0009839 232.8955 127.1321 14.12635088561265 1 26536U 00055A 11224.95262300 -.00000165 00000-0 -64155-4 0 3992 2 26536 99.1373 256.6389 0009852 230.3793 129.6498 14.12635016561376 1 26536U 00055A 11225.37759644 -.00000055 00000-0 -46112-5 0 3982 2 26536 99.1372 257.0724 0009895 229.0384 130.9976 14.12635656561434 1 26536U 00055A 11225.80256858 -.00000004 00000-0 22854-4 0 3999 2 26536 99.1371 257.5059 0009912 227.6049 132.4286 14.12635811561491 1 26536U 00055A 11226.22754152 .00000167 00000-0 11528-3 0 3990 2 26536 99.1369 257.9395 0009932 226.6587 133.3805 14.12636828561556 1 26536U 00055A 11226.58168446 .00000169 00000-0 11620-3 0 4002 2 26536 99.1368 258.3006 0009974 225.4337 134.6034 14.12637090561601 1 26536U 00055A 11227.43162913 .00000321 00000-0 19858-3 0 4001 2 26536 99.1359 259.1674 0009977 223.1437 136.8976 14.12638301561728 1 26536U 00055A 11227.85660090 .00000350 00000-0 21415-3 0 4011 2 26536 99.1362 259.6014 0009986 221.8163 138.2243 14.12638650561782 1 26536U 00055A 11228.21074440 .00000363 00000-0 22106-3 0 4012 2 26536 99.1355 259.9628 0010049 220.5973 139.4461 14.12639021561839 1 26536U 00055A 11228.63571621 .00000306 00000-0 19031-3 0 4022 2 26536 99.1358 260.3964 0010050 219.5243 140.5189 14.12639088561890 1 26536U 00055A 11229.34400314 .00000225 00000-0 14637-3 0 4028 2 26536 99.1355 261.1189 0010065 217.2592 142.7866 14.12639086561998 1 26536U 00055A 11229.83980417 .00000075 00000-0 65554-4 0 4038 2 26536 99.1360 261.6245 0010086 216.0196 144.0259 14.12638447562062 1 26536U 00055A 11230.19394845 -.00000017 00000-0 15846-4 0 4039 2 26536 99.1356 261.9858 0010062 214.9391 145.1103 14.12638110562111 1 26536U 00055A 11230.90223609 -.00000126 00000-0 -43035-4 0 4052 2 26536 99.1360 262.7080 0010097 212.8609 147.1909 14.12637470562214 1 26536U 00055A 11231.32720919 -.00000187 00000-0 -75599-4 0 4041 2 26536 99.1360 263.1414 0010092 211.5775 148.4789 14.12637212562275 1 26536U 00055A 11231.75218190 -.00000195 00000-0 -80257-4 0 4058 2 26536 99.1364 263.5749 0010119 210.1475 149.9117 14.12637069562334 1 26536U 00055A 11232.46046954 -.00000165 00000-0 -63892-4 0 4057 2 26536 99.1363 264.2971 0010145 208.1337 151.9290 14.12637060562438 1 26536U 00055A 11232.88544222 -.00000197 00000-0 -81348-4 0 4066 2 26536 99.1363 264.7304 0010174 206.8572 153.2060 14.12636680562494 1 26536U 00055A 11233.31041536 -.00000111 00000-0 -34905-4 0 4068 2 26536 99.1361 265.1637 0010194 205.7168 154.3525 14.12637079562555 1 26536U 00055A 11233.73538755 -.00000125 00000-0 -42177-4 0 4074 2 26536 99.1363 265.5971 0010216 204.3939 155.6747 14.12636935562615 1 26536U 00055A 11234.51450364 .00000035 00000-0 44011-4 0 4077 2 26536 99.1360 266.3914 0010294 202.0943 157.9810 14.12637872562723 1 26536U 00055A 11234.86864692 .00000053 00000-0 53699-4 0 4081 2 26536 99.1361 266.7527 0010281 201.1182 158.9559 14.12637919562777 1 26536U 00055A 11235.22279079 .00000202 00000-0 13403-3 0 4085 2 26536 99.1362 267.1137 0010335 200.2888 159.7920 14.12638854562829 1 26536U 00055A 11235.71859075 .00000239 00000-0 15429-3 0 4090 2 26536 99.1365 267.6196 0010329 198.8304 161.2493 14.12639287562891 1 26536U 00055A 11236.14356266 .00000350 00000-0 21374-3 0 4092 2 26536 99.1364 268.0528 0010385 197.7198 162.3635 14.12640049562950 1 26536U 00055A 11236.56853402 .00000302 00000-0 18778-3 0 4105 2 26536 99.1364 268.4864 0010425 196.5780 163.5052 14.12640188563014 1 26536U 00055A 11237.27682049 .00000287 00000-0 17980-3 0 4107 2 26536 99.1364 269.2089 0010417 194.5372 165.5496 14.12640487563115 1 26536U 00055A 11237.77262090 .00000175 00000-0 11946-3 0 4115 2 26536 99.1367 269.7147 0010466 193.2418 166.8456 14.12640157563180 1 26536U 00055A 11238.19759316 .00000070 00000-0 63067-4 0 4110 2 26536 99.1369 270.1483 0010494 191.9137 168.1772 14.12639829563242 1 26536U 00055A 11238.90588003 -.00000050 00000-0 -18587-5 0 4132 2 26536 99.1369 270.8705 0010530 190.0818 170.0122 14.12639299563346 1 26536U 00055A 11239.33085256 -.00000110 00000-0 -34434-4 0 4126 2 26536 99.1367 271.3038 0010499 188.7875 171.3100 14.12639043563404 1 26536U 00055A 11239.75582502 -.00000195 00000-0 -79975-4 0 4131 2 26536 99.1367 271.7372 0010545 187.5381 172.5623 14.12638548563468 1 26536U 00055A 11240.10996885 -.00000194 00000-0 -79638-4 0 4130 2 26536 99.1366 272.0984 0010519 186.5620 173.5417 14.12638524563518 1 26536U 00055A 11240.95991327 -.00000159 00000-0 -60908-4 0 4152 2 26536 99.1363 272.9649 0010547 184.1159 175.9919 14.12638435563631 1 26536U 00055A 11241.31405709 -.00000145 00000-0 -53427-4 0 4149 2 26536 99.1361 273.3260 0010530 183.2037 176.9076 14.12638456563683 1 26536U 00055A 11241.80985807 -.00000118 00000-0 -38585-4 0 4154 2 26536 99.1360 273.8315 0010537 181.7257 178.3879 14.12638445563755 1 26536U 00055A 11242.23483046 -.00000013 00000-0 18056-4 0 4154 2 26536 99.1356 274.2648 0010590 180.6858 179.4341 14.12639071563817 1 26536U 00055A 11242.58897314 .00000036 00000-0 44524-4 0 4163 2 26536 99.1356 274.6259 0010617 179.6305 180.4895 14.12639441563866 1 26536U 00055A 11243.43891651 .00000220 00000-0 14356-3 0 4160 2 26536 99.1351 275.4926 0010648 177.3652 182.7603 14.12640602563981 1 26536U 00055A 11243.86388771 .00000270 00000-0 17091-3 0 4176 2 26536 99.1349 275.9258 0010661 175.8604 184.2659 14.12641040564049 1 26536U 00055A 11244.64300140 .00000354 00000-0 21594-3 0 4173 2 26536 99.1346 276.7206 0010711 173.8720 186.2582 14.12642075564159 1 26536U 00055A 11245.49294391 .00000329 00000-0 20229-3 0 4184 2 26536 99.1342 277.5873 0010784 171.4831 188.6522 14.12642594564270 1 26536U 00055A 11245.84708656 .00000214 00000-0 14047-3 0 4192 2 26536 99.1345 277.9485 0010820 170.5257 189.6090 14.12642147564320 1 26536U 00055A 11246.27205839 .00000119 00000-0 89054-4 0 4190 2 26536 99.1343 278.3819 0010799 169.2066 190.9324 14.12641959564383 1 26536U 00055A 11246.62620144 .00000094 00000-0 75740-4 0 4200 2 26536 99.1343 278.7430 0010762 168.2195 191.9222 14.12641934564435 1 26536U 00055A 11247.33448754 -.00000049 00000-0 -15631-5 0 4200 2 26536 99.1345 279.4653 0010802 166.0421 194.1035 14.12641324564536 1 26536U 00055A 11247.33448754 -.00000049 00000-0 -15631-5 0 4211 2 26536 99.1345 279.4653 0010802 166.0421 194.1035 14.12641324564536 1 26536U 00055A 11247.75945935 -.00000135 00000-0 -47824-4 0 4225 2 26536 99.1347 279.8986 0010806 164.9358 195.2121 14.12640850564598 1 26536U 00055A 11248.46774610 -.00000223 00000-0 -95367-4 0 4227 2 26536 99.1346 280.6207 0010849 162.8475 197.3063 14.12640274564696 1 26536U 00055A 11248.82188934 -.00000259 00000-0 -11453-3 0 4238 2 26536 99.1349 280.9818 0010855 161.9285 198.2261 14.12639864564745 1 26536U 00055A 11249.24686158 -.00000280 00000-0 -12612-3 0 4238 2 26536 99.1351 281.4151 0010889 160.8431 199.3163 14.12639683564801 1 26536U 00055A 11249.60100471 -.00000269 00000-0 -12010-3 0 4247 2 26536 99.1354 281.7765 0010890 159.7862 200.3749 14.12639612564855 1 26536U 00055A 11250.38011926 -.00000092 00000-0 -24796-4 0 4249 2 26536 99.1355 282.5707 0010944 157.8239 202.3427 14.12640350564966 1 26536U 00055A 11250.73426205 -.00000063 00000-0 -92244-5 0 4251 2 26536 99.1357 282.9319 0010976 156.8272 203.3398 14.12640402565015 1 26536U 00055A 11251.44254729 .00000155 00000-0 10862-3 0 4254 2 26536 99.1354 283.6540 0011014 155.2351 204.9366 14.12641659565119 1 26536U 00055A 11251.86751835 .00000216 00000-0 14176-3 0 4261 2 26536 99.1353 284.0872 0010996 153.8423 206.3303 14.12642053565175 1 26536U 00055A 11252.22166109 .00000354 00000-0 21605-3 0 4264 2 26536 99.1355 284.4481 0011039 153.2385 206.9403 14.12643022565227 1 26536U 00055A 11252.64663112 .00000339 00000-0 20767-3 0 4278 2 26536 99.1354 284.8816 0011032 152.0247 208.1517 14.12643298565280 1 26536U 00055A 11253.42574442 .00000360 00000-0 21936-3 0 4275 2 26536 99.1354 285.6761 0011078 149.9127 210.2688 14.12643939565397 1 26536U 00055A 11253.77988651 .00000240 00000-0 15456-3 0 4282 2 26536 99.1356 286.0370 0011107 148.9842 211.1960 14.12643527565448 1 26536U 00055A 11254.20485781 .00000254 00000-0 16186-3 0 4283 2 26536 99.1352 286.4707 0011092 147.7617 212.4238 14.12643877565509 1 26536U 00055A 11254.91314221 .00000118 00000-0 88914-4 0 4302 2 26536 99.1351 287.1926 0011099 145.8844 214.3014 14.12643488565609 1 26536U 00055A 11255.33811354 .00000023 00000-0 37490-4 0 4294 2 26536 99.1347 287.6262 0011084 144.5573 215.6325 14.12643245565667 1 26536U 00055A 11255.76308464 -.00000045 00000-0 64876-6 0 4301 2 26536 99.1346 288.0594 0011101 143.4076 216.7838 14.12642898565726 1 26536U 00055A 11256.11722744 -.00000096 00000-0 -26759-4 0 4305 2 26536 99.1346 288.4207 0011095 142.3284 217.8656 14.12642653565776 1 26536U 00055A 11256.82551284 -.00000164 00000-0 -63702-4 0 4329 2 26536 99.1344 289.1427 0011099 140.4844 219.7128 14.12642155565874 1 26536U 00055A 11257.25048423 -.00000188 00000-0 -76419-4 0 4317 2 26536 99.1341 289.5761 0011091 139.1904 221.0102 14.12642041565939 1 26536U 00055A 11257.60462686 -.00000233 00000-0 -10064-3 0 4322 2 26536 99.1342 289.9371 0011115 138.3134 221.8889 14.12641794565983 1 26536U 00055A 11258.38374037 -.00000114 00000-0 -36663-4 0 4322 2 26536 99.1337 290.7312 0011125 136.3637 223.8426 14.12642207566091 1 26536U 00055A 11258.73788280 -.00000088 00000-0 -22700-4 0 4338 2 26536 99.1337 291.0922 0011155 135.3860 224.8214 14.12642264566147 1 26536U 00055A 11259.16285386 .00000096 00000-0 76681-4 0 4339 2 26536 99.1332 291.5253 0011157 134.5408 225.6729 14.12643285566206 1 26536U 00055A 11259.51699515 .00000134 00000-0 97331-4 0 4340 2 26536 99.1331 291.8862 0011229 133.7372 226.4751 14.12643694566258 1 26536U 00055A 11260.43776448 .00000332 00000-0 20423-3 0 4341 2 26536 99.1329 292.8248 0011203 131.2074 229.0108 14.12645087566385 1 26536U 00055A 11260.86273383 .00000306 00000-0 19035-3 0 4357 2 26536 99.1329 293.2580 0011178 129.8396 230.3743 14.12645150566448 1 26536U 00055A 11261.21687599 .00000391 00000-0 23602-3 0 4354 2 26536 99.1326 293.6191 0011172 129.1635 231.0553 14.12645837566494 1 26536U 00055A 11261.64184551 .00000371 00000-0 22511-3 0 4368 2 26536 99.1327 294.0523 0011177 127.9006 232.3176 14.12646122566552 1 26536U 00055A 11262.35012886 .00000310 00000-0 19212-3 0 4365 2 26536 99.1327 294.7742 0011200 125.9735 234.2471 14.12646341566659 1 26536U 00055A 11262.77509876 .00000161 00000-0 11198-3 0 4371 2 26536 99.1332 295.2076 0011203 124.9131 235.3060 14.12645776566717 1 26536U 00055A 11263.12924106 .00000115 00000-0 87179-4 0 4370 2 26536 99.1330 295.5688 0011175 123.8672 236.3563 14.12645762566762 1 26536U 00055A 11263.90835266 .00000033 00000-0 42716-4 0 4393 2 26536 99.1333 296.3630 0011188 121.7647 238.4593 14.12645504566876 1 26536U 00055A 11264.33332313 -.00000074 00000-0 -14825-4 0 4382 2 26536 99.1334 296.7961 0011216 120.5118 239.7139 14.12645021566931 1 26536U 00055A 11264.75829376 -.00000141 00000-0 -50873-4 0 4397 2 26536 99.1335 297.2293 0011233 119.4992 240.7289 14.12644613566992 1 26536U 00055A 11265.11243592 -.00000168 00000-0 -65672-4 0 4390 2 26536 99.1336 297.5903 0011237 118.5342 241.6964 14.12644497567044 1 26536U 00055A 11265.96237635 -.00000189 00000-0 -76985-4 0 4419 2 26536 99.1340 298.4566 0011287 116.5332 243.6982 14.12644119567162 1 26536U 00055A 11266.31651867 -.00000136 00000-0 -48215-4 0 4402 2 26536 99.1340 298.8177 0011276 115.6426 244.5934 14.12644388567217 1 26536U 00055A 11266.74148855 -.00000099 00000-0 -28518-4 0 4410 2 26536 99.1342 299.2510 0011324 114.5406 245.6954 14.12644508567279 1 26536U 00055A 11267.44977159 .00000041 00000-0 47036-4 0 4416 2 26536 99.1342 299.9730 0011315 112.8013 247.4370 14.12645297567374 1 26536U 00055A 11267.80391297 .00000071 00000-0 63455-4 0 4426 2 26536 99.1340 300.3337 0011304 111.5729 248.6635 14.12645380567426 1 26536U 00055A 11268.22888319 .00000216 00000-0 14172-3 0 4421 2 26536 99.1337 300.7671 0011279 110.8510 249.3916 14.12646298567483 1 26536U 00055A 11268.65385197 .00000338 00000-0 20740-3 0 4438 2 26536 99.1340 301.2005 0011337 109.6484 250.5948 14.12647302567548 1 26536U 00055A 11269.43296214 .00000370 00000-0 22483-3 0 4438 2 26536 99.1335 301.9947 0011369 107.6878 252.5554 14.12647940567659 1 26536U 00055A 11269.78710275 .00000306 00000-0 18983-3 0 4444 2 26536 99.1336 302.3557 0011397 106.7343 253.5054 14.12647761567703 1 26536U 00055A 11270.21207245 .00000346 00000-0 21142-3 0 4447 2 26536 99.1332 302.7891 0011384 105.4970 254.7474 14.12648352567764 1 26536U 00055A 11270.92035385 .00000212 00000-0 13946-3 0 4466 2 26536 99.1332 303.5110 0011411 103.7363 256.5046 14.12648081567860 1 26536U 00055A 11271.27449542 .00000251 00000-0 16016-3 0 4452 2 26536 99.1328 303.8722 0011405 102.6030 257.6436 14.12648603567910 1 26536U 00055A 11271.69946397 .00000218 00000-0 14236-3 0 4464 2 26536 99.1327 304.3052 0011403 101.3266 258.9181 14.12648699567978 1 26536U 00055A 11272.47857420 .00000083 00000-0 69618-4 0 4464 2 26536 99.1326 305.0991 0011440 99.2492 260.9968 14.12648371568080 1 26536U 00055A 11272.83271514 .00000008 00000-0 29050-4 0 4472 2 26536 99.1325 305.4601 0011474 98.5961 261.6479 14.12647856568139 1 26536U 00055A 11273.25768490 .00000007 00000-0 28730-4 0 4476 2 26536 99.1325 305.8933 0011473 97.1772 263.0705 14.12647958568192 1 26536U 00055A 11273.61182578 -.00000125 00000-0 -42515-4 0 4484 2 26536 99.1323 306.2538 0011458 96.6105 263.6368 14.12647468568246 1 26536U 00055A 11274.74507707 -.00000150 00000-0 -55990-4 0 4506 2 26536 99.1322 307.4089 0011511 93.6440 266.6035 14.12647170568400 1 26536U 00055A 11275.09921841 -.00000069 00000-0 -12159-4 0 4503 2 26536 99.1320 307.7700 0011482 92.7295 267.5218 14.12647604568456 1 26536U 00055A 11275.87832739 .00000059 00000-0 56594-4 0 4526 2 26536 99.1316 308.5638 0011488 90.7981 269.4492 14.12648111568567 1 26536U 00055A 11276.30329668 .00000129 00000-0 94438-4 0 4513 2 26536 99.1316 308.9968 0011467 89.9689 270.2833 14.12648708568627 1 26536U 00055A 11276.30329668 .00000129 00000-0 94438-4 0 4524 2 26536 99.1316 308.9968 0011467 89.9689 270.2833 14.12648708568627 1 26536U 00055A 11276.65743661 .00000146 00000-0 10385-3 0 4533 2 26536 99.1318 309.3579 0011502 89.2698 270.9804 14.12649013568675 1 26536U 00055A 11277.43654543 .00000330 00000-0 20273-3 0 4532 2 26536 99.1314 310.1518 0011480 86.8684 273.3835 14.12650366568783 1 26536U 00055A 11277.79068496 .00000294 00000-0 18350-3 0 4540 2 26536 99.1314 310.5128 0011499 85.7079 274.5380 14.12650280568839 1 26536U 00055A 11278.21565374 .00000405 00000-0 24320-3 0 4543 2 26536 99.1313 310.9459 0011462 84.6561 275.5950 14.12651206568892 1 26536U 00055A 11278.56979307 .00000349 00000-0 21345-3 0 4558 2 26536 99.1313 311.3068 0011442 83.6432 276.6041 14.12651330568944 1 26536U 00055A 11279.34890129 .00000312 00000-0 19312-3 0 4550 2 26536 99.1312 312.1007 0011428 81.3886 278.8581 14.12651643569050 1 26536U 00055A 11279.34890129 .00000312 00000-0 19312-3 0 4561 2 26536 99.1312 312.1007 0011428 81.3886 278.8581 14.12651643569050 1 26536U 00055A 11279.77386907 .00000187 00000-0 12609-3 0 4575 2 26536 99.1315 312.5340 0011405 80.1777 280.0651 14.12651196569111 1 26536U 00055A 11280.48214973 .00000074 00000-0 65157-4 0 4570 2 26536 99.1316 313.2559 0011401 78.2780 281.9668 14.12651037569213 1 26536U 00055A 11280.90711778 .00000021 00000-0 36511-4 0 4587 2 26536 99.1318 313.6890 0011379 76.9438 283.2974 14.12650671569270 1 26536U 00055A 11281.26125842 -.00000044 00000-0 14954-5 0 4582 2 26536 99.1316 314.0501 0011382 76.0231 284.2196 14.12650428569321 1 26536U 00055A 11281.61539873 -.00000161 00000-0 -62059-4 0 4594 2 26536 99.1316 314.4109 0011339 74.9820 285.2596 14.12649916569372 1 26536U 00055A 11282.39450725 -.00000154 00000-0 -58183-4 0 4593 2 26536 99.1315 315.2047 0011337 73.0491 287.1917 14.12649839569487 1 26536U 00055A 11282.81947569 -.00000076 00000-0 -16005-4 0 4609 2 26536 99.1318 315.6378 0011322 72.0517 288.1899 14.12650064569542 1 26536U 00055A 11283.17361567 -.00000052 00000-0 -30076-5 0 4606 2 26536 99.1314 315.9988 0011292 71.1954 289.0457 14.12650232569591 1 26536U 00055A 11283.95272340 .00000026 00000-0 39026-4 0 4626 2 26536 99.1313 316.7927 0011293 69.1897 291.0483 14.12650612569703 1 26536U 00055A 11284.37769145 .00000111 00000-0 84797-4 0 4616 2 26536 99.1309 317.2260 0011248 68.3351 291.9051 14.12651214569765 1 26536U 00055A 11284.73183067 .00000103 00000-0 80297-4 0 4622 2 26536 99.1311 317.5867 0011254 67.4717 292.7643 14.12651273569814 1 26536U 00055A 11285.15679853 .00000301 00000-0 18750-3 0 4626 2 26536 99.1309 318.0200 0011232 65.9154 294.3239 14.12652525569878 1 26536U 00055A 11285.93590397 .00000341 00000-0 20910-3 0 4644 2 26536 99.1302 318.8137 0011214 64.0732 296.1575 14.12653232569981 1 26536U 00055A 11286.29004367 .00000442 00000-0 26340-3 0 4635 2 26536 99.1297 319.1746 0011190 63.0607 297.1732 14.12654066570037 1 26536U 00055A 11286.29004367 .00000442 00000-0 26340-3 0 4646 2 26536 99.1297 319.1746 0011190 63.0607 297.1732 14.12654066570037 1 26536U 00055A 11286.64418227 .00000422 00000-0 25242-3 0 4658 2 26536 99.1297 319.5354 0011196 62.0149 298.2151 14.12654327570084 1 26536U 00055A 11287.49411576 .00000423 00000-0 25296-3 0 4652 2 26536 99.1293 320.4018 0011192 59.5924 300.6346 14.12655127570203 1 26536U 00055A 11287.84825469 .00000242 00000-0 15578-3 0 4663 2 26536 99.1297 320.7628 0011142 58.7791 301.4426 14.12654344570258 1 26536U 00055A 11288.69818962 .00000106 00000-0 82400-4 0 4665 2 26536 99.1290 321.6288 0011190 56.0739 304.1490 14.12654186570377 1 26536U 00055A 11289.05232879 -.00000001 00000-0 24520-4 0 4678 2 26536 99.1292 321.9896 0011196 55.3089 304.9111 14.12653701570429 1 26536U 00055A 11289.83143568 -.00000082 00000-0 -19190-4 0 4699 2 26536 99.1291 322.7832 0011184 53.3584 306.8600 14.12653256570533 1 26536U 00055A 11290.25640311 -.00000160 00000-0 -61238-4 0 4681 2 26536 99.1291 323.2161 0011159 52.3759 307.8422 14.12652934570590 1 26536U 00055A 11290.61054253 -.00000172 00000-0 -67756-4 0 4690 2 26536 99.1292 323.5770 0011156 51.4799 308.7375 14.12652855570646 1 26536U 00055A 11291.53130444 -.00000066 00000-0 -10571-4 0 4694 2 26536 99.1291 324.5149 0011110 49.1274 311.0873 14.12653311570770 1 26536U 00055A 11292.31041024 .00000088 00000-0 72646-4 0 4701 2 26536 99.1292 325.3086 0011077 47.2087 313.0039 14.12654148570880 1 26536U 00055A 11292.80620436 .00000158 00000-0 11041-3 0 4715 2 26536 99.1288 325.8133 0011106 45.8012 314.4075 14.12654588570959 1 26536U 00055A 11293.16034319 .00000281 00000-0 17642-3 0 4714 2 26536 99.1290 326.1740 0011031 44.8710 315.3392 14.12655449571007 1 26536U 00055A 11293.93944696 .00000316 00000-0 19567-3 0 4736 2 26536 99.1292 326.9680 0011020 42.7426 317.4585 14.12656105571118 1 26536U 00055A 11294.43524115 .00000438 00000-0 26140-3 0 4721 2 26536 99.1291 327.4731 0010955 41.4325 318.7720 14.12657240571183 1 26536U 00055A 11294.86020609 .00000391 00000-0 23610-3 0 4735 2 26536 99.1293 327.9062 0010946 40.3728 319.8233 14.12657277571240 1 26536U 00055A 11295.28517231 .00000429 00000-0 25644-3 0 4735 2 26536 99.1293 328.3393 0010920 39.1736 321.0239 14.12657880571307 1 26536U 00055A 11295.63931006 .00000360 00000-0 21907-3 0 4747 2 26536 99.1292 328.7000 0010922 37.9965 322.1964 14.12657882571351 1 26536U 00055A 11296.41841432 .00000291 00000-0 18198-3 0 4748 2 26536 99.1292 329.4940 0010949 35.9655 324.2247 14.12658055571467 1 26536U 00055A 11296.84337998 .00000160 00000-0 11140-3 0 4758 2 26536 99.1293 329.9269 0010933 34.6877 325.4975 14.12657574571525 1 26536U 00055A 11297.26834631 .00000061 00000-0 57995-4 0 4750 2 26536 99.1291 330.3600 0010941 33.5848 326.5994 14.12657250571583 1 26536U 00055A 11297.69331254 .00000001 00000-0 25434-4 0 4768 2 26536 99.1291 330.7931 0010931 32.3761 327.8071 14.12657052571641 1 26536U 00055A 11298.47241695 -.00000091 00000-0 -24263-4 0 4764 2 26536 99.1289 331.5868 0010884 30.4623 329.7171 14.12656680571759 1 26536U 00055A 11298.47241695 -.00000091 00000-0 -24263-4 0 4775 2 26536 99.1289 331.5868 0010884 30.4623 329.7171 14.12656680571759 1 26536U 00055A 11298.89738309 -.00000064 00000-0 -94168-5 0 4787 2 26536 99.1288 332.0194 0010877 29.3592 330.8184 14.12656682571816 1 26536U 00055A 11299.32234919 -.00000016 00000-0 16444-4 0 4780 2 26536 99.1286 332.4526 0010858 28.2475 331.9309 14.12657073571876 1 26536U 00055A 11299.74731455 .00000018 00000-0 34975-4 0 4794 2 26536 99.1285 332.8853 0010844 27.1327 333.0415 14.12657262571939 1 26536U 00055A 11300.52641768 .00000179 00000-0 12166-3 0 4795 2 26536 99.1280 333.6790 0010810 24.9635 335.2082 14.12658463572044 1 26536U 00055A 11300.95138262 .00000255 00000-0 16245-3 0 4801 2 26536 99.1278 334.1117 0010827 23.7757 336.3908 14.12658884572103 1 26536U 00055A 11301.37634800 .00000356 00000-0 21729-3 0 4802 2 26536 99.1276 334.5445 0010761 22.5918 337.5761 14.12659757572168 1 26536U 00055A 11301.87213980 .00000372 00000-0 22559-3 0 4810 2 26536 99.1275 335.0495 0010729 21.3334 338.8281 14.12660175572236 1 26536U 00055A 11302.36793219 .00000448 00000-0 26680-3 0 4816 2 26536 99.1272 335.5545 0010703 19.8840 340.2774 14.12661075572302 1 26536U 00055A 11302.79289625 .00000409 00000-0 24578-3 0 4826 2 26536 99.1272 335.9874 0010670 18.8510 341.3041 14.12661210572363 1 26536U 00055A 11303.21786109 .00000448 00000-0 26646-3 0 4824 2 26536 99.1267 336.4204 0010705 17.5049 342.6503 14.12661883572422 1 26536U 00055A 11303.64282518 .00000371 00000-0 22493-3 0 4838 2 26536 99.1268 336.8534 0010710 16.1639 343.9859 14.12661901572484 1 26536U 00055A 11303.99696241 .00000351 00000-0 21457-3 0 4835 2 26536 99.1266 337.2141 0010708 15.1951 344.9524 14.12661984572531 1 26536U 00055A 11304.56358181 .00000232 00000-0 15017-3 0 4841 2 26536 99.1263 337.7913 0010737 13.6183 346.5254 14.12661878572611 1 26536U 00055A 11304.98854661 .00000182 00000-0 12299-3 0 4844 2 26536 99.1266 338.2243 0010741 12.4249 347.7161 14.12661705572676 1 26536U 00055A 11305.62599371 .00000003 00000-0 26372-4 0 4851 2 26536 99.1265 338.8737 0010762 10.6063 349.5305 14.12661151572761 1 26536U 00055A 11306.05095889 -.00000017 00000-0 15870-4 0 4851 2 26536 99.1266 339.3066 0010760 9.5315 350.6049 14.12661058572829 1 26536U 00055A 11306.47592373 -.00000064 00000-0 -95692-5 0 4862 2 26536 99.1267 339.7394 0010730 8.4704 351.6640 14.12660864572883 1 26536U 00055A 11306.90088857 -.00000063 00000-0 -90308-5 0 4876 2 26536 99.1267 340.1721 0010694 7.3772 352.7550 14.12660782572943 1 26536U 00055A 11307.82164514 -.00000043 00000-0 17263-5 0 4879 2 26536 99.1268 341.1101 0010651 4.6874 355.4386 14.12660865573077 1 26536U 00055A 11308.67157410 -.00000002 00000-0 23779-4 0 4895 2 26536 99.1265 341.9754 0010610 2.2512 357.8705 14.12661284573194 1 26536U 00055A 11309.87563892 .00000212 00000-0 13959-3 0 4916 2 26536 99.1267 343.2020 0010502 358.8997 1.2143 14.12662681573361 1 26536U 00055A 11310.65473882 .00000392 00000-0 23669-3 0 4922 2 26536 99.1270 343.9956 0010485 356.5113 3.5998 14.12664284573471 1 26536U 00055A 11311.43383832 .00000531 00000-0 31163-3 0 4938 2 26536 99.1261 344.7889 0010449 354.2137 5.8930 14.12665659573586 1 26536U 00055A 11311.78797398 .00000449 00000-0 26694-3 0 4944 2 26536 99.1267 345.1501 0010478 353.1448 6.9557 14.12665569573636 1 26536U 00055A 11312.21293765 .00000435 00000-0 25975-3 0 4948 2 26536 99.1267 345.5830 0010459 351.9322 8.1677 14.12665898573699 1 26536U 00055A 11312.92120972 .00000303 00000-0 18833-3 0 4966 2 26536 99.1270 346.3044 0010449 349.8889 10.2041 14.12665744573792 1 26536U 00055A 11313.34617350 .00000207 00000-0 13675-3 0 4955 2 26536 99.1266 346.7375 0010473 348.8214 11.2711 14.12665665573850 1 26536U 00055A 11313.77113698 .00000150 00000-0 10567-3 0 4963 2 26536 99.1266 347.1704 0010439 347.6606 12.4301 14.12665599573916 1 26536U 00055A 11314.47940957 .00000103 00000-0 80591-4 0 4960 2 26536 99.1264 347.8919 0010451 345.7859 14.3023 14.12665674574010 1 26536U 00055A 11314.90437271 .00000067 00000-0 61115-4 0 4979 2 26536 99.1263 348.3246 0010397 344.6491 15.4343 14.12665466574079 1 26536U 00055A 11315.25850923 .00000055 00000-0 54711-4 0 4972 2 26536 99.1261 348.6854 0010459 343.7990 16.2846 14.12665580574128 1 26536U 00055A 11315.68347251 -.00000017 00000-0 15759-4 0 4983 2 26536 99.1258 349.1179 0010422 342.4595 17.6207 14.12665316574186 1 26536U 00055A 11316.46257186 .00000040 00000-0 46826-4 0 4981 2 26536 99.1258 349.9114 0010462 340.2975 19.7788 14.12665736574290 1 26536U 00055A 11316.46257186 .00000040 00000-0 46826-4 0 4992 2 26536 99.1258 349.9114 0010462 340.2975 19.7788 14.12665736574290 1 26536U 00055A 11316.81670799 .00000055 00000-0 54739-4 0 5001 2 26536 99.1255 350.2717 0010384 339.3548 20.7203 14.12665840574345 1 26536U 00055A 11317.24167124 .00000149 00000-0 10542-3 0 5009 2 26536 99.1250 350.7046 0010375 337.9238 22.1522 14.12666555574401 1 26536U 00055A 11317.66663354 .00000178 00000-0 12098-3 0 5012 2 26536 99.1249 351.1372 0010326 336.7690 23.3022 14.12666910574460 1 26536U 00055A 11318.44573114 .00000410 00000-0 24619-3 0 5014 2 26536 99.1241 351.9303 0010344 334.3424 25.7253 14.12668637574575 1 26536U 00055A 11318.44573114 .00000410 00000-0 24619-3 0 5025 2 26536 99.1241 351.9303 0010344 334.3424 25.7253 14.12668637574575 1 26536U 00055A 11318.79986608 .00000413 00000-0 24769-3 0 5039 2 26536 99.1239 352.2910 0010300 333.3017 26.7621 14.12668924574624 1 26536U 00055A 11319.22482844 .00000574 00000-0 33486-3 0 5035 2 26536 99.1235 352.7235 0010283 331.8657 28.1998 14.12670189574683 1 26536U 00055A 11319.64978957 .00000552 00000-0 32276-3 0 5049 2 26536 99.1237 353.1564 0010315 330.6981 29.3610 14.12670633574743 1 26536U 00055A 11320.42888616 .00000576 00000-0 33564-3 0 5046 2 26536 99.1236 353.9499 0010265 328.2867 31.7692 14.12671654574850 1 26536U 00055A 11320.42888616 .00000576 00000-0 33564-3 0 5057 2 26536 99.1236 353.9499 0010265 328.2867 31.7692 14.12671654574850 1 26536U 00055A 11320.78302062 .00000423 00000-0 25328-3 0 5063 2 26536 99.1240 354.3107 0010211 327.0772 32.9726 14.12671156574903 1 26536U 00055A 11321.49129118 .00000331 00000-0 20338-3 0 5065 2 26536 99.1238 355.0319 0010162 325.2024 34.8490 14.12671406575007 1 26536U 00055A 11321.91625264 .00000213 00000-0 13986-3 0 5076 2 26536 99.1243 355.4649 0010140 323.7249 36.3202 14.12670958575066 1 26536U 00055A 11322.41204200 .00000120 00000-0 89685-4 0 5072 2 26536 99.1245 355.9700 0010160 322.7058 37.3393 14.12670834575133 1 26536U 00055A 11322.83700412 .00000098 00000-0 77677-4 0 5087 2 26536 99.1247 356.4028 0010146 321.4136 38.6299 14.12670770575195 1 26536U 00055A 11323.19113921 .00000013 00000-0 31833-4 0 5081 2 26536 99.1247 356.7633 0010128 320.4718 39.5701 14.12670499575247 1 26536U 00055A 11323.89940918 -.00000005 00000-0 22375-4 0 5108 2 26536 99.1249 357.4846 0010057 318.2536 41.7853 14.12670421575346 1 26536U 00055A 11324.25354445 -.00000002 00000-0 23738-4 0 5092 2 26536 99.1248 357.8451 0010052 317.2007 42.8390 14.12670553575397 1 26536U 00055A 11324.67850622 -.00000012 00000-0 18808-4 0 5101 2 26536 99.1247 358.2777 0009992 315.8661 44.1712 14.12670529575456 1 26536U 00055A 11325.45760277 .00000052 00000-0 53243-4 0 5109 2 26536 99.1251 359.0711 0009994 313.7307 46.3040 14.12671049575562 1 26536U 00055A 11325.88256451 .00000096 00000-0 76966-4 0 5116 2 26536 99.1249 359.5040 0009960 312.3925 47.6406 14.12671279575625 1 26536U 00055A 11326.30752620 .00000274 00000-0 17293-3 0 5118 2 26536 99.1249 359.9368 0009962 310.7841 49.2521 14.12672442575688 1 26536U 00055A 11326.73248650 .00000289 00000-0 18075-3 0 5124 2 26536 99.1252 0.3698 0009918 309.4940 50.5359 14.12672787575744 1 26536U 00055A 11327.51158106 .00000494 00000-0 29158-3 0 5129 2 26536 99.1249 1.1629 0009924 307.0979 52.9297 14.12674584575852 1 26536U 00055A 11327.86571478 .00000461 00000-0 27387-3 0 5135 2 26536 99.1248 1.5237 0009918 306.0875 53.9358 14.12674662575909 1 26536U 00055A 11328.36150267 .00000567 00000-0 33080-3 0 5134 2 26536 99.1247 2.0286 0009916 304.4437 55.5827 14.12675760575978 1 26536U 00055A 11328.71563576 .00000492 00000-0 29021-3 0 5142 2 26536 99.1248 2.3896 0009943 303.3840 56.6366 14.12675777576020 1 26536U 00055A 11329.49473046 .00000423 00000-0 25292-3 0 5140 2 26536 99.1243 3.1829 0009906 301.1335 58.8865 14.12676219576136 1 26536U 00055A 11329.49473046 .00000423 00000-0 25292-3 0 5151 2 26536 99.1243 3.1829 0009906 301.1335 58.8865 14.12676219576136 1 26536U 00055A 11329.91969075 .00000293 00000-0 18329-3 0 5169 2 26536 99.1241 3.6154 0009891 299.6867 60.3284 14.12675808576196 1 26536U 00055A 11330.34465190 .00000222 00000-0 14494-3 0 5168 2 26536 99.1238 4.0484 0009894 298.7042 61.3121 14.12675777576254 1 26536U 00055A 11330.76961265 .00000085 00000-0 70718-4 0 5178 2 26536 99.1235 4.4808 0009895 297.2759 62.7377 14.12675246576311 1 26536U 00055A 11331.54870806 -.00000000 00000-0 24816-4 0 5171 2 26536 99.1231 5.2737 0009876 295.0678 64.9474 14.12675119576425 1 26536U 00055A 11331.54870806 -.00000000 00000-0 24816-4 0 5182 2 26536 99.1231 5.2737 0009876 295.0678 64.9474 14.12675119576425 1 26536U 00055A 11331.90284189 -.00000010 00000-0 19598-4 0 5198 2 26536 99.1230 5.6341 0009864 293.9878 66.0249 14.12674991576470 1 26536U 00055A 11332.39862971 -.00000066 00000-0 -10402-4 0 5190 2 26536 99.1229 6.1391 0009846 292.5716 67.4409 14.12674820576547 1 26536U 00055A 11332.82359066 -.00000046 00000-0 48679-6 0 5202 2 26536 99.1228 6.5715 0009846 291.3392 68.6726 14.12674840576601 1 26536U 00055A 11333.24855156 -.00000031 00000-0 83968-5 0 5203 2 26536 99.1228 7.0043 0009837 289.9288 70.0838 14.12674994576665 1 26536U 00055A 11333.24855156 -.00000031 00000-0 83968-5 0 5214 2 26536 99.1228 7.0043 0009837 289.9288 70.0838 14.12674994576665 1 26536U 00055A 11333.60268531 -.00000037 00000-0 51626-5 0 5222 2 26536 99.1227 7.3646 0009816 288.7584 71.2531 14.12675066576719 1 26536U 00055A 11334.52343243 .00000203 00000-0 13432-3 0 5223 2 26536 99.1222 8.3017 0009807 285.7244 74.2867 14.12676598576847 1 26536U 00055A 11335.37335250 .00000405 00000-0 24327-3 0 5236 2 26536 99.1226 9.1670 0009872 283.4209 76.5902 14.12678154576961 1 26536U 00055A 11335.79831159 .00000450 00000-0 26788-3 0 5245 2 26536 99.1225 9.5998 0009828 282.2351 77.7718 14.12678688577021 1 26536U 00055A 11336.15244474 .00000512 00000-0 30108-3 0 5244 2 26536 99.1223 9.9603 0009830 281.0779 78.9302 14.12679359577073 1 26536U 00055A 11336.57740396 .00000523 00000-0 30714-3 0 5250 2 26536 99.1223 10.3931 0009845 279.6872 80.3198 14.12679958577138 1 26536U 00055A 11337.49814921 .00000432 00000-0 25798-3 0 5253 2 26536 99.1220 11.3305 0009812 277.1227 82.8808 14.12680360577260 1 26536U 00055A 11337.49814921 .00000432 00000-0 25798-3 0 5264 2 26536 99.1220 11.3305 0009812 277.1227 82.8808 14.12680360577260 1 26536U 00055A 11337.85228234 .00000278 00000-0 17483-3 0 5271 2 26536 99.1224 11.6911 0009862 275.9015 84.0996 14.12679773577310 1 26536U 00055A 11338.27724252 .00000186 00000-0 12522-3 0 5276 2 26536 99.1223 12.1237 0009845 275.0171 84.9855 14.12679606577375 1 26536U 00055A 11338.63137589 .00000097 00000-0 77427-4 0 5285 2 26536 99.1225 12.4846 0009872 274.1231 85.8800 14.12679352577427 1 26536U 00055A 11339.48129544 .00000055 00000-0 54699-4 0 5281 2 26536 99.1227 13.3500 0009825 271.7059 88.2982 14.12679400577540 1 26536U 00055A 11339.90625518 .00000018 00000-0 34767-4 0 5294 2 26536 99.1228 13.7826 0009832 270.3902 89.6128 14.12679194577600 1 26536U 00055A 11340.33121518 .00000002 00000-0 26127-4 0 5298 2 26536 99.1226 14.2154 0009837 269.3655 90.6392 14.12679245577664 1 26536U 00055A 11340.68534823 -.00000039 00000-0 38326-5 0 5301 2 26536 99.1227 14.5760 0009846 268.2952 91.7084 14.12679049577717 1 26536U 00055A 11341.46444092 .00000058 00000-0 56126-4 0 5303 2 26536 99.1229 15.3692 0009867 266.1682 93.8370 14.12679651577824 1 26536U 00055A 11341.46444092 .00000058 00000-0 56126-4 0 5314 2 26536 99.1229 15.3692 0009867 266.1682 93.8370 14.12679651577824 1 26536U 00055A 11341.88940036 .00000026 00000-0 38900-4 0 5325 2 26536 99.1228 15.8019 0009872 264.7281 95.2753 14.12679491577885 1 26536U 00055A 11342.31436026 .00000157 00000-0 10943-3 0 5324 2 26536 99.1227 16.2346 0009919 263.2301 96.7791 14.12680383577948 1 26536U 00055A 11342.73931869 .00000162 00000-0 11259-3 0 5333 2 26536 99.1229 16.6674 0009902 261.8189 98.1865 14.12680609578005 1 26536U 00055A 11342.81015446 .00000171 00000-0 92145-4 0 5329 2 26536 99.1223 16.7404 0009906 261.9003 98.1529 14.12680696578015 1 26536U 00055A 11343.51840972 .00000442 00000-0 26326-3 0 5336 2 26536 99.1224 17.4605 0009930 259.2513 100.7575 14.12682651578115 1 26536U 00055A 11343.51840972 .00000442 00000-0 26326-3 0 5347 2 26536 99.1224 17.4605 0009930 259.2513 100.7575 14.12682651578115 1 26536U 00055A 11343.87254130 .00000416 00000-0 24947-3 0 5350 2 26536 99.1217 17.8209 0009888 257.9815 102.0220 14.12682639578166 1 26536U 00055A 11344.29750061 .00000524 00000-0 30731-3 0 5359 2 26536 99.1214 18.2536 0009919 256.4173 103.5923 14.12683621578222 1 26536U 00055A 11344.65163206 .00000524 00000-0 30737-3 0 5365 2 26536 99.1212 18.6141 0009930 255.3455 104.6622 14.12684096578270 1 26536U 00055A 11345.43072250 .00000548 00000-0 32039-3 0 5363 2 26536 99.1209 19.4072 0009894 253.0936 106.9165 14.12685046578381 1 26536U 00055A 11345.43072250 .00000548 00000-0 32039-3 0 5374 2 26536 99.1209 19.4072 0009894 253.0936 106.9165 14.12685046578381 1 26536U 00055A 11345.43072250 .00000548 00000-0 32039-3 0 5385 2 26536 99.1209 19.4072 0009894 253.0936 106.9165 14.12685046578381 1 26536U 00055A 11345.43072250 .00000548 00000-0 32039-3 0 5396 2 26536 99.1209 19.4072 0009894 253.0936 106.9165 14.12685046578381 1 26536U 00055A 11345.43072250 .00000548 00000-0 32039-3 0 5408 2 26536 99.1209 19.4072 0009894 253.0936 106.9165 14.12685046578381 1 26536U 00055A 11345.43072250 .00000548 00000-0 32039-3 0 5419 2 26536 99.1209 19.4072 0009894 253.0936 106.9165 14.12685046578381 1 26536U 00055A 11345.85568027 .00000365 00000-0 22195-3 0 5427 2 26536 99.1210 19.8395 0009870 251.7461 108.2575 14.12684340578440 1 26536U 00055A 11346.63477178 .00000281 00000-0 17631-3 0 5426 2 26536 99.1206 20.6326 0009847 250.0205 109.9904 14.12684669578551 1 26536U 00055A 11347.34303628 .00000116 00000-0 87557-4 0 5436 2 26536 99.1210 21.3542 0009753 248.2781 111.7342 14.12684220578659 1 26536U 00055A 11347.83882126 .00000037 00000-0 44841-4 0 5447 2 26536 99.1207 21.8585 0009726 246.7333 113.2783 14.12683836578729 1 26536U 00055A 11348.19295397 .00000006 00000-0 28309-4 0 5442 2 26536 99.1206 22.2191 0009700 245.9791 114.0365 14.12683845578777 1 26536U 00055A 11348.61791251 -.00000068 00000-0 -11878-4 0 5453 2 26536 99.1206 22.6515 0009750 244.4830 115.5335 14.12683594578835 1 26536U 00055A 11349.39700298 -.00000028 00000-0 98082-5 0 5458 2 26536 99.1209 23.4445 0009736 242.4137 117.6041 14.12683816578947 1 26536U 00055A 11349.39700298 -.00000028 00000-0 98082-5 0 5469 2 26536 99.1209 23.4445 0009736 242.4137 117.6041 14.12683816578947 1 26536U 00055A 11349.89278809 -.00000012 00000-0 18698-4 0 5470 2 26536 99.1206 23.9492 0009740 241.1256 118.8926 14.12683764579010 1 26536U 00055A 11350.45939978 -.00000025 00000-0 11652-4 0 5472 2 26536 99.1207 24.5260 0009799 239.1300 120.8938 14.12683964579098 1 26536U 00055A 11350.45939978 -.00000025 00000-0 11652-4 0 5483 2 26536 99.1207 24.5260 0009799 239.1300 120.8938 14.12683964579098 1 26536U 00055A 11350.81353132 .00000060 00000-0 57233-4 0 5499 2 26536 99.1204 24.8864 0009811 238.0610 121.9615 14.12684297579145 1 26536U 00055A 11351.30931602 .00000207 00000-0 13646-3 0 5490 2 26536 99.1202 25.3909 0009880 236.7380 123.2898 14.12685319579216 1 26536U 00055A 11351.66344677 .00000186 00000-0 12536-3 0 5504 2 26536 99.1205 25.7517 0009908 235.1570 124.8681 14.12685479579262 1 26536U 00055A 11352.51336165 .00000376 00000-0 22748-3 0 5509 2 26536 99.1200 26.6165 0010043 232.2861 127.7417 14.12687054579382 1 26536U 00055A 11352.51336165 .00000376 00000-0 22748-3 0 5510 2 26536 99.1200 26.6165 0010043 232.2861 127.7417 14.12687054579382 1 26536U 00055A 11352.86749268 .00000428 00000-0 25573-3 0 5528 2 26536 99.1202 26.9773 0010058 231.3965 128.6307 14.12687488579438 1 26536U 00055A 11353.29245017 .00000476 00000-0 28153-3 0 5529 2 26536 99.1201 27.4101 0010096 230.1978 129.8311 14.12688055579496 1 26536U 00055A 11353.78823357 .00000304 00000-0 18900-3 0 5532 2 26536 99.1205 27.9152 0010133 228.5465 131.4804 14.12687614579569 1 26536U 00055A 11354.49649708 .00000216 00000-0 14145-3 0 5536 2 26536 99.1203 28.6362 0010098 226.5085 133.5250 14.12687707579666 1 26536U 00055A 11354.49649708 .00000216 00000-0 14145-3 0 5547 2 26536 99.1203 28.6362 0010098 226.5085 133.5250 14.12687707579666 1 26536U 00055A 11355.41723911 .00000008 00000-0 29115-4 0 5553 2 26536 99.1208 29.5738 0010067 224.0233 136.0127 14.12686968579795 1 26536U 00055A 11355.84219706 .00000010 00000-0 30383-4 0 5565 2 26536 99.1208 30.0066 0010062 222.7587 137.2794 14.12686935579852 1 26536U 00055A 11356.26715498 -.00000046 00000-0 28594-7 0 5565 2 26536 99.1209 30.4391 0010047 221.5081 138.5323 14.12686781579915 1 26536U 00055A 11356.69211288 -.00000022 00000-0 13333-4 0 5577 2 26536 99.1208 30.8715 0010044 220.1904 139.8531 14.12686939579970 1 26536U 00055A 11357.47120204 -.00000031 00000-0 82191-5 0 5570 2 26536 99.1208 31.6645 0010066 217.8060 142.2400 14.12686884580087 1 26536U 00055A 11357.82533363 -.00000075 00000-0 -15410-4 0 5582 2 26536 99.1208 32.0250 0010092 216.6444 143.4022 14.12686571580138 1 26536U 00055A 11358.17946552 -.00000043 00000-0 17543-5 0 5583 2 26536 99.1208 32.3854 0010134 215.5847 144.4672 14.12686841580180 1 26536U 00055A 11358.95855411 .00000039 00000-0 45834-4 0 5602 2 26536 99.1202 33.1777 0010172 213.1887 146.8649 14.12687278580294 1 26536U 00055A 11359.31268550 .00000172 00000-0 11746-3 0 5595 2 26536 99.1202 33.5383 0010241 212.1924 147.8669 14.12688140580347 1 26536U 00055A 11359.73764203 .00000226 00000-0 14662-3 0 5609 2 26536 99.1197 33.9703 0010234 210.8774 149.1807 14.12688634580404 1 26536U 00055A 11360.44590315 .00000416 00000-0 24904-3 0 5601 2 26536 99.1190 34.6909 0010292 208.9386 151.1231 14.12690131580504 1 26536U 00055A 11360.87085970 .00000436 00000-0 26016-3 0 5613 2 26536 99.1187 35.1232 0010284 207.7119 152.3496 14.12690517580567 1 26536U 00055A 11361.29581661 .00000503 00000-0 29598-3 0 5611 2 26536 99.1181 35.5560 0010341 206.4875 153.5792 14.12691296580622 1 26536U 00055A 11361.72077264 .00000408 00000-0 24475-3 0 5622 2 26536 99.1182 35.9884 0010337 205.5467 154.5176 14.12691265580687 1 26536U 00055A 11362.28738167 .00000363 00000-0 22093-3 0 5624 2 26536 99.1180 36.5652 0010349 203.8853 156.1827 14.12691519580760 1 26536U 00055A 11362.71233835 .00000254 00000-0 16192-3 0 5637 2 26536 99.1178 36.9974 0010320 202.9528 157.1160 14.12691289580828 1 26536U 00055A 11363.49142657 .00000123 00000-0 91250-4 0 5638 2 26536 99.1178 37.7904 0010298 200.5390 159.5373 14.12691003580933 1 26536U 00055A 11363.91638312 .00000038 00000-0 45622-4 0 5641 2 26536 99.1179 38.2229 0010322 199.3916 160.6835 14.12690550580995 1 26536U 00055A 11364.34134047 -.00000048 00000-0 -72330-6 0 5646 2 26536 99.1181 38.6554 0010298 198.0928 161.9864 14.12690239581052 1 26536U 00055A 11364.34134047 -.00000048 00000-0 -72330-6 0 5657 2 26536 99.1181 38.6554 0010298 198.0928 161.9864 14.12690239581052 1 26536U 00055A 11364.76629766 -.00000133 00000-0 -46862-4 0 5665 2 26536 99.1182 39.0879 0010362 196.8147 163.2672 14.12689807581117 1 26536U 00055A 11365.12042873 -.00000082 00000-0 -19311-4 0 5666 2 26536 99.1183 39.4483 0010388 195.8683 164.2185 14.12690087581162 1 26536U 00055A 11365.89951599 -.00000101 00000-0 -29256-4 0 5687 2 26536 99.1185 40.2412 0010408 193.6540 166.4334 14.12689830581273 1 26536U 00055A 12001.32447336 -.00000063 00000-0 -91385-5 0 5671 2 26536 99.1187 40.6738 0010450 192.5016 167.5916 14.12690046581339 1 26536U 00055A 12001.32447336 -.00000063 00000-0 -91385-5 0 5682 2 26536 99.1187 40.6738 0010450 192.5016 167.5916 14.12690046581339 1 26536U 00055A 12001.74942997 -.00000053 00000-0 -38742-5 0 5699 2 26536 99.1187 41.1062 0010486 191.1772 168.9172 14.12690090581392 1 26536U 00055A 12002.52851695 .00000101 00000-0 79503-4 0 5691 2 26536 99.1185 41.8989 0010560 189.0195 171.0812 14.12691113581509 1 26536U 00055A 12002.95347311 .00000144 00000-0 10282-3 0 5700 2 26536 99.1187 42.3316 0010506 187.9109 172.1893 14.12691364581568 1 26536U 00055A 12003.30760368 .00000250 00000-0 15983-3 0 5702 2 26536 99.1188 42.6919 0010573 187.0347 173.0709 14.12692073581610 1 26536U 00055A 12003.73255941 .00000298 00000-0 18534-3 0 5713 2 26536 99.1188 43.1246 0010610 185.7251 174.3818 14.12692629581678 1 26536U 00055A 12004.51164504 .00000455 00000-0 27041-3 0 5712 2 26536 99.1185 43.9175 0010640 183.5758 176.5364 14.12694046581782 1 26536U 00055A 12004.86577434 .00000413 00000-0 24738-3 0 5725 2 26536 99.1189 44.2782 0010643 182.5685 177.5409 14.12694003581835 1 26536U 00055A 12005.29073055 .00000371 00000-0 22511-3 0 5723 2 26536 99.1186 44.7109 0010607 181.3227 178.7909 14.12694213581896 1 26536U 00055A 12005.64486048 .00000303 00000-0 18804-3 0 5738 2 26536 99.1186 45.0714 0010610 180.4302 179.6855 14.12694192581942 1 26536U 00055A 12006.06981632 .00000241 00000-0 15468-3 0 5738 2 26536 99.1184 45.5040 0010633 179.1126 181.0046 14.12694108582005 1 26536U 00055A 12006.91972855 .00000067 00000-0 60810-4 0 5759 2 26536 99.1183 46.3690 0010642 176.6445 183.4769 14.12693508582124 1 26536U 00055A 12007.34468509 -.00000009 00000-0 19812-4 0 5745 2 26536 99.1180 46.8017 0010596 175.2988 184.8274 14.12693320582188 1 26536U 00055A 12007.34468509 -.00000009 00000-0 19812-4 0 5756 2 26536 99.1180 46.8017 0010596 175.2988 184.8274 14.12693320582188 1 26536U 00055A 12007.69881531 -.00000061 00000-0 -80812-5 0 5767 2 26536 99.1179 47.1620 0010602 174.3741 185.7542 14.12693072582233 1 26536U 00055A 12008.12377158 -.00000079 00000-0 -17488-4 0 5768 2 26536 99.1178 47.5944 0010621 173.1788 186.9534 14.12693045582294 1 26536U 00055A 12008.54872759 -.00000060 00000-0 -74021-5 0 5779 2 26536 99.1177 48.0268 0010641 171.9299 188.2055 14.12693182582355 1 26536U 00055A 12009.46946593 -.00000077 00000-0 -16466-4 0 5775 2 26536 99.1177 48.9637 0010710 169.3754 190.7656 14.12692988582480 1 26536U 00055A 12009.46946593 -.00000077 00000-0 -16466-4 0 5786 2 26536 99.1177 48.9637 0010710 169.3754 190.7656 14.12692988582480 1 26536U 00055A 12009.89442183 -.00000059 00000-0 -68800-5 0 5790 2 26536 99.1175 49.3961 0010703 168.1891 191.9527 14.12692961582542 1 26536U 00055A 12010.31937806 .00000029 00000-0 40547-4 0 5792 2 26536 99.1174 49.8284 0010744 167.2118 192.9364 14.12693531582602 1 26536U 00055A 12010.67350729 .00000002 00000-0 25950-4 0 5808 2 26536 99.1174 50.1886 0010837 166.2431 193.9039 14.12693459582659 1 26536U 00055A 12011.45259232 .00000221 00000-0 14424-3 0 5808 2 26536 99.1170 50.9811 0010892 164.3393 195.8147 14.12694892582763 1 26536U 00055A 12011.45259232 .00000221 00000-0 14424-3 0 5819 2 26536 99.1170 50.9811 0010892 164.3393 195.8147 14.12694892582763 1 26536U 00055A 12011.87754725 .00000301 00000-0 18731-3 0 5827 2 26536 99.1168 51.4135 0010908 163.0602 197.0943 14.12695467582826 1 26536U 00055A 12012.65663094 .00000436 00000-0 25985-3 0 5820 2 26536 99.1167 52.2062 0011012 161.0847 199.0744 14.12696856582935 1 26536U 00055A 12013.43571488 .00000427 00000-0 25514-3 0 5831 2 26536 99.1161 52.9988 0010983 159.0211 201.1411 14.12697466583048 1 26536U 00055A 12013.86066961 .00000287 00000-0 17960-3 0 5844 2 26536 99.1162 53.4313 0011025 158.0115 202.1501 14.12697030583102 1 26536U 00055A 12014.28562506 .00000217 00000-0 14199-3 0 5841 2 26536 99.1158 53.8639 0011029 156.7619 203.4039 14.12696970583168 1 26536U 00055A 12014.63975440 .00000109 00000-0 83491-4 0 5858 2 26536 99.1158 54.2240 0011000 155.9497 204.2178 14.12696657583216 1 26536U 00055A 12015.48966500 -.00000027 00000-0 10294-4 0 5850 2 26536 99.1160 55.0891 0011002 153.2419 206.9307 14.12696185583339 1 26536U 00055A 12015.84379457 -.00000064 00000-0 -97983-5 0 5863 2 26536 99.1160 55.4493 0010985 152.2897 207.8843 14.12695872583381 1 26536U 00055A 12016.26875016 -.00000145 00000-0 -53190-4 0 5863 2 26536 99.1161 55.8816 0010984 150.9701 209.2073 14.12695523583444 1 26536U 00055A 12016.62287980 -.00000167 00000-0 -64961-4 0 5873 2 26536 99.1160 56.2420 0010978 150.0538 210.1262 14.12695366583492 1 26536U 00055A 12017.40196456 -.00000141 00000-0 -50931-4 0 5871 2 26536 99.1161 57.0347 0011040 148.0541 212.1305 14.12695316583600 1 26536U 00055A 12017.40196456 -.00000141 00000-0 -50931-4 0 5882 2 26536 99.1161 57.0347 0011040 148.0541 212.1305 14.12695316583600 1 26536U 00055A 12017.82691988 -.00000149 00000-0 -55437-4 0 5893 2 26536 99.1162 57.4671 0011017 146.6626 213.5230 14.12695120583668 1 26536U 00055A 12018.25187553 -.00000059 00000-0 -71624-5 0 5896 2 26536 99.1161 57.8994 0011081 145.9105 214.2822 14.12695639583721 1 26536U 00055A 12018.60600409 -.00000057 00000-0 -57759-5 0 5908 2 26536 99.1163 58.2600 0011054 144.7726 215.4181 14.12695691583772 1 26536U 00055A 12019.45591406 .00000128 00000-0 93954-4 0 5901 2 26536 99.1163 59.1245 0011091 142.6908 217.5064 14.12696717583893 1 26536U 00055A 12019.81004258 .00000185 00000-0 12440-3 0 5919 2 26536 99.1164 59.4850 0011074 141.5088 218.6879 14.12697092583946 1 26536U 00055A 12020.30582307 .00000314 00000-0 19440-3 0 5912 2 26536 99.1162 59.9895 0011106 140.5668 219.6355 14.12698055584016 1 26536U 00055A 12020.73077671 .00000305 00000-0 18913-3 0 5927 2 26536 99.1162 60.4220 0011119 139.3947 220.8058 14.12698339584070 1 26536U 00055A 12021.93481290 .00000336 00000-0 20592-3 0 5937 2 26536 99.1161 61.6472 0011153 136.0840 224.1176 14.12699292584241 1 26536U 00055A 12022.71389585 .00000247 00000-0 15791-3 0 5945 2 26536 99.1157 62.4403 0011130 134.0460 226.1611 14.12699484584351 1 26536U 00055A 12023.56380491 .00000090 00000-0 73336-4 0 5953 2 26536 99.1155 63.3053 0011123 131.3612 228.8517 14.12699164584473 1 26536U 00055A 12024.34288812 -.00000030 00000-0 87255-5 0 5955 2 26536 99.1152 64.0976 0011104 128.9367 231.2784 14.12698569584584 1 26536U 00055A 12024.83866834 -.00000091 00000-0 -24013-4 0 5966 2 26536 99.1154 64.6020 0011198 128.0762 232.1417 14.12698247584659 1 26536U 00055A 12025.19279707 -.00000071 00000-0 -13469-4 0 5964 2 26536 99.1152 64.9622 0011214 127.1529 233.0683 14.12698421584703 1 26536U 00055A 12025.90105407 -.00000174 00000-0 -68818-4 0 5982 2 26536 99.1153 65.6827 0011288 125.6183 234.6017 14.12697670584803 1 26536U 00055A 12026.39683486 -.00000088 00000-0 -22520-4 0 5977 2 26536 99.1152 66.1871 0011277 124.1890 236.0388 14.12698186584871 1 26536U 00055A 12026.39683486 -.00000088 00000-0 -22520-4 0 5988 2 26536 99.1152 66.1871 0011277 124.1890 236.0388 14.12698186584871 1 26536U 00055A 12026.82178852 -.00000008 00000-0 20406-4 0 5995 2 26536 99.1147 66.6192 0011335 123.3512 236.8763 14.12698524584931 1 26536U 00055A 12027.53004427 .00000158 00000-0 11001-3 0 5995 2 26536 99.1146 67.3395 0011383 121.8252 238.4046 14.12699714585036 1 26536U 00055A 12027.53004427 .00000158 00000-0 11001-3 0 6008 2 26536 99.1146 67.3395 0011383 121.8252 238.4046 14.12699714585036 1 26536U 00055A 12027.88417215 .00000239 00000-0 15384-3 0 6018 2 26536 99.1145 67.6998 0011365 120.5949 239.6344 14.12700159585081 1 26536U 00055A 12028.30912588 .00000387 00000-0 23326-3 0 6018 2 26536 99.1146 68.1321 0011372 119.9509 240.2839 14.12701212585145 1 26536U 00055A 12028.66325280 .00000368 00000-0 22319-3 0 6025 2 26536 99.1146 68.4923 0011376 118.9392 241.2916 14.12701406585196 1 26536U 00055A 12029.44233405 .00000452 00000-0 26841-3 0 6027 2 26536 99.1144 69.2850 0011346 116.5893 243.6455 14.12702416585308 1 26536U 00055A 12029.79646128 .00000323 00000-0 19880-3 0 6038 2 26536 99.1148 69.6456 0011318 115.7606 244.4708 14.12702012585357 1 26536U 00055A 12030.15058940 .00000208 00000-0 13693-3 0 6037 2 26536 99.1143 70.0060 0011315 114.4634 245.7700 14.12701803585402 1 26536U 00055A 12030.57554293 .00000198 00000-0 13140-3 0 6041 2 26536 99.1144 70.4383 0011317 113.3249 246.9121 14.12702050585468 1 26536U 00055A 12031.35462364 .00000093 00000-0 75012-4 0 6046 2 26536 99.1143 71.2310 0011315 111.0663 249.1691 14.12701728585579 1 26536U 00055A 12031.35462364 .00000093 00000-0 75012-4 0 6057 2 26536 99.1143 71.2310 0011315 111.0663 249.1691 14.12701728585579 1 26536U 00055A 12031.77957738 -.00000006 00000-0 21776-4 0 6061 2 26536 99.1144 71.6635 0011310 109.8149 250.4220 14.12701292585639 1 26536U 00055A 12032.48783355 -.00000084 00000-0 -20610-4 0 6065 2 26536 99.1143 72.3839 0011326 107.9035 252.3372 14.12700993585739 1 26536U 00055A 12032.48783355 -.00000084 00000-0 -20610-4 0 6076 2 26536 99.1143 72.3839 0011326 107.9035 252.3372 14.12700993585739 1 26536U 00055A 12032.91278695 -.00000176 00000-0 -70162-4 0 6080 2 26536 99.1141 72.8162 0011341 106.9524 253.2866 14.12700366585798 1 26536U 00055A 12033.26691545 -.00000206 00000-0 -85947-4 0 6083 2 26536 99.1140 73.1764 0011357 105.9169 254.3257 14.12700226585847 1 26536U 00055A 12033.69186903 -.00000199 00000-0 -82136-4 0 6096 2 26536 99.1141 73.6087 0011395 104.9368 255.3073 14.12700176585901 1 26536U 00055A 12034.47095006 -.00000152 00000-0 -56906-4 0 6091 2 26536 99.1141 74.4014 0011388 103.0432 257.2013 14.12700301586012 1 26536U 00055A 12034.47095006 -.00000152 00000-0 -56906-4 0 6103 2 26536 99.1141 74.4014 0011388 103.0432 257.2013 14.12700301586012 1 26536U 00055A 12034.82507800 -.00000090 00000-0 -23775-4 0 6112 2 26536 99.1140 74.7617 0011411 101.9326 258.3128 14.12700469586068 1 26536U 00055A 12035.25003146 .00000052 00000-0 52900-4 0 6112 2 26536 99.1140 75.1940 0011371 101.0143 259.2351 14.12701235586122 1 26536U 00055A 12035.60415832 .00000010 00000-0 30044-4 0 6120 2 26536 99.1142 75.5544 0011370 100.1494 260.0962 14.12701152586177 1 26536U 00055A 12036.38323887 .00000215 00000-0 14056-3 0 6125 2 26536 99.1141 76.3469 0011353 98.0630 262.1859 14.12702375586287 1 26536U 00055A 12036.38323887 .00000215 00000-0 14056-3 0 6136 2 26536 99.1141 76.3469 0011353 98.0630 262.1859 14.12702375586287 1 26536U 00055A 12036.80819116 .00000217 00000-0 14177-3 0 6145 2 26536 99.1141 76.7793 0011366 96.9017 263.3444 14.12702552586348 1 26536U 00055A 12037.51644503 .00000367 00000-0 22263-3 0 6141 2 26536 99.1139 77.4998 0011347 95.0167 265.2313 14.12703929586441 1 26536U 00055A 12037.51644503 .00000367 00000-0 22263-3 0 6152 2 26536 99.1139 77.4998 0011347 95.0167 265.2313 14.12703929586441 1 26536U 00055A 12038.43717498 .00000413 00000-0 24759-3 0 6163 2 26536 99.1137 78.4364 0011311 92.5191 267.7286 14.12704796586570 1 26536U 00055A 12038.86212681 .00000278 00000-0 17483-3 0 6170 2 26536 99.1138 78.8686 0011293 91.6137 268.6292 14.12704330586639 1 26536U 00055A 12039.21625436 .00000215 00000-0 14077-3 0 6173 2 26536 99.1135 79.2290 0011310 90.3583 269.8871 14.12704278586685 1 26536U 00055A 12039.57038148 .00000145 00000-0 10318-3 0 6187 2 26536 99.1131 79.5888 0011280 89.3620 270.8839 14.12704184586731 1 26536U 00055A 12040.49111228 -.00000034 00000-0 67118-5 0 6181 2 26536 99.1129 80.5256 0011317 86.8629 273.3829 14.12703466586864 1 26536U 00055A 12040.84523950 -.00000103 00000-0 -30876-4 0 6198 2 26536 99.1125 80.8856 0011294 85.8805 274.3636 14.12703014586910 1 26536U 00055A 12041.62431971 -.00000127 00000-0 -43766-4 0 6194 2 26536 99.1123 81.6780 0011318 83.8232 276.4236 14.12702925587024 1 26536U 00055A 12042.40339909 -.00000081 00000-0 -18764-4 0 6200 2 26536 99.1122 82.4705 0011304 81.9613 278.2844 14.12703066587130 1 26536U 00055A 12042.82835158 -.00000073 00000-0 -14308-4 0 6215 2 26536 99.1120 82.9027 0011299 80.4699 279.7740 14.12702993587196 1 26536U 00055A 12043.53660589 -.00000019 00000-0 14658-4 0 6215 2 26536 99.1119 83.6231 0011291 78.8801 281.3659 14.12703354587298 1 26536U 00055A 12043.53660589 -.00000019 00000-0 14658-4 0 6226 2 26536 99.1119 83.6231 0011291 78.8801 281.3659 14.12703354587298 1 26536U 00055A 12043.89073253 -.00000031 00000-0 80502-5 0 6238 2 26536 99.1117 83.9833 0011296 77.8849 282.3571 14.12703166587344 1 26536U 00055A 12044.31568534 .00000072 00000-0 63928-4 0 6233 2 26536 99.1117 84.4156 0011257 76.8177 283.4287 14.12703827587405 1 26536U 00055A 12044.74063686 .00000120 00000-0 89316-4 0 6242 2 26536 99.1118 84.8478 0011288 75.5322 284.7116 14.12704255587466 1 26536U 00055A 12045.44888961 .00000226 00000-0 14677-3 0 6245 2 26536 99.1117 85.5679 0011258 73.8355 286.4062 14.12705106587566 1 26536U 00055A 12045.44888961 .00000226 00000-0 14677-3 0 6256 2 26536 99.1117 85.5679 0011258 73.8355 286.4062 14.12705106587566 1 26536U 00055A 12045.80301600 .00000234 00000-0 15088-3 0 6263 2 26536 99.1117 85.9283 0011281 72.6633 287.5763 14.12705262587612 1 26536U 00055A 12046.22796793 .00000345 00000-0 21104-3 0 6260 2 26536 99.1114 86.3607 0011243 71.4552 288.7863 14.12706065587671 1 26536U 00055A 12046.58209373 .00000281 00000-0 17618-3 0 6277 2 26536 99.1116 86.7211 0011238 70.3744 289.8631 14.12706027587722 1 26536U 00055A 12047.29034686 .00000233 00000-0 15040-3 0 6273 2 26536 99.1115 87.4414 0011233 68.6819 291.5554 14.12706136587828 1 26536U 00055A 12047.29034686 .00000233 00000-0 15040-3 0 6284 2 26536 99.1115 87.4414 0011233 68.6819 291.5554 14.12706136587828 1 26536U 00055A 12047.78612350 .00000100 00000-0 78887-4 0 6291 2 26536 99.1120 87.9458 0011227 67.4098 292.8233 14.12705664587896 1 26536U 00055A 12048.49437677 .00000058 00000-0 56010-4 0 6293 2 26536 99.1119 88.6664 0011214 65.5910 294.6436 14.12705759587990 1 26536U 00055A 12048.49437677 .00000058 00000-0 56010-4 0 6305 2 26536 99.1119 88.6664 0011214 65.5910 294.6436 14.12705759587990 1 26536U 00055A 12048.84850297 -.00000004 00000-0 22749-4 0 6316 2 26536 99.1124 89.0267 0011200 64.6692 295.5617 14.12705364588042 1 26536U 00055A 12049.27345509 -.00000033 00000-0 69906-5 0 6318 2 26536 99.1124 89.4589 0011196 63.5495 296.6820 14.12705273588100 1 26536U 00055A 12049.27345509 -.00000033 00000-0 69906-5 0 6329 2 26536 99.1124 89.4589 0011196 63.5495 296.6820 14.12705273588100 1 26536U 00055A 12049.69840689 -.00000147 00000-0 -54230-4 0 6335 2 26536 99.1123 89.8911 0011159 62.4636 297.7656 14.12704747588166 1 26536U 00055A 12050.47748548 -.00000150 00000-0 -55871-4 0 6330 2 26536 99.1123 90.6835 0011127 60.5652 299.6630 14.12704605588271 1 26536U 00055A 12050.47748548 -.00000150 00000-0 -55871-4 0 6341 2 26536 99.1123 90.6835 0011127 60.5652 299.6630 14.12704605588271 1 26536U 00055A 12050.90243737 -.00000196 00000-0 -80836-4 0 6359 2 26536 99.1123 91.1157 0011098 59.5719 300.6538 14.12704212588334 1 26536U 00055A 12051.32738960 -.00000155 00000-0 -58769-4 0 6358 2 26536 99.1123 91.5480 0011093 58.2985 301.9286 14.12704407588399 1 26536U 00055A 12051.68151584 -.00000126 00000-0 -43123-4 0 6365 2 26536 99.1121 91.9079 0011105 57.3726 302.8527 14.12704560588446 1 26536U 00055A 12052.46059309 .00000100 00000-0 78892-4 0 6365 2 26536 99.1117 92.7004 0011086 54.9884 305.2337 14.12705779588555 1 26536U 00055A 12052.46059309 .00000100 00000-0 78892-4 0 6376 2 26536 99.1117 92.7004 0011086 54.9884 305.2337 14.12705779588555 1 26536U 00055A 12052.81471911 .00000166 00000-0 11431-3 0 6380 2 26536 99.1112 93.0602 0011096 54.2877 305.9332 14.12706184588603 1 26536U 00055A 12053.59379559 .00000288 00000-0 17994-3 0 6386 2 26536 99.1111 93.8524 0011032 52.1480 308.0697 14.12707362588719 1 26536U 00055A 12053.59379559 .00000288 00000-0 17994-3 0 6397 2 26536 99.1111 93.8524 0011032 52.1480 308.0697 14.12707362588719 1 26536U 00055A 12054.37287225 .00000415 00000-0 24840-3 0 6404 2 26536 99.1103 94.6446 0011053 49.7856 310.4306 14.12708539588827 1 26536U 00055A 12054.72699725 .00000339 00000-0 20768-3 0 6416 2 26536 99.1103 95.0047 0011042 48.7826 311.4276 14.12708409588871 1 26536U 00055A 12055.50607400 .00000326 00000-0 20060-3 0 6413 2 26536 99.1096 95.7970 0011104 46.3816 313.8279 14.12708974588984 1 26536U 00055A 12055.50607400 .00000326 00000-0 20060-3 0 6424 2 26536 99.1096 95.7970 0011104 46.3816 313.8279 14.12708974588984 1 26536U 00055A 12055.86019930 .00000169 00000-0 11574-3 0 6434 2 26536 99.1096 96.1571 0011073 45.4662 314.7371 14.12708262589030 1 26536U 00055A 12056.21432569 .00000111 00000-0 84773-4 0 6430 2 26536 99.1091 96.5175 0011130 44.2431 315.9616 14.12708177589089 1 26536U 00055A 12056.63927666 .00000037 00000-0 44585-4 0 6448 2 26536 99.1090 96.9494 0011104 43.0082 317.1946 14.12707952589143 1 26536U 00055A 12057.41835371 -.00000103 00000-0 -30892-4 0 6448 2 26536 99.1086 97.7417 0011162 40.8768 319.3220 14.12707304589254 1 26536U 00055A 12057.41835371 -.00000103 00000-0 -30892-4 0 6459 2 26536 99.1086 97.7417 0011162 40.8768 319.3220 14.12707304589254 1 26536U 00055A 12057.84330506 -.00000144 00000-0 -52676-4 0 6466 2 26536 99.1088 98.1738 0011144 39.7641 320.4337 14.12707014589311 1 26536U 00055A 12058.26825629 -.00000213 00000-0 -89761-4 0 6460 2 26536 99.1086 98.6061 0011133 38.7333 321.4626 14.12706628589376 1 26536U 00055A 12058.62238245 -.00000202 00000-0 -84111-4 0 6475 2 26536 99.1087 98.9661 0011113 37.8448 322.3515 14.12706648589426 1 26536U 00055A 12059.47228419 -.00000127 00000-0 -43465-4 0 6474 2 26536 99.1089 99.8303 0011053 35.7196 324.4720 14.12706870589542 1 26536U 00055A 12059.47228419 -.00000127 00000-0 -43465-4 0 6485 2 26536 99.1089 99.8303 0011053 35.7196 324.4720 14.12706870589542 1 26536U 00055A 12059.82640995 -.00000066 00000-0 -10920-4 0 6494 2 26536 99.1091 100.1907 0011059 34.9480 325.2416 14.12707007589593 1 26536U 00055A 12060.25136099 .00000045 00000-0 49057-4 0 6496 2 26536 99.1090 100.6227 0010957 33.9768 326.2148 14.12707690589654 1 26536U 00055A 12060.60548578 .00000010 00000-0 30496-4 0 6505 2 26536 99.1093 100.9829 0010948 32.9809 327.2045 14.12707651589703 1 26536U 00055A 12061.45538694 .00000219 00000-0 14314-3 0 6508 2 26536 99.1090 101.8470 0010846 30.7221 329.4623 14.12708965589821 1 26536U 00055A 12061.80951150 .00000238 00000-0 15300-3 0 6533 2 26536 99.1092 102.2074 0010841 29.8937 330.2847 14.12709152589878 1 26536U 00055A 12062.23446193 .00000389 00000-0 23463-3 0 6533 2 26536 99.1091 102.6394 0010768 28.6016 331.5785 14.12710216589934 1 26536U 00055A 12062.58858613 .00000335 00000-0 20516-3 0 6543 2 26536 99.1094 102.9999 0010738 27.6039 332.5702 14.12710314589986 1 26536U 00055A 12063.36766119 .00000360 00000-0 21904-3 0 6550 2 26536 99.1093 103.7920 0010668 25.5929 334.5778 14.12710935590093 1 26536U 00055A 12063.79261079 .00000239 00000-0 15394-3 0 6564 2 26536 99.1096 104.2244 0010656 24.3580 335.8064 14.12710559590159 1 26536U 00055A 12064.92581148 .00000037 00000-0 44630-4 0 6575 2 26536 99.1090 105.3762 0010617 21.3456 338.8129 14.12710000590310 1 26536U 00055A 12065.70488741 -.00000041 00000-0 26893-5 0 6586 2 26536 99.1088 106.1686 0010688 19.1094 341.0473 14.12709774590428 1 26536U 00055A 12066.41313788 -.00000113 00000-0 -36072-4 0 6583 2 26536 99.1088 106.8885 0010689 17.1969 342.9553 14.12709404590526 1 26536U 00055A 12066.41313788 -.00000113 00000-0 -36072-4 0 6594 2 26536 99.1088 106.8885 0010689 17.1969 342.9553 14.12709404590526 1 26536U 00055A 12066.83808834 -.00000137 00000-0 -48794-4 0 6603 2 26536 99.1090 107.3206 0010646 16.0695 344.0802 14.12709113590582 1 26536U 00055A 12067.26303891 -.00000128 00000-0 -44302-4 0 6605 2 26536 99.1086 107.7526 0010634 14.8071 345.3422 14.12709179590648 1 26536U 00055A 12067.61716395 -.00000141 00000-0 -51157-4 0 6613 2 26536 99.1085 108.1124 0010609 13.9333 346.2132 14.12709113590690 1 26536U 00055A 12068.32541405 -.00000035 00000-0 61468-5 0 6618 2 26536 99.1080 108.8324 0010574 11.8337 348.3088 14.12709601590792 1 26536U 00055A 12068.32541405 -.00000035 00000-0 61468-5 0 6629 2 26536 99.1080 108.8324 0010574 11.8337 348.3088 14.12709601590792 1 26536U 00055A 12068.75036410 -.00000005 00000-0 22082-4 0 6637 2 26536 99.1077 109.2641 0010520 10.8256 349.3148 14.12709771590858 1 26536U 00055A 12069.45861294 .00000241 00000-0 15495-3 0 6631 2 26536 99.1076 109.9843 0010392 8.6679 351.4694 14.12711353590959 1 26536U 00055A 12069.45861294 .00000241 00000-0 15495-3 0 6642 2 26536 99.1076 109.9843 0010392 8.6679 351.4694 14.12711353590959 1 26536U 00055A 12069.88356213 .00000328 00000-0 20172-3 0 6654 2 26536 99.1077 110.4164 0010418 7.6603 352.4732 14.12711985591011 1 26536U 00055A 12070.23768653 .00000484 00000-0 28546-3 0 6656 2 26536 99.1072 110.7764 0010319 6.4303 353.7041 14.12713067591064 1 26536U 00055A 12070.59180998 .00000478 00000-0 28270-3 0 6663 2 26536 99.1074 111.1366 0010311 5.4702 354.6588 14.12713489591113 1 26536U 00055A 12071.37088318 .00000483 00000-0 28524-3 0 6661 2 26536 99.1068 111.9288 0010252 3.3755 356.7488 14.12714196591226 1 26536U 00055A 12071.37088318 .00000483 00000-0 28524-3 0 6672 2 26536 99.1068 111.9288 0010252 3.3755 356.7488 14.12714196591226 1 26536U 00055A 12071.72500708 .00000357 00000-0 21738-3 0 6684 2 26536 99.1068 112.2890 0010291 2.1509 357.9678 14.12713878591271 1 26536U 00055A 12072.14995649 .00000230 00000-0 14898-3 0 6682 2 26536 99.1066 112.7212 0010269 1.1521 358.9644 14.12713540591337 1 26536U 00055A 12072.85820524 .00000115 00000-0 86686-4 0 6709 2 26536 99.1070 113.4413 0010264 358.9844 1.1279 14.12713317591433 1 26536U 00055A 12073.28315484 .00000010 00000-0 30468-4 0 6690 2 26536 99.1068 113.8735 0010287 357.8384 2.2728 14.12713021591492 1 26536U 00055A 12073.63727942 -.00000008 00000-0 20401-4 0 6701 2 26536 99.1070 114.2336 0010306 356.8157 3.2948 14.12713016591541 1 26536U 00055A 12074.34552822 -.00000038 00000-0 42126-5 0 6705 2 26536 99.1070 114.9538 0010352 355.0267 5.0790 14.12712860591648 1 26536U 00055A 12074.77047765 -.00000087 00000-0 -22161-4 0 6719 2 26536 99.1070 115.3858 0010356 353.8402 6.2631 14.12712599591702 1 26536U 00055A 12075.54955169 -.00000118 00000-0 -38697-4 0 6717 2 26536 99.1069 116.1777 0010303 351.5746 8.5259 14.12712462591819 1 26536U 00055A 12076.32862567 -.00000086 00000-0 -21663-4 0 6723 2 26536 99.1067 116.9699 0010296 349.2511 10.8460 14.12712506591924 1 26536U 00055A 12076.75357460 -.00000110 00000-0 -34376-4 0 6735 2 26536 99.1070 117.4021 0010238 348.0551 12.0378 14.12712370591987 1 26536U 00055A 12077.46182266 .00000097 00000-0 76952-4 0 6732 2 26536 99.1065 118.1221 0010271 345.8958 14.1939 14.12713549592081 1 26536U 00055A 12077.46182266 .00000097 00000-0 76952-4 0 6743 2 26536 99.1065 118.1221 0010271 345.8958 14.1939 14.12713549592081 1 26536U 00055A 12077.88677141 .00000177 00000-0 12023-3 0 6758 2 26536 99.1064 118.5541 0010297 344.8520 15.2347 14.12714025592143 1 26536U 00055A 12078.24089537 .00000316 00000-0 19536-3 0 6756 2 26536 99.1063 118.9141 0010251 343.4776 16.6102 14.12714958592194 1 26536U 00055A 12078.66584315 .00000388 00000-0 23422-3 0 6765 2 26536 99.1063 119.3460 0010193 342.3690 17.7147 14.12715703592258 1 26536U 00055A 12079.44491467 .00000474 00000-0 28015-3 0 6766 2 26536 99.1059 120.1379 0010135 339.9198 20.1591 14.12716767592367 1 26536U 00055A 12079.44491467 .00000474 00000-0 28015-3 0 6777 2 26536 99.1059 120.1379 0010135 339.9198 20.1591 14.12716767592367 1 26536U 00055A 12079.79903769 .00000326 00000-0 20072-3 0 6780 2 26536 99.1061 120.4981 0010082 338.8843 21.1871 14.12716214592413 1 26536U 00055A 12080.22398672 .00000318 00000-0 19644-3 0 6785 2 26536 99.1058 120.9302 0010104 337.7221 22.3509 14.12716510592470 1 26536U 00055A 12080.57811022 .00000279 00000-0 17545-3 0 6797 2 26536 99.1058 121.2901 0010106 336.6694 23.4022 14.12716679592527 1 26536U 00055A 12081.35718231 .00000099 00000-0 78300-4 0 6799 2 26536 99.1059 122.0822 0010132 334.6920 25.3733 14.12716108592637 1 26536U 00055A 12081.35718231 .00000099 00000-0 78300-4 0 6801 2 26536 99.1059 122.0822 0010132 334.6920 25.3733 14.12716108592637 1 26536U 00055A 12081.78213103 .00000001 00000-0 25564-4 0 6814 2 26536 99.1057 122.5140 0010123 333.4836 26.5793 14.12715670592694 1 26536U 00055A 12082.49037886 -.00000030 00000-0 86890-5 0 6818 2 26536 99.1055 123.2341 0010130 331.5926 28.4696 14.12715723592793 1 26536U 00055A 12082.91532723 -.00000081 00000-0 -18913-4 0 6823 2 26536 99.1056 123.6660 0010096 330.1734 29.8839 14.12715299592854 1 26536U 00055A 12083.26945149 -.00000088 00000-0 -22700-4 0 6828 2 26536 99.1055 124.0261 0010100 329.1855 30.8726 14.12715300592909 1 26536U 00055A 12083.69440001 -.00000149 00000-0 -55335-4 0 6831 2 26536 99.1054 124.4579 0010099 327.9549 32.0998 14.12714970592960 1 26536U 00055A 12084.47347254 -.00000117 00000-0 -38160-4 0 6836 2 26536 99.1053 125.2498 0010090 325.6583 34.3941 14.12715112593077 1 26536U 00055A 12084.82759632 -.00000061 00000-0 -79559-5 0 6849 2 26536 99.1049 125.6096 0010092 324.6974 35.3531 14.12715279593121 1 26536U 00055A 12085.25254489 .00000091 00000-0 74069-4 0 6848 2 26536 99.1046 126.0415 0010072 323.1421 36.9103 14.12716141593184 1 26536U 00055A 12085.60666763 .00000073 00000-0 63995-4 0 6856 2 26536 99.1046 126.4014 0010049 322.0629 37.9841 14.12716237593237 1 26536U 00055A 12086.38573930 .00000266 00000-0 16837-3 0 6851 2 26536 99.1039 127.1929 0010014 319.4846 40.5620 14.12717476593348 1 26536U 00055A 12086.81068646 .00000289 00000-0 18050-3 0 6867 2 26536 99.1039 127.6248 0009956 318.3133 41.7277 14.12717781593404 1 26536U 00055A 12087.23563437 .00000380 00000-0 22963-3 0 6862 2 26536 99.1037 128.0566 0009946 316.8796 43.1625 14.12718615593463 1 26536U 00055A 12087.66058142 .00000349 00000-0 21278-3 0 6875 2 26536 99.1036 128.4884 0009941 315.6708 44.3662 14.12718833593527 1 26536U 00055A 12088.43965218 .00000322 00000-0 19824-3 0 6877 2 26536 99.1030 129.2801 0009912 313.4641 46.5705 14.12719280593630 1 26536U 00055A 12088.86459964 .00000275 00000-0 17311-3 0 6887 2 26536 99.1032 129.7120 0009900 312.1941 47.8368 14.12719193593695 1 26536U 00055A 12089.57284621 .00000119 00000-0 89156-4 0 6886 2 26536 99.1030 130.4320 0009915 310.1777 49.8522 14.12718928593795 1 26536U 00055A 12090.35191747 -.00000017 00000-0 15912-4 0 6898 2 26536 99.1030 131.2241 0009908 308.1350 51.8915 14.12718371593906 1 26536U 00055A 12090.84769016 -.00000070 00000-0 -12924-4 0 6904 2 26536 99.1031 131.7278 0009903 306.5768 53.4476 14.12718026593976 1 26536U 00055A 12091.20181374 -.00000087 00000-0 -21750-4 0 6905 2 26536 99.1029 132.0878 0009917 305.7328 54.2924 14.12718015594023 1 26536U 00055A 12091.91006009 -.00000115 00000-0 -36808-4 0 6928 2 26536 99.1032 132.8078 0009910 303.6076 56.4135 14.12717750594121 1 26536U 00055A 12092.33500841 -.00000109 00000-0 -33659-4 0 6911 2 26536 99.1031 133.2397 0009862 301.9801 58.0423 14.12717775594183 1 26536U 00055A 12092.68913154 -.00000125 00000-0 -42416-4 0 6924 2 26536 99.1033 133.5998 0009848 300.9568 59.0634 14.12717666594238 1 26536U 00055A 12093.39737764 .00000042 00000-0 47774-4 0 6922 2 26536 99.1032 134.3194 0009838 298.3604 61.6595 14.12718559594332 1 26536U 00055A 12093.75150042 .00000055 00000-0 54309-4 0 6937 2 26536 99.1033 134.6794 0009824 297.3712 62.6464 14.12718699594382 1 26536U 00055A 12093.82233416 .00000078 00000-0 42305-4 0 6930 2 26536 99.1037 134.7531 0009872 297.4772 62.5876 14.12718885594390 1 26536U 00055A 12094.17644812 .00000179 00000-0 12145-3 0 6946 2 26536 99.1029 135.1114 0009821 295.7535 64.2657 14.12719449594444 1 26536U 00055A 12094.88469285 .00000276 00000-0 17350-3 0 6966 2 26536 99.1030 135.8313 0009776 293.6645 66.3493 14.12720260594547 1 26536U 00055A 12095.30964029 .00000414 00000-0 24804-3 0 6955 2 26536 99.1027 136.2630 0009791 292.0931 67.9242 14.12721301594601 1 26536U 00055A 12095.80541095 .00000406 00000-0 24353-3 0 6976 2 26536 99.1030 136.7669 0009792 290.8196 69.1921 14.12721699594677 1 26536U 00055A 12096.58448023 .00000380 00000-0 22989-3 0 6973 2 26536 99.1026 137.5587 0009802 288.3488 71.6624 14.12722352594785 1 26536U 00055A 12097.43437434 .00000256 00000-0 16306-3 0 6981 2 26536 99.1025 138.4225 0009765 285.8960 74.1132 14.12722218594905 1 26536U 00055A 12097.78849674 .00000154 00000-0 10813-3 0 6997 2 26536 99.1024 138.7823 0009759 284.8333 75.1729 14.12721787594955 1 26536U 00055A 12098.14261974 .00000103 00000-0 80462-4 0 6991 2 26536 99.1022 139.1424 0009758 284.2289 75.7787 14.12721754595009 1 26536U 00055A 12098.92168937 -.00000033 00000-0 73983-5 0 7010 2 26536 99.1024 139.9339 0009736 281.7673 78.2376 14.12721194595111 1 26536U 00055A 12099.27581259 -.00000061 00000-0 -79848-5 0 7002 2 26536 99.1019 140.2939 0009747 281.2969 78.7102 14.12721146595165 1 26536U 00055A 12099.62993534 -.00000065 00000-0 -10055-4 0 7013 2 26536 99.1020 140.6537 0009727 279.9125 80.0955 14.12721163595218 1 26536U 00055A 12100.40900516 -.00000048 00000-0 -11525-5 0 7015 2 26536 99.1019 141.4455 0009710 277.6350 82.3730 14.12721256595322 1 26536U 00055A 12100.83395211 -.00000098 00000-0 -27822-4 0 7024 2 26536 99.1019 141.8774 0009707 276.4242 83.5806 14.12720903595384 1 26536U 00055A 12101.32972432 -.00000043 00000-0 14824-5 0 7023 2 26536 99.1016 142.3812 0009723 274.7056 85.3032 14.12721244595450 1 26536U 00055A 12101.75467099 -.00000052 00000-0 -33631-5 0 7037 2 26536 99.1016 142.8129 0009726 273.5977 86.4083 14.12721234595512 1 26536U 00055A 12102.46291535 .00000134 00000-0 96902-4 0 7034 2 26536 99.1009 143.5325 0009765 271.1453 88.8613 14.12722386595611 1 26536U 00055A 12102.81703747 .00000147 00000-0 10422-3 0 7043 2 26536 99.1010 143.8925 0009753 270.2296 89.7750 14.12722485595661 1 26536U 00055A 12103.59610563 .00000321 00000-0 19799-3 0 7042 2 26536 99.1009 144.6843 0009805 267.5036 92.5032 14.12724025595775 1 26536U 00055A 12104.37517366 .00000456 00000-0 27065-3 0 7051 2 26536 99.1004 145.4760 0009820 265.3229 94.6841 14.12725198595889 1 26536U 00055A 12104.80011931 .00000296 00000-0 18413-3 0 7066 2 26536 99.1008 145.9081 0009831 263.9115 96.0895 14.12724631595947 1 26536U 00055A 12105.22506636 .00000299 00000-0 18602-3 0 7067 2 26536 99.1006 146.3397 0009847 262.6629 97.3433 14.12724995596006 1 26536U 00055A 12105.65001231 .00000213 00000-0 13965-3 0 7079 2 26536 99.1006 146.7717 0009860 261.5687 98.4359 14.12724948596066 1 26536U 00055A 12106.35825658 .00000084 00000-0 70185-4 0 7078 2 26536 99.1008 147.4917 0009821 259.6370 100.3676 14.12724502596164 1 26536U 00055A 12106.35825658 .00000084 00000-0 70185-4 0 7089 2 26536 99.1008 147.4917 0009821 259.6370 100.3676 14.12724502596164 1 26536U 00055A 12106.71237889 -.00000019 00000-0 14685-4 0 7095 2 26536 99.1011 147.8515 0009834 258.3427 101.6629 14.12724081596219 1 26536U 00055A 12107.13732561 -.00000105 00000-0 -31911-4 0 7109 2 26536 99.1012 148.2832 0009808 257.2729 102.7325 14.12723671596276 1 26536U 00055A 12107.91639470 -.00000054 00000-0 -43711-5 0 7127 2 26536 99.1014 149.0747 0009787 254.8847 105.1243 14.12723826596382 1 26536U 00055A 12108.34134127 -.00000067 00000-0 -11430-4 0 7119 2 26536 99.1011 149.5066 0009794 253.6943 106.3159 14.12723843596445 1 26536U 00055A 12108.76628773 -.00000088 00000-0 -22574-4 0 7125 2 26536 99.1012 149.9383 0009790 252.3228 107.6868 14.12723675596501 1 26536U 00055A 12109.12041008 -.00000087 00000-0 -21746-4 0 7125 2 26536 99.1014 150.2983 0009799 251.3794 108.6317 14.12723673596553 1 26536U 00055A 12109.89947879 .00000031 00000-0 41527-4 0 7148 2 26536 99.1009 151.0896 0009788 248.8850 111.1289 14.12724189596663 1 26536U 00055A 12110.32442503 .00000114 00000-0 86182-4 0 7139 2 26536 99.1008 151.5213 0009840 247.3302 112.6866 14.12724806596725 1 26536U 00055A 12110.82020416 .00000090 00000-0 48747-4 0 7148 2 26536 99.1006 152.0265 0009868 246.7991 113.2624 14.12724926596792 1 26536U 00055A 12111.38678983 .00000297 00000-0 18477-3 0 7154 2 26536 99.1001 152.6003 0009900 244.0101 116.0097 14.12726269596870 1 26536U 00055A 12111.81173482 .00000329 00000-0 20200-3 0 7160 2 26536 99.1004 153.0323 0009869 242.7625 117.2535 14.12726614596934 1 26536U 00055A 12112.16585645 .00000434 00000-0 25897-3 0 7161 2 26536 99.1000 153.3921 0009906 241.6979 118.3219 14.12727436596988 1 26536U 00055A 12112.94492232 .00000415 00000-0 24843-3 0 7187 2 26536 99.1000 154.1836 0009927 239.2959 120.7210 14.12728033597091 1 26536U 00055A 12113.29904398 .00000395 00000-0 23759-3 0 7178 2 26536 99.0996 154.5437 0009941 238.1901 121.8305 14.12728296597140 1 26536U 00055A 12113.29904398 .00000395 00000-0 23759-3 0 7189 2 26536 99.0996 154.5437 0009941 238.1901 121.8305 14.12728296597140 1 26536U 00055A 12113.72398928 .00000310 00000-0 19206-3 0 7193 2 26536 99.0997 154.9756 0009939 237.2392 122.7805 14.12728223597202 1 26536U 00055A 12114.50305639 .00000231 00000-0 14912-3 0 7198 2 26536 99.0993 155.7669 0009941 234.7441 125.2798 14.12728339597319 1 26536U 00055A 12114.85717758 .00000106 00000-0 82066-4 0 7204 2 26536 99.0995 156.1269 0009957 233.8486 126.1730 14.12727745597369 1 26536U 00055A 12115.21129958 .00000038 00000-0 45333-4 0 7204 2 26536 99.0992 156.4869 0009928 232.9953 127.0299 14.12727561597414 1 26536U 00055A 12115.63624544 .00000015 00000-0 32721-4 0 7214 2 26536 99.0994 156.9187 0009943 231.6707 128.3575 14.12727575597476 1 26536U 00055A 12116.34448840 -.00000071 00000-0 -13168-4 0 7214 2 26536 99.0989 157.6381 0009913 229.6088 130.4211 14.12727209597576 1 26536U 00055A 12116.34448840 -.00000071 00000-0 -13168-4 0 7225 2 26536 99.0989 157.6381 0009913 229.6088 130.4211 14.12727209597576 1 26536U 00055A 12116.76943450 -.00000126 00000-0 -43060-4 0 7234 2 26536 99.0988 158.0694 0009929 228.1971 131.8351 14.12726880597630 1 26536U 00055A 12117.19438042 -.00000040 00000-0 33662-5 0 7241 2 26536 99.0985 158.5011 0009945 227.0550 132.9813 14.12727334597690 1 26536U 00055A 12117.54850139 -.00000038 00000-0 44086-5 0 7255 2 26536 99.0984 158.8608 0009970 225.8524 134.1839 14.12727433597747 1 26536U 00055A 12118.39839277 .00000151 00000-0 10601-3 0 7258 2 26536 99.0981 159.7237 0010016 223.4106 136.6337 14.12728551597860 1 26536U 00055A 12118.75251276 .00000183 00000-0 12373-3 0 7269 2 26536 99.0981 160.0833 0010035 222.1383 137.9022 14.12728819597919 1 26536U 00055A 12119.17745800 .00000327 00000-0 20113-3 0 7268 2 26536 99.0979 160.5151 0010078 221.0397 139.0049 14.12729771597970 1 26536U 00055A 12119.95652261 .00000401 00000-0 24073-3 0 7286 2 26536 99.0981 161.3065 0010094 218.5834 141.4603 14.12730695598084 1 26536U 00055A 12120.31064351 .00000499 00000-0 29354-3 0 7278 2 26536 99.0981 161.6662 0010142 217.5950 142.4540 14.12731545598134 1 26536U 00055A 12120.66476338 .00000446 00000-0 26507-3 0 7288 2 26536 99.0984 162.0264 0010153 216.7923 143.2549 14.12731705598184 1 26536U 00055A 12121.37300435 .00000385 00000-0 23246-3 0 7280 2 26536 99.0987 162.7462 0010216 214.5501 145.5003 14.12731976598283 1 26536U 00055A 12121.37300435 .00000385 00000-0 23246-3 0 7291 2 26536 99.0987 162.7462 0010216 214.5501 145.5003 14.12731976598283 1 26536U 00055A 12121.72712478 .00000338 00000-0 20706-3 0 7302 2 26536 99.0988 163.1060 0010168 213.7800 146.2715 14.12732043598332 1 26536U 00055A 12122.43536624 .00000210 00000-0 13799-3 0 7301 2 26536 99.0989 163.8255 0010213 211.3550 148.7017 14.12731838598437 1 26536U 00055A 12122.86031063 .00000090 00000-0 73454-4 0 7317 2 26536 99.0995 164.2575 0010212 210.2731 149.7816 14.12731276598492 1 26536U 00055A 12123.21443187 -.00000004 00000-0 22935-4 0 7315 2 26536 99.0990 164.6175 0010165 209.3125 150.7461 14.12730968598541 1 26536U 00055A 12123.56855283 -.00000041 00000-0 25944-5 0 7323 2 26536 99.0992 164.9773 0010206 208.1936 151.8689 14.12730914598593 1 26536U 00055A 12124.34761867 -.00000122 00000-0 -40921-4 0 7326 2 26536 99.0990 165.7688 0010161 206.0521 154.0138 14.12730424598705 1 26536U 00055A 12124.34761867 -.00000122 00000-0 -40921-4 0 7337 2 26536 99.0990 165.7688 0010161 206.0521 154.0138 14.12730424598705 1 26536U 00055A 12124.77256365 -.00000158 00000-0 -60208-4 0 7346 2 26536 99.0991 166.2005 0010238 204.5100 155.5584 14.12730187598769 1 26536U 00055A 12125.19750871 -.00000114 00000-0 -36364-4 0 7342 2 26536 99.0988 166.6322 0010196 203.5202 156.5515 14.12730366598827 1 26536U 00055A 12125.55162931 -.00000126 00000-0 -43197-4 0 7352 2 26536 99.0989 166.9920 0010241 202.2829 157.7907 14.12730336598877 1 26536U 00055A 12126.40151870 .00000064 00000-0 59251-4 0 7354 2 26536 99.0985 167.8551 0010250 200.0136 160.0658 14.12731268598998 1 26536U 00055A 12126.82646295 .00000107 00000-0 82495-4 0 7365 2 26536 99.0983 168.2868 0010326 198.6235 161.4565 14.12731484599058 1 26536U 00055A 12127.18058338 .00000228 00000-0 14769-3 0 7362 2 26536 99.0978 168.6466 0010322 197.8440 162.2406 14.12732332599107 1 26536U 00055A 12127.95964692 .00000307 00000-0 19049-3 0 7382 2 26536 99.0976 169.4380 0010359 195.4524 164.6324 14.12733100599217 1 26536U 00055A 12128.31376720 .00000428 00000-0 25557-3 0 7376 2 26536 99.0973 169.7978 0010362 194.5769 165.5138 14.12734049599266 1 26536U 00055A 12128.73871038 .00000425 00000-0 25353-3 0 7386 2 26536 99.0974 170.2295 0010363 193.3976 166.6918 14.12734408599328 1 26536U 00055A 12129.94271688 .00000370 00000-0 22395-3 0 7398 2 26536 99.0971 171.4525 0010399 190.1749 169.9176 14.12735176599499 1 26536U 00055A 12129.94271688 .00000370 00000-0 22395-3 0 7400 2 26536 99.0971 171.4525 0010399 190.1749 169.9176 14.12735176599499 1 26536U 00055A 12130.29683723 .00000311 00000-0 19210-3 0 7404 2 26536 99.0969 171.8124 0010438 189.0689 171.0287 14.12735184599541 1 26536U 00055A 12130.72178091 .00000215 00000-0 14085-3 0 7418 2 26536 99.0968 172.2440 0010400 188.0610 172.0373 14.12734952599604 1 26536U 00055A 12131.43002104 .00000063 00000-0 58832-4 0 7418 2 26536 99.0968 172.9637 0010434 185.8969 174.2070 14.12734531599700 1 26536U 00055A 12131.85496502 .00000069 00000-0 61844-4 0 7427 2 26536 99.0971 173.3953 0010420 184.6112 175.4959 14.12734591599763 1 26536U 00055A 12132.20908490 -.00000036 00000-0 54815-5 0 7427 2 26536 99.0970 173.7551 0010401 183.4542 176.6543 14.12734219599818 1 26536U 00055A 12132.63402909 -.00000082 00000-0 -19457-4 0 7433 2 26536 99.0972 174.1868 0010382 182.3236 177.7883 14.12734026599873 1 26536U 00055A 12133.41309302 -.00000134 00000-0 -47552-4 0 7438 2 26536 99.0967 174.9776 0010478 179.9732 180.1429 14.12733694599988 1 26536U 00055A 12133.76721331 -.00000127 00000-0 -43540-4 0 7442 2 26536 99.0967 175.3373 0010473 178.8693 181.2501 14.12733647600035 1 26536U 00055A 12134.54627693 -.00000033 00000-0 72425-5 0 7445 2 26536 99.0967 176.1284 0010538 176.6179 183.5083 14.12734244600148 1 26536U 00055A 12135.32534042 .00000073 00000-0 64133-4 0 7457 2 26536 99.0969 176.9199 0010604 174.5622 185.5697 14.12734797600255 1 26536U 00055A 12135.75028349 .00000157 00000-0 10954-3 0 7467 2 26536 99.0973 177.3517 0010660 173.1538 186.9800 14.12735354600310 1 26536U 00055A 12136.88346390 .00000400 00000-0 24002-3 0 7483 2 26536 99.0970 178.5028 0010736 170.1748 189.9628 14.12737312600475 1 26536U 00055A 12137.30840693 .00000436 00000-0 25967-3 0 7475 2 26536 99.0969 178.9345 0010822 169.1484 190.9939 14.12737897600532 1 26536U 00055A 12137.73334931 .00000394 00000-0 23714-3 0 7487 2 26536 99.0972 179.3662 0010818 167.9506 192.1918 14.12738078600598 1 26536U 00055A 12138.15829213 .00000381 00000-0 22996-3 0 7483 2 26536 99.0972 179.7980 0010848 166.7676 193.3772 14.12738295600652 1 26536U 00055A 12138.86653004 .00000239 00000-0 15361-3 0 7507 2 26536 99.0975 180.5174 0010918 164.9088 195.2387 14.12738048600755 1 26536U 00055A 12139.29147319 .00000198 00000-0 13137-3 0 7493 2 26536 99.0975 180.9491 0010892 163.6348 196.5175 14.12738168600816 1 26536U 00055A 12139.64559210 .00000088 00000-0 71969-4 0 7507 2 26536 99.0975 181.3087 0010864 162.7980 197.3546 14.12737809600860 1 26536U 00055A 12140.42465447 .00000014 00000-0 32091-4 0 7505 2 26536 99.0974 182.0999 0010841 160.3812 199.7769 14.12737573600975 1 26536U 00055A 12140.42465447 .00000014 00000-0 32091-4 0 7516 2 26536 99.0974 182.0999 0010841 160.3812 199.7769 14.12737573600975 1 26536U 00055A 12140.84959748 .00000002 00000-0 25980-4 0 7521 2 26536 99.0972 182.5311 0010865 159.2821 200.8786 14.12737495601033 1 26536U 00055A 12141.20371665 -.00000057 00000-0 -56360-5 0 7527 2 26536 99.0972 182.8909 0010879 158.2554 201.9073 14.12737269601081 1 26536U 00055A 12141.55783591 -.00000050 00000-0 -22784-5 0 7537 2 26536 99.0972 183.2505 0010889 157.1532 203.0136 14.12737409601138 1 26536U 00055A 12142.33689820 -.00000041 00000-0 29790-5 0 7537 2 26536 99.0969 184.0417 0010873 155.1334 205.0386 14.12737379601243 1 26536U 00055A 12142.76184064 -.00000073 00000-0 -14426-4 0 7540 2 26536 99.0969 184.4733 0010914 154.0201 206.1517 14.12737220601305 1 26536U 00055A 12143.11595981 .00000068 00000-0 61471-4 0 7548 2 26536 99.0963 184.8329 0010910 153.1766 207.0013 14.12738053601357 1 26536U 00055A 12143.89502008 .00000210 00000-0 13790-3 0 7562 2 26536 99.0959 185.6238 0010913 150.9143 209.2636 14.12738923601460 1 26536U 00055A 12144.24913878 .00000296 00000-0 18400-3 0 7559 2 26536 99.0954 185.9835 0010953 150.2364 209.9463 14.12739615601513 1 26536U 00055A 12144.67408034 .00000398 00000-0 23921-3 0 7567 2 26536 99.0952 186.4148 0011046 148.9579 211.2276 14.12740528601579 1 26536U 00055A 12145.38231609 .00000496 00000-0 29209-3 0 7562 2 26536 99.0944 187.1340 0011100 147.2120 212.9758 14.12741628601673 1 26536U 00055A 12145.80725731 .00000430 00000-0 25660-3 0 7579 2 26536 99.0948 187.5658 0011125 146.0014 214.1853 14.12741665601737 1 26536U 00055A 12146.16137564 .00000434 00000-0 25878-3 0 7575 2 26536 99.0945 187.9257 0011124 145.0607 215.1300 14.12742037601786 1 26536U 00055A 12146.94043480 .00000328 00000-0 20145-3 0 7590 2 26536 99.0952 188.7169 0011163 143.0388 217.1534 14.12742113601890 1 26536U 00055A 12147.29455304 .00000242 00000-0 15499-3 0 7581 2 26536 99.0952 189.0765 0011199 142.1181 218.0769 14.12741954601944 1 26536U 00055A 12147.71949469 .00000186 00000-0 12496-3 0 7590 2 26536 99.0951 189.5084 0011143 140.7381 219.4583 14.12741902602007 1 26536U 00055A 12148.42773144 -.00000024 00000-0 12022-4 0 7592 2 26536 99.0955 190.2280 0011222 138.8092 221.3919 14.12741081602107 1 26536U 00055A 12148.85267334 -.00000069 00000-0 -12645-4 0 7601 2 26536 99.0955 190.6596 0011298 137.8467 222.3570 14.12740837602167 1 26536U 00055A 12149.20679161 -.00000117 00000-0 -38503-4 0 7601 2 26536 99.0957 191.0191 0011315 136.8314 223.3737 14.12740568602218 1 26536U 00055A 12149.63173367 -.00000174 00000-0 -68963-4 0 7612 2 26536 99.0959 191.4509 0011308 135.7529 224.4549 14.12740294602270 1 26536U 00055A 12150.33996989 -.00000112 00000-0 -35366-4 0 7617 2 26536 99.0960 192.1702 0011342 134.0631 226.1480 14.12740474602373 1 26536U 00055A 12150.76491168 -.00000134 00000-0 -47443-4 0 7627 2 26536 99.0962 192.6019 0011374 132.9980 227.2145 14.12740292602435 1 26536U 00055A 12151.11902998 -.00000011 00000-0 18777-4 0 7626 2 26536 99.0958 192.9616 0011355 132.1114 228.1058 14.12740933602486 1 26536U 00055A 12151.89808903 .00000085 00000-0 70738-4 0 7649 2 26536 99.0958 193.7527 0011366 129.8824 230.3361 14.12741473602593 1 26536U 00055A 12152.25220672 .00000235 00000-0 15151-3 0 7634 2 26536 99.0957 194.1122 0011377 129.2712 230.9519 14.12742445602647 1 26536U 00055A 12152.60632344 .00000264 00000-0 16702-3 0 7642 2 26536 99.0959 194.4718 0011433 128.3528 231.8690 14.12742902602694 1 26536U 00055A 12152.81880403 .00000084 00000-0 45023-4 0 7645 2 26536 99.0953 194.6888 0011254 127.0261 233.2422 14.12741907602726 1 26536U 00055A 12153.38538143 .00000452 00000-0 26838-3 0 7640 2 26536 99.0956 195.2628 0011432 126.4124 233.8125 14.12744297602807 1 26536U 00055A 12153.73949819 .00000375 00000-0 22646-3 0 7653 2 26536 99.0960 195.6227 0011415 125.3846 234.8377 14.12744218602859 1 26536U 00055A 12154.51855612 .00000416 00000-0 24900-3 0 7658 2 26536 99.0957 196.4139 0011396 123.3248 236.9023 14.12745124602968 1 26536U 00055A 12154.51855612 .00000416 00000-0 24900-3 0 7669 2 26536 99.0957 196.4139 0011396 123.3248 236.9023 14.12745124602968 1 26536U 00055A 12154.87267294 .00000283 00000-0 17717-3 0 7672 2 26536 99.0959 196.7735 0011387 122.3267 237.8967 14.12744583603017 1 26536U 00055A 12155.22679086 .00000204 00000-0 13441-3 0 7671 2 26536 99.0960 197.1331 0011376 121.2954 238.9331 14.12744555603066 1 26536U 00055A 12155.65173142 .00000212 00000-0 13917-3 0 7688 2 26536 99.0960 197.5647 0011389 120.1399 240.0910 14.12744870603129 1 26536U 00055A 12156.35996616 .00000033 00000-0 42329-4 0 7686 2 26536 99.0963 198.2843 0011387 118.0943 242.1375 14.12744151603228 1 26536U 00055A 12156.71408346 .00000008 00000-0 29205-4 0 7695 2 26536 99.0962 198.6438 0011374 117.0692 243.1634 14.12744056603275 1 26536U 00055A 12157.49314167 -.00000033 00000-0 68414-5 0 7693 2 26536 99.0961 199.4349 0011389 114.8228 245.4129 14.12743925603380 1 26536U 00055A 12157.91808236 -.00000045 00000-0 76452-6 0 7702 2 26536 99.0962 199.8664 0011403 113.7964 246.4401 14.12743816603447 1 26536U 00055A 12158.27219968 -.00000010 00000-0 19134-4 0 7704 2 26536 99.0962 200.2262 0011379 112.8053 247.4339 14.12744091603491 1 26536U 00055A 12158.62631653 -.00000019 00000-0 14501-4 0 7715 2 26536 99.0963 200.5858 0011397 111.9339 248.3048 14.12744101603548 1 26536U 00055A 12159.33455087 .00000067 00000-0 61062-4 0 7715 2 26536 99.0963 201.3053 0011414 110.1841 250.0584 14.12744583603643 1 26536U 00055A 12159.33455087 .00000067 00000-0 61062-4 0 7726 2 26536 99.0963 201.3053 0011414 110.1841 250.0584 14.12744583603643 1 26536U 00055A 12159.75949079 .00000055 00000-0 54641-4 0 7734 2 26536 99.0962 201.7368 0011486 109.3731 250.8689 14.12744631603707 1 26536U 00055A 12160.11360769 .00000165 00000-0 11345-3 0 7734 2 26536 99.0956 202.0966 0011466 108.4371 251.8078 14.12745358603751 1 26536U 00055A 12160.89266369 .00000246 00000-0 15729-3 0 7752 2 26536 99.0953 202.8875 0011485 106.4132 253.8303 14.12746117603868 1 26536U 00055A 12161.24678029 .00000371 00000-0 22454-3 0 7743 2 26536 99.0949 203.2472 0011462 105.8138 254.4335 14.12746998603910 1 26536U 00055A 12161.60089593 .00000358 00000-0 21763-3 0 7753 2 26536 99.0950 203.6069 0011464 104.8330 255.4118 14.12747323603961 1 26536U 00055A 12162.37995139 .00000497 00000-0 29259-3 0 7752 2 26536 99.0944 204.3980 0011471 102.9283 257.3191 14.12748658604075 1 26536U 00055A 12162.73406691 .00000411 00000-0 24613-3 0 7768 2 26536 99.0947 204.7579 0011439 101.7464 258.4968 14.12748518604123 1 26536U 00055A 12163.51312260 .00000348 00000-0 21231-3 0 7765 2 26536 99.0942 205.5489 0011464 99.6349 260.6116 14.12748915604235 1 26536U 00055A 12163.86723849 .00000222 00000-0 14408-3 0 7772 2 26536 99.0944 205.9086 0011442 98.6651 261.5782 14.12748389604284 1 26536U 00055A 12164.22135515 .00000117 00000-0 87917-4 0 7779 2 26536 99.0942 206.2683 0011461 97.4551 262.7900 14.12748077604331 1 26536U 00055A 12164.64629489 .00000023 00000-0 37403-4 0 7785 2 26536 99.0943 206.6999 0011428 96.3220 263.9245 14.12747788604399 1 26536U 00055A 12165.35452755 -.00000064 00000-0 -96898-5 0 7785 2 26536 99.0945 207.4188 0011454 94.2079 266.0390 14.12747420604497 1 26536U 00055A 12165.35452755 -.00000064 00000-0 -96898-5 0 7796 2 26536 99.0945 207.4188 0011454 94.2079 266.0390 14.12747420604497 1 26536U 00055A 12165.70864399 -.00000125 00000-0 -42758-4 0 7801 2 26536 99.0946 207.7785 0011453 93.3512 266.8963 14.12747112604543 1 26536U 00055A 12166.48769980 -.00000085 00000-0 -21010-4 0 7800 2 26536 99.0948 208.5696 0011445 91.2176 269.0317 14.12747282604657 1 26536U 00055A 12166.91263908 -.00000073 00000-0 -14790-4 0 7812 2 26536 99.0951 209.0009 0011449 90.1300 270.1177 14.12747202604712 1 26536U 00055A 12167.26675545 -.00000065 00000-0 -10217-4 0 7816 2 26536 99.0948 209.3603 0011448 89.3223 270.9268 14.12747275604768 1 26536U 00055A 12167.62087149 -.00000035 00000-0 57002-5 0 7824 2 26536 99.0948 209.7198 0011465 88.5026 271.7476 14.12747516604816 1 26536U 00055A 12168.32910345 .00000128 00000-0 93600-4 0 7820 2 26536 99.0947 210.4388 0011429 86.6586 273.5932 14.12748409604915 1 26536U 00055A 12168.75404174 .00000178 00000-0 12079-3 0 7831 2 26536 99.0951 210.8705 0011455 85.7325 274.5167 14.12748824604975 1 26536U 00055A 12169.10815727 .00000279 00000-0 17497-3 0 7832 2 26536 99.0946 211.2299 0011424 85.0099 275.2410 14.12749601605029 1 26536U 00055A 12170.45379432 .00000472 00000-0 27865-3 0 7846 2 26536 99.0942 212.5963 0011399 81.8620 278.3849 14.12751607605212 1 26536U 00055A 12170.45379432 .00000472 00000-0 27865-3 0 7857 2 26536 99.0942 212.5963 0011399 81.8620 278.3849 14.12751607605212 1 26536U 00055A 12170.80790925 .00000398 00000-0 23916-3 0 7861 2 26536 99.0946 212.9560 0011393 81.1258 279.1183 14.12751478605268 1 26536U 00055A 12171.23284769 .00000435 00000-0 25921-3 0 7863 2 26536 99.0941 213.3875 0011387 79.7558 280.4908 14.12752110605327 1 26536U 00055A 12171.58696236 .00000326 00000-0 20027-3 0 7879 2 26536 99.0941 213.7471 0011356 78.6253 281.6182 14.12751975605379 1 26536U 00055A 12172.36601585 .00000183 00000-0 12310-3 0 7876 2 26536 99.0941 214.5382 0011348 76.8901 283.3520 14.12751626605480 1 26536U 00055A 12172.72013117 .00000100 00000-0 78448-4 0 7889 2 26536 99.0941 214.8979 0011327 76.0588 284.1831 14.12751362605532 1 26536U 00055A 12173.49918528 -.00000044 00000-0 95991-6 0 7886 2 26536 99.0938 215.6889 0011363 74.0114 286.2308 14.12750791605649 1 26536U 00055A 12173.85330050 -.00000085 00000-0 -20798-4 0 7892 2 26536 99.0939 216.0484 0011368 73.1414 287.0990 14.12750514605698 1 26536U 00055A 12174.27823910 -.00000144 00000-0 -52958-4 0 7890 2 26536 99.0937 216.4800 0011369 71.9631 288.2772 14.12750239605752 1 26536U 00055A 12174.27823910 -.00000144 00000-0 -52958-4 0 7902 2 26536 99.0937 216.4800 0011369 71.9631 288.2772 14.12750239605752 1 26536U 00055A 12174.63235457 -.00000177 00000-0 -70292-4 0 7913 2 26536 99.0939 216.8397 0011364 71.0843 289.1563 14.12750077605804 1 26536U 00055A 12175.34058515 -.00000072 00000-0 -14153-4 0 7918 2 26536 99.0940 217.5588 0011358 69.0996 291.1410 14.12750488605906 1 26536U 00055A 12175.34058515 -.00000072 00000-0 -14153-4 0 7929 2 26536 99.0940 217.5588 0011358 69.0996 291.1410 14.12750488605906 1 26536U 00055A 12175.76552307 -.00000070 00000-0 -12854-4 0 7938 2 26536 99.0938 217.9899 0011347 68.2670 291.9705 14.12750411605967 1 26536U 00055A 12176.47375312 .00000028 00000-0 39669-4 0 7930 2 26536 99.0934 218.7091 0011338 66.1615 294.0757 14.12751101606062 1 26536U 00055A 12176.47375312 .00000028 00000-0 39669-4 0 7941 2 26536 99.0934 218.7091 0011338 66.1615 294.0757 14.12751101606062 1 26536U 00055A 12176.82786795 .00000060 00000-0 57067-4 0 7950 2 26536 99.0930 219.0683 0011350 65.1301 295.1039 14.12751170606111 1 26536U 00055A 12177.25280622 .00000223 00000-0 14503-3 0 7954 2 26536 99.0926 219.4999 0011301 63.8009 296.4374 14.12752247606174 1 26536U 00055A 12177.60691997 .00000219 00000-0 14255-3 0 7964 2 26536 99.0929 219.8597 0011284 63.0684 297.1652 14.12752485606223 1 26536U 00055A 12178.31514890 .00000396 00000-0 23795-3 0 7964 2 26536 99.0926 220.5787 0011276 60.8322 299.3999 14.12753757606327 1 26536U 00055A 12178.31514890 .00000396 00000-0 23795-3 0 7975 2 26536 99.0926 220.5787 0011276 60.8322 299.3999 14.12753757606327 1 26536U 00055A 12178.74008567 .00000335 00000-0 20496-3 0 7980 2 26536 99.0929 221.0105 0011236 60.0264 300.2016 14.12753814606385 1 26536U 00055A 12179.51913693 .00000363 00000-0 22040-3 0 7989 2 26536 99.0927 221.8013 0011199 57.8933 302.3317 14.12754535606494 1 26536U 00055A 12179.87325121 .00000236 00000-0 15162-3 0 7998 2 26536 99.0931 222.1609 0011157 57.2595 302.9616 14.12753991606545 1 26536U 00055A 12180.58148039 .00000157 00000-0 10910-3 0 8000 2 26536 99.0928 222.8801 0011156 55.0560 305.1661 14.12754215606645 1 26536U 00055A 12180.79395891 .00000226 00000-0 12176-3 0 7993 2 26536 99.0937 223.0977 0011293 53.6994 306.5692 14.12754079606679 1 26536U 00055A 12180.86478181 .00000227 00000-0 12234-3 0 8004 2 26536 99.0936 223.1696 0011294 53.5191 306.7494 14.12754111606686 1 26536U 00055A 12181.36053220 -.00000009 00000-0 20069-4 0 8008 2 26536 99.0931 223.6716 0011217 52.6837 307.5332 14.12753520606752 1 26536U 00055A 12181.71464704 -.00000087 00000-0 -22145-4 0 8015 2 26536 99.0932 224.0314 0011240 51.3742 308.8414 14.12753091606803 1 26536U 00055A 12182.49369983 -.00000170 00000-0 -66510-4 0 8011 2 26536 99.0937 224.8222 0011269 49.4103 310.8053 14.12752603606916 1 26536U 00055A 12182.49369983 -.00000170 00000-0 -66510-4 0 8022 2 26536 99.0937 224.8222 0011269 49.4103 310.8053 14.12752603606916 1 26536U 00055A 12182.84781434 -.00000173 00000-0 -68482-4 0 8034 2 26536 99.0940 225.1819 0011261 48.4975 311.7155 14.12752421606960 1 26536U 00055A 12183.27274047 -.00000157 00000-0 -59867-4 0 8038 2 26536 99.0938 225.6133 0011246 47.3920 312.8212 14.12752507607021 1 26536U 00055A 12183.62685481 -.00000165 00000-0 -64283-4 0 8043 2 26536 99.0939 225.9729 0011240 46.3870 313.8239 14.12752462607078 1 26536U 00055A 12184.33508391 -.00000027 00000-0 10438-4 0 8045 2 26536 99.0937 226.6919 0011236 44.3974 315.8128 14.12753091607172 1 26536U 00055A 12184.33508391 -.00000027 00000-0 10438-4 0 8056 2 26536 99.0937 226.6919 0011236 44.3974 315.8128 14.12753091607172 1 26536U 00055A 12184.76002062 .00000059 00000-0 56653-4 0 8061 2 26536 99.0938 227.1235 0011255 43.3797 316.8267 14.12753480607237 1 26536U 00055A 12185.46824863 .00000176 00000-0 11971-3 0 8063 2 26536 99.0934 227.8424 0011180 41.5242 318.6794 14.12754357607332 1 26536U 00055A 12185.89318521 .00000217 00000-0 14168-3 0 8077 2 26536 99.0934 228.2739 0011140 40.7697 319.4311 14.12754691607398 1 26536U 00055A 12186.24729913 .00000329 00000-0 20184-3 0 8077 2 26536 99.0932 228.6334 0011075 39.8432 320.3590 14.12755557607442 1 26536U 00055A 12186.60141215 .00000314 00000-0 19364-3 0 8083 2 26536 99.0929 228.9927 0011044 39.0476 321.1501 14.12755867607495 1 26536U 00055A 12187.38046185 .00000415 00000-0 24839-3 0 8084 2 26536 99.0922 229.7835 0010976 37.1864 323.0077 14.12756913607603 1 26536U 00055A 12187.38046185 .00000415 00000-0 24839-3 0 8095 2 26536 99.0922 229.7835 0010976 37.1864 323.0077 14.12756913607603 1 26536U 00055A 12187.73457507 .00000372 00000-0 22494-3 0 8107 2 26536 99.0924 230.1432 0010970 36.1688 324.0215 14.12757010607650 1 26536U 00055A 12188.51362460 .00000359 00000-0 21804-3 0 8106 2 26536 99.0924 230.9343 0010888 34.2913 325.8963 14.12757615607769 1 26536U 00055A 12188.86773778 .00000242 00000-0 15509-3 0 8119 2 26536 99.0926 231.2940 0010874 33.2405 326.9409 14.12757090607818 1 26536U 00055A 12189.22185194 .00000111 00000-0 84371-4 0 8118 2 26536 99.0924 231.6538 0010907 32.3541 327.8271 14.12756671607867 1 26536U 00055A 12189.64678865 .00000008 00000-0 29243-4 0 8129 2 26536 99.0925 232.0852 0010903 30.9185 329.2613 14.12756320607920 1 26536U 00055A 12190.35501657 -.00000083 00000-0 -20071-4 0 8128 2 26536 99.0924 232.8044 0010895 29.1444 331.0336 14.12755908608024 1 26536U 00055A 12190.35501657 -.00000083 00000-0 -20071-4 0 8139 2 26536 99.0924 232.8044 0010895 29.1444 331.0336 14.12755908608024 1 26536U 00055A 12190.70913021 -.00000161 00000-0 -61904-4 0 8148 2 26536 99.0924 233.1638 0010890 27.9854 332.1890 14.12755503608076 1 26536U 00055A 12191.48818056 -.00000124 00000-0 -41831-4 0 8142 2 26536 99.0923 233.9546 0010853 25.8972 334.2746 14.12755609608180 1 26536U 00055A 12191.84229421 -.00000133 00000-0 -46992-4 0 8158 2 26536 99.0925 234.3142 0010841 24.8542 335.3142 14.12755412608238 1 26536U 00055A 12192.26723095 -.00000017 00000-0 15502-4 0 8154 2 26536 99.0922 234.7458 0010789 23.5518 336.6185 14.12756027608299 1 26536U 00055A 12192.69216657 .00000019 00000-0 35235-4 0 8169 2 26536 99.0922 235.1772 0010768 22.5449 337.6204 14.12756274608356 1 26536U 00055A 12193.40039298 .00000182 00000-0 12270-3 0 8167 2 26536 99.0916 235.8960 0010728 20.4705 339.6915 14.12757331608450 1 26536U 00055A 12193.75450587 .00000203 00000-0 13407-3 0 8171 2 26536 99.0920 236.2559 0010715 19.5940 340.5646 14.12757593608508 1 26536U 00055A 12194.17944165 .00000321 00000-0 19737-3 0 8171 2 26536 99.0920 236.6871 0010663 18.3181 341.8401 14.12758404608566 1 26536U 00055A 12194.95848935 .00000352 00000-0 21443-3 0 8198 2 26536 99.0920 237.4782 0010642 16.2483 343.9013 14.12759077608676 1 26536U 00055A 12195.31260250 .00000430 00000-0 25643-3 0 8189 2 26536 99.0919 237.8376 0010602 15.1955 344.9558 14.12759815608726 1 26536U 00055A 12195.66671466 .00000398 00000-0 23925-3 0 8197 2 26536 99.0923 238.1973 0010598 14.2386 345.9078 14.12759981608777 1 26536U 00055A 12196.37494036 .00000302 00000-0 18721-3 0 8195 2 26536 99.0925 238.9161 0010565 12.5459 347.5970 14.12760026608874 1 26536U 00055A 12196.79987554 .00000194 00000-0 12941-3 0 8202 2 26536 99.0927 239.3476 0010588 11.2104 348.9264 14.12759619608932 1 26536U 00055A 12197.15398899 .00000140 00000-0 10029-3 0 8207 2 26536 99.0929 239.7072 0010578 10.3221 349.8168 14.12759613608981 1 26536U 00055A 12197.93303687 -.00000016 00000-0 16181-4 0 8225 2 26536 99.0933 240.4982 0010536 8.1545 351.9755 14.12758943609097 1 26536U 00055A 12198.28715057 -.00000094 00000-0 -25970-4 0 8214 2 26536 99.0933 240.8576 0010528 7.1956 352.9356 14.12758665609141 1 26536U 00055A 12198.64126369 -.00000138 00000-0 -49291-4 0 8228 2 26536 99.0933 241.2169 0010522 6.3050 353.8250 14.12758463609198 1 26536U 00055A 12199.42031210 -.00000107 00000-0 -32830-4 0 8222 2 26536 99.0928 242.0076 0010578 3.9730 356.1515 14.12758571609300 1 26536U 00055A 12199.77442525 -.00000214 00000-0 -90556-4 0 8234 2 26536 99.0921 242.3668 0010441 3.4274 356.6935 14.12757808609358 1 26536U 00055A 12200.19936174 -.00000134 00000-0 -47222-4 0 8234 2 26536 99.0916 242.7982 0010391 2.0671 358.0576 14.12758208609414 1 26536U 00055A 12200.90758680 -.00000001 00000-0 24326-4 0 8251 2 26536 99.0913 243.5168 0010365 0.1340 359.9837 14.12758808609516 1 26536U 00055A 12201.26169965 .00000193 00000-0 12896-3 0 8252 2 26536 99.0911 243.8763 0010318 358.8526 1.2681 14.12759997609564 1 26536U 00055A 12201.68663361 .00000256 00000-0 16254-3 0 8260 2 26536 99.0911 244.3075 0010338 357.8181 2.2948 14.12760478609624 1 26536U 00055A 12202.39485839 .00000368 00000-0 22289-3 0 8260 2 26536 99.0905 245.0263 0010351 355.4739 4.6361 14.12761501609726 1 26536U 00055A 12202.74897016 .00000388 00000-0 23374-3 0 8272 2 26536 99.0908 245.3860 0010398 354.4554 5.6501 14.12761878609779 1 26536U 00055A 12203.17390471 .00000521 00000-0 30543-3 0 8278 2 26536 99.0904 245.8174 0010361 353.1271 6.9777 14.12762844609830 1 26536U 00055A 12203.95295009 .00000389 00000-0 23428-3 0 8293 2 26536 99.0903 246.6082 0010346 350.8416 9.2519 14.12762909609948 1 26536U 00055A 12204.30706290 .00000339 00000-0 20756-3 0 8287 2 26536 99.0900 246.9680 0010357 350.0325 10.0624 14.12762951609994 1 26536U 00055A 12204.30706290 .00000339 00000-0 20756-3 0 8298 2 26536 99.0900 246.9680 0010357 350.0325 10.0624 14.12762951609994 1 26536U 00055A 12204.66117511 .00000150 00000-0 10554-3 0 8307 2 26536 99.0902 247.3277 0010394 348.5036 11.5880 14.12762311610043 1 26536U 00055A 12205.36939950 .00000139 00000-0 99783-4 0 8303 2 26536 99.0908 248.0474 0010349 346.5212 13.5674 14.12762512610147 1 26536U 00055A 12205.79433407 .00000006 00000-0 28126-4 0 8313 2 26536 99.0909 248.4788 0010352 345.2126 14.8715 14.12761935610209 1 26536U 00055A 12206.14844677 -.00000059 00000-0 -71202-5 0 8312 2 26536 99.0908 248.8383 0010368 344.3049 15.7792 14.12761732610259 1 26536U 00055A 12206.92749384 -.00000166 00000-0 -64566-4 0 8332 2 26536 99.0911 249.6292 0010247 342.0304 18.0479 14.12761029610365 1 26536U 00055A 12207.21078426 -.00000192 00000-0 -78541-4 0 8323 2 26536 99.0909 249.9167 0010248 341.2501 18.8289 14.12760867610408 1 26536U 00055A 12207.63571928 -.00000241 00000-0 -10469-3 0 8334 2 26536 99.0910 250.3479 0010188 339.9808 20.0963 14.12760551610469 1 26536U 00055A 12208.41476585 -.00000090 00000-0 -23870-4 0 8337 2 26536 99.0907 251.1387 0010169 337.6516 22.4214 14.12761274610572 1 26536U 00055A 12208.76887817 -.00000152 00000-0 -57197-4 0 8348 2 26536 99.0909 251.4984 0010145 336.5236 23.5464 14.12760919610621 1 26536U 00055A 12209.19381328 .00000023 00000-0 37444-4 0 8340 2 26536 99.0906 251.9296 0010137 335.1441 24.9282 14.12761779610687 1 26536U 00055A 12209.90203632 .00000054 00000-0 53938-4 0 8362 2 26536 99.0912 252.6488 0010104 333.2701 26.7918 14.12761979610786 1 26536U 00055A 12210.25614912 .00000198 00000-0 13158-3 0 8356 2 26536 99.0913 253.0080 0009996 331.8097 28.2579 14.12762871610837 1 26536U 00055A 12210.68108257 .00000221 00000-0 14373-3 0 8361 2 26536 99.0915 253.4397 0009980 330.5443 29.5177 14.12763236610898 1 26536U 00055A 12211.38930591 .00000302 00000-0 18746-3 0 8361 2 26536 99.0914 254.1586 0009973 328.5165 31.5420 14.12764071610998 1 26536U 00055A 12211.81423967 .00000294 00000-0 18337-3 0 8370 2 26536 99.0918 254.5903 0010031 327.3438 32.7106 14.12764276611055 1 26536U 00055A 12212.16835142 .00000329 00000-0 20189-3 0 8378 2 26536 99.0913 254.9497 0010036 326.3902 33.6633 14.12764662611102 1 26536U 00055A 12212.94739652 .00000238 00000-0 15312-3 0 8396 2 26536 99.0916 255.7404 0010023 324.1993 35.8470 14.12764651611217 1 26536U 00055A 12213.30150877 .00000213 00000-0 13960-3 0 8382 2 26536 99.0914 256.1000 0010006 323.1737 36.8748 14.12764789611264 1 26536U 00055A 12213.65562025 .00000172 00000-0 11719-3 0 8397 2 26536 99.0915 256.4593 0010028 322.1303 37.9162 14.12764825611316 1 26536U 00055A 12214.36384363 .00000082 00000-0 68824-4 0 8393 2 26536 99.0914 257.1782 0010019 320.2054 39.8373 14.12764601611413 1 26536U 00055A 12214.78877773 -.00000029 00000-0 92485-5 0 8406 2 26536 99.0915 257.6096 0009982 318.8705 41.1688 14.12764057611476 1 26536U 00055A 12215.49700179 -.00000059 00000-0 -68527-5 0 8404 2 26536 99.0916 258.3285 0009970 316.8825 43.1571 14.12764003611578 1 26536U 00055A 12215.92193579 -.00000090 00000-0 -23579-4 0 8415 2 26536 99.0915 258.7596 0009971 315.5213 44.5143 14.12763722611638 1 26536U 00055A 12216.27604791 -.00000084 00000-0 -20151-4 0 8413 2 26536 99.0913 259.1191 0009978 314.4473 45.5895 14.12763824611688 1 26536U 00055A 12216.70098186 -.00000096 00000-0 -26969-4 0 8423 2 26536 99.0914 259.5504 0009966 313.2318 46.8021 14.12763749611741 1 26536U 00055A 12217.40920489 .00000017 00000-0 33940-4 0 8429 2 26536 99.0911 260.2694 0009933 310.7840 49.2478 14.12764400611842 1 26536U 00055A 12217.83413875 .00000052 00000-0 52664-4 0 8436 2 26536 99.0909 260.7008 0009939 309.7293 50.2995 14.12764507611900 1 26536U 00055A 12218.18825056 .00000222 00000-0 14447-3 0 8438 2 26536 99.0907 261.0601 0009931 308.2173 51.8151 14.12765495611957 1 26536U 00055A 12218.61318332 .00000211 00000-0 13845-3 0 8440 2 26536 99.0910 261.4916 0009891 306.7935 53.2340 14.12765763612010 1 26536U 00055A 12219.32140566 .00000345 00000-0 21036-3 0 8440 2 26536 99.0910 262.2106 0009902 304.5813 55.4446 14.12766805612114 1 26536U 00055A 12219.74633854 .00000355 00000-0 21600-3 0 8452 2 26536 99.0912 262.6421 0009855 303.2241 56.7993 14.12767227612174 1 26536U 00055A 12220.45456007 .00000445 00000-0 26465-3 0 8459 2 26536 99.0904 263.3608 0009889 301.2468 58.7740 14.12768290612270 1 26536U 00055A 12220.87949284 .00000387 00000-0 23301-3 0 8461 2 26536 99.0904 263.7921 0009862 299.9810 60.0359 14.12768280612335 1 26536U 00055A 12221.23360404 .00000335 00000-0 20493-3 0 8465 2 26536 99.0900 264.1518 0009858 299.0181 60.9992 14.12768317612383 1 26536U 00055A 12221.65853715 .00000284 00000-0 17756-3 0 8475 2 26536 99.0900 264.5831 0009856 297.7180 62.2990 14.12768456612441 1 26536U 00055A 12222.36675925 .00000107 00000-0 82514-4 0 8478 2 26536 99.0900 265.3020 0009855 296.1297 63.8834 14.12767867612541 1 26536U 00055A 12222.72087066 .00000041 00000-0 46732-4 0 8481 2 26536 99.0900 265.6614 0009850 294.9178 65.0957 14.12767573612591 1 26536U 00055A 12223.49991577 -.00000102 00000-0 -29983-4 0 8486 2 26536 99.0899 266.4518 0009837 293.0332 66.9801 14.12766989612708 1 26536U 00055A 12223.49991577 -.00000102 00000-0 -29983-4 0 8497 2 26536 99.0899 266.4518 0009837 293.0332 66.9801 14.12766989612708 1 26536U 00055A 12223.85402696 -.00000138 00000-0 -49224-4 0 8507 2 26536 99.0898 266.8110 0009826 291.8775 68.1335 14.12766632612750 1 26536U 00055A 12224.20813856 -.00000136 00000-0 -48638-4 0 8507 2 26536 99.0896 267.1703 0009851 291.0943 68.9183 14.12766690612806 1 26536U 00055A 12224.63307191 -.00000156 00000-0 -59330-4 0 8518 2 26536 99.0898 267.6015 0009827 289.6980 70.3136 14.12766577612861 1 26536U 00055A 12225.34129448 -.00000072 00000-0 -13927-4 0 8513 2 26536 99.0899 268.3202 0009824 287.5454 72.4665 14.12766878612963 1 26536U 00055A 12225.76622753 -.00000053 00000-0 -34867-5 0 8523 2 26536 99.0902 268.7515 0009754 285.8482 74.1625 14.12766986613026 1 26536U 00055A 12226.47444898 .00000143 00000-0 10180-3 0 8522 2 26536 99.0904 269.4702 0009796 283.6969 76.3133 14.12768148613127 1 26536U 00055A 12226.89938166 .00000182 00000-0 12266-3 0 8535 2 26536 99.0904 269.9015 0009760 282.2518 77.7558 14.12768394613180 1 26536U 00055A 12227.25349255 .00000291 00000-0 18151-3 0 8531 2 26536 99.0903 270.2610 0009788 280.9693 79.0411 14.12769182613239 1 26536U 00055A 12227.67842467 .00000263 00000-0 16667-3 0 8540 2 26536 99.0904 270.6923 0009783 279.6450 80.3615 14.12769357613293 1 26536U 00055A 12228.38664582 .00000381 00000-0 23020-3 0 8541 2 26536 99.0900 271.4112 0009782 277.4746 82.5340 14.12770466613394 1 26536U 00055A 12228.81157771 .00000314 00000-0 19399-3 0 8557 2 26536 99.0902 271.8427 0009771 276.1527 83.8506 14.12770343613459 1 26536U 00055A 12229.16568861 .00000284 00000-0 17767-3 0 8555 2 26536 99.0901 272.2023 0009772 275.0274 84.9781 14.12770453613508 1 26536U 00055A 12229.87390908 .00000253 00000-0 16127-3 0 8575 2 26536 99.0903 272.9212 0009755 272.9250 87.0782 14.12770736613608 1 26536U 00055A 12230.29884192 .00000203 00000-0 13417-3 0 8569 2 26536 99.0897 273.3529 0009744 271.9390 88.0656 14.12770782613666 1 26536U 00055A 12230.65295244 .00000079 00000-0 67122-4 0 8578 2 26536 99.0897 273.7122 0009775 270.8970 89.1063 14.12770335613719 1 26536U 00055A 12231.36117400 .00000004 00000-0 27056-4 0 8574 2 26536 99.0893 274.4311 0009740 268.7922 91.2126 14.12770104613817 1 26536U 00055A 12231.36117400 .00000004 00000-0 27056-4 0 8585 2 26536 99.0893 274.4311 0009740 268.7922 91.2126 14.12770104613817 1 26536U 00055A 12231.78610679 -.00000088 00000-0 -22685-4 0 8595 2 26536 99.0891 274.8620 0009759 267.7931 92.2100 14.12769631613873 1 26536U 00055A 12232.56515079 -.00000141 00000-0 -50918-4 0 8590 2 26536 99.0890 275.6527 0009750 265.2560 94.7504 14.12769405613985 1 26536U 00055A 12232.91926142 -.00000161 00000-0 -61862-4 0 8600 2 26536 99.0889 276.0118 0009753 264.2911 95.7130 14.12769080614038 1 26536U 00055A 12233.69830519 -.00000116 00000-0 -37359-4 0 8602 2 26536 99.0888 276.8024 0009744 261.8839 98.1236 14.12769357614146 1 26536U 00055A 12234.40652611 .00000050 00000-0 51975-4 0 8613 2 26536 99.0879 277.5206 0009788 259.7358 100.2729 14.12770209614247 1 26536U 00055A 12234.76063632 .00000061 00000-0 57521-4 0 8627 2 26536 99.0880 277.8799 0009781 258.8625 101.1443 14.12770280614296 1 26536U 00055A 12235.18556908 .00000197 00000-0 13068-3 0 8624 2 26536 99.0876 278.3111 0009839 257.1701 102.8415 14.12771139614354 1 26536U 00055A 12235.89378853 .00000257 00000-0 16316-3 0 8641 2 26536 99.0877 279.0297 0009810 254.9819 105.0254 14.12771750614458 1 26536U 00055A 12236.24789899 .00000408 00000-0 24449-3 0 8630 2 26536 99.0874 279.3893 0009861 253.7885 106.2244 14.12772820614503 1 26536U 00055A 12236.24789899 .00000408 00000-0 24449-3 0 8641 2 26536 99.0874 279.3893 0009861 253.7885 106.2244 14.12772820614503 1 26536U 00055A 12236.67283007 .00000383 00000-0 23092-3 0 8654 2 26536 99.0878 279.8209 0009864 252.4276 107.5816 14.12773069614567 1 26536U 00055A 12237.38105004 .00000398 00000-0 23931-3 0 8651 2 26536 99.0875 280.5392 0009882 250.1099 109.9017 14.12773694614668 1 26536U 00055A 12237.80598154 .00000311 00000-0 19229-3 0 8661 2 26536 99.0882 280.9707 0009908 248.5993 111.4100 14.12773492614727 1 26536U 00055A 12238.51420202 .00000201 00000-0 13328-3 0 8660 2 26536 99.0885 281.6891 0009894 246.4321 113.5816 14.12773451614821 1 26536U 00055A 12239.36406670 -.00000086 00000-0 -21333-4 0 8677 2 26536 99.0887 282.5513 0009843 244.3414 115.6718 14.12772187614940 1 26536U 00055A 12239.71817734 -.00000119 00000-0 -39272-4 0 8682 2 26536 99.0887 282.9105 0009866 243.0669 116.9491 14.12771966614995 1 26536U 00055A 12240.49722028 -.00000198 00000-0 -81932-4 0 8687 2 26536 99.0890 283.7008 0009840 240.8289 119.1896 14.12771480615104 1 26536U 00055A 12240.85133072 -.00000190 00000-0 -77240-4 0 8692 2 26536 99.0894 284.0600 0009828 239.8110 120.2078 14.12771290615156 1 26536U 00055A 12241.20544137 -.00000130 00000-0 -45015-4 0 8699 2 26536 99.0892 284.4196 0009880 238.6776 121.3463 14.12771673615202 1 26536U 00055A 12241.63037311 -.00000134 00000-0 -47101-4 0 8701 2 26536 99.0891 284.8507 0009845 237.8353 122.1861 14.12771619615261 1 26536U 00055A 12242.76352536 .00000003 00000-0 26291-4 0 8716 2 26536 99.0891 286.0006 0009926 234.1516 125.8729 14.12772260615424 1 26536U 00055A 12243.47174506 .00000203 00000-0 13391-3 0 8712 2 26536 99.0882 286.7190 0009991 232.0665 127.9624 14.12773555615525 1 26536U 00055A 12243.82585456 .00000243 00000-0 15553-3 0 8728 2 26536 99.0886 287.0787 0009977 230.9852 129.0433 14.12773870615570 1 26536U 00055A 12244.17996434 .00000381 00000-0 22967-3 0 8729 2 26536 99.0886 287.4380 0010076 229.7082 130.3254 14.12774858615625 1 26536U 00055A 12244.60489494 .00000398 00000-0 23918-3 0 8736 2 26536 99.0884 287.8693 0010060 228.6752 131.3568 14.12775422615682 1 26536U 00055A 12245.38393545 .00000449 00000-0 26647-3 0 8732 2 26536 99.0878 288.6598 0010085 226.4141 133.6197 14.12776248615795 1 26536U 00055A 12245.38393545 .00000449 00000-0 26647-3 0 8743 2 26536 99.0878 288.6598 0010085 226.4141 133.6197 14.12776248615795 1 26536U 00055A 12245.73804463 .00000355 00000-0 21566-3 0 8750 2 26536 99.0881 289.0192 0010126 225.4660 134.5665 14.12776051615843 1 26536U 00055A 12246.87119530 .00000143 00000-0 10171-3 0 8777 2 26536 99.0873 290.1691 0010121 221.7799 138.2573 14.12775665616006 1 26536U 00055A 12247.65023709 .00000043 00000-0 47771-4 0 8783 2 26536 99.0872 290.9595 0010053 219.6906 140.3539 14.12775541616117 1 26536U 00055A 12248.71256625 -.00000004 00000-0 22747-4 0 8791 2 26536 99.0868 292.0373 0010028 216.3252 143.7249 14.12775283616263 1 26536U 00055A 12249.91653856 -.00000037 00000-0 49316-5 0 8801 2 26536 99.0861 293.2583 0010003 213.0293 147.0237 14.12775173616435 1 26536U 00055A 12250.62475746 .00000020 00000-0 35567-4 0 8815 2 26536 99.0862 293.9767 0010066 210.8424 149.2167 14.12775729616531 1 26536U 00055A 12251.75790640 .00000240 00000-0 15401-3 0 8822 2 26536 99.0863 295.1261 0010161 207.3646 152.7000 14.12777218616695 1 26536U 00055A 12252.11201533 .00000344 00000-0 21014-3 0 8823 2 26536 99.0858 295.4854 0010233 206.3988 153.6696 14.12778020616747 1 26536U 00055A 12253.67009242 .00000379 00000-0 22893-3 0 8855 2 26536 99.0863 297.0664 0010341 202.1922 157.8789 14.12779545616968 1 26536U 00055A 12254.80324026 .00000210 00000-0 13794-3 0 8866 2 26536 99.0862 298.2160 0010364 198.8897 161.1865 14.12779435617128 1 26536U 00055A 12255.22817108 .00000112 00000-0 85038-4 0 8863 2 26536 99.0858 298.6472 0010276 197.6908 162.3884 14.12779205617180 1 26536U 00055A 12255.58228018 .00000045 00000-0 48962-4 0 8879 2 26536 99.0858 299.0065 0010284 196.7714 163.3118 14.12779077617231 1 26536U 00055A 12256.36132020 -.00000092 00000-0 -24842-4 0 8878 2 26536 99.0860 299.7969 0010250 194.4924 165.5947 14.12778308617347 1 26536U 00055A 12256.71542925 -.00000159 00000-0 -60861-4 0 8882 2 26536 99.0860 300.1559 0010251 193.5708 166.5181 14.12777962617391 1 26536U 00055A 12257.14036021 -.00000140 00000-0 -50560-4 0 8880 2 26536 99.0859 300.5871 0010222 192.4623 167.6304 14.12778012617455 1 26536U 00055A 12257.84857796 -.00000159 00000-0 -60584-4 0 8907 2 26536 99.0861 301.3056 0010289 190.2795 169.8155 14.12777708617551 1 26536U 00055A 12258.27350907 -.00000099 00000-0 -28669-4 0 8896 2 26536 99.0860 301.7365 0010311 189.1213 170.9796 14.12778024617618 1 26536U 00055A 12258.62761758 -.00000088 00000-0 -22474-4 0 8903 2 26536 99.0862 302.0958 0010362 187.9670 172.1354 14.12778162617663 1 26536U 00055A 12259.33583517 .00000094 00000-0 75277-4 0 8901 2 26536 99.0858 302.8138 0010460 185.9753 174.1342 14.12779082617767 1 26536U 00055A 12259.76076470 .00000200 00000-0 13242-3 0 8916 2 26536 99.0862 303.2452 0010537 184.6144 175.4958 14.12779766617824 1 26536U 00055A 12260.46898039 .00000357 00000-0 21684-3 0 8910 2 26536 99.0859 303.9634 0010600 182.8674 177.2446 14.12781045617924 1 26536U 00055A 12260.89391007 .00000388 00000-0 23375-3 0 8924 2 26536 99.0857 304.3945 0010624 181.4634 178.6502 14.12781436617987 1 26536U 00055A 12261.24801828 .00000457 00000-0 27050-3 0 8922 2 26536 99.0853 304.7538 0010634 180.6089 179.5091 14.12782127618039 1 26536U 00055A 12261.60212583 .00000394 00000-0 23699-3 0 8932 2 26536 99.0853 305.1129 0010676 179.7065 180.4113 14.12782227618081 1 26536U 00055A 12262.31034196 .00000350 00000-0 21293-3 0 8933 2 26536 99.0852 305.8316 0010674 177.6408 182.4811 14.12782494618185 1 26536U 00055A 12262.73527146 .00000252 00000-0 16035-3 0 8941 2 26536 99.0851 306.2624 0010643 176.6167 183.5058 14.12782300618246 1 26536U 00055A 12263.16020134 .00000153 00000-0 10689-3 0 8943 2 26536 99.0847 306.6936 0010624 175.2446 184.8804 14.12782054618301 1 26536U 00055A 12263.86841784 -.00000005 00000-0 22244-4 0 8962 2 26536 99.0845 307.4117 0010700 173.5045 186.6240 14.12781384618400 1 26536U 00055A 12264.22252652 -.00000037 00000-0 48415-5 0 8956 2 26536 99.0843 307.7708 0010659 172.3830 187.7496 14.12781288618452 1 26536U 00055A 12264.22252652 -.00000037 00000-0 48415-5 0 8967 2 26536 99.0843 307.7708 0010659 172.3830 187.7496 14.12781288618452 1 26536U 00055A 12264.71827817 -.00000085 00000-0 -21074-4 0 8978 2 26536 99.0842 308.2735 0010685 171.0412 189.0952 14.12781104618525 1 26536U 00055A 12265.49731628 -.00000086 00000-0 -21605-4 0 8979 2 26536 99.0842 309.0635 0010702 168.8329 191.3085 14.12781081618633 1 26536U 00055A 12265.49731628 -.00000086 00000-0 -21605-4 0 8980 2 26536 99.0842 309.0635 0010702 168.8329 191.3085 14.12781081618633 1 26536U 00055A 12265.85142446 -.00000119 00000-0 -39352-4 0 8990 2 26536 99.0845 309.4227 0010801 168.0162 192.1267 14.12780804618682 1 26536U 00055A 12266.20553280 -.00000067 00000-0 -11527-4 0 8998 2 26536 99.0844 309.7818 0010833 167.1223 193.0245 14.12781079618730 1 26536U 00055A 12266.20553280 -.00000067 00000-0 -11527-4 0 9001 2 26536 99.0844 309.7818 0010833 167.1223 193.0245 14.12781079618730 1 26536U 00055A 12266.63046232 -.00000072 00000-0 -14061-4 0 9015 2 26536 99.0844 310.2127 0010849 165.9915 194.1566 14.12781098618796 1 26536U 00055A 12267.33867890 .00000055 00000-0 54116-4 0 9018 2 26536 99.0840 310.9308 0010883 164.1703 195.9853 14.12781726618891 1 26536U 00055A 12267.33867890 .00000055 00000-0 54116-4 0 9029 2 26536 99.0840 310.9308 0010883 164.1703 195.9853 14.12781726618891 1 26536U 00055A 12267.76360773 .00000091 00000-0 73824-4 0 9032 2 26536 99.0838 311.3615 0010873 162.8362 197.3185 14.12782021618959 1 26536U 00055A 12268.33017967 .00000255 00000-0 16218-3 0 9035 2 26536 99.0837 311.9361 0010860 161.5285 198.6297 14.12783150619030 1 26536U 00055A 12268.75510860 .00000310 00000-0 19133-3 0 9043 2 26536 99.0839 312.3672 0010878 160.2294 199.9310 14.12783669619098 1 26536U 00055A 12268.75511875 .00000074 00000-0 39718-4 0 9038 2 26536 99.0840 312.3648 0010795 160.0769 200.1301 14.12782224619097 1 26536U 00055A 12269.25085897 .00000442 00000-0 26257-3 0 9047 2 26536 99.0838 312.8697 0010859 158.9023 201.2619 14.12784646619165 1 26536U 00055A 12269.60496585 .00000415 00000-0 24792-3 0 9059 2 26536 99.0840 313.2288 0010848 157.9174 202.2468 14.12784916619212 1 26536U 00055A 12270.31318042 .00000368 00000-0 22261-3 0 9056 2 26536 99.0841 313.9473 0010883 155.9998 204.1672 14.12785164619312 1 26536U 00055A 12270.31318042 .00000368 00000-0 22261-3 0 9067 2 26536 99.0841 313.9473 0010883 155.9998 204.1672 14.12785164619312 1 26536U 00055A 12270.73810919 .00000255 00000-0 16203-3 0 9089 2 26536 99.0844 314.3784 0010842 154.9028 205.2656 14.12784969619375 1 26536U 00055A 12271.51714578 .00000149 00000-0 10484-3 0 9087 2 26536 99.0838 315.1686 0010826 152.4982 207.6758 14.12784860619483 1 26536U 00055A 12271.51714578 .00000149 00000-0 10484-3 0 9098 2 26536 99.0838 315.1686 0010826 152.4982 207.6758 14.12784860619483 1 26536U 00055A 12271.72961023 .00000153 00000-0 10700-3 0 9108 2 26536 99.0837 315.3840 0010829 151.9055 208.2707 14.12785000619516 1 26536U 00055A 12272.22536021 .00000063 00000-0 58746-4 0 9103 2 26536 99.0840 315.8868 0010819 150.3097 209.8668 14.12784713619583 1 26536U 00055A 12272.65028937 .00000059 00000-0 56237-4 0 9111 2 26536 99.0834 316.3176 0010853 149.2484 210.9328 14.12784816619646 1 26536U 00055A 12273.35850410 -.00000018 00000-0 14880-4 0 9112 2 26536 99.0830 317.0360 0010841 147.0002 213.1836 14.12784507619741 1 26536U 00055A 12273.35850410 -.00000018 00000-0 14880-4 0 9123 2 26536 99.0830 317.0360 0010841 147.0002 213.1836 14.12784507619741 1 26536U 00055A 12273.71261164 -.00000126 00000-0 -43090-4 0 9132 2 26536 99.0830 317.3951 0010963 146.3016 213.8835 14.12783895619792 1 26536U 00055A 12274.49164806 -.00000057 00000-0 -61419-5 0 9132 2 26536 99.0821 318.1850 0010965 144.0757 216.1162 14.12784328619902 1 26536U 00055A 12274.84575527 -.00000118 00000-0 -38644-4 0 9149 2 26536 99.0814 318.5437 0011096 143.3187 216.8732 14.12783938619955 1 26536U 00055A 12275.19986302 .00000064 00000-0 59094-4 0 9145 2 26536 99.0809 318.9029 0011143 142.7871 217.4135 14.12784989620005 1 26536U 00055A 12275.62479046 .00000137 00000-0 98503-4 0 9155 2 26536 99.0812 319.3339 0011180 141.5747 218.6242 14.12785519620066 1 26536U 00055A 12276.33300431 .00000390 00000-0 23447-3 0 9150 2 26536 99.0802 320.0517 0011200 139.9472 220.2587 14.12787053620168 1 26536U 00055A 12276.75793108 .00000414 00000-0 24725-3 0 9161 2 26536 99.0807 320.4829 0011283 138.7642 221.4385 14.12787478620227 1 26536U 00055A 12277.11203760 .00000490 00000-0 28813-3 0 9168 2 26536 99.0803 320.8420 0011277 137.8560 222.3505 14.12788285620272 1 26536U 00055A 12277.82024913 .00000514 00000-0 30129-3 0 9189 2 26536 99.0804 321.5604 0011322 135.8578 224.3465 14.12789029620378 1 26536U 00055A 12278.24517712 .00000495 00000-0 29080-3 0 9171 2 26536 99.0802 321.9913 0011345 134.7278 225.4821 14.12789460620437 1 26536U 00055A 12278.24517712 .00000495 00000-0 29080-3 0 9182 2 26536 99.0802 321.9913 0011345 134.7278 225.4821 14.12789460620437 1 26536U 00055A 12278.59928308 .00000406 00000-0 24319-3 0 9190 2 26536 99.0804 322.3505 0011329 133.8769 226.3333 14.12789438620486 1 26536U 00055A 12279.30749573 .00000281 00000-0 17594-3 0 9193 2 26536 99.0797 323.0689 0011330 131.7212 228.4917 14.12789341620585 1 26536U 00055A 12279.73242322 .00000228 00000-0 14715-3 0 9205 2 26536 99.0799 323.4998 0011281 130.5279 229.6863 14.12789278620648 1 26536U 00055A 12280.51145730 .00000092 00000-0 74124-4 0 9208 2 26536 99.0801 324.2893 0011276 128.0385 232.1801 14.12789019620755 1 26536U 00055A 12280.86556349 .00000042 00000-0 47549-4 0 9215 2 26536 99.0802 324.6484 0011243 126.9967 233.2206 14.12788655620805 1 26536U 00055A 12281.29049150 -.00000117 00000-0 -38246-4 0 9219 2 26536 99.0804 325.0790 0011270 125.8116 234.4078 14.12787962620862 1 26536U 00055A 12281.64459841 -.00000148 00000-0 -54934-4 0 9227 2 26536 99.0801 325.4379 0011255 124.7987 235.4246 14.12787828620918 1 26536U 00055A 12282.35281119 -.00000131 00000-0 -45681-4 0 9228 2 26536 99.0805 326.1558 0011293 123.0527 237.1740 14.12787821621016 1 26536U 00055A 12282.70691739 -.00000148 00000-0 -54815-4 0 9238 2 26536 99.0804 326.5146 0011312 122.2237 238.0034 14.12787693621061 1 26536U 00055A 12283.48595085 -.00000065 00000-0 -10479-4 0 9237 2 26536 99.0809 327.3044 0011341 120.5032 239.7263 14.12788074621176 1 26536U 00055A 12283.48595085 -.00000065 00000-0 -10479-4 0 9248 2 26536 99.0809 327.3044 0011341 120.5032 239.7263 14.12788074621176 1 26536U 00055A 12283.84005711 .00000047 00000-0 49925-4 0 9257 2 26536 99.0813 327.6635 0011354 119.5024 240.7292 14.12788520621229 1 26536U 00055A 12284.26498431 .00000182 00000-0 12256-3 0 9255 2 26536 99.0818 328.0943 0011360 118.8243 241.4115 14.12789355621288 1 26536U 00055A 12284.61908938 .00000208 00000-0 13648-3 0 9268 2 26536 99.0818 328.4534 0011393 117.9317 242.3025 14.12789759621330 1 26536U 00055A 12285.82304765 .00000382 00000-0 23047-3 0 9278 2 26536 99.0819 329.6743 0011415 114.6576 245.5777 14.12791377621509 1 26536U 00055A 12286.17715320 .00000442 00000-0 26252-3 0 9278 2 26536 99.0819 330.0333 0011403 113.7401 246.4983 14.12791999621558 1 26536U 00055A 12286.95618405 .00000338 00000-0 20629-3 0 9298 2 26536 99.0822 330.8237 0011381 111.5823 248.6516 14.12792051621660 1 26536U 00055A 12287.23946914 .00000299 00000-0 18545-3 0 9288 2 26536 99.0822 331.1111 0011384 110.7270 249.5120 14.12792129621707 1 26536U 00055A 12287.66439541 .00000199 00000-0 13175-3 0 9292 2 26536 99.0820 331.5418 0011336 109.4707 250.7679 14.12791970621768 1 26536U 00055A 12288.37260640 .00000118 00000-0 88025-4 0 9291 2 26536 99.0820 332.2599 0011355 107.2503 252.9905 14.12791865621867 1 26536U 00055A 12288.79753283 -.00000035 00000-0 58114-5 0 9305 2 26536 99.0818 332.6907 0011359 106.0821 254.1571 14.12791161621924 1 26536U 00055A 12289.15163888 -.00000024 00000-0 11502-4 0 9309 2 26536 99.0816 333.0499 0011347 104.9576 255.2861 14.12791303621971 1 26536U 00055A 12289.93067069 -.00000017 00000-0 15501-4 0 9326 2 26536 99.0816 333.8394 0011363 103.0031 257.2414 14.12791313622087 1 26536U 00055A 12290.14313382 -.00000024 00000-0 11598-4 0 9312 2 26536 99.0814 334.0548 0011354 102.0795 258.1651 14.12791361622115 1 26536U 00055A 12290.35559701 -.00000033 00000-0 70184-5 0 9320 2 26536 99.0816 334.2702 0011357 101.6162 258.6283 14.12791328622149 1 26536U 00055A 12290.85134452 .00000001 00000-0 24991-4 0 9336 2 26536 99.0814 334.7726 0011349 100.4209 259.8248 14.12791474622212 1 26536U 00055A 12291.20544970 .00000046 00000-0 49425-4 0 9334 2 26536 99.0813 335.1316 0011328 99.4687 260.7785 14.12791805622265 1 26536U 00055A 12291.55955453 .00000058 00000-0 55671-4 0 9348 2 26536 99.0811 335.4903 0011358 98.9270 261.3203 14.12792043622316 1 26536U 00055A 12292.33858578 .00000208 00000-0 13669-3 0 9342 2 26536 99.0805 336.2799 0011337 96.9308 263.3190 14.12792891622428 1 26536U 00055A 12292.76351094 .00000243 00000-0 15545-3 0 9355 2 26536 99.0803 336.7103 0011353 95.7914 264.4563 14.12793339622488 1 26536U 00055A 12293.47171951 .00000399 00000-0 23911-3 0 9354 2 26536 99.0798 337.4282 0011322 94.3742 265.8742 14.12794709622584 1 26536U 00055A 12293.89664444 .00000433 00000-0 25751-3 0 9368 2 26536 99.0797 337.8590 0011347 93.2004 267.0459 14.12795139622649 1 26536U 00055A 12294.25074887 .00000523 00000-0 30596-3 0 9379 2 26536 99.0794 338.2180 0011309 92.3197 267.9294 14.12795950622699 1 26536U 00055A 12294.60485249 .00000509 00000-0 29857-3 0 9389 2 26536 99.0792 338.5769 0011306 91.3783 268.8688 14.12796363622742 1 26536U 00055A 12295.31306064 .00000412 00000-0 24634-3 0 9386 2 26536 99.0789 339.2949 0011333 89.4367 270.8085 14.12796494622842 1 26536U 00055A 12295.31306064 .00000412 00000-0 24634-3 0 9397 2 26536 99.0789 339.2949 0011333 89.4367 270.8085 14.12796494622842 1 26536U 00055A 12295.73798570 .00000371 00000-0 22415-3 0 9401 2 26536 99.0789 339.7256 0011315 88.0048 272.2405 14.12796644622905 1 26536U 00055A 12296.51701549 .00000144 00000-0 10222-3 0 9409 2 26536 99.0788 340.5153 0011371 85.8046 274.4414 14.12795985623019 1 26536U 00055A 12296.72947814 .00000077 00000-0 65899-4 0 9416 2 26536 99.0789 340.7308 0011350 85.0743 275.1706 14.12795671623044 1 26536U 00055A 12297.65014987 -.00000073 00000-0 -14656-4 0 9418 2 26536 99.0791 341.6641 0011386 82.4518 277.7953 14.12795168623174 1 26536U 00055A 12298.35835843 -.00000067 00000-0 -11323-4 0 9420 2 26536 99.0793 342.3818 0011401 80.4919 279.7549 14.12795182623271 1 26536U 00055A 12298.71246249 -.00000092 00000-0 -25054-4 0 9431 2 26536 99.0794 342.7408 0011400 79.5961 280.6492 14.12795042623325 1 26536U 00055A 12299.77477448 .00000037 00000-0 44429-4 0 9440 2 26536 99.0793 343.8174 0011380 76.9268 283.3171 14.12795723623470 1 26536U 00055A 12300.27052021 .00000163 00000-0 11225-3 0 9441 2 26536 99.0793 344.3198 0011330 75.7277 284.5191 14.12796526623549 1 26536U 00055A 12301.33283058 .00000339 00000-0 20680-3 0 9456 2 26536 99.0793 345.3964 0011258 73.0755 287.1692 14.12797970623697 1 26536U 00055A 12302.46596007 .00000514 00000-0 30102-3 0 9468 2 26536 99.0787 346.5447 0011236 70.0972 290.1440 14.12799903623854 1 26536U 00055A 12302.46596007 .00000514 00000-0 30102-3 0 9479 2 26536 99.0787 346.5447 0011236 70.0972 290.1440 14.12799903623854 1 26536U 00055A 12303.24498619 .00000482 00000-0 28373-3 0 9488 2 26536 99.0786 347.3347 0011220 68.0587 292.1782 14.12800494623964 1 26536U 00055A 12304.30729484 .00000192 00000-0 12798-3 0 9496 2 26536 99.0786 348.4117 0011210 65.1788 295.0510 14.12799904624113 1 26536U 00055A 12304.30729484 .00000192 00000-0 12798-3 0 9508 2 26536 99.0786 348.4117 0011210 65.1788 295.0510 14.12799904624113 1 26536U 00055A 12305.15714309 -.00000012 00000-0 18424-4 0 9518 2 26536 99.0783 349.2733 0011183 62.8677 297.3627 14.12799280624237 1 26536U 00055A 12306.29027342 -.00000075 00000-0 -15778-4 0 9528 2 26536 99.0778 350.4216 0011190 60.0993 300.1290 14.12799008624394 1 26536U 00055A 12306.29027342 -.00000075 00000-0 -15778-4 0 9539 2 26536 99.0778 350.4216 0011190 60.0993 300.1290 14.12799008624394 1 26536U 00055A 12307.35258252 -.00000062 00000-0 -89411-5 0 9546 2 26536 99.0774 351.4980 0011148 57.8071 302.4178 14.12799061624549 1 26536U 00055A 12308.55653241 .00000099 00000-0 78067-4 0 9559 2 26536 99.0770 352.7174 0011119 54.7213 305.5020 14.12800129624713 1 26536U 00055A 12309.33555853 .00000255 00000-0 16193-3 0 9562 2 26536 99.0765 353.5066 0011048 52.7371 307.4866 14.12801174624822 1 26536U 00055A 12310.32704359 .00000463 00000-0 27397-3 0 9570 2 26536 99.0763 354.5112 0011050 50.0297 310.1856 14.12802963624966 1 26536U 00055A 12311.17688867 .00000387 00000-0 23277-3 0 9588 2 26536 99.0768 355.3724 0011004 47.6573 312.5529 14.12803243625086 1 26536U 00055A 12312.31001555 .00000182 00000-0 12271-3 0 9594 2 26536 99.0767 356.5209 0011007 44.1314 316.0725 14.12803055625240 1 26536U 00055A 12313.01822000 .00000129 00000-0 93906-4 0 9606 2 26536 99.0768 357.2387 0010974 42.1472 318.0541 14.12803021625343 1 26536U 00055A 12314.15134732 -.00000042 00000-0 18795-5 0 9610 2 26536 99.0763 358.3872 0011029 38.9590 321.2365 14.12802386625506 1 26536U 00055A 12314.15134732 -.00000042 00000-0 18795-5 0 9621 2 26536 99.0763 358.3872 0011029 38.9590 321.2365 14.12802386625506 1 26536U 00055A 12315.21365419 -.00000099 00000-0 -28731-4 0 9631 2 26536 99.0763 359.4635 0010993 36.1677 324.0235 14.12802116625654 1 26536U 00055A 12316.20514009 -.00000025 00000-0 11334-4 0 9642 2 26536 99.0762 0.4680 0010951 33.5547 326.6317 14.12802460625793 1 26536U 00055A 12317.55072758 .00000119 00000-0 88888-4 0 9653 2 26536 99.0758 1.8312 0010759 30.3730 329.8080 14.12803364625987 1 26536U 00055A 12317.55072758 .00000119 00000-0 88888-4 0 9664 2 26536 99.0758 1.8312 0010759 30.3730 329.8080 14.12803364625987 1 26536U 00055A 12318.25893100 .00000372 00000-0 22485-3 0 9676 2 26536 99.0755 2.5489 0010719 28.1570 332.0238 14.12804980626088 1 26536U 00055A 12319.32123358 .00000557 00000-0 32460-3 0 9686 2 26536 99.0754 3.6256 0010670 25.1644 335.0064 14.12806818626235 1 26536U 00055A 12320.17107602 .00000432 00000-0 25731-3 0 9691 2 26536 99.0751 4.4870 0010671 22.9251 337.2382 14.12807021626350 1 26536U 00055A 12321.30420006 .00000174 00000-0 11816-3 0 9707 2 26536 99.0748 5.6349 0010708 19.6798 340.4781 14.12806735626518 1 26536U 00055A 12322.43732366 .00000077 00000-0 66303-4 0 9712 2 26536 99.0746 6.7827 0010728 16.6110 343.5402 14.12806704626673 1 26536U 00055A 12323.57044761 -.00000026 00000-0 10788-4 0 9725 2 26536 99.0744 7.9303 0010738 13.4858 346.6595 14.12806395626839 1 26536U 00055A 12323.57044761 -.00000026 00000-0 10788-4 0 9736 2 26536 99.0744 7.9303 0010738 13.4858 346.6595 14.12806395626839 1 26536U 00055A 12324.34947020 -.00000043 00000-0 17123-5 0 9743 2 26536 99.0741 8.7193 0010729 11.3877 348.7540 14.12806414626947 1 26536U 00055A 12325.34095225 .00000168 00000-0 11486-3 0 9757 2 26536 99.0740 9.7234 0010639 8.4486 351.6878 14.12807663627086 1 26536U 00055A 12326.54489338 .00000374 00000-0 22600-3 0 9762 2 26536 99.0737 10.9427 0010468 5.1426 354.9875 14.12809532627257 1 26536U 00055A 12327.32391363 .00000504 00000-0 29583-3 0 9772 2 26536 99.0741 11.7323 0010587 2.7114 357.4133 14.12810787627366 1 26536U 00055A 12328.31539335 .00000405 00000-0 24271-3 0 9785 2 26536 99.0748 12.7374 0010539 0.0132 0.1026 14.12811195627501 1 26536U 00055A 12329.51933427 .00000170 00000-0 11591-3 0 9799 2 26536 99.0747 13.9575 0010533 356.6782 3.4321 14.12810862627673 1 26536U 00055A 12330.29835492 -.00000031 00000-0 81295-5 0 9808 2 26536 99.0747 14.7468 0010479 354.5254 5.5797 14.12810080627787 1 26536U 00055A 12331.36065541 -.00000020 00000-0 13888-4 0 9818 2 26536 99.0744 15.8231 0010478 351.6746 8.4247 14.12810246627930 1 26536U 00055A 12331.36065541 -.00000020 00000-0 13888-4 0 9829 2 26536 99.0744 15.8231 0010478 351.6746 8.4247 14.12810246627930 1 26536U 00055A 12332.21049584 .00000027 00000-0 39362-4 0 9835 2 26536 99.0742 16.6839 0010374 349.2504 10.8461 14.12810573628053 1 26536U 00055A 12332.56459559 .00000049 00000-0 50991-4 0 9846 2 26536 99.0742 17.0425 0010368 348.2682 11.8255 14.12810785628101 1 26536U 00055A 12333.34361569 .00000125 00000-0 91770-4 0 9841 2 26536 99.0736 17.8315 0010343 345.8393 14.2513 14.12811296628219 1 26536U 00055A 12333.34361569 .00000125 00000-0 91770-4 0 9852 2 26536 99.0736 17.8315 0010343 345.8393 14.2513 14.12811296628219 1 26536U 00055A 12333.76853509 .00000135 00000-0 97432-4 0 9861 2 26536 99.0736 18.2617 0010320 344.6672 15.4191 14.12811522628274 1 26536U 00055A 12334.19345481 .00000280 00000-0 17560-3 0 9868 2 26536 99.0736 18.6920 0010290 343.3123 16.7746 14.12812478628336 1 26536U 00055A 12335.32657229 .00000442 00000-0 26242-3 0 9878 2 26536 99.0732 19.8399 0010259 339.9334 20.1458 14.12814097628490 1 26536U 00055A 12336.31804977 .00000348 00000-0 21166-3 0 9888 2 26536 99.0729 20.8444 0010165 336.8933 23.1774 14.12814421628637 1 26536U 00055A 12337.52198764 .00000154 00000-0 10753-3 0 9898 2 26536 99.0726 22.0639 0010179 333.5072 26.5574 14.12814235628804 1 26536U 00055A 12338.65510588 .00000024 00000-0 37583-4 0 9904 2 26536 99.0726 23.2116 0010108 330.2103 29.8496 14.12813887628966 1 26536U 00055A 12339.08002499 -.00000036 00000-0 56007-5 0 9917 2 26536 99.0724 23.6419 0010077 328.9997 31.0563 14.12813600629025 1 26536U 00055A 12340.28396384 -.00000129 00000-0 -44721-4 0 9946 2 26536 99.0720 24.8610 0009993 325.5258 34.5270 14.12813100629191 1 26536U 00055A 12341.06298282 -.00000034 00000-0 64661-5 0 9952 2 26536 99.0718 25.6496 0009980 323.0639 36.9874 14.12813525629301 1 26536U 00055A 12342.33773956 .00000192 00000-0 12811-3 0 9962 2 26536 99.0715 26.9404 0009976 319.2524 40.7935 14.12814937629484 1 26536U 00055A 12342.33773956 .00000192 00000-0 12811-3 0 9973 2 26536 99.0715 26.9404 0009976 319.2524 40.7935 14.12814937629484 1 26536U 00055A 12343.04593665 .00000270 00000-0 16973-3 0 9980 2 26536 99.0716 27.6578 0009931 317.3641 42.6751 14.12815668629585 1 26536U 00055A 12344.17905238 .00000348 00000-0 21168-3 0 9997 2 26536 99.0721 28.8056 0009891 313.7628 46.2724 14.12816908629741 1 26536U 00055A 12344.53315101 .00000368 00000-0 22250-3 0 09 2 26536 99.0721 29.1643 0009871 312.6825 47.3522 14.12817316629799 1 26536U 00055A 12345.66626683 .00000148 00000-0 10417-3 0 13 2 26536 99.0719 30.3125 0009941 309.4469 50.5804 14.12816871629953 1 26536U 00055A 12346.37446499 .00000024 00000-0 37713-4 0 20 2 26536 99.0720 31.0299 0009876 307.5893 52.4369 14.12816476630053 1 26536U 00055A 12347.57840194 -.00000177 00000-0 -70528-4 0 36 2 26536 99.0719 32.2495 0009897 303.9197 56.1028 14.12815479630226 1 26536U 00055A 12348.28660015 -.00000097 00000-0 -27377-4 0 43 2 26536 99.0714 32.9667 0009855 301.5993 58.4237 14.12815757630328 1 26536U 00055A 12349.49053566 .00000069 00000-0 61681-4 0 58 2 26536 99.0708 34.1858 0009836 297.6155 62.4032 14.12816625630492 1 26536U 00055A 12350.26955279 .00000229 00000-0 14800-3 0 66 2 26536 99.0704 34.9743 0009834 295.0804 64.9384 14.12817626630602 1 26536U 00055A 12351.33184715 .00000398 00000-0 23881-3 0 71 2 26536 99.0703 36.0498 0009795 291.8655 68.1502 14.12819236630758 1 26536U 00055A 12351.33184715 .00000398 00000-0 23881-3 0 82 2 26536 99.0703 36.0498 0009795 291.8655 68.1502 14.12819236630758 1 26536U 00055A 12352.46496056 .00000456 00000-0 27026-3 0 92 2 26536 99.0697 37.1973 0009811 288.7627 71.2488 14.12820509630914 1 26536U 00055A 12352.46496056 .00000456 00000-0 27026-3 0 104 2 26536 99.0697 37.1973 0009811 288.7627 71.2488 14.12820509630914 1 26536U 00055A 12352.46496056 .00000456 00000-0 27026-3 0 115 2 26536 99.0697 37.1973 0009811 288.7627 71.2488 14.12820509630914 1 26536U 00055A 12353.24397629 .00000270 00000-0 16990-3 0 121 2 26536 99.0698 37.9864 0009796 286.4930 73.5152 14.12820212631023 1 26536U 00055A 12354.09381200 .00000124 00000-0 91332-4 0 136 2 26536 99.0693 38.8467 0009806 284.4696 75.5365 14.12819927631148 1 26536U 00055A 12355.22692703 -.00000025 00000-0 11084-4 0 143 2 26536 99.0698 39.9944 0009764 281.2908 78.7161 14.12819377631305 1 26536U 00055A 12356.36004192 -.00000116 00000-0 -37812-4 0 158 2 26536 99.0700 41.1419 0009748 277.7543 82.2523 14.12818900631468 1 26536U 00055A 12357.06823855 -.00000062 00000-0 -86098-5 0 163 2 26536 99.0701 41.8590 0009729 275.1968 84.8103 14.12819079631569 1 26536U 00055A 12358.20135294 .00000089 00000-0 72381-4 0 170 2 26536 99.0702 43.0064 0009757 271.2431 88.7665 14.12819927631729 1 26536U 00055A 12358.20135294 .00000089 00000-0 72381-4 0 181 2 26536 99.0702 43.0064 0009757 271.2431 88.7665 14.12819927631729 1 26536U 00055A 12359.33446568 .00000361 00000-0 21910-3 0 190 2 26536 99.0704 44.1542 0009791 267.8447 92.1653 14.12821762631883 1 26536U 00055A 12359.33446568 .00000361 00000-0 21910-3 0 202 2 26536 99.0704 44.1542 0009791 267.8447 92.1653 14.12821762631883 1 26536U 00055A 12360.46757711 .00000425 00000-0 25357-3 0 214 2 26536 99.0700 45.3015 0009813 264.1283 95.8783 14.12822972632047 1 26536U 00055A 12360.46757711 .00000425 00000-0 25357-3 0 225 2 26536 99.0700 45.3015 0009813 264.1283 95.8783 14.12822972632047 1 26536U 00055A 12361.60068914 .00000260 00000-0 16453-3 0 237 2 26536 99.0696 46.4491 0009833 261.0018 99.0041 14.12823095632203 1 26536U 00055A 12362.02560604 .00000230 00000-0 14831-3 0 243 2 26536 99.0698 46.8791 0009823 259.7350 100.2690 14.12823031632265 1 26536U 00055A 12363.15871941 -.00000014 00000-0 17008-4 0 259 2 26536 99.0693 48.0268 0009788 256.9741 103.0324 14.12822210632427 1 26536U 00055A 12363.15871941 -.00000014 00000-0 17008-4 0 260 2 26536 99.0693 48.0268 0009788 256.9741 103.0324 14.12822210632427 1 26536U 00055A 12364.22101330 -.00000105 00000-0 -31850-4 0 271 2 26536 99.0688 49.1022 0009787 253.8729 106.1372 14.12821797632574 1 26536U 00055A 12365.35412635 -.00000066 00000-0 -10933-4 0 285 2 26536 99.0685 50.2490 0009797 250.4197 109.5933 14.12821895632733 1 26536U 00055A 12365.35412635 -.00000066 00000-0 -10933-4 0 296 2 26536 99.0685 50.2490 0009797 250.4197 109.5933 14.12821895632733 1 26536U 00055A 12366.48723844 .00000082 00000-0 69003-4 0 308 2 26536 99.0680 51.3959 0009856 246.6773 113.3380 14.12822773632895 1 26536U 00055A 12366.48723844 .00000082 00000-0 69003-4 0 319 2 26536 99.0680 51.3959 0009856 246.6773 113.3380 14.12822773632895 1 26536U 00055A 12366.48724740 .00000166 00000-0 89343-4 0 148 2 26536 99.0714 51.3954 0010279 248.2926 111.7793 14.12823408 80902 1 26536U 00055A 13001.26625294 .00000246 00000-0 15691-3 0 328 2 26536 99.0674 52.1844 0009938 244.1759 115.8441 14.12823861633006 1 26536U 00055A 13002.32854347 .00000460 00000-0 27232-3 0 332 2 26536 99.0672 53.2598 0009953 240.9674 119.0539 14.12825699633150 1 26536U 00055A 13002.32854347 .00000460 00000-0 27232-3 0 343 2 26536 99.0672 53.2598 0009953 240.9674 119.0539 14.12825699633150 1 26536U 00055A 13003.46165302 .00000416 00000-0 24841-3 0 350 2 26536 99.0674 54.4075 0009965 237.4832 122.5383 14.12826473633310 1 26536U 00055A 13004.24066665 .00000166 00000-0 11404-3 0 363 2 26536 99.0676 55.1961 0009938 235.4534 124.5679 14.12825684633426 1 26536U 00055A 13005.37377806 -.00000064 00000-0 -96172-5 0 377 2 26536 99.0674 56.3431 0009950 232.1756 127.8506 14.12824898633581 1 26536U 00055A 13005.37377806 -.00000064 00000-0 -96172-5 0 388 2 26536 99.0674 56.3431 0009950 232.1756 127.8506 14.12824898633581 1 26536U 00055A 13006.50688935 -.00000130 00000-0 -45458-4 0 397 2 26536 99.0677 57.4903 0009963 228.7772 131.2530 14.12824483633747 1 26536U 00055A 13006.50688935 -.00000130 00000-0 -45458-4 0 409 2 26536 99.0677 57.4903 0009963 228.7772 131.2530 14.12824483633747 1 26536U 00055A 13007.21508443 -.00000098 00000-0 -28137-4 0 412 2 26536 99.0675 58.2072 0010014 226.6092 133.4267 14.12824519633844 1 26536U 00055A 13007.99409811 -.00000036 00000-0 55619-5 0 424 2 26536 99.0674 58.9957 0010018 224.3827 135.6555 14.12824776633958 1 26536U 00055A 13009.12720816 .00000177 00000-0 12005-3 0 438 2 26536 99.0675 60.1427 0010053 221.2808 138.7637 14.12826222634112 1 26536U 00055A 13009.12720816 .00000177 00000-0 12005-3 0 449 2 26536 99.0675 60.1427 0010053 221.2808 138.7637 14.12826222634112 1 26536U 00055A 13010.26031703 .00000334 00000-0 20451-3 0 456 2 26536 99.0678 61.2900 0010119 218.0225 142.0251 14.12827556634271 1 26536U 00055A 13010.82688155 .00000141 00000-0 75889-4 0 460 2 26536 99.0672 61.8618 0010094 216.0275 144.0704 14.12826715634352 1 26536U 00055A 13011.32260600 .00000369 00000-0 22318-3 0 467 2 26536 99.0673 62.3658 0010176 214.8014 145.2503 14.12828610634425 1 26536U 00055A 13012.45571424 .00000318 00000-0 19588-3 0 471 2 26536 99.0672 63.5132 0010150 211.3872 148.6693 14.12829177634583 1 26536U 00055A 13013.23472661 .00000108 00000-0 82528-4 0 484 2 26536 99.0665 64.3020 0010176 208.8154 151.2449 14.12828605634698 1 26536U 00055A 13014.36783573 -.00000073 00000-0 -14757-4 0 499 2 26536 99.0661 65.4490 0010186 205.4772 154.5892 14.12827987634855 1 26536U 00055A 13014.36783573 -.00000073 00000-0 -14757-4 0 501 2 26536 99.0661 65.4490 0010186 205.4772 154.5892 14.12827987634855 1 26536U 00055A 13015.50094492 -.00000097 00000-0 -27736-4 0 511 2 26536 99.0657 66.5952 0010216 202.2645 157.8086 14.12827808635015 1 26536U 00055A 13015.50094492 -.00000097 00000-0 -27736-4 0 522 2 26536 99.0657 66.5952 0010216 202.2645 157.8086 14.12827808635015 1 26536U 00055A 13016.63405268 .00000039 00000-0 45851-4 0 537 2 26536 99.0654 67.7419 0010263 199.2043 160.8742 14.12828737635174 1 26536U 00055A 13016.63405268 .00000039 00000-0 45851-4 0 548 2 26536 99.0654 67.7419 0010263 199.2043 160.8742 14.12828737635174 1 26536U 00055A 13016.98814906 .00000152 00000-0 10634-3 0 556 2 26536 99.0651 68.1001 0010245 198.2450 161.8370 14.12829326635223 1 26536U 00055A 13018.12125557 .00000333 00000-0 20354-3 0 563 2 26536 99.0648 69.2467 0010301 195.2146 164.8730 14.12830903635382 1 26536U 00055A 13018.12125557 .00000333 00000-0 20354-3 0 574 2 26536 99.0648 69.2467 0010301 195.2146 164.8730 14.12830903635382 1 26536U 00055A 13019.25436185 .00000328 00000-0 20100-3 0 585 2 26536 99.0650 70.3936 0010458 191.9762 168.1173 14.12831659635544 1 26536U 00055A 13020.31664871 .00000240 00000-0 15396-3 0 594 2 26536 99.0648 71.4695 0010447 188.7265 171.3721 14.12831939635697 1 26536U 00055A 13020.31664871 .00000240 00000-0 15396-3 0 606 2 26536 99.0648 71.4695 0010447 188.7265 171.3721 14.12831939635697 1 26536U 00055A 13021.44975516 .00000091 00000-0 73450-4 0 613 2 26536 99.0653 72.6171 0010453 185.3255 174.7804 14.12831769635852 1 26536U 00055A 13021.44975516 .00000091 00000-0 73450-4 0 624 2 26536 99.0653 72.6171 0010453 185.3255 174.7804 14.12831769635852 1 26536U 00055A 13022.22876645 -.00000081 00000-0 -18983-4 0 636 2 26536 99.0653 73.4056 0010452 182.9982 177.1120 14.12830957635960 1 26536U 00055A 13023.36187377 -.00000174 00000-0 -68987-4 0 642 2 26536 99.0652 74.5523 0010537 179.8238 180.2949 14.12830412636122 1 26536U 00055A 13024.49498037 -.00000084 00000-0 -20360-4 0 659 2 26536 99.0649 75.6989 0010561 176.7358 183.3890 14.12830703636281 1 26536U 00055A 13025.27399116 .00000144 00000-0 10185-3 0 663 2 26536 99.0645 76.4870 0010662 174.9583 185.1755 14.12831865636399 1 26536U 00055A 13026.33627629 .00000375 00000-0 22647-3 0 677 2 26536 99.0643 77.5619 0010797 172.1389 188.0000 14.12833620636546 1 26536U 00055A 13026.33627629 .00000375 00000-0 22647-3 0 688 2 26536 99.0643 77.5619 0010797 172.1389 188.0000 14.12833620636546 1 26536U 00055A 13027.46937928 .00000488 00000-0 28689-3 0 697 2 26536 99.0634 78.7083 0010862 168.9281 191.2142 14.12835208636706 1 26536U 00055A 13027.46937928 .00000488 00000-0 28689-3 0 709 2 26536 99.0634 78.7083 0010862 168.9281 191.2142 14.12835208636706 1 26536U 00055A 13028.24838850 .00000278 00000-0 17390-3 0 715 2 26536 99.0631 79.4969 0010835 166.6501 193.4945 14.12834725636814 1 26536U 00055A 13029.38149297 .00000052 00000-0 52589-4 0 722 2 26536 99.0630 80.6435 0010815 163.1332 197.0182 14.12834264636975 1 26536U 00055A 13030.44377891 -.00000064 00000-0 -99671-5 0 734 2 26536 99.0633 81.7188 0010778 159.8683 200.2908 14.12833806637126 1 26536U 00055A 13030.44377891 -.00000064 00000-0 -99671-5 0 745 2 26536 99.0633 81.7188 0010778 159.8683 200.2908 14.12833806637126 1 26536U 00055A 13031.22278865 -.00000113 00000-0 -36208-4 0 755 2 26536 99.0629 82.5071 0010820 157.8117 202.3530 14.12833502637238 1 26536U 00055A 13031.64771113 .00000159 00000-0 85504-4 0 767 2 26536 99.0633 82.9349 0010846 157.1307 203.0822 14.12834734637293 1 26536U 00055A 13032.35589344 -.00000132 00000-0 -46491-4 0 764 2 26536 99.0627 83.6535 0010883 154.8343 205.3374 14.12833276637394 1 26536U 00055A 13032.35589344 -.00000132 00000-0 -46491-4 0 775 2 26536 99.0627 83.6535 0010883 154.8343 205.3374 14.12833276637394 1 26536U 00055A 13033.13490278 -.00000020 00000-0 13685-4 0 784 2 26536 99.0627 84.4417 0010937 152.9090 207.2692 14.12833819637500 1 26536U 00055A 13034.26800547 .00000309 00000-0 19053-3 0 797 2 26536 99.0622 85.5884 0011014 150.2956 209.8896 14.12835775637668 1 26536U 00055A 13034.26800547 .00000309 00000-0 19053-3 0 809 2 26536 99.0622 85.5884 0011014 150.2956 209.8896 14.12835775637668 1 26536U 00055A 13035.40110660 .00000442 00000-0 26212-3 0 810 2 26536 99.0619 86.7350 0011069 147.3210 212.8673 14.12837339637828 1 26536U 00055A 13036.18011381 .00000310 00000-0 19101-3 0 820 2 26536 99.0624 87.5236 0011046 145.0660 215.1223 14.12837238637932 1 26536U 00055A 13037.31321639 .00000054 00000-0 53512-4 0 837 2 26536 99.0626 88.6707 0010984 141.6059 218.5876 14.12836546638093 1 26536U 00055A 13038.37550022 -.00000062 00000-0 -85591-5 0 849 2 26536 99.0623 89.7456 0011001 138.5351 221.6645 14.12836128638246 1 26536U 00055A 13038.37550022 -.00000062 00000-0 -85591-5 0 850 2 26536 99.0623 89.7456 0011001 138.5351 221.6645 14.12836128638246 1 26536U 00055A 13039.50860309 -.00000102 00000-0 -30520-4 0 865 2 26536 99.0621 90.8921 0011016 135.2967 224.9095 14.12835853638404 1 26536U 00055A 13040.21679236 -.00000129 00000-0 -44797-4 0 873 2 26536 99.0621 91.6085 0011080 133.5592 226.6509 14.12835621638503 1 26536U 00055A 13041.34989475 .00000054 00000-0 53388-4 0 889 2 26536 99.0613 92.7544 0011148 130.9952 229.2240 14.12836561638664 1 26536U 00055A 13041.34989475 .00000054 00000-0 53388-4 0 890 2 26536 99.0613 92.7544 0011148 130.9952 229.2240 14.12836561638664 1 26536U 00055A 13042.48299440 .00000267 00000-0 16819-3 0 907 2 26536 99.0597 93.9002 0011178 128.2839 231.9359 14.12838128638824 1 26536U 00055A 13042.48299440 .00000267 00000-0 16819-3 0 918 2 26536 99.0597 93.9002 0011178 128.2839 231.9359 14.12838128638824 1 26536U 00055A 13043.26200087 .00000415 00000-0 24755-3 0 928 2 26536 99.0597 94.6885 0011162 126.2453 233.9798 14.12839363638937 1 26536U 00055A 13044.32428074 .00000377 00000-0 22734-3 0 937 2 26536 99.0595 95.7632 0011204 123.4502 236.7744 14.12840051639083 1 26536U 00055A 13044.32428074 .00000377 00000-0 22734-3 0 948 2 26536 99.0595 95.7632 0011204 123.4502 236.7744 14.12840051639083 1 26536U 00055A 13045.45738014 .00000192 00000-0 12771-3 0 957 2 26536 99.0588 96.9098 0011209 120.1380 240.0891 14.12839907639244 1 26536U 00055A 13045.45738014 .00000192 00000-0 12771-3 0 968 2 26536 99.0588 96.9098 0011209 120.1380 240.0891 14.12839907639244 1 26536U 00055A 13046.23638663 -.00000045 00000-0 39105-6 0 976 2 26536 99.0587 97.6982 0011219 118.0075 242.2214 14.12838948639350 1 26536U 00055A 13047.36948716 -.00000161 00000-0 -62117-4 0 982 2 26536 99.0590 98.8446 0011281 115.1254 245.1089 14.12838338639511 1 26536U 00055A 13047.36948716 -.00000161 00000-0 -62117-4 0 993 2 26536 99.0590 98.8446 0011281 115.1254 245.1089 14.12838338639511 1 26536U 00055A 13048.43176814 -.00000076 00000-0 -16386-4 0 1009 2 26536 99.0590 99.9192 0011308 112.4222 247.8154 14.12838646639666 1 26536U 00055A 13048.43176814 -.00000076 00000-0 -16386-4 0 1010 2 26536 99.0590 99.9192 0011308 112.4222 247.8154 14.12838646639666 1 26536U 00055A 13049.21077452 -.00000023 00000-0 12363-4 0 1028 2 26536 99.0590 100.7073 0011313 110.6276 249.6144 14.12838871639771 1 26536U 00055A 13050.34387349 .00000133 00000-0 96175-4 0 1038 2 26536 99.0586 101.8533 0011323 107.9572 252.2882 14.12839823639933 1 26536U 00055A 13050.34387349 .00000133 00000-0 96175-4 0 1049 2 26536 99.0586 101.8533 0011323 107.9572 252.2882 14.12839823639933 1 26536U 00055A 13051.12287768 .00000284 00000-0 17728-3 0 1054 2 26536 99.0587 102.6416 0011309 105.5323 254.7122 14.12840986640045 1 26536U 00055A 13052.25597444 .00000409 00000-0 24423-3 0 1064 2 26536 99.0587 103.7882 0011305 102.6487 257.5961 14.12842356640202 1 26536U 00055A 13053.03497803 .00000341 00000-0 20775-3 0 1071 2 26536 99.0589 104.5763 0011314 100.5086 259.7339 14.12842588640315 1 26536U 00055A 13054.09725698 .00000106 00000-0 81688-4 0 1085 2 26536 99.0583 105.6511 0011297 97.2866 262.9572 14.12842032640465 1 26536U 00055A 13054.09725698 .00000106 00000-0 81688-4 0 1096 2 26536 99.0583 105.6511 0011297 97.2866 262.9572 14.12842032640465 1 26536U 00055A 13054.09725698 .00000106 00000-0 81688-4 0 1108 2 26536 99.0583 105.6511 0011297 97.2866 262.9572 14.12842032640465 1 26536U 00055A 13055.23035490 -.00000123 00000-0 -41360-4 0 1114 2 26536 99.0583 106.7973 0011296 93.9686 266.2759 14.12841012640620 1 26536U 00055A 13056.36345284 -.00000145 00000-0 -53179-4 0 1120 2 26536 99.0577 107.9430 0011324 91.3977 268.8497 14.12840791640788 1 26536U 00055A 13057.42573141 -.00000046 00000-0 -32402-6 0 1132 2 26536 99.0575 109.0173 0011308 88.6362 271.6113 14.12841179640937 1 26536U 00055A 13058.51473078 .00000056 00000-0 54733-4 0 1140 2 26536 99.0576 110.1223 0011451 87.3869 48.7050 14.12843053641087 1 26536U 00055A 13058.58809841 .00000062 00000-0 57727-4 0 1152 2 26536 99.0575 110.1965 0011448 87.1938 61.8566 14.12843038641092 1 26536U 00055A 13059.49982907 .00000149 00000-0 10472-3 0 1160 2 26536 99.0574 111.1187 0011455 84.8262 18.9369 14.12842653641221 1 26536U 00055A 13060.42380484 .00000199 00000-0 13127-3 0 1173 2 26536 99.0572 112.0532 0011444 82.4111 38.3102 14.12842529641355 1 26536U 00055A 13061.19455134 .00000218 00000-0 14171-3 0 1186 2 26536 99.0570 112.8327 0011439 80.4603 358.2883 14.12842746641464 1 26536U 00055A 13062.47596730 .00000157 00000-0 10910-3 0 1196 2 26536 99.0567 114.1287 0011376 77.1087 35.6122 14.12843649641644 1 26536U 00055A 13063.38651516 .00000094 00000-0 75105-4 0 1201 2 26536 99.0564 115.0498 0011330 74.6971 346.7185 14.12844665641777 1 26536U 00055A 13064.53398198 .00000049 00000-0 50952-4 0 1217 2 26536 99.0563 116.2102 0011287 71.6583 62.8134 14.12845496641939 1 26536U 00055A 13064.67113737 .00000034 00000-0 42920-4 0 1227 2 26536 99.0561 116.3491 0011278 71.2829 40.4076 14.12845646641954 1 26536U 00055A 13064.81230507 .00000034 00000-0 42797-4 0 1231 2 26536 99.0561 116.4918 0011272 70.9032 38.4030 14.12845676641977 1 26536U 00055A 13066.22194978 .00000092 00000-0 73957-4 0 1246 2 26536 99.0557 117.9174 0011226 67.1802 7.9533 14.12845763642173 1 26536U 00055A 13066.51662137 .00000104 00000-0 80621-4 0 1256 2 26536 99.0556 118.2154 0011219 66.3995 66.6766 14.12845657642217 1 26536U 00055A 13067.43385009 .00000184 00000-0 12328-3 0 1265 2 26536 99.0553 119.1431 0011193 63.9605 51.7851 14.12845326642341 1 26536U 00055A 13068.57564291 .00000225 00000-0 14575-3 0 1276 2 26536 99.0550 120.2977 0011175 61.0046 98.9647 14.12845319642500 1 26536U 00055A 13068.57564291 .00000225 00000-0 14575-3 0 1287 2 26536 99.0550 120.2977 0011175 61.0046 98.9647 14.12845319642500 1 26536U 00055A 13069.48740057 .00000229 00000-0 14745-3 0 1298 2 26536 99.0551 121.2197 0011132 58.6034 56.2211 14.12845706642636 1 26536U 00055A 13070.47842457 .00000182 00000-0 12241-3 0 1305 2 26536 99.0549 122.2219 0011070 55.9374 56.6855 14.12846516642770 1 26536U 00055A 13071.47214750 .00000110 00000-0 83586-4 0 1318 2 26536 99.0547 123.2267 0011026 53.3083 70.8332 14.12847558642913 1 26536U 00055A 13072.46183003 .00000064 00000-0 59066-4 0 1329 2 26536 99.0544 124.2276 0011002 50.7107 64.4128 14.12848507643056 1 26536U 00055A 13074.44709098 .00000083 00000-0 68998-4 0 1344 2 26536 99.0544 126.2347 0010914 45.2715 81.8018 14.12848924643337 1 26536U 00055A 13075.50980953 .00000149 00000-0 10478-3 0 1356 2 26536 99.0542 127.3092 0010867 42.3726 86.9684 14.12848622643487 1 26536U 00055A 13076.42963155 .00000201 00000-0 13237-3 0 1369 2 26536 99.0540 128.2392 0010826 39.9070 85.2960 14.12848373643614 1 26536U 00055A 13077.48911896 .00000219 00000-0 14231-3 0 1376 2 26536 99.0537 129.3106 0010791 37.1723 73.8724 14.12848528643760 1 26536U 00055A 13078.48081499 .00000211 00000-0 13807-3 0 1385 2 26536 99.0536 130.3132 0010704 34.3382 77.9327 14.12849176643904 1 26536U 00055A 13079.47248652 .00000162 00000-0 11187-3 0 1396 2 26536 99.0534 131.3159 0010637 31.4916 81.8806 14.12850279644046 1 26536U 00055A 13080.46415331 .00000073 00000-0 63619-4 0 1408 2 26536 99.0531 132.3185 0010582 28.6495 85.8012 14.12851311644188 1 26536U 00055A 13081.45579440 .00000044 00000-0 48411-4 0 1412 2 26536 99.0529 133.3212 0010563 26.0893 89.3141 14.12851795644324 1 26536U 00055A 13082.44915736 .00000059 00000-0 56049-4 0 1427 2 26536 99.0524 134.3256 0010526 23.3214 101.7924 14.12851802644466 1 26536U 00055A 13083.51369513 .00000120 00000-0 88944-4 0 1431 2 26536 99.0525 135.4018 0010474 20.3169 116.3235 14.12851447644612 1 26536U 00055A 13084.35779219 .00000170 00000-0 11596-3 0 1446 2 26536 99.0523 136.2552 0010437 17.9821 89.5854 14.12851277644730 1 26536U 00055A 13084.47830492 .00000257 00000-0 13848-3 0 1325 2 26536 99.0549 136.3745 0010712 13.9124 346.2962 14.12852791 91989 1 26536U 00055A 13085.42362894 .00000191 00000-0 12712-3 0 1457 2 26536 99.0521 137.3327 0010368 14.9142 110.7818 14.12851434644884 1 26536U 00055A 13085.42362894 .00000191 00000-0 12712-3 0 1468 2 26536 99.0521 137.3327 0010368 14.9142 110.7818 14.12851434644884 1 26536U 00055A 13086.41416567 .00000183 00000-0 12299-3 0 1477 2 26536 99.0520 138.3341 0010308 12.0053 109.0334 14.12852054645024 1 26536U 00055A 13087.47487547 .00000119 00000-0 88290-4 0 1485 2 26536 99.0518 139.4063 0010258 8.9925 104.1096 14.12852980645175 1 26536U 00055A 13087.69386366 .00000117 00000-0 87689-4 0 1496 2 26536 99.0516 139.6279 0010247 8.3315 137.9854 14.12853186645208 1 26536U 00055A 13088.61776882 .00000054 00000-0 53583-4 0 1503 2 26536 99.0517 140.5616 0010199 5.6550 157.2880 14.12854043645333 1 26536U 00055A 13089.45820713 .00000030 00000-0 40927-4 0 1512 2 26536 99.0515 141.4112 0010164 3.3081 111.9651 14.12854491645451 1 26536U 00055A 13090.45155178 .00000071 00000-0 62805-4 0 1525 2 26536 99.0514 142.4153 0010122 0.2683 124.6315 14.12854445645596 1 26536U 00055A 13091.51627604 .00000160 00000-0 11059-3 0 1535 2 26536 99.0512 143.4916 0010079 357.1856 140.1994 14.12854089645746 1 26536U 00055A 13091.51627604 .00000160 00000-0 11059-3 0 1546 2 26536 99.0512 143.4916 0010079 357.1856 140.1994 14.12854089645746 1 26536U 00055A 13092.50709263 .00000241 00000-0 15430-3 0 1556 2 26536 99.0510 144.4932 0010033 354.3266 139.8374 14.12853820645881 1 26536U 00055A 13093.42603714 .00000274 00000-0 17202-3 0 1568 2 26536 99.0508 145.4221 0009988 351.6114 133.9713 14.12853841646010 1 26536U 00055A 13094.41645777 .00000279 00000-0 17461-3 0 1576 2 26536 99.0506 146.4232 0009938 348.6808 131.6647 14.12854368646153 1 26536U 00055A 13095.55288698 .00000220 00000-0 14301-3 0 1584 2 26536 99.0503 147.5719 0009885 345.2231 152.1122 14.12855558646312 1 26536U 00055A 13095.55288698 .00000220 00000-0 14301-3 0 1595 2 26536 99.0503 147.5719 0009885 345.2231 152.1122 14.12855558646312 1 26536U 00055A 13096.46892090 .00000163 00000-0 11200-3 0 1606 2 26536 99.0501 148.4979 0009842 342.3685 131.5881 14.12856544646445 1 26536U 00055A 13097.46058000 .00000101 00000-0 78806-4 0 1611 2 26536 99.0499 149.5002 0009811 339.5145 135.5039 14.12857455646581 1 26536U 00055A 13098.45395034 .00000118 00000-0 88176-4 0 1622 2 26536 99.0497 150.5042 0009777 336.4443 148.3410 14.12857848646720 1 26536U 00055A 13099.36139328 .00000153 00000-0 10682-3 0 1631 2 26536 99.0496 151.4214 0009749 333.6445 84.1019 14.12857791646853 1 26536U 00055A 13100.43509831 .00000252 00000-0 16028-3 0 1643 2 26536 99.0493 152.5068 0009718 330.3907 145.5076 14.12857540647007 1 26536U 00055A 13100.50349992 .00000258 00000-0 16330-3 0 1654 2 26536 99.0493 152.5759 0009715 330.1934 133.4226 14.12857553647017 1 26536U 00055A 13101.35828492 .00000271 00000-0 17012-3 0 1669 2 26536 99.0493 153.4398 0009694 327.4503 161.4435 14.12857588647137 1 26536U 00055A 13102.41896559 .00000270 00000-0 16957-3 0 1673 2 26536 99.0492 154.5118 0009640 324.3477 156.4863 14.12858200647282 1 26536U 00055A 13103.41209633 .00000193 00000-0 12845-3 0 1682 2 26536 99.0491 155.5155 0009605 321.3000 168.0854 14.12859189647425 1 26536U 00055A 13104.46673502 .00000101 00000-0 78686-4 0 1694 2 26536 99.0491 156.5811 0009587 317.9501 132.6618 14.12860144647575 1 26536U 00055A 13105.46468242 .00000031 00000-0 41278-4 0 1709 2 26536 99.0490 157.5897 0009556 314.9721 168.6806 14.12860972647719 1 26536U 00055A 13106.37224957 .00000021 00000-0 35751-4 0 1712 2 26536 99.0489 158.5067 0009546 312.1294 105.1228 14.12861246647844 1 26536U 00055A 13107.36439828 .00000062 00000-0 57779-4 0 1727 2 26536 99.0488 159.5094 0009543 308.8938 111.9308 14.12861132647981 1 26536U 00055A 13109.49761575 .00000199 00000-0 13138-3 0 1743 2 26536 99.0483 161.6652 0009501 302.4054 162.6001 14.12860409648286 1 26536U 00055A 13110.42134620 .00000240 00000-0 15382-3 0 1754 2 26536 99.0482 162.5986 0009474 299.6269 181.1468 14.12860529648410 1 26536U 00055A 13111.83373449 .00000220 00000-0 14309-3 0 1761 2 26536 99.0480 164.0260 0009492 294.9722 165.6509 14.12861747648610 1 26536U 00055A 13112.40446277 .00000200 00000-0 13232-3 0 1778 2 26536 99.0479 164.6027 0009493 293.1935 188.7157 14.12862455648693 1 26536U 00055A 13115.52218824 .00000064 00000-0 58918-4 0 1813 2 26536 99.0475 167.7532 0009458 283.6731 207.1565 14.12864260649138 1 26536U 00055A 13116.43982712 .00000131 00000-0 95137-4 0 1828 2 26536 99.0472 168.6807 0009459 280.7914 194.8527 14.12863871649263 1 26536U 00055A 13117.50645588 .00000174 00000-0 11790-3 0 1834 2 26536 99.0473 169.7582 0009496 277.3988 220.4485 14.12863622649410 1 26536U 00055A 13117.50645588 .00000174 00000-0 11790-3 0 1845 2 26536 99.0473 169.7582 0009496 277.3988 220.4485 14.12863622649410 1 26536U 00055A 13118.78042714 .00000217 00000-0 14119-3 0 1855 2 26536 99.0471 171.0456 0009549 273.2450 220.8282 14.12863901649590 1 26536U 00055A 13119.48430554 .00000206 00000-0 13516-3 0 1865 2 26536 99.0471 171.7566 0009560 271.0147 201.2195 14.12864367649695 1 26536U 00055A 13121.16841601 .00000199 00000-0 13132-3 0 1889 2 26536 99.0469 173.4581 0009634 265.7270 127.6713 14.12866182649938 1 26536U 00055A 13121.46763128 .00000189 00000-0 12594-3 0 1890 2 26536 99.0469 173.7604 0009616 264.8173 209.6410 14.12866592649973 1 26536U 00055A 13122.16820381 .00000143 00000-0 10149-3 0 1909 2 26536 99.0468 174.4683 0009604 262.7707 173.0465 14.12867411650072 1 26536U 00055A 13125.65703324 .00000241 00000-0 15428-3 0 1963 2 26536 99.0462 177.9935 0009705 252.1248 279.1820 14.12867326650561 1 26536U 00055A 13126.42603854 .00000260 00000-0 16442-3 0 1975 2 26536 99.0462 178.7704 0009703 249.7462 230.8057 14.12867437650673 1 26536U 00055A 13127.63824404 .00000222 00000-0 14384-3 0 1987 2 26536 99.0457 179.9953 0009740 245.9749 276.8309 14.12868309650841 1 26536U 00055A 13128.68885958 .00000157 00000-0 10877-3 0 1995 2 26536 99.0456 181.0568 0009839 242.7620 220.8546 14.12869542650996 1 26536U 00055A 13129.10366299 .00000097 00000-0 76898-4 0 2007 2 26536 99.0455 181.4758 0009865 241.5256 170.7475 14.12870063651053 1 26536U 00055A 13130.16855856 .00000025 00000-0 38202-4 0 2016 2 26536 99.0456 182.5514 0009922 238.3221 187.3587 14.12871158651207 1 26536U 00055A 13130.46332160 .00000014 00000-0 32092-4 0 2027 2 26536 99.0456 182.8492 0009928 237.4188 246.6942 14.12871292651240 1 26536U 00055A 13131.45496626 .00000049 00000-0 51162-4 0 2033 2 26536 99.0454 183.8512 0009951 234.4853 250.6711 14.12871483651380 1 26536U 00055A 13132.37708752 .00000091 00000-0 73264-4 0 2046 2 26536 99.0455 184.7825 0009993 231.7672 261.0124 14.12871366651512 1 26536U 00055A 13133.36776315 .00000228 00000-0 14688-3 0 2053 2 26536 99.0454 185.7834 0010044 228.8231 260.0789 14.12871027651654 1 26536U 00055A 13134.28778079 .00000254 00000-0 16082-3 0 2064 2 26536 99.0454 186.7128 0010053 226.0085 259.8232 14.12871088651788 1 26536U 00055A 13135.33637887 .00000243 00000-0 15523-3 0 2070 2 26536 99.0453 187.7719 0010114 222.8952 193.5066 14.12871577651938 1 26536U 00055A 13135.33637887 .00000243 00000-0 15523-3 0 2081 2 26536 99.0453 187.7719 0010114 222.8952 193.5066 14.12871577651938 1 26536U 00055A 13136.32958169 .00000223 00000-0 14431-3 0 2096 2 26536 99.0453 188.7751 0010200 220.0707 205.2969 14.12872341652078 1 26536U 00055A 13137.39101396 .00000157 00000-0 10918-3 0 2100 2 26536 99.0453 189.8475 0010266 217.0648 204.1153 14.12873647652225 1 26536U 00055A 13137.39101396 .00000157 00000-0 10918-3 0 2111 2 26536 99.0453 189.8475 0010266 217.0648 204.1153 14.12873647652225 1 26536U 00055A 13138.46388845 .00000123 00000-0 90687-4 0 2122 2 26536 99.0451 190.9313 0010276 213.8322 261.3306 14.12874958652378 1 26536U 00055A 13138.46388845 .00000123 00000-0 90687-4 0 2133 2 26536 99.0451 190.9313 0010276 213.8322 261.3306 14.12874958652378 1 26536U 00055A 13139.45723719 .00000093 00000-0 74783-4 0 2142 2 26536 99.0450 191.9348 0010308 210.9164 273.9646 14.12875355652518 1 26536U 00055A 13140.37933501 .00000125 00000-0 91709-4 0 2151 2 26536 99.0449 192.8664 0010358 208.3107 284.0866 14.12875236652649 1 26536U 00055A 13141.35614391 .00000189 00000-0 12623-3 0 2161 2 26536 99.0448 193.8531 0010428 205.5943 212.4470 14.12874964652785 1 26536U 00055A 13142.29047215 .00000227 00000-0 14671-3 0 2179 2 26536 99.0446 194.7972 0010478 202.9676 284.7652 14.12874961652917 1 26536U 00055A 13143.26455608 .00000261 00000-0 16501-3 0 2189 2 26536 99.0444 195.7813 0010528 200.2117 199.3105 14.12875303653058 1 26536U 00055A 13144.41616722 .00000232 00000-0 14915-3 0 2199 2 26536 99.0443 196.9447 0010586 196.9697 296.8060 14.12876548653214 1 26536U 00055A 13144.41616722 .00000232 00000-0 14915-3 0 2201 2 26536 99.0443 196.9447 0010586 196.9697 296.8060 14.12876548653214 1 26536U 00055A 13145.40532043 .00000137 00000-0 98163-4 0 2217 2 26536 99.0442 197.9438 0010630 194.1312 288.0387 14.12877776653352 1 26536U 00055A 13146.46614231 .00000051 00000-0 52146-4 0 2221 2 26536 99.0442 199.0154 0010672 191.1474 283.7506 14.12878870653500 1 26536U 00055A 13146.46614231 .00000051 00000-0 52146-4 0 2232 2 26536 99.0442 199.0154 0010672 191.1474 283.7506 14.12878870653500 1 26536U 00055A 13147.45949755 .00000019 00000-0 34988-4 0 2243 2 26536 99.0443 200.0187 0010725 188.3882 296.2745 14.12879174653647 1 26536U 00055A 13148.36685515 .00000054 00000-0 53670-4 0 2254 2 26536 99.0443 200.9351 0010786 186.0106 231.2484 14.12879092653772 1 26536U 00055A 13149.44064339 .00000143 00000-0 10117-3 0 2267 2 26536 99.0444 202.0197 0010852 183.1264 292.7897 14.12878736653922 1 26536U 00055A 13149.50900581 .00000147 00000-0 10326-3 0 2279 2 26536 99.0443 202.0887 0010865 182.9643 280.4756 14.12878702653931 1 26536U 00055A 13150.43406568 .00000203 00000-0 13359-3 0 2282 2 26536 99.0443 203.0230 0010908 180.4385 305.5893 14.12878396654063 1 26536U 00055A 13151.42552229 .00000230 00000-0 14808-3 0 2299 2 26536 99.0442 204.0244 0010966 177.8121 308.3326 14.12878660654202 1 26536U 00055A 13152.41603291 .00000210 00000-0 13756-3 0 2306 2 26536 99.0440 205.0249 0010999 174.9574 306.4933 14.12879628654345 1 26536U 00055A 13153.47675080 .00000141 00000-0 10002-3 0 2313 2 26536 99.0439 206.0964 0011038 172.0618 301.5974 14.12880923654498 1 26536U 00055A 13153.47675080 .00000141 00000-0 10002-3 0 2324 2 26536 99.0439 206.0964 0011038 172.0618 301.5974 14.12880923654498 1 26536U 00055A 13154.40014528 .00000080 00000-0 67222-4 0 2332 2 26536 99.0437 207.0291 0011076 169.5205 318.2596 14.12881604654622 1 26536U 00055A 13155.46173907 -.00000023 00000-0 12009-4 0 2348 2 26536 99.0435 208.1014 0011141 166.8269 317.6216 14.12882237654779 1 26536U 00055A 13155.46173907 -.00000023 00000-0 12009-4 0 2359 2 26536 99.0435 208.1014 0011141 166.8269 317.6216 14.12882237654779 1 26536U 00055A 13156.45335831 .00000011 00000-0 30642-4 0 2365 2 26536 99.0434 209.1030 0011193 164.4036 320.9992 14.12882177654917 1 26536U 00055A 13157.14356620 .00000061 00000-0 57503-4 0 2372 2 26536 99.0433 209.8001 0011216 162.4739 231.6425 14.12881994655012 1 26536U 00055A 13158.43446545 .00000154 00000-0 10735-3 0 2380 2 26536 99.0431 211.1040 0011272 158.8836 317.5978 14.12882050655198 1 26536U 00055A 13159.64524322 .00000165 00000-0 11287-3 0 2390 2 26536 99.0430 212.3269 0011325 155.5767 355.9651 14.12882278655364 1 26536U 00055A 13160.41837281 .00000143 00000-0 10106-3 0 2405 2 26536 99.0430 213.1077 0011359 153.6983 328.0928 14.12882760655472 1 26536U 00055A 13161.41150486 .00000072 00000-0 63044-4 0 2413 2 26536 99.0430 214.1107 0011395 151.2561 339.1786 14.12883816655617 1 26536U 00055A 13162.47060354 .00000002 00000-0 25770-4 0 2422 2 26536 99.0431 215.1803 0011427 148.4955 325.9298 14.12884813655768 1 26536U 00055A 13163.46222756 -.00000028 00000-0 92369-5 0 2437 2 26536 99.0431 216.1817 0011448 145.8263 329.5827 14.12885350655901 1 26536U 00055A 13163.46222756 -.00000028 00000-0 92369-5 0 2448 2 26536 99.0431 216.1817 0011448 145.8263 329.5827 14.12885350655901 1 26536U 00055A 13164.45419113 -.00000012 00000-0 18262-4 0 2456 2 26536 99.0432 217.1834 0011474 143.2335 334.8903 14.12885345656047 1 26536U 00055A 13165.14583500 .00000041 00000-0 46378-4 0 2466 2 26536 99.0431 217.8819 0011490 141.3922 252.7525 14.12885033656148 1 26536U 00055A 13166.43668248 .00000139 00000-0 99205-4 0 2478 2 26536 99.0431 219.1855 0011532 138.0399 338.2214 14.12884544656322 1 26536U 00055A 13167.42893556 .00000187 00000-0 12509-3 0 2485 2 26536 99.0430 220.1877 0011567 135.3848 345.0645 14.12884494656467 1 26536U 00055A 13168.42050126 .00000185 00000-0 12372-3 0 2491 2 26536 99.0429 221.1891 0011591 132.9455 348.1950 14.12885094656602 1 26536U 00055A 13169.10488784 .00000089 00000-0 47731-4 0 2505 2 26536 99.0432 221.8771 0011397 129.8336 230.4312 14.12885892656709 1 26536U 00055A 13170.24572284 .00000079 00000-0 66795-4 0 2512 2 26536 99.0425 223.0326 0011616 128.3399 271.4361 14.12886988656861 1 26536U 00055A 13170.80448192 .00000177 00000-0 94961-4 0 2519 2 26536 99.0431 223.5936 0011455 125.3314 234.9407 14.12886432656943 1 26536U 00055A 13171.23715362 .00000030 00000-0 40593-4 0 2524 2 26536 99.0424 224.0339 0011617 125.8573 273.9264 14.12887915657009 1 26536U 00055A 13172.45780332 .00000027 00000-0 39169-4 0 2532 2 26536 99.0423 225.2667 0011644 122.5148 2.5346 14.12888456657173 1 26536U 00055A 13172.60404700 .00000028 00000-0 39766-4 0 2546 2 26536 99.0422 225.4144 0011646 122.1355 26.3549 14.12888472657191 1 26536U 00055A 13173.44766073 .00000063 00000-0 58480-4 0 2557 2 26536 99.0422 226.2664 0011662 119.8838 357.1858 14.12888226657313 1 26536U 00055A 13174.43888817 .00000127 00000-0 92834-4 0 2561 2 26536 99.0421 227.2675 0011669 117.3729 358.6829 14.12888036657452 1 26536U 00055A 13175.42873292 .00000177 00000-0 11938-3 0 2573 2 26536 99.0421 228.2671 0011679 114.8278 353.1845 14.12887972657592 1 26536U 00055A 13176.26606365 .00000168 00000-0 11469-3 0 2581 2 26536 99.0421 229.1126 0011664 112.8215 291.8281 14.12888308657710 1 26536U 00055A 13177.25788840 .00000117 00000-0 87416-4 0 2591 2 26536 99.0422 230.1141 0011652 110.3966 296.2719 14.12888986657855 1 26536U 00055A 13178.24792622 .00000062 00000-0 57609-4 0 2606 2 26536 99.0422 231.1138 0011640 107.8886 291.7152 14.12889948657996 1 26536U 00055A 13179.23939035 -.00000006 00000-0 21179-4 0 2610 2 26536 99.0422 232.1149 0011637 105.3463 294.4461 14.12890892658139 1 26536U 00055A 13180.23104462 -.00000023 00000-0 12082-4 0 2623 2 26536 99.0422 233.1162 0011659 102.6611 298.2917 14.12891356658273 1 26536U 00055A 13180.43549943 .00000129 00000-0 69422-4 0 2516 2 26536 99.0429 233.3188 0010993 100.4046 259.8967 14.12888446658306 1 26536U 00055A 13181.29758198 .00000014 00000-0 32196-4 0 2639 2 26536 99.0422 234.1932 0011668 99.8761 322.9171 14.12890978658425 1 26536U 00055A 13181.29758198 .00000014 00000-0 32196-4 0 2640 2 26536 99.0422 234.1932 0011668 99.8761 322.9171 14.12890978658425 1 26536U 00055A 13181.49773817 .00000184 00000-0 98739-4 0 2516 2 26536 99.0429 234.3915 0011004 97.4688 262.8335 14.12889943658458 1 26536U 00055A 13182.21453837 .00000093 00000-0 74437-4 0 2657 2 26536 99.0421 235.1192 0011670 97.4721 306.7539 14.12890518658558 1 26536U 00055A 13182.48915883 .00000246 00000-0 13241-3 0 2521 2 26536 99.0428 235.3927 0011014 94.7872 265.5160 14.12891718658591 1 26536U 00055A 13183.27588453 .00000153 00000-0 10650-3 0 2661 2 26536 99.0419 236.1909 0011642 94.8753 304.8017 14.12890241658707 1 26536U 00055A 13183.27588453 .00000153 00000-0 10650-3 0 2672 2 26536 99.0419 236.1909 0011642 94.8753 304.8017 14.12890241658707 1 26536U 00055A 13184.34064701 .00000183 00000-0 12270-3 0 2680 2 26536 99.0417 237.2662 0011577 92.2974 320.1951 14.12890522658853 1 26536U 00055A 13184.34064701 .00000183 00000-0 12270-3 0 2691 2 26536 99.0417 237.2662 0011577 92.2974 320.1951 14.12890522658853 1 26536U 00055A 13185.26015831 .00000158 00000-0 10935-3 0 2703 2 26536 99.0416 238.1948 0011529 89.9950 316.9133 14.12891348658989 1 26536U 00055A 13186.32578419 .00000085 00000-0 70004-4 0 2711 2 26536 99.0413 239.2710 0011518 87.2171 336.8934 14.12892558659131 1 26536U 00055A 13187.40052725 .00000022 00000-0 36450-4 0 2727 2 26536 99.0411 240.3563 0011556 84.2942 43.3702 14.12893569659285 1 26536U 00055A 13187.61797021 .00000006 00000-0 27659-4 0 2739 2 26536 99.0410 240.5759 0011551 83.7171 69.3384 14.12893703659314 1 26536U 00055A 13188.46214934 .00000019 00000-0 34481-4 0 2746 2 26536 99.0410 241.4283 0011541 81.5366 42.9852 14.12894128659439 1 26536U 00055A 13189.29979788 .00000021 00000-0 35500-4 0 2750 2 26536 99.0409 242.2741 0011510 79.3893 343.4028 14.12894049659550 1 26536U 00055A 13190.59154264 .00000103 00000-0 79674-4 0 2761 2 26536 99.0410 243.5783 0011438 76.1255 73.3833 14.12893496659736 1 26536U 00055A 13191.27846751 .00000139 00000-0 99171-4 0 2770 2 26536 99.0410 244.2718 0011386 74.3703 327.1911 14.12893712659831 1 26536U 00055A 13192.13059539 .00000151 00000-0 10563-3 0 2788 2 26536 99.0410 245.1321 0011420 72.1163 341.3235 14.12893815659950 1 26536U 00055A 13193.33576299 .00000121 00000-0 89391-4 0 2792 2 26536 99.0410 246.3489 0011386 68.9709 351.0582 14.12894588660120 1 26536U 00055A 13194.41015727 .00000051 00000-0 51749-4 0 2817 2 26536 99.0410 247.4336 0011326 66.1600 55.6586 14.12895589660276 1 26536U 00055A 13194.41015727 .00000051 00000-0 51749-4 0 2828 2 26536 99.0410 247.4336 0011326 66.1600 55.6586 14.12895589660276 1 26536U 00055A 13195.40271554 -.00000003 00000-0 22937-4 0 2836 2 26536 99.0410 248.4357 0011298 63.5072 64.0817 14.12896530660416 1 26536U 00055A 13196.23524554 -.00000019 00000-0 14052-4 0 2846 2 26536 99.0409 249.2763 0011290 61.2686 338.5747 14.12896871660534 1 26536U 00055A 13198.36379264 .00000088 00000-0 71680-4 0 2865 2 26536 99.0406 251.4255 0011202 55.6239 4.9263 14.12896326660831 1 26536U 00055A 13198.36379264 .00000088 00000-0 71680-4 0 2876 2 26536 99.0406 251.4255 0011202 55.6239 4.9263 14.12896326660831 1 26536U 00055A 13199.28067797 .00000149 00000-0 10432-3 0 2889 2 26536 99.0405 252.3513 0011137 53.1708 348.4690 14.12896067660964 1 26536U 00055A 13199.69743520 .00000160 00000-0 85971-4 0 2883 2 26536 99.0398 252.7664 0011148 50.0791 310.1834 14.12896811661027 1 26536U 00055A 13200.34539233 .00000188 00000-0 12540-3 0 2894 2 26536 99.0403 253.4264 0011078 50.3397 3.8933 14.12896413661119 1 26536U 00055A 13200.34539233 .00000188 00000-0 12540-3 0 2906 2 26536 99.0403 253.4264 0011078 50.3397 3.8933 14.12896413661119 1 26536U 00055A 13201.42079833 .00000172 00000-0 11698-3 0 2918 2 26536 99.0401 254.5123 0011011 47.4822 73.6947 14.12897206661267 1 26536U 00055A 13201.42079833 .00000172 00000-0 11698-3 0 2929 2 26536 99.0401 254.5123 0011011 47.4822 73.6947 14.12897206661267 1 26536U 00055A 13202.41436947 .00000088 00000-0 71476-4 0 2930 2 26536 99.0399 255.5155 0010946 44.7698 87.3337 14.12898211661404 1 26536U 00055A 13203.40488273 .00000031 00000-0 41056-4 0 2949 2 26536 99.0397 256.5156 0010903 42.1086 85.3785 14.12899125661545 1 26536U 00055A 13204.46646597 -.00000013 00000-0 17292-4 0 2958 2 26536 99.0397 257.5873 0010847 39.1947 84.9725 14.12899779661691 1 26536U 00055A 13205.45805922 .00000013 00000-0 31486-4 0 2968 2 26536 99.0397 258.5883 0010799 36.4661 88.5845 14.12899819661836 1 26536U 00055A 13206.77900434 .00000096 00000-0 51542-4 0 2997 2 26536 99.0398 259.9170 0010943 30.9922 329.2370 14.12898619662028 1 26536U 00055A 13207.43914573 .00000143 00000-0 10114-3 0 2981 2 26536 99.0398 260.5881 0010749 31.1442 85.0035 14.12899106662116 1 26536U 00055A 13208.50552701 .00000169 00000-0 11509-3 0 2999 2 26536 99.0397 261.6646 0010695 28.2547 108.9718 14.12899040662265 1 26536U 00055A 13208.58312677 .00000173 00000-0 11721-3 0 3007 2 26536 99.0397 261.7429 0010690 28.0599 143.6541 14.12899106662279 1 26536U 00055A 13209.26632631 .00000171 00000-0 11639-3 0 3015 2 26536 99.0397 262.4326 0010650 26.1658 18.6751 14.12899395662379 1 26536U 00055A 13210.48360531 .00000086 00000-0 70729-4 0 3020 2 26536 99.0397 263.6614 0010538 22.6057 90.4167 14.12900399662546 1 26536U 00055A 13210.48360531 .00000086 00000-0 70729-4 0 3031 2 26536 99.0397 263.6614 0010538 22.6057 90.4167 14.12900399662546 1 26536U 00055A 13211.39417891 .00000037 00000-0 44501-4 0 3040 2 26536 99.0396 264.5807 0010461 19.8858 42.1464 14.12901171662678 1 26536U 00055A 13212.46859817 .00000009 00000-0 29214-4 0 3051 2 26536 99.0395 265.6653 0010414 16.7937 107.1802 14.12901931662829 1 26536U 00055A 13212.46859817 .00000009 00000-0 29214-4 0 3062 2 26536 99.0395 265.6653 0010414 16.7937 107.1802 14.12901931662829 1 26536U 00055A 13213.23140197 .00000037 00000-0 44637-4 0 3070 2 26536 99.0393 266.4355 0010380 14.6238 27.1601 14.12902036662935 1 26536U 00055A 13213.23140197 .00000037 00000-0 44637-4 0 3081 2 26536 99.0393 266.4355 0010380 14.6238 27.1601 14.12902036662935 1 26536U 00055A 13214.73944113 .00000117 00000-0 87490-4 0 3091 2 26536 99.0389 267.9579 0010322 10.3648 137.7330 14.12901740663140 1 26536U 00055A 13216.43457736 .00000202 00000-0 13316-3 0 3113 2 26536 99.0384 269.6692 0010258 5.5996 119.9447 14.12901389663386 1 26536U 00055A 13217.64386684 .00000199 00000-0 13144-3 0 3125 2 26536 99.0381 270.8900 0010189 2.1208 151.0008 14.12902437663555 1 26536U 00055A 13218.40560641 .00000151 00000-0 10537-3 0 3139 2 26536 99.0380 271.6589 0010155 359.9645 65.5575 14.12902938663663 1 26536U 00055A 13219.40918513 .00000051 00000-0 51961-4 0 3142 2 26536 99.0380 272.6719 0010103 356.9859 130.3564 14.12903876663803 1 26536U 00055A 13220.16971075 .00000008 00000-0 29033-4 0 3157 2 26536 99.0379 273.4394 0010059 354.6222 38.9512 14.12904414663915 1 26536U 00055A 13221.37928953 -.00000010 00000-0 19276-4 0 3161 2 26536 99.0380 274.6601 0010004 351.0183 71.6121 14.12904921664080 1 26536U 00055A 13222.45426365 .00000067 00000-0 60677-4 0 3174 2 26536 99.0380 275.7451 0009966 347.8776 139.5346 14.12904695664239 1 26536U 00055A 13222.45426365 .00000067 00000-0 60677-4 0 3185 2 26536 99.0380 275.7451 0009966 347.8776 139.5346 14.12904695664239 1 26536U 00055A 13223.44340134 .00000128 00000-0 93192-4 0 3191 2 26536 99.0380 276.7434 0009916 344.9662 130.8677 14.12904280664374 1 26536U 00055A 13224.13916339 .00000152 00000-0 10610-3 0 3206 2 26536 99.0379 277.4457 0009892 342.9899 69.8482 14.12903983664473 1 26536U 00055A 13225.19739410 .00000194 00000-0 12853-3 0 3214 2 26536 99.0378 278.5137 0009844 339.8154 52.6854 14.12904025664623 1 26536U 00055A 13225.19739410 .00000194 00000-0 12853-3 0 3225 2 26536 99.0378 278.5137 0009844 339.8154 52.6854 14.12904025664623 1 26536U 00055A 13226.42031071 .00000186 00000-0 12428-3 0 3230 2 26536 99.0377 279.7481 0009791 335.8827 153.4815 14.12904982664798 1 26536U 00055A 13227.25277748 .00000129 00000-0 94020-4 0 3242 2 26536 99.0375 280.5883 0009764 333.2955 68.0266 14.12905843664918 1 26536U 00055A 13228.40281802 .00000027 00000-0 38885-4 0 3251 2 26536 99.0372 281.7492 0009722 329.8751 157.8370 14.12907097665077 1 26536U 00055A 13228.40281802 .00000027 00000-0 38885-4 0 3262 2 26536 99.0372 281.7492 0009722 329.8751 157.8370 14.12907097665077 1 26536U 00055A 13229.46442916 .00000026 00000-0 38759-4 0 3274 2 26536 99.0370 282.8208 0009688 326.7094 157.8554 14.12907330665220 1 26536U 00055A 13229.46442916 .00000026 00000-0 38759-4 0 3285 2 26536 99.0370 282.8208 0009688 326.7094 157.8554 14.12907330665220 1 26536U 00055A 13230.45636880 .00000070 00000-0 62271-4 0 3297 2 26536 99.0367 283.8220 0009664 323.5812 163.6558 14.12907141665362 1 26536U 00055A 13231.44552471 .00000130 00000-0 94131-4 0 3309 2 26536 99.0365 284.8203 0009632 320.6795 155.0796 14.12906946665502 1 26536U 00055A 13232.28068892 .00000176 00000-0 11926-3 0 3312 2 26536 99.0363 285.6631 0009614 318.0101 83.4310 14.12906880665622 1 26536U 00055A 13233.41671457 .00000204 00000-0 13390-3 0 3325 2 26536 99.0361 286.8095 0009574 314.5526 102.0431 14.12907305665786 1 26536U 00055A 13233.41671457 .00000204 00000-0 13390-3 0 3336 2 26536 99.0361 286.8095 0009574 314.5526 102.0431 14.12907305665786 1 26536U 00055A 13234.48993204 .00000153 00000-0 10687-3 0 3341 2 26536 99.0360 287.8925 0009553 311.1433 161.3104 14.12908121665934 1 26536U 00055A 13235.41239623 .00000098 00000-0 76930-4 0 3356 2 26536 99.0360 288.8232 0009558 308.1037 173.8320 14.12909046666067 1 26536U 00055A 13236.47319078 .00000018 00000-0 34224-4 0 3369 2 26536 99.0360 289.8936 0009545 304.7714 169.8719 14.12910059666219 1 26536U 00055A 13237.46653574 -.00000003 00000-0 22877-4 0 3378 2 26536 99.0361 290.8960 0009542 301.6969 182.7686 14.12910441666351 1 26536U 00055A 13239.22143462 .00000079 00000-0 66905-4 0 3398 2 26536 99.0360 292.6668 0009513 296.3640 109.4107 14.12909853666606 1 26536U 00055A 13240.37081499 .00000151 00000-0 10550-3 0 3404 2 26536 99.0359 293.8266 0009485 292.8502 195.9845 14.12909620666765 1 26536U 00055A 13240.37081499 .00000151 00000-0 10550-3 0 3415 2 26536 99.0359 293.8266 0009485 292.8502 195.9845 14.12909620666765 1 26536U 00055A 13241.27439340 .00000199 00000-0 13114-3 0 3429 2 26536 99.0357 294.7385 0009486 289.9568 112.3623 14.12909664666894 1 26536U 00055A 13242.12624249 .00000190 00000-0 12632-3 0 3434 2 26536 99.0355 295.5981 0009515 287.1857 125.6419 14.12910076667011 1 26536U 00055A 13243.19152124 .00000149 00000-0 10467-3 0 3449 2 26536 99.0352 296.6731 0009563 283.6916 144.6462 14.12911129667168 1 26536U 00055A 13243.41464909 .00000134 00000-0 96247-4 0 3457 2 26536 99.0351 296.8982 0009546 283.0132 199.6302 14.12911412667193 1 26536U 00055A 13244.40705016 .00000078 00000-0 66397-4 0 3465 2 26536 99.0349 297.8997 0009557 279.9266 207.7447 14.12912306667331 1 26536U 00055A 13245.10192645 .00000038 00000-0 45076-4 0 3479 2 26536 99.0346 298.6009 0009559 277.8267 142.3599 14.12912740667436 1 26536U 00055A 13246.15643483 .00000027 00000-0 39198-4 0 3483 2 26536 99.0343 299.6650 0009533 274.6692 106.2850 14.12912829667588 1 26536U 00055A 13246.46021397 .00000037 00000-0 44180-4 0 3490 2 26536 99.0343 299.9715 0009543 273.7029 211.5639 14.12912772667625 1 26536U 00055A 13247.45249965 .00000117 00000-0 87524-4 0 3503 2 26536 99.0341 300.9726 0009568 270.6337 219.0860 14.12912557667768 1 26536U 00055A 13248.51625075 .00000178 00000-0 11998-3 0 3510 2 26536 99.0339 302.0458 0009589 267.3509 230.1279 14.12912337667918 1 26536U 00055A 13249.50850766 .00000175 00000-0 11862-3 0 3525 2 26536 99.0338 303.0468 0009630 264.1994 237.5842 14.12912517668052 1 26536U 00055A 13250.42514836 .00000157 00000-0 10904-3 0 3530 2 26536 99.0338 303.9715 0009653 261.3075 220.3721 14.12913044668186 1 26536U 00055A 13251.48571652 .00000125 00000-0 91589-4 0 3541 2 26536 99.0338 305.0414 0009706 258.0384 215.2152 14.12914040668335 1 26536U 00055A 13251.48571652 .00000125 00000-0 91589-4 0 3552 2 26536 99.0338 305.0414 0009706 258.0384 215.2152 14.12914040668335 1 26536U 00055A 13252.40914554 .00000040 00000-0 46022-4 0 3566 2 26536 99.0338 305.9729 0009717 255.2205 232.4388 14.12914857668468 1 26536U 00055A 13253.47070145 -.00000000 00000-0 24254-4 0 3574 2 26536 99.0337 307.0437 0009722 251.9776 232.2827 14.12915376668618 1 26536U 00055A 13254.46229657 .00000034 00000-0 42663-4 0 3589 2 26536 99.0337 308.0441 0009765 248.9981 236.2105 14.12915434668758 1 26536U 00055A 13255.45422707 .00000121 00000-0 89748-4 0 3593 2 26536 99.0335 309.0447 0009793 246.0279 241.8370 14.12915029668894 1 26536U 00055A 13256.44334921 .00000188 00000-0 12520-3 0 3601 2 26536 99.0333 310.0426 0009804 242.9990 233.2457 14.12914699669039 1 26536U 00055A 13257.43666351 .00000223 00000-0 14447-3 0 3617 2 26536 99.0330 311.0448 0009851 239.9850 245.9492 14.12914641669175 1 26536U 00055A 13257.43666351 .00000223 00000-0 14447-3 0 3628 2 26536 99.0330 311.0448 0009851 239.9850 245.9492 14.12914641669175 1 26536U 00055A 13258.42713368 .00000212 00000-0 13827-3 0 3639 2 26536 99.0327 312.0440 0009902 236.9980 244.1649 14.12915046669313 1 26536U 00055A 13259.19218159 .00000170 00000-0 11595-3 0 3646 2 26536 99.0324 312.8158 0009972 234.8169 175.5993 14.12915694669427 1 26536U 00055A 13260.11300345 .00000116 00000-0 86686-4 0 3654 2 26536 99.0322 313.7448 0010026 232.1407 179.4337 14.12916703669556 1 26536U 00055A 13261.47273921 .00000018 00000-0 33965-4 0 3667 2 26536 99.0319 315.1164 0010063 228.0106 256.0222 14.12917921669743 1 26536U 00055A 13261.47273921 .00000018 00000-0 33965-4 0 3678 2 26536 99.0319 315.1164 0010063 228.0106 256.0222 14.12917921669743 1 26536U 00055A 13261.75867145 .00000010 00000-0 29717-4 0 3689 2 26536 99.0318 315.4047 0010072 227.1446 270.4763 14.12918087669780 1 26536U 00055A 13262.79383875 .00000099 00000-0 52923-4 0 3689 2 26536 99.0326 316.4447 0009846 225.7634 134.3217 14.12916681669931 1 26536U 00055A 13263.15953311 .00000055 00000-0 54231-4 0 3695 2 26536 99.0316 316.8176 0010105 222.9323 196.2294 14.12918080669989 1 26536U 00055A 13263.38634009 .00000075 00000-0 64546-4 0 3704 2 26536 99.0316 317.0463 0010105 222.2325 269.9456 14.12917976670013 1 26536U 00055A 13264.44817867 .00000147 00000-0 10351-3 0 3712 2 26536 99.0316 318.1171 0010161 219.2164 271.0187 14.12917513670168 1 26536U 00055A 13264.44817867 .00000147 00000-0 10351-3 0 3723 2 26536 99.0316 318.1171 0010161 219.2164 271.0187 14.12917513670168 1 26536U 00055A 13265.43869436 .00000180 00000-0 12133-3 0 3730 2 26536 99.0316 319.1161 0010227 216.5151 269.1921 14.12917441670307 1 26536U 00055A 13266.42919461 .00000184 00000-0 12339-3 0 3747 2 26536 99.0316 320.1150 0010278 213.6302 267.4685 14.12917990670441 1 26536U 00055A 13267.42237554 .00000159 00000-0 11006-3 0 3757 2 26536 99.0315 321.1167 0010337 210.8272 279.2901 14.12918761670584 1 26536U 00055A 13268.04593182 .00000109 00000-0 83030-4 0 3761 2 26536 99.0315 321.7456 0010367 209.0109 211.0694 14.12919469670672 1 26536U 00055A 13269.18013845 .00000036 00000-0 43753-4 0 3778 2 26536 99.0314 322.8895 0010425 205.7255 220.3057 14.12920376670833 1 26536U 00055A 13269.47304914 .00000018 00000-0 33995-4 0 3788 2 26536 99.0314 323.1849 0010434 204.8218 270.2766 14.12920589670876 1 26536U 00055A 13270.46169236 .00000038 00000-0 45000-4 0 3798 2 26536 99.0312 324.1820 0010492 202.1702 258.8870 14.12920756671018 1 26536U 00055A 13271.45829870 .00000104 00000-0 80100-4 0 3801 2 26536 99.0310 325.1872 0010534 199.3597 288.1423 14.12920485671154 1 26536U 00055A 13272.45022470 .00000178 00000-0 11998-3 0 3813 2 26536 99.0307 326.1876 0010574 196.5529 293.6017 14.12920203671296 1 26536U 00055A 13273.13780916 .00000223 00000-0 14394-3 0 3820 2 26536 99.0304 326.8811 0010606 194.6558 190.9704 14.12919992671392 1 26536U 00055A 13274.21295034 .00000262 00000-0 16525-3 0 3834 2 26536 99.0300 327.9654 0010665 191.6795 259.6369 14.12920350671547 1 26536U 00055A 13275.49181818 .00000245 00000-0 15576-3 0 3846 2 26536 99.0296 329.2551 0010732 188.1024 284.5852 14.12922211671725 1 26536U 00055A 13275.49181818 .00000245 00000-0 15576-3 0 3857 2 26536 99.0296 329.2551 0010732 188.1024 284.5852 14.12922211671725 1 26536U 00055A 13276.48344404 .00000111 00000-0 84244-4 0 3861 2 26536 99.0293 330.2550 0010793 185.2863 288.5255 14.12922882671869 1 26536U 00055A 13277.40679471 .00000035 00000-0 43112-4 0 3874 2 26536 99.0292 331.1861 0010842 182.7493 305.0982 14.12923572671992 1 26536U 00055A 13278.46838431 .00000009 00000-0 29322-4 0 3883 2 26536 99.0291 332.2564 0010884 179.8770 304.7761 14.12923982672148 1 26536U 00055A 13278.46838431 .00000009 00000-0 29322-4 0 3894 2 26536 99.0291 332.2564 0010884 179.8770 304.7761 14.12923982672148 1 26536U 00055A 13279.16409969 .00000037 00000-0 44280-4 0 3905 2 26536 99.0291 332.9579 0010905 178.0807 243.3848 14.12924028672244 1 26536U 00055A 13280.44945216 .00000130 00000-0 94399-4 0 3919 2 26536 99.0291 334.2537 0010950 174.5443 301.2803 14.12923741672426 1 26536U 00055A 13281.44274043 .00000207 00000-0 13557-3 0 3925 2 26536 99.0291 335.2552 0010985 171.8861 313.5276 14.12923351672568 1 26536U 00055A 13282.43430442 .00000229 00000-0 14739-3 0 3930 2 26536 99.0290 336.2549 0011028 169.2593 316.9747 14.12924153672703 1 26536U 00055A 13283.42475376 .00000199 00000-0 13105-3 0 3948 2 26536 99.0289 337.2536 0011090 166.4429 314.9450 14.12924769672841 1 26536U 00055A 13284.48543372 .00000129 00000-0 93586-4 0 3953 2 26536 99.0288 338.3231 0011146 163.5638 310.0092 14.12925676672999 1 26536U 00055A 13284.48543372 .00000129 00000-0 93586-4 0 3964 2 26536 99.0288 338.3231 0011146 163.5638 310.0092 14.12925676672999 1 26536U 00055A 13285.40880963 .00000054 00000-0 53380-4 0 3973 2 26536 99.0286 339.2541 0011180 161.1530 326.5938 14.12926478673122 1 26536U 00055A 13286.47039473 .00000050 00000-0 51185-4 0 3981 2 26536 99.0284 340.3245 0011197 158.5529 325.9879 14.12927021673278 1 26536U 00055A 13286.47039473 .00000050 00000-0 51185-4 0 3992 2 26536 99.0284 340.3245 0011197 158.5529 325.9879 14.12927021673278 1 26536U 00055A 13287.46196366 .00000107 00000-0 81986-4 0 4005 2 26536 99.0281 341.3242 0011232 155.8375 329.5598 14.12927077673417 1 26536U 00055A 13288.45144749 .00000228 00000-0 14652-3 0 4013 2 26536 99.0277 342.3218 0011255 153.1662 322.4906 14.12927129673559 1 26536U 00055A 13289.44300227 .00000228 00000-0 14703-3 0 4026 2 26536 99.0275 343.3216 0011292 150.5119 325.9329 14.12927072673694 1 26536U 00055A 13291.42675730 .00000231 00000-0 14817-3 0 4043 2 26536 99.0270 345.3214 0011368 145.3056 335.9929 14.12928001673976 1 26536U 00055A 13292.41995573 .00000176 00000-0 11889-3 0 4058 2 26536 99.0269 346.3226 0011390 142.8241 347.6154 14.12929078674113 1 26536U 00055A 13293.41080105 .00000119 00000-0 88328-4 0 4066 2 26536 99.0268 347.3214 0011397 140.3315 347.2885 14.12930245674252 1 26536U 00055A 13294.47061819 .00000077 00000-0 65936-4 0 4078 2 26536 99.0268 348.3896 0011421 137.5392 337.8998 14.12931149674401 1 26536U 00055A 13294.47061819 .00000077 00000-0 65936-4 0 4089 2 26536 99.0268 348.3896 0011421 137.5392 337.8998 14.12931149674401 1 26536U 00055A 13295.37961515 .00000101 00000-0 78442-4 0 4096 2 26536 99.0268 349.3058 0011427 135.1891 281.3458 14.12931238674533 1 26536U 00055A 13296.45342044 .00000177 00000-0 11927-3 0 4105 2 26536 99.0268 350.3882 0011450 132.3169 343.1589 14.12931182674689 1 26536U 00055A 13296.45342044 .00000177 00000-0 11927-3 0 4116 2 26536 99.0268 350.3882 0011450 132.3169 343.1589 14.12931182674689 1 26536U 00055A 13297.51981513 .00000251 00000-0 15884-3 0 4124 2 26536 99.0268 351.4631 0011478 129.4763 7.2677 14.12930946674830 1 26536U 00055A 13298.43824950 .00000278 00000-0 17347-3 0 4133 2 26536 99.0266 352.3888 0011509 127.1549 358.6659 14.12930628674968 1 26536U 00055A 13299.42872356 .00000272 00000-0 17028-3 0 4147 2 26536 99.0265 353.3873 0011516 124.6350 356.4914 14.12931101675106 1 26536U 00055A 13300.42205935 .00000220 00000-0 14258-3 0 4159 2 26536 99.0263 354.3886 0011516 122.0871 8.8907 14.12932567675241 1 26536U 00055A 13301.41277437 .00000149 00000-0 10414-3 0 4166 2 26536 99.0260 355.3872 0011533 119.5382 7.9702 14.12933706675385 1 26536U 00055A 13302.47014623 .00000186 00000-0 12429-3 0 4179 2 26536 99.0256 356.4531 0011547 116.7240 346.1858 14.12934105675532 1 26536U 00055A 13302.47014623 .00000186 00000-0 12429-3 0 4180 2 26536 99.0256 356.4531 0011547 116.7240 346.1858 14.12934105675532 1 26536U 00055A 13303.46173128 .00000159 00000-0 10992-3 0 4190 2 26536 99.0254 357.4525 0011506 114.1904 349.6820 14.12934649675673 1 26536U 00055A 13304.53030390 .00000251 00000-0 15898-3 0 4207 2 26536 99.0251 358.5294 0011533 111.3587 24.8665 14.12934803675829 1 26536U 00055A 13305.65852747 .00000273 00000-0 17078-3 0 4216 2 26536 99.0247 359.6664 0011574 108.4318 3.3987 14.12934728675983 1 26536U 00055A 13306.44020733 .00000290 00000-0 18008-3 0 4220 2 26536 99.0246 0.4542 0011574 106.4182 19.2760 14.12934727676092 1 26536U 00055A 13307.49968128 .00000272 00000-0 17028-3 0 4237 2 26536 99.0245 1.5219 0011571 103.7077 8.0832 14.12935487676241 1 26536U 00055A 13307.49968128 .00000272 00000-0 17028-3 0 4248 2 26536 99.0245 1.5219 0011571 103.7077 8.0832 14.12935487676241 1 26536U 00055A 13308.49130407 .00000216 00000-0 14046-3 0 4256 2 26536 99.0245 2.5213 0011553 101.1813 11.7679 14.12936541676383 1 26536U 00055A 13309.41368012 .00000149 00000-0 10425-3 0 4267 2 26536 99.0245 3.4508 0011518 98.7940 23.2822 14.12937795676518 1 26536U 00055A 13309.75887453 .00000118 00000-0 87723-4 0 4272 2 26536 99.0245 3.7986 0011517 97.9070 339.0509 14.12938192676562 1 26536U 00055A 13309.75887453 .00000118 00000-0 87723-4 0 4283 2 26536 99.0245 3.7986 0011517 97.9070 339.0509 14.12938192676562 1 26536U 00055A 13311.16400478 .00000082 00000-0 68559-4 0 4296 2 26536 99.0245 5.2146 0011506 94.1932 286.1025 14.12939000676767 1 26536U 00055A 13311.38424457 .00000100 00000-0 77863-4 0 4304 2 26536 99.0246 5.4365 0011500 93.6117 326.3304 14.12939127676796 1 26536U 00055A 13312.53221137 .00000148 00000-0 10395-3 0 4311 2 26536 99.0246 6.5933 0011462 90.5647 45.3677 14.12938936676956 1 26536U 00055A 13312.53221137 .00000148 00000-0 10395-3 0 4322 2 26536 99.0246 6.5933 0011462 90.5647 45.3677 14.12938936676956 1 26536U 00055A 13313.52321640 .00000213 00000-0 13887-3 0 4335 2 26536 99.0244 7.5920 0011457 87.9606 46.0077 14.12938760677093 1 26536U 00055A 13314.44212852 .00000243 00000-0 15479-3 0 4344 2 26536 99.0242 8.5181 0011489 85.7033 39.7981 14.12938664677227 1 26536U 00055A 13315.50157986 .00000238 00000-0 15223-3 0 4350 2 26536 99.0239 9.5858 0011459 83.0162 28.4834 14.12939465677374 1 26536U 00055A 13316.49320579 .00000236 00000-0 15089-3 0 4368 2 26536 99.0236 10.5851 0011401 80.3965 32.2925 14.12940530677519 1 26536U 00055A 13317.48481434 .00000136 00000-0 97434-4 0 4371 2 26536 99.0233 11.5844 0011327 77.6832 36.1084 14.12941716677659 1 26536U 00055A 13318.17410781 .00000134 00000-0 96222-4 0 4388 2 26536 99.0231 12.2790 0011312 75.8515 302.1462 14.12942422677759 1 26536U 00055A 13318.47640735 .00000127 00000-0 92577-4 0 4397 2 26536 99.0229 12.5835 0011322 75.1363 39.6825 14.12942708677790 1 26536U 00055A 13319.46973002 .00000133 00000-0 95587-4 0 4406 2 26536 99.0227 13.5844 0011306 72.5248 52.1198 14.12943467677936 1 26536U 00055A 13320.46165160 .00000183 00000-0 12249-3 0 4415 2 26536 99.0224 14.5838 0011318 70.0618 57.2907 14.12944221678073 1 26536U 00055A 13321.60395140 .00000251 00000-0 15916-3 0 4426 2 26536 99.0223 15.7347 0011271 66.9885 107.5656 14.12944233678239 1 26536U 00055A 13322.44402557 .00000274 00000-0 17127-3 0 4432 2 26536 99.0222 16.5811 0011236 64.7246 60.5836 14.12944068678358 1 26536U 00055A 13323.50347047 .00000346 00000-0 20975-3 0 4448 2 26536 99.0221 17.6485 0011187 61.8869 49.4065 14.12944475678509 1 26536U 00055A 13323.50347047 .00000346 00000-0 20975-3 0 4459 2 26536 99.0221 17.6485 0011187 61.8869 49.4065 14.12944475678509 1 26536U 00055A 13325.48670172 .00000233 00000-0 14942-3 0 4470 2 26536 99.0221 19.6464 0011113 56.6762 56.9294 14.12946638678781 1 26536U 00055A 13326.47830301 .00000152 00000-0 10619-3 0 4480 2 26536 99.0220 20.6454 0011073 54.0480 60.6443 14.12947646678929 1 26536U 00055A 13327.54303519 .00000143 00000-0 10110-3 0 4492 2 26536 99.0220 21.7181 0011035 51.1777 76.3887 14.12948233679079 1 26536U 00055A 13327.54303519 .00000143 00000-0 10110-3 0 4504 2 26536 99.0220 21.7181 0011035 51.1777 76.3887 14.12948233679079 1 26536U 00055A 13328.53005697 .00000207 00000-0 13567-3 0 4511 2 26536 99.0219 22.7125 0010990 48.3665 57.0166 14.12948017679211 1 26536U 00055A 13329.45263648 .00000229 00000-0 14723-3 0 4525 2 26536 99.0218 23.6421 0010951 45.7701 69.8201 14.12947738679342 1 26536U 00055A 13330.36179858 .00000233 00000-0 14947-3 0 4530 2 26536 99.0215 24.5581 0010917 43.3911 14.1943 14.12947546679472 1 26536U 00055A 13331.50533047 .00000284 00000-0 17658-3 0 4540 2 26536 99.0211 25.7101 0010874 40.4914 70.5758 14.12947820679635 1 26536U 00055A 13331.50533047 .00000284 00000-0 17658-3 0 4551 2 26536 99.0211 25.7101 0010874 40.4914 70.5758 14.12947820679635 1 26536U 00055A 13332.57916472 .00000250 00000-0 15828-3 0 4567 2 26536 99.0208 26.7919 0010809 37.5359 132.6815 14.12948662679782 1 26536U 00055A 13332.57916472 .00000250 00000-0 15828-3 0 4578 2 26536 99.0208 26.7919 0010809 37.5359 132.6815 14.12948662679782 1 26536U 00055A 13333.48863890 .00000206 00000-0 13475-3 0 4582 2 26536 99.0205 27.7082 0010759 34.9457 78.8501 14.12949617679914 1 26536U 00055A 13334.48188337 .00000128 00000-0 92999-4 0 4592 2 26536 99.0203 28.7088 0010713 32.1039 91.1426 14.12950985680056 1 26536U 00055A 13335.47354466 .00000115 00000-0 86059-4 0 4608 2 26536 99.0201 29.7077 0010676 29.3774 95.2768 14.12951725680197 1 26536U 00055A 13336.53738762 .00000129 00000-0 93628-4 0 4617 2 26536 99.0200 30.7793 0010635 26.5394 106.4852 14.12951803680348 1 26536U 00055A 13336.53738762 .00000129 00000-0 93628-4 0 4628 2 26536 99.0200 30.7793 0010635 26.5394 106.4852 14.12951803680348 1 26536U 00055A 13337.52814078 .00000150 00000-0 10508-3 0 4633 2 26536 99.0200 31.7772 0010593 23.6731 106.1514 14.12951589680480 1 26536U 00055A 13338.44431235 .00000206 00000-0 13488-3 0 4648 2 26536 99.0200 32.7001 0010551 21.1589 86.3076 14.12951575680616 1 26536U 00055A 13339.43929669 .00000219 00000-0 14166-3 0 4650 2 26536 99.0200 33.7023 0010503 18.2125 107.5633 14.12951857680754 1 26536U 00055A 13339.69784851 .00000285 00000-0 15308-3 0 4663 2 26536 99.0202 33.9597 0010711 16.7495 343.4509 14.12952958680798 1 26536U 00055A 13339.76866145 .00000291 00000-0 15618-3 0 4681 2 26536 99.0202 34.0310 0010717 16.5539 343.6460 14.12953036680804 1 26536U 00055A 13340.20260970 .00000240 00000-0 15313-3 0 4660 2 26536 99.0199 34.4711 0010459 16.0237 30.2880 14.12952517680865 1 26536U 00055A 13340.20260970 .00000240 00000-0 15313-3 0 4671 2 26536 99.0199 34.4711 0010459 16.0237 30.2880 14.12952517680865 1 26536U 00055A 13341.49041352 .00000189 00000-0 12582-3 0 4682 2 26536 99.0199 35.7683 0010390 12.3572 100.9007 14.12953842681041 1 26536U 00055A 13341.49041352 .00000189 00000-0 12582-3 0 4693 2 26536 99.0199 35.7683 0010390 12.3572 100.9007 14.12953842681041 1 26536U 00055A 13341.49041352 .00000189 00000-0 12582-3 0 4705 2 26536 99.0199 35.7683 0010390 12.3572 100.9007 14.12953842681041 1 26536U 00055A 13342.48408164 .00000127 00000-0 92385-4 0 4716 2 26536 99.0197 36.7693 0010331 9.6775 115.1996 14.12955278681185 1 26536U 00055A 13343.40524898 .00000080 00000-0 67518-4 0 4721 2 26536 99.0196 37.6971 0010290 6.9605 120.9601 14.12955738681312 1 26536U 00055A 13344.53756016 .00000131 00000-0 94944-4 0 4736 2 26536 99.0194 38.8377 0010257 3.5370 120.8496 14.12956003681472 1 26536U 00055A 13344.53756016 .00000131 00000-0 94944-4 0 4747 2 26536 99.0194 38.8377 0010257 3.5370 120.8496 14.12956003681472 1 26536U 00055A 13345.53083082 .00000200 00000-0 13189-3 0 4753 2 26536 99.0190 39.8382 0010212 0.8209 133.1788 14.12955896681613 1 26536U 00055A 13346.52255638 .00000279 00000-0 17405-3 0 4763 2 26536 99.0187 40.8371 0010157 358.1158 137.6420 14.12956037681754 1 26536U 00055A 13346.77913672 .00000204 00000-0 10961-3 0 4767 2 26536 99.0198 41.0934 0010439 356.3863 3.7710 14.12955752681792 1 26536U 00055A 13348.50062625 .00000293 00000-0 18187-3 0 4781 2 26536 99.0181 42.8294 0010089 352.0732 119.8414 14.12957479682037 1 26536U 00055A 13349.49223171 .00000228 00000-0 14667-3 0 4793 2 26536 99.0179 43.8281 0010061 348.9716 124.0904 14.12958664682171 1 26536U 00055A 13350.41458733 .00000149 00000-0 10425-3 0 4803 2 26536 99.0176 44.7571 0009989 346.3802 135.7773 14.12959747682306 1 26536U 00055A 13351.47540412 .00000088 00000-0 71732-4 0 4818 2 26536 99.0175 45.8254 0009942 343.2557 131.9144 14.12960720682456 1 26536U 00055A 13351.47540412 .00000088 00000-0 71732-4 0 4829 2 26536 99.0175 45.8254 0009942 343.2557 131.9144 14.12960720682456 1 26536U 00055A 13352.54051644 .00000103 00000-0 79563-4 0 4831 2 26536 99.0174 46.8979 0009890 340.1784 149.8487 14.12961130682601 1 26536U 00055A 13352.54051644 .00000103 00000-0 79563-4 0 4842 2 26536 99.0174 46.8979 0009890 340.1784 149.8487 14.12961130682601 1 26536U 00055A 13353.60496068 .00000160 00000-0 11021-3 0 4851 2 26536 99.0174 47.9698 0009878 336.9041 164.5882 14.12961019682751 1 26536U 00055A 13353.60496068 .00000160 00000-0 11021-3 0 4862 2 26536 99.0174 47.9698 0009878 336.9041 164.5882 14.12961019682751 1 26536U 00055A 13354.52461890 .00000209 00000-0 13656-3 0 4870 2 26536 99.0174 48.8959 0009839 334.2287 162.6613 14.12960930682887 1 26536U 00055A 13355.50941811 .00000228 00000-0 14673-3 0 4887 2 26536 99.0174 49.8876 0009804 331.2446 132.2087 14.12961086683020 1 26536U 00055A 13356.43344100 .00000240 00000-0 15341-3 0 4896 2 26536 99.0173 50.8182 0009773 328.3871 152.6514 14.12961421683153 1 26536U 00055A 13357.49403708 .00000200 00000-0 13157-3 0 4904 2 26536 99.0172 51.8863 0009767 325.0282 147.9105 14.12962390683308 1 26536U 00055A 13357.49403708 .00000200 00000-0 13157-3 0 4915 2 26536 99.0172 51.8863 0009767 325.0282 147.9105 14.12962390683308 1 26536U 00055A 13357.49403708 .00000200 00000-0 13157-3 0 4926 2 26536 99.0172 51.8863 0009767 325.0282 147.9105 14.12962390683308 1 26536U 00055A 13357.49403708 .00000200 00000-0 13157-3 0 4937 2 26536 99.0172 51.8863 0009767 325.0282 147.9105 14.12962390683308 1 26536U 00055A 13358.48572971 .00000130 00000-0 93975-4 0 4946 2 26536 99.0169 52.8849 0009716 322.0300 152.5160 14.12963394683444 1 26536U 00055A 13359.55131325 .00000070 00000-0 62207-4 0 4957 2 26536 99.0167 53.9580 0009700 318.7520 173.0549 14.12964219683597 1 26536U 00055A 13359.55131325 .00000070 00000-0 62207-4 0 4968 2 26536 99.0167 53.9580 0009700 318.7520 173.0549 14.12964219683597 1 26536U 00055A 13359.55131325 .00000070 00000-0 62207-4 0 4979 2 26536 99.0167 53.9580 0009700 318.7520 173.0549 14.12964219683597 1 26536U 00055A 13359.55131325 .00000070 00000-0 62207-4 0 4980 2 26536 99.0167 53.9580 0009700 318.7520 173.0549 14.12964219683597 1 26536U 00055A 13360.54184949 .00000074 00000-0 64343-4 0 4999 2 26536 99.0165 54.9555 0009684 315.7409 171.8032 14.12964488683739 1 26536U 00055A 13361.53482699 .00000125 00000-0 91308-4 0 5003 2 26536 99.0162 55.9555 0009668 312.7174 182.9790 14.12964197683871 1 26536U 00055A 13362.45152274 .00000191 00000-0 12669-3 0 5014 2 26536 99.0159 56.8785 0009644 309.9273 166.1171 14.12963946684008 1 26536U 00055A 13363.44476506 .00000242 00000-0 15421-3 0 5028 2 26536 99.0157 57.8787 0009635 306.8552 178.6873 14.12964031684143 1 26536U 00055A 13364.48226160 .00000338 00000-0 18119-3 0 4844 2 26536 99.0177 58.9196 0010332 303.6425 56.4402 14.12967850684290 1 26536U 00055A 13364.50421050 .00000231 00000-0 14836-3 0 5038 2 26536 99.0154 58.9454 0009599 303.5275 168.0781 14.12964654684296 1 26536U 00055A 13364.50421050 .00000231 00000-0 14836-3 0 5049 2 26536 99.0154 58.9454 0009599 303.5275 168.0781 14.12964654684296 1 26536U 00055A 13365.49582687 .00000189 00000-0 12590-3 0 5050 2 26536 99.0152 59.9439 0009604 300.4156 172.4193 14.12965768684438 1 26536U 00055A 14001.48743905 .00000104 00000-0 80025-4 0 5066 2 26536 99.0151 60.9423 0009624 297.2843 176.7595 14.12967071684577 1 26536U 00055A 14002.25208448 .00000096 00000-0 76070-4 0 5076 2 26536 99.0150 61.7121 0009592 294.9478 106.4421 14.12968199684684 1 26536U 00055A 14003.24349536 .00000070 00000-0 61881-4 0 5087 2 26536 99.0150 62.7103 0009595 291.8983 109.6864 14.12968581684822 1 26536U 00055A 14004.46419499 .00000130 00000-0 94212-4 0 5090 2 26536 99.0150 63.9392 0009585 288.1706 199.2883 14.12968334684996 1 26536U 00055A 14004.46419499 .00000130 00000-0 94212-4 0 5102 2 26536 99.0150 63.9392 0009585 288.1706 199.2883 14.12968334684996 1 26536U 00055A 14005.52791390 .00000246 00000-0 15626-3 0 5113 2 26536 99.0149 65.0102 0009613 284.9538 210.3124 14.12967872685142 1 26536U 00055A 14005.52791390 .00000246 00000-0 15626-3 0 5124 2 26536 99.0149 65.0102 0009613 284.9538 210.3124 14.12967872685142 1 26536U 00055A 14006.51296398 .00000373 00000-0 22444-3 0 5130 2 26536 99.0148 66.0020 0009638 281.9420 181.1885 14.12967805685285 1 26536U 00055A 14007.50597750 .00000424 00000-0 25168-3 0 5140 2 26536 99.0146 67.0018 0009628 278.8290 192.6476 14.12968654685422 1 26536U 00055A 14008.49758457 .00000324 00000-0 19819-3 0 5158 2 26536 99.0144 68.0002 0009631 275.6419 197.0337 14.12968978685565 1 26536U 00055A 14009.19823946 .00000332 00000-0 20268-3 0 5162 2 26536 99.0142 68.7056 0009632 273.4551 161.2524 14.12970460685664 1 26536U 00055A 14009.82086269 .00000296 00000-0 15894-3 0 5170 2 26536 99.0148 69.3293 0009795 273.2621 86.7902 14.12970913685750 1 26536U 00055A 14010.34360942 .00000221 00000-0 14322-3 0 5175 2 26536 99.0138 69.8587 0009638 269.8327 227.7861 14.12971263685828 1 26536U 00055A 14010.34360942 .00000221 00000-0 14322-3 0 5186 2 26536 99.0138 69.8587 0009638 269.8327 227.7861 14.12971263685828 1 26536U 00055A 14011.47416497 .00000116 00000-0 86392-4 0 5199 2 26536 99.0135 70.9969 0009676 266.3875 218.8323 14.12971941685988 1 26536U 00055A 14011.47416497 .00000116 00000-0 86392-4 0 5201 2 26536 99.0135 70.9969 0009676 266.3875 218.8323 14.12971941685988 1 26536U 00055A 14012.46386406 .00000149 00000-0 10446-3 0 5210 2 26536 99.0132 71.9933 0009686 263.3394 213.3908 14.12971950686127 1 26536U 00055A 14013.53001638 .00000197 00000-0 13029-3 0 5224 2 26536 99.0129 73.0665 0009698 260.0402 236.8820 14.12971711686279 1 26536U 00055A 14014.51471310 .00000258 00000-0 16268-3 0 5249 2 26536 99.0127 74.0578 0009726 257.0506 205.9529 14.12971606686416 1 26536U 00055A 14015.50771497 .00000243 00000-0 15464-3 0 5250 2 26536 99.0125 75.0574 0009772 254.0532 217.2517 14.12972174686557 1 26536U 00055A 14016.64211270 .00000200 00000-0 13153-3 0 5261 2 26536 99.0124 76.1993 0009812 250.6004 227.8438 14.12973167686714 1 26536U 00055A 14017.49300396 .00000105 00000-0 80729-4 0 5272 2 26536 99.0123 77.0558 0009831 247.9492 236.3231 14.12974077686831 1 26536U 00055A 14018.48424966 .00000047 00000-0 49748-4 0 5284 2 26536 99.0122 78.0535 0009850 244.8522 238.7958 14.12974936686978 1 26536U 00055A 14019.47578787 .00000041 00000-0 46647-4 0 5295 2 26536 99.0122 79.0515 0009894 241.9677 242.5478 14.12975357687119 1 26536U 00055A 14020.53920514 .00000082 00000-0 68202-4 0 5301 2 26536 99.0121 80.1219 0009930 238.8099 252.0029 14.12975376687261 1 26536U 00055A 14020.53920514 .00000082 00000-0 68202-4 0 5312 2 26536 99.0121 80.1219 0009930 238.8099 252.0029 14.12975376687261 1 26536U 00055A 14021.23060367 .00000123 00000-0 90118-4 0 5329 2 26536 99.0120 80.8178 0009969 236.8641 168.9451 14.12975137687364 1 26536U 00055A 14022.51644836 .00000223 00000-0 14405-3 0 5336 2 26536 99.0118 82.1121 0010017 233.0979 229.8087 14.12974930687545 1 26536U 00055A 14022.51644836 .00000223 00000-0 14405-3 0 5347 2 26536 99.0118 82.1121 0010017 233.0979 229.8087 14.12974930687545 1 26536U 00055A 14023.28327079 .00000254 00000-0 16057-3 0 5359 2 26536 99.0116 82.8839 0010046 230.7719 170.5772 14.12975036687657 1 26536U 00055A 14023.77083758 .00000196 00000-0 10510-3 0 5359 2 26536 99.0117 83.3707 0009942 230.6398 129.4365 14.12975957687724 1 26536U 00055A 14023.79213816 .00000252 00000-0 15969-3 0 5368 2 26536 99.0114 83.3961 0010069 229.2256 239.1496 14.12975289687724 1 26536U 00055A 14025.20051737 .00000192 00000-0 12711-3 0 5374 2 26536 99.0110 84.8137 0010135 224.9985 203.4211 14.12976505687929 1 26536U 00055A 14025.56791075 .00000160 00000-0 11032-3 0 5380 2 26536 99.0108 85.1835 0010146 223.8128 272.3939 14.12977007687979 1 26536U 00055A 14026.48629052 .00000120 00000-0 88730-4 0 5394 2 26536 99.0106 86.1078 0010194 221.1319 264.0183 14.12978041688107 1 26536U 00055A 14027.54919574 .00000081 00000-0 67847-4 0 5407 2 26536 99.0103 87.1775 0010244 218.0473 270.8028 14.12978667688254 1 26536U 00055A 14027.54919574 .00000081 00000-0 67847-4 0 5418 2 26536 99.0103 87.1775 0010244 218.0473 270.8028 14.12978667688254 1 26536U 00055A 14028.61445819 .00000110 00000-0 83512-4 0 5424 2 26536 99.0100 88.2496 0010292 215.1059 289.4337 14.12978844688407 1 26536U 00055A 14029.37701762 .00000169 00000-0 11486-3 0 5435 2 26536 99.0099 89.0171 0010327 213.0454 208.2740 14.12978867688512 1 26536U 00055A 14030.52457138 .00000237 00000-0 15138-3 0 5444 2 26536 99.0097 90.1719 0010368 209.6231 285.7517 14.12978637688674 1 26536U 00055A 14031.51690014 .00000242 00000-0 15391-3 0 5454 2 26536 99.0095 91.1705 0010414 206.5115 293.7679 14.12978967688817 1 26536U 00055A 14032.50273618 .00000239 00000-0 15247-3 0 5468 2 26536 99.0094 92.1626 0010477 203.8073 268.3673 14.12979582688952 1 26536U 00055A 14033.35615178 .00000142 00000-0 10058-3 0 5472 2 26536 99.0093 93.0215 0010527 201.5525 289.3029 14.12980868689079 1 26536U 00055A 14034.25911579 .00000123 00000-0 90342-4 0 5481 2 26536 99.0093 93.9301 0010576 199.2378 202.2004 14.12981748689207 1 26536U 00055A 14035.55083517 .00000144 00000-0 10132-3 0 5499 2 26536 99.0092 95.2299 0010636 195.4846 292.9365 14.12983017689388 1 26536U 00055A 14036.53795277 .00000167 00000-0 11414-3 0 5513 2 26536 99.0090 96.2232 0010674 192.5679 274.2754 14.12983493689527 1 26536U 00055A 14037.46056558 .00000250 00000-0 15828-3 0 5547 2 26536 99.0088 97.1516 0010710 189.9741 287.3591 14.12982692689658 1 26536U 00055A 14037.50832657 .00000293 00000-0 15723-3 0 5534 2 26536 99.0099 97.1983 0010400 189.9362 170.2074 14.12982360689662 1 26536U 00055A 14038.52616075 .00000273 00000-0 17075-3 0 5553 2 26536 99.0085 98.2238 0010752 187.0318 307.7024 14.12982483689806 1 26536U 00055A 14038.66342596 .00000302 00000-0 18652-3 0 5568 2 26536 99.0085 98.3619 0010757 186.6283 285.9486 14.12983023689823 1 26536U 00055A 14039.51145392 .00000321 00000-0 19649-3 0 5577 2 26536 99.0082 99.2152 0010797 184.3227 279.5598 14.12983647689947 1 26536U 00055A 14040.50449304 .00000268 00000-0 16809-3 0 5584 2 26536 99.0079 100.2144 0010852 181.5685 290.8446 14.12983792690082 1 26536U 00055A 14041.20411862 .00000228 00000-0 14640-3 0 5598 2 26536 99.0076 100.9183 0010884 179.6886 249.5625 14.12984741690181 1 26536U 00055A 14042.48966986 .00000142 00000-0 10046-3 0 5604 2 26536 99.0072 102.2118 0010957 176.1404 308.7506 14.12985927690362 1 26536U 00055A 14042.48966986 .00000142 00000-0 10046-3 0 5615 2 26536 99.0072 102.2118 0010957 176.1404 308.7506 14.12985927690362 1 26536U 00055A 14043.55207076 .00000117 00000-0 86948-4 0 5620 2 26536 99.0069 103.2807 0011008 173.2529 312.8023 14.12987201690512 1 26536U 00055A 14043.55207076 .00000117 00000-0 86948-4 0 5631 2 26536 99.0069 103.2807 0011008 173.2529 312.8023 14.12987201690512 1 26536U 00055A 14044.47243031 .00000098 00000-0 76792-4 0 5649 2 26536 99.0068 104.2067 0011039 170.8184 314.2819 14.12987292690647 1 26536U 00055A 14046.80625821 .00000239 00000-0 15253-3 0 5662 2 26536 99.0065 106.5548 0011094 164.7475 305.3810 14.12987105690970 1 26536U 00055A 14047.51916329 .00000246 00000-0 15601-3 0 5673 2 26536 99.0064 107.2720 0011129 162.7602 331.7310 14.12987269691079 1 26536U 00055A 14048.35273519 .00000253 00000-0 16013-3 0 5680 2 26536 99.0063 108.1106 0011182 160.4106 251.9055 14.12987645691199 1 26536U 00055A 14049.34585760 .00000201 00000-0 13205-3 0 5698 2 26536 99.0061 109.1097 0011228 157.7342 263.5494 14.12988453691339 1 26536U 00055A 14050.48923475 .00000123 00000-0 90483-4 0 5703 2 26536 99.0060 110.2598 0011290 154.6530 319.4841 14.12990408691498 1 26536U 00055A 14050.48923475 .00000123 00000-0 90483-4 0 5714 2 26536 99.0060 110.2598 0011290 154.6530 319.4841 14.12990408691498 1 26536U 00055A 14051.25937318 .00000083 00000-0 68875-4 0 5727 2 26536 99.0058 111.0346 0011323 152.6316 276.8408 14.12991019691609 1 26536U 00055A 14052.54614262 .00000109 00000-0 82744-4 0 5731 2 26536 99.0056 112.3290 0011366 149.1993 342.1377 14.12991426691781 1 26536U 00055A 14052.54614262 .00000109 00000-0 82744-4 0 5742 2 26536 99.0056 112.3290 0011366 149.1993 342.1377 14.12991426691781 1 26536U 00055A 14053.53842889 .00000161 00000-0 11047-3 0 5756 2 26536 99.0054 113.3272 0011389 146.5854 349.4843 14.12991360691923 1 26536U 00055A 14054.45780771 .00000228 00000-0 14629-3 0 5763 2 26536 99.0051 114.2521 0011419 144.1712 345.9759 14.12991156692053 1 26536U 00055A 14055.52105766 .00000291 00000-0 18010-3 0 5776 2 26536 99.0049 115.3217 0011409 141.5201 354.1366 14.12991393692203 1 26536U 00055A 14055.86043429 .00000304 00000-0 18737-3 0 5782 2 26536 99.0047 115.6631 0011429 140.5816 280.4494 14.12991532692250 1 26536U 00055A 14056.71948640 .00000292 00000-0 18067-3 0 5799 2 26536 99.0044 116.5272 0011455 138.3822 330.0246 14.12992183692372 1 26536U 00055A 14057.41957016 .00000256 00000-0 16149-3 0 5805 2 26536 99.0042 117.2314 0011450 136.7099 290.8862 14.12993192692477 1 26536U 00055A 14059.48240567 .00000158 00000-0 10869-3 0 5826 2 26536 99.0037 119.3063 0011504 131.3529 343.6008 14.12996569692766 1 26536U 00055A 14060.54741576 .00000119 00000-0 88250-4 0 5839 2 26536 99.0036 120.3775 0011511 128.6284 0.7970 14.12997217692919 1 26536U 00055A 14060.54741576 .00000119 00000-0 88250-4 0 5840 2 26536 99.0036 120.3775 0011511 128.6284 0.7970 14.12997217692919 1 26536U 00055A 14061.46557414 .00000159 00000-0 10923-3 0 5854 2 26536 99.0035 121.3011 0011557 126.0736 351.2407 14.12997282693042 1 26536U 00055A 14062.53169074 .00000243 00000-0 15447-3 0 5865 2 26536 99.0034 122.3733 0011554 123.3811 14.0394 14.12997197693194 1 26536U 00055A 14062.53169074 .00000243 00000-0 15447-3 0 5876 2 26536 99.0034 122.3733 0011554 123.3811 14.0394 14.12997197693194 1 26536U 00055A 14063.52256889 .00000306 00000-0 18800-3 0 5884 2 26536 99.0034 123.3700 0011531 120.8729 14.1442 14.12997283693331 1 26536U 00055A 14064.50928650 .00000270 00000-0 16880-3 0 5892 2 26536 99.0032 124.3621 0011552 118.3356 353.1251 14.12997980693476 1 26536U 00055A 14065.13506624 .00000239 00000-0 15255-3 0 5907 2 26536 99.0031 124.9916 0011538 116.7560 296.1497 14.12998679693565 1 26536U 00055A 14065.83282289 .00000455 00000-0 24404-3 0 5908 2 26536 99.0040 125.6888 0011325 112.5332 247.7510 14.13000514693668 1 26536U 00055A 14066.20009615 .00000190 00000-0 12599-3 0 5919 2 26536 99.0029 126.0626 0011559 114.0287 313.4579 14.13000045693716 1 26536U 00055A 14067.48399074 .00000115 00000-0 85766-4 0 5937 2 26536 99.0026 127.3537 0011578 110.6842 4.0897 14.13001359693892 1 26536U 00055A 14068.47726219 .00000132 00000-0 94912-4 0 5945 2 26536 99.0024 128.3525 0011559 108.1627 16.3844 14.13001889694033 1 26536U 00055A 14069.46705654 .00000154 00000-0 10691-3 0 5951 2 26536 99.0021 129.3479 0011563 105.5644 11.0827 14.13002117694177 1 26536U 00055A 14070.32001025 .00000248 00000-0 15717-3 0 5968 2 26536 99.0018 130.2056 0011571 103.3296 29.7253 14.13001803694296 1 26536U 00055A 14071.45144962 .00000280 00000-0 17455-3 0 5979 2 26536 99.0014 131.3433 0011556 100.4229 24.8566 14.13001891694458 1 26536U 00055A 14072.44190882 .00000342 00000-0 20776-3 0 5981 2 26536 99.0011 132.3393 0011572 97.8548 22.9074 14.13002627694598 1 26536U 00055A 14073.43346471 .00000300 00000-0 18484-3 0 5996 2 26536 99.0009 133.3364 0011570 95.3115 26.5077 14.13003618694735 1 26536U 00055A 14073.43346471 .00000300 00000-0 18484-3 0 6009 2 26536 99.0009 133.3364 0011570 95.3115 26.5077 14.13003618694735 1 26536U 00055A 14074.49399027 .00000182 00000-0 12162-3 0 6017 2 26536 99.0007 134.4029 0011543 92.6144 20.9029 14.13004757694881 1 26536U 00055A 14074.49399027 .00000182 00000-0 12162-3 0 6028 2 26536 99.0007 134.4029 0011543 92.6144 20.9029 14.13004757694881 1 26536U 00055A 14075.41730359 .00000134 00000-0 96151-4 0 6037 2 26536 99.0006 135.3314 0011508 90.2044 37.4292 14.13005831695016 1 26536U 00055A 14075.41730359 .00000134 00000-0 96151-4 0 6037 2 26536 99.0006 135.3314 0011508 90.2044 37.4292 14.13005831695016 1 26536U 00055A 01001.16033173 .00000697 00000-0 41184-3 0 1342 2 26536 98.8084 310.8397 0010834 349.6906 10.4402 14.11019835 14486 1 26536U 00055A 01003.16033173 .00000697 00000-0 41184-3 0 1344 2 26536 98.8084 310.8397 0010834 349.6906 10.4402 14.11019835 14486 1 26536U 00055A 01004.42218579 .00000558 00000-0 33424-3 0 1411 2 26536 98.8081 314.0379 0010892 340.2366 19.7960 14.11021950 14943 1 26536U 00055A 01006.42218579 .00000558 00000-0 33424-3 0 1413 2 26536 98.8081 314.0379 0010892 340.2366 19.7960 14.11021950 14943 1 26536U 01008.47855059 .00000602 00000-0 35879-3 0 156 2 26536 98.8093 316.0570 0010453 335.2099 24.6617 14.11022877 15237 1 26536U 00055A 01010.46405976 .00000429 00000-0 26250-3 0 1462 2 26536 98.8086 318.0029 0010534 328.9508 31.0678 14.11024334 15514 1 26536U 00055A 01011.46405976 .00000429 00000-0 26250-3 0 1463 2 26536 98.8086 318.0029 0010534 328.9508 31.0678 14.11024334 15514 1 26536U 00055A 01012.43501805 .00000422 00000-0 25870-3 0 1504 2 26536 98.8094 321.8980 0010516 317.5138 42.5197 14.11027918 16070 1 26536U 00055A 01014.43501805 .00000422 00000-0 25870-3 0 1506 2 26536 98.8094 321.8980 0010516 317.5138 42.5197 14.11027918 16070 1 26536U 00055A 01015.41322571 .00000365 00000-0 22730-3 0 1548 2 26536 98.8097 324.8190 0010435 308.8192 51.1888 14.11029602 16493 1 26536U 00055A 01017.41322571 .00000365 00000-0 22730-3 0 1540 2 26536 98.8097 324.8190 0010435 308.8192 51.1888 14.11029602 16493 1 26536U 00055A 01018.39143329 .00000350 00000-0 21871-3 0 1561 2 26536 98.8103 327.7414 0010248 299.9258 60.0934 14.11031968 16913 1 26536U 00055A 01021.34419961 .00000451 00000-0 27472-3 0 1619 2 26536 98.8112 328.6776 0010214 297.0483 220.0680 14.11033932 17040 1 26536U 00055A 01022.34419961 .00000451 00000-0 27472-3 0 1610 2 26536 98.8112 328.6776 0010214 297.0483 220.0680 14.11033932 17040 1 26536U 00055A 01023.35509004 .00000387 00000-0 23954-3 0 1631 2 26536 98.8114 332.6118 0010103 285.2988 74.6847 14.11036565 17619 1 26536U 00055A 01025.35509004 .00000387 00000-0 23954-3 0 1633 2 26536 98.8114 332.6118 0010103 285.2988 74.6847 14.11036565 17619 1 26536U 00055A 01026.35509004 .00000387 00000-0 23954-3 0 1634 2 26536 98.8114 332.6118 0010103 285.2988 74.6847 14.11036565 17619 1 26536U 00055A 01027.38965222 .00000431 00000-0 26398-3 0 1710 2 26536 98.8119 337.5520 0009969 269.8946 90.1055 14.11041175 18321 1 26536U 00055A 01028.38965222 .00000431 00000-0 26398-3 0 1711 2 26536 98.8119 337.5520 0009969 269.8946 90.1055 14.11041175 18321 1 26536U 00055A 01030.38965222 .00000431 00000-0 26398-3 0 1714 2 26536 98.8119 337.5520 0009969 269.8946 90.1055 14.11041175 18321 1 26536U 00055A 01031.38965222 .00000431 00000-0 26398-3 0 1715 2 26536 98.8119 337.5520 0009969 269.8946 90.1055 14.11041175 18321 1 26536U 00055A 01032.28965153 .00000424 00000-0 25996-3 0 1768 2 26536 98.8127 341.3783 0009915 257.6833 102.3220 14.11044761 18879 1 26536U 00055A 01034.28965153 .00000424 00000-0 25996-3 0 1760 2 26536 98.8127 341.3783 0009915 257.6833 102.3220 14.11044761 18879 1 26536U 00055A 01035.28965153 .00000424 00000-0 25996-3 0 1761 2 26536 98.8127 341.3783 0009915 257.6833 102.3220 14.11044761 18879 1 26536U 00055A 01036.26055028 .00000387 00000-0 23918-3 0 1806 2 26536 98.8128 345.2747 0009905 245.6743 114.3250 14.11047652 19430 1 26536U 00055A 01038.26055028 .00000387 00000-0 23918-3 0 1808 2 26536 98.8128 345.2747 0009905 245.6743 114.3250 14.11047652 19430 1 26536U 00055A 01039.30963147 .00000481 00000-0 29153-3 0 1817 2 26536 98.8130 348.2676 0009824 236.1119 123.9246 14.11051502 19866 1 26536U 00055A 01041.30963147 .00000481 00000-0 29153-3 0 1810 2 26536 98.8130 348.2676 0009824 236.1119 123.9246 14.11051502 19866 1 26536U 00055A 01042.28779028 .00000363 00000-0 22610-3 0 1888 2 26536 98.8127 351.1900 0009867 227.1692 132.8419 14.11052780 20286 1 26536U 00055A 01044.28779028 .00000363 00000-0 22610-3 0 1880 2 26536 98.8127 351.1900 0009867 227.1692 132.8419 14.11052780 20286 1 26536U 00055A 01045.26595463 .00000336 00000-0 21110-3 0 1916 2 26536 98.8132 354.1125 0009912 217.9599 142.0787 14.11054647 20700 1 26536U 00055A 01047.26595463 .00000336 00000-0 21110-3 0 1918 2 26536 98.8132 354.1125 0009912 217.9599 142.0787 14.11054647 20700 1 26536U 00055A 01048.26595463 .00000336 00000-0 21110-3 0 1919 2 26536 98.8132 354.1125 0009912 217.9599 142.0787 14.11054647 20700 1 26536U 00055A 01049.23683044 .00000258 00000-0 16759-3 0 1950 2 26536 98.8137 358.0115 0010242 204.5893 155.5059 14.11058661 21267 1 26536U 00055A 01052.30045014 .00000264 00000-0 17064-3 0 1981 2 26536 98.8143 359.0555 0010247 201.6096 158.4609 14.11059078 21414 1 26536U 00055A 01053.27859870 .00000180 00000-0 12437-3 0 2045 2 26536 98.8141 1.9773 0010306 192.8831 167.1929 14.11059664 21830 1 26536U 00055A 01055.27859870 .00000180 00000-0 12437-3 0 2047 2 26536 98.8141 1.9773 0010306 192.8831 167.1929 14.11059664 21830 1 26536U 00055A 01056.27859870 .00000180 00000-0 12437-3 0 2048 2 26536 98.8141 1.9773 0010306 192.8831 167.1929 14.11059664 21830 1 26536U 00055A 01057.24946414 .00000496 00000-0 29984-3 0 2097 2 26536 98.8153 5.8761 0010422 181.7824 178.3707 14.11065240 22398 1 26536U 00055A 01059.24946414 .00000496 00000-0 29984-3 0 2099 2 26536 98.8153 5.8761 0010422 181.7824 178.3707 14.11065240 22398 1 26536U 00055A 01060.24946414 .00000496 00000-0 29984-3 0 2091 2 26536 98.8153 5.8761 0010422 181.7824 178.3707 14.11065240 22398 1 26536U 00055A 01061.35482405 .00000289 00000-0 18489-3 0 2121 2 26536 98.8159 10.8870 0010576 166.9104 193.1852 14.11067236 23111 1 26536U 00055A 01062.35482405 .00000289 00000-0 18489-3 0 2122 2 26536 98.8159 10.8870 0010576 166.9104 193.1852 14.11067236 23111 1 26536U 00055A 01065.91480741 .00000231 00000-0 15274-3 0 2179 2 26536 98.8167 12.4191 0010573 162.4813 197.6673 14.11067606 23334 1 26536U 00055A 01066.91480741 .00000231 00000-0 15274-3 0 2170 2 26536 98.8167 12.4191 0010573 162.4813 197.6673 14.11067606 23334 1 26536U 00055A 01067.45290983 .00000427 00000-0 26155-3 0 2220 2 26536 98.8166 16.8752 0011011 150.0722 210.1626 14.11073823 23971 1 26536U 00055A 01068.45290983 .00000427 00000-0 26155-3 0 2221 2 26536 98.8166 16.8752 0011011 150.0722 210.1626 14.11073823 23971 1 26536U 00055A 01070.45290983 .00000427 00000-0 26155-3 0 2224 2 26536 98.8166 16.8752 0011011 150.0722 210.1626 14.11073823 23971 1 26536U 00055A 01071.36010708 .00000227 00000-0 15005-3 0 2264 2 26536 98.8173 19.7292 0011069 141.8927 218.2755 14.11073957 24384 1 26536U 00055A 01073.36010708 .00000227 00000-0 15005-3 0 2266 2 26536 98.8173 19.7292 0011069 141.8927 218.2755 14.11073957 24384 1 26536U 00055A 01074.40913602 .00000283 00000-0 18143-3 0 2287 2 26536 98.8177 22.7237 0011233 133.8094 226.4113 14.11076391 24812 1 26536U 00055A 01076.40913602 .00000283 00000-0 18143-3 0 2289 2 26536 98.8177 22.7237 0011233 133.8094 226.4113 14.11076391 24812 1 26536U 00055A 01077.31633683 .00000460 00000-0 27943-3 0 2339 2 26536 98.8181 25.5783 0011217 125.8126 234.4434 14.11080992 25226 1 26536U 00055A 01080.94719458 .00000207 00000-0 13887-3 0 2372 2 26536 98.8192 27.1816 0011411 122.2858 237.9378 14.11081138 25455 1 26536U 00055A 01081.35803854 .00000198 00000-0 13425-3 0 2391 2 26536 98.8178 29.5474 0011426 114.8593 245.3810 14.11083024 25791 1 26536U 00055A 01083.35803854 .00000198 00000-0 13425-3 0 2393 2 26536 98.8178 29.5474 0011426 114.8593 245.3810 14.11083024 25791 1 26536U 00055A 01084.33613341 .00000870 00000-0 50705-3 0 2469 2 26536 98.8190 32.4719 0011494 107.4728 252.8045 14.11089489 26215 1 26536U 00055A 01086.33613341 .00000870 00000-0 50705-3 0 2461 2 26536 98.8190 32.4719 0011494 107.4728 252.8045 14.11089489 26215 1 26536U 00055A 01087.33613341 .00000870 00000-0 50705-3 0 2462 2 26536 98.8190 32.4719 0011494 107.4728 252.8045 14.11089489 26215 1 26536U 00055A 01088.40019572 .00000967 00000-0 56099-3 0 2545 2 26536 98.8216 37.4485 0011679 94.5979 56.4900 14.11100010 26928 1 26536U 00055A 01089.40019572 .00000967 00000-0 56099-3 0 2546 2 26536 98.8216 37.4485 0011679 94.5979 56.4900 14.11100010 26928 1 26536U 00055A 01091.40019572 .00000967 00000-0 56099-3 0 2549 2 26536 98.8216 37.4485 0011679 94.5979 56.4900 14.11100010 26928 1 26536U 00055A 01092.40019572 .00000967 00000-0 56099-3 0 2540 2 26536 98.8216 37.4485 0011679 94.5979 56.4900 14.11100010 26928 1 26536U 00055A 01093.26299630 .00001382 00000-0 79113-3 0 2577 2 26536 98.8196 42.2236 0011565 82.5350 277.8170 14.11117897 27613 1 26536U 00055A 01094.26299630 .00001382 00000-0 79113-3 0 2578 2 26536 98.8196 42.2236 0011565 82.5350 277.8170 14.11117897 27613 1 26536U 00055A 01096.26299630 .00001382 00000-0 79113-3 0 2570 2 26536 98.8196 42.2236 0011565 82.5350 277.8170 14.11117897 27613 1 26536U 00055A 01097.24098844 .00001187 00000-0 68263-3 0 2671 2 26536 98.8205 45.1487 0011606 74.6398 285.5882 14.11124317 28032 1 26536U 00055A 01099.24098844 .00001187 00000-0 68263-3 0 2673 2 26536 98.8205 45.1487 0011606 74.6398 285.5882 14.11124317 28032 1 26536U 00055A 01100.24098844 .00001187 00000-0 68263-3 0 2676 2 26536 98.8205 45.1487 0011606 74.6398 285.5882 14.11124317 28032 1 26536U 00055A 01101.34612433 .00001420 00000-0 81188-3 0 2697 2 26536 98.8216 50.1635 0011605 61.5237 298.5981 14.11130585 28758 1 26536U 00055A 01102.34612433 .00001420 00000-0 81188-3 0 2698 2 26536 98.8216 50.1635 0011605 61.5237 298.5981 14.11130585 28758 1 26536U 00055A 01104.34612433 .00001420 00000-0 81188-3 0 2690 2 26536 98.8216 50.1635 0011605 61.5237 298.5981 14.11130585 28758 1 26536U 00055A 01105.25322638 .00000697 00000-0 41093-3 0 2759 2 26536 98.8204 53.0200 0011597 52.4844 307.7008 14.11133509 29166 1 26536U 00055A 01107.25322638 .00000697 00000-0 41093-3 0 2751 2 26536 98.8204 53.0200 0011597 52.4844 307.7008 14.11133509 29166 1 26536U 00055A 01110.37302422 -.00000304 00000-0 -14469-3 0 2807 2 26536 98.8220 56.0869 0011623 44.9065 315.2679 14.11132151 29608 1 26536U 00055A 01111.37302422 -.00000304 00000-0 -14469-3 0 2808 2 26536 98.8220 56.0869 0011623 44.9065 315.2679 14.11132151 29608 1 26536U 00055A 01112.34368648 .00000722 00000-0 42458-3 0 2865 2 26536 98.8221 59.9874 0011356 34.3716 325.8781 14.11137738 30166 1 26536U 00055A 01114.34368648 .00000722 00000-0 42458-3 0 2867 2 26536 98.8221 59.9874 0011356 34.3716 325.8781 14.11137738 30166 1 26536U 00055A 01115.39255102 .00000393 00000-0 24202-3 0 2897 2 26536 98.8221 62.9819 0011443 25.3197 334.8434 14.11140041 30592 1 26536U 00055A 01117.39255102 .00000393 00000-0 24202-3 0 2899 2 26536 98.8221 62.9819 0011443 25.3197 334.8434 14.11140041 30592 1 26536U 00055A 01118.44142609 .00000447 00000-0 27219-3 0 2951 2 26536 98.8227 65.9776 0011392 16.9316 343.2410 14.11143769 31022 1 26536U 00055A 01120.44142609 .00000447 00000-0 27219-3 0 2954 2 26536 98.8227 65.9776 0011392 16.9316 343.2410 14.11143769 31022 1 26536U 00055A 01121.44142609 .00000447 00000-0 27219-3 0 2955 2 26536 98.8227 65.9776 0011392 16.9316 343.2410 14.11143769 31022 1 26536U 00055A 01122.62474671 .00000447 00000-0 27219-3 0 3066 2 26536 98.8227 70.0868 0011392 5.1011 355.0274 14.11147867 31610 1 26536U 00055A 01124.62474671 .00000447 00000-0 27219-3 0 3068 2 26536 98.8227 70.0868 0011392 5.1011 355.0274 14.11147867 31610 1 26536U 00055A 01125.62474671 .00000447 00000-0 27219-3 0 3069 2 26536 98.8227 70.0868 0011392 5.1011 355.0274 14.11147867 31610 1 26536U 00055A 01126.23347945 .00000573 00000-0 34191-3 0 3090 2 26536 98.8236 74.6191 0010936 353.7029 6.4367 14.11154605 32263 1 26536U 00055A 01127.23347945 .00000573 00000-0 34191-3 0 3091 2 26536 98.8236 74.6191 0010936 353.7029 6.4367 14.11154605 32263 1 26536U 00055A 01129.23347945 .00000573 00000-0 34191-3 0 3093 2 26536 98.8236 74.6191 0010936 353.7029 6.4367 14.11154605 32263 1 26536U 00055A 01130.35321585 .00000175 00000-0 12142-3 0 3124 2 26536 98.8249 77.6872 0010816 345.3050 14.7369 14.11153825 32700 1 26536U 00055A 01132.35321585 .00000175 00000-0 12142-3 0 3126 2 26536 98.8249 77.6872 0010816 345.3050 14.7369 14.11153825 32700 1 26536U 00055A 01133.61477480 .00000593 00000-0 35322-3 0 3198 2 26536 98.8256 80.8937 0010531 335.9364 24.1418 14.11159149 33169 1 26536U 00055A 01135.61477480 .00000593 00000-0 35322-3 0 3190 2 26536 98.8256 80.8937 0010531 335.9364 24.1418 14.11159149 33169 1 26536U 00055A 01136.80541421 .00000056 00000-0 55225-4 0 3233 2 26536 98.8252 84.0312 0010358 327.3559 32.6931 14.11159039 33618 1 26536U 00055A 01138.80541421 .00000056 00000-0 55225-4 0 3235 2 26536 98.8252 84.0312 0010358 327.3559 32.6931 14.11159039 33618 1 26536U 00055A 01139.28702496 .00000338 00000-0 21155-3 0 3292 2 26536 98.8256 86.4681 0010535 320.0191 40.0326 14.11161895 33968 1 26536U 00055A 01141.28702496 .00000338 00000-0 21155-3 0 3295 2 26536 98.8256 86.4681 0010535 320.0191 40.0326 14.11161895 33968 1 26536U 00055A 01142.26494685 .00000513 00000-0 30866-3 0 3320 2 26536 98.8257 89.3967 0009990 309.9375 50.0719 14.11163595 34384 1 26536U 00055A 01144.26494685 .00000513 00000-0 30866-3 0 3322 2 26536 98.8257 89.3967 0009990 309.9375 50.0719 14.11163595 34384 1 26536U 00055A 01145.03016257 .00000240 00000-0 15724-3 0 3360 2 26536 98.8263 92.1142 0010167 303.0794 56.9242 14.11164176 34771 1 26536U 00055A 01147.03016257 .00000240 00000-0 15724-3 0 3362 2 26536 98.8263 92.1142 0010167 303.0794 56.9242 14.11164176 34771 1 26536U 00055A 01148.29169799 .00000299 00000-0 19029-3 0 3424 2 26536 98.8264 95.3205 0010016 293.6856 66.3397 14.11167032 35235 1 26536U 00055A 01150.29169799 .00000299 00000-0 19029-3 0 3427 2 26536 98.8264 95.3205 0010016 293.6856 66.3397 14.11167032 35235 1 26536U 00055A 01152.77330273 .00000185 00000-0 10251-3 0 3421 2 26536 98.8246 97.7594 0010484 283.1400 76.9079 14.11167054 35586 1 26536U 00055A 01153.25488755 .00000609 00000-0 36188-3 0 3499 2 26536 98.8247 100.2010 0009787 276.9422 83.0790 14.11172240 35939 1 26536U 00055A 01155.25488755 .00000609 00000-0 36188-3 0 3491 2 26536 98.8247 100.2010 0009787 276.9422 83.0790 14.11172240 35939 1 26536U 00055A 01157.09834929 .00000228 00000-0 15055-3 0 3557 2 26536 98.8253 102.0144 0009723 271.2725 88.7175 14.11171979 36194 1 26536U 00055A 01159.79265978 .00000295 00000-0 16347-3 0 3546 2 26536 98.8252 104.6609 0010394 262.1430 97.9040 14.11172850 36579 1 26536U 00055A 01161.28160653 .00000285 00000-0 18239-3 0 3616 2 26536 98.8271 106.1250 0009742 260.1745 99.8444 14.11173995 36784 1 26536U 00055A 01162.11770175 .00000678 00000-0 40045-3 0 3677 2 26536 98.8269 108.9162 0009768 249.1473 110.8611 14.11177173 37183 1 26536U 00055A 01164.11770175 .00000678 00000-0 40045-3 0 3679 2 26536 98.8269 108.9162 0009768 249.1473 110.8611 14.11177173 37183 1 26536U 00055A 01166.81199986 .00000477 00000-0 26443-3 0 3654 2 26536 98.8255 111.5625 0010393 241.7965 118.2655 14.11178567 37562 1 26536U 00055A 01167.29355994 .00000021 00000-0 35656-4 0 3742 2 26536 98.8273 114.0038 0009739 232.9565 127.0075 14.11177904 37915 1 26536U 00055A 01169.29355994 .00000021 00000-0 35656-4 0 3744 2 26536 98.8273 114.0038 0009739 232.9565 127.0075 14.11177904 37915 1 26536U 00055A 01170.29355994 .00000021 00000-0 35656-4 0 3746 2 26536 98.8273 114.0038 0009739 232.9565 127.0075 14.11177904 37915 1 26536U 00055A 01171.26410190 .00000309 00000-0 19561-3 0 3772 2 26536 98.8275 117.9065 0009757 222.3321 137.7450 14.11182035 38470 1 26536U 00055A 01173.26410190 .00000309 00000-0 19561-3 0 3774 2 26536 98.8275 117.9065 0009757 222.3321 137.7450 14.11182035 38470 1 26536U 00055A 01174.31288394 .00000542 00000-0 32469-3 0 3827 2 26536 98.8281 120.9062 0009975 211.4970 148.5825 14.11186607 38902 1 26536U 00055A 01176.31288394 .00000542 00000-0 32469-3 0 3829 2 26536 98.8281 120.9062 0009975 211.4970 148.5825 14.11186607 38902 1 26536U 00055A 01177.31288394 .00000542 00000-0 32469-3 0 3820 2 26536 98.8281 120.9062 0009975 211.4970 148.5825 14.11186607 38902 1 26536U 00055A 01178.85061420 .00000221 00000-0 12242-3 0 3853 2 26536 98.8268 125.3679 0010580 201.0290 159.0942 14.11186169 39545 1 26536U 00055A 01180.85061420 .00000221 00000-0 12242-3 0 3856 2 26536 98.8268 125.3679 0010580 201.0290 159.0942 14.11186169 39545 1 26536U 00055A 01181.19036393 .00000759 00000-0 44514-3 0 3881 2 26536 98.8266 127.6719 0010492 191.2699 168.8279 14.11191081 39874 1 26536U 00055A 01184.89200207 .00000388 00000-0 23931-3 0 3909 2 26536 98.8268 129.3443 0010700 186.2552 173.8375 14.11191421 40113 1 26536U 00055A 01185.51536422 -.00000009 00000-0 19051-4 0 3955 2 26536 98.8285 131.9247 0010578 178.2357 181.8646 14.11190684 40480 1 26536U 00055A 01187.51536422 -.00000009 00000-0 19051-4 0 3957 2 26536 98.8285 131.9247 0010578 178.2357 181.8646 14.11190684 40480 1 26536U 00055A 01188.51536422 -.00000009 00000-0 19051-4 0 3958 2 26536 98.8285 131.9247 0010578 178.2357 181.8646 14.11190684 40480 1 26536U 00055A 01189.55676537 .00000334 00000-0 20927-3 0 4027 2 26536 98.8290 135.8989 0010637 166.3365 193.8194 14.11193101 41057 1 26536U 00055A 01191.55676537 .00000334 00000-0 20927-3 0 4020 2 26536 98.8290 135.8989 0010637 166.3365 193.8194 14.11193101 41057 1 26536U 00055A 01192.55676537 .00000334 00000-0 20927-3 0 4021 2 26536 98.8290 135.8989 0010637 166.3365 193.8194 14.11193101 41057 1 26536U 00055A 01193.52724797 .00000199 00000-0 13448-3 0 4086 2 26536 98.8289 139.8020 0010741 155.3250 204.8435 14.11195087 41610 1 26536U 00055A 01195.52724797 .00000199 00000-0 13448-3 0 4088 2 26536 98.8289 139.8020 0010741 155.3250 204.8435 14.11195087 41610 1 26536U 00055A 01196.52724797 .00000199 00000-0 13448-3 0 4089 2 26536 98.8289 139.8020 0010741 155.3250 204.8435 14.11195087 41610 1 26536U 00055A 01197.35592618 -.00000042 00000-0 11014-5 0 4117 2 26536 98.8284 143.5694 0010977 144.1076 216.0830 14.11195352 42156 1 26536U 00055A 01199.35592618 -.00000042 00000-0 11014-5 0 4119 2 26536 98.8284 143.5694 0010977 144.1076 216.0830 14.11195352 42156 1 26536U 00055A 01200.33378753 .00000519 00000-0 31183-3 0 4139 2 26536 98.8280 146.4979 0011132 136.9479 223.2922 14.11200011 42577 1 26536U 00055A 01202.33378753 .00000519 00000-0 31183-3 0 4131 2 26536 98.8280 146.4979 0011132 136.9479 223.2922 14.11200011 42577 1 26536U 00055A 01203.38252920 .00000143 00000-0 10349-3 0 4206 2 26536 98.8296 149.4972 0011307 128.9493 231.2485 14.11200427 43004 1 26536U 00055A 01205.38252920 .00000143 00000-0 10349-3 0 4208 2 26536 98.8296 149.4972 0011307 128.9493 231.2485 14.11200427 43004 1 26536U 00055A 01206.78580058 .00000132 00000-0 73051-4 0 4218 2 26536 98.8273 152.8411 0010942 122.0390 238.2351 14.11200598 43480 1 26536U 00055A 01208.78580058 .00000132 00000-0 73051-4 0 4210 2 26536 98.8273 152.8411 0010942 122.0390 238.2351 14.11200598 43480 1 26536U 00055A 01209.78580058 .00000132 00000-0 73051-4 0 4211 2 26536 98.8273 152.8411 0010942 122.0390 238.2351 14.11200598 43480 1 26536U 00055A 01210.54355615 .00000439 00000-0 26728-3 0 4292 2 26536 98.8277 156.5400 0011482 109.5197 250.7604 14.11204367 44016 1 26536U 00055A 01212.54355615 .00000439 00000-0 26728-3 0 4294 2 26536 98.8277 156.5400 0011482 109.5197 250.7604 14.11204367 44016 1 26536U 00055A 01213.52138599 -.00000011 00000-0 17956-4 0 4328 2 26536 98.8285 159.4681 0011614 101.9362 258.2938 14.11204044 44436 1 26536U 00055A 01215.52138599 -.00000011 00000-0 17956-4 0 4320 2 26536 98.8285 159.4681 0011614 101.9362 258.2938 14.11204044 44436 1 26536U 00055A 01216.28652703 -.00000115 00000-0 -39542-4 0 4389 2 26536 98.8297 162.1874 0011709 94.6019 265.6443 14.11203483 44828 1 26536U 00055A 01218.28652703 -.00000115 00000-0 -39542-4 0 4381 2 26536 98.8297 162.1874 0011709 94.6019 265.6443 14.11203483 44828 1 26536U 00055A 01219.54797372 .00000482 00000-0 29111-3 0 4401 2 26536 98.8297 165.3956 0011665 86.4832 273.8055 14.11207940 45280 1 26536U 00055A 01223.53318570 .00000403 00000-0 24720-3 0 4486 2 26536 98.8301 167.3487 0011727 81.4840 278.7631 14.11209438 45569 1 26536U 00055A 01224.22740920 .00000181 00000-0 12465-3 0 4500 2 26536 98.8305 169.9995 0011828 73.4763 286.7515 14.11209589 45941 1 26536U 00055A 01226.22740920 .00000181 00000-0 12465-3 0 4502 2 26536 98.8305 169.9995 0011828 73.4763 286.7515 14.11209589 45941 1 26536U 00055A 01228.70893451 .00000164 00000-0 11479-3 0 4588 2 26536 98.8298 172.4404 0011756 67.6276 292.6049 14.11209801 46294 1 26536U 00055A 01229.70893451 .00000164 00000-0 11479-3 0 4589 2 26536 98.8298 172.4404 0011756 67.6276 292.6049 14.11209801 46294 1 26536U 00055A 01230.70893451 .00000164 00000-0 11479-3 0 4581 2 26536 98.8298 172.4404 0011756 67.6276 292.6049 14.11209801 46294 1 26536U 00055A 01231.16827961 .00000167 00000-0 11688-3 0 4625 2 26536 98.8301 177.8122 0011639 53.6942 306.5795 14.11214674 47063 1 26536U 00055A 01232.16827961 .00000167 00000-0 11688-3 0 4626 2 26536 98.8301 177.8122 0011639 53.6942 306.5795 14.11214674 47063 1 26536U 00055A 01234.16827961 .00000167 00000-0 11688-3 0 4628 2 26536 98.8301 177.8122 0011639 53.6942 306.5795 14.11214674 47063 1 26536U 00055A 01235.28788434 -.00000019 00000-0 13584-4 0 4639 2 26536 98.8303 180.8802 0011673 45.6293 314.5706 14.11214329 47509 1 26536U 00055A 01237.28788434 -.00000019 00000-0 13584-4 0 4631 2 26536 98.8303 180.8802 0011673 45.6293 314.5706 14.11214329 47509 1 26536U 00055A 01238.90380537 .00000607 00000-0 36039-3 0 4690 2 26536 98.8287 184.4362 0011435 35.9825 324.2536 14.11219803 48018 1 26536U 00055A 01240.90380537 .00000607 00000-0 36039-3 0 4693 2 26536 98.8287 184.4362 0011435 35.9825 324.2536 14.11219803 48018 1 26536U 00055A 01241.81070791 .00000475 00000-0 26316-3 0 4715 2 26536 98.8311 187.2971 0011324 28.0318 332.1932 14.11221934 48421 1 26536U 00055A 01243.81070791 .00000475 00000-0 26316-3 0 4717 2 26536 98.8311 187.2971 0011324 28.0318 332.1932 14.11221934 48421 1 26536U 00055A 01244.81070791 .00000475 00000-0 26316-3 0 4718 2 26536 98.8311 187.2971 0011324 28.0318 332.1932 14.11221934 48421 1 26536U 00055A 01245.07209350 .00000128 00000-0 94991-4 0 4778 2 26536 98.8307 190.5062 0011208 19.6597 340.4658 14.11221420 48887 1 26536U 00055A 01248.34830009 .00000296 00000-0 18792-3 0 4828 2 26536 98.8310 191.7616 0011162 15.9568 344.2016 14.11222961 49067 1 26536U 00055A 01251.32609325 .00001024 00000-0 59149-3 0 4882 2 26536 98.8306 194.6919 0010610 7.6590 352.5069 14.11229204 49483 1 26536U 00055A 01252.32609325 .00001024 00000-0 59149-3 0 4883 2 26536 98.8306 194.6919 0010610 7.6590 352.5069 14.11229204 49483 1 26536U 00055A 01253.28904067 .00000476 00000-0 28786-3 0 4939 2 26536 98.8313 199.5761 0010625 354.1376 5.8695 14.11231348 50182 1 26536U 00055A 01254.28904067 .00000476 00000-0 28786-3 0 4930 2 26536 98.8313 199.5761 0010625 354.1376 5.8695 14.11231348 50182 1 26536U 00055A 01257.77795774 .00000396 00000-0 21957-3 0 4912 2 26536 98.8325 201.0401 0010641 349.6053 10.5368 14.11232499 50395 1 26536U 00055A 01259.19593623 .00000407 00000-0 24966-3 0 4971 2 26536 98.8319 202.4342 0010533 345.5183 14.5745 14.11234327 50593 1 26536U 00055A 01260.24460428 .00002828 00000-0 15898-2 0 5024 2 26536 98.8347 205.4393 0010520 335.9078 24.2123 14.11246879 51027 1 26536U 00055A 01262.24460428 .00002828 00000-0 15898-2 0 5026 2 26536 98.8347 205.4393 0010520 335.9078 24.2123 14.11246879 51027 1 26536U 00055A 01263.86040242 .00000236 00000-0 15507-3 0 5044 2 26536 98.8330 208.9959 0010029 325.6148 34.2222 14.11242246 51534 1 26536U 00055A 01265.86040242 .00000236 00000-0 15507-3 0 5046 2 26536 98.8330 208.9959 0010029 325.6148 34.2222 14.11242246 51534 1 26536U 00055A 01266.48370535 .00000763 00000-0 44696-3 0 5109 2 26536 98.8322 211.5764 0009993 317.5332 42.5306 14.11247511 51908 1 26536U 00055A 01268.48370535 .00000763 00000-0 44696-3 0 5101 2 26536 98.8322 211.5764 0009993 317.5332 42.5306 14.11247511 51908 1 26536U 00055A 01269.46144161 .00000850 00000-0 49469-3 0 5137 2 26536 98.8332 214.5060 0009967 308.9631 51.0915 14.11254132 52323 1 26536U 00055A 01271.46144161 .00000850 00000-0 49469-3 0 5130 2 26536 98.8332 214.5060 0009967 308.9631 51.0915 14.11254132 52323 1 26536U 00055A 01272.46144161 .00000850 00000-0 49469-3 0 5131 2 26536 98.8332 214.5060 0009967 308.9631 51.0915 14.11254132 52323 1 26536U 00055A 01273.85712460 .00000944 00000-0 54660-3 0 5197 2 26536 98.8341 218.8353 0009809 295.3353 64.7069 14.11263557 52940 1 26536U 00055A 01275.85712460 .00000944 00000-0 54660-3 0 5199 2 26536 98.8341 218.8353 0009809 295.3353 64.7069 14.11263557 52940 1 26536U 00055A 01276.85712460 .00000944 00000-0 54660-3 0 5190 2 26536 98.8341 218.8353 0009809 295.3353 64.7069 14.11263557 52940 1 26536U 00055A 01277.54379786 .00001359 00000-0 77629-3 0 5233 2 26536 98.8355 222.4636 0009777 282.7079 77.3114 14.11274655 53469 1 26536U 00055A 01279.54379786 .00001359 00000-0 77629-3 0 5235 2 26536 98.8355 222.4636 0009777 282.7079 77.3114 14.11274655 53469 1 26536U 00055A 01281.03263857 .00001012 00000-0 58413-3 0 5262 2 26536 98.8358 223.9297 0009766 278.3915 81.6034 14.11276583 53673 1 26536U 00055A 01283.72673282 .00000464 00000-0 28086-3 0 5305 2 26536 98.8368 226.5829 0009721 270.3592 89.6154 14.11277707 54051 1 26536U 00055A 01285.64096343 .00000573 00000-0 34116-3 0 5341 2 26536 98.8354 228.4671 0009750 265.1362 94.8733 14.11280373 54325 1 26536U 00055A 01286.26415343 .00000688 00000-0 40496-3 0 5407 2 26536 98.8361 231.0475 0009813 257.1599 102.8708 14.11285427 54695 1 26536U 00055A 01288.26415343 .00000688 00000-0 40496-3 0 5409 2 26536 98.8361 231.0475 0009813 257.1599 102.8708 14.11285427 54695 1 26536U 00055A 01289.26415343 .00000688 00000-0 40496-3 0 5400 2 26536 98.8361 231.0475 0009813 257.1599 102.8708 14.11285427 54695 1 26536U 00055A 01290.30526293 .00000685 00000-0 40344-3 0 5436 2 26536 98.8371 235.0305 0009958 243.7028 116.3617 14.11293863 55266 1 26536U 00055A 01292.30526293 .00000685 00000-0 40344-3 0 5438 2 26536 98.8371 235.0305 0009958 243.7028 116.3617 14.11293863 55266 1 26536U 00055A 01294.92841924 .00000761 00000-0 44504-3 0 5515 2 26536 98.8388 237.6137 0010115 235.8145 124.2059 14.11297705 55632 1 26536U 00055A 01295.92841924 .00000761 00000-0 44504-3 0 5516 2 26536 98.8388 237.6137 0010115 235.8145 124.2059 14.11297705 55632 1 26536U 00055A 01296.92841924 .00000761 00000-0 44504-3 0 5517 2 26536 98.8388 237.6137 0010115 235.8145 124.2059 14.11297705 55632 1 26536U 00055A 01297.31652132 .00001570 00000-0 89239-3 0 5582 2 26536 98.8395 242.9195 0010489 219.4800 140.7192 14.11319060 56397 1 26536U 00055A 01298.31652132 .00001570 00000-0 89239-3 0 5583 2 26536 98.8395 242.9195 0010489 219.4800 140.7192 14.11319060 56397 1 26536U 00055A 01300.31652132 .00001570 00000-0 89239-3 0 5587 2 26536 98.8395 242.9195 0010489 219.4800 140.7192 14.11319060 56397 1 26536U 00055A 01301.31652132 .00001570 00000-0 89239-3 0 5588 2 26536 98.8395 242.9195 0010489 219.4800 140.7192 14.11319060 56397 1 26536U 00055A 01302.31652132 .00001570 00000-0 89239-3 0 5589 2 26536 98.8395 242.9195 0010489 219.4800 140.7192 14.11319060 56397 1 26536U 00055A 01303.69701525 .00001326 00000-0 75727-3 0 5601 2 26536 98.8394 249.2044 0010657 201.3535 158.6300 14.11334348 57296 1 26536U 00055A 01304.69701525 .00001326 00000-0 75727-3 0 5602 2 26536 98.8394 249.2044 0010657 201.3535 158.6300 14.11334348 57296 1 26536U 00055A 03033.64493454 -.00000048 00000-0 -19377-5 0 1910 2 26536 98.8994 341.0557 0010781 358.7455 1.3687 14.11892322121765 1 26536U 00055A 03105.57305823 -.00000046 00000-0 -10084-5 0 2908 2 26536 98.9098 52.4770 0010847 145.9495 214.2375 14.11935421131919 1 26536U 00055A 03246.73105806 -.00000044 00000-0 41911-6 0 5174 2 26536 98.9216 192.8446 0011392 108.2516 251.9895 14.11996387151838 1 26536U 00055A 03283.93287809 -.00000045 00000-0 -13713-6 0 5701 2 26536 98.9250 229.8721 0010928 11.0565 349.0863 14.12012136157081 1 26536U 00055A 03284.30401914 -.00000045 00000-0 -13713-6 0 5731 2 26536 98.9263 232.2337 0010708 4.7040 161.8456 14.12013245157416 1 26536U 00055A 03350.54042303 .00000263 00000-0 16782-3 0 6629 2 26536 98.9415 296.2454 0010612 174.1478 185.9819 14.12056690166484 1 26536U 00055A 03354.72105595 -.00000047 00000-0 -13719-5 0 6706 2 26536 98.9411 300.4127 0010528 162.0193 198.1352 14.12055656167076 1 26536U 00055A 04041.80128544 -.00000045 00000-0 -13739-6 0 7474 2 26536 98.9504 352.3646 0010684 23.8282 336.3378 14.12077112174429 1 26536U 00055A 04065.60911586 -.00000045 00000-0 51893-7 0 7804 2 26536 98.9514 16.1277 0010007 315.8719 44.1604 14.12086784177786 1 26536U 00055A 04066.60911586 -.00000045 00000-0 51893-7 0 7805 2 26536 98.9514 16.1277 0010007 315.8719 44.1604 14.12086784177786 1 26536U 00055A 04067.22279676 -.00000045 00000-0 51893-7 0 7867 2 26536 98.9520 19.7348 0010061 305.8724 54.1540 14.12087124178292 1 26536U 00055A 04069.22279676 -.00000045 00000-0 51893-7 0 7869 2 26536 98.9520 19.7348 0010061 305.8724 54.1540 14.12087124178292 1 26536U 00055A 04070.69475686 .00000330 00000-0 20417-3 0 7894 2 26536 98.9526 23.2025 0009804 294.6037 65.4100 14.12090524178784 1 26536U 00055A 04101.74575830 -.00000048 00000-0 -18158-5 0 8268 2 26536 98.9581 52.2186 0009959 206.8785 153.1836 14.12100928182888 1 26536U 00055A 04102.93427353 .00000116 00000-0 87677-4 0 8339 2 26536 98.9577 55.4039 0010032 197.3767 162.7099 14.12101801183332 1 26536U 00055A 04164.02751748 -.00000049 00000-0 -20082-5 0 9061 2 26536 98.9635 114.4717 0011107 39.2696 320.9279 14.12122205191670 1 26536U 00055A 04296.52393953 -.00000044 00000-0 43478-6 0 703 2 26536 98.9787 247.0457 0010961 24.6886 335.4851 14.12162529210377 1 26536U 00055A 04297.71230609 .00000453 00000-0 27138-3 0 731 2 26536 98.9786 250.2362 0010906 16.3728 343.8045 14.12166347210829 1 26536U 00055A 04314.52043355 -.00000039 00000-0 34680-5 0 946 2 26536 98.9820 265.0732 0010078 333.6983 26.3690 14.12170160212910 1 26536U 00055A 04315.56707934 -.00000039 00000-0 34680-5 0 963 2 26536 98.9820 268.1246 0010078 325.1104 34.9725 14.12172484213348 1 26536U 00055A 04319.76348483 -.00000039 00000-0 34680-5 0 1038 2 26536 98.9836 270.3284 0010177 319.6366 40.4092 14.12174566213656 1 26536U 00055A 04320.76348483 -.00000039 00000-0 34680-5 0 1030 2 26536 98.9836 270.3284 0010177 319.6366 40.4092 14.12174566213656 1 26536U 00055A 04321.73119733 .00000217 00000-0 14253-3 0 1053 2 26536 98.9839 274.3030 0010115 307.9196 52.1227 14.12176985214215 1 26536U 00055A 04355.68529923 -.00000037 00000-0 41853-5 0 1554 2 26536 98.9901 306.3408 0010231 209.8821 150.1742 14.12188212218721 1 26536U 00055A 04356.80276396 .00000109 00000-0 83830-4 0 1573 2 26536 98.9902 309.4662 0010100 202.0590 158.0172 14.12189369219168 1 26536U 00055A 05001.30492333 -.00000047 00000-0 -12212-5 0 1689 2 26536 98.9918 317.9933 0010517 177.3534 182.7695 14.12190891220364 1 26536U 00055A 05009.73621216 -.00000051 00000-0 -32734-5 0 1808 2 26536 98.9928 326.4508 0011111 154.6244 205.5473 14.12193935221557 1 26536U 00055A 05010.57025924 .00000073 00000-0 63999-4 0 1815 2 26536 98.9929 329.2931 0010865 145.8248 214.3823 14.12195778221958 1 26536U 00055A 05087.74241172 -.00000048 00000-0 -11830-5 0 2939 2 26536 99.0055 44.7535 0009704 299.4101 60.6082 14.12220320232563 1 26536U 00055A 05088.64725096 .00000337 00000-0 20769-3 0 2940 2 26536 99.0061 47.6726 0009704 290.6255 69.4125 14.12223475232971 1 26536U 00055A 05105.52564669 -.00000055 00000-0 -49673-5 0 3132 2 26536 99.0086 62.6221 0009826 244.6142 115.4016 14.12225863235072 1 26536U 00055A 05139.24985915 -.00000045 00000-0 -32481-7 0 3599 2 26536 99.0124 96.5257 0011192 148.1808 212.0042 14.12237577239832 1 26536U 00055A 05140.24985915 -.00000045 00000-0 -32481-7 0 3591 2 26536 99.0124 96.5257 0011192 148.1808 212.0042 14.12237577239832 1 26536U 00055A 05141.24985915 -.00000045 00000-0 -32481-7 0 3592 2 26536 99.0124 96.5257 0011192 148.1808 212.0042 14.12237577239832 1 26536U 00055A 05142.83881180 .00000190 00000-0 12773-3 0 3606 2 26536 99.0136 103.1521 0011404 131.3975 228.8861 14.12240999240769 1 26536U 00055A 05143.83881180 .00000190 00000-0 12773-3 0 3607 2 26536 99.0136 103.1521 0011404 131.3975 228.8861 14.12240999240769 1 26536U 00055A 05148.03511176 -.00000046 00000-0 -16774-6 0 3687 2 26536 99.0139 105.3596 0011470 126.1428 234.0856 14.12240468241075 1 26536U 00055A 05149.03511176 -.00000046 00000-0 -16774-6 0 3688 2 26536 99.0139 105.3596 0011470 126.1428 234.0856 14.12240468241075 1 26536U 00055A 05150.56131587 .00000092 00000-0 74468-4 0 3694 2 26536 99.0137 110.9153 0011386 110.1363 250.1395 14.12242987241852 1 26536U 00055A 05151.56131587 .00000092 00000-0 74468-4 0 3695 2 26536 99.0137 110.9153 0011386 110.1363 250.1395 14.12242987241852 1 26536U 00055A 05180.48369142 -.00000051 00000-0 -28880-5 0 4065 2 26536 99.0161 137.9938 0011057 40.7323 319.4663 14.12250768245653 1 26536U 00055A 05200.88791516 -.00000046 00000-0 -57801-6 0 4404 2 26536 99.0146 158.5189 0010261 343.4599 16.6236 14.12255393248538 1 26536U 00055A 05201.79267973 .00000352 00000-0 21585-3 0 4416 2 26536 99.0150 161.4408 0010012 334.8498 25.2449 14.12258686248941 1 26536U 00055A 05224.26766343 -.00000046 00000-0 -31950-6 0 4678 2 26536 99.0163 182.0427 0009725 274.2212 85.7848 14.12262444251838 1 26536U 00055A 05287.39253671 -.00000050 00000-0 -22772-5 0 5651 2 26536 99.0294 245.5989 0011411 94.8973 265.3506 14.12279183260741 1 26536U 00055A 05288.93486787 .00000099 00000-0 78477-4 0 5684 2 26536 99.0285 249.1688 0011319 84.5170 275.7289 14.12282639261248 1 26536U 00055A 06030.99928532 -.00000002 00000-0 23897-4 0 7307 2 26536 99.0484 355.1287 0010770 145.6278 214.5555 14.12311658276078 1 26536U 00055A 06110.34522608 -.00000042 00000-0 21447-5 0 8483 2 26536 99.0614 75.2874 0009829 288.6429 71.3675 14.12331643287276 1 26536U 00055A 07039.97814278 .00000375 00000-0 22848-3 0 2778 2 26536 99.1023 13.7704 0010740 173.3696 186.7645 14.12404753328862 1 26536U 00055A 07096.01269642 -.00000167 00000-0 -65673-4 0 3614 2 26536 99.1111 70.7024 0010857 23.3186 336.8474 14.12414945336776 pygac-1.7.2/pygac/000077500000000000000000000000001444627033600137405ustar00rootroot00000000000000pygac-1.7.2/pygac/__init__.py000066400000000000000000000030371444627033600160540ustar00rootroot00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (c) 2014 Adam.Dybbroe # Author(s): # Adam.Dybbroe # Carlos Horn # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . try: from pygac.version import version as __version__ # noqa except ModuleNotFoundError: raise ModuleNotFoundError( "No module named pygac.version. This could mean " "you didn't install 'pygac' properly. Try reinstalling ('pip " "install').") import logging from pygac.configuration import get_config, read_config_file # noqa from pygac.runner import get_reader_class, process_file # noqa # add a NullHandler to prevent messages in sys.stderr if the using application does # not use logging, but pygac makes logging calls of severity WARNING and greater. # See https://docs.python.org/3/howto/logging.html (Configuring Logging for a Library) logging.getLogger('pygac').addHandler(logging.NullHandler()) pygac-1.7.2/pygac/calibration.py000066400000000000000000000636031444627033600166110ustar00rootroot00000000000000#!/usr/bin/env python # Copyright (c) 2014-2015, 2019 Pytroll Developers # Author(s): # Martin Raspaud # Abhay Devasthale # Carlos Horn # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . """Calibration coefficients and generic calibration functions """ from __future__ import division from enum import Enum import sys import logging import numpy as np import json import hashlib import warnings import datetime as dt from collections import namedtuple from pkg_resources import resource_filename LOG = logging.getLogger(__name__) class CoeffStatus(Enum): """Indicates the status of calibration coefficients.""" NOMINAL = 'nominal' PROVISIONAL = 'provisional' EXPERIMENTAL = 'experimental' class Calibrator(object): """Factory class to create namedtuples holding the calibration coefficients. Attributes: fields: coefficient names Calibrator: namedtuple constructor default_coeffs: dictonary containing default values for all spacecrafts """ version_hashs = { '963af9b66268475ed500ad7b37da33c5': { 'name': 'PATMOS-x, v2017r1', 'status': CoeffStatus.NOMINAL }, '689386c822de18a07194ac7fd71652ea': { 'name': 'PATMOS-x, v2017r1, with provisional coefficients for MetOp-C', 'status': CoeffStatus.PROVISIONAL } } fields = [ "dark_count", "gain_switch", "s0", "s1", "s2", "b", # "b0", "b1", "b2", "centroid_wavenumber", "space_radiance", "to_eff_blackbody_intercept", "to_eff_blackbody_slope", "date_of_launch", "d", "spacecraft", "version" ] Calibrator = namedtuple('Calibrator', fields) default_coeffs = None default_file = None default_version = None def __new__(cls, spacecraft, custom_coeffs=None, coeffs_file=None): """Creates a namedtuple for calibration coefficients of a given spacecraft Args: spacecraft (str): spacecraft name in pygac convention custom_coeffs (dict): custom coefficients (optional) coeffs_file (str): path to coefficents file (optional) Returns: calibrator (namedtuple): calibration coefficients Note: The coefficients in coeffs_file serve as default values if no custom_coeffs are given. If omitted, Calibrator uses the PyGAC internal defaults. """ if cls.default_coeffs is None or cls.default_file != coeffs_file: cls.default_file = coeffs_file cls.default_coeffs, cls.default_version = cls.read_coeffs(coeffs_file) if custom_coeffs: LOG.info('Using following custom coefficients "%s".', custom_coeffs) customs = custom_coeffs or {} defaults = cls.default_coeffs[spacecraft] coeffs = defaults.copy() coeffs.update(customs) # transpose the coefficient order from channel - coeff to coeff - channel # and store as arrays for vectorized calls of calibration functions arraycoeffs = dict.fromkeys(cls.fields) # visible channels for key in ("dark_count", "gain_switch", "s0", "s1", "s2"): arraycoeffs[key] = np.array([ coeffs[channel][key] for channel in ('channel_1', 'channel_2', 'channel_3a') ], dtype=float) # thermal channels for key in ("centroid_wavenumber", "space_radiance", "to_eff_blackbody_intercept", "to_eff_blackbody_slope"): arraycoeffs[key] = np.array([ coeffs[channel][key] for channel in ('channel_3b', 'channel_4', 'channel_5') ], dtype=float) arraycoeffs["b"] = np.array([ [ coeffs[channel][key] for key in ("b0", "b1", "b2") ] for channel in ('channel_3b', 'channel_4', 'channel_5') ], dtype=float) # thermometers # Note, that "thermometer_0" does not exists, and is filled with zeros to # account for the PRT reset every fifth scanline arraycoeffs["d"] = np.array([ [ coeffs.get("thermometer_{0}".format(t), {}).get("d{0}".format(d), 0.0) for t in range(5) ] for d in range(5) ], dtype=float) # parse date of launch date_of_launch_str = coeffs["date_of_launch"].replace('Z', '+00:00') if sys.version_info < (3, 7): # Note that here any time information is lost import dateutil.parser date_of_launch = dateutil.parser.parse(date_of_launch_str) else: # datetime.fromisoformat() was introduced in Python-3.7 date_of_launch = dt.datetime.fromisoformat( date_of_launch_str).astimezone(dt.timezone.utc) # remove time zone information (easier to handle in calculations) arraycoeffs["date_of_launch"] = date_of_launch.replace(tzinfo=None) arraycoeffs["spacecraft"] = spacecraft arraycoeffs["version"] = cls.default_version if custom_coeffs: arraycoeffs["version"] = None # create namedtuple calibrator = cls.Calibrator(**arraycoeffs) return calibrator @classmethod def read_coeffs(cls, coeffs_file): """Read calibration coefficients for all satellites from file. Args: coeffs_file (str): path to coefficients file Returns: coeffs (dict): dictionary containing coefficients for all satellites version (str): version of the coefficients (None if unknown) """ if coeffs_file: LOG.info('Read calibration coefficients from "%s"', coeffs_file) else: LOG.debug("Read PyGAC internal calibration coefficients.") coeffs_file = resource_filename('pygac', 'data/calibration.json') with open(coeffs_file, mode='rb') as json_file: content = json_file.read() coeffs = json.loads(content) version = cls._get_coeffs_version(content) return coeffs, version @classmethod def _get_coeffs_version(cls, coeff_file_content): """Determine coefficient version.""" md5_hash = hashlib.md5(coeff_file_content) digest = md5_hash.hexdigest() version_dict = cls.version_hashs.get( digest, {'name': None, 'status': None} ) version = version_dict['name'] status = version_dict['status'] if version is None: warning = "Unknown calibration coefficients version!" warnings.warn(warning, RuntimeWarning) LOG.warning(warning) else: LOG.info('Identified calibration coefficients version "%s".', version) if status != CoeffStatus.NOMINAL: warning = 'Using {} calibration coefficients'.format(status) warnings.warn(warning, RuntimeWarning) LOG.warning(warning) return version @staticmethod def date2float(date, decimals=5): """Convert date to year float. Argument date (datetime.datetime) - date decimals (int or None) - rounding precision if None, do not round (default=5) Return date_float (float) - date as year Note rounding to the 5th decimal reproduces the original float values from patmos-x Example: date2float('2000-07-02') == 2000.5 because the 2nd of July was the middle day of the leap year 2000 """ year = date.year days_in_year = (dt.datetime(year+1, 1, 1) - dt.datetime(year, 1, 1)).days diff = date - dt.datetime(year, 1, 1) seconds = diff.total_seconds() date_float = date.year + seconds/(days_in_year*24*3600) if decimals is not None: date_float = round(date_float, decimals) return date_float def calibrate_solar(counts, chan, year, jday, cal, corr=1): """Do the solar calibration and return scaled radiance. Arguments: counts (array) - raw counts for the given channels (options 1, 2[, 3A if available & active]) chan (array) - pygac internal channel index array year (int) - year jday (int) - day of year cal (namedtuple) - spacecraft specific calibration coefficients, see Calibrator Optional: corr (float) - depricated - reflectance correction multiplier (default = 1) Returns: r_cal (array) - scaled radiance Note: This function and documentation follows the time-dependent solar calibration as described in: Heidinger, A.K., W.C. Straka III, C.C. Molling, J.T. Sullivan, and X. Wu, (2010). "Deriving an inter-sensor consistent calibration for the AVHRR solar reflectance data record.", International Journal of Remote Sensing, 31:6493 - 6517. """ # Step 1. Obtain the calibration slope using equation (6) in Heidinger et al 2010 # S(t) = S_0*(100 + S_1*t + S_2*t^2) / 100, # where t is the time since launch expressed as years, S(t) is the calibration slope # and S_0, S_1 and S_2 are the coefficients of the quadratic fit. # See also section "Fitting of Calibration Slope Equations" in PATMOS-x documentation # (CDRP-ATBD-0184 Rev. 2 03/29/2018 page 19) # Note that the this implementation does not take leap years into account! # Using datetime objects would include it automatically # sensing_date = dt.strptime('{0}.{1}'.format(year, jday), '%Y.%j') # delta = sensing_date - cal.date_of_launch # t = delta.total_seconds() / 31557600 # divided by seconds of a Julian year l_date = Calibrator.date2float(cal.date_of_launch) t = (year + jday / 365.0) - l_date # Note: splitting the calibration slope is needed to reproduce old results and may disappear in future, # because actually there is only one set of slope parameters defined for single-gain counts # as described in Heidinger et al. 2010. See Step 2 for more information. # Note that in case of a single-gain instrument, all gain_switch parameters are set to NaN. if np.isnan(cal.gain_switch).all(): glow = ghigh = np.ones(3) else: glow = np.array([0.5, 0.5, 0.25]) ghigh = np.array([1.5, 1.5, 1.75]) # especially the rounding to three digits is crutial to exectly reproduce the original PATMOS-x values. al, bl, cl = np.round(glow*cal.s0, 3), cal.s1, cal.s2 ah, bh, ch = np.round(ghigh*cal.s0, 3), cal.s1, cal.s2 # apply slope equation for low and high gain coefficients stl = (al[chan] * (100.0 + bl[chan] * t + cl[chan] * t * t)) / 100.0 sth = (ah[chan] * (100.0 + bh[chan] * t + ch[chan] * t * t)) / 100.0 # Step 2. Calculate the scaled radiance using equation (1) in Heidinger et al 2010 # R_cal = S*(C-D), # where R_cal is the value generated from the calibration and is referred to as a # scaled radiance, S is the calibration slope, C the measured count and D the dark count. # This equation is only valid for single-gain instruments. Starting with the AVHRR/3 series # (from NOAA-15 onwards), the channel-1, 2 and 3a require a dual-gain calibration. # The conversion for channel-1 and 2 is given in the appendix, equation (A1) and (A2). # In general, these equations can be written as # C(C_dg) = D + G_low*(C_dg-D), if C_dg <= B_dg # C(C_dg) = C(B_dg) + G_high*(C_dg-B_dg), otherwise # where C_dg is the measured dual-gain counts, B_dg is the dual-gain switch and G_low/high # are the gain factors for the low and high count region. # Quote from the book "Remote Sensing Time Series: Revealing Land Surface Dynamics": # > Another change in design of the AVHRR/3 instrument was the introduction of a dual-gain feature # > for the reflective channels 1, 2 and 3A. In order to improve the radiometric resolution of the # > instrument for low reflectance targets, the dynamic range of the instrument was divided equally # > in two ranges, i.e. nominally from 0 to 500 counts and from 500 to 1,000 counts. For channels 1 # > and 2 half of the available Digital Number (DN) range is assigned to the low albedo range from # > 0 to 25% with the other half to the high albedo range from 26 to 100%. This allows for an increase # > in the radiometric resolution for dark targets. For channel 3A, the split between low and high # > albedo range is set at 12.5% albedo (Rao and Sullivan 2001). # The gain factors are given by the ratio of the fraction of albedo range to the fraction of count range # for the given count region. From the information given by the book quote, we get # G_low = 25% / 50% = 0.5 for channel-1 and 2 # G_low = 12.5% / 50% = 0.25 for channel-3a # G_high = (100% - 25%) / (100% - 50%) = 1.5 for channel-1 and 2 # G_high = (100% - 12.5%) / (100% - 50%) = 1.75 for channel-3a # Inserting the converted dual-gain counts into equation (1) yields the scaled radiance equation, which # is a continuous piecewise linear function of two line segments. # R_cal # ^ * R_cal = S*G_low*(C_dg-D), if C_dg <= B_dg # | * R_cal = S*G_low*(B_dg-D) + S*G_high*(C_dg-B_dg), otherwise # | * # R_cal(B_dg)|--------* # | * | # 0 +--*-------------> C_dg # * D B_dg # Note, that in the former implementation, there was a distinction beteen low and high gain slopes # given by S_low/high = S*G_low/high. which only affects S0 in equation (6) in Heidinger et al 2010. # Furthermore, the implementation allows for an additional correction factor corr which defaults to 1. (depricated) d = cal.dark_count[chan] b_dg = cal.gain_switch[chan] # Note that in case of a single-gain instrument, all gain_switch parameters are set to NaN. if not np.isnan(cal.gain_switch).all(): r_cal = np.where( counts <= b_dg, (counts - d)*stl, (b_dg - d)*stl + (counts - b_dg)*sth ) else: r_cal = stl*(counts - d) # apply depricated correction if corr != 1: warnings.warn( "Using the 'corr' argument is depricated in favor of making the units" " of the function result clear. Please make any unit conversion outside this function.", DeprecationWarning ) r_cal *= corr # Mask negative scaled radiances r_cal[r_cal < 0] = np.nan return r_cal def calibrate_thermal(counts, prt, ict, space, line_numbers, channel, cal): """Do the thermal calibration and return brightness temperatures (K). Arguments: counts (array) - counts for the given channel (options: 3B (if active), 4, 5) prt (array) - counts of the Platinum Resistance Thermometers (PRT) ict (array) - counts of the In-orbit Calibration Targets (ICT) space (array) - counts of cold space line_numbers (array) - line number index channel (array) - pygac internal channel index array cal (namedtuple) - spacecraft specific calibration coefficients, see Calibrator Note: This function and documentation follows steps 1 to 4 from the KLM User's Guide (Robel, J. (2009). NOAA KLM user's guide with NOAA-N,-P supplement. NOAA KLM Users Guide - August 2014 Revision) section 7.1.2.4 "Steps to Calibrate the AVHRR Thermal Channels", and the smoothing approach by Trishchenko (2002). The correction method for the non-linear response of the Mercury-Cadmium-Telluride detectors used for channels 4 and 5 is based on Walton et al. (1998) """ # Shift channel index by three to obtain thermal channels [3b, 4, 5]. chan = channel - 3 lines, columns = counts.shape[:2] # Step 1. The temperature of the internal blackbody target is measured by four platinum resistance # thermometers (PRT)s. In each scanline, data words 18, 19 and 20 in the HRPT minor frame format contain # three readings from one of the four PRTs. (See Section 4.1.3) A different PRT is sampled each scanline; # every fifth scanline all three PRT values are set equal to 0 to indicate that a set of four PRTs has # just been sampled. The count value CPRT of each PRT is converted to temperature TPRT by the formula # T_PRT = d0 + d1*C_PRT + d2*C_PRT^2 + d3*C_PRT^3 + d4*C_PRT^4 (7.1.2.4-1) # The coefficients d0, d1, d2, d3 and d4 vary slightly for each PRT. Values for the coefficients are # found in Appendix D, in Table D.1-8 for NOAA-15 (coefficients d3 and d4 are 0 for NOAA-15), # Table D.2-9 for NOAA-16, Table D.3-3 for NOAA-17 and Table D.4-3 for NOAA-18. To # calculate the internal blackbody temperature TBB, NESDIS uses the simple average # T_BB = (T_PRT1 + T_PRT2 + T_PRT3 + T_PRT4)/4 (7.1.2.4-2) # Find the corresponding PRT values for a given line number # Note that the prt values are the average value of the three readings from one of the four # PRTs. See reader.get_telemetry implementations. prt_threshold = 50 # empirically found and set by Abhay Devasthale offset = 0 for i, prt_val in enumerate(prt): # According to the KLM Guide the fill value between PRT measurments is 0, but we search # for the first measurment gap using the threshold. Is this on purpose? if prt_val < prt_threshold: offset = i break # get the PRT index, iprt equals to 0 corresponds to the measurement gaps iprt = (line_numbers - line_numbers[0] + 5 - offset) % 5 # fill measured values below threshold by interpolation ifix = np.where(np.logical_and(iprt == 1, prt < prt_threshold)) if len(ifix[0]): inofix = np.where(np.logical_and(iprt == 1, prt > prt_threshold)) prt[ifix] = np.interp(ifix[0], inofix[0], prt[inofix]) ifix = np.where(np.logical_and(iprt == 2, prt < prt_threshold)) if len(ifix[0]): inofix = np.where(np.logical_and(iprt == 2, prt > prt_threshold)) prt[ifix] = np.interp(ifix[0], inofix[0], prt[inofix]) ifix = np.where(np.logical_and(iprt == 3, prt < prt_threshold)) if len(ifix[0]): inofix = np.where(np.logical_and(iprt == 3, prt > prt_threshold)) prt[ifix] = np.interp(ifix[0], inofix[0], prt[inofix]) ifix = np.where(np.logical_and(iprt == 4, prt < prt_threshold)) if len(ifix[0]): inofix = np.where(np.logical_and(iprt == 4, prt > prt_threshold)) prt[ifix] = np.interp(ifix[0], inofix[0], prt[inofix]) # calculate PRT temperature using equation (7.1.2.4-1) KLM Guide # Tprt = d0 + d1*Cprt + d2*Cprt^2 + d3*Cprt^3 + d4*Cprt^4 # Note: First dimension of cal.d are the five coefficient indicees tprt = np.polynomial.polynomial.polyval(prt, cal.d[:, iprt], tensor=False) # Note: the KLM Guide proposes to calculate the mean temperature using equation (7.1.2.4-2). # PyGAC follows the smoothing approach by Trishchenko (2002), i.e. # filling the zeros that mark a complete set of thermometer measurements # by interpolation, and then using a weighting function (so far only equal # weighting) to convolve the temperatures to calculate a moving average of a given window size. # The same averaging technique is applied for ICTs and Space counts. zeros = iprt == 0 nonzeros = np.logical_not(zeros) tprt[zeros] = np.interp((zeros).nonzero()[0], (nonzeros).nonzero()[0], tprt[nonzeros]) # Thresholds to flag missing/wrong data for interpolation ict_threshold = 100 space_threshold = 100 if channel == 3: zeros = ict < ict_threshold nonzeros = np.logical_not(zeros) ict[zeros] = np.interp((zeros).nonzero()[0], (nonzeros).nonzero()[0], ict[nonzeros]) zeros = space < space_threshold nonzeros = np.logical_not(zeros) space[zeros] = np.interp((zeros).nonzero()[0], (nonzeros).nonzero()[0], space[nonzeros]) # convolving and smoothing PRT, ICT and SPACE values if lines > 51: wlength = 51 # empirically found and set by Abhay Devasthale else: wlength = 3 weighting_function = np.ones(wlength, dtype=float) / wlength tprt_convolved = np.convolve(tprt, weighting_function, 'same') ict_convolved = np.convolve(ict, weighting_function, 'same') space_convolved = np.convolve(space, weighting_function, 'same') # take care of the beginning and end tprt_convolved[0:(wlength - 1) // 2] = tprt_convolved[(wlength - 1) // 2] ict_convolved[0:(wlength - 1) // 2] = ict_convolved[(wlength - 1) // 2] space_convolved[0:(wlength - 1) // 2] = space_convolved[(wlength - 1) // 2] tprt_convolved[-(wlength - 1) // 2:] = tprt_convolved[-((wlength + 1) // 2)] ict_convolved[-(wlength - 1) // 2:] = ict_convolved[-((wlength + 1) // 2)] space_convolved[-(wlength - 1) // 2:] = space_convolved[-((wlength + 1) // 2)] new_tprt = np.transpose(np.tile(tprt_convolved, (columns, 1))) new_ict = np.transpose(np.tile(ict_convolved, (columns, 1))) new_space = np.transpose(np.tile(space_convolved, (columns, 1))) # Step 2. The radiance NBB sensed in each thermal AVHRR channel from the internal blackbody # at temperature TBB is the weighted mean of the Planck function over the spectral response of the # channel. [...]. Each thermal channel has one equation, which uses a centroid wavenumber labmda_c and an # "effective" blackbody temperature TBB*. The two steps are: # TsBB = A + B*TBB (7.1.2.4-3) # NBB = c1*nu_e^3/(exp(c2*nu_e/TsBB) - 1) (7.1.2.4-3) # where the constants of the Planck function are defined as c1 = 2*h*c^2, c2 = h*c/k_B. # constatns c1 = 1.1910427e-5 # mW/m^2/sr/cm^{-4} c2 = 1.4387752 # cm K # coefficients A = cal.to_eff_blackbody_intercept[chan] B = cal.to_eff_blackbody_slope[chan] nu_c = cal.centroid_wavenumber[chan] nS = cal.space_radiance[chan] b = cal.b[chan, 0:3] # the second index are the three polynomial coefficients # variables tBB = new_tprt cS = new_space cE = counts.astype(float) cBB = new_ict tsBB = A + B*tBB nBB_num = c1 * nu_c**3 nBB = nBB_num / (np.exp((c2 * nu_c) / tsBB) - 1.0) # Step 3. Output from the two in-orbit calibration targets is used to compute a linear estimate of # the Earth scene radiance NE. Each scanline, the AVHRR views the internal blackbody target and # outputs 10 count values for each of the three thermal channel detectors; these are found in words # 23 to 52 in the HRPT data stream. When the AVHRR views cold space, 10 counts from each of # the five channel sensors are output and placed into words 52 to 102. (Table 4.1.3-1 describes # how these data are multiplexed.) Count values for each channel are averaged together to smooth # our random noise; often counts from five consecutive scanlines are averaged because it takes five # lines to obtain a set of all four PRT measurements. The average blackbody count CBB and the # average space count CS, together with blackbody radiance NBB and space radiance NS, explained # in the next paragraph, are used to compute the linear radiance estimate NLIN, # NLIN = NS + (NBB - NS)*(CS - CE)/(CS - CBB) (7.1.2.4-5) # where CE is the AVHRR count output when it views one of the reference Earth targets. # While the detector in channel 3B has a linear response, the Mercury-Cadmium-Telluride detectors used # for channels 4 and 5 have a nonlinear response to incoming radiance. Pre-launch laboratory measurements show that: # a. scene radiance is a slightly nonlinear (quadratic) function of AVHRR output count, # b. the nonlinearity depends on the AVHRR operating temperature. # It is assumed that the nonlinear response will persist in orbit. For the NOAA KLM series of # satellites, NESDIS uses a radiance-based nonlinear correction method. In this method, the linear # radiance estimate is first computed using a non-zero radiance of space, the NS term in Equation # 7.1.2.4-5. Then, the linear radiance value is input into a quadratic equation to generate the # nonlinear radiance correction NCOR: # NCOR = b0 + b1*NLIN + b2*NLIN^2 (7.1.2.4-6) # Finally, the Earth scene radiance is obtained by adding NCOR to NLIN # NE = NLIN + NCOR # Note: For channel 3B, the non-linear correction coefficients are set to zero to use the same equation. Nlin = nS + (nBB - nS)*(cS - cE)/(cS - cBB) Ncor = np.polynomial.polynomial.polyval(Nlin, b[0:3], tensor=False) Ne = Nlin + Ncor # Step 4. Data users often convert the computed Earth scene radiance value NE into an equivalent # blackbody temperature TE. This temperature is defined by simple inverting the steps used to # calculate the radiance NE sensed by an AVHRR channel from an emitting blackbody at a # temperature TE. The two-step process is: # TsE = c2*nu_c / ln(1 + (c1*nu_c^3/NE)) (7.1.2.4-8) # TE = (TsE - A)/B (7.1.2.4-9) tsE = c2*nu_c / np.log(1.0 + nBB_num / Ne) bt = (tsE - A) / B # Why do we do this on channel 3b? if chan == 0: bt = np.where((counts - new_space) >= 0, 0.0, bt) # Mask values outside valid range bt = np.where(np.logical_or(bt < 170.0, bt > 350.0), np.nan, bt) return bt pygac-1.7.2/pygac/clock_offsets_converter.py000066400000000000000000000254311444627033600212320ustar00rootroot00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (c) 2014 Martin Raspaud # Author(s): # Martin Raspaud # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . """Converts text to python """ from datetime import datetime txt = {"noaa14": """95013 223633 -0.37 95213 233350 0.59 95214 011409 -0.93 95365 225835 0.04 95365 211723 0.53 96079 234708 1.07 96080 012736 -0.43 96222 230133 0.59 96223 004223 0.07 96289 223559 0.58 96290 001652 -0.93 97126 223140 0.69 97127 001236 0.18 97182 001344 0.64 97182 015422 1.63 97196 230953 1.75 97197 005044 0.25 97231 232830 0.55 97232 010911 0.03 97302 000502 0.63 97302 014537 -0.90 98111 234827 0.55 98112 012906 0.04 98181 223817 0.62 98181 001812 -0.88 98342 230000 0.45 98343 000000 -0.05 98365 202823 0.14 98365 220000 -0.34 99131 205700 0.72 99132 002800 0.22 99222 235900 0.97 99223 010000 -0.52 99310 235900 0.15 99311 000000 -0.65 00018 235900 -0.02 00019 000000 -0.50 00238 235900 0.70""", "noaa12": """92001 100717 -0.214742484714 92085 201923 0.659529247721 92085 201923 0.659529247721 92182 201100 0.379947500166 92182 201100 0.379947500166 92143 020248 -0.0575787620387 92143 020248 -0.0575787620387 92183 025048 -0.529106798212 92183 025048 -0.529106798212 92210 235849 -0.448157864915 92210 235849 -0.448157864915 92211 025739 0.356900665981 92211 025739 0.356900665981 92300 055344 0.114043171222 92300 055344 0.114043171222 92324 004603 -0.549446071001 92324 004603 -0.549446071001 93079 003814 0.186526323477 93079 003814 0.186526323477 93144 220815 -0.292140236798 93144 220815 -0.292140236798 93181 235452 -0.0720106859295 93181 235452 -0.0720106859295 93182 011048 -0.0832968119208 93182 011048 -0.0832968119208 93292 111904 -0.227945993953 93292 111904 -0.227945993953 93214 234544 -0.353398580408 93214 234544 -0.353398580408 93240 122200 -0.246247707826 93240 122200 -0.246247707826 93262 162300 -0.482771980563 93262 162300 -0.482771980563 93308 222757 -0.305833686394 93308 222757 -0.305833686394 93309 033915 -0.287643764912 93309 033915 -0.287643764912 93359 191324 -0.364354167998 93359 191324 -0.364354167998 94059 154014 0.102864588298 94059 154014 0.102864588298 94061 163911 0.169217421643 94061 163911 0.169217421643 94110 043012 0.274001589582 94110 043012 0.274001589582 94117 001244 0.0576556437725 94117 001244 0.0576556437725 94174 214941 -0.0565555674317 94174 214941 -0.0565555674317 94181 224623 0.0311954692773 94181 224623 0.0311954692773 94182 000600 0.18871970849 94182 000600 0.18871970849 94197 000425 -0.084719088514 94197 000425 -0.084719088514 95070 174136 0.0151876009177 95070 174136 0.0151876009177 94340 193700 -0.263355299772 94340 193700 -0.263355299772 95092 024421 -0.476681468304 95092 024421 -0.476681468304 95129 230531 -0.749001042571 95129 230531 -0.749001042571 95130 002554 0.229911650151 95130 002554 0.229911650151 95224 201530 -0.0575744014939 95224 201530 -0.0575744014939 95194 173300 0.101028125701 95194 173300 0.101028125701 95259 172842 0.0668472664936 95259 172842 0.0668472664936 95365 070459 -0.176565005252 95365 070459 -0.176565005252 96001 011610 0.0500187493715 96001 011610 0.0500187493715 96163 005747 -0.693724861601 96163 005747 -0.693724861601 96313 093417 0.0453934348631 96313 093417 0.0453934348631 97093 101211 0.0168789226547 97093 101211 0.0168789226547 97093 101211 0.0168789226547 97093 101211 0.0168789226547 97181 230200 0.07963445895 97181 230200 0.07963445895 97182 003500 -0.764519227361 97182 003500 -0.764519227361 97282 020852 -0.0541122818126 97282 020852 -0.0541122818126 97235 232100 -0.745022654355 97235 232100 -0.745022654355 97334 234704 -0.121024921026 97334 234704 -0.121024921026 97335 031035 -0.131177187257 97335 031035 -0.131177187257 98083 052322 -0.288495446794 98083 052322 -0.288495446794 98256 093733 -0.175770660865 98256 093733 -0.175770660865 98236 085900 0.19721669783 98236 085900 0.19721669783 98237 065201 0.379949295221 98237 065201 0.379949295221 98348 225656 -0.347935041683""", "noaa11": """88270 175315 0.10 88362 225730 0.55 88363 003825 -0.45 89108 223157 0.55 89109 001247 -1.21 89283 223149 0.92 89284 001246 -0.99 90001 005132 0.19 90001 062225 -0.81 90086 225343 0.51 90087 003437 -0.48 90157 232813 0.67 90158 010906 -0.33 90200 185021 0.40 90206 004808 0.68 90210 000412 0.76 90214 063112 0.10 90233 230231 0.53 90234 004321 -0.47 90296 231326 0.66 90297 005426 -0.35 90345 223316 0.54 90346 072437 -0.44 91037 234244 0.63 91038 012353 -0.38 91078 224447 0.42 91079 002546 -0.59 91127 233159 0.36 91128 011307 -0.64 91176 204252 0.35 91177 001500 -0.67 91232 233429 0.47 91233 011521 -0.54 91281 223014 0.44 91282 001116 -0.57 91330 230237 0.45 91331 004335 -0.56 92014 233119 0.47 92015 011217 -0.53 92056 233822 0.36 92057 011908 -0.64 92105 235823 0.46 92106 013910 -0.55 92147 235749 0.38 92148 013925 -0.63 92210 230706 0.74 92211 004718 -0.26 92252 230538 0.70 92253 004621 -0.32 92308 215437 0.96 92309 082622 -0.05 92336 225954 0.59 92337 003847 -0.42 93012 225434 0.56 93013 003543 -0.46 93047 223341 0.36 93048 001415 -0.67 93089 222657 0.33 93090 014845 -0.68 93138 223524 0.47 93139 001555 -0.55 93181 235524 0.51 93182 013608 -0.50 93234 231252 0.78 93235 005344 -0.21 93271 221249 0.68 93272 000413 -0.33 93313 235403 0.70 93314 013043 -0.33 93355 234331 0.73 93356 012432 -0.28 94032 233238 0.77 94033 011326 -0.24 94067 230533 0.64 94068 004655 -0.38 94109 224303 0.69 94110 003436 -0.34 94144 221719 0.57 94145 000747 -0.43 94181 230407 0.50 94182 005611 -1.51 94209 173715 -0.81 94209 204026 0.23 94221 232635 0.54 94222 010716 -0.45 94256 224431 0.45 94257 003856 -0.59 94298 223205 0.53 94299 002843 -0.47 94340 221659 0.65 94341 001032 -0.38 95012 164514 0.60 95013 194752 -0.36 95052 231636 0.67 95053 010842 -0.33 95094 225950 0.77 95095 005202 -0.23 95208 163447 2.81 95208 163450 2.81 96004 165442 7.36""", "noaa7": """81179 000000 0.1 82003 235959 0.8 82004 000000 0.8 82053 235959 1.1 82054 000000 -0.5 82181 235959 0.1 82182 000000 -0.6 83025 235959 0.3 83026 000000 -0.1 83181 235959 0.5 83182 000000 1.5 83193 235959 1.6 83194 000000 -0.7 84081 235959 0.3 84082 000000 -1.1 84342 235959 -0.1 84343 000000 -0.9 84366 235959 -0.8 85001 000000 0.0 85107 235959 0.4 85108 000000 0.2 85136 235959 0.3 85137 000000 -1.1 85181 235959 -1.0 85182 000000 -0.0 85304 235959 0.4 85305 000000 -0.3 86148 235959 0.3 86149 000000 -1.3 86158 235959 -1.3""", "noaa9": """86014 183754 -0.53 86051 090207 -0.80 86051 184443 0.45 86190 092344 -0.76 86190 190707 0.46 86308 195123 -0.80 86309 081339 0.47 87048 210941 -0.84 87049 075241 0.40 87139 195622 -0.85 87140 081825 0.39 87216 210921 -0.75 87217 075309 0.48 87293 204300 -0.77 87294 090756 0.48 87365 225918 -0.79 88001 004020 0.21 88061 234258 -0.89 88062 012352 0.36 88125 000338 -0.87 88125 014432 0.39 88187 224121 -0.87 88188 002232 0.40 88250 225846 -0.93 88251 022040 0.32 88306 224954 -0.89 88307 003033 0.35 88363 001536 -0.88 88363 015925 0.37 89023 110528 -0.25 89024 091318 0.75 89094 111829 -0.91 89095 035705 0.31 89143 031928 -0.85 89144 030810 0.36 89192 111852 -0.79 89193 035610 0.46 89242 232725 -0.80 89243 024905 0.45 89290 035408 -0.79 89291 020143 0.45 89338 101232 -0.81 89339 025034 0.41 89365 212451 -0.30 90001 023815 0.69 90058 102159 -0.87 90059 030319 0.36 90107 105326 -0.99 90108 014914 0.25 90149 221415 -0.93 90150 033528 0.31 90191 222735 -0.85 90192 033935 0.36 90233 110326 -0.81 90234 034148 0.40 90275 110402 -0.79 90276 020138 0.42 90314 095839 -0.72 90320 232628 0.33 90365 224854 -1.03 91001 022659 -0.07 91022 214259 -0.71 91023 030313 0.52 91064 231826 -0.76 91065 025737 0.47 91106 044021 -0.82 91107 024821 0.39 91142 223525 -0.72 91142 224834 0.16 91176 034520 -0.88 91177 033300 0.31 91211 031322 -0.78 91213 043140 0.39 91231 225648 -0.21 91270 042933 -0.24 91288 224028 -0.86 91289 053517 0.36 91331 000157 -1.03 91331 051428 0.44 92007 233938 -0.95 92008 063157 0.52 92049 231312 -0.90 92050 042700 0.58 92090 195517 -0.84 92091 055256 0.75 92133 221715 -0.77 92134 065146 0.70 92182 234047 -0.99 92183 134449 -0.01 92207 120034 -0.87 92211 124842 0.45 92236 141404 -0.42 92246 233007 0.71 92287 231141 -0.78 92288 060512 0.68 92329 143633 -0.79 92330 002139 0.69 93005 234707 -0.87 93006 064126 0.63 93047 231538 -0.91 93048 060831 0.57 93089 175433 -0.96 93090 002050 0.52 93136 193915 -1.26 93137 020351 0.25 93166 195650 -0.88 93167 004310 0.62 93182 060334 0.00 93182 131313 1.02 93213 181559 -0.18 93243 011321 1.22 93292 194948 -0.72 93293 021545 0.77 93341 210417 -1.15 93343 013534 0.83 94025 203714 -1.04 94026 012315 0.42 94060 194824 -0.95 94061 072640 0.53 94101 020148 -1.03 94103 013547 0.35 94137 200139 -1.02 94138 022803 0.48 94181 235541 -1.28 94182 030236 0.20 94209 193554 -0.94 94210 020305 0.07 94235 204323 -1.01 94236 012744 0.53 94277 214407 -1.15 94278 022908 0.30 94305 204327 -0.82 94306 012723 0.67 94347 150149 -1.06 94348 004630 0.42 95019 202513 -1.11 95020 010905 0.41 95052 195749 -0.97 95053 004426 0.50 95087 190612 -0.90 95088 013146 0.56 95115 212721 -0.62 95116 021019 0.89 95150 203430 -0.57 95151 030113 0.91 95201 193323 -1.24 95202 020016 0.74 95214 200458 0.21"""} sat = None def get_offsets(sat): """Get the clock drift offsets for sat. """ errors = [] offsets = txt[sat] for line in offsets.split("\n"): elts = line.split() errors.append((datetime.strptime("".join(elts[:2]), "%y%j%H%M%S"), float(elts[2]))) errors.append((datetime.strptime("".join(elts[3:5]), "%y%j%H%M%S"), float(elts[5]))) return zip(*errors) pygac-1.7.2/pygac/configuration.py000066400000000000000000000065031444627033600171650ustar00rootroot00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (c) 2020 Pygac Developers # Author(s): # Carlos Horn # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . """Module configuration class. Read and manage module configuration. """ import logging import os import sys try: import configparser except ImportError: import ConfigParser as configparser if sys.version_info.major < 3: class FileNotFoundError(OSError): pass LOG = logging.getLogger(__name__) class Configuration(configparser.ConfigParser, object): """Configuration container for pygac.""" config_file = '' def read(self, config_file): """Read and parse the configuration file Args: config_file (str): path to the config file Note: In contrast to the parent method, this implementation only accepts a single file and raises an exception if the given file is not readable. """ if not os.path.isfile(config_file): raise FileNotFoundError( 'Given config path "%s" is not a file!' % config_file) try: super(Configuration, self).read(config_file) except configparser.NoSectionError: LOG.error('Failed reading configuration file: "%s"' % config_file) raise self.config_file = config_file def get(self, *args, **kwargs): """python 2 compatibility for fallback attribute""" if sys.version_info.major < 3: if 'fallback' in kwargs: fallback = kwargs.pop('fallback') else: fallback = None try: value = super(Configuration, self).get(*args, **kwargs) except (configparser.NoSectionError, configparser.NoOptionError): value = fallback else: value = super().get(*args, **kwargs) return value _config = Configuration() def get_config(initialized=True): """Retrun the module configuration. Args: initialized (bool): if true ensure that the configuration has been initialized (default: True) """ global _config if initialized and not _config.sections(): LOG.info('Configuration has not been initialized. Use' ' environment variable "PYGAC_CONFIG_FILE"') try: config_file = os.environ["PYGAC_CONFIG_FILE"] except KeyError: LOG.error('Environment variable PYGAC_CONFIG_FILE not set!') raise _config.read(config_file) return _config def read_config_file(config_file): """Read a given config file.""" config = get_config(initialized=False) config.read(config_file) pygac-1.7.2/pygac/correct_tsm_issue.py000066400000000000000000000472251444627033600200600ustar00rootroot00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Author(s): # Stephan Finkensieper # Cornelia Schlundt # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . """NOAA-14, 15 and 16 suffer from temporary scan motor issue i.e. parts of an orbit contain corrupt data. This module identifies affected pixels and flags them with fill values.""" import numpy as np import bottleneck as bn import datetime TSM_AFFECTED_INTERVALS_POD = { 3: [(datetime.datetime(2001, 10, 19, 4, 50), datetime.datetime(2001, 10, 19, 13, 38)), (datetime.datetime(2001, 10, 19, 16, 58), datetime.datetime(2001, 10, 19, 18, 7)), (datetime.datetime(2001, 10, 19, 23, 55), datetime.datetime(2001, 10, 27, 3, 19)), (datetime.datetime(2001, 10, 27, 4, 53), datetime.datetime(2001, 10, 31, 21, 7)), (datetime.datetime(2001, 10, 31, 20, 58), datetime.datetime(2001, 11, 13, 12, 46)), (datetime.datetime(2001, 11, 13, 13, 25), datetime.datetime(2001, 11, 21, 23, 40)), (datetime.datetime(2001, 11, 22, 1, 14), datetime.datetime(2001, 11, 25, 6, 1)), (datetime.datetime(2001, 11, 25, 11, 3), datetime.datetime(2001, 11, 25, 13, 8)), (datetime.datetime(2001, 11, 26, 10, 51), datetime.datetime(2001, 11, 26, 12, 55)), (datetime.datetime(2001, 11, 26, 15, 49), datetime.datetime(2001, 11, 26, 19, 26)), (datetime.datetime(2001, 11, 26, 20, 36), datetime.datetime(2001, 11, 26, 22, 31)), (datetime.datetime(2001, 11, 27, 0, 5), datetime.datetime(2001, 12, 2, 23, 7)), (datetime.datetime(2001, 12, 3, 0, 41), datetime.datetime(2001, 12, 15, 0, 2)), (datetime.datetime(2001, 12, 15, 1, 30), datetime.datetime(2001, 12, 15, 3, 26)), (datetime.datetime(2001, 12, 15, 5, 2), datetime.datetime(2001, 12, 15, 10, 36)), (datetime.datetime(2001, 12, 15, 12, 2), datetime.datetime(2001, 12, 15, 13, 53)), (datetime.datetime(2001, 12, 15, 15, 21), datetime.datetime(2001, 12, 15, 18, 56)), (datetime.datetime(2001, 12, 15, 23, 37), datetime.datetime(2001, 12, 16, 1, 33)), (datetime.datetime(2002, 1, 1, 10, 14), datetime.datetime(2002, 1, 10, 1, 29)), (datetime.datetime(2002, 7, 26, 14, 40), datetime.datetime(2002, 7, 27, 13, 6)), (datetime.datetime(2002, 7, 29, 5, 26), datetime.datetime(2002, 8, 8, 0, 2)), (datetime.datetime(2002, 8, 8, 1, 32), datetime.datetime(2002, 8, 12, 22, 51)), (datetime.datetime(2002, 8, 13, 0, 25), datetime.datetime(2002, 9, 30, 4, 8)) ] # NOAA-14 } TSM_AFFECTED_INTERVALS_KLM = { 4: [(datetime.datetime(2001, 1, 8, 23, 55), datetime.datetime(2001, 1, 9, 23, 47)), (datetime.datetime(2001, 1, 10, 1, 14), datetime.datetime(2001, 1, 11, 1, 6)), (datetime.datetime(2001, 1, 23, 18, 32), datetime.datetime(2001, 1, 26, 0, 25)), (datetime.datetime(2001, 1, 30, 10, 59), datetime.datetime(2001, 1, 30, 17, 58)), (datetime.datetime(2001, 2, 2, 2, 42), datetime.datetime(2001, 2, 8, 11, 10)), (datetime.datetime(2001, 2, 11, 6, 3), datetime.datetime(2001, 2, 16, 21, 32)), (datetime.datetime(2001, 4, 24, 5, 25), datetime.datetime(2001, 4, 24, 9, 18)), (datetime.datetime(2001, 4, 24, 10, 53), datetime.datetime(2001, 4, 25, 8, 55)), (datetime.datetime(2001, 4, 26, 2, 59), datetime.datetime(2001, 4, 26, 8, 25)), (datetime.datetime(2001, 4, 26, 18, 22), datetime.datetime(2001, 4, 26, 20, 18)), (datetime.datetime(2001, 4, 26, 23, 5), datetime.datetime(2001, 4, 27, 8, 2)), (datetime.datetime(2001, 4, 28, 22, 23), datetime.datetime(2001, 4, 29, 0, 14)), (datetime.datetime(2001, 4, 29, 15, 33), datetime.datetime(2001, 4, 29, 17, 28)), (datetime.datetime(2001, 4, 29, 20, 33), datetime.datetime(2001, 4, 30, 8, 35)), (datetime.datetime(2001, 4, 30, 13, 35), datetime.datetime(2001, 4, 30, 18, 46)), (datetime.datetime(2001, 4, 30, 20, 11), datetime.datetime(2001, 5, 1, 8, 11)), (datetime.datetime(2001, 5, 2, 2, 23), datetime.datetime(2001, 5, 2, 5, 58)), (datetime.datetime(2001, 5, 2, 9, 22), datetime.datetime(2001, 5, 2, 22, 45)), (datetime.datetime(2001, 5, 3, 0, 8), datetime.datetime(2001, 5, 3, 9, 14)), (datetime.datetime(2001, 5, 8, 10, 34), datetime.datetime(2001, 5, 8, 14, 8)), (datetime.datetime(2001, 5, 8, 15, 30), datetime.datetime(2001, 5, 9, 15, 34)), (datetime.datetime(2001, 5, 10, 0, 50), datetime.datetime(2001, 5, 10, 4, 35)), (datetime.datetime(2001, 5, 10, 13, 7), datetime.datetime(2001, 5, 10, 21, 48)), (datetime.datetime(2001, 5, 10, 22, 47), datetime.datetime(2001, 5, 11, 0, 42)), (datetime.datetime(2001, 5, 11, 3, 57), datetime.datetime(2001, 5, 11, 7, 43)), (datetime.datetime(2001, 5, 11, 11, 5), datetime.datetime(2001, 5, 11, 17, 55)), (datetime.datetime(2001, 5, 11, 19, 21), datetime.datetime(2001, 5, 12, 7, 19)), (datetime.datetime(2001, 5, 12, 8, 56), datetime.datetime(2001, 5, 14, 6, 26)), (datetime.datetime(2001, 5, 14, 21, 32), datetime.datetime(2001, 5, 14, 23, 11)), (datetime.datetime(2001, 5, 15, 4, 6), datetime.datetime(2001, 5, 15, 7, 52)), (datetime.datetime(2001, 5, 15, 17, 59), datetime.datetime(2001, 5, 15, 19, 44)), (datetime.datetime(2001, 5, 15, 21, 19), datetime.datetime(2001, 5, 16, 7, 29)), (datetime.datetime(2001, 5, 16, 17, 26), datetime.datetime(2001, 5, 16, 19, 22)), (datetime.datetime(2001, 5, 16, 23, 50), datetime.datetime(2001, 5, 17, 8, 55)), (datetime.datetime(2001, 5, 17, 15, 26), datetime.datetime(2001, 5, 17, 17, 18)), (datetime.datetime(2001, 5, 17, 20, 25), datetime.datetime(2001, 5, 18, 6, 36)), (datetime.datetime(2001, 6, 5, 16, 34), datetime.datetime(2001, 6, 5, 21, 46)), (datetime.datetime(2001, 6, 6, 0, 35), datetime.datetime(2001, 6, 6, 7, 51)), (datetime.datetime(2001, 8, 4, 5, 2), datetime.datetime(2001, 8, 4, 8, 54)), (datetime.datetime(2001, 8, 6, 21, 17), datetime.datetime(2001, 8, 7, 7, 37)), (datetime.datetime(2001, 8, 7, 19, 16), datetime.datetime(2001, 8, 8, 12, 31)), (datetime.datetime(2001, 8, 8, 15, 33), datetime.datetime(2001, 8, 8, 22, 13)), (datetime.datetime(2001, 8, 23, 0, 58), datetime.datetime(2001, 8, 23, 15, 18)), (datetime.datetime(2001, 8, 23, 21, 30), datetime.datetime(2001, 8, 24, 7, 50)), (datetime.datetime(2001, 8, 24, 9, 24), datetime.datetime(2001, 8, 25, 0, 25)), (datetime.datetime(2001, 8, 25, 3, 50), datetime.datetime(2001, 8, 25, 11, 5)), (datetime.datetime(2001, 8, 25, 12, 28), datetime.datetime(2001, 8, 25, 17, 39)), (datetime.datetime(2001, 8, 25, 20, 54), datetime.datetime(2001, 8, 26, 8, 52)), (datetime.datetime(2001, 8, 26, 18, 41), datetime.datetime(2001, 8, 27, 4, 51)), (datetime.datetime(2001, 8, 27, 23, 2), datetime.datetime(2001, 8, 28, 0, 58)), (datetime.datetime(2001, 8, 28, 4, 14), datetime.datetime(2001, 8, 28, 7, 59)), (datetime.datetime(2001, 8, 28, 14, 49), datetime.datetime(2001, 8, 28, 16, 31)), (datetime.datetime(2001, 8, 28, 17, 58), datetime.datetime(2001, 8, 29, 17, 48)), (datetime.datetime(2001, 8, 29, 22, 19), datetime.datetime(2001, 8, 30, 0, 11)), (datetime.datetime(2001, 8, 30, 5, 7), datetime.datetime(2001, 8, 31, 13, 46)), (datetime.datetime(2001, 8, 31, 18, 37), datetime.datetime(2001, 8, 31, 22, 11)), (datetime.datetime(2001, 8, 31, 23, 10), datetime.datetime(2001, 9, 1, 8, 8)), (datetime.datetime(2001, 9, 1, 11, 29), datetime.datetime(2001, 9, 1, 13, 23)), (datetime.datetime(2001, 9, 1, 14, 58), datetime.datetime(2001, 9, 1, 16, 39)), (datetime.datetime(2001, 9, 1, 18, 13), datetime.datetime(2001, 9, 1, 23, 3)), (datetime.datetime(2001, 9, 2, 0, 28), datetime.datetime(2001, 9, 2, 7, 44)), (datetime.datetime(2001, 9, 2, 16, 5), datetime.datetime(2001, 9, 2, 18, 8)), (datetime.datetime(2001, 9, 2, 22, 26), datetime.datetime(2001, 9, 3, 9, 10)), (datetime.datetime(2001, 9, 3, 12, 22), datetime.datetime(2001, 9, 4, 5, 8)), (datetime.datetime(2001, 9, 7, 2, 4), datetime.datetime(2001, 9, 7, 9, 19)), (datetime.datetime(2001, 9, 7, 10, 54), datetime.datetime(2001, 9, 7, 19, 23)), (datetime.datetime(2001, 9, 7, 23, 51), datetime.datetime(2001, 9, 8, 20, 40)), (datetime.datetime(2001, 9, 8, 23, 29), datetime.datetime(2001, 9, 10, 22, 58)), (datetime.datetime(2001, 9, 11, 0, 25), datetime.datetime(2001, 9, 11, 4, 16)), (datetime.datetime(2001, 9, 11, 5, 35), datetime.datetime(2001, 9, 11, 12, 55)), (datetime.datetime(2001, 10, 25, 17, 39), datetime.datetime(2001, 10, 26, 0, 8)), (datetime.datetime(2002, 3, 17, 14, 29), datetime.datetime(2002, 3, 18, 2, 4)), (datetime.datetime(2002, 3, 18, 5, 11), datetime.datetime(2002, 3, 18, 7, 15)), (datetime.datetime(2002, 3, 18, 18, 53), datetime.datetime(2002, 3, 18, 20, 48)) ], # NOAA-15 2: [(datetime.datetime(2004, 1, 14, 14, 13), datetime.datetime(2004, 1, 14, 22, 46)), (datetime.datetime(2004, 1, 15, 15, 45), datetime.datetime(2004, 1, 15, 19, 3)), (datetime.datetime(2004, 1, 15, 22, 28), datetime.datetime(2004, 1, 16, 2, 6)), (datetime.datetime(2004, 1, 16, 5, 29), datetime.datetime(2004, 1, 16, 22, 23)), (datetime.datetime(2004, 1, 16, 23, 58), datetime.datetime(2004, 1, 18, 0, 1)), (datetime.datetime(2004, 1, 18, 1, 23), datetime.datetime(2004, 1, 18, 8, 45)), (datetime.datetime(2004, 1, 18, 10, 6), datetime.datetime(2004, 1, 18, 23, 42)), (datetime.datetime(2004, 1, 19, 1, 11), datetime.datetime(2004, 1, 19, 15, 12)), (datetime.datetime(2004, 1, 19, 19, 44), datetime.datetime(2004, 1, 19, 23, 30)), (datetime.datetime(2004, 1, 20, 0, 59), datetime.datetime(2004, 1, 20, 4, 52)), (datetime.datetime(2004, 1, 20, 9, 56), datetime.datetime(2004, 1, 20, 15, 1)), (datetime.datetime(2004, 1, 20, 16, 37), datetime.datetime(2004, 1, 21, 4, 40)), (datetime.datetime(2004, 1, 21, 11, 13), datetime.datetime(2004, 1, 21, 16, 39)), (datetime.datetime(2004, 1, 22, 0, 35), datetime.datetime(2004, 1, 22, 6, 18)), (datetime.datetime(2004, 1, 22, 12, 42), datetime.datetime(2004, 1, 23, 2, 27)), (datetime.datetime(2004, 1, 23, 10, 50), datetime.datetime(2004, 1, 23, 22, 45)), (datetime.datetime(2004, 1, 24, 0, 12), datetime.datetime(2004, 1, 24, 5, 54)), (datetime.datetime(2004, 3, 16, 22, 38), datetime.datetime(2004, 3, 17, 22, 41)), (datetime.datetime(2004, 3, 18, 0, 1), datetime.datetime(2004, 3, 18, 5, 44)), (datetime.datetime(2004, 3, 20, 18, 13), datetime.datetime(2004, 3, 20, 23, 42)), (datetime.datetime(2004, 3, 21, 2, 59), datetime.datetime(2004, 3, 21, 5, 3)), (datetime.datetime(2004, 3, 21, 10, 9), datetime.datetime(2004, 3, 21, 23, 29)), (datetime.datetime(2004, 3, 22, 0, 58), datetime.datetime(2004, 3, 22, 6, 41)), (datetime.datetime(2004, 3, 22, 9, 55), datetime.datetime(2004, 3, 22, 15, 0)), (datetime.datetime(2004, 3, 22, 16, 26), datetime.datetime(2004, 3, 22, 23, 18)), (datetime.datetime(2004, 3, 23, 0, 46), datetime.datetime(2004, 3, 23, 4, 39)), (datetime.datetime(2004, 3, 23, 6, 14), datetime.datetime(2004, 3, 23, 11, 27)), (datetime.datetime(2004, 3, 23, 12, 53), datetime.datetime(2004, 3, 23, 16, 38)), (datetime.datetime(2004, 3, 23, 19, 20), datetime.datetime(2004, 3, 24, 6, 17)), (datetime.datetime(2004, 3, 24, 7, 43), datetime.datetime(2004, 3, 25, 6, 5)), (datetime.datetime(2004, 3, 25, 20, 46), datetime.datetime(2004, 3, 25, 22, 50)), (datetime.datetime(2004, 3, 26, 0, 11), datetime.datetime(2004, 3, 26, 5, 54)), (datetime.datetime(2004, 3, 26, 10, 39), datetime.datetime(2004, 3, 26, 14, 15)), (datetime.datetime(2004, 3, 28, 8, 40), datetime.datetime(2004, 4, 1, 23, 5)), (datetime.datetime(2004, 4, 2, 0, 32), datetime.datetime(2004, 4, 2, 22, 53)), (datetime.datetime(2004, 4, 3, 0, 21), datetime.datetime(2004, 4, 4, 22, 31)), (datetime.datetime(2004, 4, 5, 0, 6), datetime.datetime(2004, 4, 5, 22, 19)), (datetime.datetime(2004, 4, 5, 23, 55), datetime.datetime(2004, 4, 6, 5, 23)), (datetime.datetime(2004, 4, 6, 18, 21), datetime.datetime(2004, 4, 6, 23, 49)), (datetime.datetime(2004, 4, 7, 13, 24), datetime.datetime(2004, 4, 7, 15, 20)), (datetime.datetime(2004, 4, 7, 16, 45), datetime.datetime(2004, 4, 7, 23, 38)), (datetime.datetime(2004, 4, 8, 1, 6), datetime.datetime(2004, 4, 9, 10, 7)), (datetime.datetime(2004, 4, 21, 2, 1), datetime.datetime(2004, 4, 21, 17, 41)), (datetime.datetime(2004, 4, 21, 18, 51), datetime.datetime(2004, 4, 21, 22, 38)), (datetime.datetime(2004, 4, 22, 0, 13), datetime.datetime(2004, 4, 22, 5, 43)), (datetime.datetime(2004, 4, 24, 21, 49), datetime.datetime(2004, 4, 24, 23, 47)), (datetime.datetime(2004, 4, 25, 1, 14), datetime.datetime(2004, 4, 25, 20, 3)), (datetime.datetime(2004, 4, 26, 2, 51), datetime.datetime(2004, 4, 26, 11, 43)), (datetime.datetime(2004, 4, 26, 21, 27), datetime.datetime(2004, 4, 26, 23, 22)), (datetime.datetime(2004, 4, 27, 0, 50), datetime.datetime(2004, 4, 27, 4, 43)), (datetime.datetime(2004, 4, 27, 8, 0), datetime.datetime(2004, 4, 27, 10, 3)), (datetime.datetime(2004, 4, 27, 12, 57), datetime.datetime(2004, 4, 27, 21, 28)), (datetime.datetime(2004, 4, 28, 0, 38), datetime.datetime(2004, 4, 28, 4, 32)), (datetime.datetime(2004, 4, 28, 11, 5), datetime.datetime(2004, 4, 28, 16, 22)), (datetime.datetime(2004, 4, 29, 0, 26), datetime.datetime(2004, 4, 29, 14, 30)), (datetime.datetime(2004, 5, 2, 8, 44), datetime.datetime(2004, 5, 2, 23, 55)), (datetime.datetime(2004, 5, 3, 1, 23), datetime.datetime(2004, 5, 4, 3, 16)), (datetime.datetime(2004, 5, 4, 4, 50), datetime.datetime(2004, 5, 4, 8, 35)), (datetime.datetime(2004, 5, 4, 10, 9), datetime.datetime(2004, 5, 4, 23, 32)), (datetime.datetime(2004, 5, 5, 1, 0), datetime.datetime(2004, 5, 5, 3, 4)), (datetime.datetime(2004, 5, 5, 6, 27), datetime.datetime(2004, 5, 5, 10, 13)), (datetime.datetime(2004, 5, 5, 11, 27), datetime.datetime(2004, 5, 5, 13, 22)), (datetime.datetime(2004, 5, 8, 9, 23), datetime.datetime(2004, 5, 8, 16, 9)), (datetime.datetime(2004, 5, 9, 7, 22), datetime.datetime(2004, 5, 9, 10, 55)), (datetime.datetime(2004, 5, 10, 22, 8), datetime.datetime(2004, 5, 11, 3, 38)), (datetime.datetime(2004, 5, 12, 21, 44), datetime.datetime(2004, 5, 13, 3, 13)), (datetime.datetime(2004, 5, 13, 6, 37), datetime.datetime(2004, 5, 13, 10, 21)), (datetime.datetime(2004, 5, 13, 11, 35), datetime.datetime(2004, 5, 13, 15, 12)), (datetime.datetime(2004, 5, 13, 18, 2), datetime.datetime(2004, 5, 14, 1, 13)), (datetime.datetime(2004, 5, 14, 6, 25), datetime.datetime(2004, 5, 14, 11, 39)), (datetime.datetime(2004, 5, 14, 13, 5), datetime.datetime(2004, 5, 14, 16, 41)), (datetime.datetime(2004, 5, 15, 6, 14), datetime.datetime(2004, 5, 15, 16, 30)), (datetime.datetime(2004, 5, 15, 19, 22), datetime.datetime(2004, 5, 15, 21, 24)), (datetime.datetime(2004, 5, 19, 22, 9), datetime.datetime(2004, 5, 20, 22, 9)), (datetime.datetime(2004, 5, 21, 8, 28), datetime.datetime(2004, 5, 21, 10, 19)) ] # NOAA-16 } def _rolling_window(array, size): """Create an array view of rolling windows. Args: array (np.ndarray): 2D array size (tuple): window size Returns: windows (np.ndarray): 4D array of rolling windows the first dimensions are the window location on the 2D array, the last two dimensions are the location inside the window. """ shape = ((array.shape[0] - size[0] + 1, array.shape[1] - size[1] + 1,) + size) strides = array.strides + array.strides return np.lib.stride_tricks.as_strided(array, shape=shape, strides=strides) def std_filter(data, box_size): """Filter a 2D array using a standard deviation kernel. Args: data (np.ndarray): 2D array to be filtered box_size (int): Specifies the boxsize. Must be odd. Returns: np.ndarray: The filtered array """ size = (box_size, box_size) border = box_size // 2 # need to surround the data with NaNs to calculate values at the boundary padded_data = np.pad( data, (border, border), mode='constant', constant_values=np.nan ) windows = _rolling_window(padded_data, size) n3, n2, n1, n0 = windows.shape # flatten the windows for bottleneck function call windows = windows.reshape((n3, n2, n1*n0)) return bn.nanstd(windows, axis=2) def get_tsm_idx(ch1, ch2, ch4, ch5): """Determine indices of TSM affected pixels.""" # absolute difference because ch1 is very similar to ch2 abs_d12 = abs(ch1 - ch2) # relative difference because ch4 and ch5 differ rel_d45 = 100.0*(ch4 - ch5) / ch5 # standard deviation of abs_d12 and rel_d45 box_size = 3 std_d12 = std_filter(abs_d12, box_size) std_d45 = std_filter(rel_d45, box_size) # replace NaNs to avoid "RuntimeWarning: invalid value encountered in greater" std_d12 = np.nan_to_num(std_d12, copy=False) std_d45 = np.nan_to_num(std_d45, copy=False) # using ch1, ch2, ch4, ch5 in combination # all channels seems to be affected throughout the whole orbit, # independent of VIS and NIR or day and night idx = np.where((std_d12 > 2.0) & (std_d45 > 2.0)) return idx pygac-1.7.2/pygac/data/000077500000000000000000000000001444627033600146515ustar00rootroot00000000000000pygac-1.7.2/pygac/data/calibration.json000066400000000000000000001173321444627033600200420ustar00rootroot00000000000000{ "description": { "thermal": { "channels": [ "3b", "4", "5" ], "coefficients": { "b0": "constant non-linear radiance correction coefficient [mW m^{-2} sr cm^{-1}]", "b1": "linear non-linear radiance correction coefficient []", "b2": "quadratic non-linear radiance correction coefficient [(mW^{-1} m^2 sr^{-1} cm)]", "centroid_wavenumber": "centroid wavenumber [cm^{-1}]", "d0": "constant thermometer counts to temperature conversion coefficient [K]", "d1": "linear thermometer counts to temperature conversion coefficient [K]", "d2": "quadratic thermometer counts to temperature conversion coefficient [K]", "d3": "cubic thermometer counts to temperature conversion coefficient [K]", "d4": "quartic thermometer counts to temperature conversion coefficient [K]", "space_radiance": "radiance of space [mW m^{-2} sr cm^{-1}]", "to_eff_blackbody_intercept": "thermal channel temperature to effective blackbody temperature intercept [K]", "to_eff_blackbody_slope": "thermal channel temperature to effective blackbody temperature slope []" }, "method": "Goodrum, G., Kidwell, K.B. and W. Winston, 2000: NOAA KLM User's Guide. U.S. Department of Commerce, National Oceanic and Atmospheric Administration, National Environmental Satellite, Data and Information Service; Walton, C. C., J. T. Sullivan, C. R. N. Rao, and M. P. Weinreb, 1998: Corrections for detector nonlinearities and calibration inconsistencies of the infrared channels of the Advanced Very High Resolution Radiometer. J. Geophys. Res., 103, 3323-3337; Trishchenko, A.P., 2002: Removing Unwanted Fluctuations in the AVHRR Thermal Calibration Data Using Robust Techniques. Journal of Atmospheric and Oceanic Technology, 19:1939-1954" }, "visible": { "channels": [ "1", "2", "3a" ], "coefficients": { "dark_count": "instrument counts under dark conditions []", "date_of_launch": "timestamp of launch date [UTC]", "gain_switch": "dual-gain switch count, set to 'null' for single-gain instruments []", "s0": "single-gain calibration slope at launch date [%]", "s1": "linear single-gain calibration slope parameter [% years^{-1}]", "s2": "quadratic single-gain calibration slope parameter [% years^{-2}]" }, "method": "Heidinger, A.K., W.C. Straka III, C.C. Molling, J.T. Sullivan, and X. Wu, 2010: Deriving an inter-sensor consistent calibration for the AVHRR solar reflectance data record. International Journal of Remote Sensing, 31:6493-6517" } }, "metopa": { "channel_1": { "dark_count": 40.43, "gain_switch": 501.0, "s0": 0.11266666666666668, "s1": 0.609, "s2": -0.029 }, "channel_2": { "dark_count": 39.75, "gain_switch": 500.0, "s0": 0.13266666666666668, "s1": 0.98, "s2": -0.016 }, "channel_3a": { "dark_count": 41.8, "gain_switch": 502.0, "s0": 0.1217142857142857, "s1": 1.224, "s2": -0.033 }, "channel_3b": { "b0": 0.0, "b1": 0.0, "b2": 0.0, "centroid_wavenumber": 2687.0392, "space_radiance": 0.0, "to_eff_blackbody_intercept": 2.0582306816399316, "to_eff_blackbody_slope": 0.9965700053555672 }, "channel_4": { "b0": 5.44, "b1": -0.10152, "b2": 0.00046964, "centroid_wavenumber": 927.2763, "space_radiance": -4.98, "to_eff_blackbody_intercept": 0.564181969408163, "to_eff_blackbody_slope": 0.998493273650062 }, "channel_5": { "b0": 3.84, "b1": -0.06249, "b2": 0.00025239, "centroid_wavenumber": 837.80762, "space_radiance": -3.4, "to_eff_blackbody_intercept": 0.3842947903481519, "to_eff_blackbody_slope": 0.9988748673494177 }, "date_of_launch": "2006-10-19T19:37:12.000000Z", "thermometer_1": { "d0": 276.6194, "d1": 0.050919, "d2": 1.471e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_2": { "d0": 276.6511, "d1": 0.050892, "d2": 1.489e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_3": { "d0": 276.6597, "d1": 0.050845, "d2": 1.521e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_4": { "d0": 276.3685, "d1": 0.050992, "d2": 1.482e-06, "d3": 0.0, "d4": 0.0 } }, "metopb": { "channel_1": { "dark_count": 39.7, "gain_switch": 501.12, "s0": 0.11066666666666668, "s1": 2.019, "s2": -0.201 }, "channel_2": { "dark_count": 40.0, "gain_switch": 500.82, "s0": 0.122, "s1": 1.476, "s2": -0.137 }, "channel_3a": { "dark_count": 40.3, "gain_switch": 501.32, "s0": 0.11485714285714287, "s1": 1.748, "s2": -0.033 }, "channel_3b": { "b0": 0.0, "b1": 0.0, "b2": 0.0, "centroid_wavenumber": 2664.3384, "space_radiance": 0.0, "to_eff_blackbody_intercept": 1.765846445005454, "to_eff_blackbody_slope": 0.9970158319134996 }, "channel_4": { "b0": 5.44, "b1": -0.10152, "b2": 0.00046964, "centroid_wavenumber": 933.71521, "space_radiance": -4.98, "to_eff_blackbody_intercept": 0.5178945149373193, "to_eff_blackbody_slope": 0.9986240957209157 }, "channel_5": { "b0": 3.84, "b1": -0.06249, "b2": 0.00025239, "centroid_wavenumber": 839.72764, "space_radiance": -3.4, "to_eff_blackbody_intercept": 0.40012963829726456, "to_eff_blackbody_slope": 0.9988311677674785 }, "date_of_launch": "2012-10-08T19:40:48.000000Z", "thermometer_1": { "d0": 276.6194, "d1": 0.050919, "d2": 1.471e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_2": { "d0": 276.6511, "d1": 0.050892, "d2": 1.489e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_3": { "d0": 276.6597, "d1": 0.050845, "d2": 1.521e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_4": { "d0": 276.3685, "d1": 0.050992, "d2": 1.482e-06, "d3": 0.0, "d4": 0.0 } }, "metopc": { "channel_1": { "dark_count": 40.41, "gain_switch": 498.68, "s0": 0.10866666666666668, "s1": 7.424, "s2": -2.579 }, "channel_2": { "dark_count": 40.94, "gain_switch": 500.01, "s0": 0.13, "s1": -0.9, "s2": 1.278 }, "channel_3a": { "dark_count": 40.57, "gain_switch": 498.72, "s0": 0.16228571428571428, "s1": -45.535, "s2": 20.122 }, "channel_3b": { "b0": 0.0, "b1": 0.0, "b2": 0.0, "centroid_wavenumber": 2707.6457, "space_radiance": 0.0, "to_eff_blackbody_intercept": 1.7824614096281413, "to_eff_blackbody_slope": 0.9976376937050757 }, "channel_4": { "b0": 6.58, "b1": -0.13203, "b2": 0.00065922, "centroid_wavenumber": 931.89092, "space_radiance": -6.27, "to_eff_blackbody_intercept": 0.5647288036150199, "to_eff_blackbody_slope": 0.9984918778676688 }, "channel_5": { "b0": 3.23, "b1": -0.05692, "b2": 0.00024963, "centroid_wavenumber": 832.69445, "space_radiance": -2.55, "to_eff_blackbody_intercept": 0.391621708386672, "to_eff_blackbody_slope": 0.9988509218994469 }, "date_of_launch": "2018-11-06T18:54:35.423996Z", "thermometer_1": { "d0": 276.5862, "d1": 0.051051, "d2": 1.474208e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_2": { "d0": 276.6136, "d1": 0.051029, "d2": 1.472138e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_3": { "d0": 276.5975, "d1": 0.051065, "d2": 1.469268e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_4": { "d0": 276.4595, "d1": 0.05099, "d2": 1.506223e-06, "d3": 0.0, "d4": 0.0 } }, "noaa10": { "channel_1": { "dark_count": 39.44, "gain_switch": null, "s0": 0.111, "s1": 6.087, "s2": -1.039 }, "channel_2": { "dark_count": 39.4, "gain_switch": null, "s0": 0.137, "s1": 0.119, "s2": 0.123 }, "channel_3a": { "dark_count": 37.51, "gain_switch": null, "s0": 0.1, "s1": 0.0, "s2": 0.0 }, "channel_3b": { "b0": 0.0, "b1": 0.0, "b2": 0.0, "centroid_wavenumber": 2672.6164, "space_radiance": 0.0, "to_eff_blackbody_intercept": 1.7939697951173739, "to_eff_blackbody_slope": 0.9973743123852146 }, "channel_4": { "b0": 5.76, "b1": -0.1157, "b2": 0.0005882, "centroid_wavenumber": 910.49626, "space_radiance": -7.29, "to_eff_blackbody_intercept": 0.4565104004365842, "to_eff_blackbody_slope": 0.9987743041739178 }, "channel_5": { "b0": 5.76, "b1": -0.1157, "b2": 0.0005882, "centroid_wavenumber": 910.49626, "space_radiance": -7.29, "to_eff_blackbody_intercept": 0.4565104004365842, "to_eff_blackbody_slope": 0.9987743041739178 }, "date_of_launch": "1986-09-17T21:07:12.000000Z", "thermometer_1": { "d0": 276.659, "d1": 0.051275, "d2": 1.363e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_2": { "d0": 276.659, "d1": 0.051275, "d2": 1.363e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_3": { "d0": 276.659, "d1": 0.051275, "d2": 1.363e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_4": { "d0": 276.659, "d1": 0.051275, "d2": 1.363e-06, "d3": 0.0, "d4": 0.0 } }, "noaa11": { "channel_1": { "dark_count": 40.0, "gain_switch": null, "s0": 0.11, "s1": 0.632, "s2": -0.044 }, "channel_2": { "dark_count": 40.0, "gain_switch": null, "s0": 0.118, "s1": -0.037, "s2": 0.072 }, "channel_3a": { "dark_count": 40.0, "gain_switch": null, "s0": 0.0, "s1": 0.0, "s2": 0.0 }, "channel_3b": { "b0": 0.0, "b1": 0.0, "b2": 0.0, "centroid_wavenumber": 2680.05, "space_radiance": 0.0, "to_eff_blackbody_intercept": 1.7331599814223095, "to_eff_blackbody_slope": 0.9966572117119181 }, "channel_4": { "b0": 7.21, "b1": -0.1588, "b2": 0.0008739, "centroid_wavenumber": 927.462, "space_radiance": -8.055, "to_eff_blackbody_intercept": 0.3208098576426795, "to_eff_blackbody_slope": 0.9987884695863918 }, "channel_5": { "b0": 2.92, "b1": -0.054, "b2": 0.0002504, "centroid_wavenumber": 840.746, "space_radiance": -3.51, "to_eff_blackbody_intercept": 0.04861971650823853, "to_eff_blackbody_slope": 0.9993364406034393 }, "date_of_launch": "1988-09-24T13:06:14.399994Z", "thermometer_1": { "d0": 276.597, "d1": 0.051275, "d2": 1.363e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_2": { "d0": 276.597, "d1": 0.051275, "d2": 1.363e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_3": { "d0": 276.597, "d1": 0.051275, "d2": 1.363e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_4": { "d0": 276.597, "d1": 0.051275, "d2": 1.363e-06, "d3": 0.0, "d4": 0.0 } }, "noaa12": { "channel_1": { "dark_count": 41.0, "gain_switch": null, "s0": 0.121, "s1": 2.032, "s2": -0.032 }, "channel_2": { "dark_count": 40.0, "gain_switch": null, "s0": 0.148, "s1": 1.323, "s2": -0.008 }, "channel_3a": { "dark_count": 40.0, "gain_switch": null, "s0": 0.1, "s1": 0.0, "s2": 0.0 }, "channel_3b": { "b0": 0.0, "b1": 0.0, "b2": 0.0, "centroid_wavenumber": 2651.7708, "space_radiance": 0.0, "to_eff_blackbody_intercept": 1.8995562357304514, "to_eff_blackbody_slope": 0.9969990329109382 }, "channel_4": { "b0": 5.11, "b1": -0.1107, "b2": 0.0005968, "centroid_wavenumber": 922.36261, "space_radiance": -5.51, "to_eff_blackbody_intercept": 0.6329612453773935, "to_eff_blackbody_slope": 0.9982953109270609 }, "channel_5": { "b0": 1.91, "b1": -0.037, "b2": 0.0001775, "centroid_wavenumber": 838.02678, "space_radiance": -2.51, "to_eff_blackbody_intercept": 0.4103730120125729, "to_eff_blackbody_slope": 0.9988004406707545 }, "date_of_launch": "1991-05-14T22:02:38.400002Z", "thermometer_1": { "d0": 276.597, "d1": 0.051275, "d2": 1.363e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_2": { "d0": 276.597, "d1": 0.051275, "d2": 1.363e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_3": { "d0": 276.597, "d1": 0.051275, "d2": 1.363e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_4": { "d0": 276.597, "d1": 0.051275, "d2": 1.363e-06, "d3": 0.0, "d4": 0.0 } }, "noaa14": { "channel_1": { "dark_count": 41.0, "gain_switch": null, "s0": 0.121, "s1": 3.555, "s2": -0.339 }, "channel_2": { "dark_count": 41.0, "gain_switch": null, "s0": 0.152, "s1": 0.254, "s2": 0.201 }, "channel_3a": { "dark_count": 39.0, "gain_switch": null, "s0": 0.1, "s1": 0.0, "s2": 0.0 }, "channel_3b": { "b0": -0.0031, "b1": 0.00359, "b2": 0.0, "centroid_wavenumber": 2654.25, "space_radiance": 0.0069, "to_eff_blackbody_intercept": 1.8781198977126812, "to_eff_blackbody_slope": 0.996175681558497 }, "channel_4": { "b0": 3.72, "b1": -0.07622, "b2": 0.0003822, "centroid_wavenumber": 928.349, "space_radiance": -4.05, "to_eff_blackbody_intercept": 0.30793964309501387, "to_eff_blackbody_slope": 0.9985590792486442 }, "channel_5": { "b0": 2.0, "b1": -0.03806, "b2": 0.0001742, "centroid_wavenumber": 833.04, "space_radiance": -2.29, "to_eff_blackbody_intercept": -0.022159078415812293, "to_eff_blackbody_slope": 0.9994622892883629 }, "date_of_launch": "1994-12-30T18:12:57.599991Z", "thermometer_1": { "d0": 276.597, "d1": 0.051275, "d2": 1.363e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_2": { "d0": 276.597, "d1": 0.051275, "d2": 1.363e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_3": { "d0": 276.597, "d1": 0.051275, "d2": 1.363e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_4": { "d0": 276.597, "d1": 0.051275, "d2": 1.363e-06, "d3": 0.0, "d4": 0.0 } }, "noaa15": { "channel_1": { "dark_count": 39.0, "gain_switch": 500.0, "s0": 0.11933333333333333, "s1": -0.069, "s2": 0.002 }, "channel_2": { "dark_count": 40.0, "gain_switch": 500.0, "s0": 0.13733333333333334, "s1": 0.339, "s2": -0.01 }, "channel_3a": { "dark_count": 39.0, "gain_switch": 500.0, "s0": 0.1, "s1": 0.0, "s2": 0.0 }, "channel_3b": { "b0": 0.0, "b1": 0.0, "b2": 0.0, "centroid_wavenumber": 2695.9743, "space_radiance": 0.0, "to_eff_blackbody_intercept": 1.6212563211771787, "to_eff_blackbody_slope": 0.9980149482678952 }, "channel_4": { "b0": 4.76, "b1": -0.0932, "b2": 0.0004524, "centroid_wavenumber": 925.4075, "space_radiance": -4.5, "to_eff_blackbody_intercept": 0.3378095902956507, "to_eff_blackbody_slope": 0.9987186439797741 }, "channel_5": { "b0": 3.83, "b1": -0.0659, "b2": 0.0002811, "centroid_wavenumber": 839.8979, "space_radiance": -3.61, "to_eff_blackbody_intercept": 0.3045584463978693, "to_eff_blackbody_slope": 0.9990239535973354 }, "date_of_launch": "1998-05-13T21:30:57.600006Z", "thermometer_1": { "d0": 276.60157, "d1": 0.051045, "d2": 1.36328e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_2": { "d0": 276.62531, "d1": 0.050909, "d2": 1.47266e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_3": { "d0": 276.67413, "d1": 0.050907, "d2": 1.47656e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_4": { "d0": 276.59258, "d1": 0.050966, "d2": 1.47656e-06, "d3": 0.0, "d4": 0.0 } }, "noaa16": { "channel_1": { "dark_count": 39.3, "gain_switch": 498.96, "s0": 0.11, "s1": 0.839, "s2": -0.051 }, "channel_2": { "dark_count": 38.9, "gain_switch": 500.17, "s0": 0.11933333333333333, "s1": 0.786, "s2": -0.031 }, "channel_3a": { "dark_count": 38.4, "gain_switch": 499.43, "s0": 0.10685714285714286, "s1": 0.29, "s2": -0.294 }, "channel_3b": { "b0": 0.0, "b1": 0.0, "b2": 0.0, "centroid_wavenumber": 2681.254, "space_radiance": 0.0, "to_eff_blackbody_intercept": 1.674558933750318, "to_eff_blackbody_slope": 0.9982713932554388 }, "channel_4": { "b0": 2.96, "b1": -0.05411, "b2": 0.00024532, "centroid_wavenumber": 922.3479, "space_radiance": -2.467, "to_eff_blackbody_intercept": 0.5555332488394067, "to_eff_blackbody_slope": 0.9985101230454039 }, "channel_5": { "b0": 2.25, "b1": -0.03665, "b2": 0.00014854, "centroid_wavenumber": 834.61814, "space_radiance": -2.009, "to_eff_blackbody_intercept": 0.4138044554994394, "to_eff_blackbody_slope": 0.9987848783170394 }, "date_of_launch": "2000-09-21T13:04:30.719994Z", "thermometer_1": { "d0": 276.355, "d1": 0.05562, "d2": -1.59e-05, "d3": 2.486e-08, "d4": -1.199e-11 }, "thermometer_2": { "d0": 276.142, "d1": 0.05605, "d2": -1.707e-05, "d3": 2.595e-08, "d4": -1.224e-11 }, "thermometer_3": { "d0": 275.996, "d1": 0.05486, "d2": -1.223e-05, "d3": 1.862e-08, "d4": -8.53e-12 }, "thermometer_4": { "d0": 276.132, "d1": 0.05494, "d2": -1.344e-05, "d3": 2.112e-08, "d4": -1.001e-11 } }, "noaa17": { "channel_1": { "dark_count": 39.99, "gain_switch": 501.12, "s0": 0.11466666666666665, "s1": 1.007, "s2": -0.044 }, "channel_2": { "dark_count": 39.09, "gain_switch": 500.73, "s0": 0.14, "s1": 1.474, "s2": -0.118 }, "channel_3a": { "dark_count": 42.09, "gain_switch": 501.37, "s0": 0.11942857142857143, "s1": 2.787, "s2": -0.292 }, "channel_3b": { "b0": 0.0, "b1": 0.0, "b2": 0.0, "centroid_wavenumber": 2669.1414, "space_radiance": 0.0, "to_eff_blackbody_intercept": 1.695762344709997, "to_eff_blackbody_slope": 0.997334722687091 }, "channel_4": { "b0": 8.22, "b1": -0.15795, "b2": 0.00075579, "centroid_wavenumber": 928.29959, "space_radiance": -8.55, "to_eff_blackbody_intercept": 0.5654877558672039, "to_eff_blackbody_slope": 0.9984818084103121 }, "channel_5": { "b0": 4.31, "b1": -0.07318, "b2": 0.00030976, "centroid_wavenumber": 840.20289, "space_radiance": -3.97, "to_eff_blackbody_intercept": 0.37224447975949276, "to_eff_blackbody_slope": 0.9989170740000766 }, "date_of_launch": "2002-06-24T21:05:28.319992Z", "thermometer_1": { "d0": 276.628, "d1": 0.05098, "d2": 1.371e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_2": { "d0": 276.538, "d1": 0.05098, "d2": 1.371e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_3": { "d0": 276.761, "d1": 0.05097, "d2": 1.369e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_4": { "d0": 276.66, "d1": 0.051, "d2": 1.348e-06, "d3": 0.0, "d4": 0.0 } }, "noaa18": { "channel_1": { "dark_count": 39.44, "gain_switch": 500.54, "s0": 0.114, "s1": 0.603, "s2": -0.0 }, "channel_2": { "dark_count": 39.4, "gain_switch": 500.4, "s0": 0.128, "s1": 0.632, "s2": 0.045 }, "channel_3a": { "dark_count": 37.51, "gain_switch": 500.56, "s0": 0.1, "s1": 0.0, "s2": 0.0 }, "channel_3b": { "b0": 0.0, "b1": 0.0, "b2": 0.0, "centroid_wavenumber": 2660.6468, "space_radiance": 0.0, "to_eff_blackbody_intercept": 1.7173477182782537, "to_eff_blackbody_slope": 0.9971448750791857 }, "channel_4": { "b0": 5.82, "b1": -0.11069, "b2": 0.00052337, "centroid_wavenumber": 928.73452, "space_radiance": -5.53, "to_eff_blackbody_intercept": 0.5461660253184831, "to_eff_blackbody_slope": 0.9985440229601218 }, "channel_5": { "b0": 2.67, "b1": -0.0436, "b2": 0.00017715, "centroid_wavenumber": 834.08306, "space_radiance": -2.22, "to_eff_blackbody_intercept": 0.3989160707985957, "to_eff_blackbody_slope": 0.9988289729121578 }, "date_of_launch": "2005-05-20T21:42:28.799988Z", "thermometer_1": { "d0": 276.601, "d1": 0.0509, "d2": 1.657e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_2": { "d0": 276.683, "d1": 0.05101, "d2": 1.482e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_3": { "d0": 276.565, "d1": 0.05117, "d2": 1.313e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_4": { "d0": 276.615, "d1": 0.05103, "d2": 1.484e-06, "d3": 0.0, "d4": 0.0 } }, "noaa19": { "channel_1": { "dark_count": 38.8, "gain_switch": 496.43, "s0": 0.108, "s1": 0.626, "s2": -0.044 }, "channel_2": { "dark_count": 39.0, "gain_switch": 500.37, "s0": 0.122, "s1": 0.95, "s2": -0.039 }, "channel_3a": { "dark_count": 39.4, "gain_switch": 496.11, "s0": 0.1, "s1": 0.0, "s2": 0.0 }, "channel_3b": { "b0": 0.0, "b1": 0.0, "b2": 0.0, "centroid_wavenumber": 2670.2425, "space_radiance": 0.0, "to_eff_blackbody_intercept": 1.6820200170457578, "to_eff_blackbody_slope": 0.9974112191806167 }, "channel_4": { "b0": 5.7, "b1": -0.11187, "b2": 0.00054668, "centroid_wavenumber": 927.92374, "space_radiance": -5.49, "to_eff_blackbody_intercept": 0.39366677255917354, "to_eff_blackbody_slope": 0.9986718662850276 }, "channel_5": { "b0": 3.58, "b1": -0.05991, "b2": 0.00024985, "centroid_wavenumber": 831.28619, "space_radiance": -3.39, "to_eff_blackbody_intercept": 0.2633947633588976, "to_eff_blackbody_slope": 0.9990463103920997 }, "date_of_launch": "2009-02-05T00:57:36.000000Z", "thermometer_1": { "d0": 276.6067, "d1": 0.051111, "d2": 1.405783e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_2": { "d0": 276.6119, "d1": 0.05109, "d2": 1.496037e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_3": { "d0": 276.6311, "d1": 0.051033, "d2": 1.49699e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_4": { "d0": 276.6268, "d1": 0.051058, "d2": 1.49311e-06, "d3": 0.0, "d4": 0.0 } }, "noaa6": { "channel_1": { "dark_count": 39.44, "gain_switch": null, "s0": 0.113, "s1": 0.9, "s2": 0.0 }, "channel_2": { "dark_count": 39.4, "gain_switch": null, "s0": 0.128, "s1": 0.699, "s2": 0.0 }, "channel_3a": { "dark_count": 37.51, "gain_switch": null, "s0": 0.1, "s1": 0.0, "s2": 0.0 }, "channel_3b": { "b0": 0.0, "b1": 0.0, "b2": 0.0, "centroid_wavenumber": 2671.5433, "space_radiance": 0.0, "to_eff_blackbody_intercept": 1.7624057951236716, "to_eff_blackbody_slope": 0.9975631527305099 }, "channel_4": { "b0": 2.24, "b1": -0.03964, "b2": 0.00016925, "centroid_wavenumber": 913.46088, "space_radiance": -3.26, "to_eff_blackbody_intercept": 0.5032756477395923, "to_eff_blackbody_slope": 0.9986426449170288 }, "channel_5": { "b0": 2.24, "b1": -0.03964, "b2": 0.00016925, "centroid_wavenumber": 913.46088, "space_radiance": -3.26, "to_eff_blackbody_intercept": 0.5032756477395923, "to_eff_blackbody_slope": 0.9986426449170288 }, "date_of_launch": "1979-06-28T20:23:59.999992Z", "thermometer_1": { "d0": 276.659, "d1": 0.051275, "d2": 1.363e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_2": { "d0": 276.659, "d1": 0.051275, "d2": 1.363e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_3": { "d0": 276.659, "d1": 0.051275, "d2": 1.363e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_4": { "d0": 276.659, "d1": 0.051275, "d2": 1.363e-06, "d3": 0.0, "d4": 0.0 } }, "noaa7": { "channel_1": { "dark_count": 36.0, "gain_switch": null, "s0": 0.115, "s1": 3.792, "s2": -0.269 }, "channel_2": { "dark_count": 37.0, "gain_switch": null, "s0": 0.127, "s1": 2.685, "s2": -0.101 }, "channel_3a": { "dark_count": 39.0, "gain_switch": null, "s0": 0.1, "s1": 0.0, "s2": 0.0 }, "channel_3b": { "b0": 0.0, "b1": 0.0, "b2": 0.0, "centroid_wavenumber": 2684.5233, "space_radiance": 0.0, "to_eff_blackbody_intercept": 1.9431412686479361, "to_eff_blackbody_slope": 0.9970825364982062 }, "channel_4": { "b0": 5.25, "b1": -0.10217, "b2": 0.0004819, "centroid_wavenumber": 928.23757, "space_radiance": -5.16, "to_eff_blackbody_intercept": 0.5273396378823769, "to_eff_blackbody_slope": 0.9985980681720933 }, "channel_5": { "b0": 3.93, "b1": -0.06317, "b2": 0.0002425, "centroid_wavenumber": 841.52137, "space_radiance": -4.28, "to_eff_blackbody_intercept": 0.4050927062086506, "to_eff_blackbody_slope": 0.9988224881686979 }, "date_of_launch": "1981-06-23T21:15:50.400009Z", "thermometer_1": { "d0": 277.099, "d1": 0.05048, "d2": 2.823e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_2": { "d0": 276.734, "d1": 0.05069, "d2": 2.493e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_3": { "d0": 276.876, "d1": 0.05148, "d2": 1.04e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_4": { "d0": 276.16, "d1": 0.05128, "d2": 1.414e-06, "d3": 0.0, "d4": 0.0 } }, "noaa8": { "channel_1": { "dark_count": 39.44, "gain_switch": null, "s0": 0.119, "s1": 6.065, "s2": 0.0 }, "channel_2": { "dark_count": 39.4, "gain_switch": null, "s0": 0.136, "s1": 7.248, "s2": 0.0 }, "channel_3a": { "dark_count": 37.51, "gain_switch": null, "s0": 0.1, "s1": 0.0, "s2": 0.0 }, "channel_3b": { "b0": 0.0, "b1": 0.0, "b2": 0.0, "centroid_wavenumber": 2651.3776, "space_radiance": 0.0, "to_eff_blackbody_intercept": 1.7721113578458658, "to_eff_blackbody_slope": 0.9975798712323902 }, "channel_4": { "b0": 2.24, "b1": -0.03964, "b2": 0.00016925, "centroid_wavenumber": 915.3033, "space_radiance": -3.26, "to_eff_blackbody_intercept": 0.49950763272635035, "to_eff_blackbody_slope": 0.9986558092807081 }, "channel_5": { "b0": 2.24, "b1": -0.03964, "b2": 0.00016925, "centroid_wavenumber": 915.3033, "space_radiance": -3.26, "to_eff_blackbody_intercept": 0.49950763272635035, "to_eff_blackbody_slope": 0.9986558092807081 }, "date_of_launch": "1983-03-29T23:09:36.000000Z", "thermometer_1": { "d0": 276.659, "d1": 0.051275, "d2": 1.363e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_2": { "d0": 276.659, "d1": 0.051275, "d2": 1.363e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_3": { "d0": 276.659, "d1": 0.051275, "d2": 1.363e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_4": { "d0": 276.659, "d1": 0.051275, "d2": 1.363e-06, "d3": 0.0, "d4": 0.0 } }, "noaa9": { "channel_1": { "dark_count": 38.0, "gain_switch": null, "s0": 0.108, "s1": 4.255, "s2": 0.64 }, "channel_2": { "dark_count": 40.0, "gain_switch": null, "s0": 0.122, "s1": 0.31, "s2": 0.642 }, "channel_3a": { "dark_count": 38.0, "gain_switch": null, "s0": 0.1, "s1": 0.0, "s2": 0.0 }, "channel_3b": { "b0": 0.0, "b1": 0.0, "b2": 0.0, "centroid_wavenumber": 2690.0451, "space_radiance": 0.0, "to_eff_blackbody_intercept": 1.8778246397589067, "to_eff_blackbody_slope": 0.9971105729816139 }, "channel_4": { "b0": 5.24, "b1": -0.1136, "b2": 0.0006033, "centroid_wavenumber": 930.5023, "space_radiance": -5.53, "to_eff_blackbody_intercept": 0.5108402897268406, "to_eff_blackbody_slope": 0.99864483895354 }, "channel_5": { "b0": 2.42, "b1": -0.0469, "b2": 0.0002198, "centroid_wavenumber": 845.75, "space_radiance": -3.06, "to_eff_blackbody_intercept": 0.3877802982856218, "to_eff_blackbody_slope": 0.9988802552338829 }, "date_of_launch": "1984-12-12T23:13:55.200005Z", "thermometer_1": { "d0": 277.018, "d1": 0.05128, "d2": 0.0, "d3": 0.0, "d4": 0.0 }, "thermometer_2": { "d0": 276.75, "d1": 0.05128, "d2": 0.0, "d3": 0.0, "d4": 0.0 }, "thermometer_3": { "d0": 276.862, "d1": 0.05128, "d2": 0.0, "d3": 0.0, "d4": 0.0 }, "thermometer_4": { "d0": 276.546, "d1": 0.05128, "d2": 0.0, "d3": 0.0, "d4": 0.0 } }, "tirosn": { "channel_1": { "dark_count": 39.44, "gain_switch": null, "s0": 0.115, "s1": 5.11, "s2": 0.0 }, "channel_2": { "dark_count": 39.4, "gain_switch": null, "s0": 0.133, "s1": 0.717, "s2": 0.0 }, "channel_3a": { "dark_count": 37.51, "gain_switch": null, "s0": 0.1, "s1": 0.0, "s2": 0.0 }, "channel_3b": { "b0": 0.00195, "b1": -0.015, "b2": 0.011, "centroid_wavenumber": 2655.7409, "space_radiance": -0.0039, "to_eff_blackbody_intercept": 1.645107312780676, "to_eff_blackbody_slope": 0.9979149564899099 }, "channel_4": { "b0": 6.13, "b1": -0.131942, "b2": 0.000673193, "centroid_wavenumber": 913.05397, "space_radiance": -8.13, "to_eff_blackbody_intercept": 0.5305934198578978, "to_eff_blackbody_slope": 0.9985677542700504 }, "channel_5": { "b0": 6.13, "b1": -0.131942, "b2": 0.000673193, "centroid_wavenumber": 913.05397, "space_radiance": -8.13, "to_eff_blackbody_intercept": 0.5305934198578978, "to_eff_blackbody_slope": 0.9985677542700504 }, "date_of_launch": "1978-10-13T19:04:47.999992Z", "thermometer_1": { "d0": 276.659, "d1": 0.051275, "d2": 1.363e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_2": { "d0": 276.659, "d1": 0.051275, "d2": 1.363e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_3": { "d0": 276.659, "d1": 0.051275, "d2": 1.363e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_4": { "d0": 276.659, "d1": 0.051275, "d2": 1.363e-06, "d3": 0.0, "d4": 0.0 } } } pygac-1.7.2/pygac/gac_calibration.py_old000066400000000000000000000502131444627033600202520ustar00rootroot00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (c) 2014 Martin Raspaud, Abhay Devasthale # Author(s): # Martin Raspaud # Abhay Devasthale # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . """Calibration coefficients and generic calibration functions """ import numpy as np coeffs = { 'metop02': {'ah': [0.1665, 0.1905, 0.217], 'al': [0.0555, 0.0635, 0.031], 'bh': [1.797, 2.149, 4.11], 'bl': [1.797, 2.149, 4.11], 'c_dark': [40.43, 39.75, 41.8], 'c_s': [501.0, 500.0, 502.0], 'ch': [-0.352, -0.225, 0.0], 'cl': [-0.352, -0.225, 0.0], 'l_date': 2006.77, 'd': np.array([[0, 0, 0, 0, 0], # reset prt [276.6194, 0.050919, 1.471E-06, 0.0, 0.0], [276.6511, 0.050892, 1.489E-06, 0.0, 0.0], [276.6597, 0.050845, 1.521E-06, 0.0, 0.0], [276.3685, 0.050992, 1.482E-06, 0.0, 0.0]]), 'n_s': np.array([0.0, -4.98, -3.40]), 'c_wn': np.array([2687.0392, 927.27630, 837.80762]), 'a': np.array([2.0653147, 0.56503332, 0.38472766]), 'b': np.array([1.0 / 1.0034418, 1.0 / 1.0015090, 1.0 / 1.0011264]), 'b0': np.array([0.0, 5.44, 3.84]), 'b1': np.array([1 - 0.0, 1 - 0.10152, 1 - 0.06249]), 'b2': np.array([0.0, 0.00046964, 0.00025239]), }, 'noaa07': {'ah': np.array([0.111206, 0.107664, 0.0]), 'al': np.array([0.111206, 0.107664, 0.0]), 'bh': np.array([8.8581, 20.7843, 0.0]), 'bl': np.array([8.8581, 20.7843, 0.0]), 'c_dark': np.array([36.0, 37.0, 39.0]), 'ch': np.array([-1.11938, -4.32167, 0.0]), 'cl': np.array([-1.11938, -4.32167, 0.0]), 'l_date': 1981.4764, 'd': np.array([[0, 0, 0, 0, 0], # reset prt [277.099, 5.048E-2, 2.823E-6, 0, 0], [276.734, 5.069E-2, 2.493E-6, 0, 0], [276.876, 5.148E-2, 1.040E-6, 0, 0], [276.160, 5.128E-2, 1.414E-6, 0, 0]]), 'n_s': np.array([0.0, -5.16, -4.28]), 'c_wn': np.array([2684.5233, 928.23757, 841.52137]), 'a': np.array([1.94882690, 0.52807997, 0.40557027]), 'b': np.array([1.0 / 1.0029260, 1.0 / 1.0014039, 1.0 / 1.0011789]), 'b1': np.array([1.0, 0.89783, 0.93683]), 'b2': np.array([0.0, 0.0004819, 0.0002425]), 'b0': np.array([0.0, 5.25, 3.93]), }, 'noaa09': {'ah': np.array([0.109312, 0.11601, 0.0]), 'al': np.array([0.109312, 0.11601, 0.0]), 'bh': np.array([5.66526, 3.93889, 0.0]), 'bl': np.array([5.66526, 3.93889, 0.0]), 'c_dark': np.array([38.0, 40.0, 38.0]), 'ch': np.array([0.27152, -0.258047, 0.0]), 'cl': np.array([0.27152, -0.258047, 0.0]), 'l_date': 1984.948, 'd': np.array([[0, 0, 0, 0, 0], # reset prt [277.018000, 0.051280, 0.0, 0, 0], [276.750000, 0.051280, 0.0, 0, 0], [276.862000, 0.051280, 0.0, 0, 0], [276.546000, 0.051280, 0.0, 0, 0]]), 'n_s': np.array([0.0, -5.530, -3.06]), 'c_wn': np.array([2690.0451, 930.50230, 845.75000]), 'a': np.array([1.8832662, 0.5115335, 0.3882150]), 'b': np.array([1.0 / 1.0028978, 1.0 / 1.0013570, 1.0 / 1.0011210]), 'b1': np.array([1.0, 0.88643, 0.95311]), 'b2': np.array([0.0, 0.0006033, 0.0002198]), 'b0': np.array([0.0, 5.24, 2.42]), }, 'noaa10': {'ah': np.array([0.114803, 0.132682, 0.0]), 'al': np.array([0.114803, 0.132682, 0.0]), 'bh': np.array([3.43456, 0.00926103, 0.0]), 'bl': np.array([3.43456, 0.00926103, 0.0]), 'c_dark': np.array([39.44, 39.40, 37.51]), 'ch': np.array([-0.384635, 0.137333, 0.0]), 'cl': np.array([-0.384635, 0.137333, 0.0]), 'l_date': 1986.712, 'd': np.array([[0, 0, 0, 0, 0], # reset prt [276.659, 0.051275, 1.363e-06, 0, 0], [276.659, 0.051275, 1.363e-06, 0, 0], [276.659, 0.051275, 1.363e-06, 0, 0], [276.659, 0.051275, 1.363e-06, 0, 0]]), 'n_s': np.array([0.0, 0.0, 0.0]), 'c_wn': np.array([2672.6392, 910.51930, 910.51930]), 'a': np.array([1.80168640, 0.45707890, 0.45707890]), 'b': np.array([1.0 / 1.0026383, 1.0 / 1.0012338, 1.0 / 1.0012338]), 'b1': np.array([1.0, 1.0, 1.0]), 'b2': np.array([0.0, 0.0, 0.0]), 'b0': np.array([0.0, 0.0, 0.0]), }, 'noaa11': {'ah': np.array([0.114786, 0.115219, 0.0]), 'al': np.array([0.114786, 0.115219, 0.0]), 'bh': np.array([-1.82974, -1.39495, 0.0]), 'bl': np.array([-1.82974, -1.39494, 0.0]), 'c_dark': np.array([40.0, 40.0, 40.0]), 'ch': np.array([0.412551, 0.236978, 0.0]), 'cl': np.array([0.412551, 0.236978, 0.0]), 'l_date': 1988.7064, 'd': np.array([[0, 0, 0, 0, 0], # reset prt [276.597, 0.051275, 1.363e-06, 0, 0], [276.597, 0.051275, 1.363e-06, 0, 0], [276.597, 0.051275, 1.363e-06, 0, 0], [276.597, 0.051275, 1.363e-06, 0, 0]]), 'n_s': np.array([0.0, -8.055, -3.51]), 'c_wn': np.array([2680.05, 927.462, 840.746]), 'a': np.array([1.738973, 0.321199, 0.048652]), 'b': np.array([1.0 / 1.003354, 1.0 / 1.001213, 1.0 / 1.000664]), 'b1': np.array([1.0, 0.84120, 0.94598]), 'b2': np.array([0.0, 0.0008739, 0.0002504]), 'b0': np.array([0.0, 7.21, 2.92]), }, 'noaa12': {'ah': np.array([0.118059, 0.135684, 0.0]), 'al': np.array([0.118059, 0.135684, 0.0]), 'bh': np.array([4.88848, 4.67098, 0.0]), 'bl': np.array([4.88848, 4.67098, 0.0]), 'c_dark': np.array([41.0, 40.0, 40.0]), 'ch': np.array([-0.347769, -0.399447, 0.0]), 'cl': np.array([-0.347769, -0.399447, 0.0]), 'l_date': 1991.3669, 'd': np.array([[0, 0, 0, 0, 0], # reset prt [276.597, 0.051275, 1.363e-06, 0, 0], [276.597, 0.051275, 1.363e-06, 0, 0], [276.597, 0.051275, 1.363e-06, 0, 0], [276.597, 0.051275, 1.363e-06, 0, 0]]), 'n_s': np.array([0.0, -5.510, -2.51]), 'c_wn': np.array([2651.7708, 922.36261, 838.02678]), 'a': np.array([1.90527390, 0.63404209, 0.41086587]), 'b': np.array([1.0 / 1.0030100, 1.0 / 1.0017076, 1.0 / 1.0012010]), 'b1': np.array([1.0, 0.88929, 0.96299]), 'b2': np.array([0.0, 0.0005968, 0.0001775]), 'b0': np.array([0.0, 5.11, 1.91]), }, 'noaa14': {'ah': np.array([0.121408, 0.144515, 0.0]), 'al': np.array([0.121408, 0.144515, 0.0]), 'bh': np.array([4.07313, 0.885331, 0.0]), 'bl': np.array([4.07313, 0.885331, 0.0]), 'c_dark': np.array([41.0, 41.0, 39.0]), 'ch': np.array([-0.375215, 0.233727, 0.0]), 'cl': np.array([-0.375215, 0.233727, 0.0]), 'l_date': 1994.9699, 'd': np.array([[0, 0, 0, 0, 0], # reset prt [276.597, 0.051275, 1.363e-06, 0, 0], [276.597, 0.051275, 1.363e-06, 0, 0], [276.597, 0.051275, 1.363e-06, 0, 0], [276.597, 0.051275, 1.363e-06, 0, 0]]), 'n_s': np.array([0.0069, -4.05, -2.29]), 'c_wn': np.array([2654.25, 928.349, 833.040]), 'a': np.array([1.885330, 0.308384, 0.022171]), 'b': np.array([1.0 / 1.003839, 1.0 / 1.001443, 1.0 / 1.000538]), 'b1': np.array([1.00359, 0.92378, 0.96194]), 'b2': np.array([0.0, 0.000382, 0.0001742]), 'b0': np.array([-0.0031, 3.72, 2.00])}, 'noaa15': {'ah': np.array([0.1815, 0.2025, 0.1846]), 'al': np.array([0.0605, 0.0675, 0.0275]), 'bh': np.array([0.447, 0.035, 0.0]), 'bl': np.array([0.447, 0.035, 0.0]), 'c_dark': np.array([39.0, 40.0, 39.0]), 'c_s': np.array([500.0, 500.0, 500.0]), 'ch': np.array([-0.060, 0.007, 0.0]), 'cl': np.array([-0.060, 0.007, 0.0]), 'l_date': 1998.3641, 'd': np.array([[0, 0, 0, 0, 0], # reset prt [276.60157, 0.051045, 1.36328E-06, 0.0, 0.0], [276.62531, 0.050909, 1.47266E-06, 0.0, 0.0], [276.67413, 0.050907, 1.47656E-06, 0.0, 0.0], [276.59258, 0.050966, 1.47656E-06, 0.0, 0.0]]), 'n_s': np.array([0.0, -4.50, -3.61]), 'c_wn': np.array([2695.9743, 925.4075, 839.8979]), 'a': np.array([1.624481, 0.338243, 0.304856]), 'b': np.array([1.0 / 1.001989, 1.0 / 1.001283, 1.0 / 1.000977]), 'b0': np.array([0.0, 4.76, 3.83]), 'b1': np.array([1 - 0.0, 1 - 0.0932, 1 - 0.0659]), 'b2': np.array([0.0, 0.0004524, 0.0002811]), }, 'noaa16': {'ah': np.array([0.168, 0.174, 0.2013]), 'al': np.array([0.056, 0.058, 0.0288]), 'bh': np.array([0.306, 0.586, -0.810]), 'bl': np.array([0.306, 0.586, -0.81]), 'c_dark': np.array([39.3, 38.9, 38.4]), 'c_s': np.array([498.96, 500.17, 499.43]), 'ch': np.array([0.0250, 0.036, 0.0]), 'cl': np.array([0.0250, 0.036, 0.0]), 'l_date': 2000.7228, 'd': np.array([[0, 0, 0, 0, 0], # reset prt [276.355, 5.562E-02, -1.590E-05, 2.486E-08, -1.199E-11], [276.142, 5.605E-02, -1.707E-05, 2.595E-08, -1.224E-11], [275.996, 5.486E-02, -1.223E-05, 1.862E-08, -0.853E-11], [276.132, 5.494E-02, -1.344E-05, 2.112E-08, -1.001E-11]]), 'n_s': np.array([0.0, -2.467, -2.009]), 'c_wn': np.array([2681.2540, 922.34790, 834.61814]), 'a': np.array([1.6774586, 0.55636216, 0.41430789]), 'b': np.array([1.0 / 1.0017316, 1.0 / 1.0014921, 1.0 / 1.0012166]), 'b0': np.array([0.0, 2.96, 2.25]), 'b1': np.array([1 - 0.0, 1 - 0.05411, 1 - 0.03665]), 'b2': np.array([0.0, 0.00024532, 0.00014854]), }, 'noaa17': {'ah': np.array([0.1725, 0.1950, 0.2153]), 'al': np.array([0.0575, 0.0650, 0.0308]), 'bh': np.array([1.707, 3.117, 4.06]), 'bl': np.array([1.707, 3.117, 4.06]), 'c_dark': np.array([39.99, 39.09, 42.09]), 'c_s': np.array([501.12, 500.73, 501.37]), 'ch': np.array([-0.151, -0.265, -0.37]), 'cl': np.array([-0.151, -0.265, -0.37]), 'l_date': 2002.47912, 'd': np.array([[0, 0, 0, 0, 0], # reset prt [276.628, 0.05098, 1.371E-06, 0.0, 0.0], [276.538, 0.05098, 1.371E-06, 0.0, 0.0], [276.761, 0.05097, 1.369E-06, 0.0, 0.0], [276.660, 0.05100, 1.348E-06, 0.0, 0.0]]), 'n_s': np.array([0.0, -8.55, -3.97]), 'c_wn': np.array([2669.1414, 928.29959, 840.20289]), 'a': np.array([1.70002941, 0.56634758, 0.37264803]), 'b': np.array([1.0 / 1.0026724, 1.0 / 1.0015205, 1.0 / 1.0010841]), 'b0': np.array([0.0, 8.22, 4.31]), 'b1': np.array([1 - 0.0, 1 - 0.15795, 1 - 0.07318]), 'b2': np.array([0.0, 0.00075579, 0.00030976]), }, 'noaa18': {'ah': np.array([0.1665, 0.1785, 0.1849]), 'al': np.array([0.0555, 0.0595, 0.0262]), 'bh': np.array([3.068, 4.541, 0.0]), 'bl': np.array([3.068, 4.541, 0.0]), 'c_dark': np.array([39.44, 39.40, 37.51]), 'c_s': np.array([500.54, 500.40, 500.56]), 'ch': np.array([-0.443, -0.611, 0.0]), 'cl': np.array([-0.443, -0.611, 0.0]), 'l_date': 2005.18891, 'd': np.array([[0, 0, 0, 0, 0], # reset prt [276.601, 0.05090, 1.657E-06, 0.0, 0.0], [276.683, 0.05101, 1.482E-06, 0.0, 0.0], [276.565, 0.05117, 1.313E-06, 0.0, 0.0], [276.615, 0.05103, 1.484E-06, 0.0, 0.0]]), 'n_s': np.array([0.0, -5.53, -2.22]), 'c_wn': np.array([2660.6468, 928.73452, 834.08306]), 'a': np.array([1.7222650, 0.54696239, 0.39938376]), 'b': np.array([1.0 / 1.0028633, 1.0 / 1.0014581, 1.0 / 1.0011724]), 'b0': np.array([0.0, 5.82, 2.67]), 'b1': np.array([1 - 0.0, 1 - 0.11069, 1 - 0.04360]), 'b2': np.array([0.0, 0.00052337, 0.00017715]), }, 'noaa19': {'ah': np.array([0.1680, 0.1755, 0.1880]), 'al': np.array([0.0560, 0.0585, 0.0272]), 'bh': np.array([-5.985, 2.263, 0.0]), 'bl': np.array([-5.985, 2.263, 0.0]), 'c_dark': np.array([38.8, 39.00, 39.4]), 'c_s': np.array([496.43, 500.37, 496.11]), 'ch': np.array([-8.687, 0.748, 0.0]), 'cl': np.array([-8.687, 0.748, 0.0]), 'l_date': 2009.096, 'd': np.array([[0, 0, 0, 0, 0], # reset prt [276.6067, 0.051111, 1.405783e-06, 0, 0], [276.6119, 0.051090, 1.496037e-06, 0, 0], [276.6311, 0.051033, 1.496990e-06, 0, 0], [276.6268, 0.051058, 1.493110e-06, 0, 0]]), 'n_s': np.array([0.0, -5.49, -3.39]), 'c_wn': np.array([2670.2425, 927.92374, 831.28619]), 'a': np.array([1.6863857, 0.39419031, 0.26364620]), 'b': np.array([1.0 / 1.0025955, 1.0 / 1.0013299, 1.0 / 1.0009546]), 'b0': np.array([0.0, 5.70, 3.58]), 'b1': np.array([1 - 0.0, 1 - 0.11187, 1 - 0.05991]), 'b2': np.array([0.0, 0.00054668, 0.00024985])}} class Calibrator(object): def __init__(self, spacecraft): self.ah = None self.al = None self.bh = None self.bl = None self.ch = None self.cl = None self.c_s = None self.c_dark = None self.l_date = None self.d = None self.n_s = None self.c_wn = None self.a = None self.b = None self.b0 = None self.b1 = None self.b2 = None self.__dict__.update(coeffs[spacecraft]) def calibrate_solar(counts, chan, year, jday, spacecraft, corr=1): """Do the solar calibration and return reflectance (between 0 and 100). """ cal = Calibrator(spacecraft) t = (year + jday / 365.0) - cal.l_date stl = (cal.al[chan] * (100.0 + cal.bl[chan] * t + cal.cl[chan] * t * t)) / 100.0 sth = (cal.ah[chan] * (100.0 + cal.bh[chan] * t + cal.ch[chan] * t * t)) / 100.0 if cal.c_s is not None: return np.where(counts <= cal.c_s[chan], (counts - cal.c_dark[chan]) * stl, (cal.c_s[chan] - cal.c_dark[chan]) * stl + (counts - cal.c_s[chan]) * sth) else: return (counts - cal.c_dark[chan]) * stl * corr def calibrate_thermal(counts, prt, ict, space, line_numbers, channel, spacecraft): """Do the thermal calibration and return brightness temperatures (K). """ cal = Calibrator(spacecraft) chan = channel - 3 lines, columns = counts.shape[:2] offset = 0 for i, prt_val in enumerate(prt): if prt_val < 50: offset = i break iprt = (line_numbers - line_numbers[0] + 5 - offset) % 5 tprt = (cal.d[iprt, 0] + prt * (cal.d[iprt, 1] + prt * (cal.d[iprt, 2] + prt * (cal.d[iprt, 3] + prt * (cal.d[iprt, 4]))))) zeros = iprt == 0 nonzeros = np.logical_not(zeros) tprt[zeros] = np.interp((zeros).nonzero()[0], (nonzeros).nonzero()[0], tprt[nonzeros]) # convolving and smoothing PRT, ICT and SPACE values if lines > 51: wlength = 51 else: wlength = 3 weighting_function = np.ones(wlength, dtype=float) / wlength tprt_convolved = np.convolve(tprt, weighting_function, 'same') ict_convolved = np.convolve(ict, weighting_function, 'same') space_convolved = np.convolve(space, weighting_function, 'same') # take care of the beginning and end tprt_convolved[0:(wlength - 1) / 2] = tprt_convolved[(wlength - 1) / 2] ict_convolved[0:(wlength - 1) / 2] = ict_convolved[(wlength - 1) / 2] space_convolved[0:(wlength - 1) / 2] = space_convolved[(wlength - 1) / 2] tprt_convolved[-(wlength - 1) / 2:] = tprt_convolved[-((wlength + 1) / 2)] ict_convolved[-(wlength - 1) / 2:] = ict_convolved[-((wlength + 1) / 2)] space_convolved[-(wlength - 1) / 2:] = \ space_convolved[-((wlength + 1) / 2)] new_tprt = np.transpose(np.tile(tprt_convolved, (columns, 1))) new_ict = np.transpose(np.tile(ict_convolved, (columns, 1))) new_space = np.transpose(np.tile(space_convolved, (columns, 1))) # calibrating thermal channel tBB = new_tprt tsBB = cal.a[chan] + cal.b[chan] * tBB nBB_num = (1.1910427 * 0.000010) * cal.c_wn[chan] ** 3 nBB = nBB_num / (np.exp((1.4387752 * cal.c_wn[chan]) / tsBB) - 1.0) Nlin = (cal.n_s[chan] + (((nBB - cal.n_s[chan]) * (new_space - counts)) / (new_space - new_ict))) Ncor = cal.b0[chan] + Nlin * (cal.b1[chan] + cal.b2[chan] * Nlin) Ne = Ncor tsE = ((1.4387752 * cal.c_wn[chan]) / np.log(1.0 + nBB_num / Ne)) bt = (tsE - cal.a[chan]) / cal.b[chan] return bt pygac-1.7.2/pygac/gac_io.py000066400000000000000000000653641444627033600155510ustar00rootroot00000000000000#!/usr/bin/env python # Copyright (c) 2012, 2014 Abhay Devasthale # Author(s): # Abhay Devasthale # Adam Dybbroe # Sara Hornquist # Martin Raspaud # Carlos Horn # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . import calendar import datetime import logging import os import time import h5py import numpy as np from pygac.utils import slice_channel, strip_invalid_lat, check_user_scanlines LOG = logging.getLogger(__name__) MISSING_DATA = -32001 MISSING_DATA_LATLON = -999999 def save_gac(satellite_name, xutcs, lats, lons, ref1, ref2, ref3, bt3, bt4, bt5, sun_zen, sat_zen, sun_azi, sat_azi, rel_azi, qual_flags, start_line, end_line, gac_file, meta_data, output_file_prefix, avhrr_dir, qual_dir, sunsatangles_dir): midnight_scanline = meta_data['midnight_scanline'] miss_lines = meta_data['missing_scanlines'] corr = meta_data['sun_earth_distance_correction_factor'] last_scan_line_number = qual_flags[-1, 0] # Strip invalid coordinates first_valid_lat, last_valid_lat = strip_invalid_lat(lats) if first_valid_lat > start_line: LOG.info('New start_line chosen (due to invalid lat/lon ' 'info) = ' + str(first_valid_lat)) if end_line > last_valid_lat: LOG.info('New end_line chosen (due to invalid lat/lon ' 'info) = ' + str(last_valid_lat)) # Check user-defined scanlines start_line, end_line = check_user_scanlines( start_line=start_line, end_line=end_line, first_valid_lat=first_valid_lat, last_valid_lat=last_valid_lat) # Slice data using new start/end lines _, miss_lines, midnight_scanline = slice_channel( np.zeros(lats.shape), start_line=start_line, end_line=end_line, first_valid_lat=first_valid_lat, last_valid_lat=last_valid_lat, qual_flags=qual_flags, miss_lines=miss_lines, midnight_scanline=midnight_scanline) ref1, _, _ = slice_channel(ref1, start_line=start_line, end_line=end_line, first_valid_lat=first_valid_lat, last_valid_lat=last_valid_lat) ref2, _, _ = slice_channel(ref2, start_line=start_line, end_line=end_line, first_valid_lat=first_valid_lat, last_valid_lat=last_valid_lat) ref3, _, _ = slice_channel(ref3, start_line=start_line, end_line=end_line, first_valid_lat=first_valid_lat, last_valid_lat=last_valid_lat) bt3, _, _ = slice_channel(bt3, start_line=start_line, end_line=end_line, first_valid_lat=first_valid_lat, last_valid_lat=last_valid_lat) bt4, _, _ = slice_channel(bt4, start_line=start_line, end_line=end_line, first_valid_lat=first_valid_lat, last_valid_lat=last_valid_lat) bt5, _, _ = slice_channel(bt5, start_line=start_line, end_line=end_line, first_valid_lat=first_valid_lat, last_valid_lat=last_valid_lat) sun_zen, _, _ = slice_channel(sun_zen, start_line=start_line, end_line=end_line, first_valid_lat=first_valid_lat, last_valid_lat=last_valid_lat) sun_azi, _, _ = slice_channel(sun_azi, start_line=start_line, end_line=end_line, first_valid_lat=first_valid_lat, last_valid_lat=last_valid_lat) sat_zen, _, _ = slice_channel(sat_zen, start_line=start_line, end_line=end_line, first_valid_lat=first_valid_lat, last_valid_lat=last_valid_lat) sat_azi, _, _ = slice_channel(sat_azi, start_line=start_line, end_line=end_line, first_valid_lat=first_valid_lat, last_valid_lat=last_valid_lat) rel_azi, _, _ = slice_channel(rel_azi, start_line=start_line, end_line=end_line, first_valid_lat=first_valid_lat, last_valid_lat=last_valid_lat) lons, _, _ = slice_channel(lons, start_line=start_line, end_line=end_line, first_valid_lat=first_valid_lat, last_valid_lat=last_valid_lat) lats, _, _ = slice_channel(lats, start_line=start_line, end_line=end_line, first_valid_lat=first_valid_lat, last_valid_lat=last_valid_lat) qual_flags, _, _ = slice_channel(qual_flags, start_line=start_line, end_line=end_line, first_valid_lat=first_valid_lat, last_valid_lat=last_valid_lat) xutcs, _, _ = slice_channel(xutcs, start_line=start_line, end_line=end_line, first_valid_lat=first_valid_lat, last_valid_lat=last_valid_lat) total_number_of_scan_lines = lats.shape[0] # Reading time from the body of the gac file start = xutcs[0].astype(datetime.datetime) end = xutcs[-1].astype(datetime.datetime) startdate = start.strftime("%Y%m%d") starttime = start.strftime("%H%M%S%f")[:-5] enddate = end.strftime("%Y%m%d") endtime = end.strftime("%H%M%S%f")[:-5] # Apply scaling & offset bt3 -= 273.15 bt4 -= 273.15 bt5 -= 273.15 for array in [bt3, bt4, bt5, ref1, ref2, ref3, sun_zen, sat_zen, sun_azi, sat_azi, rel_azi]: array *= 100.0 for array in [lats, lons]: array *= 1000.0 # Replace NaN with fill values for array in [ref1, ref2, ref3, bt3, bt4, bt5, sun_zen, sat_zen, sun_azi, sat_azi, rel_azi]: array[np.isnan(array)] = MISSING_DATA for array in [lats, lons]: array[np.isnan(array)] = MISSING_DATA_LATLON avhrrGAC_io(satellite_name, xutcs, startdate, enddate, starttime, endtime, lats, lons, ref1, ref2, ref3, bt3, bt4, bt5, sun_zen, sat_zen, sun_azi, sat_azi, rel_azi, qual_flags, start_line, end_line, total_number_of_scan_lines, last_scan_line_number, corr, gac_file, midnight_scanline, miss_lines, output_file_prefix, avhrr_dir, qual_dir, sunsatangles_dir) def avhrrGAC_io(satellite_name, xutcs, startdate, enddate, starttime, endtime, arrLat_full, arrLon_full, ref1, ref2, ref3, bt3, bt4, bt5, arrSZA, arrSTZ, arrSAA, arrSTA, arrRAA, qual_flags, start_line, end_line, total_number_of_scan_lines, last_scan_line_number, corr, gac_file, midnight_scanline, miss_lines, output_file_prefix, avhrr_dir, qual_dir, sunsatangles_dir): # Calculate start and end time in sec1970 t_obj = time.strptime(startdate + starttime[0:6], "%Y%m%d%H%M%S") starttime_sec1970 = calendar.timegm(t_obj) t_obj = time.strptime(enddate + endtime[0:6], "%Y%m%d%H%M%S") endtime_sec1970 = calendar.timegm(t_obj) LOG.info('Output file prefix = ' + str(output_file_prefix)) LOG.info('AVHRR data will be written to ' + str(avhrr_dir)) ofn = os.path.join(avhrr_dir, (output_file_prefix + '_avhrr_' + satellite_name + '_99999_' + startdate + 'T' + starttime + 'Z_' + enddate + 'T' + endtime + 'Z.h5')) LOG.info('Filename: ' + str(os.path.basename(ofn))) fout = h5py.File(ofn, "w") dset1 = fout.create_dataset("/image1/data", dtype='int16', data=ref1) dset2 = fout.create_dataset("/image2/data", dtype='int16', data=ref2) dset3 = fout.create_dataset("/image3/data", dtype='int16', data=bt3) dset4 = fout.create_dataset("/image4/data", dtype='int16', data=bt4) dset5 = fout.create_dataset("/image5/data", dtype='int16', data=bt5) dset6 = fout.create_dataset("/image6/data", dtype='int16', data=ref3) dset7 = fout.create_dataset("/where/lat/data", dtype='int32', data=arrLat_full) dset8 = fout.create_dataset("/where/lon/data", dtype='int32', data=arrLon_full) del dset8 channellist = [] channellist.append("channel1".encode('utf8')) channellist.append("channel2".encode('utf8')) channellist.append("channel3b".encode('utf8')) channellist.append("channel4".encode('utf8')) channellist.append("channel5".encode('utf8')) channellist.append("channel3a".encode('utf8')) dset10 = fout.create_dataset("/how/channel_list", data=channellist) del dset10 # Attributes directly on highest level groups g1 = fout.require_group("/image1") g2 = fout.require_group("/image2") g3 = fout.require_group("/image3") g4 = fout.require_group("/image4") g5 = fout.require_group("/image5") g6 = fout.require_group("/image6") g7 = fout.require_group("/where") g1.attrs["channel"] = np.string_("1") g1.attrs["description"] = np.string_("AVHRR ch1") g2.attrs["channel"] = np.string_("2") g2.attrs["description"] = np.string_("AVHRR ch2") g3.attrs["channel"] = np.string_("3b") g3.attrs["description"] = np.string_("AVHRR ch3b") g4.attrs["channel"] = np.string_("4") g4.attrs["description"] = np.string_("AVHRR ch4") g5.attrs["channel"] = np.string_("5") g5.attrs["description"] = np.string_("AVHRR ch5") g6.attrs["channel"] = np.string_("3a") g6.attrs["description"] = np.string_("AVHRR ch3a") g7.attrs["num_of_pixels"] = np.int32(arrSZA.shape[1]) g7.attrs["num_of_lines"] = np.int32(arrSZA.shape[0]) g7.attrs["xscale"] = np.float32(0.0) g7.attrs["yscale"] = np.float32(0.0) g7.attrs["start_line"] = start_line g7.attrs["end_line"] = end_line # Attributes in the 'what' groups g1 = fout.create_group("/image1/what") g2 = fout.create_group("/image2/what") g3 = fout.create_group("/image3/what") g4 = fout.create_group("/image4/what") g5 = fout.create_group("/image5/what") g6 = fout.create_group("/image6/what") g7 = fout.create_group("/where/lat/what") g8 = fout.create_group("/where/lon/what") g9 = fout.create_group("/what") g1.attrs["product"] = np.string_("SATCH") g1.attrs["quantity"] = np.string_("REFL") g1.attrs["dataset_name"] = np.string_('Channel 1 reflectance') g1.attrs["units"] = np.string_('%') g1.attrs["gain"] = np.float32(0.01) g1.attrs["offset"] = np.float32(0.0) g1.attrs["missingdata"] = np.int32(MISSING_DATA) g1.attrs["nodata"] = np.int32(MISSING_DATA) g1.attrs["starttime"] = np.string_(starttime[0:6]) g1.attrs["endtime"] = np.string_(endtime[0:6]) g1.attrs["startdate"] = np.string_(startdate) g1.attrs["enddate"] = np.string_(enddate) g2.attrs["product"] = np.string_("SATCH") g2.attrs["quantity"] = np.string_("REFL") g2.attrs["dataset_name"] = np.string_('Channel 2 reflectance') g2.attrs["units"] = np.string_('%') g2.attrs["gain"] = np.float32(0.01) g2.attrs["offset"] = np.float32(0.0) g2.attrs["missingdata"] = np.int32(MISSING_DATA) g2.attrs["nodata"] = np.int32(MISSING_DATA) g2.attrs["starttime"] = np.string_(starttime[0:6]) g2.attrs["endtime"] = np.string_(endtime[0:6]) g2.attrs["startdate"] = np.string_(startdate) g2.attrs["enddate"] = np.string_(enddate) g6.attrs["product"] = np.string_("SATCH") g6.attrs["quantity"] = np.string_("REFL") g6.attrs["dataset_name"] = np.string_('Channel 3a reflectance') g6.attrs["units"] = np.string_('%') g6.attrs["gain"] = np.float32(0.01) g6.attrs["offset"] = np.float32(0.0) g6.attrs["missingdata"] = np.int32(MISSING_DATA) g6.attrs["nodata"] = np.int32(MISSING_DATA) g6.attrs["starttime"] = np.string_(starttime[0:6]) g6.attrs["endtime"] = np.string_(endtime[0:6]) g6.attrs["startdate"] = np.string_(startdate) g6.attrs["enddate"] = np.string_(enddate) g3.attrs["product"] = np.string_("SATCH") g3.attrs["quantity"] = np.string_("TB") g3.attrs["dataset_name"] = np.string_('Channel 3b brightness temperature') g3.attrs["units"] = np.string_('K') g3.attrs["gain"] = np.float32(0.01) g3.attrs["offset"] = np.float32(273.15) g3.attrs["missingdata"] = np.int32(MISSING_DATA) g3.attrs["nodata"] = np.int32(MISSING_DATA) g3.attrs["starttime"] = np.string_(starttime[0:6]) g3.attrs["endtime"] = np.string_(endtime[0:6]) g3.attrs["startdate"] = np.string_(startdate) g3.attrs["enddate"] = np.string_(enddate) g4.attrs["product"] = np.string_("SATCH") g4.attrs["quantity"] = np.string_("TB") g4.attrs["dataset_name"] = np.string_('Channel 4 brightness temperature') g4.attrs["units"] = np.string_('K') g4.attrs["gain"] = np.float32(0.01) g4.attrs["offset"] = np.float32(273.15) g4.attrs["missingdata"] = np.int32(MISSING_DATA) g4.attrs["nodata"] = np.int32(MISSING_DATA) g4.attrs["starttime"] = np.string_(starttime[0:6]) g4.attrs["endtime"] = np.string_(endtime[0:6]) g4.attrs["startdate"] = np.string_(startdate) g4.attrs["enddate"] = np.string_(enddate) g5.attrs["product"] = np.string_("SATCH") g5.attrs["quantity"] = np.string_("TB") g5.attrs["dataset_name"] = np.string_('Channel 5 brightness temperature') g5.attrs["units"] = np.string_('K') g5.attrs["gain"] = np.float32(0.01) g5.attrs["offset"] = np.float32(273.15) g5.attrs["missingdata"] = np.int32(MISSING_DATA) g5.attrs["nodata"] = np.int32(MISSING_DATA) g5.attrs["starttime"] = np.string_(starttime[0:6]) g5.attrs["endtime"] = np.string_(endtime[0:6]) g5.attrs["startdate"] = np.string_(startdate) g5.attrs["enddate"] = np.string_(enddate) g7.attrs["dataset_name"] = np.string_('Latitude') g7.attrs["units"] = np.string_('Deg') g7.attrs["gain"] = np.float32(0.0010) g7.attrs["offset"] = np.float32(0.0) g7.attrs["missingdata"] = np.int32(MISSING_DATA_LATLON) g7.attrs["nodata"] = np.int32(MISSING_DATA_LATLON) g7.attrs["starttime"] = np.string_(starttime[0:6]) g7.attrs["endtime"] = np.string_(endtime[0:6]) g7.attrs["startdate"] = np.string_(startdate) g7.attrs["enddate"] = np.string_(enddate) g8.attrs["dataset_name"] = np.string_('Longitude') g8.attrs["units"] = np.string_('Deg') g8.attrs["gain"] = np.float32(0.0010) g8.attrs["offset"] = np.float32(0.0) g8.attrs["missingdata"] = np.int32(MISSING_DATA_LATLON) g8.attrs["nodata"] = np.int32(MISSING_DATA_LATLON) g8.attrs["starttime"] = np.string_(starttime[0:6]) g8.attrs["endtime"] = np.string_(endtime[0:6]) g8.attrs["startdate"] = np.string_(startdate) g8.attrs["enddate"] = np.string_(enddate) g9.attrs["object"] = np.string_("SATP") g9.attrs["sets"] = np.int32(len(channellist)) g9.attrs["version"] = np.string_("H5rad ?.?") g9.attrs["date"] = np.string_(startdate) g9.attrs["time"] = np.string_(starttime[0:6]) # Attributes in the 'how' groups g1 = fout.create_group("/image1/how") g2 = fout.create_group("/image2/how") g3 = fout.create_group("/image3/how") g4 = fout.create_group("/image4/how") g5 = fout.create_group("/image5/how") g6 = fout.create_group("/image6/how") g10 = fout.require_group("/how") # SHq: Is the sun_earth_distance correction applied? g1.attrs["sun_earth_distance_correction_applied"] = np.string_("TRUE") g1.attrs["sun_earth_distance_correction_factor"] = corr g2.attrs["sun_earth_distance_correction_applied"] = np.string_("TRUE") g2.attrs["sun_earth_distance_correction_factor"] = corr # No attributes on 'how' for image3,4,5 g6.attrs["sun_earth_distance_correction_applied"] = np.string_("TRUE") g6.attrs["sun_earth_distance_correction_factor"] = corr # We do not know much about how; mostly use no-data g10.attrs["yaw_error"] = 0.0 g10.attrs["roll_error"] = 0.0 g10.attrs["pitch_error"] = 0.0 g10.attrs["startepochs"] = starttime_sec1970 g10.attrs["endepochs"] = endtime_sec1970 g10.attrs["platform"] = np.string_(satellite_name) g10.attrs["instrument"] = np.string_("avhrr") g10.attrs["orbit_number"] = np.int32(99999) g10.attrs["gac_file"] = np.string_(gac_file) g10.attrs["software"] = np.string_("pyGAC") g10.attrs["version"] = np.string_("1.0") fout.close() LOG.info('Sun and Satellite viewing angles will be ' + 'written to ' + str(sunsatangles_dir)) ofn = os.path.join(sunsatangles_dir, (output_file_prefix + '_sunsatangles_' + satellite_name + '_99999_' + startdate + 'T' + starttime + 'Z_' + enddate + 'T' + endtime + 'Z.h5')) LOG.info('Filename: ' + str(os.path.basename(ofn))) fout = h5py.File(ofn, "w") dset1 = fout.create_dataset("/image1/data", dtype='int16', data=arrSZA) dset2 = fout.create_dataset("/image2/data", dtype='int16', data=arrSTZ) dset3 = fout.create_dataset("/image3/data", dtype='int16', data=arrRAA) dset4 = fout.create_dataset("/image4/data", dtype='int16', data=arrSAA) dset5 = fout.create_dataset("/image5/data", dtype='int16', data=arrSTA) dset6 = fout.create_dataset("/where/lat/data", dtype='int32', data=arrLat_full) dset7 = fout.create_dataset("/where/lon/data", dtype='int32', data=arrLon_full) del dset4, dset5, dset6, dset7 # Attributes directly on highest level groups g1 = fout.require_group("/image1") g2 = fout.require_group("/image2") g3 = fout.require_group("/image3") g4 = fout.require_group("/image4") g5 = fout.require_group("/image5") g6 = fout.require_group("/where") g1.attrs["description"] = np.string_('Solar zenith angle') g2.attrs["description"] = np.string_('Satellite zenith angle') g3.attrs["description"] = np.string_( 'Relative satellite-sun azimuth angle') g4.attrs["description"] = np.string_('Solar azimuth angle') g5.attrs["description"] = np.string_('Satellite azimuth angle') g6.attrs["num_of_pixels"] = np.int32(arrSZA.shape[1]) g6.attrs["num_of_lines"] = np.int32(arrSZA.shape[0]) g6.attrs["xscale"] = np.float32(0.0) g6.attrs["yscale"] = np.float32(0.0) g6.attrs["start_line"] = start_line g6.attrs["end_line"] = end_line # Attributes in the 'what' groups + 'how' g1 = fout.create_group("/image1/what") g2 = fout.create_group("/image2/what") g3 = fout.create_group("/image3/what") g4 = fout.create_group("/image4/what") g5 = fout.create_group("/image5/what") g6 = fout.create_group("/where/lat/what") g7 = fout.create_group("/where/lon/what") g8 = fout.create_group("/what") g9 = fout.create_group("/how") g1.attrs["product"] = np.string_("SUNZ") g1.attrs["quantity"] = np.string_("DEG") g1.attrs["dataset_name"] = np.string_('Solar zenith angle') g1.attrs["units"] = np.string_('Deg') g1.attrs["gain"] = np.float32(0.01) g1.attrs["offset"] = np.float32(0.0) g1.attrs["missingdata"] = np.int32(MISSING_DATA) g1.attrs["nodata"] = np.int32(MISSING_DATA) g1.attrs["starttime"] = np.string_(starttime[0:6]) g1.attrs["endtime"] = np.string_(endtime[0:6]) g1.attrs["startdate"] = np.string_(startdate) g1.attrs["enddate"] = np.string_(enddate) g2.attrs["product"] = np.string_("SATZ") g2.attrs["quantity"] = np.string_("DEG") g2.attrs["dataset_name"] = np.string_('Satellite zenith angle') g2.attrs["units"] = np.string_('Deg') g2.attrs["gain"] = np.float32(0.01) g2.attrs["offset"] = np.float32(0.0) g2.attrs["missingdata"] = np.int32(MISSING_DATA) g2.attrs["nodata"] = np.int32(MISSING_DATA) g2.attrs["starttime"] = np.string_(starttime[0:6]) g2.attrs["endtime"] = np.string_(endtime[0:6]) g2.attrs["startdate"] = np.string_(startdate) g2.attrs["enddate"] = np.string_(enddate) g3.attrs["product"] = np.string_("SSAZD") g3.attrs["quantity"] = np.string_("DEG") g3.attrs["dataset_name"] = np.string_( 'Relative satellite-sun azimuth angle') g3.attrs["units"] = np.string_('Deg') g3.attrs["gain"] = np.float32(0.01) g3.attrs["offset"] = np.float32(0.0) g3.attrs["missingdata"] = np.int32(MISSING_DATA) g3.attrs["nodata"] = np.int32(MISSING_DATA) g3.attrs["starttime"] = np.string_(starttime[0:6]) g3.attrs["endtime"] = np.string_(endtime[0:6]) g3.attrs["startdate"] = np.string_(startdate) g3.attrs["enddate"] = np.string_(enddate) g4.attrs["product"] = np.string_("SUNA") g4.attrs["quantity"] = np.string_("DEG") g4.attrs["dataset_name"] = np.string_('Solar azimuth angle') g4.attrs["units"] = np.string_('Deg') g4.attrs["gain"] = np.float32(0.01) g4.attrs["offset"] = np.float32(0.0) g4.attrs["missingdata"] = np.int32(MISSING_DATA) g4.attrs["nodata"] = np.int32(MISSING_DATA) g4.attrs["starttime"] = np.string_(starttime[0:6]) g4.attrs["endtime"] = np.string_(endtime[0:6]) g4.attrs["startdate"] = np.string_(startdate) g4.attrs["enddate"] = np.string_(enddate) g5.attrs["product"] = np.string_("SATA") g5.attrs["quantity"] = np.string_("DEG") g5.attrs["dataset_name"] = np.string_('Satellite azimuth angle') g5.attrs["units"] = np.string_('Deg') g5.attrs["gain"] = np.float32(0.01) g5.attrs["offset"] = np.float32(0.0) g5.attrs["missingdata"] = np.int32(MISSING_DATA) g5.attrs["nodata"] = np.int32(MISSING_DATA) g5.attrs["starttime"] = np.string_(starttime[0:6]) g5.attrs["endtime"] = np.string_(endtime[0:6]) g5.attrs["startdate"] = np.string_(startdate) g5.attrs["enddate"] = np.string_(enddate) g6.attrs["dataset_name"] = np.string_('Latitude') g6.attrs["units"] = np.string_('Deg') g6.attrs["gain"] = np.float32(0.0010) g6.attrs["offset"] = np.float32(0.0) g6.attrs["missingdata"] = np.int32(MISSING_DATA_LATLON) g6.attrs["nodata"] = np.int32(MISSING_DATA_LATLON) g6.attrs["starttime"] = np.string_(starttime[0:6]) g6.attrs["endtime"] = np.string_(endtime[0:6]) g6.attrs["startdate"] = np.string_(startdate) g6.attrs["enddate"] = np.string_(enddate) g7.attrs["dataset_name"] = np.string_('Longitude') g7.attrs["units"] = np.string_('Deg') g7.attrs["gain"] = np.float32(0.0010) g7.attrs["offset"] = np.float32(0.0) g7.attrs["missingdata"] = np.int32(MISSING_DATA_LATLON) g7.attrs["nodata"] = np.int32(MISSING_DATA_LATLON) g7.attrs["starttime"] = np.string_(starttime[0:6]) g7.attrs["endtime"] = np.string_(endtime[0:6]) g7.attrs["startdate"] = np.string_(startdate) g7.attrs["enddate"] = np.string_(enddate) g8.attrs["object"] = np.string_("SATP") g8.attrs["sets"] = np.int32(5) g8.attrs["version"] = np.string_("H5rad ?.?") g8.attrs["date"] = np.string_(startdate) g8.attrs["time"] = np.string_(starttime[0:6]) # We do not know much about how; mostly use no-data g9.attrs["yaw_error"] = 0.0 g9.attrs["roll_error"] = 0.0 g9.attrs["pitch_error"] = 0.0 g9.attrs["startepochs"] = starttime_sec1970 g9.attrs["endepochs"] = endtime_sec1970 g9.attrs["platform"] = np.string_(satellite_name) g9.attrs["instrument"] = np.string_("avhrr") g9.attrs["orbit_number"] = np.int32(99999) g9.attrs["gac_file"] = np.string_(gac_file) g9.attrs["software"] = np.string_("pyGAC") g9.attrs["version"] = np.string_("1.0") fout.close() LOG.info('Quality flags will be ' + 'written to ' + str(qual_dir)) ofn = os.path.join(qual_dir, (output_file_prefix + '_qualflags_' + satellite_name + '_99999_' + startdate + 'T' + starttime + 'Z_' + enddate + 'T' + endtime + 'Z.h5')) LOG.info('Filename: ' + str(os.path.basename(ofn))) fout = h5py.File(ofn, "w") g1 = fout.require_group("/qual_flags") dset1 = g1.create_dataset("data", dtype='int16', data=qual_flags) del dset1 g1.attrs["product"] = np.string_("QFLAG") g1.attrs["quantity"] = np.string_("INT") g1.attrs["dataset_name"] = np.string_('Scanline quality flags') g1.attrs["units"] = np.string_('None') g1.attrs["gain"] = np.int32(1) g1.attrs["offset"] = np.int32(0) g1.attrs["missingdata"] = np.int32(MISSING_DATA) g1.attrs["nodata"] = np.int32(MISSING_DATA) g1.attrs["starttime"] = np.string_(starttime[0:6]) g1.attrs["endtime"] = np.string_(endtime[0:6]) g1.attrs["startdate"] = np.string_(startdate) g1.attrs["enddate"] = np.string_(enddate) g1.attrs["gac_file"] = np.string_(gac_file) g1.attrs["total_number_of_data_records"] = total_number_of_scan_lines g1.attrs["last_scan_line_number"] = last_scan_line_number g2 = fout.require_group("/ancillary") dset2 = g2.create_dataset("missing_scanlines", dtype='int16', data=miss_lines) del dset2 dset3 = g2.create_dataset("scanline_timestamps", dtype='int64', data=xutcs.astype('int64')) dset3.attrs['units'] = 'Milliseconds since 1970-01-01 00:00:00 UTC' dset3.attrs['calendar'] = 'standard' g2.attrs["midnight_scanline"] = np.string_(midnight_scanline) fout.close() pygac-1.7.2/pygac/gac_io.py_old000066400000000000000000000452041444627033600163760ustar00rootroot00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (c) 2012, 2014 Abhay Devasthale # Author(s): # Abhay Devasthale # Adam Dybbroe # Sara Hornquist # Martin Raspaud # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . import h5py import numpy as np import time import calendar import logging LOG = logging.getLogger(__name__) import ConfigParser import os try: CONFIG_FILE = os.environ['PYGAC_CONFIG_FILE'] except KeyError: LOG.exception('Environment variable PYGAC_CONFIG_FILE not set!') raise if not os.path.exists(CONFIG_FILE) or not os.path.isfile(CONFIG_FILE): raise IOError(str(CONFIG_FILE) + " pointed to by the environment " + "variable PYGAC_CONFIG_FILE is not a file or does not exist!") conf = ConfigParser.ConfigParser() try: conf.read(CONFIG_FILE) except ConfigParser.NoSectionError: LOG.exception('Failed reading configuration file: ' + str(CONFIG_FILE)) raise options = {} for option, value in conf.items('output', raw=True): options[option] = value OUTDIR = options['output_dir'] OUTPUT_FILE_PREFIX = options['output_file_prefix'] SUNSATANGLES_DIR = os.environ.get('SM_SUNSATANGLES_DIR', OUTDIR) AVHRR_DIR = os.environ.get('SM_AVHRR_DIR', OUTDIR) QUAL_DIR = os.environ.get('SM_AVHRR_DIR', OUTDIR) MISSING_DATA = -32001 def save_gac(satellite_name, start, end, lats, lons, ref1, ref2, ref3, bt3, bt4, bt5, sun_zen, sat_zen, sun_azi, sat_azi, rel_azi, mask, qual_flags, switch=None): bt3 -= 273.15 bt4 -= 273.15 bt5 -= 273.15 sat_azi -= 180.0 rel_azi = abs(rel_azi) rel_azi = 180.0 - rel_azi for array in [ref1, ref2, ref3, bt3, bt4, bt5, sun_zen, sat_zen, sun_azi, sat_azi, rel_azi]: array *= 100 for array in [lats, lons, ref1, ref2, ref3, bt3, bt4, bt5, sun_zen, sat_zen, sun_azi, sat_azi, rel_azi]: array[mask] = MISSING_DATA for ref in [ref1, ref2, ref3]: ref[ref < 0] = MISSING_DATA if switch is not None: ref3[switch == 0] = MISSING_DATA bt3[switch == 1] = MISSING_DATA startdate = start.strftime("%Y%m%d") starttime = start.strftime("%H%M%S%f")[:-5] enddate = end.strftime("%Y%m%d") endtime = end.strftime("%H%M%S%f")[:-5] avhrrGAC_io(satellite_name, startdate, enddate, starttime, endtime, lats, lons, ref1, ref2, ref3, bt3, bt4, bt5, sun_zen, sat_zen, sun_azi, sat_azi, rel_azi, qual_flags) def avhrrGAC_io(satellite_name, startdate, enddate, starttime, endtime, arrLat_full, arrLon_full, ref1, ref2, ref3, bt3, bt4, bt5, arrSZA, arrSTZ, arrSAA, arrSTA, arrRAA, qual_flags): import os # Calculate start and end time in sec1970 t_obj = time.strptime(startdate + starttime[0:6], "%Y%m%d%H%M%S") starttime_sec1970 = calendar.timegm(t_obj) t_obj = time.strptime(enddate + endtime[0:6], "%Y%m%d%H%M%S") endtime_sec1970 = calendar.timegm(t_obj) LOG.info('Output file prefix = ' + str(OUTPUT_FILE_PREFIX)) LOG.info('AVHRR data will be written to ' + str(AVHRR_DIR)) ofn = os.path.join(AVHRR_DIR, (OUTPUT_FILE_PREFIX + '_avhrr_' + satellite_name + '_99999_' + startdate + 'T' + starttime + 'Z_' + enddate + 'T' + endtime + 'Z.h5')) LOG.info('Filename: ' + str(os.path.basename(ofn))) fout = h5py.File(ofn, "w") dset1 = fout.create_dataset("/image1/data", dtype='int16', data=ref1) dset2 = fout.create_dataset("/image2/data", dtype='int16', data=ref2) dset3 = fout.create_dataset("/image3/data", dtype='int16', data=bt3) dset4 = fout.create_dataset("/image4/data", dtype='int16', data=bt4) dset5 = fout.create_dataset("/image5/data", dtype='int16', data=bt5) dset6 = fout.create_dataset("/image6/data", dtype='int16', data=ref3) dset7 = fout.create_dataset("/where/lat/data", dtype='int32', data=arrLat_full) dset8 = fout.create_dataset("/where/lon/data", dtype='int32', data=arrLon_full) channellist = [] channellist.append("channel1") channellist.append("channel2") channellist.append("channel3b") channellist.append("channel4") channellist.append("channel5") channellist.append("channel3a") dset10 = fout.create_dataset("/how/channel_list", data=channellist) # Attributes directly on highest level groups g1 = fout.require_group("/image1") g2 = fout.require_group("/image2") g3 = fout.require_group("/image3") g4 = fout.require_group("/image4") g5 = fout.require_group("/image5") g6 = fout.require_group("/image6") g7 = fout.require_group("/where") g1.attrs["channel"] = "1" g1.attrs["description"] = "AVHRR ch1" g2.attrs["channel"] = "2" g2.attrs["description"] = "AVHRR ch2" g3.attrs["channel"] = "3b" g3.attrs["description"] = "AVHRR ch3b" g4.attrs["channel"] = "4" g4.attrs["description"] = "AVHRR ch4" g5.attrs["channel"] = "5" g5.attrs["description"] = "AVHRR ch5" g6.attrs["channel"] = "3a" g6.attrs["description"] = "AVHRR ch3a" g7.attrs["num_of_pixels"] = np.int32(arrSZA.shape[1]) g7.attrs["num_of_lines"] = np.int32(arrSZA.shape[0]) g7.attrs["xscale"] = np.float32(0.0) # PPS says 1100.0, is that really g7.attrs["yscale"] = np.float32(0.0) # true for GAC? /SHq # Attributes in the 'what' groups g1 = fout.create_group("/image1/what") g2 = fout.create_group("/image2/what") g3 = fout.create_group("/image3/what") g4 = fout.create_group("/image4/what") g5 = fout.create_group("/image5/what") g6 = fout.create_group("/image6/what") g7 = fout.create_group("/where/lat/what") g8 = fout.create_group("/where/lon/what") g9 = fout.create_group("/what") g1.attrs["product"] = "SATCH" g1.attrs["quantity"] = "REFL" g1.attrs["dataset_name"] = 'Channel 1 reflectance' g1.attrs["units"] = '%' g1.attrs["gain"] = np.float32(0.01) g1.attrs["offset"] = np.float32(0.0) g1.attrs["missingdata"] = np.int32(-32001) g1.attrs["nodata"] = np.int32(-32001) g1.attrs["starttime"] = starttime[0:6] g1.attrs["endtime"] = endtime[0:6] g1.attrs["startdate"] = startdate g1.attrs["enddate"] = enddate g2.attrs["product"] = "SATCH" g2.attrs["quantity"] = "REFL" g2.attrs["dataset_name"] = 'Channel 2 reflectance' g2.attrs["units"] = '%' g2.attrs["gain"] = np.float32(0.01) g2.attrs["offset"] = np.float32(0.0) g2.attrs["missingdata"] = np.int32(-32001) g2.attrs["nodata"] = np.int32(-32001) g2.attrs["starttime"] = starttime[0:6] g2.attrs["endtime"] = endtime[0:6] g2.attrs["startdate"] = startdate g2.attrs["enddate"] = enddate g6.attrs["product"] = "SATCH" g6.attrs["quantity"] = "REFL" g6.attrs["dataset_name"] = 'Channel 3a reflectance' g6.attrs["units"] = '%' g6.attrs["gain"] = np.float32(0.01) g6.attrs["offset"] = np.float32(0.0) g6.attrs["missingdata"] = np.int32(-32001) g6.attrs["nodata"] = np.int32(-32001) g6.attrs["starttime"] = starttime[0:6] g6.attrs["endtime"] = endtime[0:6] g6.attrs["startdate"] = startdate g6.attrs["enddate"] = enddate g3.attrs["product"] = "SATCH" g3.attrs["quantity"] = "TB" g3.attrs["dataset_name"] = 'Channel 3b brightness temperature' g3.attrs["units"] = 'K' g3.attrs["gain"] = np.float32(0.01) g3.attrs["offset"] = np.float32(273.15) g3.attrs["missingdata"] = np.int32(-32001) g3.attrs["nodata"] = np.int32(-32001) g3.attrs["starttime"] = starttime[0:6] g3.attrs["endtime"] = endtime[0:6] g3.attrs["startdate"] = startdate g3.attrs["enddate"] = enddate g4.attrs["product"] = "SATCH" g4.attrs["quantity"] = "TB" g4.attrs["dataset_name"] = 'Channel 4 brightness temperature' g4.attrs["units"] = 'K' g4.attrs["gain"] = np.float32(0.01) g4.attrs["offset"] = np.float32(273.15) g4.attrs["missingdata"] = np.int32(-32001) g4.attrs["nodata"] = np.int32(-32001) g4.attrs["starttime"] = starttime[0:6] g4.attrs["endtime"] = endtime[0:6] g4.attrs["startdate"] = startdate g4.attrs["enddate"] = enddate g5.attrs["product"] = "SATCH" g5.attrs["quantity"] = "TB" g5.attrs["dataset_name"] = 'Channel 5 brightness temperature' g5.attrs["units"] = 'K' g5.attrs["gain"] = np.float32(0.01) g5.attrs["offset"] = np.float32(273.15) g5.attrs["missingdata"] = np.int32(-32001) g5.attrs["nodata"] = np.int32(-32001) g5.attrs["starttime"] = starttime[0:6] g5.attrs["endtime"] = endtime[0:6] g5.attrs["startdate"] = startdate g5.attrs["enddate"] = enddate g7.attrs["dataset_name"] = 'Latitude' g7.attrs["units"] = 'Deg' g7.attrs["gain"] = np.float32(0.010) g7.attrs["offset"] = np.float32(0.0) g7.attrs["missingdata"] = np.int32(-32001) g7.attrs["nodata"] = np.int32(-32001) g7.attrs["starttime"] = starttime[0:6] g7.attrs["endtime"] = endtime[0:6] g7.attrs["startdate"] = startdate g7.attrs["enddate"] = enddate g8.attrs["dataset_name"] = 'Longitude' g8.attrs["units"] = 'Deg' g8.attrs["gain"] = np.float32(0.010) g8.attrs["offset"] = np.float32(0.0) g8.attrs["missingdata"] = np.int32(-32001) g8.attrs["nodata"] = np.int32(-32001) g8.attrs["starttime"] = starttime[0:6] g8.attrs["endtime"] = endtime[0:6] g8.attrs["startdate"] = startdate g8.attrs["enddate"] = enddate g9.attrs["object"] = "SATP" g9.attrs["sets"] = np.int32(len(channellist)) g9.attrs["version"] = "H5rad ?.?" g9.attrs["date"] = startdate g9.attrs["time"] = starttime[0:6] # Attributes in the 'how' groups g1 = fout.create_group("/image1/how") g2 = fout.create_group("/image2/how") g3 = fout.create_group("/image3/how") g4 = fout.create_group("/image4/how") g5 = fout.create_group("/image5/how") g6 = fout.create_group("/image6/how") g10 = fout.require_group("/how") # SHq: Is the sun_earth_distance correction applied? g1.attrs["sun_earth_distance_correction_applied"] = "TRUE" g1.attrs["sun_earth_distance_correction_factor"] = np.int32(1.0) g2.attrs["sun_earth_distance_correction_applied"] = "TRUE" g2.attrs["sun_earth_distance_correction_factor"] = np.int32(1.0) # No attributes on 'how' for image3,4,5 g6.attrs["sun_earth_distance_correction_applied"] = "TRUE" g6.attrs["sun_earth_distance_correction_factor"] = np.int32(1.0) # We do not know much about how; mostly use no-data g10.attrs["yaw_error"] = 0.0 g10.attrs["roll_error"] = 0.0 g10.attrs["pich_error"] = 0.0 g10.attrs["startepochs"] = starttime_sec1970 g10.attrs["endepochs"] = endtime_sec1970 g10.attrs["platform"] = satellite_name g10.attrs["instrument"] = "avhrr" g10.attrs["orbit_number"] = np.int32(99999) g10.attrs["software"] = "pyGAC" g10.attrs["version"] = "1.0" fout.close() LOG.info('Sun and Satellite viewing angles will be ' + 'written to ' + str(SUNSATANGLES_DIR)) ofn = os.path.join(SUNSATANGLES_DIR, (OUTPUT_FILE_PREFIX + '_sunsatangles_' + satellite_name + '_99999_' + startdate + 'T' + starttime + 'Z_' + enddate + 'T' + endtime + 'Z.h5')) LOG.info('Filename: ' + str(os.path.basename(ofn))) fout = h5py.File(ofn, "w") dset1 = fout.create_dataset("/image1/data", dtype='int16', data=arrSZA) dset2 = fout.create_dataset("/image2/data", dtype='int16', data=arrSTZ) dset3 = fout.create_dataset("/image3/data", dtype='int16', data=arrRAA) dset4 = fout.create_dataset("/image4/data", dtype='int16', data=arrSAA) dset5 = fout.create_dataset("/image5/data", dtype='int16', data=arrSTA) dset6 = fout.create_dataset("/where/lat/data", dtype='int32', data=arrLat_full) dset7 = fout.create_dataset("/where/lon/data", dtype='int32', data=arrLon_full) # Attributes directly on highest level groups g1 = fout.require_group("/image1") g2 = fout.require_group("/image2") g3 = fout.require_group("/image3") g4 = fout.require_group("/image4") g5 = fout.require_group("/image5") g6 = fout.require_group("/where") g1.attrs["description"] = 'Solar zenith angle' g2.attrs["description"] = 'Satellite zenith angle' g3.attrs["description"] = 'Relative satellite-sun azimuth angle' g4.attrs["description"] = 'Solar azimuth angle' g5.attrs["description"] = 'Satellite azimuth angle' g6.attrs["num_of_pixels"] = np.int32(arrSZA.shape[1]) g6.attrs["num_of_lines"] = np.int32(arrSZA.shape[0]) g6.attrs["xscale"] = np.float32(0.0) # PPS says 1100.0, is that really g6.attrs["yscale"] = np.float32(0.0) # true for GAC? /SHq # Attributes in the 'what' groups + 'how' g1 = fout.create_group("/image1/what") g2 = fout.create_group("/image2/what") g3 = fout.create_group("/image3/what") g4 = fout.create_group("/image4/what") g5 = fout.create_group("/image5/what") g6 = fout.create_group("/where/lat/what") g7 = fout.create_group("/where/lon/what") g8 = fout.create_group("/what") g9 = fout.create_group("/how") g1.attrs["product"] = "SUNZ" g1.attrs["quantity"] = "DEG" g1.attrs["dataset_name"] = 'Solar zenith angle' g1.attrs["units"] = 'Deg' g1.attrs["gain"] = np.float32(0.01) g1.attrs["offset"] = np.float32(0.0) g1.attrs["missingdata"] = np.int32(-32001) g1.attrs["nodata"] = np.int32(-32001) g1.attrs["starttime"] = starttime[0:6] g1.attrs["endtime"] = endtime[0:6] g1.attrs["startdate"] = startdate g1.attrs["enddate"] = enddate g2.attrs["product"] = "SATZ" g2.attrs["quantity"] = "DEG" g2.attrs["dataset_name"] = 'Satellite zenith angle' g2.attrs["units"] = 'Deg' g2.attrs["gain"] = np.float32(0.01) g2.attrs["offset"] = np.float32(0.0) g2.attrs["missingdata"] = np.int32(-32001) g2.attrs["nodata"] = np.int32(-32001) g2.attrs["starttime"] = starttime[0:6] g2.attrs["endtime"] = endtime[0:6] g2.attrs["startdate"] = startdate g2.attrs["enddate"] = enddate g3.attrs["product"] = "SSAZD" g3.attrs["quantity"] = "DEG" g3.attrs["dataset_name"] = 'Relative satellite-sun azimuth angle' g3.attrs["units"] = 'Deg' g3.attrs["gain"] = np.float32(0.01) g3.attrs["offset"] = np.float32(0.0) g3.attrs["missingdata"] = np.int32(-32001) g3.attrs["nodata"] = np.int32(-32001) g3.attrs["starttime"] = starttime[0:6] g3.attrs["endtime"] = endtime[0:6] g3.attrs["startdate"] = startdate g3.attrs["enddate"] = enddate g4.attrs["product"] = "SUNA" g4.attrs["quantity"] = "DEG" g4.attrs["dataset_name"] = 'Solar azimuth angle' g4.attrs["units"] = 'Deg' g4.attrs["gain"] = np.float32(0.01) g4.attrs["offset"] = np.float32(180.0) g4.attrs["missingdata"] = np.int32(-32001) g4.attrs["nodata"] = np.int32(-32001) g4.attrs["starttime"] = starttime[0:6] g4.attrs["endtime"] = endtime[0:6] g4.attrs["startdate"] = startdate g4.attrs["enddate"] = enddate g5.attrs["product"] = "SATA" g5.attrs["quantity"] = "DEG" g5.attrs["dataset_name"] = 'Satellite azimuth angle' g5.attrs["units"] = 'Deg' g5.attrs["gain"] = np.float32(0.01) g5.attrs["offset"] = np.float32(180.0) g5.attrs["missingdata"] = np.int32(-32001) g5.attrs["nodata"] = np.int32(-32001) g5.attrs["starttime"] = starttime[0:6] g5.attrs["endtime"] = endtime[0:6] g5.attrs["startdate"] = startdate g5.attrs["enddate"] = enddate g6.attrs["dataset_name"] = 'Latitude' g6.attrs["units"] = 'Deg' g6.attrs["gain"] = np.float32(0.010) g6.attrs["offset"] = np.float32(0.0) g6.attrs["missingdata"] = np.int32(-32001) g6.attrs["nodata"] = np.int32(-32001) g6.attrs["starttime"] = starttime[0:6] g6.attrs["endtime"] = endtime[0:6] g6.attrs["startdate"] = startdate g6.attrs["enddate"] = enddate g7.attrs["dataset_name"] = 'Longitude' g7.attrs["units"] = 'Deg' g7.attrs["gain"] = np.float32(0.010) g7.attrs["offset"] = np.float32(0.0) g7.attrs["missingdata"] = np.int32(-32001) g7.attrs["nodata"] = np.int32(-32001) g7.attrs["starttime"] = starttime[0:6] g7.attrs["endtime"] = endtime[0:6] g7.attrs["startdate"] = startdate g7.attrs["enddate"] = enddate g8.attrs["object"] = "SATP" g8.attrs["sets"] = np.int32(5) g8.attrs["version"] = "H5rad ?.?" g8.attrs["date"] = startdate g8.attrs["time"] = starttime[0:6] # We do not know much about how; mostly use no-data g9.attrs["yaw_error"] = 0.0 g9.attrs["roll_error"] = 0.0 g9.attrs["pich_error"] = 0.0 g9.attrs["startepochs"] = starttime_sec1970 g9.attrs["endepochs"] = endtime_sec1970 g9.attrs["platform"] = satellite_name g9.attrs["instrument"] = "avhrr" g9.attrs["orbit_number"] = np.int32(99999) g9.attrs["software"] = "pyGAC" g9.attrs["version"] = "1.0" fout.close() LOG.info('Quality flags will be ' + 'written to ' + str(QUAL_DIR)) ofn = os.path.join(QUAL_DIR, (OUTPUT_FILE_PREFIX + '_qualflags_' + satellite_name + '_99999_' + startdate + 'T' + starttime + 'Z_' + enddate + 'T' + endtime + 'Z.h5')) LOG.info('Filename: ' + str(os.path.basename(ofn))) fout = h5py.File(ofn, "w") dset1 = fout.create_dataset("/qual_flags/data", dtype='int8', data=qual_flags) g1 = fout.require_group("/qual_flags") g1.attrs["product"] = "QFLAG" g1.attrs["quantity"] = "INT" g1.attrs["dataset_name"] = 'Scanline quality flags' g1.attrs["units"] = 'None' g1.attrs["gain"] = np.int32(1) g1.attrs["offset"] = np.int32(0) g1.attrs["missingdata"] = np.int32(-32001) g1.attrs["nodata"] = np.int32(-32001) g1.attrs["starttime"] = starttime[0:6] g1.attrs["endtime"] = endtime[0:6] g1.attrs["startdate"] = startdate g1.attrs["enddate"] = enddate fout.close() pygac-1.7.2/pygac/gac_klm.py000066400000000000000000000244411444627033600157140ustar00rootroot00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (c) 2014 Abhay Devasthale and Martin Raspaud # Author(s): # Abhay Devasthale # Martin Raspaud # Adam Dybbroe # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . """Reader for GAC KLM data.""" from __future__ import print_function import logging import numpy as np from pygac.gac_reader import GACReader from pygac.klm_reader import KLMReader, main_klm LOG = logging.getLogger(__name__) # video data object scanline = np.dtype([("scan_line_number", ">u2"), ("scan_line_year", ">u2"), ("scan_line_day_of_year", ">u2"), ("satellite_clock_drift_delta", ">i2"), ("scan_line_utc_time_of_day", ">u4"), ("scan_line_bit_field", ">u2"), ("zero_fill0", ">i2", (5, )), # QUALITY INDICATORS ("quality_indicator_bit_field", ">u4"), ("scan_line_quality_flags", [("reserved", ">u1"), ("time_problem_code", ">u1"), ("calibration_problem_code", ">u1"), ("earth_location_problem_code", ">u1")]), ("calibration_quality_flags", ">u2", (3, )), ("count_of_bit_errors_in_frame_sync", ">u2"), ("zero_fill1", ">i4", (2, )), # CALIBRATION COEFFICIENTS ("visible_operational_cal_ch_1_slope_1", ">i4"), ("visible_operational_cal_ch_1_intercept_1", ">i4"), ("visible_operational_cal_ch_1_slope_2", ">i4"), ("visible_operational_cal_ch_1_intercept_2", ">i4"), ("visible_operational_cal_ch_1_intersection", ">i4"), ("visible_test_cal_ch_1_slope_1", ">i4"), ("visible_test_cal_ch_1_intercept_1", ">i4"), ("visible_test_cal_ch_1_slope_2", ">i4"), ("visible_test_cal_ch_1_intercept_2", ">i4"), ("visible_test_cal_ch_1_intersection", ">i4"), ("visible_prelaunch_cal_ch_1_slope_1", ">i4"), ("visible_prelaunch_cal_ch_1_intercept_1", ">i4"), ("visible_prelaunch_cal_ch_1_slope_2", ">i4"), ("visible_prelaunch_cal_ch_1_intercept_2", ">i4"), ("visible_prelaunch_cal_ch_1_intersection", ">i4"), ("visible_operational_cal_ch_2_slope_1", ">i4"), ("visible_operational_cal_ch_2_intercept_1", ">i4"), ("visible_operational_cal_ch_2_slope_2", ">i4"), ("visible_operational_cal_ch_2_intercept_2", ">i4"), ("visible_operational_cal_ch_2_intersection", ">i4"), ("visible_test_cal_ch_2_slope_1", ">i4"), ("visible_test_cal_ch_2_intercept_1", ">i4"), ("visible_test_cal_ch_2_slope_2", ">i4"), ("visible_test_cal_ch_2_intercept_2", ">i4"), ("visible_test_cal_ch_2_intersection", ">i4"), ("visible_prelaunch_cal_ch_2_slope_1", ">i4"), ("visible_prelaunch_cal_ch_2_intercept_1", ">i4"), ("visible_prelaunch_cal_ch_2_slope_2", ">i4"), ("visible_prelaunch_cal_ch_2_intercept_2", ">i4"), ("visible_prelaunch_cal_ch_2_intersection", ">i4"), ("visible_operational_cal_ch_3a_slope_1", ">i4"), ("visible_operational_cal_ch_3a_intercept_1", ">i4"), ("visible_operational_cal_ch_3a_slope_2", ">i4"), ("visible_operational_cal_ch_3a_intercept_2", ">i4"), ("visible_operational_cal_ch_3a_intersection", ">i4"), ("visible_test_cal_ch_3a_slope_1", ">i4"), ("visible_test_cal_ch_3a_intercept_1", ">i4"), ("visible_test_cal_ch_3a_slope_2", ">i4"), ("visible_test_cal_ch_3a_intercept_2", ">i4"), ("visible_test_cal_ch_3a_intersection", ">i4"), ("visible_prelaunch_cal_ch_3a_slope_1", ">i4"), ("visible_prelaunch_cal_ch_3a_intercept_1", ">i4"), ("visible_prelaunch_cal_ch_3a_slope_2", ">i4"), ("visible_prelaunch_cal_ch_3a_intercept_2", ">i4"), ("visible_prelaunch_cal_ch_3a_intersection", ">i4"), ("ir_operational_cal_ch_3b_coefficient_1", ">i4"), ("ir_operational_cal_ch_3b_coefficient_2", ">i4"), ("ir_operational_cal_ch_3b_coefficient_3", ">i4"), ("ir_test_cal_ch_3b_coefficient_1", ">i4"), ("ir_test_cal_ch_3b_coefficient_2", ">i4"), ("ir_test_cal_ch_3b_coefficient_3", ">i4"), ("ir_operational_cal_ch_4_coefficient_1", ">i4"), ("ir_operational_cal_ch_4_coefficient_2", ">i4"), ("ir_operational_cal_ch_4_coefficient_3", ">i4"), ("ir_test_cal_ch_4_coefficient_1", ">i4"), ("ir_test_cal_ch_4_coefficient_2", ">i4"), ("ir_test_cal_ch_4_coefficient_3", ">i4"), ("ir_operational_cal_ch_5_coefficient_1", ">i4"), ("ir_operational_cal_ch_5_coefficient_2", ">i4"), ("ir_operational_cal_ch_5_coefficient_3", ">i4"), ("ir_test_cal_ch_5_coefficient_1", ">i4"), ("ir_test_cal_ch_5_coefficient_2", ">i4"), ("ir_test_cal_ch_5_coefficient_3", ">i4"), # NAVIGATION ("computed_yaw_steering", ">i2", (3,)), # only in version 5 ("total_applied_attitude_correction", ">i2", (3,)), # only in version 5 ("navigation_status_bit_field", ">u4"), ("time_associated_with_tip_euler_angles", ">u4"), ("tip_euler_angles", ">i2", (3, )), ("spacecraft_altitude_above_reference_ellipsoid", ">u2"), ("angular_relationships", ">i2", (153, )), ("zero_fill3", ">i2", (3, )), ("earth_location", ">i4", (102, )), ("zero_fill4", ">i4", (2, )), # HRPT MINOR FRAME TELEMETRY ("frame_sync", ">u2", (6, )), ("id", ">u2", (2, )), ("time_code", ">u2", (4, )), ('telemetry', [("ramp_calibration", '>u2', (5, )), ("PRT", '>u2', (3, )), ("ch3_patch_temp", '>u2'), ("spare", '>u2'), ]), ("back_scan", ">u2", (30, )), ("space_data", ">u2", (50, )), ("sync_delta", ">u2"), ("zero_fill5", ">i2"), # AVHRR SENSOR DATA ("sensor_data", ">u4", (682, )), ("zero_fill6", ">i4", (2, )), # DIGITAL B TELEMETRY ("invalid_word_bit_flags1", ">u2"), ("avhrr_digital_b_data", ">u2"), ("zero_fill7", ">i4", (3, )), # ANALOG HOUSEKEEPING DATA (TIP) ("invalid_word_bit_flags2", ">u4"), ("patch_temperature_range", ">u1"), ("patch_temperature_extended", ">u1"), ("patch_power", ">u1"), ("radiator_temperature", ">u1"), ("blackbody_temperature_1", ">u1"), ("blackbody_temperature_2", ">u1"), ("blackbody_temperature_3", ">u1"), ("blackbody_temperature_4", ">u1"), ("electronics_current", ">u1"), ("motor_current", ">u1"), ("earth_shield_position", ">u1"), ("electronics_temperature", ">u1"), ("cooler_housing_temperature", ">u1"), ("baseplate_temperature", ">u1"), ("motor_housing_temperature", ">u1"), ("a/d_converter_temperature", ">u1"), ("detector_#4_bias_voltage", ">u1"), ("detector_#5_bias_voltage", ">u1"), ("blackbody_temperature_channel3b", ">u1"), ("blackbody_temperature_channel4", ">u1"), ("blackbody_temperature_channel5", ">u1"), ("reference_voltage", ">u1"), ("zero_fill8", ">i2", (3, )), # CLOUDS FROM AVHRR (CLAVR) ("reserved0", ">u4"), ("reserved1", ">u4"), ("reserved2", ">u2", (52, )), # FILLER ("zero_fill9", ">i4", (112, ))]) class GACKLMReader(GACReader, KLMReader): """The GAC KLM reader class. The offset attribute tells where in the file the scanline data starts. """ def __init__(self, *args, **kwargs): """Init the GAC KLM reader.""" GACReader.__init__(self, *args, **kwargs) self.scanline_type = scanline self.offset = 4608 def main(filename, start_line, end_line): """Generate a l1c file.""" return main_klm(GACKLMReader, filename, start_line, end_line) if __name__ == "__main__": import sys main(sys.argv[1], sys.argv[2], sys.argv[3]) pygac-1.7.2/pygac/gac_pod.py000066400000000000000000000050771444627033600157170ustar00rootroot00000000000000#!/usr/bin/python # Copyright (c) 2014-2016. # # Author(s): # Abhay Devasthale # Adam Dybbroe # Sajid Pareeth # Martin Raspaud # This work was done in the framework of ESA-CCI-Clouds phase I # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . """Reader for GAC POD data.""" import logging import numpy as np from pygac.pod_reader import PODReader, main_pod from pygac.gac_reader import GACReader LOG = logging.getLogger(__name__) scanline = np.dtype([("scan_line_number", ">i2"), ("time_code", ">u2", (3, )), ("quality_indicators", ">u4"), ("calibration_coefficients", ">i4", (10, )), ("number_of_meaningful_zenith_angles_and_earth_location_appended", ">u1"), ("solar_zenith_angles", "i1", (51, )), ("earth_location", ">i2", (102, )), ("telemetry", ">u4", (35, )), ("sensor_data", ">u4", (682, )), ("add_on_zenith", ">u2", (10, )), ("clock_drift_delta", ">u2"), ("spare3", "u2", (11, ))]) class GACPODReader(GACReader, PODReader): """The GAC POD reader class. The `scan_points` attributes provides the position of the longitude and latitude points to compute relative to the full swath width. The offset attribute tells where in the file the scanline data starts. """ def __init__(self, *args, **kwargs): """Init the GAC POD reader.""" GACReader.__init__(self, *args, **kwargs) self.scanline_type = scanline self.offset = 3220 self.scan_points = np.arange(3.5, 2048, 5) def main(filename, start_line, end_line): """Generate a l1c file.""" return main_pod(GACPODReader, filename, start_line, end_line) if __name__ == "__main__": import sys main(sys.argv[1], sys.argv[2], sys.argv[3]) pygac-1.7.2/pygac/gac_reader.py000066400000000000000000000040251444627033600163670ustar00rootroot00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (c) 2014, 2015 Martin Raspaud # Author(s): # Martin Raspaud # Carlos Horn # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . """Generic reader for GAC data. Can't be used as is, has to be subclassed to add specific read functions. """ import logging from pygac.reader import Reader, ReaderError import pygac.pygac_geotiepoints as gtp LOG = logging.getLogger(__name__) class GACReader(Reader): """Reader for GAC data.""" # Scanning frequency (scanlines per millisecond) scan_freq = 2.0 / 1000.0 # Max scanlines max_scanlines = 15000 def __init__(self, *args, **kwargs): """Init the GAC reader.""" super(GACReader, self).__init__(*args, **kwargs) self.scan_width = 409 self.lonlat_interpolator = gtp.gac_lat_lon_interpolator @classmethod def _validate_header(cls, header): """Check if the header belongs to this reader.""" # call super to enter the Method Resolution Order (MRO) super(GACReader, cls)._validate_header(header) LOG.debug("validate header") data_set_name = header['data_set_name'].decode() # split header into parts creation_site, transfer_mode, platform_id = ( data_set_name.split('.')[:3]) if transfer_mode != 'GHRR': raise ReaderError('Improper transfer mode "%s"!' % transfer_mode) pygac-1.7.2/pygac/investigate_bts1.m000066400000000000000000000013411444627033600173700ustar00rootroot00000000000000clear all; close all; fn='temp1.h5'; prt=hdf5read(fn,'prt'); iprt=hdf5read(fn,'iprt'); lines=hdf5read(fn,'lines'); counts=hdf5read(fn,'counts'); space=hdf5read(fn,'space'); nlin=hdf5read(fn,'nlin'); ncor=hdf5read(fn,'ncor'); tse=hdf5read(fn,'tse'); hold on; i=find(iprt==1); plot(lines(i),prt(i),'r-'); i=find(iprt==2); plot(lines(i),prt(i),'g-'); i=find(iprt==3); plot(lines(i),prt(i),'b-'); i=find(iprt==4); plot(lines(i),prt(i),'k-'); plot(lines(1:length(lines)-1),diff(lines)+230,'c-'); i=find(iprt==0); plot(lines(i),prt(i)+250,'m-'); figure; subplot(4,1,1); imagesc(counts-space); colorbar; subplot(4,1,2); imagesc(nlin); colorbar; subplot(4,1,3); imagesc(ncor); colorbar; subplot(4,1,4); imagesc(tse); colorbar; pygac-1.7.2/pygac/klm_reader.py000066400000000000000000001363031444627033600164250ustar00rootroot00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (c) 2014-2019 # Author(s): # Abhay Devasthale # Sajid Pareeth # Martin Raspaud # Adam Dybbroe # Carlos Horn # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . """Read KLM data. Reads L1b GAC/LAC data from KLM series of satellites (NOAA-15 and later). Format specification can be found in section 8 of the `KLM user guide`_. .. _KLM user guide: https://www.ncei.noaa.gov/pub/data/satellite/publications/podguides/N-15%20thru%20N-19/ """ import datetime import logging try: from enum import IntFlag except ImportError: # python version < 3.6, use a simple object without nice representation IntFlag = object import numpy as np from pygac.correct_tsm_issue import TSM_AFFECTED_INTERVALS_KLM, get_tsm_idx from pygac.reader import Reader, ReaderError from pygac.utils import file_opener LOG = logging.getLogger(__name__) class KLM_QualityIndicator(IntFlag): """Quality Indicators. Source: KLM guide - Table 8.3.1.3.3.1-1. Format of packed LAC/HRPT Data Sets (Version 2, pre-April 28, 2005). - Table 8.3.1.3.3.2-1. Format of LAC/HRPT Data Record for NOAA-N (Version 5, post-November 14, 2006, all spacecraft). - Table 8.3.1.4.3.1-1. Format of packed GAC Data Record for NOAA KLM (Version 2, pre-April 28, 2005). - Table 8.3.1.4.3.2-1. Format of GAC Data Record for NOAA-N (Version 4, post-January 25, 2006, all spacecraft). Notes: - Table 8.3.1.3.3.1-1. and Table 8.3.1.4.3.1-1. define bit: 21 as "frame sync word not valid" - Table 8.3.1.3.3.2-1. and Table 8.3.1.4.3.2-1. define bit: 21 as "flywheeling detected during this frame" """ FATAL_FLAG = 2**31 # Data should not be used for product generation TIME_ERROR = 2**30 # Time sequence error detected within this scan DATA_GAP = 2**29 # Data gap precedes this scan CALIBRATION = 2**28 # Insufficient data for calibration NO_EARTH_LOCATION = 2**27 # Earth location data not available CLOCK_UPDATE = 2**26 # First good time following a clock update (nominally 0) INSTRUMENT_CHANGE = 2**25 # Instrument status changed with this scan BIT_SYNC_STATUS = 2**24 # Sync lock dropped during this frame SYNC_ERROR = 2**23 # Frame sync word error greater than zero FRAME_SYNC_LOCK = 2**22 # Frame sync previously dropped lock SYNC_INVALID = 2**21 # Frame sync word not valid FLYWHEELING = 2**21 # Flywheeling detected during this frame BIT_SLIPPAGE = 2**20 # Bit slippage detected during this frame # Note: Bit 19 - 9 are not defined for KLMs TIP_PARITY = 2**8 # TIP parity error detected # Reflected Sunlight (RS) detected (solar blackbody contamination) CH_3B_RS = 2**7 CH_3B_RS_ANOMALY = 2**6 CH_3_CONTAMINATION = CH_3B_RS | CH_3B_RS_ANOMALY # POD compatible alias CH_4_RS = 2**5 CH_4_RS_ANOMALY = 2**4 CH_4_CONTAMINATION = CH_4_RS | CH_4_RS_ANOMALY # POD compatible alias CH_5_RS = 2**3 CH_5_RS_ANOMALY = 2**2 CH_5_CONTAMINATION = CH_5_RS | CH_5_RS_ANOMALY # POD compatible alias DATA_JITTER = 2**1 # Resync occurred on this frame PSEUDO_NOISE = 2**0 # Pseudo noise occurred on this frame # header object header = np.dtype([("data_set_creation_site_id", "S3"), ("ascii_blank_=_x20", "S1"), ("noaa_level_1b_format_version_number", ">u2"), ("noaa_level_1b_format_version_year", ">u2"), ("noaa_level_1b_format_version_day_of_year", ">u2"), ("reserved_for_logical_record_length", ">u2"), ("reserved_for_block_size", ">u2"), ("count_of_header_records", ">u2"), ("zero_fill0", ">i2", (3, )), ("data_set_name", "S42"), ("processing_block_identification", "S8"), ("noaa_spacecraft_identification_code", ">u2"), ("instrument_id", ">u2"), ("data_type_code", ">u2"), ("tip_source_code", ">u2"), ("start_of_data_set_day_count_starting_from_0_at_00h,_1_jan_1950", ">u4"), ("start_of_data_set_year", ">u2"), ("start_of_data_set_day_of_year", ">u2"), ("start_of_data_set_utc_time_of_day", ">u4"), ("end_of_data_set_day_count_starting_from_0_at_00h,_1_jan_1950", ">u4"), ("end_of_data_set_year", ">u2"), ("end_of_data_set_day_of_year", ">u2"), ("end_of_data_set_utc_time_of_day", ">u4"), ("year_of_last_cpids_update", ">u2"), ("day_of_year_of_last_cpids_update", ">u2"), ("zero_fill1", ">i2", (4, )), # DATA SET QUALITY INDICATORS ("instrument_status", ">u4"), ("zero_fill2", ">i2"), ("record_number_of_status_change", ">u2"), ("second_instrument_status", ">u4"), ("count_of_data_records", ">u2"), ("count_of_calibrated,_earth_located_scan_lines", ">u2"), ("count_of_missing_scan_lines", ">u2"), ("count_of_data_gaps", ">u2"), # only in version 5 ("count_of_data_frames_without_frame_sync_word", ">u2"), ("count_of_pacs_detected_tip_parity_errors", ">u2"), # only in version 5 ("sum_of_all_auxiliary_sync_errors_detected", ">u2"), ("time_sequence_error", ">u2"), ("time_sequence_error_code", ">u2"), ("socc_clock_update_indicator", ">u2"), ("earth_location_error_indicator", ">u2"), ("earth_location_error_code", ">u2"), ("pacs_status_bit_field", ">u2"), ("data_source", ">u2"), ("zero_fill3", ">i4"), ("reserved_for_the_ingester", "S8"), ("reserved_for_decommutation", "S8"), ("zero_fill4", ">i2", (5, )), # CALIBRATION ("ramp_auto_calibration_indicators_bit_field", ">u2"), ("year_of_most_recent_solar_channel_calibration", ">u2"), ("day_of_year_of_most_recent_solar_channel_calibration", ">u2"), ("primary_calibration_algorithm_id", ">u2"), ("primary_calibration_algorithm_selected_options", ">u2"), ("secondary_calibration_algorithm_id", ">u2"), ("secondary_calibration_algorithm_selected_options", ">u2"), ("ir_target_temperature_1_conversion_coefficient_1", ">i2"), ("ir_target_temperature_1_conversion_coefficient_2", ">i2"), ("ir_target_temperature_1_conversion_coefficient_3", ">i2"), ("ir_target_temperature_1_conversion_coefficient_4", ">i2"), ("ir_target_temperature_1_conversion_coefficient_5", ">i2"), ("ir_target_temperature_1_conversion_coefficient_6", ">i2"), ("ir_target_temperature_2_conversion_coefficient_1", ">i2"), ("ir_target_temperature_2_conversion_coefficient_2", ">i2"), ("ir_target_temperature_2_conversion_coefficient_3", ">i2"), ("ir_target_temperature_2_conversion_coefficient_4", ">i2"), ("ir_target_temperature_2_conversion_coefficient_5", ">i2"), ("ir_target_temperature_2_conversion_coefficient_6", ">i2"), ("ir_target_temperature_3_conversion_coefficient_1", ">i2"), ("ir_target_temperature_3_conversion_coefficient_2", ">i2"), ("ir_target_temperature_3_conversion_coefficient_3", ">i2"), ("ir_target_temperature_3_conversion_coefficient_4", ">i2"), ("ir_target_temperature_3_conversion_coefficient_5", ">i2"), ("ir_target_temperature_3_conversion_coefficient_6", ">i2"), ("ir_target_temperature_4_conversion_coefficient_1", ">i2"), ("ir_target_temperature_4_conversion_coefficient_2", ">i2"), ("ir_target_temperature_4_conversion_coefficient_3", ">i2"), ("ir_target_temperature_4_conversion_coefficient_4", ">i2"), ("ir_target_temperature_4_conversion_coefficient_5", ">i2"), ("ir_target_temperature_4_conversion_coefficient_6", ">i2"), ("zero_fill5", ">i4", (2, )), # RADIANCE CONVERSION ("ch_1_solar_filtered_irradiance_in_wavelength", ">i4"), ("ch_1_equivalent_filter_width_in_wavelength", ">i4"), ("ch_2_solar_filtered_irradiance_in_wavelength", ">i4"), ("ch_2_equivalent_filter_width_in_wavelength", ">i4"), ("ch_3a_solar_filtered_irradiance_in_wavelength", ">i4"), ("ch_3a_equivalent_filter_width_in_wavelength", ">i4"), ("ch_3b_central_wavenumber", ">i4"), ("ch_3b_constant_1", ">i4"), ("ch_3b_constant_2", ">i4"), ("ch_4_central_wavenumber", ">i4"), ("ch_4_constant_1", ">i4"), ("ch_4_constant_2", ">i4"), ("ch_5_central_wavenumber", ">i4"), ("ch_5_constant_1", ">i4"), ("ch_5_constant_2", ">i4"), ("zero_fill6", ">i4", (3, )), # NAVIGATION ("reference_ellipsoid_model_id", "S8"), ("nadir_earth_location_tolerance", ">u2"), ("earth_location_bit_field", ">u2"), ("zero_fill7", ">i2"), ("constant_roll_attitude_error", ">i2"), ("constant_pitch_attitude_error", ">i2"), ("constant_yaw_attitude_error", ">i2"), ("epoch_year_for_orbit_vector", ">u2"), ("day_of_epoch_year_for_orbit_vector", ">u2"), ("epoch_utc_time_of_day_for_orbit_vector", ">u4"), ("semi-major_axis", ">i4"), ("eccentricity", ">i4"), ("inclination", ">i4"), ("argument_of_perigee", ">i4"), ("right_ascension_of_the_ascending_node", ">i4"), ("mean_anomaly", ">i4"), ("position_vector_x_component", ">i4"), ("position_vector_y_component", ">i4"), ("position_vector_z_component", ">i4"), ("velocity_vector_x-dot_component", ">i4"), ("velocity_vector_y-dot_component", ">i4"), ("velocity_vector_z-dot_component", ">i4"), ("earth_sun_distance_ratio", ">u4"), ("zero_fill8", ">i4", (4, ))]) # ANALOG TELEMETRY CONVERSION analog_telemetry_v2 = np.dtype([("patch_temperature_conversion_coefficient_1", ">i2"), ("patch_temperature_conversion_coefficient_2", ">i2"), ("patch_temperature_conversion_coefficient_3", ">i2"), ("patch_temperature_conversion_coefficient_4", ">i2"), ("patch_temperature_conversion_coefficient_5", ">i2"), ("reserved0", ">i2"), ("patch_temperature_extended_conversion_coefficient_1", ">i2"), ("patch_temperature_extended_conversion_coefficient_2", ">i2"), ("patch_temperature_extended_conversion_coefficient_3", ">i2"), ("patch_temperature_extended_conversion_coefficient_4", ">i2"), ("patch_temperature_extended_conversion_coefficient_5", ">i2"), ("reserved1", ">i2"), ("patch_power_conversion_coefficient_1", ">i2"), ("patch_power_conversion_coefficient_2", ">i2"), ("patch_power_conversion_coefficient_3", ">i2"), ("patch_power_conversion_coefficient_4", ">i2"), ("patch_power_conversion_coefficient_5", ">i2"), ("reserved2", ">i2"), ("radiator_temperature_conversion_coefficient_1", ">i2"), ("radiator_temperature_conversion_coefficient_2", ">i2"), ("radiator_temperature_conversion_coefficient_3", ">i2"), ("radiator_temperature_conversion_coefficient_4", ">i2"), ("radiato r_temperature_conversion_coefficient_5", ">i2"), ("reserved3", ">i2"), ("blackbody_temperature_1_conversion_coefficient_1", ">i2"), ("blackbody_temperature_1_conversion_coefficient_2", ">i2"), ("blackbody_temperature_1_conversion_coefficient_3", ">i2"), ("blackbody_temperature_1_conversion_coefficient_4", ">i2"), ("blackbody_temperature_1_conversion_coefficient_5", ">i2"), ("reserved4", ">i2"), ("blackbody_temperature_2_conversion_coefficient_1", ">i2"), ("blackbody_temperature_2_conversion_coefficient_2", ">i2"), ("blackbody_temperature_2_conversion_coefficient_3", ">i2"), ("blackbody_temperature_2_conversion_coefficient_4", ">i2"), ("blackbody_temperature_2_conversion_coefficient_5", ">i2"), ("reserved5", ">i2"), ("blackbody_temperature_3_conversion_coefficient_1", ">i2"), ("blackbody_temperature_3_conversion_coefficient_2", ">i2"), ("blackbody_temperature_3_conversion_coefficient_3", ">i2"), ("blackbody_temperature_3_conversion_coefficient_4", ">i2"), ("blackbody_temperature_3_conversion_coefficient_5", ">i2"), ("reserved6", ">i2"), ("blackbody_temperature_4_conversion_coefficient_1", ">i2"), ("blackbody_temperature_4_conversion_coefficient_2", ">i2"), ("blackbody_temperature_4_conversion_coefficient_3", ">i2"), ("blackbody_temperature_4_conversion_coefficient_4", ">i2"), ("blackbody_temperature_4_conversion_coefficient_5", ">i2"), ("reserved7", ">i2"), ("electronics_current_conversion_coefficient_1", ">i2"), ("electronics_current_conversion_coefficient_2", ">i2"), ("electronics_current_conversion_coefficient_3", ">i2"), ("electronics_current_conversion_coefficient_4", ">i2"), ("electronics_current_conversion_coefficient_5", ">i2"), ("reserved8", ">i2"), ("motor_current_conversion_coefficient_1", ">i2"), ("motor_current_conversion_coefficient_2", ">i2"), ("motor_current_conversion_coefficient_3", ">i2"), ("motor_current_conversion_coefficient_4", ">i2"), ("motor_current_conversion_coefficient_5", ">i2"), ("reserved9", ">i2"), ("earth_shield_position_conversion_coefficient_1", ">i2"), ("earth_shield_position_conversion_coefficient_2", ">i2"), ("earth_shield_position_conversion_coefficient_3", ">i2"), ("earth_shield_position_conversion_coefficient_4", ">i2"), ("earth_shield_position_conversion_coefficient_5", ">i2"), ("reserved10", ">i2"), ("electronics_temperature_conversion_coefficient_1", ">i2"), ("electronics_temperature_conversion_coefficient_2", ">i2"), ("electronics_temperature_conversion_coefficient_3", ">i2"), ("electronics_temperature_conversion_coefficient_4", ">i2"), ("electronics_temperature_conversion_coefficient_5", ">i2"), ("reserved11", ">i2"), ("cooler_housing_temperature_conversion_coefficient_1", ">i2"), ("cooler_housing_temperature_conversion_coefficient_2", ">i2"), ("cooler_housing_temperature_conversion_coefficient_3", ">i2"), ("cooler_housing_temperature_conversion_coefficient_4", ">i2"), ("cooler_housing_temperature_conversion_coefficient_5", ">i2"), ("reserved12", ">i2"), ("baseplate_temperature_conversion_coefficient_1", ">i2"), ("baseplate_temperature_conversion_coefficient_2", ">i2"), ("baseplate_temperature_conversion_coefficient_3", ">i2"), ("baseplate_temperature_conversion_coefficient_4", ">i2"), ("baseplate_temperature_conversion_coefficient_5", ">i2"), ("reserved13", ">i2"), ("motor_housing_temperature_conversion_coefficient_1", ">i2"), ("motor_housing_temperature_conversion_coefficient_2", ">i2"), ("motor_housing_temperature_conversion_coefficient_3", ">i2"), ("motor_housing_temperature_conversion_coefficient_4", ">i2"), ("motor_housing_temperature_conversion_coefficient_5", ">i2"), ("reserved14", ">i2"), ("a/d_converter_temperature_conversion_coefficient_1", ">i2"), ("a/d_converter_temperature_conversion_coefficient_2", ">i2"), ("a/d_converter_temperature_conversion_coefficient_3", ">i2"), ("a/d_converter_temperature_conversion_coefficient_4", ">i2"), ("a/d_converter_temperature_conversion_coefficient_5", ">i2"), ("reserved15", ">i2"), ("detector_#4_bias_voltage_conversion_coefficient_1", ">i2"), ("detector_#4_bias_voltage_conversion_coefficient_2", ">i2"), ("detector_#4_bias_voltage_conversion_coefficient_3", ">i2"), ("detector_#4_bias_voltage_conversion_coefficient_4", ">i2"), ("detector_#4_bias_voltage_conversion_coefficient_5", ">i2"), ("reserved16", ">i2"), ("detector_#5_bias_voltage_conversion_coefficient_1", ">i2"), ("detector_#5_bias_voltage_conversion_coefficient_2", ">i2"), ("detector_#5_bias_voltage_conversion_coefficient_3", ">i2"), ("detector_#5_bias_voltage_conversion_coefficient_4", ">i2"), ("detector_#5_bias_voltage_conversion_coefficient_5", ">i2"), ("reserved17", ">i2"), ("channel_3b_blackbody_view_conversion_coefficient_1", ">i2"), ("channel_3b_blackbody_view_conversion_coefficient_2", ">i2"), ("channel_3b_blackbody_view_conversion_coefficient_3", ">i2"), ("channel_3b_blackbody_view_conversion_coefficient_4", ">i2"), ("channel_3b_blackbody_view_conversion_coefficient_5", ">i2"), ("reserved18", ">i2"), ("channel_4_blackbody_view_conversion_coefficient_1", ">i2"), ("channel_4_blackbody_view_conversion_coefficient_2", ">i2"), ("channel_4_blackbody_view_conversion_coefficient_3", ">i2"), ("channel_4_blackbody_view_conversion_coefficient_4", ">i2"), ("channel_4_blackbody_view_conversion_coefficient_5", ">i2"), ("reserved19", ">i2"), ("channel_5_blackbody_view_conversion_coefficient_1", ">i2"), ("channel_5_blackbody_view_conversion_coefficient_2", ">i2"), ("channel_5_blackbody_view_conversion_coefficient_3", ">i2"), ("channel_5_blackbody_view_conversion_coefficient_4", ">i2"), ("channel_5_blackbody_view_conversion_coefficient_5", ">i2"), ("reserved20", ">i2"), ("reference_voltage_conversion_coefficient_1", ">i2"), ("reference_voltage_conversion_coefficient_2", ">i2"), ("reference_voltage_conversion_coefficient_3", ">i2"), ("reference_voltage_conversion_coefficient_4", ">i2"), ("reference_voltage_conversion_coefficient_5", ">i2"), ("reserved21", ">i2")]) # FILLER # ("zero_fill9", ">i4", (4608 - 688, ))]) analog_telemetry_v5 = np.dtype([("patch_temperature_conversion_coefficient_1", ">i4"), ("patch_temperature_conversion_coefficient_2", ">i4"), ("patch_temperature_conversion_coefficient_3", ">i4"), ("patch_temperature_conversion_coefficient_4", ">i4"), ("patch_temperature_conversion_coefficient_5", ">i4"), ("patch_temperature_conversion_coefficient_6", ">i4"), ("patch_temperature_extended_conversion_coefficient_1", ">i4"), ("patch_temperature_extended_conversion_coefficient_2", ">i4"), ("patch_temperature_extended_conversion_coefficient_3", ">i4"), ("patch_temperature_extended_conversion_coefficient_4", ">i4"), ("patch_temperature_extended_conversion_coefficient_5", ">i4"), ("patch_temperature_extended_conversion_coefficient_6", ">i4"), ("patch_power_conversion_coefficient_1", ">i4"), ("patch_power_conversion_coefficient_2", ">i4"), ("patch_power_conversion_coefficient_3", ">i4"), ("patch_power_conversion_coefficient_4", ">i4"), ("patch_power_conversion_coefficient_5", ">i4"), ("patch_power_conversion_coefficient_6", ">i4"), ("radiator_temperature_conversion_coefficient_1", ">i4"), ("radiator_temperature_conversion_coefficient_2", ">i4"), ("radiator_temperature_conversion_coefficient_3", ">i4"), ("radiator_temperature_conversion_coefficient_4", ">i4"), ("radiator_temperature_conversion_coefficient_5", ">i4"), ("radiator_temperature_conversion_coefficient_6", ">i4"), ("blackbody_temperature_1_conversion_coefficient_1", ">i4"), ("blackbody_temperature_1_conversion_coefficient_2", ">i4"), ("blackbody_temperature_1_conversion_coefficient_3", ">i4"), ("blackbody_temperature_1_conversion_coefficient_4", ">i4"), ("blackbody_temperature_1_conversion_coefficient_5", ">i4"), ("blackbody_temperature_1_conversion_coefficient_6", ">i4"), ("blackbody_temperature_2_conversion_coefficient_1", ">i4"), ("blackbody_temperature_2_conversion_coefficient_2", ">i4"), ("blackbody_temperature_2_conversion_coefficient_3", ">i4"), ("blackbody_temperature_2_conversion_coefficient_4", ">i4"), ("blackbody_temperature_2_conversion_coefficient_5", ">i4"), ("blackbody_temperature_2_conversion_coefficient_6", ">i4"), ("blackbody_temperature_3_conversion_coefficient_1", ">i4"), ("blackbody_temperature_3_conversion_coefficient_2", ">i4"), ("blackbody_temperature_3_conversion_coefficient_3", ">i4"), ("blackbody_temperature_3_conversion_coefficient_4", ">i4"), ("blackbody_temperature_3_conversion_coefficient_5", ">i4"), ("blackbody_temperature_3_conversion_coefficient_6", ">i4"), ("blackbody_temperature_4_conversion_coefficient_1", ">i4"), ("blackbody_temperature_4_conversion_coefficient_2", ">i4"), ("blackbody_temperature_4_conversion_coefficient_3", ">i4"), ("blackbody_temperature_4_conversion_coefficient_4", ">i4"), ("blackbody_temperature_4_conversion_coefficient_5", ">i4"), ("blackbody_temperature_4_conversion_coefficient_6", ">i4"), ("electronics_current_conversion_coefficient_1", ">i4"), ("electronics_current_conversion_coefficient_2", ">i4"), ("electronics_current_conversion_coefficient_3", ">i4"), ("electronics_current_conversion_coefficient_4", ">i4"), ("electronics_current_conversion_coefficient_5", ">i4"), ("electronics_current_conversion_coefficient_6", ">i4"), ("motor_current_conversion_coefficient_1", ">i4"), ("motor_current_conversion_coefficient_2", ">i4"), ("motor_current_conversion_coefficient_3", ">i4"), ("motor_current_conversion_coefficient_4", ">i4"), ("motor_current_conversion_coefficient_5", ">i4"), ("motor_current_conversion_coefficient_6", ">i4"), ("earth_shield_position_conversion_coefficient_1", ">i4"), ("earth_shield_position_conversion_coefficient_2", ">i4"), ("earth_shield_position_conversion_coefficient_3", ">i4"), ("earth_shield_position_conversion_coefficient_4", ">i4"), ("earth_shield_position_conversion_coefficient_5", ">i4"), ("earth_shield_position_conversion_coefficient_6", ">i4"), ("electronics_temperature_conversion_coefficient_1", ">i4"), ("electronics_temperature_conversion_coefficient_2", ">i4"), ("electronics_temperature_conversion_coefficient_3", ">i4"), ("electronics_temperature_conversion_coefficient_4", ">i4"), ("electronics_temperature_conversion_coefficient_5", ">i4"), ("electronics_temperature_conversion_coefficient_6", ">i4"), ("cooler_housing_temperature_conversion_coefficient_1", ">i4"), ("cooler_housing_temperature_conversion_coefficient_2", ">i4"), ("cooler_housing_temperature_conversion_coefficient_3", ">i4"), ("cooler_housing_temperature_conversion_coefficient_4", ">i4"), ("cooler_housing_temperature_conversion_coefficient_5", ">i4"), ("cooler_housing_temperature_conversion_coefficient_6", ">i4"), ("baseplate_temperature_conversion_coefficient_1", ">i4"), ("baseplate_temperature_conversion_coefficient_2", ">i4"), ("baseplate_temperature_conversion_coefficient_3", ">i4"), ("baseplate_temperature_conversion_coefficient_4", ">i4"), ("baseplate_temperature_conversion_coefficient_5", ">i4"), ("baseplate_temperature_conversion_coefficient_6", ">i4"), ("motor_housing_temperature_conversion_coefficient_1", ">i4"), ("motor_housing_temperature_conversion_coefficient_2", ">i4"), ("motor_housing_temperature_conversion_coefficient_3", ">i4"), ("motor_housing_temperature_conversion_coefficient_4", ">i4"), ("motor_housing_temperature_conversion_coefficient_5", ">i4"), ("motor_housing_temperature_conversion_coefficient_6", ">i4"), ("a/d_converter_temperature_conversion_coefficient_1", ">i4"), ("a/d_converter_temperature_conversion_coefficient_2", ">i4"), ("a/d_converter_temperature_conversion_coefficient_3", ">i4"), ("a/d_converter_temperature_conversion_coefficient_4", ">i4"), ("a/d_converter_temperature_conversion_coefficient_5", ">i4"), ("a/d_converter_temperature_conversion_coefficient_6", ">i4"), ("detector_#4_bias_voltage_conversion_coefficient_1", ">i4"), ("detector_#4_bias_voltage_conversion_coefficient_2", ">i4"), ("detector_#4_bias_voltage_conversion_coefficient_3", ">i4"), ("detector_#4_bias_voltage_conversion_coefficient_4", ">i4"), ("detector_#4_bias_voltage_conversion_coefficient_5", ">i4"), ("detector_#4_bias_voltage_conversion_coefficient_6", ">i4"), ("detector_#5_bias_voltage_conversion_coefficient_1", ">i4"), ("detector_#5_bias_voltage_conversion_coefficient_2", ">i4"), ("detector_#5_bias_voltage_conversion_coefficient_3", ">i4"), ("detector_#5_bias_voltage_conversion_coefficient_4", ">i4"), ("detector_#5_bias_voltage_conversion_coefficient_5", ">i4"), ("detector_#5_bias_voltage_conversion_coefficient_6", ">i4"), ("blackbody_temperature_channel3b_conversion_coefficient_1", ">i4"), ("blackbody_temperature_channel3b_conversion_coefficient_2", ">i4"), ("blackbody_temperature_channel3b_conversion_coefficient_3", ">i4"), ("blackbody_temperature_channel3b_conversion_coefficient_4", ">i4"), ("blackbody_temperature_channel3b_conversion_coefficient_5", ">i4"), ("blackbody_temperature_channel3b_conversion_coefficient_6", ">i4"), ("blackbody_temperature_channel4_conversion_coefficient_1", ">i4"), ("blackbody_temperature_channel4_conversion_coefficient_2", ">i4"), ("blackbody_temperature_channel4_conversion_coefficient_3", ">i4"), ("blackbody_temperature_channel4_conversion_coefficient_4", ">i4"), ("blackbody_temperature_channel4_conversion_coefficient_5", ">i4"), ("blackbody_temperature_channel4_conversion_coefficient_6", ">i4"), ("blackbody_temperature_channel5_conversion_coefficient_1", ">i4"), ("blackbody_temperature_channel5_conversion_coefficient_2", ">i4"), ("blackbody_temperature_channel5_conversion_coefficient_3", ">i4"), ("blackbody_temperature_channel5_conversion_coefficient_4", ">i4"), ("blackbody_temperature_channel5_conversion_coefficient_5", ">i4"), ("blackbody_temperature_channel5_conversion_coefficient_6", ">i4"), ("reference_voltage_conversion_coefficient_1", ">i4"), ("reference_voltage_conversion_coefficient_2", ">i4"), ("reference_voltage_conversion_coefficient_3", ">i4"), ("reference_voltage_conversion_coefficient_4", ">i4"), ("reference_voltage_conversion_coefficient_5", ">i4"), ("reference_voltage_conversion_coefficient_6", ">i4"), # METOP MANEUVERS IDENTIFICATION ("start_of_maneuver_year", ">u2"), ("start_of_maneuver_day", ">u2"), ("start_of_maneuver_utc_time_of_day", ">u4"), ("end_of_manuever_year", ">u2"), ("end_of_maneuver_day", ">u2"), ("end_of_maneuver_utc_time_of_day", ">u4"), ("change_in_spacecraft_velocity", ">i4"), ("change in spacecraft_mass", ">u4"), # CLOUDS FROM AVHRR(CLAVR) ("clavr_status_bit_field", ">u2"), ("zero_fill9", ">i2")]) ars_header = np.dtype([('COST_number', 'S6'), ('SAA_number', 'S8'), ('order_creation_year', 'S4'), ('order_creation_day_of_year', 'S3'), ('processing_site_code', 'S1'), ('processing_software', 'S8'), # data selection criteria ('data_set_name', 'S42'), ('ascii_blank_', 'S2'), ('select_flag', 'S1'), ('beginning_latitude', 'S3'), ('ending_latitude', 'S3'), ('beginning_longitude', 'S4'), ('ending_longitude', 'S4'), ('start_hour', 'S2'), ('start_minute', 'S2'), ('number_of_minutes', 'S3'), ('appended_data_flag', 'S1'), ('channel_select_flag', 'S1', (20, )), # dataset summary ('ascii_blank__', 'S29'), ('ascend_descend_flag', 'S1'), ('first_latitude', 'S3'), ('last_latitude', 'S3'), ('first_longitude', 'S4'), ('last_longitude', 'S4'), ('data_format', 'S20'), ('size_of_record', 'S6'), ('number_of_records', 'S6'), # filler ('ascii_blank', 'S319') ]) class KLMReader(Reader): """Reader for KLM data.""" spacecraft_names = {4: 'noaa15', 2: 'noaa16', 6: 'noaa17', 7: 'noaa18', 8: 'noaa19', 12: 'metopa', 11: 'metopb', 13: 'metopc', } spacecrafts_orbital = {4: 'noaa 15', 2: 'noaa 16', 6: 'noaa 17', 7: 'noaa 18', 8: 'noaa 19', 12: 'metop 02', 11: 'metop 01', 13: 'metop 03', } tsm_affected_intervals = TSM_AFFECTED_INTERVALS_KLM QFlag = KLM_QualityIndicator _quality_indicators_key = "quality_indicator_bit_field" def read(self, filename, fileobj=None): """Read the data. Args: filename: Path to GAC/LAC file fileobj: An open file object to read from. (optional) Returns: header: numpy record array The header metadata scans: numpy record array The scanlines """ # Note that np.fromfile does not work with gzip.GzipFile # objects (numpy version 1.16.4), because it restricts the # file objects to (io.FileIO, io.BufferedReader, io.BufferedWriter) # see: numpy.compat.py3k.isfileobj self.filename = filename LOG.info('Reading %s', self.filename) with file_opener(fileobj or filename) as fd_: self.ars_head, self.head = self.read_header( filename, fileobj=fd_) if self.ars_head: ars_offset = ars_header.itemsize else: ars_offset = 0 self.header_version = self.head[ "noaa_level_1b_format_version_number"] if self.header_version >= 5: self.analog_telemetry, = np.frombuffer( fd_.read(analog_telemetry_v5.itemsize), dtype=analog_telemetry_v5, count=1) else: self.analog_telemetry, = np.frombuffer( fd_.read(analog_telemetry_v2.itemsize), dtype=analog_telemetry_v2, count=1) # LAC: 1, GAC: 2, ... self.data_type = self.head['data_type_code'] # read until end of file fd_.seek(self.offset + ars_offset, 0) buffer = fd_.read() count = self.head["count_of_data_records"] self._read_scanlines(buffer, count) self.correct_scan_line_numbers() self.spacecraft_id = self.head["noaa_spacecraft_identification_code"] self.spacecraft_name = self.spacecraft_names[self.spacecraft_id] @classmethod def read_header(cls, filename, fileobj=None): """Read the file header. Args: filename (str): Path to GAC/LAC file fileobj: An open file object to read from. (optional) Returns: archive_header (struct): archive header header (struct): file header """ with file_opener(fileobj or filename) as fd_: # read ars_header if present _ars_head, = np.frombuffer( fd_.read(ars_header.itemsize), dtype=ars_header, count=1) if _ars_head['data_format'].startswith(b'NOAA Level 1b'): ars_head = _ars_head.copy() else: fd_.seek(0) ars_head = None # need to copy frombuffer to have write access on head head, = np.frombuffer( fd_.read(header.itemsize), dtype=header, count=1).copy() head = cls._correct_data_set_name(head, filename) cls._validate_header(head) return ars_head, head @classmethod def _validate_header(cls, header): """Check if the header belongs to this reader.""" # call super to enter the Method Resolution Order (MRO) super(KLMReader, cls)._validate_header(header) LOG.debug("validate header") data_set_name = header['data_set_name'].decode() # split header into parts creation_site, transfer_mode, platform_id = ( data_set_name.split('.')[:3]) allowed_ids = ['NK', 'NL', 'NM', 'NN', 'NP', 'M1', 'M2', 'M3'] if platform_id not in allowed_ids: raise ReaderError('Improper platform id "%s"!' % platform_id) def get_telemetry(self): """Get the telemetry. Returns: prt_counts: np.array ict_counts: np.array space_counts: np.array """ prt_counts = np.mean(self.scans["telemetry"]['PRT'], axis=1) # getting ICT counts ict_counts = np.zeros((len(self.scans), 3)) ict_counts[:, 0] = np.mean(self.scans["back_scan"][:, 0::3], axis=1) ict_counts[:, 1] = np.mean(self.scans["back_scan"][:, 1::3], axis=1) ict_counts[:, 2] = np.mean(self.scans["back_scan"][:, 2::3], axis=1) # getting space counts space_counts = np.zeros((len(self.scans), 3)) space_counts[:, 0] = np.mean(self.scans["space_data"][:, 2::5], axis=1) space_counts[:, 1] = np.mean(self.scans["space_data"][:, 3::5], axis=1) space_counts[:, 2] = np.mean(self.scans["space_data"][:, 4::5], axis=1) return prt_counts, ict_counts, space_counts def _get_lonlat(self): """Get the longitudes and latitudes.""" lats = self.scans["earth_location"][:, 0::2] / 1e4 lons = self.scans["earth_location"][:, 1::2] / 1e4 return lons, lats def get_header_timestamp(self): """Get the timestamp from the header. Returns: A datetime object containing the timestamp from the header. Raises: A ValueError if the timestamp is corrupt. """ year = self.head['start_of_data_set_year'] jday = self.head['start_of_data_set_day_of_year'] msec = self.head['start_of_data_set_utc_time_of_day'] try: return self.to_datetime(self.to_datetime64(year=year, jday=jday, msec=msec)) except ValueError as err: raise ValueError('Corrupt header timestamp: {0}'.format(err)) def _get_times(self): """Get the times of the scanlines.""" year = self.scans["scan_line_year"] jday = self.scans["scan_line_day_of_year"] msec = self.scans["scan_line_utc_time_of_day"] return year, jday, msec def get_ch3_switch(self): """Channel 3 identification. 0: Channel 3b (Brightness temperature) 1: Channel 3a (Reflectance) 2: Transition (No data) """ return self.scans["scan_line_bit_field"][:] & 3 def _get_ir_channels_to_calibrate(self): ir_channels_to_calibrate = [3, 4, 5] if np.all(self.get_ch3_switch() != 0): ir_channels_to_calibrate = [4, 5] return ir_channels_to_calibrate def postproc(self, channels): """Apply KLM specific postprocessing. Masking out 3a/3b/transition. """ switch = self.get_ch3_switch() channels[:, :, 2][switch == 0] = np.nan channels[:, :, 3][switch == 1] = np.nan channels[:, :, 2][switch == 2] = np.nan channels[:, :, 3][switch == 2] = np.nan def _adjust_clock_drift(self): """Adjust the geolocation to compensate for the clock error. Note: Clock drift correction is only applied to POD satellites. On the KLM series, the clock is updated daily. """ def get_tsm_pixels(self, channels): """Determine pixels affected by the scan motor issue. Uses channels 1, 2, 4 and 5. Neither 3a, nor 3b. """ return get_tsm_idx(channels[:, :, 0], channels[:, :, 1], channels[:, :, 4], channels[:, :, 5]) def main_klm(reader_cls, filename, start_line, end_line): """Generate a l1c file.""" tic = datetime.datetime.now() reader = reader_cls.fromfile(filename) reader.save(int(start_line), int(end_line)) LOG.info("pygac took: %s", str(datetime.datetime.now() - tic)) pygac-1.7.2/pygac/lac_klm.py000066400000000000000000000245631444627033600157260ustar00rootroot00000000000000#!/usr/bin/python # Copyright (c) 2014-2019 # # Author(s): # Abhay Devasthale # Sajid Pareeth # Martin Raspaud # Adam Dybbroe # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . """Reader for LAC KLM data.""" import logging import numpy as np from pygac.klm_reader import KLMReader, main_klm from pygac.lac_reader import LACReader LOG = logging.getLogger(__name__) # video data object scanline = np.dtype([("scan_line_number", ">u2"), ("scan_line_year", ">u2"), ("scan_line_day_of_year", ">u2"), ("satellite_clock_drift_delta", ">i2"), ("scan_line_utc_time_of_day", ">u4"), ("scan_line_bit_field", ">u2"), ("zero_fill0", ">i2", (5, )), # QUALITY INDICATORS ("quality_indicator_bit_field", ">u4"), ("scan_line_quality_flags", [("reserved", ">u1"), ("time_problem_code", ">u1"), ("calibration_problem_code", ">u1"), ("earth_location_problem_code", ">u1")]), ("calibration_quality_flags", ">u2", (3, )), ("count_of_bit_errors_in_frame_sync", ">u2"), ("zero_fill1", ">i4", (2, )), # CALIBRATION COEFFICIENTS ("visible_operational_cal_ch_1_slope_1", ">i4"), ("visible_operational_cal_ch_1_intercept_1", ">i4"), ("visible_operational_cal_ch_1_slope_2", ">i4"), ("visible_operational_cal_ch_1_intercept_2", ">i4"), ("visible_operational_cal_ch_1_intersection", ">i4"), ("visible_test_cal_ch_1_slope_1", ">i4"), ("visible_test_cal_ch_1_intercept_1", ">i4"), ("visible_test_cal_ch_1_slope_2", ">i4"), ("visible_test_cal_ch_1_intercept_2", ">i4"), ("visible_test_cal_ch_1_intersection", ">i4"), ("visible_prelaunch_cal_ch_1_slope_1", ">i4"), ("visible_prelaunch_cal_ch_1_intercept_1", ">i4"), ("visible_prelaunch_cal_ch_1_slope_2", ">i4"), ("visible_prelaunch_cal_ch_1_intercept_2", ">i4"), ("visible_prelaunch_cal_ch_1_intersection", ">i4"), ("visible_operational_cal_ch_2_slope_1", ">i4"), ("visible_operational_cal_ch_2_intercept_1", ">i4"), ("visible_operational_cal_ch_2_slope_2", ">i4"), ("visible_operational_cal_ch_2_intercept_2", ">i4"), ("visible_operational_cal_ch_2_intersection", ">i4"), ("visible_test_cal_ch_2_slope_1", ">i4"), ("visible_test_cal_ch_2_intercept_1", ">i4"), ("visible_test_cal_ch_2_slope_2", ">i4"), ("visible_test_cal_ch_2_intercept_2", ">i4"), ("visible_test_cal_ch_2_intersection", ">i4"), ("visible_prelaunch_cal_ch_2_slope_1", ">i4"), ("visible_prelaunch_cal_ch_2_intercept_1", ">i4"), ("visible_prelaunch_cal_ch_2_slope_2", ">i4"), ("visible_prelaunch_cal_ch_2_intercept_2", ">i4"), ("visible_prelaunch_cal_ch_2_intersection", ">i4"), ("visible_operational_cal_ch_3a_slope_1", ">i4"), ("visible_operational_cal_ch_3a_intercept_1", ">i4"), ("visible_operational_cal_ch_3a_slope_2", ">i4"), ("visible_operational_cal_ch_3a_intercept_2", ">i4"), ("visible_operational_cal_ch_3a_intersection", ">i4"), ("visible_test_cal_ch_3a_slope_1", ">i4"), ("visible_test_cal_ch_3a_intercept_1", ">i4"), ("visible_test_cal_ch_3a_slope_2", ">i4"), ("visible_test_cal_ch_3a_intercept_2", ">i4"), ("visible_test_cal_ch_3a_intersection", ">i4"), ("visible_prelaunch_cal_ch_3a_slope_1", ">i4"), ("visible_prelaunch_cal_ch_3a_intercept_1", ">i4"), ("visible_prelaunch_cal_ch_3a_slope_2", ">i4"), ("visible_prelaunch_cal_ch_3a_intercept_2", ">i4"), ("visible_prelaunch_cal_ch_3a_intersection", ">i4"), ("ir_operational_cal_ch_3b_coefficient_1", ">i4"), ("ir_operational_cal_ch_3b_coefficient_2", ">i4"), ("ir_operational_cal_ch_3b_coefficient_3", ">i4"), ("ir_test_cal_ch_3b_coefficient_1", ">i4"), ("ir_test_cal_ch_3b_coefficient_2", ">i4"), ("ir_test_cal_ch_3b_coefficient_3", ">i4"), ("ir_operational_cal_ch_4_coefficient_1", ">i4"), ("ir_operational_cal_ch_4_coefficient_2", ">i4"), ("ir_operational_cal_ch_4_coefficient_3", ">i4"), ("ir_test_cal_ch_4_coefficient_1", ">i4"), ("ir_test_cal_ch_4_coefficient_2", ">i4"), ("ir_test_cal_ch_4_coefficient_3", ">i4"), ("ir_operational_cal_ch_5_coefficient_1", ">i4"), ("ir_operational_cal_ch_5_coefficient_2", ">i4"), ("ir_operational_cal_ch_5_coefficient_3", ">i4"), ("ir_test_cal_ch_5_coefficient_1", ">i4"), ("ir_test_cal_ch_5_coefficient_2", ">i4"), ("ir_test_cal_ch_5_coefficient_3", ">i4"), # NAVIGATION ("computed_yaw_steering", ">i2", (3,)), # only in version 5 ("total_applied_attitude_correction", ">i2", (3,)), # only in version 5 ("navigation_status_bit_field", ">u4"), ("time_associated_with_tip_euler_angles", ">u4"), ("tip_euler_angles", ">i2", (3, )), ("spacecraft_altitude_above_reference_ellipsoid", ">u2"), ("angular_relationships", ">i2", (153, )), ("zero_fill2", ">i2", (3, )), ("earth_location", ">i4", (102, )), ("zero_fill3", ">i4", (2, )), # HRPT MINOR FRAME TELEMETRY ("frame_sync", ">u2", (6, )), ("id", ">u2", (2, )), ("time_code", ">u2", (4, )), ('telemetry', [("ramp_calibration", '>u2', (5, )), ("PRT", '>u2', (3, )), ("ch3_patch_temp", '>u2'), ("spare", '>u2'), ]), ("back_scan", ">u2", (30, )), ("space_data", ">u2", (50, )), ("sync_delta", ">u2"), ("zero_fill4", ">i2"), # EARTH OBSERVATIONS ("sensor_data", ">u4", (3414,)), ("zero_fill5", ">i4", (2,)), # DIGITAL B HOUSEKEEPING TELEMETRY ("digital_b_telemetry_update_flags", ">u2"), ("avhrr_digital_b_data", ">u2"), ("zero_fill6", ">i4", (3,)), # ANALOG HOUSEKEEPING DATA (TIP) ("analog_telemetry_update_flags", ">u4"), ("patch_temperature_range", ">u1"), ("patch_temperature_extended", ">u1"), ("patch_power", ">u1"), ("radiator_temperature", ">u1"), ("blackbody_temperature_1", ">u1"), ("blackbody_temperature_2", ">u1"), ("blackbody_temperature_3", ">u1"), ("blackbody_temperature_4", ">u1"), ("electronics_current", ">u1"), ("motor_current", ">u1"), ("earth_shield_position", ">u1"), ("electronics_temperature", ">u1"), ("cooler_housing_temperature", ">u1"), ("baseplate_temperature", ">u1"), ("motor_housing_temperature", ">u1"), ("a/d_converter_temperature", ">u1"), ("detector_#4_bias_voltage", ">u1"), ("detector_#5_bias_voltage", ">u1"), ("blackbody_temperature_channel3b", ">u1"), ("blackbody_temperature_channel4", ">u1"), ("blackbody_temperature_channel5", ">u1"), ("reference_voltage", ">u1"), ("zero_fill7", ">i2", (3,)), # CLOUDS FROM AVHRR (CLAVR) ("reserved_clavr_status_bit_field", ">u4"), ("reserved_clavr", ">u4"), ("reserved_clavr_ccm", ">u2", (256,)), # FILLER ("zero_fill8", ">i4", (94,))]) class LACKLMReader(LACReader, KLMReader): """The LAC KLM reader. The offset attribute tells where in the file the scanline data starts. """ def __init__(self, *args, **kwargs): """Init the LAC KLM reader.""" LACReader.__init__(self, *args, **kwargs) self.scanline_type = scanline self.offset = 15872 # packed: 15872 # self.offset = 22528 # unpacked: 22528 def main(filename, start_line, end_line): """Generate a l1c file.""" return main_klm(LACKLMReader, filename, start_line, end_line) if __name__ == "__main__": import sys main(sys.argv[1], sys.argv[2], sys.argv[3]) pygac-1.7.2/pygac/lac_pod.py000066400000000000000000000050151444627033600157140ustar00rootroot00000000000000#!/usr/bin/python # Copyright (c) 2014-2019. # # Author(s): # Abhay Devasthale # Adam Dybbroe # Sajid Pareeth # Martin Raspaud # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . """Reader for LAC POD data.""" import logging import numpy as np from pygac.pod_reader import PODReader, main_pod from pygac.lac_reader import LACReader LOG = logging.getLogger(__name__) scanline = np.dtype([("scan_line_number", ">i2"), ("time_code", ">u2", (3, )), ("quality_indicators", ">u4"), ("calibration_coefficients", ">i4", (10, )), ("number_of_meaningful_zenith_angles_and_earth_location_appended", ">u1"), ("solar_zenith_angles", "i1", (51, )), ("earth_location", ">i2", (102, )), ("telemetry", ">u4", (35, )), ("sensor_data", ">u4", (3414, )), ("add_on_zenith", ">u2", (10, )), ("clock_drift_delta", ">u2"), # only in newest version ("spare3", "u2", (337, ))]) class LACPODReader(LACReader, PODReader): """The LAC POD reader. The `scan_points` attributes provides the position of the longitude and latitude points to compute relative to the full swath width. The offset attribute tells where in the file the scanline data starts. """ def __init__(self, *args, **kwargs): """Init the LAC POD reader.""" LACReader.__init__(self, *args, **kwargs) self.scanline_type = scanline self.offset = 14800 self.scan_points = np.arange(2048) def main(filename, start_line, end_line): """Generate a l1c file.""" return main_pod(LACPODReader, filename, start_line, end_line) if __name__ == "__main__": import sys main(sys.argv[1], sys.argv[2], sys.argv[3]) pygac-1.7.2/pygac/lac_reader.py000066400000000000000000000040531444627033600163750ustar00rootroot00000000000000#!/usr/bin/python # Copyright (c) 2014-2019. # # Author(s): # Abhay Devasthale # Adam Dybbroe # Sajid Pareeth # Martin Raspaud # Carlos Horn # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . """The LAC reader.""" import logging from pygac.reader import Reader, ReaderError import pygac.pygac_geotiepoints as gtp LOG = logging.getLogger(__name__) class LACReader(Reader): """Reader for LAC data.""" # Scanning frequency (scanlines per millisecond) scan_freq = 6.0 / 1000.0 # Max scanlines max_scanlines = 65535 def __init__(self, *args, **kwargs): """Init the LAC reader.""" super(LACReader, self).__init__(*args, **kwargs) self.scan_width = 2048 self.lonlat_interpolator = gtp.lac_lat_lon_interpolator @classmethod def _validate_header(cls, header): """Check if the header belongs to this reader.""" # call super to enter the Method Resolution Order (MRO) super(LACReader, cls)._validate_header(header) LOG.debug("validate header") data_set_name = header['data_set_name'].decode() # split header into parts creation_site, transfer_mode, platform_id = ( data_set_name.split('.')[:3]) if transfer_mode not in ["LHRR", "HRPT", "FRAC"]: raise ReaderError('Improper transfer mode "%s"!' % transfer_mode) pygac-1.7.2/pygac/pod_reader.py000066400000000000000000000607171444627033600164310ustar00rootroot00000000000000#!/usr/bin/python # Copyright (c) 2014-2019 Pygac developers # # Author(s): # Abhay Devasthale # Adam Dybbroe # Sajid Pareeth # Martin Raspaud # Carlos Horn # This work was done in the framework of ESA-CCI-Clouds phase I # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . """POD file reading. Reads L1b GAC/LAC data from POD series of satellites (NOAA-14 and earlier). Format specification can be found in chapters 2 & 3 of the `POD user guide`_. .. _POD user guide: https://www.ncei.noaa.gov/pub/data/satellite/publications/podguides/TIROS-N%20thru%20N-14/ """ import datetime import logging try: from enum import IntFlag except ImportError: # python version < 3.6, use a simple object without nice representation IntFlag = object import numpy as np from pyorbital.geoloc_instrument_definitions import avhrr_gac from pyorbital.geoloc import compute_pixels, get_lonlatalt from pygac.clock_offsets_converter import get_offsets from pygac.correct_tsm_issue import TSM_AFFECTED_INTERVALS_POD, get_tsm_idx from pygac.reader import Reader, ReaderError, NoTLEData from pygac.slerp import slerp from pygac.utils import file_opener LOG = logging.getLogger(__name__) class POD_QualityIndicator(IntFlag): """Quality Indicators. Source: POD guide Table 3.1.2.1-2. Format of quality indicators. """ # POD guide Table 3.1.2.1-2. Format of quality indicators. FATAL_FLAG = 2**31 # Data should not be used for product generation TIME_ERROR = 2**30 # A time sequence error was detected while Processing # this frame DATA_GAP = 2**29 # A gap precedes this frame DATA_JITTER = 2**28 # Resync occurred on this frame CALIBRATION = 2**27 # Insufficient data for calibration NO_EARTH_LOCATION = 2**26 # Earth location data not available ASCEND_DESCEND = 2**25 # AVHRR Earth location indication of Ascending (=0) # or descending (=1) data PSEUDO_NOISE = 2**24 # Pseudo Noise (P/N) occurred (=1) on the frame, # data not used for calibration computations BIT_SYNC_STATUS = 2**23 # Drop lock during frame SYNC_ERROR = 2**22 # Frame Sync word error greater than zero FRAME_SYNC_LOCK = 2**21 # Frame Sync previously dropped lock FLYWHEELING = 2**20 # Flywheeling detected during this frame BIT_SLIPPAGE = 2**19 # Bit slippage detected during this frame # Solar blackbody contamination indicator # 0 = no correction # 1 = solar contamination corrected CH_3_CONTAMINATION = 2**18 # Channel 3 solar blackbody contamination CH_4_CONTAMINATION = 2**17 # Channel 4 solar blackbody contamination CH_5_CONTAMINATION = 2**16 # Channel 5 solar blackbody contamination # TIP Parity TIP_PARITY_1 = 2**15 # In first minor frame TIP_PARITY_2 = 2**14 # In second minor frame TIP_PARITY_3 = 2**13 # In third minor frame TIP_PARITY_4 = 2**12 # In fourth minor frame TIP_PARITY_5 = 2**11 # In fifth minor frame # Note: Bit 10 to 8, and 1 to 0 are spare bits. 7 to 2 define # "SYNC ERRORS - Number of bit errors in frame sync" (6 bit integer?) # common header header0 = np.dtype([("noaa_spacecraft_identification_code", ">u1"), ("data_type_code", ">u1"), ("start_time", ">u2", (3, )), ("number_of_scans", ">u2"), ("end_time", ">u2", (3, ))]) # For L1B data before September 8, 1992 # http://www.ncdc.noaa.gov/oa/pod-guide/ncdc/docs/podug/html/k/app-k.htm header1 = np.dtype([("noaa_spacecraft_identification_code", ">u1"), ("data_type_code", ">u1"), ("start_time", ">u2", (3, )), ("number_of_scans", ">u2"), ("end_time", ">u2", (3, )), ("processing_block_id", "S7"), ("ramp_auto_calibration", ">u1"), ("number_of_data_gaps", ">u2"), ("dacs_quality", ">u1", (6, )), ("calibration_parameter_id", ">i2"), ("dacs_status", ">u1"), ("spare1", ">i1", (5, )), ("data_set_name", "S44")]) # For L1B data between October 21, 1992 to November 15, 1994 # http://www.ncdc.noaa.gov/oa/pod-guide/ncdc/docs/podug/html/l/app-l.htm header2 = np.dtype([("noaa_spacecraft_identification_code", ">u1"), ("data_type_code", ">u1"), ("start_time", ">u2", (3, )), ("number_of_scans", ">u2"), ("end_time", ">u2", (3, )), ("processing_block_id", "S7"), ("ramp_auto_calibration", ">u1"), ("number_of_data_gaps", ">u2"), ("dacs_quality", ">u1", (6, )), ("calibration_parameter_id", ">i2"), ("dacs_status", ">u1"), ("spare1", ">i1", (5, )), ("data_set_name", "S42"), ("blankfill", "S2"), ("julian_year_of_epoch", ">u2"), ("julian_day_of_epoch", ">u2"), ("millisecond_utc_epoch_time_of_day", ">u4"), # Keplerian orbital elements ("semi_major_axis", ">f8"), ("eccentricity", ">f8"), ("inclination", ">f8"), ("argument_of_perigee", ">f8"), ("right_ascension", ">f8"), ("mean_anomaly", ">f8"), # cartesian inertial true date of elements ("x_component_of_position_vector", ">f8"), ("y_component_of_position_vector", ">f8"), ("z_component_of_position_vector", ">f8"), ("x_dot_component_of_position_vector", ">f8"), ("y_dot_component_of_position_vector", ">f8"), ("z_dot_component_of_position_vector", ">f8")]) # For L1B data post November 15, 1994 # http://www.ncdc.noaa.gov/oa/pod-guide/ncdc/docs/podug/html/c2/sec2-0.htm header3 = np.dtype([("noaa_spacecraft_identification_code", ">u1"), ("data_type_code", ">u1"), ("start_time", ">u2", (3, )), ("number_of_scans", ">u2"), ("end_time", ">u2", (3, )), ("processing_block_id", "S7"), ("ramp_auto_calibration", ">u1"), ("number_of_data_gaps", ">u2"), ("dacs_quality", ">u1", (6, )), ("calibration_parameter_id", ">i2"), ("dacs_status", ">u1"), ("reserved_for_mounting_and_fixed_attitude_correction_indicator", ">i1"), ("nadir_earth_location_tolerance", ">i1"), ("spare1", ">i1"), ("start_of_data_set_year", ">u2"), ("data_set_name", "S44"), ("year_of_epoch", ">u2"), ("julian_day_of_epoch", ">u2"), ("millisecond_utc_epoch_time_of_day", ">u4"), # Keplerian orbital elements ("semi_major_axis", ">i4"), ("eccentricity", ">i4"), ("inclination", ">i4"), ("argument_of_perigee", ">i4"), ("right_ascension", ">i4"), ("mean_anomaly", ">i4"), # cartesian inertial true date of elements ("x_component_of_position_vector", ">i4"), ("y_component_of_position_vector", ">i4"), ("z_component_of_position_vector", ">i4"), ("x_dot_component_of_position_vector", ">i4"), ("y_dot_component_of_position_vector", ">i4"), ("z_dot_component_of_position_vector", ">i4"), # future use ("yaw_fixed_error_correction", ">i2"), ("roll_fixed_error_correction", ">i2"), ("pitch_fixed_error_correction", ">i2")]) # archive header tbm_header = np.dtype([('fill', 'S30'), ('data_set_name', 'S44'), ('select_flag', 'S1'), ('beginning_latitude', 'S3'), ('ending_latitude', 'S3'), ('beginning_longitude', 'S4'), ('ending_longitude', 'S4'), ('start_hour', 'S2'), ('start_minute', 'S2'), ('number_of_minutes', 'S3'), ('appended_data_flag', 'S1'), ('channel_select_flag', 'S1', (20, )), ('sensor_data_word_size', 'S2'), ('fill2', 'S3')]) class PODReader(Reader): """The POD reader.""" spacecrafts_orbital = {25: 'tiros n', 2: 'noaa 6', 4: 'noaa 7', 6: 'noaa 8', 7: 'noaa 9', 8: 'noaa 10', 1: 'noaa 11', 5: 'noaa 12', 3: 'noaa 14', } spacecraft_names = {25: 'tirosn', 2: 'noaa6', 4: 'noaa7', 6: 'noaa8', 7: 'noaa9', 8: 'noaa10', 1: 'noaa11', 5: 'noaa12', 3: 'noaa14', } tsm_affected_intervals = TSM_AFFECTED_INTERVALS_POD QFlag = POD_QualityIndicator _quality_indicators_key = "quality_indicators" def correct_scan_line_numbers(self): """Correct the scan line numbers.""" # Perform common corrections first. super(PODReader, self).correct_scan_line_numbers() # cleaning up the data min_scanline_number = np.amin( np.absolute(self.scans["scan_line_number"][:])) if self.scans["scan_line_number"][0] == self.scans["scan_line_number"][-1] + 1: while self.scans["scan_line_number"][0] != min_scanline_number: self.scans = np.roll(self.scans, -1) else: while self.scans["scan_line_number"][0] != min_scanline_number: self.scans = self.scans[1:] self.scans = self.scans[self.scans["scan_line_number"] != 0] def read(self, filename, fileobj=None): """Read the data. Args: filename (str): Path to GAC/LAC file fileobj: An open file object to read from. (optional) Returns: header: numpy record array The header metadata scans: numpy record array The scanlines """ self.filename = filename LOG.info('Reading %s', self.filename) # choose the right header depending on the date with file_opener(fileobj or filename) as fd_: self.tbm_head, self.head = self.read_header( filename, fileobj=fd_) if self.tbm_head: tbm_offset = tbm_header.itemsize else: tbm_offset = 0 # read scan lines until end of file fd_.seek(self.offset + tbm_offset, 0) buffer = fd_.read() count = self.head["number_of_scans"] self._read_scanlines(buffer, count) year, jday, _ = self.decode_timestamps(self.head["start_time"]) start_date = (datetime.date(year, 1, 1) + datetime.timedelta(days=int(jday) - 1)) self.correct_scan_line_numbers() self.spacecraft_id = self.head["noaa_spacecraft_identification_code"] if self.spacecraft_id == 1 and start_date < datetime.date(1982, 1, 1): self.spacecraft_id = 25 self.spacecraft_name = self.spacecraft_names[self.spacecraft_id] LOG.info( "Reading %s data", self.spacecrafts_orbital[self.spacecraft_id]) return self.head, self.scans @classmethod def read_header(cls, filename, fileobj=None): """Read the file header. Args: filename (str): Path to GAC/LAC file fileobj: An open file object to read from. (optional) Returns: archive_header (struct): archive header header (struct): file header """ # choose the right header depending on the date with file_opener(fileobj or filename) as fd_: # read tbm_header if present _tbm_head, = np.frombuffer( fd_.read(tbm_header.itemsize), dtype=tbm_header, count=1) try: data_set_name = _tbm_head['data_set_name'].decode() except UnicodeDecodeError: data_set_name = '---' allowed_empty = (42*b'\x00' + b' ') if (cls.data_set_pattern.match(data_set_name) or (_tbm_head['data_set_name'] == allowed_empty)): tbm_head = _tbm_head.copy() tbm_offset = tbm_header.itemsize else: fd_.seek(0) tbm_head = None tbm_offset = 0 # read header head0, = np.frombuffer( fd_.read(header0.itemsize), dtype=header0, count=1) year, jday, _ = cls.decode_timestamps(head0["start_time"]) start_date = (datetime.date(year, 1, 1) + datetime.timedelta(days=int(jday) - 1)) if start_date < datetime.date(1992, 9, 8): header = header1 elif start_date <= datetime.date(1994, 11, 15): header = header2 else: header = header3 fd_.seek(tbm_offset, 0) # need to copy frombuffer to have write access on head head, = np.frombuffer( fd_.read(header.itemsize), dtype=header, count=1).copy() head = cls._correct_data_set_name(head, filename) cls._validate_header(head) return tbm_head, head @classmethod def _validate_header(cls, header): """Check if the header belongs to this reader.""" # call super to enter the Method Resolution Order (MRO) super(PODReader, cls)._validate_header(header) LOG.debug("validate header") data_set_name = header['data_set_name'].decode() # split header into parts creation_site, transfer_mode, platform_id = ( data_set_name.split('.')[:3]) allowed_ids = ['TN', 'NA', 'NB', 'NC', 'ND', 'NE', 'NF', 'NG', 'NH', 'NI', 'NJ'] if platform_id not in allowed_ids: raise ReaderError('Improper platform id "%s"!' % platform_id) def get_header_timestamp(self): """Get the timestamp from the header. Returns: A datetime object containing the timestamp from the header. Raises: A ValueError if the timestamp is corrupt. """ year, jday, msec = self.decode_timestamps(self.head["start_time"]) try: return self.to_datetime(self.to_datetime64(year=year, jday=jday, msec=msec)) except ValueError as err: raise ValueError('Corrupt header timestamp: {0}'.format(err)) @staticmethod def decode_timestamps(encoded): """Decode timestamps. Returns: year day of year milliseconds since 00:00 """ ndims = len(encoded.shape) if ndims == 1: # Single header timestamp enc0 = encoded[0] enc1 = encoded[1] enc2 = encoded[2] elif ndims == 2: # Scanline timestamps enc0 = encoded[:, 0] enc1 = encoded[:, 1] enc2 = encoded[:, 2] else: raise ValueError('Invalid timestamp dimension') year = enc0 >> 9 year = np.where(year > 75, year + 1900, year + 2000) jday = (enc0 & 0x1FF) msec = ((np.uint32(enc1 & 2047) << 16) | (np.uint32(enc2))) return year, jday, msec def _get_times(self): return self.decode_timestamps(self.scans["time_code"]) def _compute_missing_lonlat(self, missed_utcs): """Compute lon lat values using pyorbital.""" tic = datetime.datetime.now() scan_rate = datetime.timedelta(milliseconds=1/self.scan_freq).total_seconds() sgeom = avhrr_gac(missed_utcs.astype(datetime.datetime), self.scan_points, frequency=scan_rate) t0 = missed_utcs[0].astype(datetime.datetime) s_times = sgeom.times(t0) tle1, tle2 = self.get_tle_lines() rpy = self.get_attitude_coeffs() pixels_pos = compute_pixels((tle1, tle2), sgeom, s_times, rpy) pos_time = get_lonlatalt(pixels_pos, s_times) missed_lons, missed_lats = pos_time[:2] pixels_per_line = self.lats.shape[1] missed_lons = missed_lons.reshape(-1, pixels_per_line) missed_lats = missed_lats.reshape(-1, pixels_per_line) toc = datetime.datetime.now() LOG.warning("Computation of geolocation: %s", str(toc - tic)) return missed_lons, missed_lats def _adjust_clock_drift(self): """Adjust the geolocation to compensate for the clock error.""" tic = datetime.datetime.now() self.get_times() try: error_utcs, clock_error = get_offsets(self.spacecraft_name) except KeyError: LOG.info("No clock drift info available for %s", self.spacecraft_name) return error_utcs = np.array(error_utcs, dtype='datetime64[ms]') # interpolate to get the clock offsets at the scan line utcs # the clock_error is given in seconds, so offsets are in seconds, too. offsets = np.interp(self.utcs.astype(np.uint64), error_utcs.astype(np.uint64), clock_error) LOG.info("Adjusting for clock drift of %s to %s seconds.", str(min(offsets)), str(max(offsets))) # For the interpolation of geolocations, we need to prepend/append # lines. The conversion from offset to line numbers is given by the # scan rate = 1/scan frequency. scan_rate = datetime.timedelta(milliseconds=1/self.scan_freq) offset_lines = offsets / scan_rate.total_seconds() # To avoid trouble with missing lines, we will construct an # array that covers the whole interpolation range. scan_lines = self.scans["scan_line_number"] shifted_lines = scan_lines - offset_lines shifted_lines_floor = np.floor(shifted_lines).astype(int) # compute the line range, note that the max requires a "+1" # to cover the interpolation range because of the floor. min_line = min(scan_lines.min(), shifted_lines_floor.min()) max_line = max(scan_lines.max(), shifted_lines_floor.max()+1) num_lines = max_line - min_line + 1 missed_lines = np.setdiff1d(np.arange(min_line, max_line+1), scan_lines) missed_utcs = ((missed_lines - scan_lines[0])*np.timedelta64(scan_rate, "ms") + self.utcs[0]) # calculate the missing geo locations try: missed_lons, missed_lats = self._compute_missing_lonlat(missed_utcs) except NoTLEData as err: LOG.warning('Cannot perform clock drift correction: %s', str(err)) return # create arrays of lons and lats for interpolation. The locations # correspond to not yet corrected utcs, i.e. the time difference from # one line to the other should be equal to the scan rate. pixels_per_line = self.lats.shape[1] complete_lons = np.full((num_lines, pixels_per_line), np.nan, dtype=np.float64) complete_lats = np.full((num_lines, pixels_per_line), np.nan, dtype=np.float64) complete_lons[scan_lines - min_line] = self.lons complete_lats[scan_lines - min_line] = self.lats complete_lons[missed_lines - min_line] = missed_lons complete_lats[missed_lines - min_line] = missed_lats # perform the slerp interpolation to the corrected utc times slerp_t = shifted_lines - shifted_lines_floor # in [0, 1) slerp_res = slerp(complete_lons[shifted_lines_floor - min_line, :], complete_lats[shifted_lines_floor - min_line, :], complete_lons[shifted_lines_floor - min_line + 1, :], complete_lats[shifted_lines_floor - min_line + 1, :], slerp_t[:, np.newaxis, np.newaxis]) # set corrected values self.lons = slerp_res[:, :, 0] self.lats = slerp_res[:, :, 1] self.utcs -= (offsets * 1000).astype('timedelta64[ms]') toc = datetime.datetime.now() LOG.debug("clock drift adjustment took %s", str(toc - tic)) def _get_lonlat(self): lats = self.scans["earth_location"][:, 0::2] / 128.0 lons = self.scans["earth_location"][:, 1::2] / 128.0 return lons, lats def get_telemetry(self): """Get the telemetry. Returns: prt_counts: np.array ict_counts: np.array space_counts: np.array """ number_of_scans = self.scans["telemetry"].shape[0] decode_tele = np.zeros((int(number_of_scans), 105)) decode_tele[:, ::3] = (self.scans["telemetry"] >> 20) & 1023 decode_tele[:, 1::3] = (self.scans["telemetry"] >> 10) & 1023 decode_tele[:, 2::3] = self.scans["telemetry"] & 1023 prt_counts = np.mean(decode_tele[:, 17:20], axis=1) # getting ICT counts ict_counts = np.zeros((int(number_of_scans), 3)) ict_counts[:, 0] = np.mean(decode_tele[:, 22:50:3], axis=1) ict_counts[:, 1] = np.mean(decode_tele[:, 23:51:3], axis=1) ict_counts[:, 2] = np.mean(decode_tele[:, 24:52:3], axis=1) # getting space counts space_counts = np.zeros((int(number_of_scans), 3)) space_counts[:, 0] = np.mean(decode_tele[:, 54:100:5], axis=1) space_counts[:, 1] = np.mean(decode_tele[:, 55:101:5], axis=1) space_counts[:, 2] = np.mean(decode_tele[:, 56:102:5], axis=1) return prt_counts, ict_counts, space_counts @staticmethod def _get_ir_channels_to_calibrate(): ir_channels_to_calibrate = [3, 4, 5] return ir_channels_to_calibrate def postproc(self, channels): """No POD specific postprocessing to be done.""" pass def get_tsm_pixels(self, channels): """Determine pixels affected by the scan motor issue. Uses channels 1, 2, 4 and 5. Neither 3a, nor 3b. """ return get_tsm_idx(channels[:, :, 0], channels[:, :, 1], channels[:, :, 3], channels[:, :, 4]) def _get_calibrated_channels_uniform_shape(self): """Prepare the channels as input for gac_io.save_gac.""" _channels = self.get_calibrated_channels() # prepare input # maybe there is a better (less memory requiring) method shape = _channels.shape[:-1] + (6,) # empty_like does not know the kwarg shape in older versions channels = np.empty(shape, dtype=_channels.dtype) channels[:, :, 0] = _channels[:, :, 0] channels[:, :, 1] = _channels[:, :, 1] channels[:, :, 2] = np.nan channels[:, :, 3] = _channels[:, :, 2] channels[:, :, 4] = _channels[:, :, 3] channels[:, :, 5] = _channels[:, :, 4] return channels def main_pod(reader_cls, filename, start_line, end_line): """Generate a l1c file.""" tic = datetime.datetime.now() reader = reader_cls.fromfile(filename) reader.save(int(start_line), int(end_line)) LOG.info("pygac took: %s", str(datetime.datetime.now() - tic)) pygac-1.7.2/pygac/pygac_geotiepoints.py000066400000000000000000000042771444627033600202200ustar00rootroot00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (c) 2010-2012. # Author(s): # Adam Dybbroe # Martin Raspaud # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . """Interpolation of geographical tiepoints.""" import geotiepoints as gtp import numpy as np def gac_lat_lon_interpolator(lons_subset, lats_subset): """Interpolate lat-lon values in the AVHRR GAC data. Each GAC row has 409 pixels. But lat-lon values are provided for every eigth pixel, ranging from 5 to 405. Interpolate to full resolution. """ cols_subset = np.arange(4, 405, 8) cols_full = np.arange(409) return lat_lon_interpolator(lons_subset, lats_subset, cols_subset, cols_full) def lac_lat_lon_interpolator(lons_subset, lats_subset): """Interpolate lat-lon values in the AVHRR LAC data.""" cols_subset = np.arange(24, 2048, 40) cols_full = np.arange(2048) return lat_lon_interpolator(lons_subset, lats_subset, cols_subset, cols_full) def lat_lon_interpolator(lons_subset, lats_subset, cols_subset, cols_full): """Interpolate lat-lon values in the AVHRR data.""" lines = lats_subset.shape[0] rows_subset = np.arange(lines) rows_full = np.arange(lines) along_track_order = 1 cross_track_order = 3 satint = gtp.SatelliteInterpolator((lons_subset, lats_subset), (rows_subset, cols_subset), (rows_full, cols_full), along_track_order, cross_track_order) return satint.interpolate() pygac-1.7.2/pygac/reader.py000066400000000000000000001272251444627033600155650ustar00rootroot00000000000000#!/usr/bin/env python # Copyright (c) 2014, 2019 Pygac Developers # Author(s): # Martin Raspaud # Carlos Horn # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . """Generic reader for GAC and LAC data. Can't be used as is, has to be subclassed to add specific read functions. """ from abc import ABCMeta, abstractmethod import datetime import logging import numpy as np import os import re import six import types import warnings import pyorbital from pygac.utils import (centered_modulus, calculate_sun_earth_distance_correction, get_absolute_azimuth_angle_diff) from pyorbital.orbital import Orbital from pyorbital import astronomy from pygac.calibration import Calibrator, calibrate_solar, calibrate_thermal from pygac import gac_io from packaging.version import Version LOG = logging.getLogger(__name__) # rpy values from # here:http://yyy.rsmas.miami.edu/groups/rrsl/pathfinder/Processing/proc_app_a.html rpy_coeffs = { 'noaa7': {'roll': 0.000, 'pitch': 0.000, 'yaw': 0.000, }, 'noaa9': {'roll': 0.000, 'pitch': 0.0025, 'yaw': 0.000, }, 'noaa10': {'roll': 0.000, 'pitch': 0.000, 'yaw': 0.000, }, 'noaa11': {'roll': -0.0019, 'pitch': -0.0037, 'yaw': 0.000, }, 'noaa12': {'roll': 0.000, 'pitch': 0.000, 'yaw': 0.000, }, 'noaa14': {'roll': 0.000, 'pitch': 0.000, 'yaw': 0.000, }} class ReaderError(ValueError): """Raised in Reader.read if the given file does not correspond to it.""" pass class NoTLEData(IndexError): """Raised if no TLE data available within time range.""" class Reader(six.with_metaclass(ABCMeta)): """Reader for GAC and LAC format, POD and KLM platforms.""" # data set header format, see _validate_header for more details data_set_pattern = re.compile( r'\w{3}\.\w{4}\.\w{2}.D\d{5}\.S\d{4}\.E\d{4}\.B\d{7}\.\w{2}') def __init__(self, interpolate_coords=True, adjust_clock_drift=True, tle_dir=None, tle_name=None, tle_thresh=7, creation_site=None, custom_calibration=None, calibration_file=None): """Init the reader. Args: interpolate_coords: Interpolate coordinates from tiepoint grid to all pixels. adjust_clock_drift: Adjust the geolocation to compensate for the clock error (POD satellites only). tle_dir: Directory holding TLE files tle_name: Filename pattern of TLE files. tle_thresh: Maximum number of days between observation and nearest TLE creation_site: The three-letter identifier of the creation site (eg 'NSS') custom_calibration: dictionary with a subset of user defined satellite specific calibration coefficients calibration_file: path to json file containing default calibrations """ self.meta_data = {} self.interpolate_coords = interpolate_coords self.adjust_clock_drift = adjust_clock_drift self.tle_dir = tle_dir self.tle_name = tle_name self.tle_thresh = tle_thresh self.creation_site = (creation_site or 'NSS').encode('utf-8') self.custom_calibration = custom_calibration self.calibration_file = calibration_file self.head = None self.scans = None self.spacecraft_name = None self.spacecraft_id = None self.utcs = None self.lats = None self.lons = None self.tle_lines = None self.filename = None self._mask = None self._rpy = None @property def times(self): """Get the UTCs as datetime.datetime.""" return self.to_datetime(self.utcs) @property def filename(self): """Get the property 'filename'.""" return self._filename @filename.setter def filename(self, filepath): """Set the property 'filename'.""" if filepath is None: self._filename = None else: filepath = os.fspath(filepath) match = self.data_set_pattern.search(filepath) if match: self._filename = match.group() else: self._filename = os.path.basename(filepath) @property def calibration(self): """Get the property 'calibration'.""" calibration = Calibrator( self.spacecraft_name, custom_coeffs=self.custom_calibration, coeffs_file=self.calibration_file ) return calibration @abstractmethod def read(self, filename, fileobj=None): # pragma: no cover """Read the GAC/LAC data. Args: filename (str): Path to GAC/LAC file fileobj: An open file object to read from. (optional) """ raise NotImplementedError @classmethod @abstractmethod def read_header(cls, filename, fileobj=None): # pragma: no cover """Read the file header. Args: filename (str): Path to GAC/LAC file fileobj: An open file object to read from. (optional) Returns: archive_header (struct): archive header header (struct): file header Note: This is a classmethod to avoid throwaway instances while checking if the reader corresponds to the input file. """ raise NotImplementedError @classmethod def _correct_data_set_name(cls, header, filename): """Replace invalid data_set_name from header with filename. Args: header (struct): file header filename (str): path to file """ filename = str(filename) data_set_name = header['data_set_name'].decode(errors='ignore') if not cls.data_set_pattern.match(data_set_name): LOG.debug('The data_set_name in header %s does not match.' ' Use filename instead.' % header['data_set_name']) match = cls.data_set_pattern.search(filename) if match: data_set_name = match.group() LOG.debug("Set data_set_name, to filename %s" % data_set_name) header['data_set_name'] = data_set_name.encode() else: LOG.debug("header['data_set_name']=%s; filename='%s'" % (header['data_set_name'], filename)) raise ReaderError('Cannot determine data_set_name!') return header @classmethod def _validate_header(cls, header): """Check if the header belongs to this reader. Note: according to https://www1.ncdc.noaa.gov/pub/data/satellite/ publications/podguides/TIROS-N%20thru%20N-14/pdf/NCDCPOD2.pdf and https://www1.ncdc.noaa.gov/pub/data/satellite/ publications/podguides/N-15%20thru%20N-19/pdf/ 2.5%20Section%208.0%20NOAA%20Level%201B%20Database.pdf the data set name splits into PROCESSING-CENTER.DATA-TYPE.SPACECRAFT-UNIQUE-ID. YEAR-DAY.START-TIME.STOP-TIME.PROCESSING-BLOCK-ID.SOURCE This should be sufficient information to determine the reader. Global Area Coverage (GAC): DATA-TYPE = GHRR Local Area Coverage (LAC): DATA-TYPE = LHRR Polar Orbiter Data (POD): SPACECRAFT-UNIQUE-ID in [TN, NA, NB, NC, ND, NE, NF, NG, NH, NI, NJ] NOAA-K, -L, -M system, but also newer satellites (KLM): SPACECRAFT-UNIQUE-ID in [NK, NL, NM, NN, NP, M2, M1] """ # This method does not need to be implemented in all subclasses. # It is intended for cooperative multiple inheritance, i.e. # each child class which implements this method, should call the # super method to enter into the method resolution order. # See https://docs.python.org/3/library/functions.html#super # second use case "diamond diagrams". # Check if the data set name matches the pattern LOG.debug("validate header") data_set_name = header['data_set_name'].decode(errors='ignore') if not cls.data_set_pattern.match(data_set_name): raise ReaderError('Data set name %s does not match!' % header['data_set_name']) def _read_scanlines(self, buffer, count): """Read the scanlines from the given buffer. Args: buffer (bytes, bytearray): buffer to read from count (int): number of expected scanlines """ # Calculate the actual number of complete scanlines. The integer divisoin # may strip a potentially incomplete line at the end of the file. line_count = len(buffer) // self.scanline_type.itemsize if line_count != count: LOG.warning( "Expected %d scan lines, but found %d!" % (count, line_count)) warnings.warn("Unexpected number of scanlines!", category=RuntimeWarning) self.scans = np.frombuffer( buffer, dtype=self.scanline_type, count=line_count) @classmethod def can_read(cls, filename, fileobj=None): """Read the GAC/LAC data. Args: filename (str): Path to GAC/LAC file fileobj: An open file object to read from. (optional) Retruns: result (bool): True if the reader can read the input """ if fileobj: pos = fileobj.tell() try: archive_header, header = cls.read_header( filename, fileobj=fileobj) result = True except (ReaderError, ValueError) as exception: LOG.debug("%s failed to read the file! %s" % (cls.__name__, repr(exception))) result = False finally: if fileobj: fileobj.seek(pos) return result @classmethod def fromfile(cls, filename, fileobj=None): """Create Reader from file, alternative constructor. Args: filename (str): Path to GAC/LAC file Kwargs: fileobj (file object): Open file object to read from Note: The fileobj is useful when dealing with tar archives, where the filename is given by the tarinfo object, but the extracted file object's property 'name' is set to the filename of the archive. """ instance = cls() instance.read(filename, fileobj=fileobj) return instance def _get_calibrated_channels_uniform_shape(self): """Prepare the channels as input for gac_io.save_gac.""" channels = self.get_calibrated_channels() assert channels.shape[-1] == 6 return channels def save(self, start_line, end_line, output_file_prefix="PyGAC", output_dir="./", avhrr_dir=None, qual_dir=None, sunsatangles_dir=None): """Convert the Reader instance content into hdf5 files.""" avhrr_dir = avhrr_dir or output_dir qual_dir = qual_dir or output_dir sunsatangles_dir = sunsatangles_dir or output_dir self.get_lonlat() channels = self._get_calibrated_channels_uniform_shape() sat_azi, sat_zen, sun_azi, sun_zen, rel_azi = self.get_angles() qual_flags = self.get_qual_flags() if (np.all(self.mask)): print("ERROR: All data is masked out. Stop processing") raise ValueError("All data is masked out.") gac_io.save_gac( self.spacecraft_name, self.utcs, self.lats, self.lons, channels[:, :, 0], channels[:, :, 1], channels[:, :, 2], channels[:, :, 3], channels[:, :, 4], channels[:, :, 5], sun_zen, sat_zen, sun_azi, sat_azi, rel_azi, qual_flags, start_line, end_line, self.filename, self.meta_data, output_file_prefix, avhrr_dir, qual_dir, sunsatangles_dir ) @abstractmethod def get_header_timestamp(self): # pragma: no cover """Read start timestamp from the header. Returns: datetime.datetime: Start timestamp """ raise NotImplementedError def get_counts(self): """Get the counts. Returns: np.array: The counts, with channel 3a and 3b split if necessary. """ packed_data = self.scans["sensor_data"] counts = np.zeros((len(self.scans), self.scan_width * 5)) counts_nb = (self.scan_width * 5) // 3 remainder = (self.scan_width * 5) % 3 if remainder == 0: nb1 = nb2 = nb3 = counts_nb elif remainder == 1: nb1 = counts_nb + 1 nb2 = nb3 = counts_nb elif remainder == 2: nb1 = nb2 = counts_nb + 1 nb3 = counts_nb counts[:, 0::3] = ((packed_data >> 20) & 1023)[:, :nb1] counts[:, 1::3] = ((packed_data >> 10) & 1023)[:, :nb2] counts[:, 2::3] = (packed_data & 1023)[:, :nb3] counts = counts.reshape((-1, self.scan_width, 5)) try: switch = self.get_ch3_switch() except AttributeError: return counts else: channels = np.zeros((len(self.scans), self.scan_width, 6), dtype=counts.dtype) channels[:, :, :2] = counts[:, :, :2] channels[:, :, -2:] = counts[:, :, -2:] channels[:, :, 2][switch == 1] = counts[:, :, 2][switch == 1] channels[:, :, 3][switch == 0] = counts[:, :, 2][switch == 0] return channels @abstractmethod def _get_times(self): # pragma: no cover """Specify how to read scanline timestamps from GAC data. Returns: int: year int: day of year int: milliseconds since 00:00 """ raise NotImplementedError def get_times(self): """Read scanline timestamps and try to correct invalid values. Note: Also sets self.utcs and self.times! Returns: UTC timestamps """ if self.utcs is None: # Read timestamps year, jday, msec = self._get_times() # Correct invalid values year, jday, msec = self.correct_times_median(year=year, jday=jday, msec=msec) self.utcs = self.to_datetime64(year=year, jday=jday, msec=msec) self.correct_times_thresh() return self.utcs @staticmethod def to_datetime64(year, jday, msec): """Convert timestamps to numpy.datetime64. Args: year: Year jday: Day of the year (1-based) msec: Milliseconds since 00:00 Returns: numpy.datetime64: Converted timestamps """ return (year.astype(str).astype('datetime64[Y]') + (jday - 1).astype('timedelta64[D]') + msec.astype('timedelta64[ms]')) @staticmethod def to_datetime(datetime64): """Convert numpy.datetime64 to datetime.datetime. Args: datetime64 (numpy.datetime64): Numpy timestamp to be converted. Returns: datetime.datetime: Converted timestamp """ return datetime64.astype(datetime.datetime) def lineno2msec(self, scan_line_number): """Compute ideal scanline timestamp based on the scanline number. Assumes a constant scanning frequency. Args: scan_line_number: Specifies the scanline number (1-based) Returns: Corresponding timestamps in milliseconds since 1970-01-01 00:00, i.e. the first scanline has timestamp 0. """ return (scan_line_number - 1) / self.scan_freq def get_sun_earth_distance_correction(self): """Get the julian day and the sun-earth distance correction.""" self.get_times() jday = self.times[0].timetuple().tm_yday return calculate_sun_earth_distance_correction(jday) def update_meta_data(self): """Add some metd data to the meta_data dicitonary.""" if 'sun_earth_distance_correction_factor' not in self.meta_data: self.meta_data['sun_earth_distance_correction_factor'] = ( self.get_sun_earth_distance_correction()) if 'midnight_scanline' not in self.meta_data: self.meta_data['midnight_scanline'] = self.get_midnight_scanline() if 'missing_scanlines' not in self.meta_data: self.meta_data['missing_scanlines'] = self.get_miss_lines() if 'gac_header' not in self.meta_data: self.meta_data['gac_header'] = self.head.copy() self.meta_data['calib_coeffs_version'] = self.calibration.version def get_calibrated_channels(self): """Calibrate and return the channels.""" channels = self.get_counts() self.get_times() times = self.times self.update_meta_data() year = times[0].year delta = times[0].date() - datetime.date(year, 1, 1) jday = delta.days + 1 corr = self.meta_data['sun_earth_distance_correction_factor'] calibration_coeffs = self.calibration # how many reflective channels are there ? tot_ref = channels.shape[2] - 3 channels[:, :, 0:tot_ref] = calibrate_solar( channels[:, :, 0:tot_ref], np.arange(tot_ref), year, jday, calibration_coeffs, corr ) prt, ict, space = self.get_telemetry() ir_channels_to_calibrate = self._get_ir_channels_to_calibrate() for chan in ir_channels_to_calibrate: channels[:, :, chan - 6] = calibrate_thermal( channels[:, :, chan - 6], prt, ict[:, chan - 3], space[:, chan - 3], self.scans["scan_line_number"], chan, calibration_coeffs ) # Mask out corrupt values channels[self.mask] = np.nan # Apply KLM/POD specific postprocessing self.postproc(channels) # Mask pixels affected by scan motor issue if self.is_tsm_affected(): LOG.info('Correcting for temporary scan motor issue') self.mask_tsm_pixels(channels) return channels @abstractmethod def get_telemetry(self): # pragma: no cover """KLM/POD specific readout of telemetry.""" raise NotImplementedError def get_lonlat(self): """Compute lat/lon coordinates. TODO: Switch to faster interpolator? """ if self.lons is None and self.lats is None: self.lons, self.lats = self._get_lonlat() self.update_meta_data() # Interpolate from every eighth pixel to all pixels. if self.interpolate_coords: self.lons, self.lats = self.lonlat_interpolator( self.lons, self.lats) # Adjust clock drift if self.adjust_clock_drift: self._adjust_clock_drift() # Mask out corrupt scanlines self.lons[self.mask] = np.nan self.lats[self.mask] = np.nan # Mask values outside the valid range self.lats[np.fabs(self.lats) > 90.0] = np.nan self.lons[np.fabs(self.lons) > 180.0] = np.nan return self.lons, self.lats @abstractmethod def _get_lonlat(self): # pragma: no cover """KLM/POD specific readout of lat/lon coordinates.""" raise NotImplementedError @property def mask(self): """Mask for corrupt scanlines.""" if self._mask is None: self._mask = self._get_corrupt_mask() return self._mask @property @abstractmethod def QFlag(self): # pragma: no cover """KLM/POD specific quality indicators.""" raise NotImplementedError @property @abstractmethod def _quality_indicators_key(self): # pragma: no cover raise NotImplementedError def _get_corrupt_mask(self, flags=None): """Readout of corrupt scanline mask. Args: flags (QFlag.flag): An "ORed" bitmask that defines corrupt values. Defauts to (QFlag.FATAL_FLAG | QFlag.CALIBRATION | QFlag.NO_EARTH_LOCATION) Note: The Quality flags mapping (QFlag) is KLM/POD specific. """ QFlag = self.QFlag if flags is None: flags = QFlag.FATAL_FLAG | QFlag.CALIBRATION | QFlag.NO_EARTH_LOCATION return (self.scans[self._quality_indicators_key] & int(flags)).astype(bool) def get_qual_flags(self): """Read quality flags.""" number_of_scans = self.scans["telemetry"].shape[0] qual_flags = np.zeros((int(number_of_scans), 7)) qual_flags[:, 0] = self.scans["scan_line_number"] qual_flags[:, 1] = self._get_corrupt_mask(flags=self.QFlag.FATAL_FLAG) qual_flags[:, 2] = self._get_corrupt_mask(flags=self.QFlag.CALIBRATION) qual_flags[:, 3] = self._get_corrupt_mask(flags=self.QFlag.NO_EARTH_LOCATION) qual_flags[:, 4] = self._get_corrupt_mask(flags=self.QFlag.CH_3_CONTAMINATION) qual_flags[:, 5] = self._get_corrupt_mask(flags=self.QFlag.CH_4_CONTAMINATION) qual_flags[:, 6] = self._get_corrupt_mask(flags=self.QFlag.CH_5_CONTAMINATION) return qual_flags @abstractmethod def postproc(self, channels): # pragma: no cover """Apply KLM/POD specific postprocessing.""" raise NotImplementedError @abstractmethod def _adjust_clock_drift(self): # pragma: no cover """Adjust clock drift.""" raise NotImplementedError @staticmethod def tle2datetime64(times): """Convert TLE timestamps to numpy.datetime64. Args: times (float): TLE timestamps as %y%j.1234, e.g. 18001.25 """ # Convert %y%j.12345 to %Y%j.12345 (valid for 1950-2049) times = np.where(times > 50000, times + 1900000, times + 2000000) # Convert float to datetime64 doys = (times % 1000).astype('int') - 1 years = (times // 1000).astype('int') msecs = np.rint(24 * 3600 * 1000 * (times % 1)) times64 = ( years - 1970).astype('datetime64[Y]').astype('datetime64[ms]') times64 += doys.astype('timedelta64[D]') times64 += msecs.astype('timedelta64[ms]') return times64 def get_tle_file(self): """Find TLE file for the current satellite.""" tle_dir, tle_name = self.tle_dir, self.tle_name if tle_dir is None: raise RuntimeError("TLE directory not specified!") if tle_name is None: raise RuntimeError("TLE name not specified!") values = {"satname": self.spacecraft_name, } tle_filename = os.path.join(tle_dir, tle_name % values) LOG.info('TLE filename = ' + str(tle_filename)) return tle_filename def read_tle_file(self, tle_filename): """Read TLE file.""" with open(tle_filename, 'r') as fp_: return fp_.readlines() def get_tle_lines(self): """Find closest two line elements (TLEs) for the current orbit. Raises: IndexError, if the closest TLE is more than :meth:`pygac.GACReader.tle_thresh` days apart """ if self.tle_lines is not None: return self.tle_lines self.get_times() tle_data = self.read_tle_file(self.get_tle_file()) sdate = self.utcs[0] dates = self.tle2datetime64( np.array([float(line[18:32]) for line in tle_data[::2]])) # Find index "iindex" such that dates[iindex-1] < sdate <= dates[iindex] # Notes: # 1. If sdate < dates[0] then iindex = 0 # 2. If sdate > dates[-1] then iindex = len(dates), beyond the right boundary! iindex = np.searchsorted(dates, sdate) if iindex in (0, len(dates)): if iindex == len(dates): # Reset index if beyond the right boundary (see note 2. above) iindex -= 1 elif abs(sdate - dates[iindex - 1]) < abs(sdate - dates[iindex]): # Choose the closest of the two surrounding dates iindex -= 1 # Make sure the TLE we found is within the threshold delta_days = abs(sdate - dates[iindex]) / np.timedelta64(1, 'D') if delta_days > self.tle_thresh: raise NoTLEData( "Can't find tle data for %s within +/- %d days around %s" % (self.spacecraft_name, self.tle_thresh, sdate)) if delta_days > 3: LOG.warning("Found TLE data for %s that is %f days appart", sdate, delta_days) else: LOG.debug("Found TLE data for %s that is %f days appart", sdate, delta_days) # Select TLE data tle1 = tle_data[iindex * 2] tle2 = tle_data[iindex * 2 + 1] self.tle_lines = tle1, tle2 return tle1, tle2 def get_sat_angles(self): """Get satellite angles. Returns: Azimuth, elevation (degrees) """ try: return self._get_sat_angles_with_tle() except NoTLEData: LOG.warning( 'No TLE data available. Falling back to approximate ' 'calculation of satellite angles.' ) return self._get_sat_angles_without_tle() def _get_sat_angles_with_tle(self): tle1, tle2 = self.get_tle_lines() orb = Orbital(self.spacecrafts_orbital[self.spacecraft_id], line1=tle1, line2=tle2) sat_azi, sat_elev = orb.get_observer_look(self.times[:, np.newaxis], self.lons, self.lats, 0) return sat_azi, sat_elev def _get_sat_angles_without_tle(self): """Get satellite angles using lat/lon from data to approximate satellite postition instead of TLE.""" from pyorbital.orbital import get_observer_look as get_observer_look_no_tle LOG.warning('Approximating satellite height to 850km (TIROS-N OSCAR)!') sat_alt = 850.0 # km TIROS-N OSCAR mid_column = int(0.5*self.lons.shape[1]) sat_azi, sat_elev = get_observer_look_no_tle( self.lons[:, mid_column][:, np.newaxis], self.lats[:, mid_column][:, np.newaxis], # approximate satellite position sat_alt, # approximate satellite altitude self.times[:, np.newaxis], self.lons, self.lats, 0) # Sometimes (pyorbital <= 1.6.1) the get_observer_look_not_tle returns nodata instead of 90. # Problem solved with https://github.com/pytroll/pyorbital/pull/77 if Version(pyorbital.__version__) <= Version('1.6.1'): sat_elev[:, mid_column] = 90 return sat_azi, sat_elev def get_angles(self): """Get azimuth and zenith angles. Azimuth angle definition is the same as in pyorbital, but with different units (degrees not radians for sun azimuth angles) and different ranges. Returns: sat_azi: satellite azimuth angle degree clockwise from north in range ]-180, 180] sat_zenith: satellite zenith angles in degrees in range [0,90] sun_azi: sun azimuth angle degree clockwise from north in range ]-180, 180] sun_zenith: sun zenith angles in degrees in range [0,90] rel_azi: absolute azimuth angle difference in degrees between sun and sensor in range [0, 180] """ self.get_times() self.get_lonlat() times = self.times sat_azi, sat_elev = self.get_sat_angles() sat_zenith = 90 - sat_elev sun_zenith = astronomy.sun_zenith_angle(times[:, np.newaxis], self.lons, self.lats) alt, sun_azi = astronomy.get_alt_az(times[:, np.newaxis], self.lons, self.lats) del alt sun_azi = np.rad2deg(sun_azi) rel_azi = get_absolute_azimuth_angle_diff(sun_azi, sat_azi) # Scale angles range to half open interval ]-180, 180] sat_azi = centered_modulus(sat_azi, 360.0) sun_azi = centered_modulus(sun_azi, 360.0) # Mask corrupt scanlines for arr in (sat_azi, sat_zenith, sun_azi, sun_zenith, rel_azi): arr[self.mask] = np.nan return sat_azi, sat_zenith, sun_azi, sun_zenith, rel_azi def correct_times_median(self, year, jday, msec): """Replace invalid timestamps with statistical estimates (using median). Assumes that the majority of timestamps is ok. Args: year: Year jday: Day of the year msec: Milliseconds since 00:00 Returns: Corrected year Corrected day of the year Corrected milliseconds """ # Estimate ideal timestamps based on the scanline number. Still without # offset, e.g. the first scanline has timestamp 1970-01-01 00:00 msec_lineno = self.lineno2msec(self.scans["scan_line_number"]) jday = np.where(np.logical_or(jday < 1, jday > 366), np.median(jday), jday) if_wrong_jday = np.ediff1d(jday, to_begin=0) jday = np.where(if_wrong_jday < 0, max(jday), jday) if_wrong_msec = np.where(msec < 1) if_wrong_msec = if_wrong_msec[0] if len(if_wrong_msec) > 0: if if_wrong_msec[0] != 0: msec = msec[0] + msec_lineno else: msec0 = np.median(msec - msec_lineno) msec = msec0 + msec_lineno if_wrong_msec = np.ediff1d(msec, to_begin=0) msec = np.where(np.logical_and(np.logical_or(if_wrong_msec < -1000, if_wrong_msec > 1000), if_wrong_jday != 1), msec[0] + msec_lineno, msec) # checking if year value is out of valid range if_wrong_year = np.where( np.logical_or(year < 1978, year > datetime.datetime.now().year)) if_wrong_year = if_wrong_year[0] if len(if_wrong_year) > 0: # if the first scanline has valid time stamp if if_wrong_year[0] != 0: year = year[0] jday = jday[0] msec = msec[0] + msec_lineno # Otherwise use median time stamp else: year = np.median(year) jday = np.median(jday) msec0 = np.median(msec - msec_lineno) msec = msec0 + msec_lineno return year.astype(int), jday.astype(int), msec def correct_scan_line_numbers(self): """Remove scanlines with corrupted scanline numbers. This includes: - Scanline numbers outside the valid range - Scanline numbers deviating more than a certain threshold from the ideal case (1,2,3,...N) Example files having corrupt scanline numbers: - NSS.GHRR.NJ.D96144.S2000.E2148.B0720102.GC - NSS.GHRR.NJ.D96064.S0043.E0236.B0606162.WI - NSS.GHRR.NJ.D99286.S1818.E2001.B2466869.WI Returns: Intermediate and final results (for plotting purpose) """ along_track = np.arange(1, len(self.scans["scan_line_number"])+1) results = {'along_track': along_track, 'n_orig': self.scans['scan_line_number'].copy()} # Remove scanlines whose scanline number is outside the valid range within_range = np.logical_and(self.scans["scan_line_number"] < self.max_scanlines, self.scans["scan_line_number"] >= 0) self.scans = self.scans[within_range] # Remove scanlines deviating more than a certain threshold from the # ideal case (1,2,3,...N). ideal = np.arange(1, len(self.scans["scan_line_number"])+1) # ... Estimate possible offset (in case some scanlines are missing in # the beginning of the scan) offsets = self.scans["scan_line_number"] - ideal med_offset = np.median(offsets) # ... Compute difference to ideal case (1,2,3,...N) + offset diffs = np.abs(self.scans["scan_line_number"] - (ideal + med_offset)) # ... Remove those scanlines whose difference is larger than a certain # threshold. For the threshold computation we only regard nonzero # differences. nz_diffs = diffs[diffs > 0] if len(nz_diffs) < 50: # Not enough differences for reliable statistics. Use fixed # threshold. thresh = 500 else: mean_nz_diffs = np.mean(nz_diffs) std_nz_diffs = np.std(nz_diffs) med_nz_diffs = np.median(nz_diffs) mad_nz_diffs = np.median(np.abs(nz_diffs - med_nz_diffs)) if mean_nz_diffs / float(med_nz_diffs) < 3: # Relatively small variation, keep (almost) everything thresh = mean_nz_diffs + 3*std_nz_diffs else: # Large variation, filter more aggressively. Use median and # median absolute deviation (MAD) as they are less sensitive to # outliers. However, allow differences < 500 scanlines as they # occur quite often. thresh = max(500, med_nz_diffs + 3*mad_nz_diffs) self.scans = self.scans[diffs <= thresh] LOG.debug('Removed %s scanline(s) with corrupt scanline numbers', str(len(along_track) - len(self.scans))) results.update({'n_corr': self.scans['scan_line_number'], 'within_range': within_range, 'diffs': diffs, 'thresh': thresh, 'nz_diffs': nz_diffs}) return results def correct_times_thresh(self, max_diff_from_t0_head=6*60*1000, min_frac_near_t0_head=0.01, max_diff_from_ideal_t=10*1000): """Correct corrupted timestamps using a threshold approach. The threshold approach is based on the scanline number and the header timestamp. It also works if the majority of scanlines has corrupted timestamps. The header timestamp is used as a guideline to estimate the offset between timestamps computed from the scanline number and the actual scanline timestamps in the data. If header timestamp and scanline timestamps do not match, no correction is applied. Once the offset has been estimated, one can calculate the ideal timestamps based on the scanline number. Timestamps deviating more than a certain threshold from the ideal timestamps are replaced by the ideal timestamps. Example files having corrupt timestamps: - NSS.GHRR.NA.D81193.S2329.E0116.B1061214.WI - NSS.GHRR.NL.D01035.S2342.E0135.B0192627.WI Args: max_diff_from_t0_head (int): Threshold for offset estimation: A scanline timestamp matches the header timestamp t0_head if it is within the interval [t0_head - max_diff_from_t0_head, t0_head + max_diff_from_t0_head] around the header timestamp. min_frac_near_t0_head (float): Specifies the minimum fraction of scanline timestamps matching the header timestamp required for applying the correction. max_diff_from_ideal_t (float): Threshold for timestamp correction: If a scanline timestamp deviates more than max_diff_from_ideal_t from the ideal timestamp, it is regarded as corrupt and will be replaced with the ideal timestamp. Returns: Intermediate and final results (for plotting purpose) """ results = {} dt64_msec = ">M8[ms]" # Check whether scanline number increases monotonically nums = self.scans["scan_line_number"] results.update({'t': self.utcs.copy(), 'n': nums}) if np.any(np.diff(nums) < 0): LOG.error("Cannot perform timestamp correction. Scanline number " "does not increase monotonically.") results['fail_reason'] = "Scanline number jumps backwards" return results # Convert time to milliseconds since 1970-01-01 t = self.utcs.astype("i8") try: t0_head = np.array([self.get_header_timestamp().isoformat()], dtype="datetime64[ms]").astype("i8")[0] except ValueError as err: LOG.error("Cannot perform timestamp correction: %s", err) return # Compute ideal timestamps based on the scanline number. Still # without offset, i.e. scanline 0 has timestamp 1970-01-01 00:00 tn = self.lineno2msec(nums) # Try to determine the timestamp t0 of the first scanline. Since none # of the actual timestamps is trustworthy, use the header timestamp # as a guideline. However, the header timestamp may also be corrupted, # so we only apply corrections if there is a minimum fraction of # scanlines whose timestamps match the header timestamp. # # 1) Compute offsets between actual timestamps and idealized timestamps offsets = t - tn # 2) If the offsets of a certain minimum fraction of scanlines are # within a certain interval around the header timestamp, estimate # t0 by calculating the median offset among these timestamps. If not, # we do not have reliable information and cannot proceed. near_t0_head = np.where( np.fabs(offsets - t0_head) <= max_diff_from_t0_head)[0] results.update({'offsets': offsets, 't0_head': t0_head, 'max_diff_from_t0_head': max_diff_from_t0_head}) if near_t0_head.size / float(nums.size) >= min_frac_near_t0_head: t0 = np.median(offsets[near_t0_head]) else: LOG.error("Timestamp mismatch. Cannot perform correction.") results['fail_reason'] = "Timestamp mismatch" return results # Add estimated offset to the ideal timestamps tn += t0 # Replace timestamps deviating more than a certain threshold from the # ideal timestamp with the ideal timestamp. corrupt_lines = np.where(np.fabs(t - tn) > max_diff_from_ideal_t) self.utcs[corrupt_lines] = tn[corrupt_lines].astype(dt64_msec) LOG.debug("Corrected %s timestamp(s)", str(len(corrupt_lines[0]))) results.update({'tn': tn, 'tcorr': self.utcs, 't0': t0}) return results @property @abstractmethod def tsm_affected_intervals(self): # pragma: no cover """Specify time intervals being affected by the scan motor problem. Returns: dict: Affected time intervals. A dictionary containing a list of (start, end) tuples for each affected platform. Both start and end must be datetime.datetime objects. """ raise NotImplementedError def is_tsm_affected(self): """Determine whether this orbit is affected by the scan motor problem. Returns: bool: True if the orbit is affected, False otherwise. """ self.get_times() ts, te = self.to_datetime(self.utcs[[0, -1]]) try: for interval in self.tsm_affected_intervals[self.spacecraft_id]: if ts >= interval[0] and te <= interval[1]: # Found a matching interval return True # No matching interval, orbit is not affected return False except KeyError: # Platform is not affected at all return False def get_midnight_scanline(self): """Find the scanline where the UTC date increases by one day. Returns: int: The midnight scanline if it exists and is unique. None, else. """ self.get_times() d0 = np.datetime64(datetime.date(1970, 1, 1), 'D') days = (self.utcs.astype('datetime64[D]') - d0).astype(int) incr = np.where(np.diff(days) == 1)[0] if len(incr) != 1: if len(incr) > 1: LOG.warning('Unable to determine midnight scanline: ' 'UTC date increases more than once. ') return None else: return incr[0] def get_miss_lines(self): """Find missing scanlines. I.e. scanlines which were dropped for some reason or were never recorded. Returns: Indices of missing scanlines """ # Compare scanline number against the ideal case (1, 2, 3, ...) and # find the missing line numbers. ideal = set(range(1, self.scans['scan_line_number'][-1] + 1)) missing = sorted(ideal.difference(set(self.scans['scan_line_number']))) return np.array(missing, dtype=int) def mask_tsm_pixels(self, channels): """Mask pixels affected by the scan motor issue.""" idx = self.get_tsm_pixels(channels) channels[idx] = np.nan @abstractmethod def get_tsm_pixels(self, channels): # pragma: no cover """Determine pixels affected by the scan motor issue. Channel selection is POD/KLM specific. """ raise NotImplementedError def get_attitude_coeffs(self): """Return the roll, pitch, yaw values.""" if self._rpy is None: if "constant_yaw_attitude_error" in self.head.dtype.fields: rpy = np.deg2rad([self.head["constant_roll_attitude_error"] / 1e3, self.head["constant_pitch_attitude_error"] / 1e3, self.head["constant_yaw_attitude_error"] / 1e3]) else: try: # This needs to be checked thoroughly first # rpy_spacecraft = rpy_coeffs[self.spacecraft_name] # rpy = np.array([rpy_spacecraft['roll'], # rpy_spacecraft['pitch'], # rpy_spacecraft['yaw']]) # LOG.debug("Using static attitude correction") raise KeyError except KeyError: LOG.debug("Not applying attitude correction") rpy = np.zeros(3) LOG.info("Using rpy: %s", str(rpy)) self._rpy = rpy return self._rpy def inherit_doc(cls): """Make a class method inherit its docstring from the parent class. Copied from http://stackoverflow.com/a/8101598/5703449 . """ for name, func in vars(cls).items(): if isinstance(func, types.FunctionType) and not func.__doc__: for parent in cls.__bases__: parfunc = getattr(parent, name, None) if parfunc and getattr(parfunc, '__doc__', None): func.__doc__ = parfunc.__doc__ break return cls pygac-1.7.2/pygac/runner.py000066400000000000000000000102141444627033600156210ustar00rootroot00000000000000#!/usr/bin/env python # Copyright (c) 2014, 2019 Pygac Developers # Author(s): # Carlos Horn # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . """Processing utilities for GAC/LAC KLM/POD files. Functions: process_file: allows to process a given input file get_reader_class: allows to select the appropriate reader class for a given file. """ import datetime import logging import os from pygac.gac_klm import GACKLMReader from pygac.gac_pod import GACPODReader from pygac.lac_klm import LACKLMReader from pygac.lac_pod import LACPODReader from pygac.utils import file_opener from pygac.configuration import get_config LOG = logging.getLogger(__name__) _reader_classes = [GACKLMReader, LACKLMReader, GACPODReader, LACPODReader] def get_reader_class(filename, fileobj=None): """Return the reader class that can read the GAC/LAC KLM/POD file. Args: filename (str): Path to GAC/LAC file fileobj: An open file object to read from. (optional) """ found_reader = False for index, Reader in enumerate(_reader_classes): if Reader.can_read(filename, fileobj=fileobj): LOG.debug("%s can read the file." % Reader.__name__) found_reader = True break if not found_reader: raise ValueError('Unable to read the file "%s"' % filename) # Move the Reader in front of _reader_classes. Chance is high that the # next file is of the same kind. _reader_classes.insert(0, _reader_classes.pop(index)) return Reader def process_file(filename, start_line, end_line, fileobj=None): """Read, calibrate and navigate NOAA AVHRR GAC/LAC POD/KLM data. It creates three hdf5 files in the output location given by the pygac config file. The three files contain the avhrr data, quality flags, and sunsatangles. Argsuments filename (str): Path to GAC/LAC file start_line (int): First scanline to be processed (0-based) end_line (int): Last scanline to be processed (0-based), set to 0 for the last available scanline fileobj: An open file object to read from. (optional) Note This function expects an initialized config file. """ tic = datetime.datetime.now() LOG.info("Process file: %s", str(filename)) # reader specific values config = get_config() tle_dir = config.get('tle', 'tledir', raw=True) tle_name = config.get('tle', 'tlename', raw=True) coeffs_file = config.get("calibration", "coeffs_file", fallback='') # output specific values output_dir = config.get('output', 'output_dir', raw=True) output_file_prefix = config.get('output', 'output_file_prefix', raw=True) avhrr_dir = os.environ.get('SM_AVHRR_DIR') qual_dir = os.environ.get('SM_AVHRR_DIR') sunsatangles_dir = os.environ.get('SM_SUNSATANGLES_DIR') # Keep the file open while searching for the reader class and later # creation of the instance. with file_opener(fileobj or filename) as open_file: reader_cls = get_reader_class(filename, fileobj=open_file) reader = reader_cls( tle_dir=tle_dir, tle_name=tle_name, calibration_file=coeffs_file ) reader.read(filename, fileobj=fileobj) reader.save( start_line, end_line, output_file_prefix=output_file_prefix, output_dir=output_dir, avhrr_dir=avhrr_dir, qual_dir=qual_dir, sunsatangles_dir=sunsatangles_dir ) LOG.info("Processing took: %s", str(datetime.datetime.now() - tic)) pygac-1.7.2/pygac/slerp.py000066400000000000000000000030071444627033600154370ustar00rootroot00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (c) 2014 Martin Raspaud # Author(s): # Martin Raspaud # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . """slerp implementation in numpy """ import numpy as np def tocart(lon, lat): rlat = np.deg2rad(lat) rlon = np.deg2rad(lon) x__ = np.cos(rlat) * np.cos(rlon) y__ = np.cos(rlat) * np.sin(rlon) z__ = np.sin(rlat) return np.dstack((x__, y__, z__)) def toll(arr): lat = np.arcsin(arr.take(2, -1)) lon = np.arctan2(arr.take(1, -1), arr.take(0, -1)) return np.rad2deg(np.dstack((lon.squeeze(), lat.squeeze()))) def dot(a, b): return np.sum(a * b, -1) def slerp(lon0, lat0, lon1, lat1, t): cp0 = tocart(lon0, lat0) cp1 = tocart(lon1, lat1) omega = np.arccos(dot(cp0, cp1))[:, :, np.newaxis] return toll(np.sin((1 - t) * omega) / np.sin(omega) * cp0 + np.sin(t * omega) / np.sin(omega) * cp1) pygac-1.7.2/pygac/tests/000077500000000000000000000000001444627033600151025ustar00rootroot00000000000000pygac-1.7.2/pygac/tests/__init__.py000066400000000000000000000015331444627033600172150ustar00rootroot00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (c) 2013, 2014 Martin Raspaud # Author(s): # Martin Raspaud # Carlos Horn # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . """The tests package.""" pygac-1.7.2/pygac/tests/test_angles.py000066400000000000000000000053001444627033600177620ustar00rootroot00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (c) 2014-2019 Pytroll Developers # Author(s): # Nina Hakansson # Adam Dybbroe # Carlos Horn # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . """Test function for the angle calculation.""" import unittest import numpy as np from pygac.utils import (get_absolute_azimuth_angle_diff, centered_modulus) class TestAngles(unittest.TestCase): """Test function for the angle calculation.""" def test_azidiff_angle(self): """Test function for the azidiff angle.""" sat_az = np.ma.array([[48.0, 56.0, 64.0, 72.0], [80.0, 88.0, 96.0, 104.0], [-80.0, -88.0, -96.0, -104.0], [-180.0, -188.0, -196.0, -204.0]], mask=False) sun_az = np.ma.array([[148.0, 156.0, 164.0, 172.0], [180.0, 188.0, 196.0, 204.0], [180.0, 188.0, 196.0, 204.0], [185.0, 193.0, 201.0, 209.0]], mask=False) res = np.ma.array([[100., 100., 100., 100.], [100., 100., 100., 100.], [100., 84., 68., 52.], [5., 21., 37., 53.]], mask=False) rel_azi = get_absolute_azimuth_angle_diff(sat_az, sun_az) np.testing.assert_allclose(rel_azi, res) def test_centered_modulus(self): """Test centered_modulus.""" angles = np.ma.array( [[180.0, -180.0, -179.9, 201.0], [80.0, 360.0, -360.0, 604.0], [-80.0, -88.0, -796.0, -104.0], [-3.0, -188.0, -196.0, -204.0]], mask=False) expected = np.ma.array( [[180.0, 180.0, -179.9, -159.0], [80.0, 0.0, 0.0, -116.0], [-80.0, -88.0, -76.0, -104.0], [-3.0, 172.0, 164.0, 156.0]], mask=False) transformed = centered_modulus(angles, 360.0) np.testing.assert_allclose(transformed, expected) pygac-1.7.2/pygac/tests/test_calibrate_klm.py000066400000000000000000000122441444627033600213070ustar00rootroot00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (c) 2014-2019 Pytroll Developers # Author(s): # Martin Raspaud # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . """Test function for the POD calibration. """ import unittest try: import mock except ImportError: from unittest import mock import numpy as np from pygac.calibration import Calibrator, calibrate_solar, calibrate_thermal class TestGenericCalibration(unittest.TestCase): def test_calibration_vis(self): counts = np.array([[0, 0, 0, 0, 0, 512, 512, 512, 512, 512, 1023, 1023, 1023, 1023, 1023], [41, 41, 41, 41, 41, 150, 150, 150, 150, 150, 700, 700, 700, 700, 700]]) year = 2010 jday = 1 spacecraft_id = "noaa19" cal = Calibrator(spacecraft_id) corr = 1 channel = 0 ref1 = calibrate_solar(counts[:, channel::5], channel, year, jday, cal, corr) channel = 1 ref2 = calibrate_solar(counts[:, channel::5], channel, year, jday, cal, corr) channel = 2 data = np.ma.array(counts[:, channel::5], mask=True) ref3 = calibrate_solar(data, channel, year, jday, cal, corr) expected = (np.array([[np.nan, 27.37909518, 110.60103456], [0.11943135, 6.03671211, 57.99695154]]), np.array([[np.nan, 3.05229160e+01, 1.24811455e+02], [1.23011792e-01, 6.82715447e+00, 6.52122414e+01]]), np.array([[0., 523.41775, 1034.41775], [41., 150., 711.41775]])) np.testing.assert_allclose(ref1, expected[0]) np.testing.assert_allclose(ref2, expected[1]) np.testing.assert_allclose(ref3, expected[2]) def test_calibration_ir(self): counts = np.array([[0, 0, 612, 0, 0, 512, 512, 487, 512, 512, 923, 923, 687, 923, 923], [41, 41, 634, 41, 41, 150, 150, 461, 150, 150, 700, 700, 670, 700, 700], [241, 241, 656, 241, 241, 350, 350, 490, 350, 350, 600, 600, 475, 600, 600]]) prt_counts = np.array([0, 230, 230]) ict_counts = np.array([[745.3, 397.9, 377.8], [744.8, 398.1, 378.4], [745.7, 398., 378.3]]) space_counts = np.array([[987.3, 992.5, 989.4], [986.9, 992.8, 989.6], [986.3, 992.3, 988.9]]) spacecraft_id = "noaa19" cal = Calibrator(spacecraft_id) ch3 = calibrate_thermal(counts[:, 2::5], prt_counts, ict_counts[:, 0], space_counts[:, 0], line_numbers=np.array([1, 2, 3]), channel=3, cal=cal) expected_ch3 = np.array([[298.36742, 305.248478, 293.238328], [296.960275, 306.493766, 294.488956], [295.476935, 305.101309, 305.829827]]) np.testing.assert_allclose(expected_ch3, ch3) ch4 = calibrate_thermal(counts[:, 3::5], prt_counts, ict_counts[:, 1], space_counts[:, 1], line_numbers=np.array([1, 2, 3]), channel=4, cal=cal) expected_ch4 = np.array([[326.576534, 275.348988, 197.688755], [323.013104, 313.207077, 249.36352], [304.58091, 293.579308, 264.0631]]) np.testing.assert_allclose(expected_ch4, ch4) ch5 = calibrate_thermal(counts[:, 4::5], prt_counts, ict_counts[:, 2], space_counts[:, 2], line_numbers=np.array([1, 2, 3]), channel=5, cal=cal) expected_ch5 = np.array([[326.96161, 272.090164, 188.267991], [323.156317, 312.673269, 244.184452], [303.439383, 291.649444, 259.973091]]) np.testing.assert_allclose(expected_ch5, ch5) pygac-1.7.2/pygac/tests/test_calibrate_pod.py000066400000000000000000000122151444627033600213040ustar00rootroot00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (c) 2014, 2015 Martin Raspaud # Author(s): # Martin Raspaud # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . """Test function for the POD calibration. """ import unittest try: import mock except ImportError: from unittest import mock import numpy as np from pygac.calibration import Calibrator, calibrate_solar, calibrate_thermal class TestGenericCalibration(unittest.TestCase): def test_calibration_vis(self): counts = np.array([[0, 0, 0, 0, 0, 512, 512, 512, 512, 512, 1023, 1023, 1023, 1023, 1023], [41, 41, 41, 41, 41, 150, 150, 150, 150, 150, 700, 700, 700, 700, 700]]) year = 1997 jday = 196 spacecraft_id = "noaa14" cal = Calibrator(spacecraft_id) corr = 1 channel = 0 ref1 = calibrate_solar(counts[:, channel::5], channel, year, jday, cal, corr) channel = 1 ref2 = calibrate_solar(counts[:, channel::5], channel, year, jday, cal, corr) channel = 2 data = np.ma.array(counts[:, channel::5], mask=True) ref3 = calibrate_solar(data, channel, year, jday, cal, corr) expected = (np.array([[np.nan, 60.891074, 126.953364], [0., 14.091565, 85.195791]]), np.array([[np.nan, 72.98262, 152.16334], [0., 16.889821, 102.113687]]), np.array([[-32001., -32001., -32001.], [-32001., -32001., -32001.]])) np.testing.assert_allclose(ref1, expected[0]) np.testing.assert_allclose(ref2, expected[1]) np.testing.assert_allclose(ref3.filled(-32001), expected[2]) def test_calibration_ir(self): counts = np.array([[0, 0, 612, 0, 0, 512, 512, 487, 512, 512, 923, 923, 687, 923, 923], [41, 41, 634, 41, 41, 150, 150, 461, 150, 150, 700, 700, 670, 700, 700], [241, 241, 656, 241, 241, 350, 350, 490, 350, 350, 600, 600, 475, 600, 600]]) prt_counts = np.array([0, 230, 230]) ict_counts = np.array([[745.3, 397.9, 377.8], [744.8, 398.1, 378.4], [745.7, 398., 378.3]]) space_counts = np.array([[987.3, 992.5, 989.4], [986.9, 992.8, 989.6], [986.3, 992.3, 988.9]]) spacecraft_id = "noaa14" cal = Calibrator(spacecraft_id) ch3 = calibrate_thermal(counts[:, 2::5], prt_counts, ict_counts[:, 0], space_counts[:, 0], line_numbers=np.array([1, 2, 3]), channel=3, cal=cal) expected_ch3 = np.array([[298.28466, 305.167571, 293.16182], [296.878502, 306.414234, 294.410224], [295.396779, 305.020259, 305.749526]]) np.testing.assert_allclose(expected_ch3, ch3) ch4 = calibrate_thermal(counts[:, 3::5], prt_counts, ict_counts[:, 1], space_counts[:, 1], line_numbers=np.array([1, 2, 3]), channel=4, cal=cal) expected_ch4 = np.array([[325.828062, 275.414804, 196.214709], [322.359517, 312.785057, 249.380649], [304.326806, 293.490822, 264.148021]]) np.testing.assert_allclose(expected_ch4, ch4) ch5 = calibrate_thermal(counts[:, 4::5], prt_counts, ict_counts[:, 2], space_counts[:, 2], line_numbers=np.array([1, 2, 3]), channel=5, cal=cal) expected_ch5 = np.array([[326.460316, 272.146547, 187.434456], [322.717606, 312.388155, 244.241633], [303.267012, 291.590832, 260.05426]]) np.testing.assert_allclose(expected_ch5, ch5) pygac-1.7.2/pygac/tests/test_calibration_coefficients.py000066400000000000000000000151361444627033600235310ustar00rootroot00000000000000#!/usr/bin/env python # Copyright (c) 2014-2020 Pytroll Developers # Author(s): # Carlos Horn # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . """Test function for the calibration coeffictions handling. """ import sys import unittest try: import mock except ImportError: from unittest import mock import numpy as np from pygac.calibration import Calibrator, calibrate_solar, CoeffStatus # dummy user json file including only noaa19 data with changed channel 1 coefficients user_json_file = b"""{ "noaa19": { "channel_1": { "dark_count": 0, "gain_switch": 1000, "s0": 2, "s1": 0, "s2": 0 }, "channel_2": { "dark_count": 39.0, "gain_switch": 500.37, "s0": 0.122, "s1": 0.95, "s2": -0.039 }, "channel_3a": { "dark_count": 39.4, "gain_switch": 496.11, "s0": 0.1, "s1": 0.0, "s2": 0.0 }, "channel_3b": { "b0": 0.0, "b1": 0.0, "b2": 0.0, "centroid_wavenumber": 2670.2425, "space_radiance": 0.0, "to_eff_blackbody_intercept": 1.6863857, "to_eff_blackbody_slope": 0.9974112191806167 }, "channel_4": { "b0": 5.7, "b1": -0.11187000000000002, "b2": 0.00054668, "centroid_wavenumber": 927.92374, "space_radiance": -5.49, "to_eff_blackbody_intercept": 0.39419031, "to_eff_blackbody_slope": 0.9986718662850276 }, "channel_5": { "b0": 3.58, "b1": -0.05991000000000002, "b2": 0.00024985, "centroid_wavenumber": 831.28619, "space_radiance": -3.39, "to_eff_blackbody_intercept": 0.2636462, "to_eff_blackbody_slope": 0.9990463103920997 }, "date_of_launch": "2009-02-05T00:57:36.000000Z", "thermometer_1": { "d0": 276.6067, "d1": 0.051111, "d2": 1.405783e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_2": { "d0": 276.6119, "d1": 0.05109, "d2": 1.496037e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_3": { "d0": 276.6311, "d1": 0.051033, "d2": 1.49699e-06, "d3": 0.0, "d4": 0.0 }, "thermometer_4": { "d0": 276.6268, "d1": 0.051058, "d2": 1.49311e-06, "d3": 0.0, "d4": 0.0 } } }""" class TestCalibrationCoefficientsHandling(unittest.TestCase): @mock.patch('pygac.calibration.open', mock.mock_open(read_data=user_json_file)) def test_user_coefficients_file(self): if sys.version_info.major < 3: cal = Calibrator('noaa19', coeffs_file="/path/to/unknow/defaults.json") else: with self.assertWarnsRegex(RuntimeWarning, "Unknown calibration coefficients version!"): cal = Calibrator('noaa19', coeffs_file="/path/to/unknow/defaults.json") self.assertEqual(cal.dark_count[0], 0) self.assertEqual(cal.gain_switch[0], 1000) self.assertEqual(cal.s0[0], 2) self.assertEqual(cal.s1[0], 0) self.assertEqual(cal.s2[0], 0) # check that the version is set to None if an unknown file is used if sys.version_info.major > 2: self.assertIsNone(cal.version) def test_custom_coefficients(self): custom_coeffs = { "channel_1": { "dark_count": 0, "gain_switch": 1000, "s0": 2, "s1": 0, "s2": 0 } } # The coefficients are choosen to preserve the counts of channel 1 if counts are less than 1000 counts = np.arange(10) year = 2010 jday = 1 spacecraft_id = "noaa19" channel = 0 cal = Calibrator(spacecraft_id, custom_coeffs=custom_coeffs) scaled_radiance = calibrate_solar(counts, channel, year, jday, cal) np.testing.assert_allclose(scaled_radiance, counts) # check that the version is set to None if custom coeffs are used if sys.version_info.major > 2: self.assertIsNone(cal.version) @unittest.skipIf(sys.version_info.major < 3, "Skipped in python2!") def test_vis_deprecation_warning(self): counts = np.arange(10) year = 2010 jday = 1 spacecraft_id = "noaa19" channel = 0 corr = 2 message = ( "Using the 'corr' argument is depricated in favor of making the units" " of the function result clear. Please make any unit conversion outside this function." ) cal = Calibrator(spacecraft_id) with self.assertWarnsRegex(DeprecationWarning, message): calibrate_solar(counts, channel, year, jday, cal, corr=corr) # check that the version is set in this case self.assertIsNotNone(cal.version) def test_default_coeffs(self): """Test identification of default coefficients.""" _, version = Calibrator.read_coeffs(None) self.assertIsNotNone(version) @unittest.skipIf(sys.version_info.major < 3, "Skipped in python2!") def test_read_coeffs_warnings(self): """Test warnings issued by Calibrator.read_coeffs.""" version_dicts = [ # Non-nominal coefficients {'name': 'v123', 'status': CoeffStatus.PROVISIONAL}, # Unknown coefficients {'name': None, 'status': None} ] with mock.patch.object(Calibrator, 'version_hashs') as version_hashs: for version_dict in version_dicts: version_hashs.get.return_value = version_dict with self.assertWarns(RuntimeWarning): Calibrator.read_coeffs(None) pygac-1.7.2/pygac/tests/test_io.py000066400000000000000000000226261444627033600171320ustar00rootroot00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Author(s): # Stephan Finkensieper # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . """Test the I/O.""" import unittest try: import mock except ImportError: from unittest import mock import numpy as np import numpy.testing import pygac.gac_io as gac_io import pygac.utils as utils class TestIO(unittest.TestCase): """Test the gac_io module.""" longMessage = True def test_strip_invalid_lat(self): """Test stripping the invalid lats.""" lats = np.array([np.nan, 1, np.nan, 2, np.nan]) start, end = utils.strip_invalid_lat(lats) self.assertEqual(start, 1) self.assertEqual(end, 3) def test_update_scanline(self): """Test updating the scanlines.""" test_data = [{'new_start_line': 100, 'new_end_line': 200, 'scanline': 110, 'scanline_exp': 10}, {'new_start_line': 100, 'new_end_line': 200, 'scanline': 90, 'scanline_exp': None}, {'new_start_line': 100, 'new_end_line': 200, 'scanline': 210, 'scanline_exp': None}] for t in test_data: scanline_exp = t.pop('scanline_exp') scanline = utils._update_scanline(**t) self.assertEqual(scanline, scanline_exp) def test_update_missing_scanlines(self): """Test updating the missing scanlines.""" qual_flags = np.array([[1, 2, 4, 5, 6, 8, 9, 11, 12]]).transpose() miss_lines = np.array([3, 7, 10]) test_data = [{'start_line': 0, 'end_line': 8, 'miss_lines_exp': [3, 7, 10]}, {'start_line': 3, 'end_line': 6, 'miss_lines_exp': [1, 2, 3, 4, 7, 10, 11, 12]}] for t in test_data: miss_lines_exp = t.pop('miss_lines_exp') miss_lines = utils._update_missing_scanlines( miss_lines=miss_lines, qual_flags=qual_flags, **t) numpy.testing.assert_array_equal(miss_lines, miss_lines_exp) # If intersection of miss_lines and qual_flags is not empty # (here: extra "1" in miss_lines), make sure that items are # not added twice. miss_lines = utils._update_missing_scanlines( miss_lines=np.array([1, 3, 7, 10]), qual_flags=qual_flags, start_line=3, end_line=6) numpy.testing.assert_array_equal(miss_lines, [1, 2, 3, 4, 7, 10, 11, 12]) def test_slice(self): """Test slices.""" ch = np.array([[1, 2, 3, 4, 5]]).transpose() sliced_exp = np.array([[2, 3, 4]]).transpose() # Without update sliced = utils._slice(ch, start_line=1, end_line=3) numpy.testing.assert_array_equal(sliced, sliced_exp) # With update sliced, updated = utils._slice(ch, start_line=1, end_line=3, update=[0, 2, 4, None]) numpy.testing.assert_array_equal(sliced, sliced_exp) numpy.testing.assert_array_equal(updated, [None, 1, None, None]) # Make sure slice is a copy ch += 1 numpy.testing.assert_array_equal(sliced, sliced_exp) def test_slice_channel(self): """Test selection of user defined scanlines. Scanline Nr: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 Missing: X X X X Inv. lat/lon: X X X X Before stripping of invalid lats -------------------------------- idx: 0 1 2 3 4 5 6 7 8 9 data: 1 2 3 4 5 6 7 8 9 10 After stripping of invalid lats ------------------------------- idx: 0 1 2 3 4 5 data: 3 4 5 6 7 8 => All missing lines: [1, 2, 3, 4, 11, 12, 13, 14] """ # Define test data ch = np.array([[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]]).transpose() miss_lines = np.array([1, 4, 11, 12]) # never recorded qualflags = np.array( [[2, 3, 5, 6, 7, 8, 9, 10, 13, 14]]).transpose() # scanline number midn_line = 3 first_valid_lat = 2 last_valid_lat = 7 start_line = 1 end_line = 4 # Without lat stripping sliced_ref = np.array([[2, 3, 4, 5]]).transpose() sliced, miss_lines_new, midn_line_new = utils.slice_channel( ch, start_line=start_line, end_line=end_line, miss_lines=miss_lines, midnight_scanline=midn_line, qual_flags=qualflags) numpy.testing.assert_array_equal(sliced, sliced_ref) numpy.testing.assert_array_equal(miss_lines_new, miss_lines) self.assertEqual(midn_line_new, 2) # With lat stripping sliced_ref = np.array([[4, 5, 6, 7]]).transpose() miss_lines_ref = np.array([1, 2, 3, 4, 11, 12, 13, 14]) sliced, miss_lines_new, midn_line_new = utils.slice_channel( ch, start_line=start_line, end_line=end_line, first_valid_lat=first_valid_lat, last_valid_lat=last_valid_lat, miss_lines=miss_lines, midnight_scanline=midn_line, qual_flags=qualflags) numpy.testing.assert_array_equal(sliced, sliced_ref) numpy.testing.assert_array_equal(miss_lines_new, miss_lines_ref) self.assertEqual(midn_line_new, 0) def test_check_user_scanlines(self): """Check the scanlines.""" # All scanlines start, end = utils.check_user_scanlines(0, 0, 100, 200) self.assertEqual(start, 0) self.assertEqual(end, 100) start, end = utils.check_user_scanlines(0, 0, None, None, 100) self.assertEqual(start, 0) self.assertEqual(end, 99) # Valid scanlines start, end = utils.check_user_scanlines(10, 20, 100, 200) self.assertEqual(start, 10) self.assertEqual(end, 20) start, end = utils.check_user_scanlines(10, 20, None, None, 100) self.assertEqual(start, 10) self.assertEqual(end, 20) # Invalid scanlines start, end = utils.check_user_scanlines(10, 110, 100, 200) self.assertEqual(start, 10) self.assertEqual(end, 100) start, end = utils.check_user_scanlines(10, 110, None, None, 100) self.assertEqual(start, 10) self.assertEqual(end, 99) self.assertRaises(ValueError, gac_io.check_user_scanlines, 110, 120, 100, 200) self.assertRaises(ValueError, gac_io.check_user_scanlines, 110, 120, None, None, 100) @mock.patch('pygac.gac_io.strip_invalid_lat') @mock.patch('pygac.gac_io.avhrrGAC_io') @mock.patch('pygac.gac_io.slice_channel') @mock.patch('pygac.gac_io.check_user_scanlines') def test_save_gac(self, check_user_scanlines, slice_channel, avhrr_gac_io, strip_invalid_lat): """Test saving.""" # Test scanline selection mm = mock.MagicMock() kwargs = dict( satellite_name=mm, xutcs=mm, lats=mm, lons=mm, ref1=mm, ref2=mm, ref3=mm, bt3=mm, bt4=mm, bt5=mm, sun_zen=mm, sat_zen=mm, sun_azi=mm, sat_azi=mm, rel_azi=mm, qual_flags=mm, gac_file=mm, meta_data=mm, output_file_prefix=mm, avhrr_dir=mm, qual_dir=mm, sunsatangles_dir=mm ) slice_channel.return_value = mm, 'miss', 'midnight' strip_invalid_lat.return_value = 0, 0 check_user_scanlines.return_value = 'start', 'end' gac_io.save_gac(start_line=0, end_line=0, **kwargs) slice_channel.assert_called_with(mock.ANY, start_line='start', end_line='end', first_valid_lat=mock.ANY, last_valid_lat=mock.ANY ) expected_args = [ mock.ANY, mock.ANY, mock.ANY, mock.ANY, mock.ANY, mock.ANY, mock.ANY, mock.ANY, mock.ANY, mock.ANY, mock.ANY, mock.ANY, mock.ANY, mock.ANY, mock.ANY, mock.ANY, mock.ANY, mock.ANY, mock.ANY, mock.ANY, mock.ANY, mock.ANY, mock.ANY, mock.ANY, mock.ANY, mock.ANY, 'midnight', 'miss', mock.ANY, mock.ANY, mock.ANY, mock.ANY ] avhrr_gac_io.assert_called_with(*expected_args) pygac-1.7.2/pygac/tests/test_klm.py000066400000000000000000000157331444627033600173070ustar00rootroot00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (c) 2013, 2014 Martin Raspaud # Author(s): # Martin Raspaud # Carlos Horn # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . """Test the GAC KLM reader.""" import datetime as dt from unittest import mock import numpy as np import numpy.testing from pygac.gac_klm import GACKLMReader from pygac.klm_reader import header from pygac.lac_klm import LACKLMReader, scanline from pygac.tests.utils import CalledWithArray class TestKLM: """Test the klm reader.""" def setup(self): """Set up the tests.""" self.reader = GACKLMReader() def test_get_lonlat(self): """Test readout of lon/lat coordinates.""" earth_loc = 1e4 * np.array([[1, 2, 3, 4], [5, 6, 7, 8]]) self.reader.scans = {'earth_location': earth_loc} lons_exp = np.array([[2, 4], [6, 8]]) lats_exp = np.array([[1, 3], [5, 7]]) lons, lats = self.reader._get_lonlat() numpy.testing.assert_array_equal(lons, lons_exp) numpy.testing.assert_array_equal(lats, lats_exp) def test_get_header_timestamp(self): """Test readout of header timestamp.""" self.reader.head = { 'start_of_data_set_year': np.array([2019]), 'start_of_data_set_day_of_year': np.array([123]), 'start_of_data_set_utc_time_of_day': np.array([123456]) } time = self.reader.get_header_timestamp() assert time == dt.datetime(2019, 5, 3, 0, 2, 3, 456000) def test_get_times(self): """Test readout of scanline timestamps.""" self.reader.scans = {'scan_line_year': 1, 'scan_line_day_of_year': 2, 'scan_line_utc_time_of_day': 3} assert self.reader._get_times() == (1, 2, 3) def test_get_ch3_switch(self): """Test channel 3 identification.""" self.reader.scans = { 'scan_line_bit_field': np.array([1, 2, 3, 4, 5, 6])} switch_exp = np.array([1, 2, 3, 0, 1, 2]) numpy.testing.assert_array_equal( self.reader.get_ch3_switch(), switch_exp) def test_postproc(self): """Test KLM specific postprocessing.""" self.reader.scans = { 'scan_line_bit_field': np.array([0, 1, 2])} channels = np.array([[[1., 2., 3., 4.], [1., 2., 3., 4.]], [[1., 2., 3., 4.], [1., 2., 3., 4.]], [[1., 2., 3, 4.], [1., 2., 3, 4.]]]) # (lines, pixels, channels) masked_exp = np.array([[[1., 2., np.nan, 4.], [1., 2., np.nan, 4.]], [[1., 2., 3., np.nan], [1., 2., 3., np.nan]], [[1., 2., np.nan, np.nan], [1., 2., np.nan, np.nan]]]) self.reader.postproc(channels) # masks in-place numpy.testing.assert_array_equal(channels, masked_exp) def test_quality_indicators(self): """Test the quality indicator unpacking.""" reader = self.reader QFlag = reader.QFlag quality_indicators = np.array([ 0, # nothing flagged -1, # everything flagged QFlag.CALIBRATION | QFlag.NO_EARTH_LOCATION, QFlag.TIME_ERROR | QFlag.DATA_GAP, QFlag.FATAL_FLAG ], dtype=np.uint32) reader.scans = {self.reader._quality_indicators_key: quality_indicators} # test mask, i.e. QFlag.FATAL_FLAG | QFlag.CALIBRATION | QFlag.NO_EARTH_LOCATION expected_mask = np.array([False, True, True, False, True], dtype=bool) numpy.testing.assert_array_equal(reader.mask, expected_mask) # test individual flags assert reader._get_corrupt_mask(flags=QFlag.FATAL_FLAG).any() # count the occurence (everything flagged and last entrance => 2) assert reader._get_corrupt_mask(flags=QFlag.FATAL_FLAG).sum() == 2 class TestGACKLM: """Tests for gac klm.""" def setup(self): """Set up the tests.""" self.reader = GACKLMReader() @mock.patch('pygac.klm_reader.get_tsm_idx') def test_get_tsm_pixels(self, get_tsm_idx): """Test channel set used for TSM correction.""" ones = np.ones((409, 100)) zeros = np.zeros(ones.shape) ch1 = 1*ones ch2 = 2*ones ch4 = 4*ones ch5 = 5*ones channels = np.dstack((ch1, ch2, zeros, zeros, ch4, ch5)) self.reader.get_tsm_pixels(channels) get_tsm_idx.assert_called_with(CalledWithArray(ch1), CalledWithArray(ch2), CalledWithArray(ch4), CalledWithArray(ch5)) class TestLACKLM: """Tests for lac klm.""" def setup(self): """Set up the tests.""" self.reader = LACKLMReader() self.reader.scans = np.ones(100, dtype=scanline) self.reader.head = np.ones(1, dtype=header)[0] self.reader.spacecraft_id = 12 self.reader.head["noaa_spacecraft_identification_code"] = self.reader.spacecraft_id self.reader.spacecraft_name = "metopa" self.reader.scans["scan_line_number"] = np.arange(100) # PRT self.reader.scans["telemetry"]["PRT"] = 400 self.reader.scans["telemetry"]["PRT"][0::5, :] = 0 def test_get_ch3_switch(self): """Test channel 3 identification.""" self.reader.scans = { 'scan_line_bit_field': np.array([1, 2, 3, 4, 5, 6])} switch_exp = np.array([1, 2, 3, 0, 1, 2]) numpy.testing.assert_array_equal( self.reader.get_ch3_switch(), switch_exp) def test_calibrate_channels(self): """Test channel calibration.""" # ICT self.reader.scans["back_scan"] = 400 self.reader.scans["back_scan"][0::5, :] = 0 # Space self.reader.scans["space_data"] = 400 self.reader.scans["space_data"][0::5, :] = 0 assert np.any(np.isfinite(self.reader.get_calibrated_channels())) def test_calibrate_inactive_3b(self): """Test calibration of an inactive 3b.""" channels = self.reader.get_calibrated_channels() assert np.all(np.isnan(channels[:, :, 3])) pygac-1.7.2/pygac/tests/test_pod.py000066400000000000000000000314141444627033600173000ustar00rootroot00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Author(s): # Stephan Finkensieper # Carlos Horn # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . """Test module for the pod reading.""" import datetime as dt import unittest import numpy as np import numpy.testing import sys try: from unittest import mock except ImportError: import mock from pygac.clock_offsets_converter import txt as clock_offsets_txt from pygac.reader import ReaderError, NoTLEData from pygac.gac_pod import GACPODReader from pygac.lac_pod import LACPODReader from pygac.tests.utils import CalledWithArray class TestPOD(unittest.TestCase): """Test the POD GAC reader.""" longMessage = True def setUp(self): """Set up the test.""" self.reader = GACPODReader() # python 2 compatibility if sys.version_info.major < 3: self.assertRaisesRegex = self.assertRaisesRegexp def test__validate_header(self): """Test the header validation""" filename = b'NSS.GHRR.TN.D80001.S0332.E0526.B0627173.WI' head = {'data_set_name': filename} GACPODReader._validate_header(head) # wrong name pattern with self.assertRaisesRegex(ReaderError, 'Data set name .* does not match!'): head = {'data_set_name': b'abc.txt'} GACPODReader._validate_header(head) # wrong platform name = b'NSS.GHRR.NL.D02187.S1904.E2058.B0921517.GC' with self.assertRaisesRegex(ReaderError, 'Improper platform id "NL"!'): head = {'data_set_name': name} GACPODReader._validate_header(head) # wrong transfer mode name = filename.replace(b'GHRR', b'LHRR') with self.assertRaisesRegex(ReaderError, 'Improper transfer mode "LHRR"!'): head = {'data_set_name': name} GACPODReader._validate_header(head) # other change reader head = {'data_set_name': name} LACPODReader._validate_header(head) @mock.patch('pygac.reader.Reader.get_calibrated_channels') def test__get_calibrated_channels_uniform_shape(self, get_channels): """Test the uniform shape as required by gac_io.save_gac.""" channels = np.arange(2*2*5, dtype=float).reshape((2, 2, 5)) get_channels.return_value = channels uniform_channels = self.reader._get_calibrated_channels_uniform_shape() self.assertTrue(np.isnan(uniform_channels[:, :, 2]).all()) self.assertTrue(uniform_channels[:, :, [0, 1, 3, 4, 5]].sum() == channels.sum()) def test_decode_timestamps(self): """Test POD timestamp decoding.""" # Reference timestamps, one before 2000 one after 2000 t2000_ref = (2001, 335, 53644260) t1900_ref = (1983, 336, 35058207) # Encoded version t2000_enc = np.array([847, 818, 35812]) t1900_enc = np.array([42832, 534, 61983]) # Test whether PODReader decodes them correctly self.assertEqual(GACPODReader.decode_timestamps(t2000_enc), t2000_ref, msg='Timestamp after 2000 was decoded incorrectly') self.assertEqual(GACPODReader.decode_timestamps(t1900_enc), t1900_ref, msg='Timestamp before 2000 was decoded incorrectly') @mock.patch('pygac.gac_pod.GACPODReader.decode_timestamps') def test_get_header_timestamp(self, decode_timestamps): """Test readout of header timestamp.""" self.reader.head = {'start_time': 123} decode_timestamps.return_value = np.array( [2019]), np.array([123]), np.array([123456]) time = self.reader.get_header_timestamp() decode_timestamps.assert_called_with(123) self.assertEqual(time, dt.datetime(2019, 5, 3, 0, 2, 3, 456000)) @mock.patch('pygac.gac_pod.GACPODReader.decode_timestamps') def test_get_times(self, decode_timestamps): """Test getting times.""" self.reader.scans = {'time_code': 123} self.reader._get_times() decode_timestamps.assert_called_with(123) def test_get_lonlat(self): """Test readout of lon/lat coordinates.""" earth_loc = 128 * np.array([[1, 2, 3, 4], [5, 6, 7, 8]]) self.reader.scans = {'earth_location': earth_loc} lons_exp = np.array([[2, 4], [6, 8]]) lats_exp = np.array([[1, 3], [5, 7]]) lons, lats = self.reader._get_lonlat() numpy.testing.assert_array_equal(lons, lons_exp) numpy.testing.assert_array_equal(lats, lats_exp) @mock.patch('pygac.pod_reader.get_tsm_idx') def test_get_tsm_pixels(self, get_tsm_idx): """Test channel set used for TSM correction.""" ones = np.ones((409, 100)) zeros = np.zeros(ones.shape) ch1 = 1*ones ch2 = 2*ones ch4 = 4*ones ch5 = 5*ones channels = np.dstack((ch1, ch2, zeros, ch4, ch5)) self.reader.get_tsm_pixels(channels) get_tsm_idx.assert_called_with(CalledWithArray(ch1), CalledWithArray(ch2), CalledWithArray(ch4), CalledWithArray(ch5)) def test_quality_indicators(self): """Test the quality indicator unpacking.""" reader = self.reader QFlag = reader.QFlag quality_indicators = np.array([ 1, # 00...001 QFlag.FATAL_FLAG, # 100...00 QFlag.CALIBRATION | QFlag.NO_EARTH_LOCATION, QFlag.TIME_ERROR | QFlag.DATA_GAP, ], dtype='>u4') # check if the bits look as expected bits = np.unpackbits(quality_indicators.view(np.uint8)).reshape((-1, 32)) # For a big endian integer, the number 1 fills only the last of the 32 bits self.assertEqual(bits[0].sum(), 1) # only one bit is filled self.assertEqual(bits[0][-1], 1) # the last bit is filled # The fatal flag fills only the first bit self.assertEqual(bits[1].sum(), 1) # only one bit is filled self.assertEqual(bits[1][0], 1) # the first bit is filled # setup reader and test reader.scans = {self.reader._quality_indicators_key: quality_indicators} # default mask is QFlag.FATAL_FLAG | QFlag.CALIBRATION | QFlag.NO_EARTH_LOCATION expected_mask = np.array([False, True, True, False], dtype=bool) numpy.testing.assert_array_equal(reader.mask, expected_mask) # test individual flags expected_mask = np.array([False, False, False, True], dtype=bool) numpy.testing.assert_array_equal( reader._get_corrupt_mask(flags=QFlag.TIME_ERROR), expected_mask ) # test combination of flags expected_mask = np.array([False, False, True, True], dtype=bool) flags = QFlag.DATA_GAP | QFlag.NO_EARTH_LOCATION numpy.testing.assert_array_equal( reader._get_corrupt_mask(flags=flags), expected_mask ) @mock.patch('pygac.pod_reader.get_lonlatalt') @mock.patch('pygac.pod_reader.compute_pixels') @mock.patch('pygac.reader.Reader.get_tle_lines') @mock.patch('pygac.pod_reader.avhrr_gac') def test__adjust_clock_drift(self, avhrr_gac, get_tle_lines, compute_pixels, get_lonlatalt): """Test the clock drift adjustment.""" sat_name = "fake_sat" reader = self.reader # We construct the following input # the scan lines do not start with 1 and have a gap scan_lines = np.array([15, 16, 17, 18, 22, 23, 24, 25]) scan_rate = 0.5 # seconds/line # the first valid scans starts 1980-01-01 (without clock correction) # which leads to the following utcs for the given scan lines # ['1980-01-01T00:00:00.000', '1980-01-01T00:00:00.500', # '1980-01-01T00:00:01.000', '1980-01-01T00:00:01.500', # '1980-01-01T00:00:03.500', '1980-01-01T00:00:04.000', # '1980-01-01T00:00:04.500', '1980-01-01T00:00:05.000'] scan_utcs = ( (1000 * scan_rate * (scan_lines - scan_lines[0])).astype('timedelta64[ms]') + np.datetime64("1980", "ms") ) # For the geolocations, we assume an artificial swath of two pixels width # from north to south with constant lon, lat difference of 3deg for simplicity # lons = [[0, 3], [0, 3], [0, 3], [0, 3], # [0, 3], [0, 3], [0, 3], [0, 3]], # lats = [[45, 45], [48, 48], [51, 51], [54, 54], # [66, 66], [69, 69], [72, 72], [75, 75]] scan_angle = 3.0 # deg scan_lons, scan_lats = np.meshgrid(scan_angle*np.arange(2), scan_angle*scan_lines) # we assume a constant clock offset of 3.75 seconds # which should lead to the following adjustment on utcs # ['1979-12-31T23:59:56.250', '1979-12-31T23:59:56.750', # '1979-12-31T23:59:57.250', '1979-12-31T23:59:57.750', # '1979-12-31T23:59:59.750', '1980-01-01T00:00:00.250', # '1980-01-01T00:00:00.750', '1980-01-01T00:00:01.250'] offset = 3.75 scan_offsets = offset*np.ones_like(scan_lines, dtype=float) # seconds expected_utcs = scan_utcs - (1000*scan_offsets).astype('timedelta64[ms]') # the adjustment of geolocations should keep the lons unchanged, # but should shift the lats by scan_angel * offset / scan_rate # = 3deg/line * 3.75sec / 0.5sec/line = 22.5deg # [[22.5, 22.5], [25.5, 25.5], [28.5, 28.5], [31.5, 31.5], # [43.5, 43.5], [46.5, 46.5], [49.5, 49.5], [52.5, 52.5]] expected_lons = scan_lons lats_shift = scan_angle*offset/scan_rate expected_lats = scan_lats - lats_shift # prepare the reader reader.scans = {"scan_line_number": scan_lines} reader.utcs = scan_utcs reader.lons = scan_lons reader.lats = scan_lats reader.spacecraft_name = sat_name # prepare offsets clock_offsets_txt[sat_name] = ("75001 000000 {offset} " "85001 000000 {offset}").format(offset=offset) # set attitude coeffs reader._rpy = np.zeros(3) # set mocks for reader._compute_missing_lonlat call sgeom = mock.Mock() sgeom.times.return_value = [None] avhrr_gac.return_value = sgeom get_tle_lines.return_value = [None, None] compute_pixels.return_value = None # for the following mock, we need to know the missing values in advanced, # which we do, because we can convert the offset seconds into line number. offset_lines = offset / scan_rate min_line = np.floor(scan_lines[0] - offset_lines).astype(int) max_line = scan_lines[-1] missed_lines = np.setdiff1d(np.arange(min_line, max_line+1), scan_lines) n_missed = len(missed_lines) missed_lons = np.tile([0., scan_angle], n_missed) missed_lats = np.repeat(scan_angle*missed_lines, 2) get_lonlatalt.return_value = [missed_lons, missed_lats] # adjust clock drift reader._adjust_clock_drift() # check output # use allclose for geolocations, because the slerp interpolation # includes a transormation to cartesian coordinates and back to lon, lats. numpy.testing.assert_array_equal(reader.utcs, expected_utcs) numpy.testing.assert_allclose(reader.lons, expected_lons) numpy.testing.assert_allclose(reader.lats, expected_lats) # undo changes to clock_offsets_txt clock_offsets_txt.pop(sat_name) @mock.patch('pygac.pod_reader.get_offsets') @mock.patch('pygac.reader.Reader.get_tle_lines') def test__adjust_clock_drift_without_tle(self, get_tle_lines, get_offsets): """Test that clockdrift adjustment can handle missing TLE data.""" reader = self.reader reader.utcs = np.zeros(10, dtype='datetime64[ms]') reader.scans = {"scan_line_number": np.arange(10)} get_offsets.return_value = np.zeros(10), np.zeros(10) get_tle_lines.side_effect = NoTLEData('No TLE data available') reader._adjust_clock_drift() # should pass without errors pygac-1.7.2/pygac/tests/test_reader.py000066400000000000000000000724721444627033600177710ustar00rootroot00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Author(s): # Stephan Finkensieper # Carlos Horn # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . """Test the readers.""" import datetime import os import sys import unittest try: import mock except ImportError: from unittest import mock import numpy as np import numpy.testing from pygac.gac_reader import GACReader, ReaderError from pygac.lac_reader import LACReader from pygac.pod_reader import POD_QualityIndicator from pygac.gac_pod import scanline from pygac.reader import NoTLEData class TestPath(os.PathLike): """Fake path class.""" def __init__(self, path): """Initialize the path.""" self.path = str(path) def __fspath__(self): """Return the path.""" return self.path class FakeGACReader(GACReader): """Fake GAC reader class.""" QFlag = POD_QualityIndicator _quality_indicators_key = "quality_indicators" tsm_affected_intervals = {None: []} along_track = 3 across_track = 4 def __init__(self): """Initialize the fake reader.""" super().__init__() self.scan_width = self.across_track scans = np.zeros(self.along_track, dtype=scanline) scans["scan_line_number"] = np.arange(self.along_track) scans["sensor_data"] = 128 self.scans = scans self.head = {'foo': 'bar'} self.spacecraft_name = 'noaa6' def _get_times(self): year = np.full(self.along_track, 1970, dtype=int) jday = np.full(self.along_track, 1, dtype=int) msec = 1000 * np.arange(1, self.along_track+1, dtype=int) return year, jday, msec def get_header_timestamp(self): """Get the header timestamp.""" return datetime.datetime(1970, 1, 1) def get_telemetry(self): """Get the telemetry.""" prt = 51 * np.ones(self.along_track) # prt threshold is 50 ict = 101 * np.ones((self.along_track, 3)) # ict threshold is 100 space = 101 * np.ones((self.along_track, 3)) # space threshold is 100 return prt, ict, space def _adjust_clock_drift(self): pass def _get_lonlat(self): pass @staticmethod def _get_ir_channels_to_calibrate(): return [3, 4, 5] def postproc(self, channels): """Postprocess the data.""" pass def read(self, filename, fileobj=None): """Read the data.""" pass @classmethod def read_header(cls, filename, fileobj=None): """Read the header.""" pass def get_tsm_pixels(self, channels): """Get the tsm pixels.""" pass class TestGacReader(unittest.TestCase): """Test the common GAC Reader.""" longMessage = True @mock.patch.multiple('pygac.gac_reader.GACReader', __abstractmethods__=set()) @mock.patch('pygac.gac_reader.gtp.gac_lat_lon_interpolator') def setUp(self, interpolator, *mocks): """Set up the tests.""" self.interpolator = interpolator self.reader = GACReader() # python 2 compatibility if sys.version_info.major < 3: self.assertRaisesRegex = self.assertRaisesRegexp def test_filename(self): """Test the setter of the filename property.""" # test path with .gz extension filename = 'NSS.GHRR.TN.D80001.S0332.E0526.B0627173.WI' filepath = '/path/to/' + filename + '.gz' self.reader.filename = filepath self.assertEqual(self.reader.filename, filename) self.reader.filename = None self.assertIsNone(self.reader.filename) self.reader.filename = TestPath(filepath) self.assertEqual(self.reader.filename, filename) @unittest.skipIf(sys.version_info.major < 3, "Skipped in python2!") def test__read_scanlines(self): """Test the scanline extraction.""" self.reader.scanline_type = np.dtype([ ('a', 'S2'), ('b', 'M8[ms]") # Add some corruptions msecs[3000:] += 1800 * 1000 msecs[1000] += 24*3600*1000 msecs[2000] -= 24*3600*1000 # Mock reader get_header_timestamp.return_value = header_time self.reader.utcs = msecs.astype(">M8[ms]") self.reader.scans = np.array(scan_line_numbers, dtype=[("scan_line_number", ">u2")]) # Test correction self.reader.correct_times_thresh() numpy.testing.assert_array_equal(self.reader.utcs, utcs_expected) def test_calculate_sun_earth_distance_correction(self): """Test the calculate sun earth distance correction method.""" self.reader.utcs = np.array([315748035469, 315748359969, 315751135469, 315754371969, 315754371969]).astype('datetime64[ms]') corr = self.reader.get_sun_earth_distance_correction() numpy.testing.assert_almost_equal(corr, 0.96660494, decimal=7) @mock.patch('pygac.reader.Reader.get_sun_earth_distance_correction') @mock.patch('pygac.reader.Reader.get_midnight_scanline') @mock.patch('pygac.reader.Reader.get_miss_lines') @mock.patch('pygac.reader.Reader.calibration', new_callable=mock.PropertyMock) def test_update_metadata(self, calibration, get_miss_lines, get_midnight_scanline, get_sun_earth_distance_correction): """Test updating the metadata.""" get_miss_lines.return_value = 'miss_lines' get_midnight_scanline.return_value = 'midn_line' get_sun_earth_distance_correction.return_value = 'factor' self.reader.head = {'foo': 'bar'} calibration.return_value = mock.MagicMock(version='version') self.reader.update_meta_data() mda_exp = {'midnight_scanline': 'midn_line', 'missing_scanlines': 'miss_lines', 'sun_earth_distance_correction_factor': 'factor', 'gac_header': {'foo': 'bar'}, 'calib_coeffs_version': 'version'} self.assertDictEqual(self.reader.meta_data, mda_exp) def _get_scanline_numbers(scanlines_along_track): """Create artificial scanline numbers with some corruptions. Returns: Corrupted and corrected scanline numbers. """ scans = np.zeros(scanlines_along_track, dtype=[("scan_line_number", ">u2")]) scans["scan_line_number"] = np.arange(1, scanlines_along_track + 1) # ... with 500 missing scanlines at scanline 8000 scans["scan_line_number"][8000:] += 500 corrected = scans["scan_line_number"].copy() # ... and some spikes here and there scans["scan_line_number"][3000] += 1E4 scans["scan_line_number"][9000] -= 1E4 corrected = np.delete(corrected, [3000, 9000]) return scans, corrected class TestLacReader(unittest.TestCase): """Test the common LAC Reader.""" longMessage = True @mock.patch.multiple('pygac.lac_reader.LACReader', __abstractmethods__=set()) def setUp(self, *mocks): """Set up the tests.""" self.reader = LACReader() def test_lac_reader_accepts_FRAC(self): """Test the header validation.""" head = {'data_set_name': b'NSS.FRAC.M1.D19115.S2352.E0050.B3425758.SV'} self.reader._validate_header(head) def test_correct_scan_line_numbers(self): """Test scanline number correction.""" scans, expected = _get_scanline_numbers(22000) self.reader.scans = scans self.reader.correct_scan_line_numbers() numpy.testing.assert_array_equal(self.reader.scans['scan_line_number'], expected) pygac-1.7.2/pygac/tests/test_slerp.py000066400000000000000000000105221444627033600176400ustar00rootroot00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (c) 2014 Martin Raspaud # Author(s): # Martin Raspaud # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . """Test the slerp module """ import unittest from pygac.slerp import slerp import numpy as np class TestSlerp(unittest.TestCase): def test_slerp(self): lon0, lat0 = (0, 0) lon1, lat1 = (0, 1) self.assertTrue( np.allclose(slerp(lon0, lat0, lon1, lat1, 0.5), (0, 0.5))) def test_slerp_datum(self): lon0, lat0 = (183, 0) lon1, lat1 = (179, 0) res = slerp(lon0, lat0, lon1, lat1, 0.5) res %= 360 self.assertTrue( np.allclose(res, (181, 0))) def test_slerp_pole(self): lon0, lat0 = (0, 89) lon1, lat1 = (180, 89) res = slerp(lon0, lat0, lon1, lat1, 0.5) self.assertTrue( np.allclose(res[:, :, 1], 90)) lon0, lat0 = (-90, 89) lon1, lat1 = (90, 89) res = slerp(lon0, lat0, lon1, lat1, 0.5) self.assertTrue( np.allclose(res[:, :, 1], 90)) lon0, lat0 = (0, 89) lon1, lat1 = (180, 87) res = slerp(lon0, lat0, lon1, lat1, 0.5) self.assertTrue( np.allclose(res, (180, 89))) def test_slerp_vec(self): lon0 = np.array([[0, 0], [0, 0]]) lat0 = np.array([[0, 0], [0, 0]]) lon1 = np.array([[0, 0], [0, 0]]) lat1 = np.array([[1, 1], [1, 1]]) res = slerp(lon0, lat0, lon1, lat1, 0.5) self.assertTrue(np.allclose(res[:, :, 0], 0)) self.assertTrue(np.allclose(res[:, :, 1], 0.5)) lon0 = np.array([[183, 0], [-90, 0]]) lat0 = np.array([[0, 89], [89, 89]]) lon1 = np.array([[179, 180], [90, 180]]) lat1 = np.array([[0, 89], [89, 87]]) res = slerp(lon0, lat0, lon1, lat1, 0.5) self.assertTrue(np.allclose(res[0, 0, :] % 360, (181, 0))) self.assertTrue(np.allclose(res[0, 1, 1], 90)) self.assertTrue(np.allclose(res[1, 0, 1], 90)) self.assertTrue(np.allclose(res[1, 1, :], (180, 89))) def test_slerp_tvec(self): lon0 = np.array([[0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0]]) lat0 = np.array([[0, 0], [5, 0], [10, 0], [15, 0], [20, 0], [25, 0], [30, 0]]) lon1 = np.array([[0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0]]) lat1 = np.array([[45, 45], [45, 45], [45, 45], [45, 45], [45, 45], [45, 45], [45, 45]]) t = np.array([[0.5, 0, 0.2, 0.4, 0.6, 0.8, 1]]).T t = t[:, :, np.newaxis] res = slerp(lon0, lat0, lon1, lat1, t) expected = np.array([[22.5, 22.5], [5., 0.], [17., 9.], [27., 18.], [35., 27.], [41., 36.], [45., 45.]]) self.assertTrue(np.allclose(res[:, :, 0], 0)) self.assertTrue(np.allclose(res[:, :, 1], expected)) pygac-1.7.2/pygac/tests/test_tsm.py000066400000000000000000000061111444627033600173150ustar00rootroot00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Author(s): # Stephan Finkensieper # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . """Test TSM module.""" import unittest import pygac.correct_tsm_issue as tsm import numpy as np import numpy.testing class TSMTest(unittest.TestCase): """Test TSM module.""" def test_get_tsm_idx(self): """Test identification of TSM affected pixels.""" cols = np.arange(409) rows = np.arange(3000) mcols, mrows = np.meshgrid(cols, rows) # Create dummy reflectances in [0, 1] and BTs [170, 350] refl = np.sin(mrows / float(rows.size)) * \ np.cos(mcols / float(cols.size)) bt = np.cos(mrows / float(rows.size)) * \ np.sin(mcols / float(cols.size)) bt = 170 + (350 - 170) * bt ch1 = refl.copy() ch2 = refl.copy() ch4 = bt.copy() ch5 = bt.copy() # Add rectangle with noise to channel 1 and 4 noise_cols, noise_rows = np.meshgrid(np.arange(200, 300), np.arange(1000, 2000)) for ch in [ch1, ch4]: ch[noise_rows, noise_cols] += 1000 + 1000*np.random.rand( noise_rows.shape[0], noise_rows.shape[1]) # We expect the filter to also detect the edges of the noisy # rectangle: At the edges there is a transition from zero to # nonzero channel diff which leads to an increased 3x3 standard # deviation. noise_cols_exp, noise_rows_exp = np.meshgrid(np.arange(199, 301), np.arange(999, 2001)) idx = tsm.get_tsm_idx(ch1, ch2, ch4, ch5) numpy.testing.assert_array_equal(idx[0], noise_rows_exp.ravel()) numpy.testing.assert_array_equal(idx[1], noise_cols_exp.ravel()) def test_std_filter(self): """Test standard deviation filter.""" # Define test data data = np.array([ [2., 2., 2., 2.], [2., np.nan, np.nan, 2.], [np.nan, 3., 3., np.nan], [3., 2., 2., 3.], ]) # Define reference filtered_ref = np.sqrt(np.array([ [0., 0., 0., 0.], [0.1875, 2./9., 2./9., 0.1875], [0.25, 0.25, 0.25, 0.25], [2./9., 0.24, 0.24, 2./9.] ])) # Apply filter and compare results against reference filtered = tsm.std_filter(data=data, box_size=3) numpy.testing.assert_array_equal(filtered, filtered_ref) pygac-1.7.2/pygac/tests/test_utils.py000066400000000000000000000075211444627033600176600ustar00rootroot00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (c) 2013, 2014 Martin Raspaud # Author(s): # Carlos Horn # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . """Test pygac.utils module """ import gzip import io import os import unittest from unittest import mock import numpy as np from pygac.utils import file_opener, calculate_sun_earth_distance_correction class TestUtils(unittest.TestCase): """Test pygac.utils functions""" longMessage = True @mock.patch('pygac.utils.open', mock.MagicMock(return_value=io.BytesIO(b'file content'))) def test_file_opener_1(self): """Test if a file is redirected correctly through file_opener.""" with file_opener('path/to/file') as f: content = f.read() self.assertEqual(content, b'file content') def test_file_opener_2(self): """Test file_opener with file objects and compression""" # prepare test normal_message = b'normal message' gzip_message_decoded = b'gzip message' with io.BytesIO() as f: with gzip.open(f, mode='wb') as g: g.write(gzip_message_decoded) f.seek(0) gzip_message_encoded = f.read() # on normal file (check also if it remains open) with io.BytesIO(normal_message) as f: with file_opener(f) as g: message = g.read() self.assertFalse(f.closed) self.assertEqual(message, normal_message) # on gzip file with io.BytesIO(gzip_message_encoded) as f: with file_opener(f) as g: message = g.read() self.assertEqual(message, gzip_message_decoded) @mock.patch('pygac.utils.open', mock.MagicMock(side_effect=FileNotFoundError)) def test_file_opener_3(self): """Test file_opener with PathLike object""" # prepare test class RawBytes(os.PathLike): def __init__(self, filename, raw_bytes): self.filename = str(filename) self.raw_bytes = raw_bytes def __fspath__(self): return self.filename def open(self): return io.BytesIO(self.raw_bytes) filename = '/path/to/file' file_bytes = b'TestTestTest' test_pathlike = RawBytes(filename, file_bytes) with file_opener(test_pathlike) as f: content = f.read() self.assertEqual(content, file_bytes) # test with lazy loading open method (open only in context) class RawBytesLazy(RawBytes): def open(self): self.lazy_opener_mock = mock.MagicMock() self.lazy_opener_mock.__enter__.return_value = io.BytesIO(self.raw_bytes) return self.lazy_opener_mock test_pathlike = RawBytesLazy(filename, file_bytes) with file_opener(test_pathlike) as f: content = f.read() self.assertEqual(content, file_bytes) test_pathlike.lazy_opener_mock.__exit__.assert_called_once_with(None, None, None) def test_calculate_sun_earth_distance_correction(self): """Test function for the sun distance corretction.""" corr = calculate_sun_earth_distance_correction(3) np.testing.assert_almost_equal(corr, 0.96660494, decimal=7) pygac-1.7.2/pygac/tests/utils.py000066400000000000000000000020611444627033600166130ustar00rootroot00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Author(s): # Stephan Finkensieper # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . """Test utilities.""" import numpy as np class CalledWithArray(object): """Adapter for arrays in mock.assert_called_with().""" def __init__(self, array): self.array = array def __repr__(self): return repr(self.array) def __eq__(self, other): return np.all(self.array == other) pygac-1.7.2/pygac/utils.py000066400000000000000000000260561444627033600154630ustar00rootroot00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Author(s): # Stephan Finkensieper # Carlos Horn # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . import gzip import io import logging from contextlib import contextmanager, nullcontext import numpy as np LOG = logging.getLogger(__name__) def gzip_inspected(open_file): """Try to gzip decompress the file object if applicable.""" try: file_object = gzip.GzipFile(mode='rb', fileobj=open_file) file_object.read(1) except OSError: file_object = open_file finally: file_object.seek(0) return file_object @contextmanager def file_opener(file): if isinstance(file, io.IOBase) and file.seekable(): # avoid closing the file using nullcontext open_file = nullcontext(file) elif hasattr(file, 'open'): try: open_file = file.open(mode='rb') except TypeError: open_file = file.open() else: open_file = open(file, mode='rb') # set open_file into context in case of lazy loading in __enter__ method. with open_file as file_object: yield gzip_inspected(file_object) def get_absolute_azimuth_angle_diff(sat_azi, sun_azi): """Calculates absolute azimuth difference angle. """ rel_azi = abs(sat_azi - sun_azi) rel_azi = rel_azi % 360 # Not using np.where to avoid copying array rel_azi[rel_azi > 180] = 360.0 - rel_azi[rel_azi > 180] return rel_azi def centered_modulus(array, divisor): """Transform array to half open range ]-divisor/2, divisor/2].""" arr = array % divisor arr[arr > divisor / 2] -= divisor return arr def calculate_sun_earth_distance_correction(jday): """Calculate the sun earth distance correction. In 2008 3-4 different equations of ESD were considered. This one was chosen as it at the time gave reflectances most closely matching the PATMOS-x data provided then by Andy Heidinger. Formula might need to be reconsidered if jday is updated to a float. """ # Earth-Sun distance correction factor corr = 1.0 - 0.0334 * np.cos(2.0 * np.pi * (jday - 2) / 365.25) return corr def check_user_scanlines(start_line, end_line, first_valid_lat=None, last_valid_lat=None, along_track=None): """Check user-defined scanlines. Can be used by both pygac and satpy. Args: start_line: User-defined start line (afer stripping, if enabled) end_line: User-defined end line (afer stripping, if enabled) first_valid_lat: First scanline with valid latitudes last_valid_lat: Last scanline with valid latitudes along_track: Number of scanlines (only needed if stripping is disabled) """ if first_valid_lat is not None and last_valid_lat is not None: num_valid_lines = last_valid_lat - first_valid_lat + 1 else: if along_track is None: raise ValueError('Need along_track') num_valid_lines = along_track start_line = int(start_line) end_line = int(end_line) if end_line == 0: # If the user specifies 0 as the last scanline, process all # scanlines with valid coordinates end_line = num_valid_lines - 1 elif end_line >= num_valid_lines: end_line = num_valid_lines - 1 LOG.warning('Given end line exceeds scanline range, resetting ' 'to {}'.format(end_line)) if start_line > num_valid_lines: raise ValueError('Given start line {} exceeds scanline range {}' .format(start_line, num_valid_lines)) return start_line, end_line def strip_invalid_lat(lats): """Strip invalid latitudes at the end and beginning of the orbit.""" no_wrong_lat = np.where(np.logical_not(np.isnan(lats))) return min(no_wrong_lat[0]), max(no_wrong_lat[0]) def slice_channel(ch, start_line, end_line, first_valid_lat=None, last_valid_lat=None, midnight_scanline=None, miss_lines=None, qual_flags=None): """Slice channel data using user-defined start/end line. If valid_lat_start/end are given, strip scanlines with invalid coordinates at the beginning and end of the orbit. Can be used by both pygac and satpy. Args: ch: Channel data start_line: User-defined start line (afer stripping, if enabled) end_line: User-defined end line (after stripping, if enabled) first_valid_lat: First scanline with valid latitudes last_valid_lat: Last scanline with valid latitudes. midnight_scanline: If given, update midnight scanline to the new scanline range. miss_lines: If given, update list of missing lines with the ones that have been stripped due to invalid coordinates qual_flags: Quality flags, needed to updated missing lines. """ if first_valid_lat is not None and last_valid_lat is not None: # Strip invalid coordinates and update midnight scanline as well as # user-defined start/end lines ch, updated = _slice(ch, start_line=first_valid_lat, end_line=last_valid_lat, update=[midnight_scanline]) midnight_scanline = updated[0] # Reset user-defined end line, if it has been removed end_line = min(end_line, ch.shape[0] - 1) start_line = min(start_line, ch.shape[0] - 1) # Update missing scanlines if miss_lines is not None: miss_lines = _update_missing_scanlines( miss_lines=miss_lines, qual_flags=qual_flags, start_line=first_valid_lat, end_line=last_valid_lat) # Slice data using user-defined start/end lines ch_slc, updated = _slice(ch, start_line=start_line, end_line=end_line, update=[midnight_scanline]) midnight_scanline = updated[0] return ch_slc, miss_lines, midnight_scanline def _slice(ch, start_line, end_line, update=None): """Slice the given channel. Args: start_line: New start line end_line: New end line update: List of scanlines to be updated to the new range """ # Slice data using new start/end lines if len(ch.shape) == 1: ch_slc = ch[start_line:end_line + 1].copy() else: ch_slc = ch[start_line:end_line + 1, :].copy() if update: updated = [_update_scanline(l, start_line, end_line) if l is not None else None for l in update] return ch_slc, updated return ch_slc def _update_scanline(scanline, new_start_line, new_end_line): """Update the given scanline to the new range. Set scanline to None if it lies outside the new range. """ scanline -= new_start_line num_lines = new_end_line - new_start_line + 1 if scanline < 0 or scanline >= num_lines: scanline = None return scanline def _update_missing_scanlines(miss_lines, qual_flags, start_line, end_line): """Add scanlines excluded by slicing to the list of missing scanlines. Args: miss_lines: List of missing scanlines qual_flags: Quality flags start_line: New start line of the slice end_line: New end line of the slice """ return np.sort(np.unique( qual_flags[0:start_line, 0].tolist() + miss_lines.tolist() + qual_flags[end_line + 1:, 0].tolist() )) def plot_correct_times_thresh(res, filename=None): """Visualize results of GACReader.correct_times_thresh.""" import matplotlib.pyplot as plt t = res['t'] tcorr = res.get('tcorr') n = res['n'] offsets = res.get('offsets') t0_head = res.get('t0_head') max_diff_from_t0_head = res.get('max_diff_from_t0_head') fail_reason = res.get('fail_reason', 'Failed for unknown reason') # Setup figure along_track = np.arange(t.size) _, (ax0, ax1, ax2) = plt.subplots(nrows=3, sharex=True, figsize=(8, 10)) # Plot original vs corrected timestamps ax0.plot(along_track, t, "b-", label="original") if tcorr is not None: ax0.plot(along_track, tcorr, color="red", linestyle="--", label="corrected") else: ax0.set_title(fail_reason) ax0.set_ylabel("Time") ax0.set_ylim(t.min() - np.timedelta64(30, "m"), t.max() + np.timedelta64(30, "m")) ax0.legend(loc="best") # Plot offset (original time - ideal time) if offsets is not None: ax1.plot(along_track, offsets) ax1.fill_between( along_track, t0_head - np.ones(along_track.size) * max_diff_from_t0_head, t0_head + np.ones(along_track.size) * max_diff_from_t0_head, facecolor="g", alpha=0.33) ax1.axhline(y=t0_head, color="g", linestyle="--", label="Header timestamp") ax1.set_ylim(t0_head - 5 * max_diff_from_t0_head, t0_head + 5 * max_diff_from_t0_head) ax1.set_ylabel("Offset t-tn [ms]") ax1.legend(loc="best") # Plot scanline number ax2.plot(along_track, n) ax2.set_ylabel("Scanline number") ax2.set_xlabel("Along Track") if filename: plt.savefig(filename, bbox_inches="tight", dpi=100) else: plt.show() def plot_correct_scanline_numbers(res, filename=None): """Visualize results of GACReader.correct_scanline_numbers.""" import matplotlib.pyplot as plt along_track = res['along_track'] n_orig = res['n_orig'] n_corr = res['n_corr'] within_range = res['within_range'] thresh = res['thresh'] diffs = res['diffs'] nz_diffs = res['nz_diffs'] # Setup figure _, (ax0, ax1) = plt.subplots(nrows=2) # Plot original vs corrected scanline numbers ax0.plot(along_track, n_orig, "b-", label="original") along_track_corr = along_track.copy() along_track_corr = along_track_corr[within_range] along_track_corr = along_track_corr[diffs <= thresh] ax0.plot(along_track_corr, n_corr, "r--", label="corrected") ax0.set_ylabel("Scanline Number") ax0.set_xlabel("Along Track") ax0.legend(loc="best") # Plot difference from ideal ax1.plot(np.arange(len(nz_diffs)), nz_diffs) ax1.axhline(thresh, color="r", label="thresh={0:.2f}" .format(thresh)) ax1.set_xlabel("Index") ax1.set_ylabel("nonzero |n - n'|") ax1.legend() plt.tight_layout() if filename: plt.savefig(filename, bbox_inches='tight') else: plt.show() pygac-1.7.2/pyproject.toml000066400000000000000000000003161444627033600155510ustar00rootroot00000000000000[build-system] requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2", 'setuptools_scm_git_archive'] build-backend = "setuptools.build_meta" [tool.setuptools_scm] write_to = "pygac/version.py" pygac-1.7.2/requirements.txt000066400000000000000000000001231444627033600161150ustar00rootroot00000000000000numpy>=1.6.1 h5py>=2.0.1 scipy>=0.8.0 python-geotiepoints>=1.1.8 packaging>=14.0 pygac-1.7.2/setup.cfg000066400000000000000000000001551444627033600144570ustar00rootroot00000000000000[options] setup_requires = setuptools_scm setuptools_scm_git_archive [flake8] max-line-length = 120 pygac-1.7.2/setup.py000066400000000000000000000052341444627033600143530ustar00rootroot00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (c) 2014 Abhay Devasthale, Adam.Dybbroe, Martin Raspaud # Author(s): # Adam.Dybbroe # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . """The setup module.""" from setuptools import setup import os if __name__ == '__main__': with open("README.md", "r") as fd: long_description = fd.read() requirements = ['docutils>=0.3', 'numpy>=1.8.0', 'pyorbital>=v0.3.2', 'h5py>=2.0.1', 'scipy>=0.8.0', 'python-geotiepoints>=1.1.8', 'bottleneck>=1.0.0'] extras_require = { 'dev': ['pytest', 'pre-commit', 'flake8'] } setup(name='pygac', description='NOAA AVHRR GAC/LAC reader and calibration', author='The Pytroll Team', author_email='pytroll@googlegroups.com', classifiers=["Development Status :: 4 - Beta", "Intended Audience :: Science/Research", "License :: OSI Approved :: GNU General Public License v3 " + "or later (GPLv3+)", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Scientific/Engineering"], url="https://github.com/pytroll/pygac", long_description=long_description, long_description_content_type='text/markdown', license='GPLv3', packages=['pygac'], package_data={'pygac': ['data/calibration.json']}, # Project should use reStructuredText, so ensure that the docutils get # installed or upgraded on the target machine install_requires=requirements, extras_require=extras_require, scripts=[os.path.join('bin', item) for item in os.listdir('bin')], data_files=[('etc', ['etc/pygac.cfg.template']), ('gapfilled_tles', ['gapfilled_tles/TLE_noaa16.txt'])], python_requires='>=3.8', zip_safe=False )