diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index d176d94..0000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,42 +0,0 @@ -# This workflow will install Python dependencies, run tests and lint with a variety of Python versions -# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions - -name: test - -on: [ push, pull_request] - -jobs: - build: - - runs-on: ubuntu-latest - strategy: - matrix: - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.x'] - - steps: - - uses: actions/checkout@v2 - - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 - with: - python-version: ${{ matrix.python-version }} - - - name: Install dependencies - run: | - sudo apt install -y libgirepository1.0-dev - python -m pip install --upgrade pip - python -m pip install flake8 pytest - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - - - name: Lint with flake8 - run: | - # stop the build if there are Python syntax errors or undefined names - flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics - # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide - flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - - - name: Run tests - run: | - if [ -f requirements-test.txt ]; then pip install -r requirements-test.txt; fi - python -m unittest discover -s tests - coverage run run_tests.py && coverage report -m diff --git a/.gitignore b/.gitignore deleted file mode 100644 index b607499..0000000 --- a/.gitignore +++ /dev/null @@ -1,62 +0,0 @@ -# Byte-compiled / optimized / DLL files -__pycache__/ -*.py[cod] - -# C extensions -*.so - -# Distribution / packaging -.Python -env/ -build/ -develop-eggs/ -dist/ -downloads/ -eggs/ -lib/ -lib64/ -parts/ -sdist/ -var/ -*.egg-info/ -.installed.cfg -*.egg -Pipfile.lock -Pipfile* - -# PyInstaller -# Usually these files are written by a python script from a template -# before PyInstaller builds the exe, so as to inject date/other infos into it. -*.manifest -*.spec - -# Installer logs -pip-log.txt -pip-delete-this-directory.txt - -# Unit test / coverage reports -htmlcov/ -.tox/ -.coverage -.cache -nosetests.xml -coverage.xml - -# Translations -*.mo -*.pot - -# Django stuff: -*.log - -# Sphinx documentation -docs/_build/ - -# PyBuilder -target/ - -# Various IDEs -/.idea - -# python-fitparse specific -FitSDK* diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 0000000..e69de29 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index 7489c37..0000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,18 +0,0 @@ -# Installing Test Dependencies - -`pip install -r requirements-test.txt` - -# Generating Test Requirements -Test requirements are shown in requirements-test.txt which is generated by pip-compile. You must first install pip-compile with `pip install pip-tools`. Then generate the final requirements file. - -`pip-compile --output-file requirements-test.txt etc/requirements-test.in` - -# Testing With Code Coverage - -To run unit tests with coverage: - -`coverage run run_tests.py` - -To get a report: - -`coverage report` diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 901fe39..0000000 --- a/LICENSE +++ /dev/null @@ -1,22 +0,0 @@ -MIT License - -Copyright (c) 2011-2025, David Cooper -Copyright (c) 2017-2025, Carey Metcalfe - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/MANIFEST.in b/MANIFEST.in deleted file mode 100644 index c1a7121..0000000 --- a/MANIFEST.in +++ /dev/null @@ -1,2 +0,0 @@ -include LICENSE -include README.md diff --git a/README.md b/README.md deleted file mode 100644 index d526522..0000000 --- a/README.md +++ /dev/null @@ -1,143 +0,0 @@ -python-fitparse -=============== - -> :warning: **NOTE:** *I have **limited to no time** to work on this package -> these days!* -> -> I am looking for a maintainer to help with issues and updating/releasing the package. -> Please reach out via email at if you have interest in helping. -> -> If you're having trouble using this package for whatever reason, might we suggest using -> an alternative library: [fitdecode](https://github.com/polyvertex/fitdecode) by -> [polyvertex](https://github.com/polyvertex). -> -> Cheers, -> -> David - -Here's a Python library to parse ANT/Garmin `.FIT` files. -[![Build Status](https://github.com/dtcooper/python-fitparse/workflows/test/badge.svg)](https://github.com/dtcooper/python-fitparse/actions?query=workflow%3Atest) - - -Install from [![PyPI](https://img.shields.io/pypi/v/fitparse.svg)](https://pypi.python.org/pypi/fitparse/): -``` -pip install fitparse -``` - -FIT files ------------- -- FIT files contain data stored in a binary file format. -- The FIT (Flexible and Interoperable Data Transfer) file protocol is specified - by [ANT](http://www.thisisant.com/). -- The SDK, code examples, and detailed documentation can be found in the - [ANT FIT SDK](http://www.thisisant.com/resources/fit). - - -Usage ------ -A simple example of printing records from a fit file: - -```python -import fitparse - -# Load the FIT file -fitfile = fitparse.FitFile("my_activity.fit") - -# Iterate over all messages of type "record" -# (other types include "device_info", "file_creator", "event", etc) -for record in fitfile.get_messages("record"): - - # Records can contain multiple pieces of data (ex: timestamp, latitude, longitude, etc) - for data in record: - - # Print the name and value of the data (and the units if it has any) - if data.units: - print(" * {}: {} ({})".format(data.name, data.value, data.units)) - else: - print(" * {}: {}".format(data.name, data.value)) - - print("---") -``` - -The library also provides a `fitdump` script for command line usage: -``` -$ fitdump --help -usage: fitdump [-h] [-v] [-o OUTPUT] [-t {readable,json}] [-n NAME] [--ignore-crc] FITFILE - -Dump .FIT files to various formats - -positional arguments: - FITFILE Input .FIT file (Use - for stdin) - -optional arguments: - -h, --help show this help message and exit - -v, --verbose - -o OUTPUT, --output OUTPUT - File to output data into (defaults to stdout) - -t {readable,json}, --type {readable,json} - File type to output. (DEFAULT: readable) - -n NAME, --name NAME Message name (or number) to filter - --ignore-crc Some devices can write invalid crc's, ignore these. -``` - -See the documentation for more: http://dtcooper.github.io/python-fitparse - - -Major Changes From Original Version ------------------------------------ - -After a few years of laying dormant we are back to active development! -The old version is archived as -[`v1-archive`](https://github.com/dtcooper/python-fitparse/releases/tag/v1-archive). - - * New, hopefully cleaner public API with a clear division between accessible - and internal parts. (Still unstable and partially complete.) - - * Proper documentation! - [Available here](https://dtcooper.github.io/python-fitparse/). - - * Unit tests and example programs. - - * **(WIP)** Command line tools (eg a `.FIT` to `.CSV` converter). - - * Component fields and compressed timestamp headers now supported and not - just an afterthought. Closes issues #6 and #7. - - * FIT file parsing is generic enough to support all types. Going to have - specific `FitFile` subclasses for more popular file types like activities. - - * **(WIP)** Converting field types to normalized values (for example, - `bool`, `date_time`, etc) done in a consistent way, that's easy to - customize by subclassing the converter class. I'm going to use something - like the Django form-style `convert_` idiom on this class. - - * The FIT profile is its own complete python module, rather than using - `profile.def`. - - * Bonus! The profile generation script is _less_ ugly (but still an - atrocity) and supports every - [ANT FIT SDK](http://www.thisisant.com/resources/fit) from version 1.00 - up to 5.10. - - * A working `setup.py` module. Closes issue #2, finally! I'll upload the - package to [PyPI](http://pypi.python.org/) when it's done. - - * Support for parsing one record at a time. This can be done using - `.parse_one()` for now, but I'm not sure of the exact - implementation yet. - - -Updating to new FIT SDK versions --------------------------------- -- Download the latest [ANT FIT SDK](http://www.thisisant.com/resources/fit). -- Update the profile: -``` -python3 scripts/generate_profile.py /path/to/fit_sdk.zip fitparse/profile.py -``` - - -License -------- - -This project is licensed under the MIT License - see the [`LICENSE`](LICENSE) -file for details. diff --git a/docs/api.rst b/_sources/api.rst.txt similarity index 99% rename from docs/api.rst rename to _sources/api.rst.txt index e5db642..8d64e0f 100644 --- a/docs/api.rst +++ b/_sources/api.rst.txt @@ -76,7 +76,7 @@ The ``FitFile`` Object try: fitfile = FitFile('/path.to/fitfile.fit') fitfile.parse() - except FitParseError as e: + except FitParseError, e: print "Error while parsing .FIT file: %s" % e sys.exit(1) diff --git a/docs/index.rst b/_sources/index.rst.txt similarity index 86% rename from docs/index.rst rename to _sources/index.rst.txt index 4a4fc30..78400e9 100644 --- a/docs/index.rst +++ b/_sources/index.rst.txt @@ -56,7 +56,13 @@ Requirements The following are required to install :mod:`fitparse`, -* `Python `_ 3.6 and above +* `Python `_ 2.5 and above (Python 3 is currently not + supported) + +* The `argparse `_ is required for the + :command:`fitdump` command, but it is included in the Python standard library + as of version 2.7. Using ``pip`` to install the package will install this if + needed. API Documentation diff --git a/_static/basic.css b/_static/basic.css new file mode 100644 index 0000000..2e3cf32 --- /dev/null +++ b/_static/basic.css @@ -0,0 +1,855 @@ +/* + * basic.css + * ~~~~~~~~~ + * + * Sphinx stylesheet -- basic theme. + * + * :copyright: Copyright 2007-2020 by the Sphinx team, see AUTHORS. + * :license: BSD, see LICENSE for details. + * + */ + +/* -- main layout ----------------------------------------------------------- */ + +div.clearer { + clear: both; +} + +div.section::after { + display: block; + content: ''; + clear: left; +} + +/* -- relbar ---------------------------------------------------------------- */ + +div.related { + width: 100%; + font-size: 90%; +} + +div.related h3 { + display: none; +} + +div.related ul { + margin: 0; + padding: 0 0 0 10px; + list-style: none; +} + +div.related li { + display: inline; +} + +div.related li.right { + float: right; + margin-right: 5px; +} + +/* -- sidebar --------------------------------------------------------------- */ + +div.sphinxsidebarwrapper { + padding: 10px 5px 0 10px; +} + +div.sphinxsidebar { + float: left; + width: 230px; + margin-left: -100%; + font-size: 90%; + word-wrap: break-word; + overflow-wrap : break-word; +} + +div.sphinxsidebar ul { + list-style: none; +} + +div.sphinxsidebar ul ul, +div.sphinxsidebar ul.want-points { + margin-left: 20px; + list-style: square; +} + +div.sphinxsidebar ul ul { + margin-top: 0; + margin-bottom: 0; +} + +div.sphinxsidebar form { + margin-top: 10px; +} + +div.sphinxsidebar input { + border: 1px solid #98dbcc; + font-family: sans-serif; + font-size: 1em; +} + +div.sphinxsidebar #searchbox form.search { + overflow: hidden; +} + +div.sphinxsidebar #searchbox input[type="text"] { + float: left; + width: 80%; + padding: 0.25em; + box-sizing: border-box; +} + +div.sphinxsidebar #searchbox input[type="submit"] { + float: left; + width: 20%; + border-left: none; + padding: 0.25em; + box-sizing: border-box; +} + + +img { + border: 0; + max-width: 100%; +} + +/* -- search page ----------------------------------------------------------- */ + +ul.search { + margin: 10px 0 0 20px; + padding: 0; +} + +ul.search li { + padding: 5px 0 5px 20px; + background-image: url(file.png); + background-repeat: no-repeat; + background-position: 0 7px; +} + +ul.search li a { + font-weight: bold; +} + +ul.search li div.context { + color: #888; + margin: 2px 0 0 30px; + text-align: left; +} + +ul.keywordmatches li.goodmatch a { + font-weight: bold; +} + +/* -- index page ------------------------------------------------------------ */ + +table.contentstable { + width: 90%; + margin-left: auto; + margin-right: auto; +} + +table.contentstable p.biglink { + line-height: 150%; +} + +a.biglink { + font-size: 1.3em; +} + +span.linkdescr { + font-style: italic; + padding-top: 5px; + font-size: 90%; +} + +/* -- general index --------------------------------------------------------- */ + +table.indextable { + width: 100%; +} + +table.indextable td { + text-align: left; + vertical-align: top; +} + +table.indextable ul { + margin-top: 0; + margin-bottom: 0; + list-style-type: none; +} + +table.indextable > tbody > tr > td > ul { + padding-left: 0em; +} + +table.indextable tr.pcap { + height: 10px; +} + +table.indextable tr.cap { + margin-top: 10px; + background-color: #f2f2f2; +} + +img.toggler { + margin-right: 3px; + margin-top: 3px; + cursor: pointer; +} + +div.modindex-jumpbox { + border-top: 1px solid #ddd; + border-bottom: 1px solid #ddd; + margin: 1em 0 1em 0; + padding: 0.4em; +} + +div.genindex-jumpbox { + border-top: 1px solid #ddd; + border-bottom: 1px solid #ddd; + margin: 1em 0 1em 0; + padding: 0.4em; +} + +/* -- domain module index --------------------------------------------------- */ + +table.modindextable td { + padding: 2px; + border-collapse: collapse; +} + +/* -- general body styles --------------------------------------------------- */ + +div.body { + min-width: 450px; + max-width: 800px; +} + +div.body p, div.body dd, div.body li, div.body blockquote { + -moz-hyphens: auto; + -ms-hyphens: auto; + -webkit-hyphens: auto; + hyphens: auto; +} + +a.headerlink { + visibility: hidden; +} + +a.brackets:before, +span.brackets > a:before{ + content: "["; +} + +a.brackets:after, +span.brackets > a:after { + content: "]"; +} + +h1:hover > a.headerlink, +h2:hover > a.headerlink, +h3:hover > a.headerlink, +h4:hover > a.headerlink, +h5:hover > a.headerlink, +h6:hover > a.headerlink, +dt:hover > a.headerlink, +caption:hover > a.headerlink, +p.caption:hover > a.headerlink, +div.code-block-caption:hover > a.headerlink { + visibility: visible; +} + +div.body p.caption { + text-align: inherit; +} + +div.body td { + text-align: left; +} + +.first { + margin-top: 0 !important; +} + +p.rubric { + margin-top: 30px; + font-weight: bold; +} + +img.align-left, .figure.align-left, object.align-left { + clear: left; + float: left; + margin-right: 1em; +} + +img.align-right, .figure.align-right, object.align-right { + clear: right; + float: right; + margin-left: 1em; +} + +img.align-center, .figure.align-center, object.align-center { + display: block; + margin-left: auto; + margin-right: auto; +} + +img.align-default, .figure.align-default { + display: block; + margin-left: auto; + margin-right: auto; +} + +.align-left { + text-align: left; +} + +.align-center { + text-align: center; +} + +.align-default { + text-align: center; +} + +.align-right { + text-align: right; +} + +/* -- sidebars -------------------------------------------------------------- */ + +div.sidebar { + margin: 0 0 0.5em 1em; + border: 1px solid #ddb; + padding: 7px; + background-color: #ffe; + width: 40%; + float: right; + clear: right; + overflow-x: auto; +} + +p.sidebar-title { + font-weight: bold; +} + +div.admonition, div.topic, blockquote { + clear: left; +} + +/* -- topics ---------------------------------------------------------------- */ + +div.topic { + border: 1px solid #ccc; + padding: 7px; + margin: 10px 0 10px 0; +} + +p.topic-title { + font-size: 1.1em; + font-weight: bold; + margin-top: 10px; +} + +/* -- admonitions ----------------------------------------------------------- */ + +div.admonition { + margin-top: 10px; + margin-bottom: 10px; + padding: 7px; +} + +div.admonition dt { + font-weight: bold; +} + +p.admonition-title { + margin: 0px 10px 5px 0px; + font-weight: bold; +} + +div.body p.centered { + text-align: center; + margin-top: 25px; +} + +/* -- content of sidebars/topics/admonitions -------------------------------- */ + +div.sidebar > :last-child, +div.topic > :last-child, +div.admonition > :last-child { + margin-bottom: 0; +} + +div.sidebar::after, +div.topic::after, +div.admonition::after, +blockquote::after { + display: block; + content: ''; + clear: both; +} + +/* -- tables ---------------------------------------------------------------- */ + +table.docutils { + margin-top: 10px; + margin-bottom: 10px; + border: 0; + border-collapse: collapse; +} + +table.align-center { + margin-left: auto; + margin-right: auto; +} + +table.align-default { + margin-left: auto; + margin-right: auto; +} + +table caption span.caption-number { + font-style: italic; +} + +table caption span.caption-text { +} + +table.docutils td, table.docutils th { + padding: 1px 8px 1px 5px; + border-top: 0; + border-left: 0; + border-right: 0; + border-bottom: 1px solid #aaa; +} + +table.footnote td, table.footnote th { + border: 0 !important; +} + +th { + text-align: left; + padding-right: 5px; +} + +table.citation { + border-left: solid 1px gray; + margin-left: 1px; +} + +table.citation td { + border-bottom: none; +} + +th > :first-child, +td > :first-child { + margin-top: 0px; +} + +th > :last-child, +td > :last-child { + margin-bottom: 0px; +} + +/* -- figures --------------------------------------------------------------- */ + +div.figure { + margin: 0.5em; + padding: 0.5em; +} + +div.figure p.caption { + padding: 0.3em; +} + +div.figure p.caption span.caption-number { + font-style: italic; +} + +div.figure p.caption span.caption-text { +} + +/* -- field list styles ----------------------------------------------------- */ + +table.field-list td, table.field-list th { + border: 0 !important; +} + +.field-list ul { + margin: 0; + padding-left: 1em; +} + +.field-list p { + margin: 0; +} + +.field-name { + -moz-hyphens: manual; + -ms-hyphens: manual; + -webkit-hyphens: manual; + hyphens: manual; +} + +/* -- hlist styles ---------------------------------------------------------- */ + +table.hlist { + margin: 1em 0; +} + +table.hlist td { + vertical-align: top; +} + + +/* -- other body styles ----------------------------------------------------- */ + +ol.arabic { + list-style: decimal; +} + +ol.loweralpha { + list-style: lower-alpha; +} + +ol.upperalpha { + list-style: upper-alpha; +} + +ol.lowerroman { + list-style: lower-roman; +} + +ol.upperroman { + list-style: upper-roman; +} + +:not(li) > ol > li:first-child > :first-child, +:not(li) > ul > li:first-child > :first-child { + margin-top: 0px; +} + +:not(li) > ol > li:last-child > :last-child, +:not(li) > ul > li:last-child > :last-child { + margin-bottom: 0px; +} + +ol.simple ol p, +ol.simple ul p, +ul.simple ol p, +ul.simple ul p { + margin-top: 0; +} + +ol.simple > li:not(:first-child) > p, +ul.simple > li:not(:first-child) > p { + margin-top: 0; +} + +ol.simple p, +ul.simple p { + margin-bottom: 0; +} + +dl.footnote > dt, +dl.citation > dt { + float: left; + margin-right: 0.5em; +} + +dl.footnote > dd, +dl.citation > dd { + margin-bottom: 0em; +} + +dl.footnote > dd:after, +dl.citation > dd:after { + content: ""; + clear: both; +} + +dl.field-list { + display: grid; + grid-template-columns: fit-content(30%) auto; +} + +dl.field-list > dt { + font-weight: bold; + word-break: break-word; + padding-left: 0.5em; + padding-right: 5px; +} + +dl.field-list > dt:after { + content: ":"; +} + +dl.field-list > dd { + padding-left: 0.5em; + margin-top: 0em; + margin-left: 0em; + margin-bottom: 0em; +} + +dl { + margin-bottom: 15px; +} + +dd > :first-child { + margin-top: 0px; +} + +dd ul, dd table { + margin-bottom: 10px; +} + +dd { + margin-top: 3px; + margin-bottom: 10px; + margin-left: 30px; +} + +dl > dd:last-child, +dl > dd:last-child > :last-child { + margin-bottom: 0; +} + +dt:target, span.highlighted { + background-color: #fbe54e; +} + +rect.highlighted { + fill: #fbe54e; +} + +dl.glossary dt { + font-weight: bold; + font-size: 1.1em; +} + +.optional { + font-size: 1.3em; +} + +.sig-paren { + font-size: larger; +} + +.versionmodified { + font-style: italic; +} + +.system-message { + background-color: #fda; + padding: 5px; + border: 3px solid red; +} + +.footnote:target { + background-color: #ffa; +} + +.line-block { + display: block; + margin-top: 1em; + margin-bottom: 1em; +} + +.line-block .line-block { + margin-top: 0; + margin-bottom: 0; + margin-left: 1.5em; +} + +.guilabel, .menuselection { + font-family: sans-serif; +} + +.accelerator { + text-decoration: underline; +} + +.classifier { + font-style: oblique; +} + +.classifier:before { + font-style: normal; + margin: 0.5em; + content: ":"; +} + +abbr, acronym { + border-bottom: dotted 1px; + cursor: help; +} + +/* -- code displays --------------------------------------------------------- */ + +pre { + overflow: auto; + overflow-y: hidden; /* fixes display issues on Chrome browsers */ +} + +pre, div[class|="highlight"] { + clear: both; +} + +span.pre { + -moz-hyphens: none; + -ms-hyphens: none; + -webkit-hyphens: none; + hyphens: none; +} + +div[class^="highlight-"] { + margin: 1em 0; +} + +td.linenos pre { + border: 0; + background-color: transparent; + color: #aaa; +} + +table.highlighttable { + display: block; +} + +table.highlighttable tbody { + display: block; +} + +table.highlighttable tr { + display: flex; +} + +table.highlighttable td { + margin: 0; + padding: 0; +} + +table.highlighttable td.linenos { + padding-right: 0.5em; +} + +table.highlighttable td.code { + flex: 1; + overflow: hidden; +} + +.highlight .hll { + display: block; +} + +div.highlight pre, +table.highlighttable pre { + margin: 0; +} + +div.code-block-caption + div { + margin-top: 0; +} + +div.code-block-caption { + margin-top: 1em; + padding: 2px 5px; + font-size: small; +} + +div.code-block-caption code { + background-color: transparent; +} + +table.highlighttable td.linenos, +div.doctest > div.highlight span.gp { /* gp: Generic.Prompt */ + user-select: none; +} + +div.code-block-caption span.caption-number { + padding: 0.1em 0.3em; + font-style: italic; +} + +div.code-block-caption span.caption-text { +} + +div.literal-block-wrapper { + margin: 1em 0; +} + +code.descname { + background-color: transparent; + font-weight: bold; + font-size: 1.2em; +} + +code.descclassname { + background-color: transparent; +} + +code.xref, a code { + background-color: transparent; + font-weight: bold; +} + +h1 code, h2 code, h3 code, h4 code, h5 code, h6 code { + background-color: transparent; +} + +.viewcode-link { + float: right; +} + +.viewcode-back { + float: right; + font-family: sans-serif; +} + +div.viewcode-block:target { + margin: -1px -10px; + padding: 0 10px; +} + +/* -- math display ---------------------------------------------------------- */ + +img.math { + vertical-align: middle; +} + +div.body div.math p { + text-align: center; +} + +span.eqno { + float: right; +} + +span.eqno a.headerlink { + position: absolute; + z-index: 1; +} + +div.math:hover a.headerlink { + visibility: visible; +} + +/* -- printout stylesheet --------------------------------------------------- */ + +@media print { + div.document, + div.documentwrapper, + div.bodywrapper { + margin: 0 !important; + width: 100%; + } + + div.sphinxsidebar, + div.related, + div.footer, + #top-link { + display: none; + } +} \ No newline at end of file diff --git a/_static/classic.css b/_static/classic.css new file mode 100644 index 0000000..cceb67a --- /dev/null +++ b/_static/classic.css @@ -0,0 +1,266 @@ +/* + * classic.css_t + * ~~~~~~~~~~~~~ + * + * Sphinx stylesheet -- classic theme. + * + * :copyright: Copyright 2007-2020 by the Sphinx team, see AUTHORS. + * :license: BSD, see LICENSE for details. + * + */ + +@import url("basic.css"); + +/* -- page layout ----------------------------------------------------------- */ + +html { + /* CSS hack for macOS's scrollbar (see #1125) */ + background-color: #FFFFFF; +} + +body { + font-family: sans-serif; + font-size: 100%; + background-color: #11303d; + color: #000; + margin: 0; + padding: 0; +} + +div.document { + background-color: #1c4e63; +} + +div.documentwrapper { + float: left; + width: 100%; +} + +div.bodywrapper { + margin: 0 0 0 230px; +} + +div.body { + background-color: #ffffff; + color: #000000; + padding: 0 20px 30px 20px; +} + +div.footer { + color: #ffffff; + width: 100%; + padding: 9px 0 9px 0; + text-align: center; + font-size: 75%; +} + +div.footer a { + color: #ffffff; + text-decoration: underline; +} + +div.related { + background-color: #133f52; + line-height: 30px; + color: #ffffff; +} + +div.related a { + color: #ffffff; +} + +div.sphinxsidebar { +} + +div.sphinxsidebar h3 { + font-family: 'Trebuchet MS', sans-serif; + color: #ffffff; + font-size: 1.4em; + font-weight: normal; + margin: 0; + padding: 0; +} + +div.sphinxsidebar h3 a { + color: #ffffff; +} + +div.sphinxsidebar h4 { + font-family: 'Trebuchet MS', sans-serif; + color: #ffffff; + font-size: 1.3em; + font-weight: normal; + margin: 5px 0 0 0; + padding: 0; +} + +div.sphinxsidebar p { + color: #ffffff; +} + +div.sphinxsidebar p.topless { + margin: 5px 10px 10px 10px; +} + +div.sphinxsidebar ul { + margin: 10px; + padding: 0; + color: #ffffff; +} + +div.sphinxsidebar a { + color: #98dbcc; +} + +div.sphinxsidebar input { + border: 1px solid #98dbcc; + font-family: sans-serif; + font-size: 1em; +} + + + +/* -- hyperlink styles ------------------------------------------------------ */ + +a { + color: #355f7c; + text-decoration: none; +} + +a:visited { + color: #355f7c; + text-decoration: none; +} + +a:hover { + text-decoration: underline; +} + + + +/* -- body styles ----------------------------------------------------------- */ + +div.body h1, +div.body h2, +div.body h3, +div.body h4, +div.body h5, +div.body h6 { + font-family: 'Trebuchet MS', sans-serif; + background-color: #f2f2f2; + font-weight: normal; + color: #20435c; + border-bottom: 1px solid #ccc; + margin: 20px -20px 10px -20px; + padding: 3px 0 3px 10px; +} + +div.body h1 { margin-top: 0; font-size: 200%; } +div.body h2 { font-size: 160%; } +div.body h3 { font-size: 140%; } +div.body h4 { font-size: 120%; } +div.body h5 { font-size: 110%; } +div.body h6 { font-size: 100%; } + +a.headerlink { + color: #c60f0f; + font-size: 0.8em; + padding: 0 4px 0 4px; + text-decoration: none; +} + +a.headerlink:hover { + background-color: #c60f0f; + color: white; +} + +div.body p, div.body dd, div.body li, div.body blockquote { + text-align: justify; + line-height: 130%; +} + +div.admonition p.admonition-title + p { + display: inline; +} + +div.admonition p { + margin-bottom: 5px; +} + +div.admonition pre { + margin-bottom: 5px; +} + +div.admonition ul, div.admonition ol { + margin-bottom: 5px; +} + +div.note { + background-color: #eee; + border: 1px solid #ccc; +} + +div.seealso { + background-color: #ffc; + border: 1px solid #ff6; +} + +div.topic { + background-color: #eee; +} + +div.warning { + background-color: #ffe4e4; + border: 1px solid #f66; +} + +p.admonition-title { + display: inline; +} + +p.admonition-title:after { + content: ":"; +} + +pre { + padding: 5px; + background-color: unset; + color: unset; + line-height: 120%; + border: 1px solid #ac9; + border-left: none; + border-right: none; +} + +code { + background-color: #ecf0f3; + padding: 0 1px 0 1px; + font-size: 0.95em; +} + +th, dl.field-list > dt { + background-color: #ede; +} + +.warning code { + background: #efc2c2; +} + +.note code { + background: #d6d6d6; +} + +.viewcode-back { + font-family: sans-serif; +} + +div.viewcode-block:target { + background-color: #f4debf; + border-top: 1px solid #ac9; + border-bottom: 1px solid #ac9; +} + +div.code-block-caption { + color: #efefef; + background-color: #1c4e63; +} \ No newline at end of file diff --git a/_static/default.css b/_static/default.css new file mode 100644 index 0000000..81b9363 --- /dev/null +++ b/_static/default.css @@ -0,0 +1 @@ +@import url("classic.css"); diff --git a/_static/doctools.js b/_static/doctools.js new file mode 100644 index 0000000..daccd20 --- /dev/null +++ b/_static/doctools.js @@ -0,0 +1,315 @@ +/* + * doctools.js + * ~~~~~~~~~~~ + * + * Sphinx JavaScript utilities for all documentation. + * + * :copyright: Copyright 2007-2020 by the Sphinx team, see AUTHORS. + * :license: BSD, see LICENSE for details. + * + */ + +/** + * select a different prefix for underscore + */ +$u = _.noConflict(); + +/** + * make the code below compatible with browsers without + * an installed firebug like debugger +if (!window.console || !console.firebug) { + var names = ["log", "debug", "info", "warn", "error", "assert", "dir", + "dirxml", "group", "groupEnd", "time", "timeEnd", "count", "trace", + "profile", "profileEnd"]; + window.console = {}; + for (var i = 0; i < names.length; ++i) + window.console[names[i]] = function() {}; +} + */ + +/** + * small helper function to urldecode strings + */ +jQuery.urldecode = function(x) { + return decodeURIComponent(x).replace(/\+/g, ' '); +}; + +/** + * small helper function to urlencode strings + */ +jQuery.urlencode = encodeURIComponent; + +/** + * This function returns the parsed url parameters of the + * current request. Multiple values per key are supported, + * it will always return arrays of strings for the value parts. + */ +jQuery.getQueryParameters = function(s) { + if (typeof s === 'undefined') + s = document.location.search; + var parts = s.substr(s.indexOf('?') + 1).split('&'); + var result = {}; + for (var i = 0; i < parts.length; i++) { + var tmp = parts[i].split('=', 2); + var key = jQuery.urldecode(tmp[0]); + var value = jQuery.urldecode(tmp[1]); + if (key in result) + result[key].push(value); + else + result[key] = [value]; + } + return result; +}; + +/** + * highlight a given string on a jquery object by wrapping it in + * span elements with the given class name. + */ +jQuery.fn.highlightText = function(text, className) { + function highlight(node, addItems) { + if (node.nodeType === 3) { + var val = node.nodeValue; + var pos = val.toLowerCase().indexOf(text); + if (pos >= 0 && + !jQuery(node.parentNode).hasClass(className) && + !jQuery(node.parentNode).hasClass("nohighlight")) { + var span; + var isInSVG = jQuery(node).closest("body, svg, foreignObject").is("svg"); + if (isInSVG) { + span = document.createElementNS("http://www.w3.org/2000/svg", "tspan"); + } else { + span = document.createElement("span"); + span.className = className; + } + span.appendChild(document.createTextNode(val.substr(pos, text.length))); + node.parentNode.insertBefore(span, node.parentNode.insertBefore( + document.createTextNode(val.substr(pos + text.length)), + node.nextSibling)); + node.nodeValue = val.substr(0, pos); + if (isInSVG) { + var rect = document.createElementNS("http://www.w3.org/2000/svg", "rect"); + var bbox = node.parentElement.getBBox(); + rect.x.baseVal.value = bbox.x; + rect.y.baseVal.value = bbox.y; + rect.width.baseVal.value = bbox.width; + rect.height.baseVal.value = bbox.height; + rect.setAttribute('class', className); + addItems.push({ + "parent": node.parentNode, + "target": rect}); + } + } + } + else if (!jQuery(node).is("button, select, textarea")) { + jQuery.each(node.childNodes, function() { + highlight(this, addItems); + }); + } + } + var addItems = []; + var result = this.each(function() { + highlight(this, addItems); + }); + for (var i = 0; i < addItems.length; ++i) { + jQuery(addItems[i].parent).before(addItems[i].target); + } + return result; +}; + +/* + * backward compatibility for jQuery.browser + * This will be supported until firefox bug is fixed. + */ +if (!jQuery.browser) { + jQuery.uaMatch = function(ua) { + ua = ua.toLowerCase(); + + var match = /(chrome)[ \/]([\w.]+)/.exec(ua) || + /(webkit)[ \/]([\w.]+)/.exec(ua) || + /(opera)(?:.*version|)[ \/]([\w.]+)/.exec(ua) || + /(msie) ([\w.]+)/.exec(ua) || + ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec(ua) || + []; + + return { + browser: match[ 1 ] || "", + version: match[ 2 ] || "0" + }; + }; + jQuery.browser = {}; + jQuery.browser[jQuery.uaMatch(navigator.userAgent).browser] = true; +} + +/** + * Small JavaScript module for the documentation. + */ +var Documentation = { + + init : function() { + this.fixFirefoxAnchorBug(); + this.highlightSearchWords(); + this.initIndexTable(); + if (DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) { + this.initOnKeyListeners(); + } + }, + + /** + * i18n support + */ + TRANSLATIONS : {}, + PLURAL_EXPR : function(n) { return n === 1 ? 0 : 1; }, + LOCALE : 'unknown', + + // gettext and ngettext don't access this so that the functions + // can safely bound to a different name (_ = Documentation.gettext) + gettext : function(string) { + var translated = Documentation.TRANSLATIONS[string]; + if (typeof translated === 'undefined') + return string; + return (typeof translated === 'string') ? translated : translated[0]; + }, + + ngettext : function(singular, plural, n) { + var translated = Documentation.TRANSLATIONS[singular]; + if (typeof translated === 'undefined') + return (n == 1) ? singular : plural; + return translated[Documentation.PLURALEXPR(n)]; + }, + + addTranslations : function(catalog) { + for (var key in catalog.messages) + this.TRANSLATIONS[key] = catalog.messages[key]; + this.PLURAL_EXPR = new Function('n', 'return +(' + catalog.plural_expr + ')'); + this.LOCALE = catalog.locale; + }, + + /** + * add context elements like header anchor links + */ + addContextElements : function() { + $('div[id] > :header:first').each(function() { + $('\u00B6'). + attr('href', '#' + this.id). + attr('title', _('Permalink to this headline')). + appendTo(this); + }); + $('dt[id]').each(function() { + $('\u00B6'). + attr('href', '#' + this.id). + attr('title', _('Permalink to this definition')). + appendTo(this); + }); + }, + + /** + * workaround a firefox stupidity + * see: https://bugzilla.mozilla.org/show_bug.cgi?id=645075 + */ + fixFirefoxAnchorBug : function() { + if (document.location.hash && $.browser.mozilla) + window.setTimeout(function() { + document.location.href += ''; + }, 10); + }, + + /** + * highlight the search words provided in the url in the text + */ + highlightSearchWords : function() { + var params = $.getQueryParameters(); + var terms = (params.highlight) ? params.highlight[0].split(/\s+/) : []; + if (terms.length) { + var body = $('div.body'); + if (!body.length) { + body = $('body'); + } + window.setTimeout(function() { + $.each(terms, function() { + body.highlightText(this.toLowerCase(), 'highlighted'); + }); + }, 10); + $('') + .appendTo($('#searchbox')); + } + }, + + /** + * init the domain index toggle buttons + */ + initIndexTable : function() { + var togglers = $('img.toggler').click(function() { + var src = $(this).attr('src'); + var idnum = $(this).attr('id').substr(7); + $('tr.cg-' + idnum).toggle(); + if (src.substr(-9) === 'minus.png') + $(this).attr('src', src.substr(0, src.length-9) + 'plus.png'); + else + $(this).attr('src', src.substr(0, src.length-8) + 'minus.png'); + }).css('display', ''); + if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) { + togglers.click(); + } + }, + + /** + * helper function to hide the search marks again + */ + hideSearchWords : function() { + $('#searchbox .highlight-link').fadeOut(300); + $('span.highlighted').removeClass('highlighted'); + }, + + /** + * make the url absolute + */ + makeURL : function(relativeURL) { + return DOCUMENTATION_OPTIONS.URL_ROOT + '/' + relativeURL; + }, + + /** + * get the current relative url + */ + getCurrentURL : function() { + var path = document.location.pathname; + var parts = path.split(/\//); + $.each(DOCUMENTATION_OPTIONS.URL_ROOT.split(/\//), function() { + if (this === '..') + parts.pop(); + }); + var url = parts.join('/'); + return path.substring(url.lastIndexOf('/') + 1, path.length - 1); + }, + + initOnKeyListeners: function() { + $(document).keydown(function(event) { + var activeElementType = document.activeElement.tagName; + // don't navigate when in search box or textarea + if (activeElementType !== 'TEXTAREA' && activeElementType !== 'INPUT' && activeElementType !== 'SELECT' + && !event.altKey && !event.ctrlKey && !event.metaKey && !event.shiftKey) { + switch (event.keyCode) { + case 37: // left + var prevHref = $('link[rel="prev"]').prop('href'); + if (prevHref) { + window.location.href = prevHref; + return false; + } + case 39: // right + var nextHref = $('link[rel="next"]').prop('href'); + if (nextHref) { + window.location.href = nextHref; + return false; + } + } + } + }); + } +}; + +// quick alias for translations +_ = Documentation.gettext; + +$(document).ready(function() { + Documentation.init(); +}); diff --git a/_static/documentation_options.js b/_static/documentation_options.js new file mode 100644 index 0000000..584dfc5 --- /dev/null +++ b/_static/documentation_options.js @@ -0,0 +1,12 @@ +var DOCUMENTATION_OPTIONS = { + URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), + VERSION: '1.1.0', + LANGUAGE: 'None', + COLLAPSE_INDEX: false, + BUILDER: 'html', + FILE_SUFFIX: '.html', + LINK_SUFFIX: '.html', + HAS_SOURCE: true, + SOURCELINK_SUFFIX: '.txt', + NAVIGATION_WITH_KEYS: false +}; \ No newline at end of file diff --git a/_static/file.png b/_static/file.png new file mode 100644 index 0000000..a858a41 Binary files /dev/null and b/_static/file.png differ diff --git a/_static/jquery-3.5.1.js b/_static/jquery-3.5.1.js new file mode 100644 index 0000000..5093733 --- /dev/null +++ b/_static/jquery-3.5.1.js @@ -0,0 +1,10872 @@ +/*! + * jQuery JavaScript Library v3.5.1 + * https://jquery.com/ + * + * Includes Sizzle.js + * https://sizzlejs.com/ + * + * Copyright JS Foundation and other contributors + * Released under the MIT license + * https://jquery.org/license + * + * Date: 2020-05-04T22:49Z + */ +( function( global, factory ) { + + "use strict"; + + if ( typeof module === "object" && typeof module.exports === "object" ) { + + // For CommonJS and CommonJS-like environments where a proper `window` + // is present, execute the factory and get jQuery. + // For environments that do not have a `window` with a `document` + // (such as Node.js), expose a factory as module.exports. + // This accentuates the need for the creation of a real `window`. + // e.g. var jQuery = require("jquery")(window); + // See ticket #14549 for more info. + module.exports = global.document ? + factory( global, true ) : + function( w ) { + if ( !w.document ) { + throw new Error( "jQuery requires a window with a document" ); + } + return factory( w ); + }; + } else { + factory( global ); + } + +// Pass this if window is not defined yet +} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) { + +// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1 +// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode +// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common +// enough that all such attempts are guarded in a try block. +"use strict"; + +var arr = []; + +var getProto = Object.getPrototypeOf; + +var slice = arr.slice; + +var flat = arr.flat ? function( array ) { + return arr.flat.call( array ); +} : function( array ) { + return arr.concat.apply( [], array ); +}; + + +var push = arr.push; + +var indexOf = arr.indexOf; + +var class2type = {}; + +var toString = class2type.toString; + +var hasOwn = class2type.hasOwnProperty; + +var fnToString = hasOwn.toString; + +var ObjectFunctionString = fnToString.call( Object ); + +var support = {}; + +var isFunction = function isFunction( obj ) { + + // Support: Chrome <=57, Firefox <=52 + // In some browsers, typeof returns "function" for HTML elements + // (i.e., `typeof document.createElement( "object" ) === "function"`). + // We don't want to classify *any* DOM node as a function. + return typeof obj === "function" && typeof obj.nodeType !== "number"; + }; + + +var isWindow = function isWindow( obj ) { + return obj != null && obj === obj.window; + }; + + +var document = window.document; + + + + var preservedScriptAttributes = { + type: true, + src: true, + nonce: true, + noModule: true + }; + + function DOMEval( code, node, doc ) { + doc = doc || document; + + var i, val, + script = doc.createElement( "script" ); + + script.text = code; + if ( node ) { + for ( i in preservedScriptAttributes ) { + + // Support: Firefox 64+, Edge 18+ + // Some browsers don't support the "nonce" property on scripts. + // On the other hand, just using `getAttribute` is not enough as + // the `nonce` attribute is reset to an empty string whenever it + // becomes browsing-context connected. + // See https://github.com/whatwg/html/issues/2369 + // See https://html.spec.whatwg.org/#nonce-attributes + // The `node.getAttribute` check was added for the sake of + // `jQuery.globalEval` so that it can fake a nonce-containing node + // via an object. + val = node[ i ] || node.getAttribute && node.getAttribute( i ); + if ( val ) { + script.setAttribute( i, val ); + } + } + } + doc.head.appendChild( script ).parentNode.removeChild( script ); + } + + +function toType( obj ) { + if ( obj == null ) { + return obj + ""; + } + + // Support: Android <=2.3 only (functionish RegExp) + return typeof obj === "object" || typeof obj === "function" ? + class2type[ toString.call( obj ) ] || "object" : + typeof obj; +} +/* global Symbol */ +// Defining this global in .eslintrc.json would create a danger of using the global +// unguarded in another place, it seems safer to define global only for this module + + + +var + version = "3.5.1", + + // Define a local copy of jQuery + jQuery = function( selector, context ) { + + // The jQuery object is actually just the init constructor 'enhanced' + // Need init if jQuery is called (just allow error to be thrown if not included) + return new jQuery.fn.init( selector, context ); + }; + +jQuery.fn = jQuery.prototype = { + + // The current version of jQuery being used + jquery: version, + + constructor: jQuery, + + // The default length of a jQuery object is 0 + length: 0, + + toArray: function() { + return slice.call( this ); + }, + + // Get the Nth element in the matched element set OR + // Get the whole matched element set as a clean array + get: function( num ) { + + // Return all the elements in a clean array + if ( num == null ) { + return slice.call( this ); + } + + // Return just the one element from the set + return num < 0 ? this[ num + this.length ] : this[ num ]; + }, + + // Take an array of elements and push it onto the stack + // (returning the new matched element set) + pushStack: function( elems ) { + + // Build a new jQuery matched element set + var ret = jQuery.merge( this.constructor(), elems ); + + // Add the old object onto the stack (as a reference) + ret.prevObject = this; + + // Return the newly-formed element set + return ret; + }, + + // Execute a callback for every element in the matched set. + each: function( callback ) { + return jQuery.each( this, callback ); + }, + + map: function( callback ) { + return this.pushStack( jQuery.map( this, function( elem, i ) { + return callback.call( elem, i, elem ); + } ) ); + }, + + slice: function() { + return this.pushStack( slice.apply( this, arguments ) ); + }, + + first: function() { + return this.eq( 0 ); + }, + + last: function() { + return this.eq( -1 ); + }, + + even: function() { + return this.pushStack( jQuery.grep( this, function( _elem, i ) { + return ( i + 1 ) % 2; + } ) ); + }, + + odd: function() { + return this.pushStack( jQuery.grep( this, function( _elem, i ) { + return i % 2; + } ) ); + }, + + eq: function( i ) { + var len = this.length, + j = +i + ( i < 0 ? len : 0 ); + return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); + }, + + end: function() { + return this.prevObject || this.constructor(); + }, + + // For internal use only. + // Behaves like an Array's method, not like a jQuery method. + push: push, + sort: arr.sort, + splice: arr.splice +}; + +jQuery.extend = jQuery.fn.extend = function() { + var options, name, src, copy, copyIsArray, clone, + target = arguments[ 0 ] || {}, + i = 1, + length = arguments.length, + deep = false; + + // Handle a deep copy situation + if ( typeof target === "boolean" ) { + deep = target; + + // Skip the boolean and the target + target = arguments[ i ] || {}; + i++; + } + + // Handle case when target is a string or something (possible in deep copy) + if ( typeof target !== "object" && !isFunction( target ) ) { + target = {}; + } + + // Extend jQuery itself if only one argument is passed + if ( i === length ) { + target = this; + i--; + } + + for ( ; i < length; i++ ) { + + // Only deal with non-null/undefined values + if ( ( options = arguments[ i ] ) != null ) { + + // Extend the base object + for ( name in options ) { + copy = options[ name ]; + + // Prevent Object.prototype pollution + // Prevent never-ending loop + if ( name === "__proto__" || target === copy ) { + continue; + } + + // Recurse if we're merging plain objects or arrays + if ( deep && copy && ( jQuery.isPlainObject( copy ) || + ( copyIsArray = Array.isArray( copy ) ) ) ) { + src = target[ name ]; + + // Ensure proper type for the source value + if ( copyIsArray && !Array.isArray( src ) ) { + clone = []; + } else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) { + clone = {}; + } else { + clone = src; + } + copyIsArray = false; + + // Never move original objects, clone them + target[ name ] = jQuery.extend( deep, clone, copy ); + + // Don't bring in undefined values + } else if ( copy !== undefined ) { + target[ name ] = copy; + } + } + } + } + + // Return the modified object + return target; +}; + +jQuery.extend( { + + // Unique for each copy of jQuery on the page + expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), + + // Assume jQuery is ready without the ready module + isReady: true, + + error: function( msg ) { + throw new Error( msg ); + }, + + noop: function() {}, + + isPlainObject: function( obj ) { + var proto, Ctor; + + // Detect obvious negatives + // Use toString instead of jQuery.type to catch host objects + if ( !obj || toString.call( obj ) !== "[object Object]" ) { + return false; + } + + proto = getProto( obj ); + + // Objects with no prototype (e.g., `Object.create( null )`) are plain + if ( !proto ) { + return true; + } + + // Objects with prototype are plain iff they were constructed by a global Object function + Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor; + return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString; + }, + + isEmptyObject: function( obj ) { + var name; + + for ( name in obj ) { + return false; + } + return true; + }, + + // Evaluates a script in a provided context; falls back to the global one + // if not specified. + globalEval: function( code, options, doc ) { + DOMEval( code, { nonce: options && options.nonce }, doc ); + }, + + each: function( obj, callback ) { + var length, i = 0; + + if ( isArrayLike( obj ) ) { + length = obj.length; + for ( ; i < length; i++ ) { + if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { + break; + } + } + } else { + for ( i in obj ) { + if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { + break; + } + } + } + + return obj; + }, + + // results is for internal usage only + makeArray: function( arr, results ) { + var ret = results || []; + + if ( arr != null ) { + if ( isArrayLike( Object( arr ) ) ) { + jQuery.merge( ret, + typeof arr === "string" ? + [ arr ] : arr + ); + } else { + push.call( ret, arr ); + } + } + + return ret; + }, + + inArray: function( elem, arr, i ) { + return arr == null ? -1 : indexOf.call( arr, elem, i ); + }, + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + merge: function( first, second ) { + var len = +second.length, + j = 0, + i = first.length; + + for ( ; j < len; j++ ) { + first[ i++ ] = second[ j ]; + } + + first.length = i; + + return first; + }, + + grep: function( elems, callback, invert ) { + var callbackInverse, + matches = [], + i = 0, + length = elems.length, + callbackExpect = !invert; + + // Go through the array, only saving the items + // that pass the validator function + for ( ; i < length; i++ ) { + callbackInverse = !callback( elems[ i ], i ); + if ( callbackInverse !== callbackExpect ) { + matches.push( elems[ i ] ); + } + } + + return matches; + }, + + // arg is for internal usage only + map: function( elems, callback, arg ) { + var length, value, + i = 0, + ret = []; + + // Go through the array, translating each of the items to their new values + if ( isArrayLike( elems ) ) { + length = elems.length; + for ( ; i < length; i++ ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + + // Go through every key on the object, + } else { + for ( i in elems ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + } + + // Flatten any nested arrays + return flat( ret ); + }, + + // A global GUID counter for objects + guid: 1, + + // jQuery.support is not used in Core but other projects attach their + // properties to it so it needs to exist. + support: support +} ); + +if ( typeof Symbol === "function" ) { + jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ]; +} + +// Populate the class2type map +jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), +function( _i, name ) { + class2type[ "[object " + name + "]" ] = name.toLowerCase(); +} ); + +function isArrayLike( obj ) { + + // Support: real iOS 8.2 only (not reproducible in simulator) + // `in` check used to prevent JIT error (gh-2145) + // hasOwn isn't used here due to false negatives + // regarding Nodelist length in IE + var length = !!obj && "length" in obj && obj.length, + type = toType( obj ); + + if ( isFunction( obj ) || isWindow( obj ) ) { + return false; + } + + return type === "array" || length === 0 || + typeof length === "number" && length > 0 && ( length - 1 ) in obj; +} +var Sizzle = +/*! + * Sizzle CSS Selector Engine v2.3.5 + * https://sizzlejs.com/ + * + * Copyright JS Foundation and other contributors + * Released under the MIT license + * https://js.foundation/ + * + * Date: 2020-03-14 + */ +( function( window ) { +var i, + support, + Expr, + getText, + isXML, + tokenize, + compile, + select, + outermostContext, + sortInput, + hasDuplicate, + + // Local document vars + setDocument, + document, + docElem, + documentIsHTML, + rbuggyQSA, + rbuggyMatches, + matches, + contains, + + // Instance-specific data + expando = "sizzle" + 1 * new Date(), + preferredDoc = window.document, + dirruns = 0, + done = 0, + classCache = createCache(), + tokenCache = createCache(), + compilerCache = createCache(), + nonnativeSelectorCache = createCache(), + sortOrder = function( a, b ) { + if ( a === b ) { + hasDuplicate = true; + } + return 0; + }, + + // Instance methods + hasOwn = ( {} ).hasOwnProperty, + arr = [], + pop = arr.pop, + pushNative = arr.push, + push = arr.push, + slice = arr.slice, + + // Use a stripped-down indexOf as it's faster than native + // https://jsperf.com/thor-indexof-vs-for/5 + indexOf = function( list, elem ) { + var i = 0, + len = list.length; + for ( ; i < len; i++ ) { + if ( list[ i ] === elem ) { + return i; + } + } + return -1; + }, + + booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|" + + "ismap|loop|multiple|open|readonly|required|scoped", + + // Regular expressions + + // http://www.w3.org/TR/css3-selectors/#whitespace + whitespace = "[\\x20\\t\\r\\n\\f]", + + // https://www.w3.org/TR/css-syntax-3/#ident-token-diagram + identifier = "(?:\\\\[\\da-fA-F]{1,6}" + whitespace + + "?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+", + + // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors + attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + + + // Operator (capture 2) + "*([*^$|!~]?=)" + whitespace + + + // "Attribute values must be CSS identifiers [capture 5] + // or strings [capture 3 or capture 4]" + "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + + whitespace + "*\\]", + + pseudos = ":(" + identifier + ")(?:\\((" + + + // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: + // 1. quoted (capture 3; capture 4 or capture 5) + "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + + + // 2. simple (capture 6) + "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + + + // 3. anything else (capture 2) + ".*" + + ")\\)|)", + + // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter + rwhitespace = new RegExp( whitespace + "+", "g" ), + rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + + whitespace + "+$", "g" ), + + rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), + rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + + "*" ), + rdescend = new RegExp( whitespace + "|>" ), + + rpseudo = new RegExp( pseudos ), + ridentifier = new RegExp( "^" + identifier + "$" ), + + matchExpr = { + "ID": new RegExp( "^#(" + identifier + ")" ), + "CLASS": new RegExp( "^\\.(" + identifier + ")" ), + "TAG": new RegExp( "^(" + identifier + "|[*])" ), + "ATTR": new RegExp( "^" + attributes ), + "PSEUDO": new RegExp( "^" + pseudos ), + "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + + whitespace + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + + whitespace + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), + "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), + + // For use in libraries implementing .is() + // We use this for POS matching in `select` + "needsContext": new RegExp( "^" + whitespace + + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace + + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) + }, + + rhtml = /HTML$/i, + rinputs = /^(?:input|select|textarea|button)$/i, + rheader = /^h\d$/i, + + rnative = /^[^{]+\{\s*\[native \w/, + + // Easily-parseable/retrievable ID or TAG or CLASS selectors + rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, + + rsibling = /[+~]/, + + // CSS escapes + // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters + runescape = new RegExp( "\\\\[\\da-fA-F]{1,6}" + whitespace + "?|\\\\([^\\r\\n\\f])", "g" ), + funescape = function( escape, nonHex ) { + var high = "0x" + escape.slice( 1 ) - 0x10000; + + return nonHex ? + + // Strip the backslash prefix from a non-hex escape sequence + nonHex : + + // Replace a hexadecimal escape sequence with the encoded Unicode code point + // Support: IE <=11+ + // For values outside the Basic Multilingual Plane (BMP), manually construct a + // surrogate pair + high < 0 ? + String.fromCharCode( high + 0x10000 ) : + String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); + }, + + // CSS string/identifier serialization + // https://drafts.csswg.org/cssom/#common-serializing-idioms + rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, + fcssescape = function( ch, asCodePoint ) { + if ( asCodePoint ) { + + // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER + if ( ch === "\0" ) { + return "\uFFFD"; + } + + // Control characters and (dependent upon position) numbers get escaped as code points + return ch.slice( 0, -1 ) + "\\" + + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; + } + + // Other potentially-special ASCII characters get backslash-escaped + return "\\" + ch; + }, + + // Used for iframes + // See setDocument() + // Removing the function wrapper causes a "Permission Denied" + // error in IE + unloadHandler = function() { + setDocument(); + }, + + inDisabledFieldset = addCombinator( + function( elem ) { + return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset"; + }, + { dir: "parentNode", next: "legend" } + ); + +// Optimize for push.apply( _, NodeList ) +try { + push.apply( + ( arr = slice.call( preferredDoc.childNodes ) ), + preferredDoc.childNodes + ); + + // Support: Android<4.0 + // Detect silently failing push.apply + // eslint-disable-next-line no-unused-expressions + arr[ preferredDoc.childNodes.length ].nodeType; +} catch ( e ) { + push = { apply: arr.length ? + + // Leverage slice if possible + function( target, els ) { + pushNative.apply( target, slice.call( els ) ); + } : + + // Support: IE<9 + // Otherwise append directly + function( target, els ) { + var j = target.length, + i = 0; + + // Can't trust NodeList.length + while ( ( target[ j++ ] = els[ i++ ] ) ) {} + target.length = j - 1; + } + }; +} + +function Sizzle( selector, context, results, seed ) { + var m, i, elem, nid, match, groups, newSelector, + newContext = context && context.ownerDocument, + + // nodeType defaults to 9, since context defaults to document + nodeType = context ? context.nodeType : 9; + + results = results || []; + + // Return early from calls with invalid selector or context + if ( typeof selector !== "string" || !selector || + nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { + + return results; + } + + // Try to shortcut find operations (as opposed to filters) in HTML documents + if ( !seed ) { + setDocument( context ); + context = context || document; + + if ( documentIsHTML ) { + + // If the selector is sufficiently simple, try using a "get*By*" DOM method + // (excepting DocumentFragment context, where the methods don't exist) + if ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) { + + // ID selector + if ( ( m = match[ 1 ] ) ) { + + // Document context + if ( nodeType === 9 ) { + if ( ( elem = context.getElementById( m ) ) ) { + + // Support: IE, Opera, Webkit + // TODO: identify versions + // getElementById can match elements by name instead of ID + if ( elem.id === m ) { + results.push( elem ); + return results; + } + } else { + return results; + } + + // Element context + } else { + + // Support: IE, Opera, Webkit + // TODO: identify versions + // getElementById can match elements by name instead of ID + if ( newContext && ( elem = newContext.getElementById( m ) ) && + contains( context, elem ) && + elem.id === m ) { + + results.push( elem ); + return results; + } + } + + // Type selector + } else if ( match[ 2 ] ) { + push.apply( results, context.getElementsByTagName( selector ) ); + return results; + + // Class selector + } else if ( ( m = match[ 3 ] ) && support.getElementsByClassName && + context.getElementsByClassName ) { + + push.apply( results, context.getElementsByClassName( m ) ); + return results; + } + } + + // Take advantage of querySelectorAll + if ( support.qsa && + !nonnativeSelectorCache[ selector + " " ] && + ( !rbuggyQSA || !rbuggyQSA.test( selector ) ) && + + // Support: IE 8 only + // Exclude object elements + ( nodeType !== 1 || context.nodeName.toLowerCase() !== "object" ) ) { + + newSelector = selector; + newContext = context; + + // qSA considers elements outside a scoping root when evaluating child or + // descendant combinators, which is not what we want. + // In such cases, we work around the behavior by prefixing every selector in the + // list with an ID selector referencing the scope context. + // The technique has to be used as well when a leading combinator is used + // as such selectors are not recognized by querySelectorAll. + // Thanks to Andrew Dupont for this technique. + if ( nodeType === 1 && + ( rdescend.test( selector ) || rcombinators.test( selector ) ) ) { + + // Expand context for sibling selectors + newContext = rsibling.test( selector ) && testContext( context.parentNode ) || + context; + + // We can use :scope instead of the ID hack if the browser + // supports it & if we're not changing the context. + if ( newContext !== context || !support.scope ) { + + // Capture the context ID, setting it first if necessary + if ( ( nid = context.getAttribute( "id" ) ) ) { + nid = nid.replace( rcssescape, fcssescape ); + } else { + context.setAttribute( "id", ( nid = expando ) ); + } + } + + // Prefix every selector in the list + groups = tokenize( selector ); + i = groups.length; + while ( i-- ) { + groups[ i ] = ( nid ? "#" + nid : ":scope" ) + " " + + toSelector( groups[ i ] ); + } + newSelector = groups.join( "," ); + } + + try { + push.apply( results, + newContext.querySelectorAll( newSelector ) + ); + return results; + } catch ( qsaError ) { + nonnativeSelectorCache( selector, true ); + } finally { + if ( nid === expando ) { + context.removeAttribute( "id" ); + } + } + } + } + } + + // All others + return select( selector.replace( rtrim, "$1" ), context, results, seed ); +} + +/** + * Create key-value caches of limited size + * @returns {function(string, object)} Returns the Object data after storing it on itself with + * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) + * deleting the oldest entry + */ +function createCache() { + var keys = []; + + function cache( key, value ) { + + // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) + if ( keys.push( key + " " ) > Expr.cacheLength ) { + + // Only keep the most recent entries + delete cache[ keys.shift() ]; + } + return ( cache[ key + " " ] = value ); + } + return cache; +} + +/** + * Mark a function for special use by Sizzle + * @param {Function} fn The function to mark + */ +function markFunction( fn ) { + fn[ expando ] = true; + return fn; +} + +/** + * Support testing using an element + * @param {Function} fn Passed the created element and returns a boolean result + */ +function assert( fn ) { + var el = document.createElement( "fieldset" ); + + try { + return !!fn( el ); + } catch ( e ) { + return false; + } finally { + + // Remove from its parent by default + if ( el.parentNode ) { + el.parentNode.removeChild( el ); + } + + // release memory in IE + el = null; + } +} + +/** + * Adds the same handler for all of the specified attrs + * @param {String} attrs Pipe-separated list of attributes + * @param {Function} handler The method that will be applied + */ +function addHandle( attrs, handler ) { + var arr = attrs.split( "|" ), + i = arr.length; + + while ( i-- ) { + Expr.attrHandle[ arr[ i ] ] = handler; + } +} + +/** + * Checks document order of two siblings + * @param {Element} a + * @param {Element} b + * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b + */ +function siblingCheck( a, b ) { + var cur = b && a, + diff = cur && a.nodeType === 1 && b.nodeType === 1 && + a.sourceIndex - b.sourceIndex; + + // Use IE sourceIndex if available on both nodes + if ( diff ) { + return diff; + } + + // Check if b follows a + if ( cur ) { + while ( ( cur = cur.nextSibling ) ) { + if ( cur === b ) { + return -1; + } + } + } + + return a ? 1 : -1; +} + +/** + * Returns a function to use in pseudos for input types + * @param {String} type + */ +function createInputPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for buttons + * @param {String} type + */ +function createButtonPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return ( name === "input" || name === "button" ) && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for :enabled/:disabled + * @param {Boolean} disabled true for :disabled; false for :enabled + */ +function createDisabledPseudo( disabled ) { + + // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable + return function( elem ) { + + // Only certain elements can match :enabled or :disabled + // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled + // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled + if ( "form" in elem ) { + + // Check for inherited disabledness on relevant non-disabled elements: + // * listed form-associated elements in a disabled fieldset + // https://html.spec.whatwg.org/multipage/forms.html#category-listed + // https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled + // * option elements in a disabled optgroup + // https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled + // All such elements have a "form" property. + if ( elem.parentNode && elem.disabled === false ) { + + // Option elements defer to a parent optgroup if present + if ( "label" in elem ) { + if ( "label" in elem.parentNode ) { + return elem.parentNode.disabled === disabled; + } else { + return elem.disabled === disabled; + } + } + + // Support: IE 6 - 11 + // Use the isDisabled shortcut property to check for disabled fieldset ancestors + return elem.isDisabled === disabled || + + // Where there is no isDisabled, check manually + /* jshint -W018 */ + elem.isDisabled !== !disabled && + inDisabledFieldset( elem ) === disabled; + } + + return elem.disabled === disabled; + + // Try to winnow out elements that can't be disabled before trusting the disabled property. + // Some victims get caught in our net (label, legend, menu, track), but it shouldn't + // even exist on them, let alone have a boolean value. + } else if ( "label" in elem ) { + return elem.disabled === disabled; + } + + // Remaining elements are neither :enabled nor :disabled + return false; + }; +} + +/** + * Returns a function to use in pseudos for positionals + * @param {Function} fn + */ +function createPositionalPseudo( fn ) { + return markFunction( function( argument ) { + argument = +argument; + return markFunction( function( seed, matches ) { + var j, + matchIndexes = fn( [], seed.length, argument ), + i = matchIndexes.length; + + // Match elements found at the specified indexes + while ( i-- ) { + if ( seed[ ( j = matchIndexes[ i ] ) ] ) { + seed[ j ] = !( matches[ j ] = seed[ j ] ); + } + } + } ); + } ); +} + +/** + * Checks a node for validity as a Sizzle context + * @param {Element|Object=} context + * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value + */ +function testContext( context ) { + return context && typeof context.getElementsByTagName !== "undefined" && context; +} + +// Expose support vars for convenience +support = Sizzle.support = {}; + +/** + * Detects XML nodes + * @param {Element|Object} elem An element or a document + * @returns {Boolean} True iff elem is a non-HTML XML node + */ +isXML = Sizzle.isXML = function( elem ) { + var namespace = elem.namespaceURI, + docElem = ( elem.ownerDocument || elem ).documentElement; + + // Support: IE <=8 + // Assume HTML when documentElement doesn't yet exist, such as inside loading iframes + // https://bugs.jquery.com/ticket/4833 + return !rhtml.test( namespace || docElem && docElem.nodeName || "HTML" ); +}; + +/** + * Sets document-related variables once based on the current document + * @param {Element|Object} [doc] An element or document object to use to set the document + * @returns {Object} Returns the current document + */ +setDocument = Sizzle.setDocument = function( node ) { + var hasCompare, subWindow, + doc = node ? node.ownerDocument || node : preferredDoc; + + // Return early if doc is invalid or already selected + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) { + return document; + } + + // Update global variables + document = doc; + docElem = document.documentElement; + documentIsHTML = !isXML( document ); + + // Support: IE 9 - 11+, Edge 12 - 18+ + // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936) + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( preferredDoc != document && + ( subWindow = document.defaultView ) && subWindow.top !== subWindow ) { + + // Support: IE 11, Edge + if ( subWindow.addEventListener ) { + subWindow.addEventListener( "unload", unloadHandler, false ); + + // Support: IE 9 - 10 only + } else if ( subWindow.attachEvent ) { + subWindow.attachEvent( "onunload", unloadHandler ); + } + } + + // Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only, + // Safari 4 - 5 only, Opera <=11.6 - 12.x only + // IE/Edge & older browsers don't support the :scope pseudo-class. + // Support: Safari 6.0 only + // Safari 6.0 supports :scope but it's an alias of :root there. + support.scope = assert( function( el ) { + docElem.appendChild( el ).appendChild( document.createElement( "div" ) ); + return typeof el.querySelectorAll !== "undefined" && + !el.querySelectorAll( ":scope fieldset div" ).length; + } ); + + /* Attributes + ---------------------------------------------------------------------- */ + + // Support: IE<8 + // Verify that getAttribute really returns attributes and not properties + // (excepting IE8 booleans) + support.attributes = assert( function( el ) { + el.className = "i"; + return !el.getAttribute( "className" ); + } ); + + /* getElement(s)By* + ---------------------------------------------------------------------- */ + + // Check if getElementsByTagName("*") returns only elements + support.getElementsByTagName = assert( function( el ) { + el.appendChild( document.createComment( "" ) ); + return !el.getElementsByTagName( "*" ).length; + } ); + + // Support: IE<9 + support.getElementsByClassName = rnative.test( document.getElementsByClassName ); + + // Support: IE<10 + // Check if getElementById returns elements by name + // The broken getElementById methods don't pick up programmatically-set names, + // so use a roundabout getElementsByName test + support.getById = assert( function( el ) { + docElem.appendChild( el ).id = expando; + return !document.getElementsByName || !document.getElementsByName( expando ).length; + } ); + + // ID filter and find + if ( support.getById ) { + Expr.filter[ "ID" ] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + return elem.getAttribute( "id" ) === attrId; + }; + }; + Expr.find[ "ID" ] = function( id, context ) { + if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { + var elem = context.getElementById( id ); + return elem ? [ elem ] : []; + } + }; + } else { + Expr.filter[ "ID" ] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + var node = typeof elem.getAttributeNode !== "undefined" && + elem.getAttributeNode( "id" ); + return node && node.value === attrId; + }; + }; + + // Support: IE 6 - 7 only + // getElementById is not reliable as a find shortcut + Expr.find[ "ID" ] = function( id, context ) { + if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { + var node, i, elems, + elem = context.getElementById( id ); + + if ( elem ) { + + // Verify the id attribute + node = elem.getAttributeNode( "id" ); + if ( node && node.value === id ) { + return [ elem ]; + } + + // Fall back on getElementsByName + elems = context.getElementsByName( id ); + i = 0; + while ( ( elem = elems[ i++ ] ) ) { + node = elem.getAttributeNode( "id" ); + if ( node && node.value === id ) { + return [ elem ]; + } + } + } + + return []; + } + }; + } + + // Tag + Expr.find[ "TAG" ] = support.getElementsByTagName ? + function( tag, context ) { + if ( typeof context.getElementsByTagName !== "undefined" ) { + return context.getElementsByTagName( tag ); + + // DocumentFragment nodes don't have gEBTN + } else if ( support.qsa ) { + return context.querySelectorAll( tag ); + } + } : + + function( tag, context ) { + var elem, + tmp = [], + i = 0, + + // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too + results = context.getElementsByTagName( tag ); + + // Filter out possible comments + if ( tag === "*" ) { + while ( ( elem = results[ i++ ] ) ) { + if ( elem.nodeType === 1 ) { + tmp.push( elem ); + } + } + + return tmp; + } + return results; + }; + + // Class + Expr.find[ "CLASS" ] = support.getElementsByClassName && function( className, context ) { + if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { + return context.getElementsByClassName( className ); + } + }; + + /* QSA/matchesSelector + ---------------------------------------------------------------------- */ + + // QSA and matchesSelector support + + // matchesSelector(:active) reports false when true (IE9/Opera 11.5) + rbuggyMatches = []; + + // qSa(:focus) reports false when true (Chrome 21) + // We allow this because of a bug in IE8/9 that throws an error + // whenever `document.activeElement` is accessed on an iframe + // So, we allow :focus to pass through QSA all the time to avoid the IE error + // See https://bugs.jquery.com/ticket/13378 + rbuggyQSA = []; + + if ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) { + + // Build QSA regex + // Regex strategy adopted from Diego Perini + assert( function( el ) { + + var input; + + // Select is set to empty string on purpose + // This is to test IE's treatment of not explicitly + // setting a boolean content attribute, + // since its presence should be enough + // https://bugs.jquery.com/ticket/12359 + docElem.appendChild( el ).innerHTML = "" + + ""; + + // Support: IE8, Opera 11-12.16 + // Nothing should be selected when empty strings follow ^= or $= or *= + // The test attribute must be unknown in Opera but "safe" for WinRT + // https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section + if ( el.querySelectorAll( "[msallowcapture^='']" ).length ) { + rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); + } + + // Support: IE8 + // Boolean attributes and "value" are not treated correctly + if ( !el.querySelectorAll( "[selected]" ).length ) { + rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); + } + + // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+ + if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) { + rbuggyQSA.push( "~=" ); + } + + // Support: IE 11+, Edge 15 - 18+ + // IE 11/Edge don't find elements on a `[name='']` query in some cases. + // Adding a temporary attribute to the document before the selection works + // around the issue. + // Interestingly, IE 10 & older don't seem to have the issue. + input = document.createElement( "input" ); + input.setAttribute( "name", "" ); + el.appendChild( input ); + if ( !el.querySelectorAll( "[name='']" ).length ) { + rbuggyQSA.push( "\\[" + whitespace + "*name" + whitespace + "*=" + + whitespace + "*(?:''|\"\")" ); + } + + // Webkit/Opera - :checked should return selected option elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + // IE8 throws error here and will not see later tests + if ( !el.querySelectorAll( ":checked" ).length ) { + rbuggyQSA.push( ":checked" ); + } + + // Support: Safari 8+, iOS 8+ + // https://bugs.webkit.org/show_bug.cgi?id=136851 + // In-page `selector#id sibling-combinator selector` fails + if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) { + rbuggyQSA.push( ".#.+[+~]" ); + } + + // Support: Firefox <=3.6 - 5 only + // Old Firefox doesn't throw on a badly-escaped identifier. + el.querySelectorAll( "\\\f" ); + rbuggyQSA.push( "[\\r\\n\\f]" ); + } ); + + assert( function( el ) { + el.innerHTML = "" + + ""; + + // Support: Windows 8 Native Apps + // The type and name attributes are restricted during .innerHTML assignment + var input = document.createElement( "input" ); + input.setAttribute( "type", "hidden" ); + el.appendChild( input ).setAttribute( "name", "D" ); + + // Support: IE8 + // Enforce case-sensitivity of name attribute + if ( el.querySelectorAll( "[name=d]" ).length ) { + rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); + } + + // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) + // IE8 throws error here and will not see later tests + if ( el.querySelectorAll( ":enabled" ).length !== 2 ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Support: IE9-11+ + // IE's :disabled selector does not pick up the children of disabled fieldsets + docElem.appendChild( el ).disabled = true; + if ( el.querySelectorAll( ":disabled" ).length !== 2 ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Support: Opera 10 - 11 only + // Opera 10-11 does not throw on post-comma invalid pseudos + el.querySelectorAll( "*,:x" ); + rbuggyQSA.push( ",.*:" ); + } ); + } + + if ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches || + docElem.webkitMatchesSelector || + docElem.mozMatchesSelector || + docElem.oMatchesSelector || + docElem.msMatchesSelector ) ) ) ) { + + assert( function( el ) { + + // Check to see if it's possible to do matchesSelector + // on a disconnected node (IE 9) + support.disconnectedMatch = matches.call( el, "*" ); + + // This should fail with an exception + // Gecko does not error, returns false instead + matches.call( el, "[s!='']:x" ); + rbuggyMatches.push( "!=", pseudos ); + } ); + } + + rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( "|" ) ); + rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( "|" ) ); + + /* Contains + ---------------------------------------------------------------------- */ + hasCompare = rnative.test( docElem.compareDocumentPosition ); + + // Element contains another + // Purposefully self-exclusive + // As in, an element does not contain itself + contains = hasCompare || rnative.test( docElem.contains ) ? + function( a, b ) { + var adown = a.nodeType === 9 ? a.documentElement : a, + bup = b && b.parentNode; + return a === bup || !!( bup && bup.nodeType === 1 && ( + adown.contains ? + adown.contains( bup ) : + a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 + ) ); + } : + function( a, b ) { + if ( b ) { + while ( ( b = b.parentNode ) ) { + if ( b === a ) { + return true; + } + } + } + return false; + }; + + /* Sorting + ---------------------------------------------------------------------- */ + + // Document order sorting + sortOrder = hasCompare ? + function( a, b ) { + + // Flag for duplicate removal + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + // Sort on method existence if only one input has compareDocumentPosition + var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; + if ( compare ) { + return compare; + } + + // Calculate position if both inputs belong to the same document + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + compare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ? + a.compareDocumentPosition( b ) : + + // Otherwise we know they are disconnected + 1; + + // Disconnected nodes + if ( compare & 1 || + ( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) { + + // Choose the first element that is related to our preferred document + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( a == document || a.ownerDocument == preferredDoc && + contains( preferredDoc, a ) ) { + return -1; + } + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( b == document || b.ownerDocument == preferredDoc && + contains( preferredDoc, b ) ) { + return 1; + } + + // Maintain original order + return sortInput ? + ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : + 0; + } + + return compare & 4 ? -1 : 1; + } : + function( a, b ) { + + // Exit early if the nodes are identical + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + var cur, + i = 0, + aup = a.parentNode, + bup = b.parentNode, + ap = [ a ], + bp = [ b ]; + + // Parentless nodes are either documents or disconnected + if ( !aup || !bup ) { + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + /* eslint-disable eqeqeq */ + return a == document ? -1 : + b == document ? 1 : + /* eslint-enable eqeqeq */ + aup ? -1 : + bup ? 1 : + sortInput ? + ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : + 0; + + // If the nodes are siblings, we can do a quick check + } else if ( aup === bup ) { + return siblingCheck( a, b ); + } + + // Otherwise we need full lists of their ancestors for comparison + cur = a; + while ( ( cur = cur.parentNode ) ) { + ap.unshift( cur ); + } + cur = b; + while ( ( cur = cur.parentNode ) ) { + bp.unshift( cur ); + } + + // Walk down the tree looking for a discrepancy + while ( ap[ i ] === bp[ i ] ) { + i++; + } + + return i ? + + // Do a sibling check if the nodes have a common ancestor + siblingCheck( ap[ i ], bp[ i ] ) : + + // Otherwise nodes in our document sort first + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + /* eslint-disable eqeqeq */ + ap[ i ] == preferredDoc ? -1 : + bp[ i ] == preferredDoc ? 1 : + /* eslint-enable eqeqeq */ + 0; + }; + + return document; +}; + +Sizzle.matches = function( expr, elements ) { + return Sizzle( expr, null, null, elements ); +}; + +Sizzle.matchesSelector = function( elem, expr ) { + setDocument( elem ); + + if ( support.matchesSelector && documentIsHTML && + !nonnativeSelectorCache[ expr + " " ] && + ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && + ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { + + try { + var ret = matches.call( elem, expr ); + + // IE 9's matchesSelector returns false on disconnected nodes + if ( ret || support.disconnectedMatch || + + // As well, disconnected nodes are said to be in a document + // fragment in IE 9 + elem.document && elem.document.nodeType !== 11 ) { + return ret; + } + } catch ( e ) { + nonnativeSelectorCache( expr, true ); + } + } + + return Sizzle( expr, document, null, [ elem ] ).length > 0; +}; + +Sizzle.contains = function( context, elem ) { + + // Set document vars if needed + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( ( context.ownerDocument || context ) != document ) { + setDocument( context ); + } + return contains( context, elem ); +}; + +Sizzle.attr = function( elem, name ) { + + // Set document vars if needed + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( ( elem.ownerDocument || elem ) != document ) { + setDocument( elem ); + } + + var fn = Expr.attrHandle[ name.toLowerCase() ], + + // Don't get fooled by Object.prototype properties (jQuery #13807) + val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? + fn( elem, name, !documentIsHTML ) : + undefined; + + return val !== undefined ? + val : + support.attributes || !documentIsHTML ? + elem.getAttribute( name ) : + ( val = elem.getAttributeNode( name ) ) && val.specified ? + val.value : + null; +}; + +Sizzle.escape = function( sel ) { + return ( sel + "" ).replace( rcssescape, fcssescape ); +}; + +Sizzle.error = function( msg ) { + throw new Error( "Syntax error, unrecognized expression: " + msg ); +}; + +/** + * Document sorting and removing duplicates + * @param {ArrayLike} results + */ +Sizzle.uniqueSort = function( results ) { + var elem, + duplicates = [], + j = 0, + i = 0; + + // Unless we *know* we can detect duplicates, assume their presence + hasDuplicate = !support.detectDuplicates; + sortInput = !support.sortStable && results.slice( 0 ); + results.sort( sortOrder ); + + if ( hasDuplicate ) { + while ( ( elem = results[ i++ ] ) ) { + if ( elem === results[ i ] ) { + j = duplicates.push( i ); + } + } + while ( j-- ) { + results.splice( duplicates[ j ], 1 ); + } + } + + // Clear input after sorting to release objects + // See https://github.com/jquery/sizzle/pull/225 + sortInput = null; + + return results; +}; + +/** + * Utility function for retrieving the text value of an array of DOM nodes + * @param {Array|Element} elem + */ +getText = Sizzle.getText = function( elem ) { + var node, + ret = "", + i = 0, + nodeType = elem.nodeType; + + if ( !nodeType ) { + + // If no nodeType, this is expected to be an array + while ( ( node = elem[ i++ ] ) ) { + + // Do not traverse comment nodes + ret += getText( node ); + } + } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { + + // Use textContent for elements + // innerText usage removed for consistency of new lines (jQuery #11153) + if ( typeof elem.textContent === "string" ) { + return elem.textContent; + } else { + + // Traverse its children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + ret += getText( elem ); + } + } + } else if ( nodeType === 3 || nodeType === 4 ) { + return elem.nodeValue; + } + + // Do not include comment or processing instruction nodes + + return ret; +}; + +Expr = Sizzle.selectors = { + + // Can be adjusted by the user + cacheLength: 50, + + createPseudo: markFunction, + + match: matchExpr, + + attrHandle: {}, + + find: {}, + + relative: { + ">": { dir: "parentNode", first: true }, + " ": { dir: "parentNode" }, + "+": { dir: "previousSibling", first: true }, + "~": { dir: "previousSibling" } + }, + + preFilter: { + "ATTR": function( match ) { + match[ 1 ] = match[ 1 ].replace( runescape, funescape ); + + // Move the given value to match[3] whether quoted or unquoted + match[ 3 ] = ( match[ 3 ] || match[ 4 ] || + match[ 5 ] || "" ).replace( runescape, funescape ); + + if ( match[ 2 ] === "~=" ) { + match[ 3 ] = " " + match[ 3 ] + " "; + } + + return match.slice( 0, 4 ); + }, + + "CHILD": function( match ) { + + /* matches from matchExpr["CHILD"] + 1 type (only|nth|...) + 2 what (child|of-type) + 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) + 4 xn-component of xn+y argument ([+-]?\d*n|) + 5 sign of xn-component + 6 x of xn-component + 7 sign of y-component + 8 y of y-component + */ + match[ 1 ] = match[ 1 ].toLowerCase(); + + if ( match[ 1 ].slice( 0, 3 ) === "nth" ) { + + // nth-* requires argument + if ( !match[ 3 ] ) { + Sizzle.error( match[ 0 ] ); + } + + // numeric x and y parameters for Expr.filter.CHILD + // remember that false/true cast respectively to 0/1 + match[ 4 ] = +( match[ 4 ] ? + match[ 5 ] + ( match[ 6 ] || 1 ) : + 2 * ( match[ 3 ] === "even" || match[ 3 ] === "odd" ) ); + match[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === "odd" ); + + // other types prohibit arguments + } else if ( match[ 3 ] ) { + Sizzle.error( match[ 0 ] ); + } + + return match; + }, + + "PSEUDO": function( match ) { + var excess, + unquoted = !match[ 6 ] && match[ 2 ]; + + if ( matchExpr[ "CHILD" ].test( match[ 0 ] ) ) { + return null; + } + + // Accept quoted arguments as-is + if ( match[ 3 ] ) { + match[ 2 ] = match[ 4 ] || match[ 5 ] || ""; + + // Strip excess characters from unquoted arguments + } else if ( unquoted && rpseudo.test( unquoted ) && + + // Get excess from tokenize (recursively) + ( excess = tokenize( unquoted, true ) ) && + + // advance to the next closing parenthesis + ( excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length ) ) { + + // excess is a negative index + match[ 0 ] = match[ 0 ].slice( 0, excess ); + match[ 2 ] = unquoted.slice( 0, excess ); + } + + // Return only captures needed by the pseudo filter method (type and argument) + return match.slice( 0, 3 ); + } + }, + + filter: { + + "TAG": function( nodeNameSelector ) { + var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); + return nodeNameSelector === "*" ? + function() { + return true; + } : + function( elem ) { + return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; + }; + }, + + "CLASS": function( className ) { + var pattern = classCache[ className + " " ]; + + return pattern || + ( pattern = new RegExp( "(^|" + whitespace + + ")" + className + "(" + whitespace + "|$)" ) ) && classCache( + className, function( elem ) { + return pattern.test( + typeof elem.className === "string" && elem.className || + typeof elem.getAttribute !== "undefined" && + elem.getAttribute( "class" ) || + "" + ); + } ); + }, + + "ATTR": function( name, operator, check ) { + return function( elem ) { + var result = Sizzle.attr( elem, name ); + + if ( result == null ) { + return operator === "!="; + } + if ( !operator ) { + return true; + } + + result += ""; + + /* eslint-disable max-len */ + + return operator === "=" ? result === check : + operator === "!=" ? result !== check : + operator === "^=" ? check && result.indexOf( check ) === 0 : + operator === "*=" ? check && result.indexOf( check ) > -1 : + operator === "$=" ? check && result.slice( -check.length ) === check : + operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : + operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : + false; + /* eslint-enable max-len */ + + }; + }, + + "CHILD": function( type, what, _argument, first, last ) { + var simple = type.slice( 0, 3 ) !== "nth", + forward = type.slice( -4 ) !== "last", + ofType = what === "of-type"; + + return first === 1 && last === 0 ? + + // Shortcut for :nth-*(n) + function( elem ) { + return !!elem.parentNode; + } : + + function( elem, _context, xml ) { + var cache, uniqueCache, outerCache, node, nodeIndex, start, + dir = simple !== forward ? "nextSibling" : "previousSibling", + parent = elem.parentNode, + name = ofType && elem.nodeName.toLowerCase(), + useCache = !xml && !ofType, + diff = false; + + if ( parent ) { + + // :(first|last|only)-(child|of-type) + if ( simple ) { + while ( dir ) { + node = elem; + while ( ( node = node[ dir ] ) ) { + if ( ofType ? + node.nodeName.toLowerCase() === name : + node.nodeType === 1 ) { + + return false; + } + } + + // Reverse direction for :only-* (if we haven't yet done so) + start = dir = type === "only" && !start && "nextSibling"; + } + return true; + } + + start = [ forward ? parent.firstChild : parent.lastChild ]; + + // non-xml :nth-child(...) stores cache data on `parent` + if ( forward && useCache ) { + + // Seek `elem` from a previously-cached index + + // ...in a gzip-friendly way + node = parent; + outerCache = node[ expando ] || ( node[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + ( outerCache[ node.uniqueID ] = {} ); + + cache = uniqueCache[ type ] || []; + nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; + diff = nodeIndex && cache[ 2 ]; + node = nodeIndex && parent.childNodes[ nodeIndex ]; + + while ( ( node = ++nodeIndex && node && node[ dir ] || + + // Fallback to seeking `elem` from the start + ( diff = nodeIndex = 0 ) || start.pop() ) ) { + + // When found, cache indexes on `parent` and break + if ( node.nodeType === 1 && ++diff && node === elem ) { + uniqueCache[ type ] = [ dirruns, nodeIndex, diff ]; + break; + } + } + + } else { + + // Use previously-cached element index if available + if ( useCache ) { + + // ...in a gzip-friendly way + node = elem; + outerCache = node[ expando ] || ( node[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + ( outerCache[ node.uniqueID ] = {} ); + + cache = uniqueCache[ type ] || []; + nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; + diff = nodeIndex; + } + + // xml :nth-child(...) + // or :nth-last-child(...) or :nth(-last)?-of-type(...) + if ( diff === false ) { + + // Use the same loop as above to seek `elem` from the start + while ( ( node = ++nodeIndex && node && node[ dir ] || + ( diff = nodeIndex = 0 ) || start.pop() ) ) { + + if ( ( ofType ? + node.nodeName.toLowerCase() === name : + node.nodeType === 1 ) && + ++diff ) { + + // Cache the index of each encountered element + if ( useCache ) { + outerCache = node[ expando ] || + ( node[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + ( outerCache[ node.uniqueID ] = {} ); + + uniqueCache[ type ] = [ dirruns, diff ]; + } + + if ( node === elem ) { + break; + } + } + } + } + } + + // Incorporate the offset, then check against cycle size + diff -= last; + return diff === first || ( diff % first === 0 && diff / first >= 0 ); + } + }; + }, + + "PSEUDO": function( pseudo, argument ) { + + // pseudo-class names are case-insensitive + // http://www.w3.org/TR/selectors/#pseudo-classes + // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters + // Remember that setFilters inherits from pseudos + var args, + fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || + Sizzle.error( "unsupported pseudo: " + pseudo ); + + // The user may use createPseudo to indicate that + // arguments are needed to create the filter function + // just as Sizzle does + if ( fn[ expando ] ) { + return fn( argument ); + } + + // But maintain support for old signatures + if ( fn.length > 1 ) { + args = [ pseudo, pseudo, "", argument ]; + return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? + markFunction( function( seed, matches ) { + var idx, + matched = fn( seed, argument ), + i = matched.length; + while ( i-- ) { + idx = indexOf( seed, matched[ i ] ); + seed[ idx ] = !( matches[ idx ] = matched[ i ] ); + } + } ) : + function( elem ) { + return fn( elem, 0, args ); + }; + } + + return fn; + } + }, + + pseudos: { + + // Potentially complex pseudos + "not": markFunction( function( selector ) { + + // Trim the selector passed to compile + // to avoid treating leading and trailing + // spaces as combinators + var input = [], + results = [], + matcher = compile( selector.replace( rtrim, "$1" ) ); + + return matcher[ expando ] ? + markFunction( function( seed, matches, _context, xml ) { + var elem, + unmatched = matcher( seed, null, xml, [] ), + i = seed.length; + + // Match elements unmatched by `matcher` + while ( i-- ) { + if ( ( elem = unmatched[ i ] ) ) { + seed[ i ] = !( matches[ i ] = elem ); + } + } + } ) : + function( elem, _context, xml ) { + input[ 0 ] = elem; + matcher( input, null, xml, results ); + + // Don't keep the element (issue #299) + input[ 0 ] = null; + return !results.pop(); + }; + } ), + + "has": markFunction( function( selector ) { + return function( elem ) { + return Sizzle( selector, elem ).length > 0; + }; + } ), + + "contains": markFunction( function( text ) { + text = text.replace( runescape, funescape ); + return function( elem ) { + return ( elem.textContent || getText( elem ) ).indexOf( text ) > -1; + }; + } ), + + // "Whether an element is represented by a :lang() selector + // is based solely on the element's language value + // being equal to the identifier C, + // or beginning with the identifier C immediately followed by "-". + // The matching of C against the element's language value is performed case-insensitively. + // The identifier C does not have to be a valid language name." + // http://www.w3.org/TR/selectors/#lang-pseudo + "lang": markFunction( function( lang ) { + + // lang value must be a valid identifier + if ( !ridentifier.test( lang || "" ) ) { + Sizzle.error( "unsupported lang: " + lang ); + } + lang = lang.replace( runescape, funescape ).toLowerCase(); + return function( elem ) { + var elemLang; + do { + if ( ( elemLang = documentIsHTML ? + elem.lang : + elem.getAttribute( "xml:lang" ) || elem.getAttribute( "lang" ) ) ) { + + elemLang = elemLang.toLowerCase(); + return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; + } + } while ( ( elem = elem.parentNode ) && elem.nodeType === 1 ); + return false; + }; + } ), + + // Miscellaneous + "target": function( elem ) { + var hash = window.location && window.location.hash; + return hash && hash.slice( 1 ) === elem.id; + }, + + "root": function( elem ) { + return elem === docElem; + }, + + "focus": function( elem ) { + return elem === document.activeElement && + ( !document.hasFocus || document.hasFocus() ) && + !!( elem.type || elem.href || ~elem.tabIndex ); + }, + + // Boolean properties + "enabled": createDisabledPseudo( false ), + "disabled": createDisabledPseudo( true ), + + "checked": function( elem ) { + + // In CSS3, :checked should return both checked and selected elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + var nodeName = elem.nodeName.toLowerCase(); + return ( nodeName === "input" && !!elem.checked ) || + ( nodeName === "option" && !!elem.selected ); + }, + + "selected": function( elem ) { + + // Accessing this property makes selected-by-default + // options in Safari work properly + if ( elem.parentNode ) { + // eslint-disable-next-line no-unused-expressions + elem.parentNode.selectedIndex; + } + + return elem.selected === true; + }, + + // Contents + "empty": function( elem ) { + + // http://www.w3.org/TR/selectors/#empty-pseudo + // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), + // but not by others (comment: 8; processing instruction: 7; etc.) + // nodeType < 6 works because attributes (2) do not appear as children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + if ( elem.nodeType < 6 ) { + return false; + } + } + return true; + }, + + "parent": function( elem ) { + return !Expr.pseudos[ "empty" ]( elem ); + }, + + // Element/input types + "header": function( elem ) { + return rheader.test( elem.nodeName ); + }, + + "input": function( elem ) { + return rinputs.test( elem.nodeName ); + }, + + "button": function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === "button" || name === "button"; + }, + + "text": function( elem ) { + var attr; + return elem.nodeName.toLowerCase() === "input" && + elem.type === "text" && + + // Support: IE<8 + // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" + ( ( attr = elem.getAttribute( "type" ) ) == null || + attr.toLowerCase() === "text" ); + }, + + // Position-in-collection + "first": createPositionalPseudo( function() { + return [ 0 ]; + } ), + + "last": createPositionalPseudo( function( _matchIndexes, length ) { + return [ length - 1 ]; + } ), + + "eq": createPositionalPseudo( function( _matchIndexes, length, argument ) { + return [ argument < 0 ? argument + length : argument ]; + } ), + + "even": createPositionalPseudo( function( matchIndexes, length ) { + var i = 0; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ), + + "odd": createPositionalPseudo( function( matchIndexes, length ) { + var i = 1; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ), + + "lt": createPositionalPseudo( function( matchIndexes, length, argument ) { + var i = argument < 0 ? + argument + length : + argument > length ? + length : + argument; + for ( ; --i >= 0; ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ), + + "gt": createPositionalPseudo( function( matchIndexes, length, argument ) { + var i = argument < 0 ? argument + length : argument; + for ( ; ++i < length; ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ) + } +}; + +Expr.pseudos[ "nth" ] = Expr.pseudos[ "eq" ]; + +// Add button/input type pseudos +for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { + Expr.pseudos[ i ] = createInputPseudo( i ); +} +for ( i in { submit: true, reset: true } ) { + Expr.pseudos[ i ] = createButtonPseudo( i ); +} + +// Easy API for creating new setFilters +function setFilters() {} +setFilters.prototype = Expr.filters = Expr.pseudos; +Expr.setFilters = new setFilters(); + +tokenize = Sizzle.tokenize = function( selector, parseOnly ) { + var matched, match, tokens, type, + soFar, groups, preFilters, + cached = tokenCache[ selector + " " ]; + + if ( cached ) { + return parseOnly ? 0 : cached.slice( 0 ); + } + + soFar = selector; + groups = []; + preFilters = Expr.preFilter; + + while ( soFar ) { + + // Comma and first run + if ( !matched || ( match = rcomma.exec( soFar ) ) ) { + if ( match ) { + + // Don't consume trailing commas as valid + soFar = soFar.slice( match[ 0 ].length ) || soFar; + } + groups.push( ( tokens = [] ) ); + } + + matched = false; + + // Combinators + if ( ( match = rcombinators.exec( soFar ) ) ) { + matched = match.shift(); + tokens.push( { + value: matched, + + // Cast descendant combinators to space + type: match[ 0 ].replace( rtrim, " " ) + } ); + soFar = soFar.slice( matched.length ); + } + + // Filters + for ( type in Expr.filter ) { + if ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] || + ( match = preFilters[ type ]( match ) ) ) ) { + matched = match.shift(); + tokens.push( { + value: matched, + type: type, + matches: match + } ); + soFar = soFar.slice( matched.length ); + } + } + + if ( !matched ) { + break; + } + } + + // Return the length of the invalid excess + // if we're just parsing + // Otherwise, throw an error or return tokens + return parseOnly ? + soFar.length : + soFar ? + Sizzle.error( selector ) : + + // Cache the tokens + tokenCache( selector, groups ).slice( 0 ); +}; + +function toSelector( tokens ) { + var i = 0, + len = tokens.length, + selector = ""; + for ( ; i < len; i++ ) { + selector += tokens[ i ].value; + } + return selector; +} + +function addCombinator( matcher, combinator, base ) { + var dir = combinator.dir, + skip = combinator.next, + key = skip || dir, + checkNonElements = base && key === "parentNode", + doneName = done++; + + return combinator.first ? + + // Check against closest ancestor/preceding element + function( elem, context, xml ) { + while ( ( elem = elem[ dir ] ) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + return matcher( elem, context, xml ); + } + } + return false; + } : + + // Check against all ancestor/preceding elements + function( elem, context, xml ) { + var oldCache, uniqueCache, outerCache, + newCache = [ dirruns, doneName ]; + + // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching + if ( xml ) { + while ( ( elem = elem[ dir ] ) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + if ( matcher( elem, context, xml ) ) { + return true; + } + } + } + } else { + while ( ( elem = elem[ dir ] ) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + outerCache = elem[ expando ] || ( elem[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ elem.uniqueID ] || + ( outerCache[ elem.uniqueID ] = {} ); + + if ( skip && skip === elem.nodeName.toLowerCase() ) { + elem = elem[ dir ] || elem; + } else if ( ( oldCache = uniqueCache[ key ] ) && + oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { + + // Assign to newCache so results back-propagate to previous elements + return ( newCache[ 2 ] = oldCache[ 2 ] ); + } else { + + // Reuse newcache so results back-propagate to previous elements + uniqueCache[ key ] = newCache; + + // A match means we're done; a fail means we have to keep checking + if ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) { + return true; + } + } + } + } + } + return false; + }; +} + +function elementMatcher( matchers ) { + return matchers.length > 1 ? + function( elem, context, xml ) { + var i = matchers.length; + while ( i-- ) { + if ( !matchers[ i ]( elem, context, xml ) ) { + return false; + } + } + return true; + } : + matchers[ 0 ]; +} + +function multipleContexts( selector, contexts, results ) { + var i = 0, + len = contexts.length; + for ( ; i < len; i++ ) { + Sizzle( selector, contexts[ i ], results ); + } + return results; +} + +function condense( unmatched, map, filter, context, xml ) { + var elem, + newUnmatched = [], + i = 0, + len = unmatched.length, + mapped = map != null; + + for ( ; i < len; i++ ) { + if ( ( elem = unmatched[ i ] ) ) { + if ( !filter || filter( elem, context, xml ) ) { + newUnmatched.push( elem ); + if ( mapped ) { + map.push( i ); + } + } + } + } + + return newUnmatched; +} + +function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { + if ( postFilter && !postFilter[ expando ] ) { + postFilter = setMatcher( postFilter ); + } + if ( postFinder && !postFinder[ expando ] ) { + postFinder = setMatcher( postFinder, postSelector ); + } + return markFunction( function( seed, results, context, xml ) { + var temp, i, elem, + preMap = [], + postMap = [], + preexisting = results.length, + + // Get initial elements from seed or context + elems = seed || multipleContexts( + selector || "*", + context.nodeType ? [ context ] : context, + [] + ), + + // Prefilter to get matcher input, preserving a map for seed-results synchronization + matcherIn = preFilter && ( seed || !selector ) ? + condense( elems, preMap, preFilter, context, xml ) : + elems, + + matcherOut = matcher ? + + // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, + postFinder || ( seed ? preFilter : preexisting || postFilter ) ? + + // ...intermediate processing is necessary + [] : + + // ...otherwise use results directly + results : + matcherIn; + + // Find primary matches + if ( matcher ) { + matcher( matcherIn, matcherOut, context, xml ); + } + + // Apply postFilter + if ( postFilter ) { + temp = condense( matcherOut, postMap ); + postFilter( temp, [], context, xml ); + + // Un-match failing elements by moving them back to matcherIn + i = temp.length; + while ( i-- ) { + if ( ( elem = temp[ i ] ) ) { + matcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem ); + } + } + } + + if ( seed ) { + if ( postFinder || preFilter ) { + if ( postFinder ) { + + // Get the final matcherOut by condensing this intermediate into postFinder contexts + temp = []; + i = matcherOut.length; + while ( i-- ) { + if ( ( elem = matcherOut[ i ] ) ) { + + // Restore matcherIn since elem is not yet a final match + temp.push( ( matcherIn[ i ] = elem ) ); + } + } + postFinder( null, ( matcherOut = [] ), temp, xml ); + } + + // Move matched elements from seed to results to keep them synchronized + i = matcherOut.length; + while ( i-- ) { + if ( ( elem = matcherOut[ i ] ) && + ( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) { + + seed[ temp ] = !( results[ temp ] = elem ); + } + } + } + + // Add elements to results, through postFinder if defined + } else { + matcherOut = condense( + matcherOut === results ? + matcherOut.splice( preexisting, matcherOut.length ) : + matcherOut + ); + if ( postFinder ) { + postFinder( null, results, matcherOut, xml ); + } else { + push.apply( results, matcherOut ); + } + } + } ); +} + +function matcherFromTokens( tokens ) { + var checkContext, matcher, j, + len = tokens.length, + leadingRelative = Expr.relative[ tokens[ 0 ].type ], + implicitRelative = leadingRelative || Expr.relative[ " " ], + i = leadingRelative ? 1 : 0, + + // The foundational matcher ensures that elements are reachable from top-level context(s) + matchContext = addCombinator( function( elem ) { + return elem === checkContext; + }, implicitRelative, true ), + matchAnyContext = addCombinator( function( elem ) { + return indexOf( checkContext, elem ) > -1; + }, implicitRelative, true ), + matchers = [ function( elem, context, xml ) { + var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( + ( checkContext = context ).nodeType ? + matchContext( elem, context, xml ) : + matchAnyContext( elem, context, xml ) ); + + // Avoid hanging onto element (issue #299) + checkContext = null; + return ret; + } ]; + + for ( ; i < len; i++ ) { + if ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) { + matchers = [ addCombinator( elementMatcher( matchers ), matcher ) ]; + } else { + matcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches ); + + // Return special upon seeing a positional matcher + if ( matcher[ expando ] ) { + + // Find the next relative operator (if any) for proper handling + j = ++i; + for ( ; j < len; j++ ) { + if ( Expr.relative[ tokens[ j ].type ] ) { + break; + } + } + return setMatcher( + i > 1 && elementMatcher( matchers ), + i > 1 && toSelector( + + // If the preceding token was a descendant combinator, insert an implicit any-element `*` + tokens + .slice( 0, i - 1 ) + .concat( { value: tokens[ i - 2 ].type === " " ? "*" : "" } ) + ).replace( rtrim, "$1" ), + matcher, + i < j && matcherFromTokens( tokens.slice( i, j ) ), + j < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ), + j < len && toSelector( tokens ) + ); + } + matchers.push( matcher ); + } + } + + return elementMatcher( matchers ); +} + +function matcherFromGroupMatchers( elementMatchers, setMatchers ) { + var bySet = setMatchers.length > 0, + byElement = elementMatchers.length > 0, + superMatcher = function( seed, context, xml, results, outermost ) { + var elem, j, matcher, + matchedCount = 0, + i = "0", + unmatched = seed && [], + setMatched = [], + contextBackup = outermostContext, + + // We must always have either seed elements or outermost context + elems = seed || byElement && Expr.find[ "TAG" ]( "*", outermost ), + + // Use integer dirruns iff this is the outermost matcher + dirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ), + len = elems.length; + + if ( outermost ) { + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + outermostContext = context == document || context || outermost; + } + + // Add elements passing elementMatchers directly to results + // Support: IE<9, Safari + // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id + for ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) { + if ( byElement && elem ) { + j = 0; + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( !context && elem.ownerDocument != document ) { + setDocument( elem ); + xml = !documentIsHTML; + } + while ( ( matcher = elementMatchers[ j++ ] ) ) { + if ( matcher( elem, context || document, xml ) ) { + results.push( elem ); + break; + } + } + if ( outermost ) { + dirruns = dirrunsUnique; + } + } + + // Track unmatched elements for set filters + if ( bySet ) { + + // They will have gone through all possible matchers + if ( ( elem = !matcher && elem ) ) { + matchedCount--; + } + + // Lengthen the array for every element, matched or not + if ( seed ) { + unmatched.push( elem ); + } + } + } + + // `i` is now the count of elements visited above, and adding it to `matchedCount` + // makes the latter nonnegative. + matchedCount += i; + + // Apply set filters to unmatched elements + // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` + // equals `i`), unless we didn't visit _any_ elements in the above loop because we have + // no element matchers and no seed. + // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that + // case, which will result in a "00" `matchedCount` that differs from `i` but is also + // numerically zero. + if ( bySet && i !== matchedCount ) { + j = 0; + while ( ( matcher = setMatchers[ j++ ] ) ) { + matcher( unmatched, setMatched, context, xml ); + } + + if ( seed ) { + + // Reintegrate element matches to eliminate the need for sorting + if ( matchedCount > 0 ) { + while ( i-- ) { + if ( !( unmatched[ i ] || setMatched[ i ] ) ) { + setMatched[ i ] = pop.call( results ); + } + } + } + + // Discard index placeholder values to get only actual matches + setMatched = condense( setMatched ); + } + + // Add matches to results + push.apply( results, setMatched ); + + // Seedless set matches succeeding multiple successful matchers stipulate sorting + if ( outermost && !seed && setMatched.length > 0 && + ( matchedCount + setMatchers.length ) > 1 ) { + + Sizzle.uniqueSort( results ); + } + } + + // Override manipulation of globals by nested matchers + if ( outermost ) { + dirruns = dirrunsUnique; + outermostContext = contextBackup; + } + + return unmatched; + }; + + return bySet ? + markFunction( superMatcher ) : + superMatcher; +} + +compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { + var i, + setMatchers = [], + elementMatchers = [], + cached = compilerCache[ selector + " " ]; + + if ( !cached ) { + + // Generate a function of recursive functions that can be used to check each element + if ( !match ) { + match = tokenize( selector ); + } + i = match.length; + while ( i-- ) { + cached = matcherFromTokens( match[ i ] ); + if ( cached[ expando ] ) { + setMatchers.push( cached ); + } else { + elementMatchers.push( cached ); + } + } + + // Cache the compiled function + cached = compilerCache( + selector, + matcherFromGroupMatchers( elementMatchers, setMatchers ) + ); + + // Save selector and tokenization + cached.selector = selector; + } + return cached; +}; + +/** + * A low-level selection function that works with Sizzle's compiled + * selector functions + * @param {String|Function} selector A selector or a pre-compiled + * selector function built with Sizzle.compile + * @param {Element} context + * @param {Array} [results] + * @param {Array} [seed] A set of elements to match against + */ +select = Sizzle.select = function( selector, context, results, seed ) { + var i, tokens, token, type, find, + compiled = typeof selector === "function" && selector, + match = !seed && tokenize( ( selector = compiled.selector || selector ) ); + + results = results || []; + + // Try to minimize operations if there is only one selector in the list and no seed + // (the latter of which guarantees us context) + if ( match.length === 1 ) { + + // Reduce context if the leading compound selector is an ID + tokens = match[ 0 ] = match[ 0 ].slice( 0 ); + if ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === "ID" && + context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) { + + context = ( Expr.find[ "ID" ]( token.matches[ 0 ] + .replace( runescape, funescape ), context ) || [] )[ 0 ]; + if ( !context ) { + return results; + + // Precompiled matchers will still verify ancestry, so step up a level + } else if ( compiled ) { + context = context.parentNode; + } + + selector = selector.slice( tokens.shift().value.length ); + } + + // Fetch a seed set for right-to-left matching + i = matchExpr[ "needsContext" ].test( selector ) ? 0 : tokens.length; + while ( i-- ) { + token = tokens[ i ]; + + // Abort if we hit a combinator + if ( Expr.relative[ ( type = token.type ) ] ) { + break; + } + if ( ( find = Expr.find[ type ] ) ) { + + // Search, expanding context for leading sibling combinators + if ( ( seed = find( + token.matches[ 0 ].replace( runescape, funescape ), + rsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) || + context + ) ) ) { + + // If seed is empty or no tokens remain, we can return early + tokens.splice( i, 1 ); + selector = seed.length && toSelector( tokens ); + if ( !selector ) { + push.apply( results, seed ); + return results; + } + + break; + } + } + } + } + + // Compile and execute a filtering function if one is not provided + // Provide `match` to avoid retokenization if we modified the selector above + ( compiled || compile( selector, match ) )( + seed, + context, + !documentIsHTML, + results, + !context || rsibling.test( selector ) && testContext( context.parentNode ) || context + ); + return results; +}; + +// One-time assignments + +// Sort stability +support.sortStable = expando.split( "" ).sort( sortOrder ).join( "" ) === expando; + +// Support: Chrome 14-35+ +// Always assume duplicates if they aren't passed to the comparison function +support.detectDuplicates = !!hasDuplicate; + +// Initialize against the default document +setDocument(); + +// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) +// Detached nodes confoundingly follow *each other* +support.sortDetached = assert( function( el ) { + + // Should return 1, but returns 4 (following) + return el.compareDocumentPosition( document.createElement( "fieldset" ) ) & 1; +} ); + +// Support: IE<8 +// Prevent attribute/property "interpolation" +// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx +if ( !assert( function( el ) { + el.innerHTML = ""; + return el.firstChild.getAttribute( "href" ) === "#"; +} ) ) { + addHandle( "type|href|height|width", function( elem, name, isXML ) { + if ( !isXML ) { + return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); + } + } ); +} + +// Support: IE<9 +// Use defaultValue in place of getAttribute("value") +if ( !support.attributes || !assert( function( el ) { + el.innerHTML = ""; + el.firstChild.setAttribute( "value", "" ); + return el.firstChild.getAttribute( "value" ) === ""; +} ) ) { + addHandle( "value", function( elem, _name, isXML ) { + if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { + return elem.defaultValue; + } + } ); +} + +// Support: IE<9 +// Use getAttributeNode to fetch booleans when getAttribute lies +if ( !assert( function( el ) { + return el.getAttribute( "disabled" ) == null; +} ) ) { + addHandle( booleans, function( elem, name, isXML ) { + var val; + if ( !isXML ) { + return elem[ name ] === true ? name.toLowerCase() : + ( val = elem.getAttributeNode( name ) ) && val.specified ? + val.value : + null; + } + } ); +} + +return Sizzle; + +} )( window ); + + + +jQuery.find = Sizzle; +jQuery.expr = Sizzle.selectors; + +// Deprecated +jQuery.expr[ ":" ] = jQuery.expr.pseudos; +jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; +jQuery.text = Sizzle.getText; +jQuery.isXMLDoc = Sizzle.isXML; +jQuery.contains = Sizzle.contains; +jQuery.escapeSelector = Sizzle.escape; + + + + +var dir = function( elem, dir, until ) { + var matched = [], + truncate = until !== undefined; + + while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { + if ( elem.nodeType === 1 ) { + if ( truncate && jQuery( elem ).is( until ) ) { + break; + } + matched.push( elem ); + } + } + return matched; +}; + + +var siblings = function( n, elem ) { + var matched = []; + + for ( ; n; n = n.nextSibling ) { + if ( n.nodeType === 1 && n !== elem ) { + matched.push( n ); + } + } + + return matched; +}; + + +var rneedsContext = jQuery.expr.match.needsContext; + + + +function nodeName( elem, name ) { + + return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); + +}; +var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i ); + + + +// Implement the identical functionality for filter and not +function winnow( elements, qualifier, not ) { + if ( isFunction( qualifier ) ) { + return jQuery.grep( elements, function( elem, i ) { + return !!qualifier.call( elem, i, elem ) !== not; + } ); + } + + // Single element + if ( qualifier.nodeType ) { + return jQuery.grep( elements, function( elem ) { + return ( elem === qualifier ) !== not; + } ); + } + + // Arraylike of elements (jQuery, arguments, Array) + if ( typeof qualifier !== "string" ) { + return jQuery.grep( elements, function( elem ) { + return ( indexOf.call( qualifier, elem ) > -1 ) !== not; + } ); + } + + // Filtered directly for both simple and complex selectors + return jQuery.filter( qualifier, elements, not ); +} + +jQuery.filter = function( expr, elems, not ) { + var elem = elems[ 0 ]; + + if ( not ) { + expr = ":not(" + expr + ")"; + } + + if ( elems.length === 1 && elem.nodeType === 1 ) { + return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : []; + } + + return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { + return elem.nodeType === 1; + } ) ); +}; + +jQuery.fn.extend( { + find: function( selector ) { + var i, ret, + len = this.length, + self = this; + + if ( typeof selector !== "string" ) { + return this.pushStack( jQuery( selector ).filter( function() { + for ( i = 0; i < len; i++ ) { + if ( jQuery.contains( self[ i ], this ) ) { + return true; + } + } + } ) ); + } + + ret = this.pushStack( [] ); + + for ( i = 0; i < len; i++ ) { + jQuery.find( selector, self[ i ], ret ); + } + + return len > 1 ? jQuery.uniqueSort( ret ) : ret; + }, + filter: function( selector ) { + return this.pushStack( winnow( this, selector || [], false ) ); + }, + not: function( selector ) { + return this.pushStack( winnow( this, selector || [], true ) ); + }, + is: function( selector ) { + return !!winnow( + this, + + // If this is a positional/relative selector, check membership in the returned set + // so $("p:first").is("p:last") won't return true for a doc with two "p". + typeof selector === "string" && rneedsContext.test( selector ) ? + jQuery( selector ) : + selector || [], + false + ).length; + } +} ); + + +// Initialize a jQuery object + + +// A central reference to the root jQuery(document) +var rootjQuery, + + // A simple way to check for HTML strings + // Prioritize #id over to avoid XSS via location.hash (#9521) + // Strict HTML recognition (#11290: must start with <) + // Shortcut simple #id case for speed + rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, + + init = jQuery.fn.init = function( selector, context, root ) { + var match, elem; + + // HANDLE: $(""), $(null), $(undefined), $(false) + if ( !selector ) { + return this; + } + + // Method init() accepts an alternate rootjQuery + // so migrate can support jQuery.sub (gh-2101) + root = root || rootjQuery; + + // Handle HTML strings + if ( typeof selector === "string" ) { + if ( selector[ 0 ] === "<" && + selector[ selector.length - 1 ] === ">" && + selector.length >= 3 ) { + + // Assume that strings that start and end with <> are HTML and skip the regex check + match = [ null, selector, null ]; + + } else { + match = rquickExpr.exec( selector ); + } + + // Match html or make sure no context is specified for #id + if ( match && ( match[ 1 ] || !context ) ) { + + // HANDLE: $(html) -> $(array) + if ( match[ 1 ] ) { + context = context instanceof jQuery ? context[ 0 ] : context; + + // Option to run scripts is true for back-compat + // Intentionally let the error be thrown if parseHTML is not present + jQuery.merge( this, jQuery.parseHTML( + match[ 1 ], + context && context.nodeType ? context.ownerDocument || context : document, + true + ) ); + + // HANDLE: $(html, props) + if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { + for ( match in context ) { + + // Properties of context are called as methods if possible + if ( isFunction( this[ match ] ) ) { + this[ match ]( context[ match ] ); + + // ...and otherwise set as attributes + } else { + this.attr( match, context[ match ] ); + } + } + } + + return this; + + // HANDLE: $(#id) + } else { + elem = document.getElementById( match[ 2 ] ); + + if ( elem ) { + + // Inject the element directly into the jQuery object + this[ 0 ] = elem; + this.length = 1; + } + return this; + } + + // HANDLE: $(expr, $(...)) + } else if ( !context || context.jquery ) { + return ( context || root ).find( selector ); + + // HANDLE: $(expr, context) + // (which is just equivalent to: $(context).find(expr) + } else { + return this.constructor( context ).find( selector ); + } + + // HANDLE: $(DOMElement) + } else if ( selector.nodeType ) { + this[ 0 ] = selector; + this.length = 1; + return this; + + // HANDLE: $(function) + // Shortcut for document ready + } else if ( isFunction( selector ) ) { + return root.ready !== undefined ? + root.ready( selector ) : + + // Execute immediately if ready is not present + selector( jQuery ); + } + + return jQuery.makeArray( selector, this ); + }; + +// Give the init function the jQuery prototype for later instantiation +init.prototype = jQuery.fn; + +// Initialize central reference +rootjQuery = jQuery( document ); + + +var rparentsprev = /^(?:parents|prev(?:Until|All))/, + + // Methods guaranteed to produce a unique set when starting from a unique set + guaranteedUnique = { + children: true, + contents: true, + next: true, + prev: true + }; + +jQuery.fn.extend( { + has: function( target ) { + var targets = jQuery( target, this ), + l = targets.length; + + return this.filter( function() { + var i = 0; + for ( ; i < l; i++ ) { + if ( jQuery.contains( this, targets[ i ] ) ) { + return true; + } + } + } ); + }, + + closest: function( selectors, context ) { + var cur, + i = 0, + l = this.length, + matched = [], + targets = typeof selectors !== "string" && jQuery( selectors ); + + // Positional selectors never match, since there's no _selection_ context + if ( !rneedsContext.test( selectors ) ) { + for ( ; i < l; i++ ) { + for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { + + // Always skip document fragments + if ( cur.nodeType < 11 && ( targets ? + targets.index( cur ) > -1 : + + // Don't pass non-elements to Sizzle + cur.nodeType === 1 && + jQuery.find.matchesSelector( cur, selectors ) ) ) { + + matched.push( cur ); + break; + } + } + } + } + + return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); + }, + + // Determine the position of an element within the set + index: function( elem ) { + + // No argument, return index in parent + if ( !elem ) { + return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; + } + + // Index in selector + if ( typeof elem === "string" ) { + return indexOf.call( jQuery( elem ), this[ 0 ] ); + } + + // Locate the position of the desired element + return indexOf.call( this, + + // If it receives a jQuery object, the first element is used + elem.jquery ? elem[ 0 ] : elem + ); + }, + + add: function( selector, context ) { + return this.pushStack( + jQuery.uniqueSort( + jQuery.merge( this.get(), jQuery( selector, context ) ) + ) + ); + }, + + addBack: function( selector ) { + return this.add( selector == null ? + this.prevObject : this.prevObject.filter( selector ) + ); + } +} ); + +function sibling( cur, dir ) { + while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {} + return cur; +} + +jQuery.each( { + parent: function( elem ) { + var parent = elem.parentNode; + return parent && parent.nodeType !== 11 ? parent : null; + }, + parents: function( elem ) { + return dir( elem, "parentNode" ); + }, + parentsUntil: function( elem, _i, until ) { + return dir( elem, "parentNode", until ); + }, + next: function( elem ) { + return sibling( elem, "nextSibling" ); + }, + prev: function( elem ) { + return sibling( elem, "previousSibling" ); + }, + nextAll: function( elem ) { + return dir( elem, "nextSibling" ); + }, + prevAll: function( elem ) { + return dir( elem, "previousSibling" ); + }, + nextUntil: function( elem, _i, until ) { + return dir( elem, "nextSibling", until ); + }, + prevUntil: function( elem, _i, until ) { + return dir( elem, "previousSibling", until ); + }, + siblings: function( elem ) { + return siblings( ( elem.parentNode || {} ).firstChild, elem ); + }, + children: function( elem ) { + return siblings( elem.firstChild ); + }, + contents: function( elem ) { + if ( elem.contentDocument != null && + + // Support: IE 11+ + // elements with no `data` attribute has an object + // `contentDocument` with a `null` prototype. + getProto( elem.contentDocument ) ) { + + return elem.contentDocument; + } + + // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only + // Treat the template element as a regular one in browsers that + // don't support it. + if ( nodeName( elem, "template" ) ) { + elem = elem.content || elem; + } + + return jQuery.merge( [], elem.childNodes ); + } +}, function( name, fn ) { + jQuery.fn[ name ] = function( until, selector ) { + var matched = jQuery.map( this, fn, until ); + + if ( name.slice( -5 ) !== "Until" ) { + selector = until; + } + + if ( selector && typeof selector === "string" ) { + matched = jQuery.filter( selector, matched ); + } + + if ( this.length > 1 ) { + + // Remove duplicates + if ( !guaranteedUnique[ name ] ) { + jQuery.uniqueSort( matched ); + } + + // Reverse order for parents* and prev-derivatives + if ( rparentsprev.test( name ) ) { + matched.reverse(); + } + } + + return this.pushStack( matched ); + }; +} ); +var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g ); + + + +// Convert String-formatted options into Object-formatted ones +function createOptions( options ) { + var object = {}; + jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) { + object[ flag ] = true; + } ); + return object; +} + +/* + * Create a callback list using the following parameters: + * + * options: an optional list of space-separated options that will change how + * the callback list behaves or a more traditional option object + * + * By default a callback list will act like an event callback list and can be + * "fired" multiple times. + * + * Possible options: + * + * once: will ensure the callback list can only be fired once (like a Deferred) + * + * memory: will keep track of previous values and will call any callback added + * after the list has been fired right away with the latest "memorized" + * values (like a Deferred) + * + * unique: will ensure a callback can only be added once (no duplicate in the list) + * + * stopOnFalse: interrupt callings when a callback returns false + * + */ +jQuery.Callbacks = function( options ) { + + // Convert options from String-formatted to Object-formatted if needed + // (we check in cache first) + options = typeof options === "string" ? + createOptions( options ) : + jQuery.extend( {}, options ); + + var // Flag to know if list is currently firing + firing, + + // Last fire value for non-forgettable lists + memory, + + // Flag to know if list was already fired + fired, + + // Flag to prevent firing + locked, + + // Actual callback list + list = [], + + // Queue of execution data for repeatable lists + queue = [], + + // Index of currently firing callback (modified by add/remove as needed) + firingIndex = -1, + + // Fire callbacks + fire = function() { + + // Enforce single-firing + locked = locked || options.once; + + // Execute callbacks for all pending executions, + // respecting firingIndex overrides and runtime changes + fired = firing = true; + for ( ; queue.length; firingIndex = -1 ) { + memory = queue.shift(); + while ( ++firingIndex < list.length ) { + + // Run callback and check for early termination + if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && + options.stopOnFalse ) { + + // Jump to end and forget the data so .add doesn't re-fire + firingIndex = list.length; + memory = false; + } + } + } + + // Forget the data if we're done with it + if ( !options.memory ) { + memory = false; + } + + firing = false; + + // Clean up if we're done firing for good + if ( locked ) { + + // Keep an empty list if we have data for future add calls + if ( memory ) { + list = []; + + // Otherwise, this object is spent + } else { + list = ""; + } + } + }, + + // Actual Callbacks object + self = { + + // Add a callback or a collection of callbacks to the list + add: function() { + if ( list ) { + + // If we have memory from a past run, we should fire after adding + if ( memory && !firing ) { + firingIndex = list.length - 1; + queue.push( memory ); + } + + ( function add( args ) { + jQuery.each( args, function( _, arg ) { + if ( isFunction( arg ) ) { + if ( !options.unique || !self.has( arg ) ) { + list.push( arg ); + } + } else if ( arg && arg.length && toType( arg ) !== "string" ) { + + // Inspect recursively + add( arg ); + } + } ); + } )( arguments ); + + if ( memory && !firing ) { + fire(); + } + } + return this; + }, + + // Remove a callback from the list + remove: function() { + jQuery.each( arguments, function( _, arg ) { + var index; + while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { + list.splice( index, 1 ); + + // Handle firing indexes + if ( index <= firingIndex ) { + firingIndex--; + } + } + } ); + return this; + }, + + // Check if a given callback is in the list. + // If no argument is given, return whether or not list has callbacks attached. + has: function( fn ) { + return fn ? + jQuery.inArray( fn, list ) > -1 : + list.length > 0; + }, + + // Remove all callbacks from the list + empty: function() { + if ( list ) { + list = []; + } + return this; + }, + + // Disable .fire and .add + // Abort any current/pending executions + // Clear all callbacks and values + disable: function() { + locked = queue = []; + list = memory = ""; + return this; + }, + disabled: function() { + return !list; + }, + + // Disable .fire + // Also disable .add unless we have memory (since it would have no effect) + // Abort any pending executions + lock: function() { + locked = queue = []; + if ( !memory && !firing ) { + list = memory = ""; + } + return this; + }, + locked: function() { + return !!locked; + }, + + // Call all callbacks with the given context and arguments + fireWith: function( context, args ) { + if ( !locked ) { + args = args || []; + args = [ context, args.slice ? args.slice() : args ]; + queue.push( args ); + if ( !firing ) { + fire(); + } + } + return this; + }, + + // Call all the callbacks with the given arguments + fire: function() { + self.fireWith( this, arguments ); + return this; + }, + + // To know if the callbacks have already been called at least once + fired: function() { + return !!fired; + } + }; + + return self; +}; + + +function Identity( v ) { + return v; +} +function Thrower( ex ) { + throw ex; +} + +function adoptValue( value, resolve, reject, noValue ) { + var method; + + try { + + // Check for promise aspect first to privilege synchronous behavior + if ( value && isFunction( ( method = value.promise ) ) ) { + method.call( value ).done( resolve ).fail( reject ); + + // Other thenables + } else if ( value && isFunction( ( method = value.then ) ) ) { + method.call( value, resolve, reject ); + + // Other non-thenables + } else { + + // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer: + // * false: [ value ].slice( 0 ) => resolve( value ) + // * true: [ value ].slice( 1 ) => resolve() + resolve.apply( undefined, [ value ].slice( noValue ) ); + } + + // For Promises/A+, convert exceptions into rejections + // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in + // Deferred#then to conditionally suppress rejection. + } catch ( value ) { + + // Support: Android 4.0 only + // Strict mode functions invoked without .call/.apply get global-object context + reject.apply( undefined, [ value ] ); + } +} + +jQuery.extend( { + + Deferred: function( func ) { + var tuples = [ + + // action, add listener, callbacks, + // ... .then handlers, argument index, [final state] + [ "notify", "progress", jQuery.Callbacks( "memory" ), + jQuery.Callbacks( "memory" ), 2 ], + [ "resolve", "done", jQuery.Callbacks( "once memory" ), + jQuery.Callbacks( "once memory" ), 0, "resolved" ], + [ "reject", "fail", jQuery.Callbacks( "once memory" ), + jQuery.Callbacks( "once memory" ), 1, "rejected" ] + ], + state = "pending", + promise = { + state: function() { + return state; + }, + always: function() { + deferred.done( arguments ).fail( arguments ); + return this; + }, + "catch": function( fn ) { + return promise.then( null, fn ); + }, + + // Keep pipe for back-compat + pipe: function( /* fnDone, fnFail, fnProgress */ ) { + var fns = arguments; + + return jQuery.Deferred( function( newDefer ) { + jQuery.each( tuples, function( _i, tuple ) { + + // Map tuples (progress, done, fail) to arguments (done, fail, progress) + var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ]; + + // deferred.progress(function() { bind to newDefer or newDefer.notify }) + // deferred.done(function() { bind to newDefer or newDefer.resolve }) + // deferred.fail(function() { bind to newDefer or newDefer.reject }) + deferred[ tuple[ 1 ] ]( function() { + var returned = fn && fn.apply( this, arguments ); + if ( returned && isFunction( returned.promise ) ) { + returned.promise() + .progress( newDefer.notify ) + .done( newDefer.resolve ) + .fail( newDefer.reject ); + } else { + newDefer[ tuple[ 0 ] + "With" ]( + this, + fn ? [ returned ] : arguments + ); + } + } ); + } ); + fns = null; + } ).promise(); + }, + then: function( onFulfilled, onRejected, onProgress ) { + var maxDepth = 0; + function resolve( depth, deferred, handler, special ) { + return function() { + var that = this, + args = arguments, + mightThrow = function() { + var returned, then; + + // Support: Promises/A+ section 2.3.3.3.3 + // https://promisesaplus.com/#point-59 + // Ignore double-resolution attempts + if ( depth < maxDepth ) { + return; + } + + returned = handler.apply( that, args ); + + // Support: Promises/A+ section 2.3.1 + // https://promisesaplus.com/#point-48 + if ( returned === deferred.promise() ) { + throw new TypeError( "Thenable self-resolution" ); + } + + // Support: Promises/A+ sections 2.3.3.1, 3.5 + // https://promisesaplus.com/#point-54 + // https://promisesaplus.com/#point-75 + // Retrieve `then` only once + then = returned && + + // Support: Promises/A+ section 2.3.4 + // https://promisesaplus.com/#point-64 + // Only check objects and functions for thenability + ( typeof returned === "object" || + typeof returned === "function" ) && + returned.then; + + // Handle a returned thenable + if ( isFunction( then ) ) { + + // Special processors (notify) just wait for resolution + if ( special ) { + then.call( + returned, + resolve( maxDepth, deferred, Identity, special ), + resolve( maxDepth, deferred, Thrower, special ) + ); + + // Normal processors (resolve) also hook into progress + } else { + + // ...and disregard older resolution values + maxDepth++; + + then.call( + returned, + resolve( maxDepth, deferred, Identity, special ), + resolve( maxDepth, deferred, Thrower, special ), + resolve( maxDepth, deferred, Identity, + deferred.notifyWith ) + ); + } + + // Handle all other returned values + } else { + + // Only substitute handlers pass on context + // and multiple values (non-spec behavior) + if ( handler !== Identity ) { + that = undefined; + args = [ returned ]; + } + + // Process the value(s) + // Default process is resolve + ( special || deferred.resolveWith )( that, args ); + } + }, + + // Only normal processors (resolve) catch and reject exceptions + process = special ? + mightThrow : + function() { + try { + mightThrow(); + } catch ( e ) { + + if ( jQuery.Deferred.exceptionHook ) { + jQuery.Deferred.exceptionHook( e, + process.stackTrace ); + } + + // Support: Promises/A+ section 2.3.3.3.4.1 + // https://promisesaplus.com/#point-61 + // Ignore post-resolution exceptions + if ( depth + 1 >= maxDepth ) { + + // Only substitute handlers pass on context + // and multiple values (non-spec behavior) + if ( handler !== Thrower ) { + that = undefined; + args = [ e ]; + } + + deferred.rejectWith( that, args ); + } + } + }; + + // Support: Promises/A+ section 2.3.3.3.1 + // https://promisesaplus.com/#point-57 + // Re-resolve promises immediately to dodge false rejection from + // subsequent errors + if ( depth ) { + process(); + } else { + + // Call an optional hook to record the stack, in case of exception + // since it's otherwise lost when execution goes async + if ( jQuery.Deferred.getStackHook ) { + process.stackTrace = jQuery.Deferred.getStackHook(); + } + window.setTimeout( process ); + } + }; + } + + return jQuery.Deferred( function( newDefer ) { + + // progress_handlers.add( ... ) + tuples[ 0 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onProgress ) ? + onProgress : + Identity, + newDefer.notifyWith + ) + ); + + // fulfilled_handlers.add( ... ) + tuples[ 1 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onFulfilled ) ? + onFulfilled : + Identity + ) + ); + + // rejected_handlers.add( ... ) + tuples[ 2 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onRejected ) ? + onRejected : + Thrower + ) + ); + } ).promise(); + }, + + // Get a promise for this deferred + // If obj is provided, the promise aspect is added to the object + promise: function( obj ) { + return obj != null ? jQuery.extend( obj, promise ) : promise; + } + }, + deferred = {}; + + // Add list-specific methods + jQuery.each( tuples, function( i, tuple ) { + var list = tuple[ 2 ], + stateString = tuple[ 5 ]; + + // promise.progress = list.add + // promise.done = list.add + // promise.fail = list.add + promise[ tuple[ 1 ] ] = list.add; + + // Handle state + if ( stateString ) { + list.add( + function() { + + // state = "resolved" (i.e., fulfilled) + // state = "rejected" + state = stateString; + }, + + // rejected_callbacks.disable + // fulfilled_callbacks.disable + tuples[ 3 - i ][ 2 ].disable, + + // rejected_handlers.disable + // fulfilled_handlers.disable + tuples[ 3 - i ][ 3 ].disable, + + // progress_callbacks.lock + tuples[ 0 ][ 2 ].lock, + + // progress_handlers.lock + tuples[ 0 ][ 3 ].lock + ); + } + + // progress_handlers.fire + // fulfilled_handlers.fire + // rejected_handlers.fire + list.add( tuple[ 3 ].fire ); + + // deferred.notify = function() { deferred.notifyWith(...) } + // deferred.resolve = function() { deferred.resolveWith(...) } + // deferred.reject = function() { deferred.rejectWith(...) } + deferred[ tuple[ 0 ] ] = function() { + deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments ); + return this; + }; + + // deferred.notifyWith = list.fireWith + // deferred.resolveWith = list.fireWith + // deferred.rejectWith = list.fireWith + deferred[ tuple[ 0 ] + "With" ] = list.fireWith; + } ); + + // Make the deferred a promise + promise.promise( deferred ); + + // Call given func if any + if ( func ) { + func.call( deferred, deferred ); + } + + // All done! + return deferred; + }, + + // Deferred helper + when: function( singleValue ) { + var + + // count of uncompleted subordinates + remaining = arguments.length, + + // count of unprocessed arguments + i = remaining, + + // subordinate fulfillment data + resolveContexts = Array( i ), + resolveValues = slice.call( arguments ), + + // the master Deferred + master = jQuery.Deferred(), + + // subordinate callback factory + updateFunc = function( i ) { + return function( value ) { + resolveContexts[ i ] = this; + resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; + if ( !( --remaining ) ) { + master.resolveWith( resolveContexts, resolveValues ); + } + }; + }; + + // Single- and empty arguments are adopted like Promise.resolve + if ( remaining <= 1 ) { + adoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject, + !remaining ); + + // Use .then() to unwrap secondary thenables (cf. gh-3000) + if ( master.state() === "pending" || + isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) { + + return master.then(); + } + } + + // Multiple arguments are aggregated like Promise.all array elements + while ( i-- ) { + adoptValue( resolveValues[ i ], updateFunc( i ), master.reject ); + } + + return master.promise(); + } +} ); + + +// These usually indicate a programmer mistake during development, +// warn about them ASAP rather than swallowing them by default. +var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; + +jQuery.Deferred.exceptionHook = function( error, stack ) { + + // Support: IE 8 - 9 only + // Console exists when dev tools are open, which can happen at any time + if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) { + window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack ); + } +}; + + + + +jQuery.readyException = function( error ) { + window.setTimeout( function() { + throw error; + } ); +}; + + + + +// The deferred used on DOM ready +var readyList = jQuery.Deferred(); + +jQuery.fn.ready = function( fn ) { + + readyList + .then( fn ) + + // Wrap jQuery.readyException in a function so that the lookup + // happens at the time of error handling instead of callback + // registration. + .catch( function( error ) { + jQuery.readyException( error ); + } ); + + return this; +}; + +jQuery.extend( { + + // Is the DOM ready to be used? Set to true once it occurs. + isReady: false, + + // A counter to track how many items to wait for before + // the ready event fires. See #6781 + readyWait: 1, + + // Handle when the DOM is ready + ready: function( wait ) { + + // Abort if there are pending holds or we're already ready + if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { + return; + } + + // Remember that the DOM is ready + jQuery.isReady = true; + + // If a normal DOM Ready event fired, decrement, and wait if need be + if ( wait !== true && --jQuery.readyWait > 0 ) { + return; + } + + // If there are functions bound, to execute + readyList.resolveWith( document, [ jQuery ] ); + } +} ); + +jQuery.ready.then = readyList.then; + +// The ready event handler and self cleanup method +function completed() { + document.removeEventListener( "DOMContentLoaded", completed ); + window.removeEventListener( "load", completed ); + jQuery.ready(); +} + +// Catch cases where $(document).ready() is called +// after the browser event has already occurred. +// Support: IE <=9 - 10 only +// Older IE sometimes signals "interactive" too soon +if ( document.readyState === "complete" || + ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) { + + // Handle it asynchronously to allow scripts the opportunity to delay ready + window.setTimeout( jQuery.ready ); + +} else { + + // Use the handy event callback + document.addEventListener( "DOMContentLoaded", completed ); + + // A fallback to window.onload, that will always work + window.addEventListener( "load", completed ); +} + + + + +// Multifunctional method to get and set values of a collection +// The value/s can optionally be executed if it's a function +var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { + var i = 0, + len = elems.length, + bulk = key == null; + + // Sets many values + if ( toType( key ) === "object" ) { + chainable = true; + for ( i in key ) { + access( elems, fn, i, key[ i ], true, emptyGet, raw ); + } + + // Sets one value + } else if ( value !== undefined ) { + chainable = true; + + if ( !isFunction( value ) ) { + raw = true; + } + + if ( bulk ) { + + // Bulk operations run against the entire set + if ( raw ) { + fn.call( elems, value ); + fn = null; + + // ...except when executing function values + } else { + bulk = fn; + fn = function( elem, _key, value ) { + return bulk.call( jQuery( elem ), value ); + }; + } + } + + if ( fn ) { + for ( ; i < len; i++ ) { + fn( + elems[ i ], key, raw ? + value : + value.call( elems[ i ], i, fn( elems[ i ], key ) ) + ); + } + } + } + + if ( chainable ) { + return elems; + } + + // Gets + if ( bulk ) { + return fn.call( elems ); + } + + return len ? fn( elems[ 0 ], key ) : emptyGet; +}; + + +// Matches dashed string for camelizing +var rmsPrefix = /^-ms-/, + rdashAlpha = /-([a-z])/g; + +// Used by camelCase as callback to replace() +function fcamelCase( _all, letter ) { + return letter.toUpperCase(); +} + +// Convert dashed to camelCase; used by the css and data modules +// Support: IE <=9 - 11, Edge 12 - 15 +// Microsoft forgot to hump their vendor prefix (#9572) +function camelCase( string ) { + return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); +} +var acceptData = function( owner ) { + + // Accepts only: + // - Node + // - Node.ELEMENT_NODE + // - Node.DOCUMENT_NODE + // - Object + // - Any + return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); +}; + + + + +function Data() { + this.expando = jQuery.expando + Data.uid++; +} + +Data.uid = 1; + +Data.prototype = { + + cache: function( owner ) { + + // Check if the owner object already has a cache + var value = owner[ this.expando ]; + + // If not, create one + if ( !value ) { + value = {}; + + // We can accept data for non-element nodes in modern browsers, + // but we should not, see #8335. + // Always return an empty object. + if ( acceptData( owner ) ) { + + // If it is a node unlikely to be stringify-ed or looped over + // use plain assignment + if ( owner.nodeType ) { + owner[ this.expando ] = value; + + // Otherwise secure it in a non-enumerable property + // configurable must be true to allow the property to be + // deleted when data is removed + } else { + Object.defineProperty( owner, this.expando, { + value: value, + configurable: true + } ); + } + } + } + + return value; + }, + set: function( owner, data, value ) { + var prop, + cache = this.cache( owner ); + + // Handle: [ owner, key, value ] args + // Always use camelCase key (gh-2257) + if ( typeof data === "string" ) { + cache[ camelCase( data ) ] = value; + + // Handle: [ owner, { properties } ] args + } else { + + // Copy the properties one-by-one to the cache object + for ( prop in data ) { + cache[ camelCase( prop ) ] = data[ prop ]; + } + } + return cache; + }, + get: function( owner, key ) { + return key === undefined ? + this.cache( owner ) : + + // Always use camelCase key (gh-2257) + owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ]; + }, + access: function( owner, key, value ) { + + // In cases where either: + // + // 1. No key was specified + // 2. A string key was specified, but no value provided + // + // Take the "read" path and allow the get method to determine + // which value to return, respectively either: + // + // 1. The entire cache object + // 2. The data stored at the key + // + if ( key === undefined || + ( ( key && typeof key === "string" ) && value === undefined ) ) { + + return this.get( owner, key ); + } + + // When the key is not a string, or both a key and value + // are specified, set or extend (existing objects) with either: + // + // 1. An object of properties + // 2. A key and value + // + this.set( owner, key, value ); + + // Since the "set" path can have two possible entry points + // return the expected data based on which path was taken[*] + return value !== undefined ? value : key; + }, + remove: function( owner, key ) { + var i, + cache = owner[ this.expando ]; + + if ( cache === undefined ) { + return; + } + + if ( key !== undefined ) { + + // Support array or space separated string of keys + if ( Array.isArray( key ) ) { + + // If key is an array of keys... + // We always set camelCase keys, so remove that. + key = key.map( camelCase ); + } else { + key = camelCase( key ); + + // If a key with the spaces exists, use it. + // Otherwise, create an array by matching non-whitespace + key = key in cache ? + [ key ] : + ( key.match( rnothtmlwhite ) || [] ); + } + + i = key.length; + + while ( i-- ) { + delete cache[ key[ i ] ]; + } + } + + // Remove the expando if there's no more data + if ( key === undefined || jQuery.isEmptyObject( cache ) ) { + + // Support: Chrome <=35 - 45 + // Webkit & Blink performance suffers when deleting properties + // from DOM nodes, so set to undefined instead + // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted) + if ( owner.nodeType ) { + owner[ this.expando ] = undefined; + } else { + delete owner[ this.expando ]; + } + } + }, + hasData: function( owner ) { + var cache = owner[ this.expando ]; + return cache !== undefined && !jQuery.isEmptyObject( cache ); + } +}; +var dataPriv = new Data(); + +var dataUser = new Data(); + + + +// Implementation Summary +// +// 1. Enforce API surface and semantic compatibility with 1.9.x branch +// 2. Improve the module's maintainability by reducing the storage +// paths to a single mechanism. +// 3. Use the same single mechanism to support "private" and "user" data. +// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) +// 5. Avoid exposing implementation details on user objects (eg. expando properties) +// 6. Provide a clear path for implementation upgrade to WeakMap in 2014 + +var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, + rmultiDash = /[A-Z]/g; + +function getData( data ) { + if ( data === "true" ) { + return true; + } + + if ( data === "false" ) { + return false; + } + + if ( data === "null" ) { + return null; + } + + // Only convert to a number if it doesn't change the string + if ( data === +data + "" ) { + return +data; + } + + if ( rbrace.test( data ) ) { + return JSON.parse( data ); + } + + return data; +} + +function dataAttr( elem, key, data ) { + var name; + + // If nothing was found internally, try to fetch any + // data from the HTML5 data-* attribute + if ( data === undefined && elem.nodeType === 1 ) { + name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); + data = elem.getAttribute( name ); + + if ( typeof data === "string" ) { + try { + data = getData( data ); + } catch ( e ) {} + + // Make sure we set the data so it isn't changed later + dataUser.set( elem, key, data ); + } else { + data = undefined; + } + } + return data; +} + +jQuery.extend( { + hasData: function( elem ) { + return dataUser.hasData( elem ) || dataPriv.hasData( elem ); + }, + + data: function( elem, name, data ) { + return dataUser.access( elem, name, data ); + }, + + removeData: function( elem, name ) { + dataUser.remove( elem, name ); + }, + + // TODO: Now that all calls to _data and _removeData have been replaced + // with direct calls to dataPriv methods, these can be deprecated. + _data: function( elem, name, data ) { + return dataPriv.access( elem, name, data ); + }, + + _removeData: function( elem, name ) { + dataPriv.remove( elem, name ); + } +} ); + +jQuery.fn.extend( { + data: function( key, value ) { + var i, name, data, + elem = this[ 0 ], + attrs = elem && elem.attributes; + + // Gets all values + if ( key === undefined ) { + if ( this.length ) { + data = dataUser.get( elem ); + + if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { + i = attrs.length; + while ( i-- ) { + + // Support: IE 11 only + // The attrs elements can be null (#14894) + if ( attrs[ i ] ) { + name = attrs[ i ].name; + if ( name.indexOf( "data-" ) === 0 ) { + name = camelCase( name.slice( 5 ) ); + dataAttr( elem, name, data[ name ] ); + } + } + } + dataPriv.set( elem, "hasDataAttrs", true ); + } + } + + return data; + } + + // Sets multiple values + if ( typeof key === "object" ) { + return this.each( function() { + dataUser.set( this, key ); + } ); + } + + return access( this, function( value ) { + var data; + + // The calling jQuery object (element matches) is not empty + // (and therefore has an element appears at this[ 0 ]) and the + // `value` parameter was not undefined. An empty jQuery object + // will result in `undefined` for elem = this[ 0 ] which will + // throw an exception if an attempt to read a data cache is made. + if ( elem && value === undefined ) { + + // Attempt to get data from the cache + // The key will always be camelCased in Data + data = dataUser.get( elem, key ); + if ( data !== undefined ) { + return data; + } + + // Attempt to "discover" the data in + // HTML5 custom data-* attrs + data = dataAttr( elem, key ); + if ( data !== undefined ) { + return data; + } + + // We tried really hard, but the data doesn't exist. + return; + } + + // Set the data... + this.each( function() { + + // We always store the camelCased key + dataUser.set( this, key, value ); + } ); + }, null, value, arguments.length > 1, null, true ); + }, + + removeData: function( key ) { + return this.each( function() { + dataUser.remove( this, key ); + } ); + } +} ); + + +jQuery.extend( { + queue: function( elem, type, data ) { + var queue; + + if ( elem ) { + type = ( type || "fx" ) + "queue"; + queue = dataPriv.get( elem, type ); + + // Speed up dequeue by getting out quickly if this is just a lookup + if ( data ) { + if ( !queue || Array.isArray( data ) ) { + queue = dataPriv.access( elem, type, jQuery.makeArray( data ) ); + } else { + queue.push( data ); + } + } + return queue || []; + } + }, + + dequeue: function( elem, type ) { + type = type || "fx"; + + var queue = jQuery.queue( elem, type ), + startLength = queue.length, + fn = queue.shift(), + hooks = jQuery._queueHooks( elem, type ), + next = function() { + jQuery.dequeue( elem, type ); + }; + + // If the fx queue is dequeued, always remove the progress sentinel + if ( fn === "inprogress" ) { + fn = queue.shift(); + startLength--; + } + + if ( fn ) { + + // Add a progress sentinel to prevent the fx queue from being + // automatically dequeued + if ( type === "fx" ) { + queue.unshift( "inprogress" ); + } + + // Clear up the last queue stop function + delete hooks.stop; + fn.call( elem, next, hooks ); + } + + if ( !startLength && hooks ) { + hooks.empty.fire(); + } + }, + + // Not public - generate a queueHooks object, or return the current one + _queueHooks: function( elem, type ) { + var key = type + "queueHooks"; + return dataPriv.get( elem, key ) || dataPriv.access( elem, key, { + empty: jQuery.Callbacks( "once memory" ).add( function() { + dataPriv.remove( elem, [ type + "queue", key ] ); + } ) + } ); + } +} ); + +jQuery.fn.extend( { + queue: function( type, data ) { + var setter = 2; + + if ( typeof type !== "string" ) { + data = type; + type = "fx"; + setter--; + } + + if ( arguments.length < setter ) { + return jQuery.queue( this[ 0 ], type ); + } + + return data === undefined ? + this : + this.each( function() { + var queue = jQuery.queue( this, type, data ); + + // Ensure a hooks for this queue + jQuery._queueHooks( this, type ); + + if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { + jQuery.dequeue( this, type ); + } + } ); + }, + dequeue: function( type ) { + return this.each( function() { + jQuery.dequeue( this, type ); + } ); + }, + clearQueue: function( type ) { + return this.queue( type || "fx", [] ); + }, + + // Get a promise resolved when queues of a certain type + // are emptied (fx is the type by default) + promise: function( type, obj ) { + var tmp, + count = 1, + defer = jQuery.Deferred(), + elements = this, + i = this.length, + resolve = function() { + if ( !( --count ) ) { + defer.resolveWith( elements, [ elements ] ); + } + }; + + if ( typeof type !== "string" ) { + obj = type; + type = undefined; + } + type = type || "fx"; + + while ( i-- ) { + tmp = dataPriv.get( elements[ i ], type + "queueHooks" ); + if ( tmp && tmp.empty ) { + count++; + tmp.empty.add( resolve ); + } + } + resolve(); + return defer.promise( obj ); + } +} ); +var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; + +var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); + + +var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; + +var documentElement = document.documentElement; + + + + var isAttached = function( elem ) { + return jQuery.contains( elem.ownerDocument, elem ); + }, + composed = { composed: true }; + + // Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only + // Check attachment across shadow DOM boundaries when possible (gh-3504) + // Support: iOS 10.0-10.2 only + // Early iOS 10 versions support `attachShadow` but not `getRootNode`, + // leading to errors. We need to check for `getRootNode`. + if ( documentElement.getRootNode ) { + isAttached = function( elem ) { + return jQuery.contains( elem.ownerDocument, elem ) || + elem.getRootNode( composed ) === elem.ownerDocument; + }; + } +var isHiddenWithinTree = function( elem, el ) { + + // isHiddenWithinTree might be called from jQuery#filter function; + // in that case, element will be second argument + elem = el || elem; + + // Inline style trumps all + return elem.style.display === "none" || + elem.style.display === "" && + + // Otherwise, check computed style + // Support: Firefox <=43 - 45 + // Disconnected elements can have computed display: none, so first confirm that elem is + // in the document. + isAttached( elem ) && + + jQuery.css( elem, "display" ) === "none"; + }; + + + +function adjustCSS( elem, prop, valueParts, tween ) { + var adjusted, scale, + maxIterations = 20, + currentValue = tween ? + function() { + return tween.cur(); + } : + function() { + return jQuery.css( elem, prop, "" ); + }, + initial = currentValue(), + unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), + + // Starting value computation is required for potential unit mismatches + initialInUnit = elem.nodeType && + ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) && + rcssNum.exec( jQuery.css( elem, prop ) ); + + if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { + + // Support: Firefox <=54 + // Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144) + initial = initial / 2; + + // Trust units reported by jQuery.css + unit = unit || initialInUnit[ 3 ]; + + // Iteratively approximate from a nonzero starting point + initialInUnit = +initial || 1; + + while ( maxIterations-- ) { + + // Evaluate and update our best guess (doubling guesses that zero out). + // Finish if the scale equals or crosses 1 (making the old*new product non-positive). + jQuery.style( elem, prop, initialInUnit + unit ); + if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) { + maxIterations = 0; + } + initialInUnit = initialInUnit / scale; + + } + + initialInUnit = initialInUnit * 2; + jQuery.style( elem, prop, initialInUnit + unit ); + + // Make sure we update the tween properties later on + valueParts = valueParts || []; + } + + if ( valueParts ) { + initialInUnit = +initialInUnit || +initial || 0; + + // Apply relative offset (+=/-=) if specified + adjusted = valueParts[ 1 ] ? + initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : + +valueParts[ 2 ]; + if ( tween ) { + tween.unit = unit; + tween.start = initialInUnit; + tween.end = adjusted; + } + } + return adjusted; +} + + +var defaultDisplayMap = {}; + +function getDefaultDisplay( elem ) { + var temp, + doc = elem.ownerDocument, + nodeName = elem.nodeName, + display = defaultDisplayMap[ nodeName ]; + + if ( display ) { + return display; + } + + temp = doc.body.appendChild( doc.createElement( nodeName ) ); + display = jQuery.css( temp, "display" ); + + temp.parentNode.removeChild( temp ); + + if ( display === "none" ) { + display = "block"; + } + defaultDisplayMap[ nodeName ] = display; + + return display; +} + +function showHide( elements, show ) { + var display, elem, + values = [], + index = 0, + length = elements.length; + + // Determine new display value for elements that need to change + for ( ; index < length; index++ ) { + elem = elements[ index ]; + if ( !elem.style ) { + continue; + } + + display = elem.style.display; + if ( show ) { + + // Since we force visibility upon cascade-hidden elements, an immediate (and slow) + // check is required in this first loop unless we have a nonempty display value (either + // inline or about-to-be-restored) + if ( display === "none" ) { + values[ index ] = dataPriv.get( elem, "display" ) || null; + if ( !values[ index ] ) { + elem.style.display = ""; + } + } + if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) { + values[ index ] = getDefaultDisplay( elem ); + } + } else { + if ( display !== "none" ) { + values[ index ] = "none"; + + // Remember what we're overwriting + dataPriv.set( elem, "display", display ); + } + } + } + + // Set the display of the elements in a second loop to avoid constant reflow + for ( index = 0; index < length; index++ ) { + if ( values[ index ] != null ) { + elements[ index ].style.display = values[ index ]; + } + } + + return elements; +} + +jQuery.fn.extend( { + show: function() { + return showHide( this, true ); + }, + hide: function() { + return showHide( this ); + }, + toggle: function( state ) { + if ( typeof state === "boolean" ) { + return state ? this.show() : this.hide(); + } + + return this.each( function() { + if ( isHiddenWithinTree( this ) ) { + jQuery( this ).show(); + } else { + jQuery( this ).hide(); + } + } ); + } +} ); +var rcheckableType = ( /^(?:checkbox|radio)$/i ); + +var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i ); + +var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i ); + + + +( function() { + var fragment = document.createDocumentFragment(), + div = fragment.appendChild( document.createElement( "div" ) ), + input = document.createElement( "input" ); + + // Support: Android 4.0 - 4.3 only + // Check state lost if the name is set (#11217) + // Support: Windows Web Apps (WWA) + // `name` and `type` must use .setAttribute for WWA (#14901) + input.setAttribute( "type", "radio" ); + input.setAttribute( "checked", "checked" ); + input.setAttribute( "name", "t" ); + + div.appendChild( input ); + + // Support: Android <=4.1 only + // Older WebKit doesn't clone checked state correctly in fragments + support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; + + // Support: IE <=11 only + // Make sure textarea (and checkbox) defaultValue is properly cloned + div.innerHTML = ""; + support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; + + // Support: IE <=9 only + // IE <=9 replaces "; + support.option = !!div.lastChild; +} )(); + + +// We have to close these tags to support XHTML (#13200) +var wrapMap = { + + // XHTML parsers do not magically insert elements in the + // same way that tag soup parsers do. So we cannot shorten + // this by omitting or other required elements. + thead: [ 1, "", "
" ], + col: [ 2, "", "
" ], + tr: [ 2, "", "
" ], + td: [ 3, "", "
" ], + + _default: [ 0, "", "" ] +}; + +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +wrapMap.th = wrapMap.td; + +// Support: IE <=9 only +if ( !support.option ) { + wrapMap.optgroup = wrapMap.option = [ 1, "" ]; +} + + +function getAll( context, tag ) { + + // Support: IE <=9 - 11 only + // Use typeof to avoid zero-argument method invocation on host objects (#15151) + var ret; + + if ( typeof context.getElementsByTagName !== "undefined" ) { + ret = context.getElementsByTagName( tag || "*" ); + + } else if ( typeof context.querySelectorAll !== "undefined" ) { + ret = context.querySelectorAll( tag || "*" ); + + } else { + ret = []; + } + + if ( tag === undefined || tag && nodeName( context, tag ) ) { + return jQuery.merge( [ context ], ret ); + } + + return ret; +} + + +// Mark scripts as having already been evaluated +function setGlobalEval( elems, refElements ) { + var i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + dataPriv.set( + elems[ i ], + "globalEval", + !refElements || dataPriv.get( refElements[ i ], "globalEval" ) + ); + } +} + + +var rhtml = /<|&#?\w+;/; + +function buildFragment( elems, context, scripts, selection, ignored ) { + var elem, tmp, tag, wrap, attached, j, + fragment = context.createDocumentFragment(), + nodes = [], + i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + elem = elems[ i ]; + + if ( elem || elem === 0 ) { + + // Add nodes directly + if ( toType( elem ) === "object" ) { + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); + + // Convert non-html into a text node + } else if ( !rhtml.test( elem ) ) { + nodes.push( context.createTextNode( elem ) ); + + // Convert html into DOM nodes + } else { + tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); + + // Deserialize a standard representation + tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); + wrap = wrapMap[ tag ] || wrapMap._default; + tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; + + // Descend through wrappers to the right content + j = wrap[ 0 ]; + while ( j-- ) { + tmp = tmp.lastChild; + } + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, tmp.childNodes ); + + // Remember the top-level container + tmp = fragment.firstChild; + + // Ensure the created nodes are orphaned (#12392) + tmp.textContent = ""; + } + } + } + + // Remove wrapper from fragment + fragment.textContent = ""; + + i = 0; + while ( ( elem = nodes[ i++ ] ) ) { + + // Skip elements already in the context collection (trac-4087) + if ( selection && jQuery.inArray( elem, selection ) > -1 ) { + if ( ignored ) { + ignored.push( elem ); + } + continue; + } + + attached = isAttached( elem ); + + // Append to fragment + tmp = getAll( fragment.appendChild( elem ), "script" ); + + // Preserve script evaluation history + if ( attached ) { + setGlobalEval( tmp ); + } + + // Capture executables + if ( scripts ) { + j = 0; + while ( ( elem = tmp[ j++ ] ) ) { + if ( rscriptType.test( elem.type || "" ) ) { + scripts.push( elem ); + } + } + } + } + + return fragment; +} + + +var + rkeyEvent = /^key/, + rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, + rtypenamespace = /^([^.]*)(?:\.(.+)|)/; + +function returnTrue() { + return true; +} + +function returnFalse() { + return false; +} + +// Support: IE <=9 - 11+ +// focus() and blur() are asynchronous, except when they are no-op. +// So expect focus to be synchronous when the element is already active, +// and blur to be synchronous when the element is not already active. +// (focus and blur are always synchronous in other supported browsers, +// this just defines when we can count on it). +function expectSync( elem, type ) { + return ( elem === safeActiveElement() ) === ( type === "focus" ); +} + +// Support: IE <=9 only +// Accessing document.activeElement can throw unexpectedly +// https://bugs.jquery.com/ticket/13393 +function safeActiveElement() { + try { + return document.activeElement; + } catch ( err ) { } +} + +function on( elem, types, selector, data, fn, one ) { + var origFn, type; + + // Types can be a map of types/handlers + if ( typeof types === "object" ) { + + // ( types-Object, selector, data ) + if ( typeof selector !== "string" ) { + + // ( types-Object, data ) + data = data || selector; + selector = undefined; + } + for ( type in types ) { + on( elem, type, selector, data, types[ type ], one ); + } + return elem; + } + + if ( data == null && fn == null ) { + + // ( types, fn ) + fn = selector; + data = selector = undefined; + } else if ( fn == null ) { + if ( typeof selector === "string" ) { + + // ( types, selector, fn ) + fn = data; + data = undefined; + } else { + + // ( types, data, fn ) + fn = data; + data = selector; + selector = undefined; + } + } + if ( fn === false ) { + fn = returnFalse; + } else if ( !fn ) { + return elem; + } + + if ( one === 1 ) { + origFn = fn; + fn = function( event ) { + + // Can use an empty set, since event contains the info + jQuery().off( event ); + return origFn.apply( this, arguments ); + }; + + // Use same guid so caller can remove using origFn + fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); + } + return elem.each( function() { + jQuery.event.add( this, types, fn, data, selector ); + } ); +} + +/* + * Helper functions for managing events -- not part of the public interface. + * Props to Dean Edwards' addEvent library for many of the ideas. + */ +jQuery.event = { + + global: {}, + + add: function( elem, types, handler, data, selector ) { + + var handleObjIn, eventHandle, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = dataPriv.get( elem ); + + // Only attach events to objects that accept data + if ( !acceptData( elem ) ) { + return; + } + + // Caller can pass in an object of custom data in lieu of the handler + if ( handler.handler ) { + handleObjIn = handler; + handler = handleObjIn.handler; + selector = handleObjIn.selector; + } + + // Ensure that invalid selectors throw exceptions at attach time + // Evaluate against documentElement in case elem is a non-element node (e.g., document) + if ( selector ) { + jQuery.find.matchesSelector( documentElement, selector ); + } + + // Make sure that the handler has a unique ID, used to find/remove it later + if ( !handler.guid ) { + handler.guid = jQuery.guid++; + } + + // Init the element's event structure and main handler, if this is the first + if ( !( events = elemData.events ) ) { + events = elemData.events = Object.create( null ); + } + if ( !( eventHandle = elemData.handle ) ) { + eventHandle = elemData.handle = function( e ) { + + // Discard the second event of a jQuery.event.trigger() and + // when an event is called after a page has unloaded + return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? + jQuery.event.dispatch.apply( elem, arguments ) : undefined; + }; + } + + // Handle multiple events separated by a space + types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[ t ] ) || []; + type = origType = tmp[ 1 ]; + namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + + // There *must* be a type, no attaching namespace-only handlers + if ( !type ) { + continue; + } + + // If event changes its type, use the special event handlers for the changed type + special = jQuery.event.special[ type ] || {}; + + // If selector defined, determine special event api type, otherwise given type + type = ( selector ? special.delegateType : special.bindType ) || type; + + // Update special based on newly reset type + special = jQuery.event.special[ type ] || {}; + + // handleObj is passed to all event handlers + handleObj = jQuery.extend( { + type: type, + origType: origType, + data: data, + handler: handler, + guid: handler.guid, + selector: selector, + needsContext: selector && jQuery.expr.match.needsContext.test( selector ), + namespace: namespaces.join( "." ) + }, handleObjIn ); + + // Init the event handler queue if we're the first + if ( !( handlers = events[ type ] ) ) { + handlers = events[ type ] = []; + handlers.delegateCount = 0; + + // Only use addEventListener if the special events handler returns false + if ( !special.setup || + special.setup.call( elem, data, namespaces, eventHandle ) === false ) { + + if ( elem.addEventListener ) { + elem.addEventListener( type, eventHandle ); + } + } + } + + if ( special.add ) { + special.add.call( elem, handleObj ); + + if ( !handleObj.handler.guid ) { + handleObj.handler.guid = handler.guid; + } + } + + // Add to the element's handler list, delegates in front + if ( selector ) { + handlers.splice( handlers.delegateCount++, 0, handleObj ); + } else { + handlers.push( handleObj ); + } + + // Keep track of which events have ever been used, for event optimization + jQuery.event.global[ type ] = true; + } + + }, + + // Detach an event or set of events from an element + remove: function( elem, types, handler, selector, mappedTypes ) { + + var j, origCount, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); + + if ( !elemData || !( events = elemData.events ) ) { + return; + } + + // Once for each type.namespace in types; type may be omitted + types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[ t ] ) || []; + type = origType = tmp[ 1 ]; + namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + + // Unbind all events (on this namespace, if provided) for the element + if ( !type ) { + for ( type in events ) { + jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); + } + continue; + } + + special = jQuery.event.special[ type ] || {}; + type = ( selector ? special.delegateType : special.bindType ) || type; + handlers = events[ type ] || []; + tmp = tmp[ 2 ] && + new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); + + // Remove matching events + origCount = j = handlers.length; + while ( j-- ) { + handleObj = handlers[ j ]; + + if ( ( mappedTypes || origType === handleObj.origType ) && + ( !handler || handler.guid === handleObj.guid ) && + ( !tmp || tmp.test( handleObj.namespace ) ) && + ( !selector || selector === handleObj.selector || + selector === "**" && handleObj.selector ) ) { + handlers.splice( j, 1 ); + + if ( handleObj.selector ) { + handlers.delegateCount--; + } + if ( special.remove ) { + special.remove.call( elem, handleObj ); + } + } + } + + // Remove generic event handler if we removed something and no more handlers exist + // (avoids potential for endless recursion during removal of special event handlers) + if ( origCount && !handlers.length ) { + if ( !special.teardown || + special.teardown.call( elem, namespaces, elemData.handle ) === false ) { + + jQuery.removeEvent( elem, type, elemData.handle ); + } + + delete events[ type ]; + } + } + + // Remove data and the expando if it's no longer used + if ( jQuery.isEmptyObject( events ) ) { + dataPriv.remove( elem, "handle events" ); + } + }, + + dispatch: function( nativeEvent ) { + + var i, j, ret, matched, handleObj, handlerQueue, + args = new Array( arguments.length ), + + // Make a writable jQuery.Event from the native event object + event = jQuery.event.fix( nativeEvent ), + + handlers = ( + dataPriv.get( this, "events" ) || Object.create( null ) + )[ event.type ] || [], + special = jQuery.event.special[ event.type ] || {}; + + // Use the fix-ed jQuery.Event rather than the (read-only) native event + args[ 0 ] = event; + + for ( i = 1; i < arguments.length; i++ ) { + args[ i ] = arguments[ i ]; + } + + event.delegateTarget = this; + + // Call the preDispatch hook for the mapped type, and let it bail if desired + if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { + return; + } + + // Determine handlers + handlerQueue = jQuery.event.handlers.call( this, event, handlers ); + + // Run delegates first; they may want to stop propagation beneath us + i = 0; + while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { + event.currentTarget = matched.elem; + + j = 0; + while ( ( handleObj = matched.handlers[ j++ ] ) && + !event.isImmediatePropagationStopped() ) { + + // If the event is namespaced, then each handler is only invoked if it is + // specially universal or its namespaces are a superset of the event's. + if ( !event.rnamespace || handleObj.namespace === false || + event.rnamespace.test( handleObj.namespace ) ) { + + event.handleObj = handleObj; + event.data = handleObj.data; + + ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || + handleObj.handler ).apply( matched.elem, args ); + + if ( ret !== undefined ) { + if ( ( event.result = ret ) === false ) { + event.preventDefault(); + event.stopPropagation(); + } + } + } + } + } + + // Call the postDispatch hook for the mapped type + if ( special.postDispatch ) { + special.postDispatch.call( this, event ); + } + + return event.result; + }, + + handlers: function( event, handlers ) { + var i, handleObj, sel, matchedHandlers, matchedSelectors, + handlerQueue = [], + delegateCount = handlers.delegateCount, + cur = event.target; + + // Find delegate handlers + if ( delegateCount && + + // Support: IE <=9 + // Black-hole SVG instance trees (trac-13180) + cur.nodeType && + + // Support: Firefox <=42 + // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861) + // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click + // Support: IE 11 only + // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343) + !( event.type === "click" && event.button >= 1 ) ) { + + for ( ; cur !== this; cur = cur.parentNode || this ) { + + // Don't check non-elements (#13208) + // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) + if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) { + matchedHandlers = []; + matchedSelectors = {}; + for ( i = 0; i < delegateCount; i++ ) { + handleObj = handlers[ i ]; + + // Don't conflict with Object.prototype properties (#13203) + sel = handleObj.selector + " "; + + if ( matchedSelectors[ sel ] === undefined ) { + matchedSelectors[ sel ] = handleObj.needsContext ? + jQuery( sel, this ).index( cur ) > -1 : + jQuery.find( sel, this, null, [ cur ] ).length; + } + if ( matchedSelectors[ sel ] ) { + matchedHandlers.push( handleObj ); + } + } + if ( matchedHandlers.length ) { + handlerQueue.push( { elem: cur, handlers: matchedHandlers } ); + } + } + } + } + + // Add the remaining (directly-bound) handlers + cur = this; + if ( delegateCount < handlers.length ) { + handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } ); + } + + return handlerQueue; + }, + + addProp: function( name, hook ) { + Object.defineProperty( jQuery.Event.prototype, name, { + enumerable: true, + configurable: true, + + get: isFunction( hook ) ? + function() { + if ( this.originalEvent ) { + return hook( this.originalEvent ); + } + } : + function() { + if ( this.originalEvent ) { + return this.originalEvent[ name ]; + } + }, + + set: function( value ) { + Object.defineProperty( this, name, { + enumerable: true, + configurable: true, + writable: true, + value: value + } ); + } + } ); + }, + + fix: function( originalEvent ) { + return originalEvent[ jQuery.expando ] ? + originalEvent : + new jQuery.Event( originalEvent ); + }, + + special: { + load: { + + // Prevent triggered image.load events from bubbling to window.load + noBubble: true + }, + click: { + + // Utilize native event to ensure correct state for checkable inputs + setup: function( data ) { + + // For mutual compressibility with _default, replace `this` access with a local var. + // `|| data` is dead code meant only to preserve the variable through minification. + var el = this || data; + + // Claim the first handler + if ( rcheckableType.test( el.type ) && + el.click && nodeName( el, "input" ) ) { + + // dataPriv.set( el, "click", ... ) + leverageNative( el, "click", returnTrue ); + } + + // Return false to allow normal processing in the caller + return false; + }, + trigger: function( data ) { + + // For mutual compressibility with _default, replace `this` access with a local var. + // `|| data` is dead code meant only to preserve the variable through minification. + var el = this || data; + + // Force setup before triggering a click + if ( rcheckableType.test( el.type ) && + el.click && nodeName( el, "input" ) ) { + + leverageNative( el, "click" ); + } + + // Return non-false to allow normal event-path propagation + return true; + }, + + // For cross-browser consistency, suppress native .click() on links + // Also prevent it if we're currently inside a leveraged native-event stack + _default: function( event ) { + var target = event.target; + return rcheckableType.test( target.type ) && + target.click && nodeName( target, "input" ) && + dataPriv.get( target, "click" ) || + nodeName( target, "a" ); + } + }, + + beforeunload: { + postDispatch: function( event ) { + + // Support: Firefox 20+ + // Firefox doesn't alert if the returnValue field is not set. + if ( event.result !== undefined && event.originalEvent ) { + event.originalEvent.returnValue = event.result; + } + } + } + } +}; + +// Ensure the presence of an event listener that handles manually-triggered +// synthetic events by interrupting progress until reinvoked in response to +// *native* events that it fires directly, ensuring that state changes have +// already occurred before other listeners are invoked. +function leverageNative( el, type, expectSync ) { + + // Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add + if ( !expectSync ) { + if ( dataPriv.get( el, type ) === undefined ) { + jQuery.event.add( el, type, returnTrue ); + } + return; + } + + // Register the controller as a special universal handler for all event namespaces + dataPriv.set( el, type, false ); + jQuery.event.add( el, type, { + namespace: false, + handler: function( event ) { + var notAsync, result, + saved = dataPriv.get( this, type ); + + if ( ( event.isTrigger & 1 ) && this[ type ] ) { + + // Interrupt processing of the outer synthetic .trigger()ed event + // Saved data should be false in such cases, but might be a leftover capture object + // from an async native handler (gh-4350) + if ( !saved.length ) { + + // Store arguments for use when handling the inner native event + // There will always be at least one argument (an event object), so this array + // will not be confused with a leftover capture object. + saved = slice.call( arguments ); + dataPriv.set( this, type, saved ); + + // Trigger the native event and capture its result + // Support: IE <=9 - 11+ + // focus() and blur() are asynchronous + notAsync = expectSync( this, type ); + this[ type ](); + result = dataPriv.get( this, type ); + if ( saved !== result || notAsync ) { + dataPriv.set( this, type, false ); + } else { + result = {}; + } + if ( saved !== result ) { + + // Cancel the outer synthetic event + event.stopImmediatePropagation(); + event.preventDefault(); + return result.value; + } + + // If this is an inner synthetic event for an event with a bubbling surrogate + // (focus or blur), assume that the surrogate already propagated from triggering the + // native event and prevent that from happening again here. + // This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the + // bubbling surrogate propagates *after* the non-bubbling base), but that seems + // less bad than duplication. + } else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) { + event.stopPropagation(); + } + + // If this is a native event triggered above, everything is now in order + // Fire an inner synthetic event with the original arguments + } else if ( saved.length ) { + + // ...and capture the result + dataPriv.set( this, type, { + value: jQuery.event.trigger( + + // Support: IE <=9 - 11+ + // Extend with the prototype to reset the above stopImmediatePropagation() + jQuery.extend( saved[ 0 ], jQuery.Event.prototype ), + saved.slice( 1 ), + this + ) + } ); + + // Abort handling of the native event + event.stopImmediatePropagation(); + } + } + } ); +} + +jQuery.removeEvent = function( elem, type, handle ) { + + // This "if" is needed for plain objects + if ( elem.removeEventListener ) { + elem.removeEventListener( type, handle ); + } +}; + +jQuery.Event = function( src, props ) { + + // Allow instantiation without the 'new' keyword + if ( !( this instanceof jQuery.Event ) ) { + return new jQuery.Event( src, props ); + } + + // Event object + if ( src && src.type ) { + this.originalEvent = src; + this.type = src.type; + + // Events bubbling up the document may have been marked as prevented + // by a handler lower down the tree; reflect the correct value. + this.isDefaultPrevented = src.defaultPrevented || + src.defaultPrevented === undefined && + + // Support: Android <=2.3 only + src.returnValue === false ? + returnTrue : + returnFalse; + + // Create target properties + // Support: Safari <=6 - 7 only + // Target should not be a text node (#504, #13143) + this.target = ( src.target && src.target.nodeType === 3 ) ? + src.target.parentNode : + src.target; + + this.currentTarget = src.currentTarget; + this.relatedTarget = src.relatedTarget; + + // Event type + } else { + this.type = src; + } + + // Put explicitly provided properties onto the event object + if ( props ) { + jQuery.extend( this, props ); + } + + // Create a timestamp if incoming event doesn't have one + this.timeStamp = src && src.timeStamp || Date.now(); + + // Mark it as fixed + this[ jQuery.expando ] = true; +}; + +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding +// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html +jQuery.Event.prototype = { + constructor: jQuery.Event, + isDefaultPrevented: returnFalse, + isPropagationStopped: returnFalse, + isImmediatePropagationStopped: returnFalse, + isSimulated: false, + + preventDefault: function() { + var e = this.originalEvent; + + this.isDefaultPrevented = returnTrue; + + if ( e && !this.isSimulated ) { + e.preventDefault(); + } + }, + stopPropagation: function() { + var e = this.originalEvent; + + this.isPropagationStopped = returnTrue; + + if ( e && !this.isSimulated ) { + e.stopPropagation(); + } + }, + stopImmediatePropagation: function() { + var e = this.originalEvent; + + this.isImmediatePropagationStopped = returnTrue; + + if ( e && !this.isSimulated ) { + e.stopImmediatePropagation(); + } + + this.stopPropagation(); + } +}; + +// Includes all common event props including KeyEvent and MouseEvent specific props +jQuery.each( { + altKey: true, + bubbles: true, + cancelable: true, + changedTouches: true, + ctrlKey: true, + detail: true, + eventPhase: true, + metaKey: true, + pageX: true, + pageY: true, + shiftKey: true, + view: true, + "char": true, + code: true, + charCode: true, + key: true, + keyCode: true, + button: true, + buttons: true, + clientX: true, + clientY: true, + offsetX: true, + offsetY: true, + pointerId: true, + pointerType: true, + screenX: true, + screenY: true, + targetTouches: true, + toElement: true, + touches: true, + + which: function( event ) { + var button = event.button; + + // Add which for key events + if ( event.which == null && rkeyEvent.test( event.type ) ) { + return event.charCode != null ? event.charCode : event.keyCode; + } + + // Add which for click: 1 === left; 2 === middle; 3 === right + if ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) { + if ( button & 1 ) { + return 1; + } + + if ( button & 2 ) { + return 3; + } + + if ( button & 4 ) { + return 2; + } + + return 0; + } + + return event.which; + } +}, jQuery.event.addProp ); + +jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) { + jQuery.event.special[ type ] = { + + // Utilize native event if possible so blur/focus sequence is correct + setup: function() { + + // Claim the first handler + // dataPriv.set( this, "focus", ... ) + // dataPriv.set( this, "blur", ... ) + leverageNative( this, type, expectSync ); + + // Return false to allow normal processing in the caller + return false; + }, + trigger: function() { + + // Force setup before trigger + leverageNative( this, type ); + + // Return non-false to allow normal event-path propagation + return true; + }, + + delegateType: delegateType + }; +} ); + +// Create mouseenter/leave events using mouseover/out and event-time checks +// so that event delegation works in jQuery. +// Do the same for pointerenter/pointerleave and pointerover/pointerout +// +// Support: Safari 7 only +// Safari sends mouseenter too often; see: +// https://bugs.chromium.org/p/chromium/issues/detail?id=470258 +// for the description of the bug (it existed in older Chrome versions as well). +jQuery.each( { + mouseenter: "mouseover", + mouseleave: "mouseout", + pointerenter: "pointerover", + pointerleave: "pointerout" +}, function( orig, fix ) { + jQuery.event.special[ orig ] = { + delegateType: fix, + bindType: fix, + + handle: function( event ) { + var ret, + target = this, + related = event.relatedTarget, + handleObj = event.handleObj; + + // For mouseenter/leave call the handler if related is outside the target. + // NB: No relatedTarget if the mouse left/entered the browser window + if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { + event.type = handleObj.origType; + ret = handleObj.handler.apply( this, arguments ); + event.type = fix; + } + return ret; + } + }; +} ); + +jQuery.fn.extend( { + + on: function( types, selector, data, fn ) { + return on( this, types, selector, data, fn ); + }, + one: function( types, selector, data, fn ) { + return on( this, types, selector, data, fn, 1 ); + }, + off: function( types, selector, fn ) { + var handleObj, type; + if ( types && types.preventDefault && types.handleObj ) { + + // ( event ) dispatched jQuery.Event + handleObj = types.handleObj; + jQuery( types.delegateTarget ).off( + handleObj.namespace ? + handleObj.origType + "." + handleObj.namespace : + handleObj.origType, + handleObj.selector, + handleObj.handler + ); + return this; + } + if ( typeof types === "object" ) { + + // ( types-object [, selector] ) + for ( type in types ) { + this.off( type, selector, types[ type ] ); + } + return this; + } + if ( selector === false || typeof selector === "function" ) { + + // ( types [, fn] ) + fn = selector; + selector = undefined; + } + if ( fn === false ) { + fn = returnFalse; + } + return this.each( function() { + jQuery.event.remove( this, types, fn, selector ); + } ); + } +} ); + + +var + + // Support: IE <=10 - 11, Edge 12 - 13 only + // In IE/Edge using regex groups here causes severe slowdowns. + // See https://connect.microsoft.com/IE/feedback/details/1736512/ + rnoInnerhtml = /\s*$/g; + +// Prefer a tbody over its parent table for containing new rows +function manipulationTarget( elem, content ) { + if ( nodeName( elem, "table" ) && + nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) { + + return jQuery( elem ).children( "tbody" )[ 0 ] || elem; + } + + return elem; +} + +// Replace/restore the type attribute of script elements for safe DOM manipulation +function disableScript( elem ) { + elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; + return elem; +} +function restoreScript( elem ) { + if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) { + elem.type = elem.type.slice( 5 ); + } else { + elem.removeAttribute( "type" ); + } + + return elem; +} + +function cloneCopyEvent( src, dest ) { + var i, l, type, pdataOld, udataOld, udataCur, events; + + if ( dest.nodeType !== 1 ) { + return; + } + + // 1. Copy private data: events, handlers, etc. + if ( dataPriv.hasData( src ) ) { + pdataOld = dataPriv.get( src ); + events = pdataOld.events; + + if ( events ) { + dataPriv.remove( dest, "handle events" ); + + for ( type in events ) { + for ( i = 0, l = events[ type ].length; i < l; i++ ) { + jQuery.event.add( dest, type, events[ type ][ i ] ); + } + } + } + } + + // 2. Copy user data + if ( dataUser.hasData( src ) ) { + udataOld = dataUser.access( src ); + udataCur = jQuery.extend( {}, udataOld ); + + dataUser.set( dest, udataCur ); + } +} + +// Fix IE bugs, see support tests +function fixInput( src, dest ) { + var nodeName = dest.nodeName.toLowerCase(); + + // Fails to persist the checked state of a cloned checkbox or radio button. + if ( nodeName === "input" && rcheckableType.test( src.type ) ) { + dest.checked = src.checked; + + // Fails to return the selected option to the default selected state when cloning options + } else if ( nodeName === "input" || nodeName === "textarea" ) { + dest.defaultValue = src.defaultValue; + } +} + +function domManip( collection, args, callback, ignored ) { + + // Flatten any nested arrays + args = flat( args ); + + var fragment, first, scripts, hasScripts, node, doc, + i = 0, + l = collection.length, + iNoClone = l - 1, + value = args[ 0 ], + valueIsFunction = isFunction( value ); + + // We can't cloneNode fragments that contain checked, in WebKit + if ( valueIsFunction || + ( l > 1 && typeof value === "string" && + !support.checkClone && rchecked.test( value ) ) ) { + return collection.each( function( index ) { + var self = collection.eq( index ); + if ( valueIsFunction ) { + args[ 0 ] = value.call( this, index, self.html() ); + } + domManip( self, args, callback, ignored ); + } ); + } + + if ( l ) { + fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); + first = fragment.firstChild; + + if ( fragment.childNodes.length === 1 ) { + fragment = first; + } + + // Require either new content or an interest in ignored elements to invoke the callback + if ( first || ignored ) { + scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); + hasScripts = scripts.length; + + // Use the original fragment for the last item + // instead of the first because it can end up + // being emptied incorrectly in certain situations (#8070). + for ( ; i < l; i++ ) { + node = fragment; + + if ( i !== iNoClone ) { + node = jQuery.clone( node, true, true ); + + // Keep references to cloned scripts for later restoration + if ( hasScripts ) { + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( scripts, getAll( node, "script" ) ); + } + } + + callback.call( collection[ i ], node, i ); + } + + if ( hasScripts ) { + doc = scripts[ scripts.length - 1 ].ownerDocument; + + // Reenable scripts + jQuery.map( scripts, restoreScript ); + + // Evaluate executable scripts on first document insertion + for ( i = 0; i < hasScripts; i++ ) { + node = scripts[ i ]; + if ( rscriptType.test( node.type || "" ) && + !dataPriv.access( node, "globalEval" ) && + jQuery.contains( doc, node ) ) { + + if ( node.src && ( node.type || "" ).toLowerCase() !== "module" ) { + + // Optional AJAX dependency, but won't run scripts if not present + if ( jQuery._evalUrl && !node.noModule ) { + jQuery._evalUrl( node.src, { + nonce: node.nonce || node.getAttribute( "nonce" ) + }, doc ); + } + } else { + DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc ); + } + } + } + } + } + } + + return collection; +} + +function remove( elem, selector, keepData ) { + var node, + nodes = selector ? jQuery.filter( selector, elem ) : elem, + i = 0; + + for ( ; ( node = nodes[ i ] ) != null; i++ ) { + if ( !keepData && node.nodeType === 1 ) { + jQuery.cleanData( getAll( node ) ); + } + + if ( node.parentNode ) { + if ( keepData && isAttached( node ) ) { + setGlobalEval( getAll( node, "script" ) ); + } + node.parentNode.removeChild( node ); + } + } + + return elem; +} + +jQuery.extend( { + htmlPrefilter: function( html ) { + return html; + }, + + clone: function( elem, dataAndEvents, deepDataAndEvents ) { + var i, l, srcElements, destElements, + clone = elem.cloneNode( true ), + inPage = isAttached( elem ); + + // Fix IE cloning issues + if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && + !jQuery.isXMLDoc( elem ) ) { + + // We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2 + destElements = getAll( clone ); + srcElements = getAll( elem ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + fixInput( srcElements[ i ], destElements[ i ] ); + } + } + + // Copy the events from the original to the clone + if ( dataAndEvents ) { + if ( deepDataAndEvents ) { + srcElements = srcElements || getAll( elem ); + destElements = destElements || getAll( clone ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + cloneCopyEvent( srcElements[ i ], destElements[ i ] ); + } + } else { + cloneCopyEvent( elem, clone ); + } + } + + // Preserve script evaluation history + destElements = getAll( clone, "script" ); + if ( destElements.length > 0 ) { + setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); + } + + // Return the cloned set + return clone; + }, + + cleanData: function( elems ) { + var data, elem, type, + special = jQuery.event.special, + i = 0; + + for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { + if ( acceptData( elem ) ) { + if ( ( data = elem[ dataPriv.expando ] ) ) { + if ( data.events ) { + for ( type in data.events ) { + if ( special[ type ] ) { + jQuery.event.remove( elem, type ); + + // This is a shortcut to avoid jQuery.event.remove's overhead + } else { + jQuery.removeEvent( elem, type, data.handle ); + } + } + } + + // Support: Chrome <=35 - 45+ + // Assign undefined instead of using delete, see Data#remove + elem[ dataPriv.expando ] = undefined; + } + if ( elem[ dataUser.expando ] ) { + + // Support: Chrome <=35 - 45+ + // Assign undefined instead of using delete, see Data#remove + elem[ dataUser.expando ] = undefined; + } + } + } + } +} ); + +jQuery.fn.extend( { + detach: function( selector ) { + return remove( this, selector, true ); + }, + + remove: function( selector ) { + return remove( this, selector ); + }, + + text: function( value ) { + return access( this, function( value ) { + return value === undefined ? + jQuery.text( this ) : + this.empty().each( function() { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + this.textContent = value; + } + } ); + }, null, value, arguments.length ); + }, + + append: function() { + return domManip( this, arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.appendChild( elem ); + } + } ); + }, + + prepend: function() { + return domManip( this, arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.insertBefore( elem, target.firstChild ); + } + } ); + }, + + before: function() { + return domManip( this, arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this ); + } + } ); + }, + + after: function() { + return domManip( this, arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this.nextSibling ); + } + } ); + }, + + empty: function() { + var elem, + i = 0; + + for ( ; ( elem = this[ i ] ) != null; i++ ) { + if ( elem.nodeType === 1 ) { + + // Prevent memory leaks + jQuery.cleanData( getAll( elem, false ) ); + + // Remove any remaining nodes + elem.textContent = ""; + } + } + + return this; + }, + + clone: function( dataAndEvents, deepDataAndEvents ) { + dataAndEvents = dataAndEvents == null ? false : dataAndEvents; + deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; + + return this.map( function() { + return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); + } ); + }, + + html: function( value ) { + return access( this, function( value ) { + var elem = this[ 0 ] || {}, + i = 0, + l = this.length; + + if ( value === undefined && elem.nodeType === 1 ) { + return elem.innerHTML; + } + + // See if we can take a shortcut and just use innerHTML + if ( typeof value === "string" && !rnoInnerhtml.test( value ) && + !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { + + value = jQuery.htmlPrefilter( value ); + + try { + for ( ; i < l; i++ ) { + elem = this[ i ] || {}; + + // Remove element nodes and prevent memory leaks + if ( elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem, false ) ); + elem.innerHTML = value; + } + } + + elem = 0; + + // If using innerHTML throws an exception, use the fallback method + } catch ( e ) {} + } + + if ( elem ) { + this.empty().append( value ); + } + }, null, value, arguments.length ); + }, + + replaceWith: function() { + var ignored = []; + + // Make the changes, replacing each non-ignored context element with the new content + return domManip( this, arguments, function( elem ) { + var parent = this.parentNode; + + if ( jQuery.inArray( this, ignored ) < 0 ) { + jQuery.cleanData( getAll( this ) ); + if ( parent ) { + parent.replaceChild( elem, this ); + } + } + + // Force callback invocation + }, ignored ); + } +} ); + +jQuery.each( { + appendTo: "append", + prependTo: "prepend", + insertBefore: "before", + insertAfter: "after", + replaceAll: "replaceWith" +}, function( name, original ) { + jQuery.fn[ name ] = function( selector ) { + var elems, + ret = [], + insert = jQuery( selector ), + last = insert.length - 1, + i = 0; + + for ( ; i <= last; i++ ) { + elems = i === last ? this : this.clone( true ); + jQuery( insert[ i ] )[ original ]( elems ); + + // Support: Android <=4.0 only, PhantomJS 1 only + // .get() because push.apply(_, arraylike) throws on ancient WebKit + push.apply( ret, elems.get() ); + } + + return this.pushStack( ret ); + }; +} ); +var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); + +var getStyles = function( elem ) { + + // Support: IE <=11 only, Firefox <=30 (#15098, #14150) + // IE throws on elements created in popups + // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" + var view = elem.ownerDocument.defaultView; + + if ( !view || !view.opener ) { + view = window; + } + + return view.getComputedStyle( elem ); + }; + +var swap = function( elem, options, callback ) { + var ret, name, + old = {}; + + // Remember the old values, and insert the new ones + for ( name in options ) { + old[ name ] = elem.style[ name ]; + elem.style[ name ] = options[ name ]; + } + + ret = callback.call( elem ); + + // Revert the old values + for ( name in options ) { + elem.style[ name ] = old[ name ]; + } + + return ret; +}; + + +var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" ); + + + +( function() { + + // Executing both pixelPosition & boxSizingReliable tests require only one layout + // so they're executed at the same time to save the second computation. + function computeStyleTests() { + + // This is a singleton, we need to execute it only once + if ( !div ) { + return; + } + + container.style.cssText = "position:absolute;left:-11111px;width:60px;" + + "margin-top:1px;padding:0;border:0"; + div.style.cssText = + "position:relative;display:block;box-sizing:border-box;overflow:scroll;" + + "margin:auto;border:1px;padding:1px;" + + "width:60%;top:1%"; + documentElement.appendChild( container ).appendChild( div ); + + var divStyle = window.getComputedStyle( div ); + pixelPositionVal = divStyle.top !== "1%"; + + // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44 + reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12; + + // Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3 + // Some styles come back with percentage values, even though they shouldn't + div.style.right = "60%"; + pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36; + + // Support: IE 9 - 11 only + // Detect misreporting of content dimensions for box-sizing:border-box elements + boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36; + + // Support: IE 9 only + // Detect overflow:scroll screwiness (gh-3699) + // Support: Chrome <=64 + // Don't get tricked when zoom affects offsetWidth (gh-4029) + div.style.position = "absolute"; + scrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12; + + documentElement.removeChild( container ); + + // Nullify the div so it wouldn't be stored in the memory and + // it will also be a sign that checks already performed + div = null; + } + + function roundPixelMeasures( measure ) { + return Math.round( parseFloat( measure ) ); + } + + var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal, + reliableTrDimensionsVal, reliableMarginLeftVal, + container = document.createElement( "div" ), + div = document.createElement( "div" ); + + // Finish early in limited (non-browser) environments + if ( !div.style ) { + return; + } + + // Support: IE <=9 - 11 only + // Style of cloned element affects source element cloned (#8908) + div.style.backgroundClip = "content-box"; + div.cloneNode( true ).style.backgroundClip = ""; + support.clearCloneStyle = div.style.backgroundClip === "content-box"; + + jQuery.extend( support, { + boxSizingReliable: function() { + computeStyleTests(); + return boxSizingReliableVal; + }, + pixelBoxStyles: function() { + computeStyleTests(); + return pixelBoxStylesVal; + }, + pixelPosition: function() { + computeStyleTests(); + return pixelPositionVal; + }, + reliableMarginLeft: function() { + computeStyleTests(); + return reliableMarginLeftVal; + }, + scrollboxSize: function() { + computeStyleTests(); + return scrollboxSizeVal; + }, + + // Support: IE 9 - 11+, Edge 15 - 18+ + // IE/Edge misreport `getComputedStyle` of table rows with width/height + // set in CSS while `offset*` properties report correct values. + // Behavior in IE 9 is more subtle than in newer versions & it passes + // some versions of this test; make sure not to make it pass there! + reliableTrDimensions: function() { + var table, tr, trChild, trStyle; + if ( reliableTrDimensionsVal == null ) { + table = document.createElement( "table" ); + tr = document.createElement( "tr" ); + trChild = document.createElement( "div" ); + + table.style.cssText = "position:absolute;left:-11111px"; + tr.style.height = "1px"; + trChild.style.height = "9px"; + + documentElement + .appendChild( table ) + .appendChild( tr ) + .appendChild( trChild ); + + trStyle = window.getComputedStyle( tr ); + reliableTrDimensionsVal = parseInt( trStyle.height ) > 3; + + documentElement.removeChild( table ); + } + return reliableTrDimensionsVal; + } + } ); +} )(); + + +function curCSS( elem, name, computed ) { + var width, minWidth, maxWidth, ret, + + // Support: Firefox 51+ + // Retrieving style before computed somehow + // fixes an issue with getting wrong values + // on detached elements + style = elem.style; + + computed = computed || getStyles( elem ); + + // getPropertyValue is needed for: + // .css('filter') (IE 9 only, #12537) + // .css('--customProperty) (#3144) + if ( computed ) { + ret = computed.getPropertyValue( name ) || computed[ name ]; + + if ( ret === "" && !isAttached( elem ) ) { + ret = jQuery.style( elem, name ); + } + + // A tribute to the "awesome hack by Dean Edwards" + // Android Browser returns percentage for some values, + // but width seems to be reliably pixels. + // This is against the CSSOM draft spec: + // https://drafts.csswg.org/cssom/#resolved-values + if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) { + + // Remember the original values + width = style.width; + minWidth = style.minWidth; + maxWidth = style.maxWidth; + + // Put in the new values to get a computed value out + style.minWidth = style.maxWidth = style.width = ret; + ret = computed.width; + + // Revert the changed values + style.width = width; + style.minWidth = minWidth; + style.maxWidth = maxWidth; + } + } + + return ret !== undefined ? + + // Support: IE <=9 - 11 only + // IE returns zIndex value as an integer. + ret + "" : + ret; +} + + +function addGetHookIf( conditionFn, hookFn ) { + + // Define the hook, we'll check on the first run if it's really needed. + return { + get: function() { + if ( conditionFn() ) { + + // Hook not needed (or it's not possible to use it due + // to missing dependency), remove it. + delete this.get; + return; + } + + // Hook needed; redefine it so that the support test is not executed again. + return ( this.get = hookFn ).apply( this, arguments ); + } + }; +} + + +var cssPrefixes = [ "Webkit", "Moz", "ms" ], + emptyStyle = document.createElement( "div" ).style, + vendorProps = {}; + +// Return a vendor-prefixed property or undefined +function vendorPropName( name ) { + + // Check for vendor prefixed names + var capName = name[ 0 ].toUpperCase() + name.slice( 1 ), + i = cssPrefixes.length; + + while ( i-- ) { + name = cssPrefixes[ i ] + capName; + if ( name in emptyStyle ) { + return name; + } + } +} + +// Return a potentially-mapped jQuery.cssProps or vendor prefixed property +function finalPropName( name ) { + var final = jQuery.cssProps[ name ] || vendorProps[ name ]; + + if ( final ) { + return final; + } + if ( name in emptyStyle ) { + return name; + } + return vendorProps[ name ] = vendorPropName( name ) || name; +} + + +var + + // Swappable if display is none or starts with table + // except "table", "table-cell", or "table-caption" + // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display + rdisplayswap = /^(none|table(?!-c[ea]).+)/, + rcustomProp = /^--/, + cssShow = { position: "absolute", visibility: "hidden", display: "block" }, + cssNormalTransform = { + letterSpacing: "0", + fontWeight: "400" + }; + +function setPositiveNumber( _elem, value, subtract ) { + + // Any relative (+/-) values have already been + // normalized at this point + var matches = rcssNum.exec( value ); + return matches ? + + // Guard against undefined "subtract", e.g., when used as in cssHooks + Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) : + value; +} + +function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) { + var i = dimension === "width" ? 1 : 0, + extra = 0, + delta = 0; + + // Adjustment may not be necessary + if ( box === ( isBorderBox ? "border" : "content" ) ) { + return 0; + } + + for ( ; i < 4; i += 2 ) { + + // Both box models exclude margin + if ( box === "margin" ) { + delta += jQuery.css( elem, box + cssExpand[ i ], true, styles ); + } + + // If we get here with a content-box, we're seeking "padding" or "border" or "margin" + if ( !isBorderBox ) { + + // Add padding + delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + + // For "border" or "margin", add border + if ( box !== "padding" ) { + delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + + // But still keep track of it otherwise + } else { + extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + + // If we get here with a border-box (content + padding + border), we're seeking "content" or + // "padding" or "margin" + } else { + + // For "content", subtract padding + if ( box === "content" ) { + delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + } + + // For "content" or "padding", subtract border + if ( box !== "margin" ) { + delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + } + } + + // Account for positive content-box scroll gutter when requested by providing computedVal + if ( !isBorderBox && computedVal >= 0 ) { + + // offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border + // Assuming integer scroll gutter, subtract the rest and round down + delta += Math.max( 0, Math.ceil( + elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - + computedVal - + delta - + extra - + 0.5 + + // If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter + // Use an explicit zero to avoid NaN (gh-3964) + ) ) || 0; + } + + return delta; +} + +function getWidthOrHeight( elem, dimension, extra ) { + + // Start with computed style + var styles = getStyles( elem ), + + // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322). + // Fake content-box until we know it's needed to know the true value. + boxSizingNeeded = !support.boxSizingReliable() || extra, + isBorderBox = boxSizingNeeded && + jQuery.css( elem, "boxSizing", false, styles ) === "border-box", + valueIsBorderBox = isBorderBox, + + val = curCSS( elem, dimension, styles ), + offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ); + + // Support: Firefox <=54 + // Return a confounding non-pixel value or feign ignorance, as appropriate. + if ( rnumnonpx.test( val ) ) { + if ( !extra ) { + return val; + } + val = "auto"; + } + + + // Support: IE 9 - 11 only + // Use offsetWidth/offsetHeight for when box sizing is unreliable. + // In those cases, the computed value can be trusted to be border-box. + if ( ( !support.boxSizingReliable() && isBorderBox || + + // Support: IE 10 - 11+, Edge 15 - 18+ + // IE/Edge misreport `getComputedStyle` of table rows with width/height + // set in CSS while `offset*` properties report correct values. + // Interestingly, in some cases IE 9 doesn't suffer from this issue. + !support.reliableTrDimensions() && nodeName( elem, "tr" ) || + + // Fall back to offsetWidth/offsetHeight when value is "auto" + // This happens for inline elements with no explicit setting (gh-3571) + val === "auto" || + + // Support: Android <=4.1 - 4.3 only + // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602) + !parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) && + + // Make sure the element is visible & connected + elem.getClientRects().length ) { + + isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; + + // Where available, offsetWidth/offsetHeight approximate border box dimensions. + // Where not available (e.g., SVG), assume unreliable box-sizing and interpret the + // retrieved value as a content box dimension. + valueIsBorderBox = offsetProp in elem; + if ( valueIsBorderBox ) { + val = elem[ offsetProp ]; + } + } + + // Normalize "" and auto + val = parseFloat( val ) || 0; + + // Adjust for the element's box model + return ( val + + boxModelAdjustment( + elem, + dimension, + extra || ( isBorderBox ? "border" : "content" ), + valueIsBorderBox, + styles, + + // Provide the current computed size to request scroll gutter calculation (gh-3589) + val + ) + ) + "px"; +} + +jQuery.extend( { + + // Add in style property hooks for overriding the default + // behavior of getting and setting a style property + cssHooks: { + opacity: { + get: function( elem, computed ) { + if ( computed ) { + + // We should always get a number back from opacity + var ret = curCSS( elem, "opacity" ); + return ret === "" ? "1" : ret; + } + } + } + }, + + // Don't automatically add "px" to these possibly-unitless properties + cssNumber: { + "animationIterationCount": true, + "columnCount": true, + "fillOpacity": true, + "flexGrow": true, + "flexShrink": true, + "fontWeight": true, + "gridArea": true, + "gridColumn": true, + "gridColumnEnd": true, + "gridColumnStart": true, + "gridRow": true, + "gridRowEnd": true, + "gridRowStart": true, + "lineHeight": true, + "opacity": true, + "order": true, + "orphans": true, + "widows": true, + "zIndex": true, + "zoom": true + }, + + // Add in properties whose names you wish to fix before + // setting or getting the value + cssProps: {}, + + // Get and set the style property on a DOM Node + style: function( elem, name, value, extra ) { + + // Don't set styles on text and comment nodes + if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { + return; + } + + // Make sure that we're working with the right name + var ret, type, hooks, + origName = camelCase( name ), + isCustomProp = rcustomProp.test( name ), + style = elem.style; + + // Make sure that we're working with the right name. We don't + // want to query the value if it is a CSS custom property + // since they are user-defined. + if ( !isCustomProp ) { + name = finalPropName( origName ); + } + + // Gets hook for the prefixed version, then unprefixed version + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // Check if we're setting a value + if ( value !== undefined ) { + type = typeof value; + + // Convert "+=" or "-=" to relative numbers (#7345) + if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { + value = adjustCSS( elem, name, ret ); + + // Fixes bug #9237 + type = "number"; + } + + // Make sure that null and NaN values aren't set (#7116) + if ( value == null || value !== value ) { + return; + } + + // If a number was passed in, add the unit (except for certain CSS properties) + // The isCustomProp check can be removed in jQuery 4.0 when we only auto-append + // "px" to a few hardcoded values. + if ( type === "number" && !isCustomProp ) { + value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); + } + + // background-* props affect original clone's values + if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { + style[ name ] = "inherit"; + } + + // If a hook was provided, use that value, otherwise just set the specified value + if ( !hooks || !( "set" in hooks ) || + ( value = hooks.set( elem, value, extra ) ) !== undefined ) { + + if ( isCustomProp ) { + style.setProperty( name, value ); + } else { + style[ name ] = value; + } + } + + } else { + + // If a hook was provided get the non-computed value from there + if ( hooks && "get" in hooks && + ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { + + return ret; + } + + // Otherwise just get the value from the style object + return style[ name ]; + } + }, + + css: function( elem, name, extra, styles ) { + var val, num, hooks, + origName = camelCase( name ), + isCustomProp = rcustomProp.test( name ); + + // Make sure that we're working with the right name. We don't + // want to modify the value if it is a CSS custom property + // since they are user-defined. + if ( !isCustomProp ) { + name = finalPropName( origName ); + } + + // Try prefixed name followed by the unprefixed name + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // If a hook was provided get the computed value from there + if ( hooks && "get" in hooks ) { + val = hooks.get( elem, true, extra ); + } + + // Otherwise, if a way to get the computed value exists, use that + if ( val === undefined ) { + val = curCSS( elem, name, styles ); + } + + // Convert "normal" to computed value + if ( val === "normal" && name in cssNormalTransform ) { + val = cssNormalTransform[ name ]; + } + + // Make numeric if forced or a qualifier was provided and val looks numeric + if ( extra === "" || extra ) { + num = parseFloat( val ); + return extra === true || isFinite( num ) ? num || 0 : val; + } + + return val; + } +} ); + +jQuery.each( [ "height", "width" ], function( _i, dimension ) { + jQuery.cssHooks[ dimension ] = { + get: function( elem, computed, extra ) { + if ( computed ) { + + // Certain elements can have dimension info if we invisibly show them + // but it must have a current display style that would benefit + return rdisplayswap.test( jQuery.css( elem, "display" ) ) && + + // Support: Safari 8+ + // Table columns in Safari have non-zero offsetWidth & zero + // getBoundingClientRect().width unless display is changed. + // Support: IE <=11 only + // Running getBoundingClientRect on a disconnected node + // in IE throws an error. + ( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ? + swap( elem, cssShow, function() { + return getWidthOrHeight( elem, dimension, extra ); + } ) : + getWidthOrHeight( elem, dimension, extra ); + } + }, + + set: function( elem, value, extra ) { + var matches, + styles = getStyles( elem ), + + // Only read styles.position if the test has a chance to fail + // to avoid forcing a reflow. + scrollboxSizeBuggy = !support.scrollboxSize() && + styles.position === "absolute", + + // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991) + boxSizingNeeded = scrollboxSizeBuggy || extra, + isBorderBox = boxSizingNeeded && + jQuery.css( elem, "boxSizing", false, styles ) === "border-box", + subtract = extra ? + boxModelAdjustment( + elem, + dimension, + extra, + isBorderBox, + styles + ) : + 0; + + // Account for unreliable border-box dimensions by comparing offset* to computed and + // faking a content-box to get border and padding (gh-3699) + if ( isBorderBox && scrollboxSizeBuggy ) { + subtract -= Math.ceil( + elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - + parseFloat( styles[ dimension ] ) - + boxModelAdjustment( elem, dimension, "border", false, styles ) - + 0.5 + ); + } + + // Convert to pixels if value adjustment is needed + if ( subtract && ( matches = rcssNum.exec( value ) ) && + ( matches[ 3 ] || "px" ) !== "px" ) { + + elem.style[ dimension ] = value; + value = jQuery.css( elem, dimension ); + } + + return setPositiveNumber( elem, value, subtract ); + } + }; +} ); + +jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft, + function( elem, computed ) { + if ( computed ) { + return ( parseFloat( curCSS( elem, "marginLeft" ) ) || + elem.getBoundingClientRect().left - + swap( elem, { marginLeft: 0 }, function() { + return elem.getBoundingClientRect().left; + } ) + ) + "px"; + } + } +); + +// These hooks are used by animate to expand properties +jQuery.each( { + margin: "", + padding: "", + border: "Width" +}, function( prefix, suffix ) { + jQuery.cssHooks[ prefix + suffix ] = { + expand: function( value ) { + var i = 0, + expanded = {}, + + // Assumes a single number if not a string + parts = typeof value === "string" ? value.split( " " ) : [ value ]; + + for ( ; i < 4; i++ ) { + expanded[ prefix + cssExpand[ i ] + suffix ] = + parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; + } + + return expanded; + } + }; + + if ( prefix !== "margin" ) { + jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; + } +} ); + +jQuery.fn.extend( { + css: function( name, value ) { + return access( this, function( elem, name, value ) { + var styles, len, + map = {}, + i = 0; + + if ( Array.isArray( name ) ) { + styles = getStyles( elem ); + len = name.length; + + for ( ; i < len; i++ ) { + map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); + } + + return map; + } + + return value !== undefined ? + jQuery.style( elem, name, value ) : + jQuery.css( elem, name ); + }, name, value, arguments.length > 1 ); + } +} ); + + +function Tween( elem, options, prop, end, easing ) { + return new Tween.prototype.init( elem, options, prop, end, easing ); +} +jQuery.Tween = Tween; + +Tween.prototype = { + constructor: Tween, + init: function( elem, options, prop, end, easing, unit ) { + this.elem = elem; + this.prop = prop; + this.easing = easing || jQuery.easing._default; + this.options = options; + this.start = this.now = this.cur(); + this.end = end; + this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); + }, + cur: function() { + var hooks = Tween.propHooks[ this.prop ]; + + return hooks && hooks.get ? + hooks.get( this ) : + Tween.propHooks._default.get( this ); + }, + run: function( percent ) { + var eased, + hooks = Tween.propHooks[ this.prop ]; + + if ( this.options.duration ) { + this.pos = eased = jQuery.easing[ this.easing ]( + percent, this.options.duration * percent, 0, 1, this.options.duration + ); + } else { + this.pos = eased = percent; + } + this.now = ( this.end - this.start ) * eased + this.start; + + if ( this.options.step ) { + this.options.step.call( this.elem, this.now, this ); + } + + if ( hooks && hooks.set ) { + hooks.set( this ); + } else { + Tween.propHooks._default.set( this ); + } + return this; + } +}; + +Tween.prototype.init.prototype = Tween.prototype; + +Tween.propHooks = { + _default: { + get: function( tween ) { + var result; + + // Use a property on the element directly when it is not a DOM element, + // or when there is no matching style property that exists. + if ( tween.elem.nodeType !== 1 || + tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) { + return tween.elem[ tween.prop ]; + } + + // Passing an empty string as a 3rd parameter to .css will automatically + // attempt a parseFloat and fallback to a string if the parse fails. + // Simple values such as "10px" are parsed to Float; + // complex values such as "rotate(1rad)" are returned as-is. + result = jQuery.css( tween.elem, tween.prop, "" ); + + // Empty strings, null, undefined and "auto" are converted to 0. + return !result || result === "auto" ? 0 : result; + }, + set: function( tween ) { + + // Use step hook for back compat. + // Use cssHook if its there. + // Use .style if available and use plain properties where available. + if ( jQuery.fx.step[ tween.prop ] ) { + jQuery.fx.step[ tween.prop ]( tween ); + } else if ( tween.elem.nodeType === 1 && ( + jQuery.cssHooks[ tween.prop ] || + tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) { + jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); + } else { + tween.elem[ tween.prop ] = tween.now; + } + } + } +}; + +// Support: IE <=9 only +// Panic based approach to setting things on disconnected nodes +Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { + set: function( tween ) { + if ( tween.elem.nodeType && tween.elem.parentNode ) { + tween.elem[ tween.prop ] = tween.now; + } + } +}; + +jQuery.easing = { + linear: function( p ) { + return p; + }, + swing: function( p ) { + return 0.5 - Math.cos( p * Math.PI ) / 2; + }, + _default: "swing" +}; + +jQuery.fx = Tween.prototype.init; + +// Back compat <1.8 extension point +jQuery.fx.step = {}; + + + + +var + fxNow, inProgress, + rfxtypes = /^(?:toggle|show|hide)$/, + rrun = /queueHooks$/; + +function schedule() { + if ( inProgress ) { + if ( document.hidden === false && window.requestAnimationFrame ) { + window.requestAnimationFrame( schedule ); + } else { + window.setTimeout( schedule, jQuery.fx.interval ); + } + + jQuery.fx.tick(); + } +} + +// Animations created synchronously will run synchronously +function createFxNow() { + window.setTimeout( function() { + fxNow = undefined; + } ); + return ( fxNow = Date.now() ); +} + +// Generate parameters to create a standard animation +function genFx( type, includeWidth ) { + var which, + i = 0, + attrs = { height: type }; + + // If we include width, step value is 1 to do all cssExpand values, + // otherwise step value is 2 to skip over Left and Right + includeWidth = includeWidth ? 1 : 0; + for ( ; i < 4; i += 2 - includeWidth ) { + which = cssExpand[ i ]; + attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; + } + + if ( includeWidth ) { + attrs.opacity = attrs.width = type; + } + + return attrs; +} + +function createTween( value, prop, animation ) { + var tween, + collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), + index = 0, + length = collection.length; + for ( ; index < length; index++ ) { + if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { + + // We're done with this property + return tween; + } + } +} + +function defaultPrefilter( elem, props, opts ) { + var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display, + isBox = "width" in props || "height" in props, + anim = this, + orig = {}, + style = elem.style, + hidden = elem.nodeType && isHiddenWithinTree( elem ), + dataShow = dataPriv.get( elem, "fxshow" ); + + // Queue-skipping animations hijack the fx hooks + if ( !opts.queue ) { + hooks = jQuery._queueHooks( elem, "fx" ); + if ( hooks.unqueued == null ) { + hooks.unqueued = 0; + oldfire = hooks.empty.fire; + hooks.empty.fire = function() { + if ( !hooks.unqueued ) { + oldfire(); + } + }; + } + hooks.unqueued++; + + anim.always( function() { + + // Ensure the complete handler is called before this completes + anim.always( function() { + hooks.unqueued--; + if ( !jQuery.queue( elem, "fx" ).length ) { + hooks.empty.fire(); + } + } ); + } ); + } + + // Detect show/hide animations + for ( prop in props ) { + value = props[ prop ]; + if ( rfxtypes.test( value ) ) { + delete props[ prop ]; + toggle = toggle || value === "toggle"; + if ( value === ( hidden ? "hide" : "show" ) ) { + + // Pretend to be hidden if this is a "show" and + // there is still data from a stopped show/hide + if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { + hidden = true; + + // Ignore all other no-op show/hide data + } else { + continue; + } + } + orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); + } + } + + // Bail out if this is a no-op like .hide().hide() + propTween = !jQuery.isEmptyObject( props ); + if ( !propTween && jQuery.isEmptyObject( orig ) ) { + return; + } + + // Restrict "overflow" and "display" styles during box animations + if ( isBox && elem.nodeType === 1 ) { + + // Support: IE <=9 - 11, Edge 12 - 15 + // Record all 3 overflow attributes because IE does not infer the shorthand + // from identically-valued overflowX and overflowY and Edge just mirrors + // the overflowX value there. + opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; + + // Identify a display type, preferring old show/hide data over the CSS cascade + restoreDisplay = dataShow && dataShow.display; + if ( restoreDisplay == null ) { + restoreDisplay = dataPriv.get( elem, "display" ); + } + display = jQuery.css( elem, "display" ); + if ( display === "none" ) { + if ( restoreDisplay ) { + display = restoreDisplay; + } else { + + // Get nonempty value(s) by temporarily forcing visibility + showHide( [ elem ], true ); + restoreDisplay = elem.style.display || restoreDisplay; + display = jQuery.css( elem, "display" ); + showHide( [ elem ] ); + } + } + + // Animate inline elements as inline-block + if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) { + if ( jQuery.css( elem, "float" ) === "none" ) { + + // Restore the original display value at the end of pure show/hide animations + if ( !propTween ) { + anim.done( function() { + style.display = restoreDisplay; + } ); + if ( restoreDisplay == null ) { + display = style.display; + restoreDisplay = display === "none" ? "" : display; + } + } + style.display = "inline-block"; + } + } + } + + if ( opts.overflow ) { + style.overflow = "hidden"; + anim.always( function() { + style.overflow = opts.overflow[ 0 ]; + style.overflowX = opts.overflow[ 1 ]; + style.overflowY = opts.overflow[ 2 ]; + } ); + } + + // Implement show/hide animations + propTween = false; + for ( prop in orig ) { + + // General show/hide setup for this element animation + if ( !propTween ) { + if ( dataShow ) { + if ( "hidden" in dataShow ) { + hidden = dataShow.hidden; + } + } else { + dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } ); + } + + // Store hidden/visible for toggle so `.stop().toggle()` "reverses" + if ( toggle ) { + dataShow.hidden = !hidden; + } + + // Show elements before animating them + if ( hidden ) { + showHide( [ elem ], true ); + } + + /* eslint-disable no-loop-func */ + + anim.done( function() { + + /* eslint-enable no-loop-func */ + + // The final step of a "hide" animation is actually hiding the element + if ( !hidden ) { + showHide( [ elem ] ); + } + dataPriv.remove( elem, "fxshow" ); + for ( prop in orig ) { + jQuery.style( elem, prop, orig[ prop ] ); + } + } ); + } + + // Per-property setup + propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); + if ( !( prop in dataShow ) ) { + dataShow[ prop ] = propTween.start; + if ( hidden ) { + propTween.end = propTween.start; + propTween.start = 0; + } + } + } +} + +function propFilter( props, specialEasing ) { + var index, name, easing, value, hooks; + + // camelCase, specialEasing and expand cssHook pass + for ( index in props ) { + name = camelCase( index ); + easing = specialEasing[ name ]; + value = props[ index ]; + if ( Array.isArray( value ) ) { + easing = value[ 1 ]; + value = props[ index ] = value[ 0 ]; + } + + if ( index !== name ) { + props[ name ] = value; + delete props[ index ]; + } + + hooks = jQuery.cssHooks[ name ]; + if ( hooks && "expand" in hooks ) { + value = hooks.expand( value ); + delete props[ name ]; + + // Not quite $.extend, this won't overwrite existing keys. + // Reusing 'index' because we have the correct "name" + for ( index in value ) { + if ( !( index in props ) ) { + props[ index ] = value[ index ]; + specialEasing[ index ] = easing; + } + } + } else { + specialEasing[ name ] = easing; + } + } +} + +function Animation( elem, properties, options ) { + var result, + stopped, + index = 0, + length = Animation.prefilters.length, + deferred = jQuery.Deferred().always( function() { + + // Don't match elem in the :animated selector + delete tick.elem; + } ), + tick = function() { + if ( stopped ) { + return false; + } + var currentTime = fxNow || createFxNow(), + remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), + + // Support: Android 2.3 only + // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497) + temp = remaining / animation.duration || 0, + percent = 1 - temp, + index = 0, + length = animation.tweens.length; + + for ( ; index < length; index++ ) { + animation.tweens[ index ].run( percent ); + } + + deferred.notifyWith( elem, [ animation, percent, remaining ] ); + + // If there's more to do, yield + if ( percent < 1 && length ) { + return remaining; + } + + // If this was an empty animation, synthesize a final progress notification + if ( !length ) { + deferred.notifyWith( elem, [ animation, 1, 0 ] ); + } + + // Resolve the animation and report its conclusion + deferred.resolveWith( elem, [ animation ] ); + return false; + }, + animation = deferred.promise( { + elem: elem, + props: jQuery.extend( {}, properties ), + opts: jQuery.extend( true, { + specialEasing: {}, + easing: jQuery.easing._default + }, options ), + originalProperties: properties, + originalOptions: options, + startTime: fxNow || createFxNow(), + duration: options.duration, + tweens: [], + createTween: function( prop, end ) { + var tween = jQuery.Tween( elem, animation.opts, prop, end, + animation.opts.specialEasing[ prop ] || animation.opts.easing ); + animation.tweens.push( tween ); + return tween; + }, + stop: function( gotoEnd ) { + var index = 0, + + // If we are going to the end, we want to run all the tweens + // otherwise we skip this part + length = gotoEnd ? animation.tweens.length : 0; + if ( stopped ) { + return this; + } + stopped = true; + for ( ; index < length; index++ ) { + animation.tweens[ index ].run( 1 ); + } + + // Resolve when we played the last frame; otherwise, reject + if ( gotoEnd ) { + deferred.notifyWith( elem, [ animation, 1, 0 ] ); + deferred.resolveWith( elem, [ animation, gotoEnd ] ); + } else { + deferred.rejectWith( elem, [ animation, gotoEnd ] ); + } + return this; + } + } ), + props = animation.props; + + propFilter( props, animation.opts.specialEasing ); + + for ( ; index < length; index++ ) { + result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts ); + if ( result ) { + if ( isFunction( result.stop ) ) { + jQuery._queueHooks( animation.elem, animation.opts.queue ).stop = + result.stop.bind( result ); + } + return result; + } + } + + jQuery.map( props, createTween, animation ); + + if ( isFunction( animation.opts.start ) ) { + animation.opts.start.call( elem, animation ); + } + + // Attach callbacks from options + animation + .progress( animation.opts.progress ) + .done( animation.opts.done, animation.opts.complete ) + .fail( animation.opts.fail ) + .always( animation.opts.always ); + + jQuery.fx.timer( + jQuery.extend( tick, { + elem: elem, + anim: animation, + queue: animation.opts.queue + } ) + ); + + return animation; +} + +jQuery.Animation = jQuery.extend( Animation, { + + tweeners: { + "*": [ function( prop, value ) { + var tween = this.createTween( prop, value ); + adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween ); + return tween; + } ] + }, + + tweener: function( props, callback ) { + if ( isFunction( props ) ) { + callback = props; + props = [ "*" ]; + } else { + props = props.match( rnothtmlwhite ); + } + + var prop, + index = 0, + length = props.length; + + for ( ; index < length; index++ ) { + prop = props[ index ]; + Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || []; + Animation.tweeners[ prop ].unshift( callback ); + } + }, + + prefilters: [ defaultPrefilter ], + + prefilter: function( callback, prepend ) { + if ( prepend ) { + Animation.prefilters.unshift( callback ); + } else { + Animation.prefilters.push( callback ); + } + } +} ); + +jQuery.speed = function( speed, easing, fn ) { + var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { + complete: fn || !fn && easing || + isFunction( speed ) && speed, + duration: speed, + easing: fn && easing || easing && !isFunction( easing ) && easing + }; + + // Go to the end state if fx are off + if ( jQuery.fx.off ) { + opt.duration = 0; + + } else { + if ( typeof opt.duration !== "number" ) { + if ( opt.duration in jQuery.fx.speeds ) { + opt.duration = jQuery.fx.speeds[ opt.duration ]; + + } else { + opt.duration = jQuery.fx.speeds._default; + } + } + } + + // Normalize opt.queue - true/undefined/null -> "fx" + if ( opt.queue == null || opt.queue === true ) { + opt.queue = "fx"; + } + + // Queueing + opt.old = opt.complete; + + opt.complete = function() { + if ( isFunction( opt.old ) ) { + opt.old.call( this ); + } + + if ( opt.queue ) { + jQuery.dequeue( this, opt.queue ); + } + }; + + return opt; +}; + +jQuery.fn.extend( { + fadeTo: function( speed, to, easing, callback ) { + + // Show any hidden elements after setting opacity to 0 + return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show() + + // Animate to the value specified + .end().animate( { opacity: to }, speed, easing, callback ); + }, + animate: function( prop, speed, easing, callback ) { + var empty = jQuery.isEmptyObject( prop ), + optall = jQuery.speed( speed, easing, callback ), + doAnimation = function() { + + // Operate on a copy of prop so per-property easing won't be lost + var anim = Animation( this, jQuery.extend( {}, prop ), optall ); + + // Empty animations, or finishing resolves immediately + if ( empty || dataPriv.get( this, "finish" ) ) { + anim.stop( true ); + } + }; + doAnimation.finish = doAnimation; + + return empty || optall.queue === false ? + this.each( doAnimation ) : + this.queue( optall.queue, doAnimation ); + }, + stop: function( type, clearQueue, gotoEnd ) { + var stopQueue = function( hooks ) { + var stop = hooks.stop; + delete hooks.stop; + stop( gotoEnd ); + }; + + if ( typeof type !== "string" ) { + gotoEnd = clearQueue; + clearQueue = type; + type = undefined; + } + if ( clearQueue ) { + this.queue( type || "fx", [] ); + } + + return this.each( function() { + var dequeue = true, + index = type != null && type + "queueHooks", + timers = jQuery.timers, + data = dataPriv.get( this ); + + if ( index ) { + if ( data[ index ] && data[ index ].stop ) { + stopQueue( data[ index ] ); + } + } else { + for ( index in data ) { + if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { + stopQueue( data[ index ] ); + } + } + } + + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && + ( type == null || timers[ index ].queue === type ) ) { + + timers[ index ].anim.stop( gotoEnd ); + dequeue = false; + timers.splice( index, 1 ); + } + } + + // Start the next in the queue if the last step wasn't forced. + // Timers currently will call their complete callbacks, which + // will dequeue but only if they were gotoEnd. + if ( dequeue || !gotoEnd ) { + jQuery.dequeue( this, type ); + } + } ); + }, + finish: function( type ) { + if ( type !== false ) { + type = type || "fx"; + } + return this.each( function() { + var index, + data = dataPriv.get( this ), + queue = data[ type + "queue" ], + hooks = data[ type + "queueHooks" ], + timers = jQuery.timers, + length = queue ? queue.length : 0; + + // Enable finishing flag on private data + data.finish = true; + + // Empty the queue first + jQuery.queue( this, type, [] ); + + if ( hooks && hooks.stop ) { + hooks.stop.call( this, true ); + } + + // Look for any active animations, and finish them + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && timers[ index ].queue === type ) { + timers[ index ].anim.stop( true ); + timers.splice( index, 1 ); + } + } + + // Look for any animations in the old queue and finish them + for ( index = 0; index < length; index++ ) { + if ( queue[ index ] && queue[ index ].finish ) { + queue[ index ].finish.call( this ); + } + } + + // Turn off finishing flag + delete data.finish; + } ); + } +} ); + +jQuery.each( [ "toggle", "show", "hide" ], function( _i, name ) { + var cssFn = jQuery.fn[ name ]; + jQuery.fn[ name ] = function( speed, easing, callback ) { + return speed == null || typeof speed === "boolean" ? + cssFn.apply( this, arguments ) : + this.animate( genFx( name, true ), speed, easing, callback ); + }; +} ); + +// Generate shortcuts for custom animations +jQuery.each( { + slideDown: genFx( "show" ), + slideUp: genFx( "hide" ), + slideToggle: genFx( "toggle" ), + fadeIn: { opacity: "show" }, + fadeOut: { opacity: "hide" }, + fadeToggle: { opacity: "toggle" } +}, function( name, props ) { + jQuery.fn[ name ] = function( speed, easing, callback ) { + return this.animate( props, speed, easing, callback ); + }; +} ); + +jQuery.timers = []; +jQuery.fx.tick = function() { + var timer, + i = 0, + timers = jQuery.timers; + + fxNow = Date.now(); + + for ( ; i < timers.length; i++ ) { + timer = timers[ i ]; + + // Run the timer and safely remove it when done (allowing for external removal) + if ( !timer() && timers[ i ] === timer ) { + timers.splice( i--, 1 ); + } + } + + if ( !timers.length ) { + jQuery.fx.stop(); + } + fxNow = undefined; +}; + +jQuery.fx.timer = function( timer ) { + jQuery.timers.push( timer ); + jQuery.fx.start(); +}; + +jQuery.fx.interval = 13; +jQuery.fx.start = function() { + if ( inProgress ) { + return; + } + + inProgress = true; + schedule(); +}; + +jQuery.fx.stop = function() { + inProgress = null; +}; + +jQuery.fx.speeds = { + slow: 600, + fast: 200, + + // Default speed + _default: 400 +}; + + +// Based off of the plugin by Clint Helfers, with permission. +// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ +jQuery.fn.delay = function( time, type ) { + time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; + type = type || "fx"; + + return this.queue( type, function( next, hooks ) { + var timeout = window.setTimeout( next, time ); + hooks.stop = function() { + window.clearTimeout( timeout ); + }; + } ); +}; + + +( function() { + var input = document.createElement( "input" ), + select = document.createElement( "select" ), + opt = select.appendChild( document.createElement( "option" ) ); + + input.type = "checkbox"; + + // Support: Android <=4.3 only + // Default value for a checkbox should be "on" + support.checkOn = input.value !== ""; + + // Support: IE <=11 only + // Must access selectedIndex to make default options select + support.optSelected = opt.selected; + + // Support: IE <=11 only + // An input loses its value after becoming a radio + input = document.createElement( "input" ); + input.value = "t"; + input.type = "radio"; + support.radioValue = input.value === "t"; +} )(); + + +var boolHook, + attrHandle = jQuery.expr.attrHandle; + +jQuery.fn.extend( { + attr: function( name, value ) { + return access( this, jQuery.attr, name, value, arguments.length > 1 ); + }, + + removeAttr: function( name ) { + return this.each( function() { + jQuery.removeAttr( this, name ); + } ); + } +} ); + +jQuery.extend( { + attr: function( elem, name, value ) { + var ret, hooks, + nType = elem.nodeType; + + // Don't get/set attributes on text, comment and attribute nodes + if ( nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + // Fallback to prop when attributes are not supported + if ( typeof elem.getAttribute === "undefined" ) { + return jQuery.prop( elem, name, value ); + } + + // Attribute hooks are determined by the lowercase version + // Grab necessary hook if one is defined + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + hooks = jQuery.attrHooks[ name.toLowerCase() ] || + ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined ); + } + + if ( value !== undefined ) { + if ( value === null ) { + jQuery.removeAttr( elem, name ); + return; + } + + if ( hooks && "set" in hooks && + ( ret = hooks.set( elem, value, name ) ) !== undefined ) { + return ret; + } + + elem.setAttribute( name, value + "" ); + return value; + } + + if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { + return ret; + } + + ret = jQuery.find.attr( elem, name ); + + // Non-existent attributes return null, we normalize to undefined + return ret == null ? undefined : ret; + }, + + attrHooks: { + type: { + set: function( elem, value ) { + if ( !support.radioValue && value === "radio" && + nodeName( elem, "input" ) ) { + var val = elem.value; + elem.setAttribute( "type", value ); + if ( val ) { + elem.value = val; + } + return value; + } + } + } + }, + + removeAttr: function( elem, value ) { + var name, + i = 0, + + // Attribute names can contain non-HTML whitespace characters + // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2 + attrNames = value && value.match( rnothtmlwhite ); + + if ( attrNames && elem.nodeType === 1 ) { + while ( ( name = attrNames[ i++ ] ) ) { + elem.removeAttribute( name ); + } + } + } +} ); + +// Hooks for boolean attributes +boolHook = { + set: function( elem, value, name ) { + if ( value === false ) { + + // Remove boolean attributes when set to false + jQuery.removeAttr( elem, name ); + } else { + elem.setAttribute( name, name ); + } + return name; + } +}; + +jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( _i, name ) { + var getter = attrHandle[ name ] || jQuery.find.attr; + + attrHandle[ name ] = function( elem, name, isXML ) { + var ret, handle, + lowercaseName = name.toLowerCase(); + + if ( !isXML ) { + + // Avoid an infinite loop by temporarily removing this function from the getter + handle = attrHandle[ lowercaseName ]; + attrHandle[ lowercaseName ] = ret; + ret = getter( elem, name, isXML ) != null ? + lowercaseName : + null; + attrHandle[ lowercaseName ] = handle; + } + return ret; + }; +} ); + + + + +var rfocusable = /^(?:input|select|textarea|button)$/i, + rclickable = /^(?:a|area)$/i; + +jQuery.fn.extend( { + prop: function( name, value ) { + return access( this, jQuery.prop, name, value, arguments.length > 1 ); + }, + + removeProp: function( name ) { + return this.each( function() { + delete this[ jQuery.propFix[ name ] || name ]; + } ); + } +} ); + +jQuery.extend( { + prop: function( elem, name, value ) { + var ret, hooks, + nType = elem.nodeType; + + // Don't get/set properties on text, comment and attribute nodes + if ( nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + + // Fix name and attach hooks + name = jQuery.propFix[ name ] || name; + hooks = jQuery.propHooks[ name ]; + } + + if ( value !== undefined ) { + if ( hooks && "set" in hooks && + ( ret = hooks.set( elem, value, name ) ) !== undefined ) { + return ret; + } + + return ( elem[ name ] = value ); + } + + if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { + return ret; + } + + return elem[ name ]; + }, + + propHooks: { + tabIndex: { + get: function( elem ) { + + // Support: IE <=9 - 11 only + // elem.tabIndex doesn't always return the + // correct value when it hasn't been explicitly set + // https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ + // Use proper attribute retrieval(#12072) + var tabindex = jQuery.find.attr( elem, "tabindex" ); + + if ( tabindex ) { + return parseInt( tabindex, 10 ); + } + + if ( + rfocusable.test( elem.nodeName ) || + rclickable.test( elem.nodeName ) && + elem.href + ) { + return 0; + } + + return -1; + } + } + }, + + propFix: { + "for": "htmlFor", + "class": "className" + } +} ); + +// Support: IE <=11 only +// Accessing the selectedIndex property +// forces the browser to respect setting selected +// on the option +// The getter ensures a default option is selected +// when in an optgroup +// eslint rule "no-unused-expressions" is disabled for this code +// since it considers such accessions noop +if ( !support.optSelected ) { + jQuery.propHooks.selected = { + get: function( elem ) { + + /* eslint no-unused-expressions: "off" */ + + var parent = elem.parentNode; + if ( parent && parent.parentNode ) { + parent.parentNode.selectedIndex; + } + return null; + }, + set: function( elem ) { + + /* eslint no-unused-expressions: "off" */ + + var parent = elem.parentNode; + if ( parent ) { + parent.selectedIndex; + + if ( parent.parentNode ) { + parent.parentNode.selectedIndex; + } + } + } + }; +} + +jQuery.each( [ + "tabIndex", + "readOnly", + "maxLength", + "cellSpacing", + "cellPadding", + "rowSpan", + "colSpan", + "useMap", + "frameBorder", + "contentEditable" +], function() { + jQuery.propFix[ this.toLowerCase() ] = this; +} ); + + + + + // Strip and collapse whitespace according to HTML spec + // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace + function stripAndCollapse( value ) { + var tokens = value.match( rnothtmlwhite ) || []; + return tokens.join( " " ); + } + + +function getClass( elem ) { + return elem.getAttribute && elem.getAttribute( "class" ) || ""; +} + +function classesToArray( value ) { + if ( Array.isArray( value ) ) { + return value; + } + if ( typeof value === "string" ) { + return value.match( rnothtmlwhite ) || []; + } + return []; +} + +jQuery.fn.extend( { + addClass: function( value ) { + var classes, elem, cur, curValue, clazz, j, finalValue, + i = 0; + + if ( isFunction( value ) ) { + return this.each( function( j ) { + jQuery( this ).addClass( value.call( this, j, getClass( this ) ) ); + } ); + } + + classes = classesToArray( value ); + + if ( classes.length ) { + while ( ( elem = this[ i++ ] ) ) { + curValue = getClass( elem ); + cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); + + if ( cur ) { + j = 0; + while ( ( clazz = classes[ j++ ] ) ) { + if ( cur.indexOf( " " + clazz + " " ) < 0 ) { + cur += clazz + " "; + } + } + + // Only assign if different to avoid unneeded rendering. + finalValue = stripAndCollapse( cur ); + if ( curValue !== finalValue ) { + elem.setAttribute( "class", finalValue ); + } + } + } + } + + return this; + }, + + removeClass: function( value ) { + var classes, elem, cur, curValue, clazz, j, finalValue, + i = 0; + + if ( isFunction( value ) ) { + return this.each( function( j ) { + jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) ); + } ); + } + + if ( !arguments.length ) { + return this.attr( "class", "" ); + } + + classes = classesToArray( value ); + + if ( classes.length ) { + while ( ( elem = this[ i++ ] ) ) { + curValue = getClass( elem ); + + // This expression is here for better compressibility (see addClass) + cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); + + if ( cur ) { + j = 0; + while ( ( clazz = classes[ j++ ] ) ) { + + // Remove *all* instances + while ( cur.indexOf( " " + clazz + " " ) > -1 ) { + cur = cur.replace( " " + clazz + " ", " " ); + } + } + + // Only assign if different to avoid unneeded rendering. + finalValue = stripAndCollapse( cur ); + if ( curValue !== finalValue ) { + elem.setAttribute( "class", finalValue ); + } + } + } + } + + return this; + }, + + toggleClass: function( value, stateVal ) { + var type = typeof value, + isValidValue = type === "string" || Array.isArray( value ); + + if ( typeof stateVal === "boolean" && isValidValue ) { + return stateVal ? this.addClass( value ) : this.removeClass( value ); + } + + if ( isFunction( value ) ) { + return this.each( function( i ) { + jQuery( this ).toggleClass( + value.call( this, i, getClass( this ), stateVal ), + stateVal + ); + } ); + } + + return this.each( function() { + var className, i, self, classNames; + + if ( isValidValue ) { + + // Toggle individual class names + i = 0; + self = jQuery( this ); + classNames = classesToArray( value ); + + while ( ( className = classNames[ i++ ] ) ) { + + // Check each className given, space separated list + if ( self.hasClass( className ) ) { + self.removeClass( className ); + } else { + self.addClass( className ); + } + } + + // Toggle whole class name + } else if ( value === undefined || type === "boolean" ) { + className = getClass( this ); + if ( className ) { + + // Store className if set + dataPriv.set( this, "__className__", className ); + } + + // If the element has a class name or if we're passed `false`, + // then remove the whole classname (if there was one, the above saved it). + // Otherwise bring back whatever was previously saved (if anything), + // falling back to the empty string if nothing was stored. + if ( this.setAttribute ) { + this.setAttribute( "class", + className || value === false ? + "" : + dataPriv.get( this, "__className__" ) || "" + ); + } + } + } ); + }, + + hasClass: function( selector ) { + var className, elem, + i = 0; + + className = " " + selector + " "; + while ( ( elem = this[ i++ ] ) ) { + if ( elem.nodeType === 1 && + ( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) { + return true; + } + } + + return false; + } +} ); + + + + +var rreturn = /\r/g; + +jQuery.fn.extend( { + val: function( value ) { + var hooks, ret, valueIsFunction, + elem = this[ 0 ]; + + if ( !arguments.length ) { + if ( elem ) { + hooks = jQuery.valHooks[ elem.type ] || + jQuery.valHooks[ elem.nodeName.toLowerCase() ]; + + if ( hooks && + "get" in hooks && + ( ret = hooks.get( elem, "value" ) ) !== undefined + ) { + return ret; + } + + ret = elem.value; + + // Handle most common string cases + if ( typeof ret === "string" ) { + return ret.replace( rreturn, "" ); + } + + // Handle cases where value is null/undef or number + return ret == null ? "" : ret; + } + + return; + } + + valueIsFunction = isFunction( value ); + + return this.each( function( i ) { + var val; + + if ( this.nodeType !== 1 ) { + return; + } + + if ( valueIsFunction ) { + val = value.call( this, i, jQuery( this ).val() ); + } else { + val = value; + } + + // Treat null/undefined as ""; convert numbers to string + if ( val == null ) { + val = ""; + + } else if ( typeof val === "number" ) { + val += ""; + + } else if ( Array.isArray( val ) ) { + val = jQuery.map( val, function( value ) { + return value == null ? "" : value + ""; + } ); + } + + hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; + + // If set returns undefined, fall back to normal setting + if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) { + this.value = val; + } + } ); + } +} ); + +jQuery.extend( { + valHooks: { + option: { + get: function( elem ) { + + var val = jQuery.find.attr( elem, "value" ); + return val != null ? + val : + + // Support: IE <=10 - 11 only + // option.text throws exceptions (#14686, #14858) + // Strip and collapse whitespace + // https://html.spec.whatwg.org/#strip-and-collapse-whitespace + stripAndCollapse( jQuery.text( elem ) ); + } + }, + select: { + get: function( elem ) { + var value, option, i, + options = elem.options, + index = elem.selectedIndex, + one = elem.type === "select-one", + values = one ? null : [], + max = one ? index + 1 : options.length; + + if ( index < 0 ) { + i = max; + + } else { + i = one ? index : 0; + } + + // Loop through all the selected options + for ( ; i < max; i++ ) { + option = options[ i ]; + + // Support: IE <=9 only + // IE8-9 doesn't update selected after form reset (#2551) + if ( ( option.selected || i === index ) && + + // Don't return options that are disabled or in a disabled optgroup + !option.disabled && + ( !option.parentNode.disabled || + !nodeName( option.parentNode, "optgroup" ) ) ) { + + // Get the specific value for the option + value = jQuery( option ).val(); + + // We don't need an array for one selects + if ( one ) { + return value; + } + + // Multi-Selects return an array + values.push( value ); + } + } + + return values; + }, + + set: function( elem, value ) { + var optionSet, option, + options = elem.options, + values = jQuery.makeArray( value ), + i = options.length; + + while ( i-- ) { + option = options[ i ]; + + /* eslint-disable no-cond-assign */ + + if ( option.selected = + jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1 + ) { + optionSet = true; + } + + /* eslint-enable no-cond-assign */ + } + + // Force browsers to behave consistently when non-matching value is set + if ( !optionSet ) { + elem.selectedIndex = -1; + } + return values; + } + } + } +} ); + +// Radios and checkboxes getter/setter +jQuery.each( [ "radio", "checkbox" ], function() { + jQuery.valHooks[ this ] = { + set: function( elem, value ) { + if ( Array.isArray( value ) ) { + return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 ); + } + } + }; + if ( !support.checkOn ) { + jQuery.valHooks[ this ].get = function( elem ) { + return elem.getAttribute( "value" ) === null ? "on" : elem.value; + }; + } +} ); + + + + +// Return jQuery for attributes-only inclusion + + +support.focusin = "onfocusin" in window; + + +var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, + stopPropagationCallback = function( e ) { + e.stopPropagation(); + }; + +jQuery.extend( jQuery.event, { + + trigger: function( event, data, elem, onlyHandlers ) { + + var i, cur, tmp, bubbleType, ontype, handle, special, lastElement, + eventPath = [ elem || document ], + type = hasOwn.call( event, "type" ) ? event.type : event, + namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : []; + + cur = lastElement = tmp = elem = elem || document; + + // Don't do events on text and comment nodes + if ( elem.nodeType === 3 || elem.nodeType === 8 ) { + return; + } + + // focus/blur morphs to focusin/out; ensure we're not firing them right now + if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { + return; + } + + if ( type.indexOf( "." ) > -1 ) { + + // Namespaced trigger; create a regexp to match event type in handle() + namespaces = type.split( "." ); + type = namespaces.shift(); + namespaces.sort(); + } + ontype = type.indexOf( ":" ) < 0 && "on" + type; + + // Caller can pass in a jQuery.Event object, Object, or just an event type string + event = event[ jQuery.expando ] ? + event : + new jQuery.Event( type, typeof event === "object" && event ); + + // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) + event.isTrigger = onlyHandlers ? 2 : 3; + event.namespace = namespaces.join( "." ); + event.rnamespace = event.namespace ? + new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) : + null; + + // Clean up the event in case it is being reused + event.result = undefined; + if ( !event.target ) { + event.target = elem; + } + + // Clone any incoming data and prepend the event, creating the handler arg list + data = data == null ? + [ event ] : + jQuery.makeArray( data, [ event ] ); + + // Allow special events to draw outside the lines + special = jQuery.event.special[ type ] || {}; + if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { + return; + } + + // Determine event propagation path in advance, per W3C events spec (#9951) + // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) + if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) { + + bubbleType = special.delegateType || type; + if ( !rfocusMorph.test( bubbleType + type ) ) { + cur = cur.parentNode; + } + for ( ; cur; cur = cur.parentNode ) { + eventPath.push( cur ); + tmp = cur; + } + + // Only add window if we got to document (e.g., not plain obj or detached DOM) + if ( tmp === ( elem.ownerDocument || document ) ) { + eventPath.push( tmp.defaultView || tmp.parentWindow || window ); + } + } + + // Fire handlers on the event path + i = 0; + while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) { + lastElement = cur; + event.type = i > 1 ? + bubbleType : + special.bindType || type; + + // jQuery handler + handle = ( + dataPriv.get( cur, "events" ) || Object.create( null ) + )[ event.type ] && + dataPriv.get( cur, "handle" ); + if ( handle ) { + handle.apply( cur, data ); + } + + // Native handler + handle = ontype && cur[ ontype ]; + if ( handle && handle.apply && acceptData( cur ) ) { + event.result = handle.apply( cur, data ); + if ( event.result === false ) { + event.preventDefault(); + } + } + } + event.type = type; + + // If nobody prevented the default action, do it now + if ( !onlyHandlers && !event.isDefaultPrevented() ) { + + if ( ( !special._default || + special._default.apply( eventPath.pop(), data ) === false ) && + acceptData( elem ) ) { + + // Call a native DOM method on the target with the same name as the event. + // Don't do default actions on window, that's where global variables be (#6170) + if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) { + + // Don't re-trigger an onFOO event when we call its FOO() method + tmp = elem[ ontype ]; + + if ( tmp ) { + elem[ ontype ] = null; + } + + // Prevent re-triggering of the same event, since we already bubbled it above + jQuery.event.triggered = type; + + if ( event.isPropagationStopped() ) { + lastElement.addEventListener( type, stopPropagationCallback ); + } + + elem[ type ](); + + if ( event.isPropagationStopped() ) { + lastElement.removeEventListener( type, stopPropagationCallback ); + } + + jQuery.event.triggered = undefined; + + if ( tmp ) { + elem[ ontype ] = tmp; + } + } + } + } + + return event.result; + }, + + // Piggyback on a donor event to simulate a different one + // Used only for `focus(in | out)` events + simulate: function( type, elem, event ) { + var e = jQuery.extend( + new jQuery.Event(), + event, + { + type: type, + isSimulated: true + } + ); + + jQuery.event.trigger( e, null, elem ); + } + +} ); + +jQuery.fn.extend( { + + trigger: function( type, data ) { + return this.each( function() { + jQuery.event.trigger( type, data, this ); + } ); + }, + triggerHandler: function( type, data ) { + var elem = this[ 0 ]; + if ( elem ) { + return jQuery.event.trigger( type, data, elem, true ); + } + } +} ); + + +// Support: Firefox <=44 +// Firefox doesn't have focus(in | out) events +// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787 +// +// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1 +// focus(in | out) events fire after focus & blur events, +// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order +// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857 +if ( !support.focusin ) { + jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) { + + // Attach a single capturing handler on the document while someone wants focusin/focusout + var handler = function( event ) { + jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) ); + }; + + jQuery.event.special[ fix ] = { + setup: function() { + + // Handle: regular nodes (via `this.ownerDocument`), window + // (via `this.document`) & document (via `this`). + var doc = this.ownerDocument || this.document || this, + attaches = dataPriv.access( doc, fix ); + + if ( !attaches ) { + doc.addEventListener( orig, handler, true ); + } + dataPriv.access( doc, fix, ( attaches || 0 ) + 1 ); + }, + teardown: function() { + var doc = this.ownerDocument || this.document || this, + attaches = dataPriv.access( doc, fix ) - 1; + + if ( !attaches ) { + doc.removeEventListener( orig, handler, true ); + dataPriv.remove( doc, fix ); + + } else { + dataPriv.access( doc, fix, attaches ); + } + } + }; + } ); +} +var location = window.location; + +var nonce = { guid: Date.now() }; + +var rquery = ( /\?/ ); + + + +// Cross-browser xml parsing +jQuery.parseXML = function( data ) { + var xml; + if ( !data || typeof data !== "string" ) { + return null; + } + + // Support: IE 9 - 11 only + // IE throws on parseFromString with invalid input. + try { + xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" ); + } catch ( e ) { + xml = undefined; + } + + if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) { + jQuery.error( "Invalid XML: " + data ); + } + return xml; +}; + + +var + rbracket = /\[\]$/, + rCRLF = /\r?\n/g, + rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, + rsubmittable = /^(?:input|select|textarea|keygen)/i; + +function buildParams( prefix, obj, traditional, add ) { + var name; + + if ( Array.isArray( obj ) ) { + + // Serialize array item. + jQuery.each( obj, function( i, v ) { + if ( traditional || rbracket.test( prefix ) ) { + + // Treat each array item as a scalar. + add( prefix, v ); + + } else { + + // Item is non-scalar (array or object), encode its numeric index. + buildParams( + prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", + v, + traditional, + add + ); + } + } ); + + } else if ( !traditional && toType( obj ) === "object" ) { + + // Serialize object item. + for ( name in obj ) { + buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); + } + + } else { + + // Serialize scalar item. + add( prefix, obj ); + } +} + +// Serialize an array of form elements or a set of +// key/values into a query string +jQuery.param = function( a, traditional ) { + var prefix, + s = [], + add = function( key, valueOrFunction ) { + + // If value is a function, invoke it and use its return value + var value = isFunction( valueOrFunction ) ? + valueOrFunction() : + valueOrFunction; + + s[ s.length ] = encodeURIComponent( key ) + "=" + + encodeURIComponent( value == null ? "" : value ); + }; + + if ( a == null ) { + return ""; + } + + // If an array was passed in, assume that it is an array of form elements. + if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { + + // Serialize the form elements + jQuery.each( a, function() { + add( this.name, this.value ); + } ); + + } else { + + // If traditional, encode the "old" way (the way 1.3.2 or older + // did it), otherwise encode params recursively. + for ( prefix in a ) { + buildParams( prefix, a[ prefix ], traditional, add ); + } + } + + // Return the resulting serialization + return s.join( "&" ); +}; + +jQuery.fn.extend( { + serialize: function() { + return jQuery.param( this.serializeArray() ); + }, + serializeArray: function() { + return this.map( function() { + + // Can add propHook for "elements" to filter or add form elements + var elements = jQuery.prop( this, "elements" ); + return elements ? jQuery.makeArray( elements ) : this; + } ) + .filter( function() { + var type = this.type; + + // Use .is( ":disabled" ) so that fieldset[disabled] works + return this.name && !jQuery( this ).is( ":disabled" ) && + rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && + ( this.checked || !rcheckableType.test( type ) ); + } ) + .map( function( _i, elem ) { + var val = jQuery( this ).val(); + + if ( val == null ) { + return null; + } + + if ( Array.isArray( val ) ) { + return jQuery.map( val, function( val ) { + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + } ); + } + + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + } ).get(); + } +} ); + + +var + r20 = /%20/g, + rhash = /#.*$/, + rantiCache = /([?&])_=[^&]*/, + rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, + + // #7653, #8125, #8152: local protocol detection + rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, + rnoContent = /^(?:GET|HEAD)$/, + rprotocol = /^\/\//, + + /* Prefilters + * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) + * 2) These are called: + * - BEFORE asking for a transport + * - AFTER param serialization (s.data is a string if s.processData is true) + * 3) key is the dataType + * 4) the catchall symbol "*" can be used + * 5) execution will start with transport dataType and THEN continue down to "*" if needed + */ + prefilters = {}, + + /* Transports bindings + * 1) key is the dataType + * 2) the catchall symbol "*" can be used + * 3) selection will start with transport dataType and THEN go to "*" if needed + */ + transports = {}, + + // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression + allTypes = "*/".concat( "*" ), + + // Anchor tag for parsing the document origin + originAnchor = document.createElement( "a" ); + originAnchor.href = location.href; + +// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport +function addToPrefiltersOrTransports( structure ) { + + // dataTypeExpression is optional and defaults to "*" + return function( dataTypeExpression, func ) { + + if ( typeof dataTypeExpression !== "string" ) { + func = dataTypeExpression; + dataTypeExpression = "*"; + } + + var dataType, + i = 0, + dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || []; + + if ( isFunction( func ) ) { + + // For each dataType in the dataTypeExpression + while ( ( dataType = dataTypes[ i++ ] ) ) { + + // Prepend if requested + if ( dataType[ 0 ] === "+" ) { + dataType = dataType.slice( 1 ) || "*"; + ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func ); + + // Otherwise append + } else { + ( structure[ dataType ] = structure[ dataType ] || [] ).push( func ); + } + } + } + }; +} + +// Base inspection function for prefilters and transports +function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { + + var inspected = {}, + seekingTransport = ( structure === transports ); + + function inspect( dataType ) { + var selected; + inspected[ dataType ] = true; + jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { + var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); + if ( typeof dataTypeOrTransport === "string" && + !seekingTransport && !inspected[ dataTypeOrTransport ] ) { + + options.dataTypes.unshift( dataTypeOrTransport ); + inspect( dataTypeOrTransport ); + return false; + } else if ( seekingTransport ) { + return !( selected = dataTypeOrTransport ); + } + } ); + return selected; + } + + return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); +} + +// A special extend for ajax options +// that takes "flat" options (not to be deep extended) +// Fixes #9887 +function ajaxExtend( target, src ) { + var key, deep, + flatOptions = jQuery.ajaxSettings.flatOptions || {}; + + for ( key in src ) { + if ( src[ key ] !== undefined ) { + ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; + } + } + if ( deep ) { + jQuery.extend( true, target, deep ); + } + + return target; +} + +/* Handles responses to an ajax request: + * - finds the right dataType (mediates between content-type and expected dataType) + * - returns the corresponding response + */ +function ajaxHandleResponses( s, jqXHR, responses ) { + + var ct, type, finalDataType, firstDataType, + contents = s.contents, + dataTypes = s.dataTypes; + + // Remove auto dataType and get content-type in the process + while ( dataTypes[ 0 ] === "*" ) { + dataTypes.shift(); + if ( ct === undefined ) { + ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" ); + } + } + + // Check if we're dealing with a known content-type + if ( ct ) { + for ( type in contents ) { + if ( contents[ type ] && contents[ type ].test( ct ) ) { + dataTypes.unshift( type ); + break; + } + } + } + + // Check to see if we have a response for the expected dataType + if ( dataTypes[ 0 ] in responses ) { + finalDataType = dataTypes[ 0 ]; + } else { + + // Try convertible dataTypes + for ( type in responses ) { + if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) { + finalDataType = type; + break; + } + if ( !firstDataType ) { + firstDataType = type; + } + } + + // Or just use first one + finalDataType = finalDataType || firstDataType; + } + + // If we found a dataType + // We add the dataType to the list if needed + // and return the corresponding response + if ( finalDataType ) { + if ( finalDataType !== dataTypes[ 0 ] ) { + dataTypes.unshift( finalDataType ); + } + return responses[ finalDataType ]; + } +} + +/* Chain conversions given the request and the original response + * Also sets the responseXXX fields on the jqXHR instance + */ +function ajaxConvert( s, response, jqXHR, isSuccess ) { + var conv2, current, conv, tmp, prev, + converters = {}, + + // Work with a copy of dataTypes in case we need to modify it for conversion + dataTypes = s.dataTypes.slice(); + + // Create converters map with lowercased keys + if ( dataTypes[ 1 ] ) { + for ( conv in s.converters ) { + converters[ conv.toLowerCase() ] = s.converters[ conv ]; + } + } + + current = dataTypes.shift(); + + // Convert to each sequential dataType + while ( current ) { + + if ( s.responseFields[ current ] ) { + jqXHR[ s.responseFields[ current ] ] = response; + } + + // Apply the dataFilter if provided + if ( !prev && isSuccess && s.dataFilter ) { + response = s.dataFilter( response, s.dataType ); + } + + prev = current; + current = dataTypes.shift(); + + if ( current ) { + + // There's only work to do if current dataType is non-auto + if ( current === "*" ) { + + current = prev; + + // Convert response if prev dataType is non-auto and differs from current + } else if ( prev !== "*" && prev !== current ) { + + // Seek a direct converter + conv = converters[ prev + " " + current ] || converters[ "* " + current ]; + + // If none found, seek a pair + if ( !conv ) { + for ( conv2 in converters ) { + + // If conv2 outputs current + tmp = conv2.split( " " ); + if ( tmp[ 1 ] === current ) { + + // If prev can be converted to accepted input + conv = converters[ prev + " " + tmp[ 0 ] ] || + converters[ "* " + tmp[ 0 ] ]; + if ( conv ) { + + // Condense equivalence converters + if ( conv === true ) { + conv = converters[ conv2 ]; + + // Otherwise, insert the intermediate dataType + } else if ( converters[ conv2 ] !== true ) { + current = tmp[ 0 ]; + dataTypes.unshift( tmp[ 1 ] ); + } + break; + } + } + } + } + + // Apply converter (if not an equivalence) + if ( conv !== true ) { + + // Unless errors are allowed to bubble, catch and return them + if ( conv && s.throws ) { + response = conv( response ); + } else { + try { + response = conv( response ); + } catch ( e ) { + return { + state: "parsererror", + error: conv ? e : "No conversion from " + prev + " to " + current + }; + } + } + } + } + } + } + + return { state: "success", data: response }; +} + +jQuery.extend( { + + // Counter for holding the number of active queries + active: 0, + + // Last-Modified header cache for next request + lastModified: {}, + etag: {}, + + ajaxSettings: { + url: location.href, + type: "GET", + isLocal: rlocalProtocol.test( location.protocol ), + global: true, + processData: true, + async: true, + contentType: "application/x-www-form-urlencoded; charset=UTF-8", + + /* + timeout: 0, + data: null, + dataType: null, + username: null, + password: null, + cache: null, + throws: false, + traditional: false, + headers: {}, + */ + + accepts: { + "*": allTypes, + text: "text/plain", + html: "text/html", + xml: "application/xml, text/xml", + json: "application/json, text/javascript" + }, + + contents: { + xml: /\bxml\b/, + html: /\bhtml/, + json: /\bjson\b/ + }, + + responseFields: { + xml: "responseXML", + text: "responseText", + json: "responseJSON" + }, + + // Data converters + // Keys separate source (or catchall "*") and destination types with a single space + converters: { + + // Convert anything to text + "* text": String, + + // Text to html (true = no transformation) + "text html": true, + + // Evaluate text as a json expression + "text json": JSON.parse, + + // Parse text as xml + "text xml": jQuery.parseXML + }, + + // For options that shouldn't be deep extended: + // you can add your own custom options here if + // and when you create one that shouldn't be + // deep extended (see ajaxExtend) + flatOptions: { + url: true, + context: true + } + }, + + // Creates a full fledged settings object into target + // with both ajaxSettings and settings fields. + // If target is omitted, writes into ajaxSettings. + ajaxSetup: function( target, settings ) { + return settings ? + + // Building a settings object + ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : + + // Extending ajaxSettings + ajaxExtend( jQuery.ajaxSettings, target ); + }, + + ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), + ajaxTransport: addToPrefiltersOrTransports( transports ), + + // Main method + ajax: function( url, options ) { + + // If url is an object, simulate pre-1.5 signature + if ( typeof url === "object" ) { + options = url; + url = undefined; + } + + // Force options to be an object + options = options || {}; + + var transport, + + // URL without anti-cache param + cacheURL, + + // Response headers + responseHeadersString, + responseHeaders, + + // timeout handle + timeoutTimer, + + // Url cleanup var + urlAnchor, + + // Request state (becomes false upon send and true upon completion) + completed, + + // To know if global events are to be dispatched + fireGlobals, + + // Loop variable + i, + + // uncached part of the url + uncached, + + // Create the final options object + s = jQuery.ajaxSetup( {}, options ), + + // Callbacks context + callbackContext = s.context || s, + + // Context for global events is callbackContext if it is a DOM node or jQuery collection + globalEventContext = s.context && + ( callbackContext.nodeType || callbackContext.jquery ) ? + jQuery( callbackContext ) : + jQuery.event, + + // Deferreds + deferred = jQuery.Deferred(), + completeDeferred = jQuery.Callbacks( "once memory" ), + + // Status-dependent callbacks + statusCode = s.statusCode || {}, + + // Headers (they are sent all at once) + requestHeaders = {}, + requestHeadersNames = {}, + + // Default abort message + strAbort = "canceled", + + // Fake xhr + jqXHR = { + readyState: 0, + + // Builds headers hashtable if needed + getResponseHeader: function( key ) { + var match; + if ( completed ) { + if ( !responseHeaders ) { + responseHeaders = {}; + while ( ( match = rheaders.exec( responseHeadersString ) ) ) { + responseHeaders[ match[ 1 ].toLowerCase() + " " ] = + ( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] ) + .concat( match[ 2 ] ); + } + } + match = responseHeaders[ key.toLowerCase() + " " ]; + } + return match == null ? null : match.join( ", " ); + }, + + // Raw string + getAllResponseHeaders: function() { + return completed ? responseHeadersString : null; + }, + + // Caches the header + setRequestHeader: function( name, value ) { + if ( completed == null ) { + name = requestHeadersNames[ name.toLowerCase() ] = + requestHeadersNames[ name.toLowerCase() ] || name; + requestHeaders[ name ] = value; + } + return this; + }, + + // Overrides response content-type header + overrideMimeType: function( type ) { + if ( completed == null ) { + s.mimeType = type; + } + return this; + }, + + // Status-dependent callbacks + statusCode: function( map ) { + var code; + if ( map ) { + if ( completed ) { + + // Execute the appropriate callbacks + jqXHR.always( map[ jqXHR.status ] ); + } else { + + // Lazy-add the new callbacks in a way that preserves old ones + for ( code in map ) { + statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; + } + } + } + return this; + }, + + // Cancel the request + abort: function( statusText ) { + var finalText = statusText || strAbort; + if ( transport ) { + transport.abort( finalText ); + } + done( 0, finalText ); + return this; + } + }; + + // Attach deferreds + deferred.promise( jqXHR ); + + // Add protocol if not provided (prefilters might expect it) + // Handle falsy url in the settings object (#10093: consistency with old signature) + // We also use the url parameter if available + s.url = ( ( url || s.url || location.href ) + "" ) + .replace( rprotocol, location.protocol + "//" ); + + // Alias method option to type as per ticket #12004 + s.type = options.method || options.type || s.method || s.type; + + // Extract dataTypes list + s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ]; + + // A cross-domain request is in order when the origin doesn't match the current origin. + if ( s.crossDomain == null ) { + urlAnchor = document.createElement( "a" ); + + // Support: IE <=8 - 11, Edge 12 - 15 + // IE throws exception on accessing the href property if url is malformed, + // e.g. http://example.com:80x/ + try { + urlAnchor.href = s.url; + + // Support: IE <=8 - 11 only + // Anchor's host property isn't correctly set when s.url is relative + urlAnchor.href = urlAnchor.href; + s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !== + urlAnchor.protocol + "//" + urlAnchor.host; + } catch ( e ) { + + // If there is an error parsing the URL, assume it is crossDomain, + // it can be rejected by the transport if it is invalid + s.crossDomain = true; + } + } + + // Convert data if not already a string + if ( s.data && s.processData && typeof s.data !== "string" ) { + s.data = jQuery.param( s.data, s.traditional ); + } + + // Apply prefilters + inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); + + // If request was aborted inside a prefilter, stop there + if ( completed ) { + return jqXHR; + } + + // We can fire global events as of now if asked to + // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118) + fireGlobals = jQuery.event && s.global; + + // Watch for a new set of requests + if ( fireGlobals && jQuery.active++ === 0 ) { + jQuery.event.trigger( "ajaxStart" ); + } + + // Uppercase the type + s.type = s.type.toUpperCase(); + + // Determine if request has content + s.hasContent = !rnoContent.test( s.type ); + + // Save the URL in case we're toying with the If-Modified-Since + // and/or If-None-Match header later on + // Remove hash to simplify url manipulation + cacheURL = s.url.replace( rhash, "" ); + + // More options handling for requests with no content + if ( !s.hasContent ) { + + // Remember the hash so we can put it back + uncached = s.url.slice( cacheURL.length ); + + // If data is available and should be processed, append data to url + if ( s.data && ( s.processData || typeof s.data === "string" ) ) { + cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data; + + // #9682: remove data so that it's not used in an eventual retry + delete s.data; + } + + // Add or update anti-cache param if needed + if ( s.cache === false ) { + cacheURL = cacheURL.replace( rantiCache, "$1" ); + uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce.guid++ ) + + uncached; + } + + // Put hash and anti-cache on the URL that will be requested (gh-1732) + s.url = cacheURL + uncached; + + // Change '%20' to '+' if this is encoded form body content (gh-2658) + } else if ( s.data && s.processData && + ( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) { + s.data = s.data.replace( r20, "+" ); + } + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + if ( jQuery.lastModified[ cacheURL ] ) { + jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); + } + if ( jQuery.etag[ cacheURL ] ) { + jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); + } + } + + // Set the correct header, if data is being sent + if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { + jqXHR.setRequestHeader( "Content-Type", s.contentType ); + } + + // Set the Accepts header for the server, depending on the dataType + jqXHR.setRequestHeader( + "Accept", + s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ? + s.accepts[ s.dataTypes[ 0 ] ] + + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : + s.accepts[ "*" ] + ); + + // Check for headers option + for ( i in s.headers ) { + jqXHR.setRequestHeader( i, s.headers[ i ] ); + } + + // Allow custom headers/mimetypes and early abort + if ( s.beforeSend && + ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) { + + // Abort if not done already and return + return jqXHR.abort(); + } + + // Aborting is no longer a cancellation + strAbort = "abort"; + + // Install callbacks on deferreds + completeDeferred.add( s.complete ); + jqXHR.done( s.success ); + jqXHR.fail( s.error ); + + // Get transport + transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); + + // If no transport, we auto-abort + if ( !transport ) { + done( -1, "No Transport" ); + } else { + jqXHR.readyState = 1; + + // Send global event + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); + } + + // If request was aborted inside ajaxSend, stop there + if ( completed ) { + return jqXHR; + } + + // Timeout + if ( s.async && s.timeout > 0 ) { + timeoutTimer = window.setTimeout( function() { + jqXHR.abort( "timeout" ); + }, s.timeout ); + } + + try { + completed = false; + transport.send( requestHeaders, done ); + } catch ( e ) { + + // Rethrow post-completion exceptions + if ( completed ) { + throw e; + } + + // Propagate others as results + done( -1, e ); + } + } + + // Callback for when everything is done + function done( status, nativeStatusText, responses, headers ) { + var isSuccess, success, error, response, modified, + statusText = nativeStatusText; + + // Ignore repeat invocations + if ( completed ) { + return; + } + + completed = true; + + // Clear timeout if it exists + if ( timeoutTimer ) { + window.clearTimeout( timeoutTimer ); + } + + // Dereference transport for early garbage collection + // (no matter how long the jqXHR object will be used) + transport = undefined; + + // Cache response headers + responseHeadersString = headers || ""; + + // Set readyState + jqXHR.readyState = status > 0 ? 4 : 0; + + // Determine if successful + isSuccess = status >= 200 && status < 300 || status === 304; + + // Get response data + if ( responses ) { + response = ajaxHandleResponses( s, jqXHR, responses ); + } + + // Use a noop converter for missing script + if ( !isSuccess && jQuery.inArray( "script", s.dataTypes ) > -1 ) { + s.converters[ "text script" ] = function() {}; + } + + // Convert no matter what (that way responseXXX fields are always set) + response = ajaxConvert( s, response, jqXHR, isSuccess ); + + // If successful, handle type chaining + if ( isSuccess ) { + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + modified = jqXHR.getResponseHeader( "Last-Modified" ); + if ( modified ) { + jQuery.lastModified[ cacheURL ] = modified; + } + modified = jqXHR.getResponseHeader( "etag" ); + if ( modified ) { + jQuery.etag[ cacheURL ] = modified; + } + } + + // if no content + if ( status === 204 || s.type === "HEAD" ) { + statusText = "nocontent"; + + // if not modified + } else if ( status === 304 ) { + statusText = "notmodified"; + + // If we have data, let's convert it + } else { + statusText = response.state; + success = response.data; + error = response.error; + isSuccess = !error; + } + } else { + + // Extract error from statusText and normalize for non-aborts + error = statusText; + if ( status || !statusText ) { + statusText = "error"; + if ( status < 0 ) { + status = 0; + } + } + } + + // Set data for the fake xhr object + jqXHR.status = status; + jqXHR.statusText = ( nativeStatusText || statusText ) + ""; + + // Success/Error + if ( isSuccess ) { + deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); + } else { + deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); + } + + // Status-dependent callbacks + jqXHR.statusCode( statusCode ); + statusCode = undefined; + + if ( fireGlobals ) { + globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", + [ jqXHR, s, isSuccess ? success : error ] ); + } + + // Complete + completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); + + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); + + // Handle the global AJAX counter + if ( !( --jQuery.active ) ) { + jQuery.event.trigger( "ajaxStop" ); + } + } + } + + return jqXHR; + }, + + getJSON: function( url, data, callback ) { + return jQuery.get( url, data, callback, "json" ); + }, + + getScript: function( url, callback ) { + return jQuery.get( url, undefined, callback, "script" ); + } +} ); + +jQuery.each( [ "get", "post" ], function( _i, method ) { + jQuery[ method ] = function( url, data, callback, type ) { + + // Shift arguments if data argument was omitted + if ( isFunction( data ) ) { + type = type || callback; + callback = data; + data = undefined; + } + + // The url can be an options object (which then must have .url) + return jQuery.ajax( jQuery.extend( { + url: url, + type: method, + dataType: type, + data: data, + success: callback + }, jQuery.isPlainObject( url ) && url ) ); + }; +} ); + +jQuery.ajaxPrefilter( function( s ) { + var i; + for ( i in s.headers ) { + if ( i.toLowerCase() === "content-type" ) { + s.contentType = s.headers[ i ] || ""; + } + } +} ); + + +jQuery._evalUrl = function( url, options, doc ) { + return jQuery.ajax( { + url: url, + + // Make this explicit, since user can override this through ajaxSetup (#11264) + type: "GET", + dataType: "script", + cache: true, + async: false, + global: false, + + // Only evaluate the response if it is successful (gh-4126) + // dataFilter is not invoked for failure responses, so using it instead + // of the default converter is kludgy but it works. + converters: { + "text script": function() {} + }, + dataFilter: function( response ) { + jQuery.globalEval( response, options, doc ); + } + } ); +}; + + +jQuery.fn.extend( { + wrapAll: function( html ) { + var wrap; + + if ( this[ 0 ] ) { + if ( isFunction( html ) ) { + html = html.call( this[ 0 ] ); + } + + // The elements to wrap the target around + wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); + + if ( this[ 0 ].parentNode ) { + wrap.insertBefore( this[ 0 ] ); + } + + wrap.map( function() { + var elem = this; + + while ( elem.firstElementChild ) { + elem = elem.firstElementChild; + } + + return elem; + } ).append( this ); + } + + return this; + }, + + wrapInner: function( html ) { + if ( isFunction( html ) ) { + return this.each( function( i ) { + jQuery( this ).wrapInner( html.call( this, i ) ); + } ); + } + + return this.each( function() { + var self = jQuery( this ), + contents = self.contents(); + + if ( contents.length ) { + contents.wrapAll( html ); + + } else { + self.append( html ); + } + } ); + }, + + wrap: function( html ) { + var htmlIsFunction = isFunction( html ); + + return this.each( function( i ) { + jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html ); + } ); + }, + + unwrap: function( selector ) { + this.parent( selector ).not( "body" ).each( function() { + jQuery( this ).replaceWith( this.childNodes ); + } ); + return this; + } +} ); + + +jQuery.expr.pseudos.hidden = function( elem ) { + return !jQuery.expr.pseudos.visible( elem ); +}; +jQuery.expr.pseudos.visible = function( elem ) { + return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length ); +}; + + + + +jQuery.ajaxSettings.xhr = function() { + try { + return new window.XMLHttpRequest(); + } catch ( e ) {} +}; + +var xhrSuccessStatus = { + + // File protocol always yields status code 0, assume 200 + 0: 200, + + // Support: IE <=9 only + // #1450: sometimes IE returns 1223 when it should be 204 + 1223: 204 + }, + xhrSupported = jQuery.ajaxSettings.xhr(); + +support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); +support.ajax = xhrSupported = !!xhrSupported; + +jQuery.ajaxTransport( function( options ) { + var callback, errorCallback; + + // Cross domain only allowed if supported through XMLHttpRequest + if ( support.cors || xhrSupported && !options.crossDomain ) { + return { + send: function( headers, complete ) { + var i, + xhr = options.xhr(); + + xhr.open( + options.type, + options.url, + options.async, + options.username, + options.password + ); + + // Apply custom fields if provided + if ( options.xhrFields ) { + for ( i in options.xhrFields ) { + xhr[ i ] = options.xhrFields[ i ]; + } + } + + // Override mime type if needed + if ( options.mimeType && xhr.overrideMimeType ) { + xhr.overrideMimeType( options.mimeType ); + } + + // X-Requested-With header + // For cross-domain requests, seeing as conditions for a preflight are + // akin to a jigsaw puzzle, we simply never set it to be sure. + // (it can always be set on a per-request basis or even using ajaxSetup) + // For same-domain requests, won't change header if already provided. + if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { + headers[ "X-Requested-With" ] = "XMLHttpRequest"; + } + + // Set headers + for ( i in headers ) { + xhr.setRequestHeader( i, headers[ i ] ); + } + + // Callback + callback = function( type ) { + return function() { + if ( callback ) { + callback = errorCallback = xhr.onload = + xhr.onerror = xhr.onabort = xhr.ontimeout = + xhr.onreadystatechange = null; + + if ( type === "abort" ) { + xhr.abort(); + } else if ( type === "error" ) { + + // Support: IE <=9 only + // On a manual native abort, IE9 throws + // errors on any property access that is not readyState + if ( typeof xhr.status !== "number" ) { + complete( 0, "error" ); + } else { + complete( + + // File: protocol always yields status 0; see #8605, #14207 + xhr.status, + xhr.statusText + ); + } + } else { + complete( + xhrSuccessStatus[ xhr.status ] || xhr.status, + xhr.statusText, + + // Support: IE <=9 only + // IE9 has no XHR2 but throws on binary (trac-11426) + // For XHR2 non-text, let the caller handle it (gh-2498) + ( xhr.responseType || "text" ) !== "text" || + typeof xhr.responseText !== "string" ? + { binary: xhr.response } : + { text: xhr.responseText }, + xhr.getAllResponseHeaders() + ); + } + } + }; + }; + + // Listen to events + xhr.onload = callback(); + errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" ); + + // Support: IE 9 only + // Use onreadystatechange to replace onabort + // to handle uncaught aborts + if ( xhr.onabort !== undefined ) { + xhr.onabort = errorCallback; + } else { + xhr.onreadystatechange = function() { + + // Check readyState before timeout as it changes + if ( xhr.readyState === 4 ) { + + // Allow onerror to be called first, + // but that will not handle a native abort + // Also, save errorCallback to a variable + // as xhr.onerror cannot be accessed + window.setTimeout( function() { + if ( callback ) { + errorCallback(); + } + } ); + } + }; + } + + // Create the abort callback + callback = callback( "abort" ); + + try { + + // Do send the request (this may raise an exception) + xhr.send( options.hasContent && options.data || null ); + } catch ( e ) { + + // #14683: Only rethrow if this hasn't been notified as an error yet + if ( callback ) { + throw e; + } + } + }, + + abort: function() { + if ( callback ) { + callback(); + } + } + }; + } +} ); + + + + +// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432) +jQuery.ajaxPrefilter( function( s ) { + if ( s.crossDomain ) { + s.contents.script = false; + } +} ); + +// Install script dataType +jQuery.ajaxSetup( { + accepts: { + script: "text/javascript, application/javascript, " + + "application/ecmascript, application/x-ecmascript" + }, + contents: { + script: /\b(?:java|ecma)script\b/ + }, + converters: { + "text script": function( text ) { + jQuery.globalEval( text ); + return text; + } + } +} ); + +// Handle cache's special case and crossDomain +jQuery.ajaxPrefilter( "script", function( s ) { + if ( s.cache === undefined ) { + s.cache = false; + } + if ( s.crossDomain ) { + s.type = "GET"; + } +} ); + +// Bind script tag hack transport +jQuery.ajaxTransport( "script", function( s ) { + + // This transport only deals with cross domain or forced-by-attrs requests + if ( s.crossDomain || s.scriptAttrs ) { + var script, callback; + return { + send: function( _, complete ) { + script = jQuery( " + + + + + + + + + + + +
+
+
+
+ +
+

The fitparse API Documentation¶

+
+

The FitFile Object¶

+
+
+class fitparse.FitFile(fileish, check_crc=True, data_processor=None)¶
+

Interface for reading a .FIT file.

+

Provided a .FIT file fileish, this is the main interface to parsing +a .FIT file and reading its data.

+
+
Parameters
+
    +
  • fileish –

    A file path, file-like object, or a string of bytes +representing FIT data to be read.

    +
    +

    Note

    +

    Usage Notes

    +

    All of the following work with the fileish parameter:

    +
    # Specifying a file path
    +fitfile = FitFile('/path.to/fitfile.fit')
    +
    +# Providing a file-like object
    +file_obj = open('/path.to/fitfile.fit', 'rb')
    +fitfile = FitFile(file_obj)
    +
    +# Providing a raw string of bytes
    +file_obj = open('/path.to/fitfile.fit', 'rb')
    +raw_fit_data = file_obj.read()
    +fitfile = FitFile(raw_fit_data)
    +
    +
    +
    +

  • +
  • check_crc – Set to False if to disable CRC validation while +reading the current .FIT file.

  • +
  • data_processor – Use this parameter to specify an alternate data +processor object to use. If one is not provided, an instance of +FitFileDataProcessor will be used.

  • +
+
+
Raises
+

Creating a FitFile may raise a FitParseError +exception. See the note on exceptions.

+
+
+
+
+get_messages(name=None, with_definitions=False, as_dict=False)¶
+

TODO: document and implement

+
+ +
+
+parse()¶
+

Parse the underlying FIT data completely.

+
+
Raises
+

May raise a FitParseError exception.

+
+
+
+

Warning

+

Note on Exceptions While Parsing a .FIT File

+

In general, any operation on a that FitFile that results in +parsing the underlying FIT data may throw a FitParseError +exception when invalid data is encountered.

+

One way to catch these before you start reading going through the +messages contained in a FitFile is to call +parse() immediately after creating a +FitFile object. For example:

+
import sys
+from fitparse import FitFile, FitParseError
+
+try:
+    fitfile = FitFile('/path.to/fitfile.fit')
+    fitfile.parse()
+except FitParseError, e:
+    print "Error while parsing .FIT file: %s" % e
+    sys.exit(1)
+
+
+

Any file related IO exceptions caught during a read() or close() +operation will be raised as usual.

+
+
+ +
+
+messages¶
+

The complete list of DataMessage record objects that are +contained in this FitFile. This list is provided as a +convenience attribute that wraps get_messages(). It is +functionally equivalent to:

+
class FitFile(object):
+    # ...
+
+    @property
+    def messages(self):
+        return list(self.get_messages())
+
+
+
+
Raises
+

Reading this property may raise a FitParseError +exception. See the note on exceptions.

+
+
+
+ +
+
+profile_version¶
+

The profile version of the FIT data read (see ANT FIT SDK for)

+
+ +
+
+protocol_version¶
+

The protocol version of the FIT data read (see ANT FIT SDK)

+
+ +
+ +
+
+

Record Objects¶

+
+

Common Used Record Objects¶

+
+
+class fitparse.DataMessage¶
+

A list of DataMessage objects are returned by +FitFile.get_messages() and FitFile.messages. These are not +meant to be created directly.

+
+
+fields¶
+

A list of FieldData objects representing the fields contained +in this message.

+
+ +
+
+get(field_name, as_dict=False)¶
+

Returns a FieldData for field field_name if it exists, +otherwise None. If as_dict is set to True, returns a dict +representation of the field (see FieldData.as_dict())

+
+ +
+
+get_value(field_name)¶
+

Returns the value of field_name if it exists, otherwise None

+
+ +
+
+get_values()¶
+

Return a dict mapping of field names to their values. For example:

+
>> data_message.get_values()
+{
+    'altitude': 24.6,
+    'cadence': 97,
+    'distance': 81.97,
+    'grade': None,
+    'heart_rate': 153,
+    'position_lat': None,
+    'position_long': None,
+    'power': None,
+    'resistance': None,
+    'speed': 7.792,
+    'temperature': 20,
+    'time_from_course': None,
+    'timestamp': datetime.datetime(2011, 11, 6, 13, 41, 50)
+}
+
+
+
+ +
+
+as_dict()¶
+

TODO: document me

+
+ +
+
+name¶
+

The name of this DataMessage, as defined by its def_mesg.

+
+ +
+
+def_mesg¶
+
+

Note

+

Generally this attribute is for access to FIT internals only

+
+

The DefinitionMessage associated with this DataMessage. +These are encountered while parsing FIT data and are declared to define +the data contained in a `DataMessage.

+
+ +
+
+mesg_num¶
+

The message number of this DataMessage, as defined by its +def_mesg.

+
+ +
+
+mesg_type¶
+

The MessageType associated with the mesg_num for this +DataMessage. If no associated message type is defined in the +SDK profile, then this is set to None.

+

TODO: Document SDK profile and update link

+
+ +
+ +
+
+
+ + +
+
+
+
+ +
+
+ + + + \ No newline at end of file diff --git a/docs/Makefile b/docs/Makefile deleted file mode 100644 index 148cf8b..0000000 --- a/docs/Makefile +++ /dev/null @@ -1,153 +0,0 @@ -# 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) . -# the i18n builder cannot share the environment and doctrees with the others -I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . - -.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext - -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 " texinfo to make Texinfo files" - @echo " info to make Texinfo files and run them through makeinfo" - @echo " gettext to make PO message catalogs" - @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/python-fitparse.qhcp" - @echo "To view the help file:" - @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/python-fitparse.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/python-fitparse" - @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/python-fitparse" - @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." - -texinfo: - $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo - @echo - @echo "Build finished. The Texinfo files are in $(BUILDDIR)/texinfo." - @echo "Run \`make' in that directory to run these through makeinfo" \ - "(use \`make info' here to do that automatically)." - -info: - $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo - @echo "Running Texinfo files through makeinfo..." - make -C $(BUILDDIR)/texinfo info - @echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo." - -gettext: - $(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale - @echo - @echo "Build finished. The message catalogs are in $(BUILDDIR)/locale." - -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." diff --git a/docs/conf.py b/docs/conf.py deleted file mode 100644 index f40ab0c..0000000 --- a/docs/conf.py +++ /dev/null @@ -1,244 +0,0 @@ -# -*- coding: utf-8 -*- -# -# python-fitparse documentation build configuration file, created by -# sphinx-quickstart on Wed Dec 19 15:26:06 2012. -# -# 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 os -import sys - -# 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('..')) -import fitparse - -# -- 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'] - -# 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'python-fitparse' -copyright = u'2011-2013, David Cooper' - -# 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 = fitparse.__version__ -# The full version, including alpha/beta/rc tags. -release = version - -# 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 = ['_build'] - -# 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 = 'python-fitparsedoc' - - -# -- Options for LaTeX output -------------------------------------------------- - -latex_elements = { -# The paper size ('letterpaper' or 'a4paper'). -#'papersize': 'letterpaper', - -# The font size ('10pt', '11pt' or '12pt'). -#'pointsize': '10pt', - -# Additional stuff for the LaTeX preamble. -#'preamble': '', -} - -# Grouping the document tree into LaTeX files. List of tuples -# (source start file, target name, title, author, documentclass [howto/manual]). -latex_documents = [ - ('index', 'python-fitparse.tex', u'python-fitparse Documentation', - u'David Cooper', '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 - -# 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', 'python-fitparse', u'python-fitparse Documentation', - [u'David Cooper'], 1) -] - -# If true, show URL addresses after external links. -#man_show_urls = False - - -# -- Options for Texinfo output ------------------------------------------------ - -# Grouping the document tree into Texinfo files. List of tuples -# (source start file, target name, title, author, -# dir menu entry, description, category) -texinfo_documents = [ - ('index', 'python-fitparse', u'python-fitparse Documentation', - u'David Cooper', 'python-fitparse', 'One line description of project.', - 'Miscellaneous'), -] - -# Documents to append as an appendix to all manuals. -#texinfo_appendices = [] - -# If false, no module index is generated. -#texinfo_domain_indices = True - -# How to display URL addresses: 'footnote', 'no', or 'inline'. -#texinfo_show_urls = 'footnote' diff --git a/etc/requirements-test.in b/etc/requirements-test.in deleted file mode 100644 index 5c90533..0000000 --- a/etc/requirements-test.in +++ /dev/null @@ -1,2 +0,0 @@ -pip-tools -coverage diff --git a/fitparse/__init__.py b/fitparse/__init__.py deleted file mode 100644 index 3453ef9..0000000 --- a/fitparse/__init__.py +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env python - -# Make classes available -from fitparse.base import FitFile, FitFileDecoder, UncachedFitFile, \ - FitParseError, CacheMixin, DataProcessorMixin -from fitparse.records import DataMessage -from fitparse.processors import FitFileDataProcessor, StandardUnitsDataProcessor - - -__version__ = '1.2.0' diff --git a/fitparse/base.py b/fitparse/base.py deleted file mode 100644 index b0ebf87..0000000 --- a/fitparse/base.py +++ /dev/null @@ -1,625 +0,0 @@ -#!/usr/bin/env python - -import io -import os -import struct -import warnings - -from fitparse.processors import FitFileDataProcessor -from fitparse.profile import FIELD_TYPE_TIMESTAMP, MESSAGE_TYPES -from fitparse.records import ( - Crc, DevField, DataMessage, FieldData, FieldDefinition, DevFieldDefinition, DefinitionMessage, - MessageHeader, BASE_TYPES, BASE_TYPE_BYTE, -) -from fitparse.utils import fileish_open, is_iterable, FitParseError, FitEOFError, FitCRCError, FitHeaderError - - -class DeveloperDataMixin: - def __init__(self, *args, check_developer_data=True, **kwargs): - self.check_developer_data = check_developer_data - self.dev_types = {} - - super().__init__(*args, **kwargs) - - def _append_dev_data_id(self, dev_data_index, application_id=None, fields=None): - if fields is None: - fields = {} - - # Note that nothing in the spec says overwriting an existing type is invalid - self.dev_types[dev_data_index] = { - 'dev_data_index': dev_data_index, - 'application_id': application_id, - 'fields': fields - } - - def add_dev_data_id(self, message): - dev_data_index = message.get_raw_value('developer_data_index') - application_id = message.get_raw_value('application_id') - - self._append_dev_data_id(dev_data_index, application_id) - - def _append_dev_field_description(self, dev_data_index, field_def_num, type=BASE_TYPE_BYTE, name=None, - units=None, native_field_num=None): - if dev_data_index not in self.dev_types: - if self.check_developer_data: - raise FitParseError("No such dev_data_index=%s found" % (dev_data_index)) - - warnings.warn( - "Dev type for dev_data_index=%s missing. Adding dummy dev type." % (dev_data_index) - ) - self._append_dev_data_id(dev_data_index) - - self.dev_types[dev_data_index]["fields"][field_def_num] = DevField( - dev_data_index=dev_data_index, - def_num=field_def_num, - type=type, - name=name, - units=units, - native_field_num=native_field_num - ) - - def add_dev_field_description(self, message): - dev_data_index = message.get_raw_value('developer_data_index') - field_def_num = message.get_raw_value('field_definition_number') - base_type_id = message.get_raw_value('fit_base_type_id') - field_name = message.get_raw_value('field_name') or "unnamed_dev_field_%s" % field_def_num - units = message.get_raw_value("units") - native_field_num = message.get_raw_value('native_field_num') - - if dev_data_index not in self.dev_types: - if self.check_developer_data: - raise FitParseError("No such dev_data_index=%s found" % (dev_data_index)) - - warnings.warn( - "Dev type for dev_data_index=%s missing. Adding dummy dev type." % (dev_data_index) - ) - self._append_dev_data_id(dev_data_index) - - fields = self.dev_types[int(dev_data_index)]['fields'] - - # Note that nothing in the spec says overwriting an existing field is invalid - fields[field_def_num] = DevField( - dev_data_index=dev_data_index, - def_num=field_def_num, - type=BASE_TYPES[base_type_id], - name=field_name, - units=units, - native_field_num=native_field_num - ) - - def get_dev_type(self, dev_data_index, field_def_num): - if dev_data_index not in self.dev_types: - if self.check_developer_data: - raise FitParseError( - f"No such dev_data_index={dev_data_index} found when looking up field {field_def_num}" - ) - - warnings.warn( - "Dev type for dev_data_index=%s missing. Adding dummy dev type." % (dev_data_index) - ) - self._append_dev_data_id(dev_data_index) - - dev_type = self.dev_types[dev_data_index] - - if field_def_num not in dev_type['fields']: - if self.check_developer_data: - raise FitParseError( - f"No such field {field_def_num} for dev_data_index {dev_data_index}" - ) - - warnings.warn( - f"Field {field_def_num} for dev_data_index {dev_data_index} missing. Adding dummy field." - ) - self._append_dev_field_description( - dev_data_index=dev_data_index, - field_def_num=field_def_num - ) - - return dev_type['fields'][field_def_num] - - -class FitFileDecoder(DeveloperDataMixin): - """Basic decoder for fit files""" - - def __init__(self, fileish, *args, check_crc=True, data_processor=None, **kwargs): - self._file = fileish_open(fileish, 'rb') - - self.check_crc = check_crc - self._crc = None - - # Get total filesize - self._file.seek(0, os.SEEK_END) - self._filesize = self._file.tell() - self._file.seek(0, os.SEEK_SET) - - # Start off by parsing the file header (sets initial attribute values) - self._parse_file_header() - - super().__init__(*args, **kwargs) - - def __del__(self): - self.close() - - def close(self): - if hasattr(self, "_file") and self._file and hasattr(self._file, "close"): - self._file.close() - self._file = None - - def __enter__(self): - return self - - def __exit__(self, *_): - self.close() - - ########## - # Private low-level utility methods for reading of fit file - - def _read(self, size): - if size <= 0: - return None - data = self._file.read(size) - if size != len(data): - raise FitEOFError("Tried to read %d bytes from .FIT file but got %d" % (size, len(data))) - - if self.check_crc: - self._crc.update(data) - self._bytes_left -= len(data) - return data - - def _read_struct(self, fmt, endian='<', data=None, always_tuple=False): - fmt_with_endian = endian + fmt - size = struct.calcsize(fmt_with_endian) - if size <= 0: - raise FitParseError("Invalid struct format: %s" % fmt_with_endian) - - if data is None: - data = self._read(size) - - unpacked = struct.unpack(fmt_with_endian, data) - # Flatten tuple if it's got only one value - return unpacked if (len(unpacked) > 1) or always_tuple else unpacked[0] - - def _read_and_assert_crc(self, allow_zero=False): - # CRC Calculation is little endian from SDK - # TODO - How to handle the case of unterminated file? Error out and have user retry with check_crc=false? - crc_computed, crc_read = self._crc.value, self._read_struct(Crc.FMT) - if not self.check_crc: - return - if crc_computed == crc_read or (allow_zero and crc_read == 0): - return - raise FitCRCError('CRC Mismatch [computed: {}, read: {}]'.format( - Crc.format(crc_computed), Crc.format(crc_read))) - - ########## - # Private Data Parsing Methods - - def _parse_file_header(self): - - # Initialize data - self._accumulators = {} - self._bytes_left = -1 - self._complete = False - self._compressed_ts_accumulator = 0 - self._crc = Crc() - self._local_mesgs = {} - - header_data = self._read(12) - if header_data[8:12] != b'.FIT': - raise FitHeaderError("Invalid .FIT File Header") - - # Larger fields are explicitly little endian from SDK - header_size, protocol_ver_enc, profile_ver_enc, data_size = self._read_struct('2BHI4x', data=header_data) - - # Decode the same way the SDK does - self.protocol_version = float("%d.%d" % (protocol_ver_enc >> 4, protocol_ver_enc & ((1 << 4) - 1))) - self.profile_version = float("%d.%d" % (profile_ver_enc / 100, profile_ver_enc % 100)) - - # Consume extra header information - extra_header_size = header_size - 12 - if extra_header_size > 0: - # Make sure extra field in header is at least 2 bytes to calculate CRC - if extra_header_size < 2: - raise FitHeaderError('Irregular File Header Size') - - # Consume extra two bytes of header and check CRC - self._read_and_assert_crc(allow_zero=True) - - # Consume any extra bytes, since header size "may be increased in - # "future to add additional optional information" (from SDK) - self._read(extra_header_size - 2) - - # After we've consumed the header, set the bytes left to be read - self._bytes_left = data_size - - def _parse_message(self): - # When done, calculate the CRC and return None - if self._bytes_left <= 0: - # Don't assert CRC if requested not - if not self._complete and self.check_crc: - self._read_and_assert_crc() - - if self._file.tell() >= self._filesize: - self._complete = True - self.close() - return None - - # Still have data left in the file - assuming chained fit files - self._parse_file_header() - return self._parse_message() - - header = self._parse_message_header() - - if header.is_definition: - message = self._parse_definition_message(header) - else: - message = self._parse_data_message(header) - if message.mesg_type is not None: - if message.mesg_type.name == 'developer_data_id': - self.add_dev_data_id(message) - elif message.mesg_type.name == 'field_description': - self.add_dev_field_description(message) - - return message - - def _parse_message_header(self): - header = self._read_struct('B') - - if header & 0x80: # bit 7: Is this record a compressed timestamp? - return MessageHeader( - is_definition=False, - is_developer_data=False, - local_mesg_num=(header >> 5) & 0x3, # bits 5-6 - time_offset=header & 0x1F, # bits 0-4 - ) - else: - return MessageHeader( - is_definition=bool(header & 0x40), # bit 6 - is_developer_data=bool(header & 0x20), # bit 5 - local_mesg_num=header & 0xF, # bits 0-3 - time_offset=None, - ) - - def _parse_definition_message(self, header): - # Read reserved byte and architecture byte to resolve endian - endian = '>' if self._read_struct('xB') else '<' - # Read rest of header with endian awareness - global_mesg_num, num_fields = self._read_struct('HB', endian=endian) - mesg_type = MESSAGE_TYPES.get(global_mesg_num) - field_defs = [] - - for n in range(num_fields): - field_def_num, field_size, base_type_num = self._read_struct('3B', endian=endian) - # Try to get field from message type (None if unknown) - field = mesg_type.fields.get(field_def_num) if mesg_type else None - base_type = BASE_TYPES.get(base_type_num, BASE_TYPE_BYTE) - - if (field_size % base_type.size) != 0: - warnings.warn( - "Invalid field size %d for field '%s' of type '%s' (expected a multiple of %d); falling back to byte encoding." % ( - field_size, field.name, base_type.name, base_type.size) - ) - base_type = BASE_TYPE_BYTE - - # If the field has components that are accumulators - # start recording their accumulation at 0 - if field and field.components: - for component in field.components: - if component.accumulate: - accumulators = self._accumulators.setdefault(global_mesg_num, {}) - accumulators[component.def_num] = 0 - - field_defs.append(FieldDefinition( - field=field, - def_num=field_def_num, - base_type=base_type, - size=field_size, - )) - - dev_field_defs = [] - if header.is_developer_data: - num_dev_fields = self._read_struct('B', endian=endian) - for n in range(num_dev_fields): - field_def_num, field_size, dev_data_index = self._read_struct('3B', endian=endian) - field = self.get_dev_type(dev_data_index, field_def_num) - dev_field_defs.append(DevFieldDefinition( - field=field, - dev_data_index=dev_data_index, - def_num=field_def_num, - size=field_size - )) - - def_mesg = DefinitionMessage( - header=header, - endian=endian, - mesg_type=mesg_type, - mesg_num=global_mesg_num, - field_defs=field_defs, - dev_field_defs=dev_field_defs, - ) - self._local_mesgs[header.local_mesg_num] = def_mesg - return def_mesg - - def _parse_raw_values_from_data_message(self, def_mesg): - # Go through mesg's field defs and read them - raw_values = [] - for field_def in def_mesg.field_defs + def_mesg.dev_field_defs: - base_type = field_def.base_type - is_byte = base_type.name == 'byte' - # Struct to read n base types (field def size / base type size) - struct_fmt = str(int(field_def.size / base_type.size)) + base_type.fmt - - # Extract the raw value, ask for a tuple if it's a byte type - try: - raw_value = self._read_struct( - struct_fmt, endian=def_mesg.endian, always_tuple=is_byte, - ) - except FitEOFError: - # file was suddenly terminated - warnings.warn("File was terminated unexpectedly, some data will not be loaded.") - break - - # If the field returns with a tuple of values it's definitely an - # oddball, but we'll parse it on a per-value basis it. - # If it's a byte type, treat the tuple as a single value - if isinstance(raw_value, tuple) and not is_byte: - raw_value = tuple(base_type.parse(rv) for rv in raw_value) - else: - # Otherwise, just scrub the singular value - raw_value = base_type.parse(raw_value) - - raw_values.append(raw_value) - return raw_values - - @staticmethod - def _resolve_subfield(field, def_mesg, raw_values): - # Resolve into (field, parent) ie (subfield, field) or (field, None) - if field.subfields: - for sub_field in field.subfields: - # Go through reference fields for this sub field - for ref_field in sub_field.ref_fields: - # Go through field defs AND their raw values - for field_def, raw_value in zip(def_mesg.field_defs, raw_values): - # If there's a definition number AND raw value match on the - # reference field, then we return this subfield - if (field_def.def_num == ref_field.def_num) and (ref_field.raw_value == raw_value): - return sub_field, field - return field, None - - def _apply_scale_offset(self, field, raw_value): - # Apply numeric transformations (scale+offset) - if isinstance(raw_value, tuple): - # Contains multiple values, apply transformations to all of them - return tuple(self._apply_scale_offset(field, x) for x in raw_value) - elif isinstance(raw_value, (int, float)): - if field.scale: - raw_value = float(raw_value) / field.scale - if field.offset: - raw_value = raw_value - field.offset - return raw_value - - @staticmethod - def _apply_compressed_accumulation(raw_value, accumulation, num_bits): - max_value = (1 << num_bits) - max_mask = max_value - 1 - base_value = raw_value + (accumulation & ~max_mask) - - if raw_value < (accumulation & max_mask): - base_value += max_value - - return base_value - - def _parse_data_message_components(self, header): - def_mesg = self._local_mesgs.get(header.local_mesg_num) - if not def_mesg: - raise FitParseError('Got data message with invalid local message type %d' % ( - header.local_mesg_num)) - - raw_values = self._parse_raw_values_from_data_message(def_mesg) - field_datas = [] # TODO: I don't love this name, update on DataMessage too - - # TODO: Maybe refactor this and make it simpler (or at least broken - # up into sub-functions) - for field_def, raw_value in zip(def_mesg.field_defs + def_mesg.dev_field_defs, raw_values): - field, parent_field = field_def.field, None - if field: - field, parent_field = self._resolve_subfield(field, def_mesg, raw_values) - - # Resolve component fields - if field.components: - for component in field.components: - # Render its raw value - try: - cmp_raw_value = component.render(raw_value) - except ValueError: - continue - - # Apply accumulated value - if component.accumulate and cmp_raw_value is not None: - accumulator = self._accumulators[def_mesg.mesg_num] - cmp_raw_value = self._apply_compressed_accumulation( - cmp_raw_value, accumulator[component.def_num], component.bits, - ) - accumulator[component.def_num] = cmp_raw_value - - # Apply scale and offset from component, not from the dynamic field - # as they may differ - cmp_raw_value = self._apply_scale_offset(component, cmp_raw_value) - - # Extract the component's dynamic field from def_mesg - cmp_field = def_mesg.mesg_type.fields[component.def_num] - - # Resolve a possible subfield - cmp_field, cmp_parent_field = self._resolve_subfield(cmp_field, def_mesg, raw_values) - cmp_value = cmp_field.render(cmp_raw_value) - - # Plop it on field_datas - field_datas.append( - FieldData( - field_def=None, - field=cmp_field, - parent_field=cmp_parent_field, - value=cmp_value, - raw_value=cmp_raw_value, - ) - ) - - # TODO: Do we care about a base_type and a resolved field mismatch? - # My hunch is we don't - value = self._apply_scale_offset(field, field.render(raw_value)) - else: - value = raw_value - - # Update compressed timestamp field - if (field_def.def_num == FIELD_TYPE_TIMESTAMP.def_num) and (raw_value is not None): - self._compressed_ts_accumulator = raw_value - - field_datas.append( - FieldData( - field_def=field_def, - field=field, - parent_field=parent_field, - value=value, - raw_value=raw_value, - ) - ) - - # Apply timestamp field if we got a header - if header.time_offset is not None: - ts_value = self._compressed_ts_accumulator = self._apply_compressed_accumulation( - header.time_offset, self._compressed_ts_accumulator, 5, - ) - field_datas.append( - FieldData( - field_def=None, - field=FIELD_TYPE_TIMESTAMP, - parent_field=None, - value=FIELD_TYPE_TIMESTAMP.render(ts_value), - raw_value=ts_value, - ) - ) - - return header, def_mesg, field_datas - - def _parse_data_message(self, header): - header, def_mesg, field_datas = self._parse_data_message_components(header) - return DataMessage(header=header, def_mesg=def_mesg, fields=field_datas) - - @staticmethod - def _should_yield(message, with_definitions, names): - if not message: - return False - if with_definitions or message.type == 'data': - # name arg is None we return all - if names is None: - return True - elif (message.name in names) or (message.mesg_num in names): - return True - return False - - @staticmethod - def _make_set(obj): - if obj is None: - return None - - if is_iterable(obj): - return set(obj) - else: - return {obj} - - ########## - # Public API - - def get_messages(self, name=None, with_definitions=False, as_dict=False): - if with_definitions: # with_definitions implies as_dict=False - as_dict = False - - names = self._make_set(name) - - while not self._complete: - message = self._parse_message() - if self._should_yield(message, with_definitions, names): - yield message.as_dict() if as_dict else message - - def __iter__(self): - return self.get_messages() - - -class CacheMixin: - """Add message caching to the FitFileDecoder""" - - def __init__(self, *args, **kwargs): - super().__init__(*args, **kwargs) - self._messages = [] - - def _parse_message(self): - self._messages.append(super()._parse_message()) - return self._messages[-1] - - def get_messages(self, name=None, with_definitions=False, as_dict=False): - if with_definitions: # with_definitions implies as_dict=False - as_dict = False - - names = self._make_set(name) - - # Yield all parsed messages first - for message in self._messages: - if self._should_yield(message, with_definitions, names): - yield message.as_dict() if as_dict else message - - for message in super().get_messages(names, with_definitions, as_dict): - yield message - - @property - def messages(self): - return list(self.get_messages()) - - def parse(self): - while self._parse_message(): - pass - - -class DataProcessorMixin: - """Add data processing to the FitFileDecoder""" - - def __init__(self, *args, **kwargs): - self._processor = kwargs.pop("data_processor", None) or FitFileDataProcessor() - super().__init__(*args, **kwargs) - - def _parse_data_message(self, header): - header, def_mesg, field_datas = self._parse_data_message_components(header) - - # Apply data processors - for field_data in field_datas: - # Apply type name processor - self._processor.run_type_processor(field_data) - self._processor.run_field_processor(field_data) - self._processor.run_unit_processor(field_data) - - data_message = DataMessage(header=header, def_mesg=def_mesg, fields=field_datas) - self._processor.run_message_processor(data_message) - - return data_message - - -class UncachedFitFile(DataProcessorMixin, FitFileDecoder): - """FitFileDecoder with data processing""" - - def __init__(self, fileish, *args, check_crc=True, data_processor=None, **kwargs): - # Ensure all optional params are passed as kwargs - super().__init__( - fileish, - *args, - check_crc=check_crc, - data_processor=data_processor, - **kwargs - ) - - -class FitFile(CacheMixin, UncachedFitFile): - """FitFileDecoder with caching and data processing""" - pass - - - -# TODO: Create subclasses like Activity and do per-value monkey patching -# for example local_timestamp to adjust timestamp on a per-file basis diff --git a/fitparse/processors.py b/fitparse/processors.py deleted file mode 100644 index 34b36ba..0000000 --- a/fitparse/processors.py +++ /dev/null @@ -1,131 +0,0 @@ -import datetime -from fitparse.utils import scrub_method_name, is_iterable - -# Datetimes (uint32) represent seconds since this UTC_REFERENCE -UTC_REFERENCE = 631065600 # timestamp for UTC 00:00 Dec 31 1989 - - -class FitFileDataProcessor: - # TODO: Document API - # Functions that will be called to do the processing: - #def run_type_processor(field_data) - #def run_field_processor(field_data) - #def run_unit_processor(field_data) - #def run_message_processor(data_message) - - # By default, the above functions call these functions if they exist: - #def process_type_ (field_data) - #def process_field_ (field_data) -- can be unknown_DD but NOT recommended - #def process_units_ (field_data) - #def process_message_ (data_message) - - # Used to memoize scrubbed method names - _scrubbed_method_names = {} - - def _scrub_method_name(self, method_name): - """Scrubs a method name, returning result from local cache if available. - - This method wraps fitparse.utils.scrub_method_name and memoizes results, - as scrubbing a method name is expensive. - - Args: - method_name: Method name to scrub. - - Returns: - Scrubbed method name. - """ - if method_name not in self._scrubbed_method_names: - self._scrubbed_method_names[method_name] = ( - scrub_method_name(method_name)) - - return self._scrubbed_method_names[method_name] - - def run_type_processor(self, field_data): - self._run_processor(self._scrub_method_name( - 'process_type_%s' % field_data.type.name), field_data) - - def run_field_processor(self, field_data): - self._run_processor(self._scrub_method_name( - 'process_field_%s' % field_data.name), field_data) - - def run_unit_processor(self, field_data): - if field_data.units: - self._run_processor(self._scrub_method_name( - 'process_units_%s' % field_data.units), field_data) - - def run_message_processor(self, data_message): - self._run_processor(self._scrub_method_name( - 'process_message_%s' % data_message.def_mesg.name), data_message) - - def _run_processor(self, processor_name, data): - try: - getattr(self, processor_name)(data) - except AttributeError: - pass - - def process_type_bool(self, field_data): - if field_data.value is not None: - field_data.value = bool(field_data.value) - - def process_type_date_time(self, field_data): - value = field_data.value - if value is not None and value >= 0x10000000: - field_data.value = datetime.datetime.fromtimestamp(timestamp=(UTC_REFERENCE + value), tz=datetime.timezone.utc).replace(tzinfo=None) - field_data.units = None # Units were 's', set to None - - def process_type_local_date_time(self, field_data): - if field_data.value is not None: - # NOTE: This value was created on the device using it's local timezone. - # Unless we know that timezone, this value won't be correct. However, if we - # assume UTC, at least it'll be consistent. - field_data.value = datetime.datetime.fromtimestamp(timestamp=(UTC_REFERENCE + field_data.value), tz=datetime.timezone.utc).replace(tzinfo=None) - field_data.units = None - - def process_type_localtime_into_day(self, field_data): - if field_data.value is not None: - # NOTE: Values larger or equal to 86400 should not be possible. - # Additionally, if the value is exactly 86400, it will lead to an error when trying to - # create the time with datetime.time(24, 0 , 0). - # - # E.g. Garmin does add "sleep_time": 86400 to its fit files, - # which causes an error if not properly handled. - if field_data.value >= 86400: - field_data.value = datetime.time.max - else: - m, s = divmod(field_data.value, 60) - h, m = divmod(m, 60) - field_data.value = datetime.time(h, m, s) - field_data.units = None - - -class StandardUnitsDataProcessor(FitFileDataProcessor): - def run_field_processor(self, field_data): - """ - Convert all '*_speed' fields using 'process_field_speed' - All other units will use the default method. - """ - if field_data.name.endswith("_speed"): - self.process_field_speed(field_data) - else: - super().run_field_processor(field_data) - - def process_field_distance(self, field_data): - if field_data.value is not None: - field_data.value /= 1000.0 - field_data.units = 'km' - - def process_field_speed(self, field_data): - if field_data.value is not None: - factor = 60.0 * 60.0 / 1000.0 - - # record.enhanced_speed field can be a tuple - if is_iterable(field_data.value): - field_data.value = tuple(x * factor for x in field_data.value) - else: - field_data.value *= factor - field_data.units = 'km/h' - - def process_units_semicircles(self, field_data): - if field_data.value is not None: - field_data.value *= 180.0 / (2 ** 31) - field_data.units = 'deg' diff --git a/fitparse/profile.py b/fitparse/profile.py deleted file mode 100644 index daaf579..0000000 --- a/fitparse/profile.py +++ /dev/null @@ -1,12166 +0,0 @@ -# ***************** BEGIN AUTOMATICALLY GENERATED FIT PROFILE ****************** -# *************************** DO NOT EDIT THIS FILE **************************** -# ************ EXPORTED PROFILE FROM SDK VERSION 20.8 ON 2019-03-05 ************ -# ********* PARSED 161 TYPES (2985 VALUES), 85 MESSAGES (1038 FIELDS) ********** - -from fitparse.records import ( - ComponentField, - Field, - FieldType, - MessageType, - ReferenceField, - SubField, - BASE_TYPES, -) - - -FIELD_NUM_TIMESTAMP = 253 - - -FIELD_TYPES = { - 'activity': FieldType( - name='activity', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'manual', - 1: 'auto_multi_sport', - }, - ), - 'activity_class': FieldType( - name='activity_class', - base_type=BASE_TYPES[0x00], # enum - values={ - 100: 'level_max', - 0x7F: 'level', # 0 to 100 - 0x80: 'athlete', - }, - ), - 'activity_level': FieldType( - name='activity_level', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'low', - 1: 'medium', - 2: 'high', - }, - ), - 'activity_subtype': FieldType( - name='activity_subtype', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'generic', - 1: 'treadmill', # Run - 2: 'street', # Run - 3: 'trail', # Run - 4: 'track', # Run - 5: 'spin', # Cycling - 6: 'indoor_cycling', # Cycling - 7: 'road', # Cycling - 8: 'mountain', # Cycling - 9: 'downhill', # Cycling - 10: 'recumbent', # Cycling - 11: 'cyclocross', # Cycling - 12: 'hand_cycling', # Cycling - 13: 'track_cycling', # Cycling - 14: 'indoor_rowing', # Fitness Equipment - 15: 'elliptical', # Fitness Equipment - 16: 'stair_climbing', # Fitness Equipment - 17: 'lap_swimming', # Swimming - 18: 'open_water', # Swimming - 254: 'all', - }, - ), - 'activity_type': FieldType( - name='activity_type', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'generic', - 1: 'running', - 2: 'cycling', - 3: 'transition', # Mulitsport transition - 4: 'fitness_equipment', - 5: 'swimming', - 6: 'walking', - 8: 'sedentary', - 254: 'all', # All is for goals only to include all sports. - }, - ), - 'analog_watchface_layout': FieldType( - name='analog_watchface_layout', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'minimal', - 1: 'traditional', - 2: 'modern', - }, - ), - 'ant_network': FieldType( - name='ant_network', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'public', - 1: 'antplus', - 2: 'antfs', - 3: 'private', - }, - ), - 'antplus_device_type': FieldType( - name='antplus_device_type', - base_type=BASE_TYPES[0x02], # uint8 - values={ - 1: 'antfs', - 11: 'bike_power', - 12: 'environment_sensor_legacy', - 15: 'multi_sport_speed_distance', - 16: 'control', - 17: 'fitness_equipment', - 18: 'blood_pressure', - 19: 'geocache_node', - 20: 'light_electric_vehicle', - 25: 'env_sensor', - 26: 'racquet', - 27: 'control_hub', - 31: 'muscle_oxygen', - 35: 'bike_light_main', - 36: 'bike_light_shared', - 38: 'exd', - 40: 'bike_radar', - 119: 'weight_scale', - 120: 'heart_rate', - 121: 'bike_speed_cadence', - 122: 'bike_cadence', - 123: 'bike_speed', - 124: 'stride_speed_distance', - }, - ), - 'attitude_stage': FieldType( - name='attitude_stage', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'failed', - 1: 'aligning', - 2: 'degraded', - 3: 'valid', - }, - ), - 'attitude_validity': FieldType( - name='attitude_validity', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0x0001: 'track_angle_heading_valid', - 0x0002: 'pitch_valid', - 0x0004: 'roll_valid', - 0x0008: 'lateral_body_accel_valid', - 0x0010: 'normal_body_accel_valid', - 0x0020: 'turn_rate_valid', - 0x0040: 'hw_fail', - 0x0080: 'mag_invalid', - 0x0100: 'no_gps', - 0x0200: 'gps_invalid', - 0x0400: 'solution_coasting', - 0x0800: 'true_track_angle', - 0x1000: 'magnetic_heading', - }, - ), - 'auto_activity_detect': FieldType( - name='auto_activity_detect', - base_type=BASE_TYPES[0x86], # uint32 - values={ - 0x00000000: 'none', - 0x00000001: 'running', - 0x00000002: 'cycling', - 0x00000004: 'swimming', - 0x00000008: 'walking', - 0x00000020: 'elliptical', - 0x00000400: 'sedentary', - }, - ), - 'auto_sync_frequency': FieldType( - name='auto_sync_frequency', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'never', - 1: 'occasionally', - 2: 'frequent', - 3: 'once_a_day', - 4: 'remote', - }, - ), - 'autolap_trigger': FieldType( - name='autolap_trigger', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'time', - 1: 'distance', - 2: 'position_start', - 3: 'position_lap', - 4: 'position_waypoint', - 5: 'position_marked', - 6: 'off', - }, - ), - 'autoscroll': FieldType( - name='autoscroll', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'none', - 1: 'slow', - 2: 'medium', - 3: 'fast', - }, - ), - 'backlight_mode': FieldType( - name='backlight_mode', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'off', - 1: 'manual', - 2: 'key_and_messages', - 3: 'auto_brightness', - 4: 'smart_notifications', - 5: 'key_and_messages_night', - 6: 'key_and_messages_and_smart_notifications', - }, - ), - 'backlight_timeout': FieldType( # Timeout in seconds. - name='backlight_timeout', - base_type=BASE_TYPES[0x02], # uint8 - values={ - 0: 'infinite', # Backlight stays on forever. - }, - ), - 'battery_status': FieldType( - name='battery_status', - base_type=BASE_TYPES[0x02], # uint8 - values={ - 1: 'new', - 2: 'good', - 3: 'ok', - 4: 'low', - 5: 'critical', - 6: 'charging', - 7: 'unknown', - }, - ), - 'bench_press_exercise_name': FieldType( - name='bench_press_exercise_name', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: 'alternating_dumbbell_chest_press_on_swiss_ball', - 1: 'barbell_bench_press', - 2: 'barbell_board_bench_press', - 3: 'barbell_floor_press', - 4: 'close_grip_barbell_bench_press', - 5: 'decline_dumbbell_bench_press', - 6: 'dumbbell_bench_press', - 7: 'dumbbell_floor_press', - 8: 'incline_barbell_bench_press', - 9: 'incline_dumbbell_bench_press', - 10: 'incline_smith_machine_bench_press', - 11: 'isometric_barbell_bench_press', - 12: 'kettlebell_chest_press', - 13: 'neutral_grip_dumbbell_bench_press', - 14: 'neutral_grip_dumbbell_incline_bench_press', - 15: 'one_arm_floor_press', - 16: 'weighted_one_arm_floor_press', - 17: 'partial_lockout', - 18: 'reverse_grip_barbell_bench_press', - 19: 'reverse_grip_incline_bench_press', - 20: 'single_arm_cable_chest_press', - 21: 'single_arm_dumbbell_bench_press', - 22: 'smith_machine_bench_press', - 23: 'swiss_ball_dumbbell_chest_press', - 24: 'triple_stop_barbell_bench_press', - 25: 'wide_grip_barbell_bench_press', - 26: 'alternating_dumbbell_chest_press', - }, - ), - 'bike_light_beam_angle_mode': FieldType( - name='bike_light_beam_angle_mode', - base_type=BASE_TYPES[0x02], # uint8 - values={ - 0: 'manual', - 1: 'auto', - }, - ), - 'bike_light_network_config_type': FieldType( - name='bike_light_network_config_type', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'auto', - 4: 'individual', - 5: 'high_visibility', - 6: 'trail', - }, - ), - 'body_location': FieldType( - name='body_location', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'left_leg', - 1: 'left_calf', - 2: 'left_shin', - 3: 'left_hamstring', - 4: 'left_quad', - 5: 'left_glute', - 6: 'right_leg', - 7: 'right_calf', - 8: 'right_shin', - 9: 'right_hamstring', - 10: 'right_quad', - 11: 'right_glute', - 12: 'torso_back', - 13: 'left_lower_back', - 14: 'left_upper_back', - 15: 'right_lower_back', - 16: 'right_upper_back', - 17: 'torso_front', - 18: 'left_abdomen', - 19: 'left_chest', - 20: 'right_abdomen', - 21: 'right_chest', - 22: 'left_arm', - 23: 'left_shoulder', - 24: 'left_bicep', - 25: 'left_tricep', - 26: 'left_brachioradialis', # Left anterior forearm - 27: 'left_forearm_extensors', # Left posterior forearm - 28: 'right_arm', - 29: 'right_shoulder', - 30: 'right_bicep', - 31: 'right_tricep', - 32: 'right_brachioradialis', # Right anterior forearm - 33: 'right_forearm_extensors', # Right posterior forearm - 34: 'neck', - 35: 'throat', - 36: 'waist_mid_back', - 37: 'waist_front', - 38: 'waist_left', - 39: 'waist_right', - }, - ), - 'bool': FieldType( - name='bool', - base_type=BASE_TYPES[0x00], # enum - ), - 'bp_status': FieldType( - name='bp_status', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'no_error', - 1: 'error_incomplete_data', - 2: 'error_no_measurement', - 3: 'error_data_out_of_range', - 4: 'error_irregular_heart_rate', - }, - ), - 'calf_raise_exercise_name': FieldType( - name='calf_raise_exercise_name', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: '3_way_calf_raise', - 1: '3_way_weighted_calf_raise', - 2: '3_way_single_leg_calf_raise', - 3: '3_way_weighted_single_leg_calf_raise', - 4: 'donkey_calf_raise', - 5: 'weighted_donkey_calf_raise', - 6: 'seated_calf_raise', - 7: 'weighted_seated_calf_raise', - 8: 'seated_dumbbell_toe_raise', - 9: 'single_leg_bent_knee_calf_raise', - 10: 'weighted_single_leg_bent_knee_calf_raise', - 11: 'single_leg_decline_push_up', - 12: 'single_leg_donkey_calf_raise', - 13: 'weighted_single_leg_donkey_calf_raise', - 14: 'single_leg_hip_raise_with_knee_hold', - 15: 'single_leg_standing_calf_raise', - 16: 'single_leg_standing_dumbbell_calf_raise', - 17: 'standing_barbell_calf_raise', - 18: 'standing_calf_raise', - 19: 'weighted_standing_calf_raise', - 20: 'standing_dumbbell_calf_raise', - }, - ), - 'camera_event_type': FieldType( - name='camera_event_type', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'video_start', # Start of video recording - 1: 'video_split', # Mark of video file split (end of one file, beginning of the other) - 2: 'video_end', # End of video recording - 3: 'photo_taken', # Still photo taken - 4: 'video_second_stream_start', - 5: 'video_second_stream_split', - 6: 'video_second_stream_end', - 7: 'video_split_start', # Mark of video file split start - 8: 'video_second_stream_split_start', - 11: 'video_pause', # Mark when a video recording has been paused - 12: 'video_second_stream_pause', - 13: 'video_resume', # Mark when a video recording has been resumed - 14: 'video_second_stream_resume', - }, - ), - 'camera_orientation_type': FieldType( - name='camera_orientation_type', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'camera_orientation_0', - 1: 'camera_orientation_90', - 2: 'camera_orientation_180', - 3: 'camera_orientation_270', - }, - ), - 'cardio_exercise_name': FieldType( - name='cardio_exercise_name', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: 'bob_and_weave_circle', - 1: 'weighted_bob_and_weave_circle', - 2: 'cardio_core_crawl', - 3: 'weighted_cardio_core_crawl', - 4: 'double_under', - 5: 'weighted_double_under', - 6: 'jump_rope', - 7: 'weighted_jump_rope', - 8: 'jump_rope_crossover', - 9: 'weighted_jump_rope_crossover', - 10: 'jump_rope_jog', - 11: 'weighted_jump_rope_jog', - 12: 'jumping_jacks', - 13: 'weighted_jumping_jacks', - 14: 'ski_moguls', - 15: 'weighted_ski_moguls', - 16: 'split_jacks', - 17: 'weighted_split_jacks', - 18: 'squat_jacks', - 19: 'weighted_squat_jacks', - 20: 'triple_under', - 21: 'weighted_triple_under', - }, - ), - 'carry_exercise_name': FieldType( - name='carry_exercise_name', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: 'bar_holds', - 1: 'farmers_walk', - 2: 'farmers_walk_on_toes', - 3: 'hex_dumbbell_hold', - 4: 'overhead_carry', - }, - ), - 'checksum': FieldType( - name='checksum', - base_type=BASE_TYPES[0x02], # uint8 - values={ - 0: 'clear', # Allows clear of checksum for flash memory where can only write 1 to 0 without erasing sector. - 1: 'ok', # Set to mark checksum as valid if computes to invalid values 0 or 0xFF. Checksum can also be set to ok to save encoding computation time. - }, - ), - 'chop_exercise_name': FieldType( - name='chop_exercise_name', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: 'cable_pull_through', - 1: 'cable_rotational_lift', - 2: 'cable_woodchop', - 3: 'cross_chop_to_knee', - 4: 'weighted_cross_chop_to_knee', - 5: 'dumbbell_chop', - 6: 'half_kneeling_rotation', - 7: 'weighted_half_kneeling_rotation', - 8: 'half_kneeling_rotational_chop', - 9: 'half_kneeling_rotational_reverse_chop', - 10: 'half_kneeling_stability_chop', - 11: 'half_kneeling_stability_reverse_chop', - 12: 'kneeling_rotational_chop', - 13: 'kneeling_rotational_reverse_chop', - 14: 'kneeling_stability_chop', - 15: 'kneeling_woodchopper', - 16: 'medicine_ball_wood_chops', - 17: 'power_squat_chops', - 18: 'weighted_power_squat_chops', - 19: 'standing_rotational_chop', - 20: 'standing_split_rotational_chop', - 21: 'standing_split_rotational_reverse_chop', - 22: 'standing_stability_reverse_chop', - }, - ), - 'comm_timeout_type': FieldType( - name='comm_timeout_type', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: 'wildcard_pairing_timeout', # Timeout pairing to any device - 1: 'pairing_timeout', # Timeout pairing to previously paired device - 2: 'connection_lost', # Temporary loss of communications - 3: 'connection_timeout', # Connection closed due to extended bad communications - }, - ), - 'connectivity_capabilities': FieldType( - name='connectivity_capabilities', - base_type=BASE_TYPES[0x8C], # uint32z - values={ - 0x00000001: 'bluetooth', - 0x00000002: 'bluetooth_le', - 0x00000004: 'ant', - 0x00000008: 'activity_upload', - 0x00000010: 'course_download', - 0x00000020: 'workout_download', - 0x00000040: 'live_track', - 0x00000080: 'weather_conditions', - 0x00000100: 'weather_alerts', - 0x00000200: 'gps_ephemeris_download', - 0x00000400: 'explicit_archive', - 0x00000800: 'setup_incomplete', - 0x00001000: 'continue_sync_after_software_update', - 0x00002000: 'connect_iq_app_download', - 0x00004000: 'golf_course_download', - 0x00008000: 'device_initiates_sync', # Indicates device is in control of initiating all syncs - 0x00010000: 'connect_iq_watch_app_download', - 0x00020000: 'connect_iq_widget_download', - 0x00040000: 'connect_iq_watch_face_download', - 0x00080000: 'connect_iq_data_field_download', - 0x00100000: 'connect_iq_app_managment', # Device supports delete and reorder of apps via GCM - 0x00200000: 'swing_sensor', - 0x00400000: 'swing_sensor_remote', - 0x00800000: 'incident_detection', # Device supports incident detection - 0x01000000: 'audio_prompts', - 0x02000000: 'wifi_verification', # Device supports reporting wifi verification via GCM - 0x04000000: 'true_up', # Device supports True Up - 0x08000000: 'find_my_watch', # Device supports Find My Watch - 0x10000000: 'remote_manual_sync', - 0x20000000: 'live_track_auto_start', # Device supports LiveTrack auto start - 0x40000000: 'live_track_messaging', # Device supports LiveTrack Messaging - 0x80000000: 'instant_input', # Device supports instant input feature - }, - ), - 'core_exercise_name': FieldType( - name='core_exercise_name', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: 'abs_jabs', - 1: 'weighted_abs_jabs', - 2: 'alternating_plate_reach', - 3: 'barbell_rollout', - 4: 'weighted_barbell_rollout', - 5: 'body_bar_oblique_twist', - 6: 'cable_core_press', - 7: 'cable_side_bend', - 8: 'side_bend', - 9: 'weighted_side_bend', - 10: 'crescent_circle', - 11: 'weighted_crescent_circle', - 12: 'cycling_russian_twist', - 13: 'weighted_cycling_russian_twist', - 14: 'elevated_feet_russian_twist', - 15: 'weighted_elevated_feet_russian_twist', - 16: 'half_turkish_get_up', - 17: 'kettlebell_windmill', - 18: 'kneeling_ab_wheel', - 19: 'weighted_kneeling_ab_wheel', - 20: 'modified_front_lever', - 21: 'open_knee_tucks', - 22: 'weighted_open_knee_tucks', - 23: 'side_abs_leg_lift', - 24: 'weighted_side_abs_leg_lift', - 25: 'swiss_ball_jackknife', - 26: 'weighted_swiss_ball_jackknife', - 27: 'swiss_ball_pike', - 28: 'weighted_swiss_ball_pike', - 29: 'swiss_ball_rollout', - 30: 'weighted_swiss_ball_rollout', - 31: 'triangle_hip_press', - 32: 'weighted_triangle_hip_press', - 33: 'trx_suspended_jackknife', - 34: 'weighted_trx_suspended_jackknife', - 35: 'u_boat', - 36: 'weighted_u_boat', - 37: 'windmill_switches', - 38: 'weighted_windmill_switches', - 39: 'alternating_slide_out', - 40: 'weighted_alternating_slide_out', - 41: 'ghd_back_extensions', - 42: 'weighted_ghd_back_extensions', - 43: 'overhead_walk', - 44: 'inchworm', - 45: 'weighted_modified_front_lever', - }, - ), - 'course_capabilities': FieldType( - name='course_capabilities', - base_type=BASE_TYPES[0x8C], # uint32z - values={ - 0x00000001: 'processed', - 0x00000002: 'valid', - 0x00000004: 'time', - 0x00000008: 'distance', - 0x00000010: 'position', - 0x00000020: 'heart_rate', - 0x00000040: 'power', - 0x00000080: 'cadence', - 0x00000100: 'training', - 0x00000200: 'navigation', - 0x00000400: 'bikeway', - }, - ), - 'course_point': FieldType( - name='course_point', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'generic', - 1: 'summit', - 2: 'valley', - 3: 'water', - 4: 'food', - 5: 'danger', - 6: 'left', - 7: 'right', - 8: 'straight', - 9: 'first_aid', - 10: 'fourth_category', - 11: 'third_category', - 12: 'second_category', - 13: 'first_category', - 14: 'hors_category', - 15: 'sprint', - 16: 'left_fork', - 17: 'right_fork', - 18: 'middle_fork', - 19: 'slight_left', - 20: 'sharp_left', - 21: 'slight_right', - 22: 'sharp_right', - 23: 'u_turn', - 24: 'segment_start', - 25: 'segment_end', - }, - ), - 'crunch_exercise_name': FieldType( - name='crunch_exercise_name', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: 'bicycle_crunch', - 1: 'cable_crunch', - 2: 'circular_arm_crunch', - 3: 'crossed_arms_crunch', - 4: 'weighted_crossed_arms_crunch', - 5: 'cross_leg_reverse_crunch', - 6: 'weighted_cross_leg_reverse_crunch', - 7: 'crunch_chop', - 8: 'weighted_crunch_chop', - 9: 'double_crunch', - 10: 'weighted_double_crunch', - 11: 'elbow_to_knee_crunch', - 12: 'weighted_elbow_to_knee_crunch', - 13: 'flutter_kicks', - 14: 'weighted_flutter_kicks', - 15: 'foam_roller_reverse_crunch_on_bench', - 16: 'weighted_foam_roller_reverse_crunch_on_bench', - 17: 'foam_roller_reverse_crunch_with_dumbbell', - 18: 'foam_roller_reverse_crunch_with_medicine_ball', - 19: 'frog_press', - 20: 'hanging_knee_raise_oblique_crunch', - 21: 'weighted_hanging_knee_raise_oblique_crunch', - 22: 'hip_crossover', - 23: 'weighted_hip_crossover', - 24: 'hollow_rock', - 25: 'weighted_hollow_rock', - 26: 'incline_reverse_crunch', - 27: 'weighted_incline_reverse_crunch', - 28: 'kneeling_cable_crunch', - 29: 'kneeling_cross_crunch', - 30: 'weighted_kneeling_cross_crunch', - 31: 'kneeling_oblique_cable_crunch', - 32: 'knees_to_elbow', - 33: 'leg_extensions', - 34: 'weighted_leg_extensions', - 35: 'leg_levers', - 36: 'mcgill_curl_up', - 37: 'weighted_mcgill_curl_up', - 38: 'modified_pilates_roll_up_with_ball', - 39: 'weighted_modified_pilates_roll_up_with_ball', - 40: 'pilates_crunch', - 41: 'weighted_pilates_crunch', - 42: 'pilates_roll_up_with_ball', - 43: 'weighted_pilates_roll_up_with_ball', - 44: 'raised_legs_crunch', - 45: 'weighted_raised_legs_crunch', - 46: 'reverse_crunch', - 47: 'weighted_reverse_crunch', - 48: 'reverse_crunch_on_a_bench', - 49: 'weighted_reverse_crunch_on_a_bench', - 50: 'reverse_curl_and_lift', - 51: 'weighted_reverse_curl_and_lift', - 52: 'rotational_lift', - 53: 'weighted_rotational_lift', - 54: 'seated_alternating_reverse_crunch', - 55: 'weighted_seated_alternating_reverse_crunch', - 56: 'seated_leg_u', - 57: 'weighted_seated_leg_u', - 58: 'side_to_side_crunch_and_weave', - 59: 'weighted_side_to_side_crunch_and_weave', - 60: 'single_leg_reverse_crunch', - 61: 'weighted_single_leg_reverse_crunch', - 62: 'skater_crunch_cross', - 63: 'weighted_skater_crunch_cross', - 64: 'standing_cable_crunch', - 65: 'standing_side_crunch', - 66: 'step_climb', - 67: 'weighted_step_climb', - 68: 'swiss_ball_crunch', - 69: 'swiss_ball_reverse_crunch', - 70: 'weighted_swiss_ball_reverse_crunch', - 71: 'swiss_ball_russian_twist', - 72: 'weighted_swiss_ball_russian_twist', - 73: 'swiss_ball_side_crunch', - 74: 'weighted_swiss_ball_side_crunch', - 75: 'thoracic_crunches_on_foam_roller', - 76: 'weighted_thoracic_crunches_on_foam_roller', - 77: 'triceps_crunch', - 78: 'weighted_bicycle_crunch', - 79: 'weighted_crunch', - 80: 'weighted_swiss_ball_crunch', - 81: 'toes_to_bar', - 82: 'weighted_toes_to_bar', - 83: 'crunch', - }, - ), - 'curl_exercise_name': FieldType( - name='curl_exercise_name', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: 'alternating_dumbbell_biceps_curl', - 1: 'alternating_dumbbell_biceps_curl_on_swiss_ball', - 2: 'alternating_incline_dumbbell_biceps_curl', - 3: 'barbell_biceps_curl', - 4: 'barbell_reverse_wrist_curl', - 5: 'barbell_wrist_curl', - 6: 'behind_the_back_barbell_reverse_wrist_curl', - 7: 'behind_the_back_one_arm_cable_curl', - 8: 'cable_biceps_curl', - 9: 'cable_hammer_curl', - 10: 'cheating_barbell_biceps_curl', - 11: 'close_grip_ez_bar_biceps_curl', - 12: 'cross_body_dumbbell_hammer_curl', - 13: 'dead_hang_biceps_curl', - 14: 'decline_hammer_curl', - 15: 'dumbbell_biceps_curl_with_static_hold', - 16: 'dumbbell_hammer_curl', - 17: 'dumbbell_reverse_wrist_curl', - 18: 'dumbbell_wrist_curl', - 19: 'ez_bar_preacher_curl', - 20: 'forward_bend_biceps_curl', - 21: 'hammer_curl_to_press', - 22: 'incline_dumbbell_biceps_curl', - 23: 'incline_offset_thumb_dumbbell_curl', - 24: 'kettlebell_biceps_curl', - 25: 'lying_concentration_cable_curl', - 26: 'one_arm_preacher_curl', - 27: 'plate_pinch_curl', - 28: 'preacher_curl_with_cable', - 29: 'reverse_ez_bar_curl', - 30: 'reverse_grip_wrist_curl', - 31: 'reverse_grip_barbell_biceps_curl', - 32: 'seated_alternating_dumbbell_biceps_curl', - 33: 'seated_dumbbell_biceps_curl', - 34: 'seated_reverse_dumbbell_curl', - 35: 'split_stance_offset_pinky_dumbbell_curl', - 36: 'standing_alternating_dumbbell_curls', - 37: 'standing_dumbbell_biceps_curl', - 38: 'standing_ez_bar_biceps_curl', - 39: 'static_curl', - 40: 'swiss_ball_dumbbell_overhead_triceps_extension', - 41: 'swiss_ball_ez_bar_preacher_curl', - 42: 'twisting_standing_dumbbell_biceps_curl', - 43: 'wide_grip_ez_bar_biceps_curl', - }, - ), - 'date_mode': FieldType( - name='date_mode', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'day_month', - 1: 'month_day', - }, - ), - 'date_time': FieldType( # seconds since UTC 00:00 Dec 31 1989 - name='date_time', - base_type=BASE_TYPES[0x86], # uint32 - ), - 'day_of_week': FieldType( - name='day_of_week', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'sunday', - 1: 'monday', - 2: 'tuesday', - 3: 'wednesday', - 4: 'thursday', - 5: 'friday', - 6: 'saturday', - }, - ), - 'deadlift_exercise_name': FieldType( - name='deadlift_exercise_name', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: 'barbell_deadlift', - 1: 'barbell_straight_leg_deadlift', - 2: 'dumbbell_deadlift', - 3: 'dumbbell_single_leg_deadlift_to_row', - 4: 'dumbbell_straight_leg_deadlift', - 5: 'kettlebell_floor_to_shelf', - 6: 'one_arm_one_leg_deadlift', - 7: 'rack_pull', - 8: 'rotational_dumbbell_straight_leg_deadlift', - 9: 'single_arm_deadlift', - 10: 'single_leg_barbell_deadlift', - 11: 'single_leg_barbell_straight_leg_deadlift', - 12: 'single_leg_deadlift_with_barbell', - 13: 'single_leg_rdl_circuit', - 14: 'single_leg_romanian_deadlift_with_dumbbell', - 15: 'sumo_deadlift', - 16: 'sumo_deadlift_high_pull', - 17: 'trap_bar_deadlift', - 18: 'wide_grip_barbell_deadlift', - }, - ), - 'device_index': FieldType( - name='device_index', - base_type=BASE_TYPES[0x02], # uint8 - values={ - 0: 'creator', # Creator of the file is always device index 0. - }, - ), - 'digital_watchface_layout': FieldType( - name='digital_watchface_layout', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'traditional', - 1: 'modern', - 2: 'bold', - }, - ), - 'display_heart': FieldType( - name='display_heart', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'bpm', - 1: 'max', - 2: 'reserve', - }, - ), - 'display_measure': FieldType( - name='display_measure', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'metric', - 1: 'statute', - 2: 'nautical', - }, - ), - 'display_orientation': FieldType( - name='display_orientation', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'auto', # automatic if the device supports it - 1: 'portrait', - 2: 'landscape', - 3: 'portrait_flipped', # portrait mode but rotated 180 degrees - 4: 'landscape_flipped', # landscape mode but rotated 180 degrees - }, - ), - 'display_position': FieldType( - name='display_position', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'degree', # dd.dddddd - 1: 'degree_minute', # dddmm.mmm - 2: 'degree_minute_second', # dddmmss - 3: 'austrian_grid', # Austrian Grid (BMN) - 4: 'british_grid', # British National Grid - 5: 'dutch_grid', # Dutch grid system - 6: 'hungarian_grid', # Hungarian grid system - 7: 'finnish_grid', # Finnish grid system Zone3 KKJ27 - 8: 'german_grid', # Gausss Krueger (German) - 9: 'icelandic_grid', # Icelandic Grid - 10: 'indonesian_equatorial', # Indonesian Equatorial LCO - 11: 'indonesian_irian', # Indonesian Irian LCO - 12: 'indonesian_southern', # Indonesian Southern LCO - 13: 'india_zone_0', # India zone 0 - 14: 'india_zone_IA', # India zone IA - 15: 'india_zone_IB', # India zone IB - 16: 'india_zone_IIA', # India zone IIA - 17: 'india_zone_IIB', # India zone IIB - 18: 'india_zone_IIIA', # India zone IIIA - 19: 'india_zone_IIIB', # India zone IIIB - 20: 'india_zone_IVA', # India zone IVA - 21: 'india_zone_IVB', # India zone IVB - 22: 'irish_transverse', # Irish Transverse Mercator - 23: 'irish_grid', # Irish Grid - 24: 'loran', # Loran TD - 25: 'maidenhead_grid', # Maidenhead grid system - 26: 'mgrs_grid', # MGRS grid system - 27: 'new_zealand_grid', # New Zealand grid system - 28: 'new_zealand_transverse', # New Zealand Transverse Mercator - 29: 'qatar_grid', # Qatar National Grid - 30: 'modified_swedish_grid', # Modified RT-90 (Sweden) - 31: 'swedish_grid', # RT-90 (Sweden) - 32: 'south_african_grid', # South African Grid - 33: 'swiss_grid', # Swiss CH-1903 grid - 34: 'taiwan_grid', # Taiwan Grid - 35: 'united_states_grid', # United States National Grid - 36: 'utm_ups_grid', # UTM/UPS grid system - 37: 'west_malayan', # West Malayan RSO - 38: 'borneo_rso', # Borneo RSO - 39: 'estonian_grid', # Estonian grid system - 40: 'latvian_grid', # Latvian Transverse Mercator - 41: 'swedish_ref_99_grid', # Reference Grid 99 TM (Swedish) - }, - ), - 'display_power': FieldType( - name='display_power', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'watts', - 1: 'percent_ftp', - }, - ), - 'dive_alarm_type': FieldType( - name='dive_alarm_type', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'depth', - 1: 'time', - }, - ), - 'dive_backlight_mode': FieldType( - name='dive_backlight_mode', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'at_depth', - 1: 'always_on', - }, - ), - 'dive_gas_status': FieldType( - name='dive_gas_status', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'disabled', - 1: 'enabled', - 2: 'backup_only', - }, - ), - 'event': FieldType( - name='event', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'timer', # Group 0. Start / stop_all - 3: 'workout', # start / stop - 4: 'workout_step', # Start at beginning of workout. Stop at end of each step. - 5: 'power_down', # stop_all group 0 - 6: 'power_up', # stop_all group 0 - 7: 'off_course', # start / stop group 0 - 8: 'session', # Stop at end of each session. - 9: 'lap', # Stop at end of each lap. - 10: 'course_point', # marker - 11: 'battery', # marker - 12: 'virtual_partner_pace', # Group 1. Start at beginning of activity if VP enabled, when VP pace is changed during activity or VP enabled mid activity. stop_disable when VP disabled. - 13: 'hr_high_alert', # Group 0. Start / stop when in alert condition. - 14: 'hr_low_alert', # Group 0. Start / stop when in alert condition. - 15: 'speed_high_alert', # Group 0. Start / stop when in alert condition. - 16: 'speed_low_alert', # Group 0. Start / stop when in alert condition. - 17: 'cad_high_alert', # Group 0. Start / stop when in alert condition. - 18: 'cad_low_alert', # Group 0. Start / stop when in alert condition. - 19: 'power_high_alert', # Group 0. Start / stop when in alert condition. - 20: 'power_low_alert', # Group 0. Start / stop when in alert condition. - 21: 'recovery_hr', # marker - 22: 'battery_low', # marker - 23: 'time_duration_alert', # Group 1. Start if enabled mid activity (not required at start of activity). Stop when duration is reached. stop_disable if disabled. - 24: 'distance_duration_alert', # Group 1. Start if enabled mid activity (not required at start of activity). Stop when duration is reached. stop_disable if disabled. - 25: 'calorie_duration_alert', # Group 1. Start if enabled mid activity (not required at start of activity). Stop when duration is reached. stop_disable if disabled. - 26: 'activity', # Group 1.. Stop at end of activity. - 27: 'fitness_equipment', # marker - 28: 'length', # Stop at end of each length. - 32: 'user_marker', # marker - 33: 'sport_point', # marker - 36: 'calibration', # start/stop/marker - 42: 'front_gear_change', # marker - 43: 'rear_gear_change', # marker - 44: 'rider_position_change', # marker - 45: 'elev_high_alert', # Group 0. Start / stop when in alert condition. - 46: 'elev_low_alert', # Group 0. Start / stop when in alert condition. - 47: 'comm_timeout', # marker - }, - ), - 'event_type': FieldType( - name='event_type', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'start', - 1: 'stop', - 2: 'consecutive_depreciated', - 3: 'marker', - 4: 'stop_all', - 5: 'begin_depreciated', - 6: 'end_depreciated', - 7: 'end_all_depreciated', - 8: 'stop_disable', - 9: 'stop_disable_all', - }, - ), - 'exd_data_units': FieldType( - name='exd_data_units', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'no_units', - 1: 'laps', - 2: 'miles_per_hour', - 3: 'kilometers_per_hour', - 4: 'feet_per_hour', - 5: 'meters_per_hour', - 6: 'degrees_celsius', - 7: 'degrees_farenheit', - 8: 'zone', - 9: 'gear', - 10: 'rpm', - 11: 'bpm', - 12: 'degrees', - 13: 'millimeters', - 14: 'meters', - 15: 'kilometers', - 16: 'feet', - 17: 'yards', - 18: 'kilofeet', - 19: 'miles', - 20: 'time', - 21: 'enum_turn_type', - 22: 'percent', - 23: 'watts', - 24: 'watts_per_kilogram', - 25: 'enum_battery_status', - 26: 'enum_bike_light_beam_angle_mode', - 27: 'enum_bike_light_battery_status', - 28: 'enum_bike_light_network_config_type', - 29: 'lights', - 30: 'seconds', - 31: 'minutes', - 32: 'hours', - 33: 'calories', - 34: 'kilojoules', - 35: 'milliseconds', - 36: 'second_per_mile', - 37: 'second_per_kilometer', - 38: 'centimeter', - 39: 'enum_course_point', - 40: 'bradians', - 41: 'enum_sport', - 42: 'inches_hg', - 43: 'mm_hg', - 44: 'mbars', - 45: 'hecto_pascals', - 46: 'feet_per_min', - 47: 'meters_per_min', - 48: 'meters_per_sec', - 49: 'eight_cardinal', - }, - ), - 'exd_descriptors': FieldType( - name='exd_descriptors', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'bike_light_battery_status', - 1: 'beam_angle_status', - 2: 'batery_level', - 3: 'light_network_mode', - 4: 'number_lights_connected', - 5: 'cadence', - 6: 'distance', - 7: 'estimated_time_of_arrival', - 8: 'heading', - 9: 'time', - 10: 'battery_level', - 11: 'trainer_resistance', - 12: 'trainer_target_power', - 13: 'time_seated', - 14: 'time_standing', - 15: 'elevation', - 16: 'grade', - 17: 'ascent', - 18: 'descent', - 19: 'vertical_speed', - 20: 'di2_battery_level', - 21: 'front_gear', - 22: 'rear_gear', - 23: 'gear_ratio', - 24: 'heart_rate', - 25: 'heart_rate_zone', - 26: 'time_in_heart_rate_zone', - 27: 'heart_rate_reserve', - 28: 'calories', - 29: 'gps_accuracy', - 30: 'gps_signal_strength', - 31: 'temperature', - 32: 'time_of_day', - 33: 'balance', - 34: 'pedal_smoothness', - 35: 'power', - 36: 'functional_threshold_power', - 37: 'intensity_factor', - 38: 'work', - 39: 'power_ratio', - 40: 'normalized_power', - 41: 'training_stress_Score', - 42: 'time_on_zone', - 43: 'speed', - 44: 'laps', - 45: 'reps', - 46: 'workout_step', - 47: 'course_distance', - 48: 'navigation_distance', - 49: 'course_estimated_time_of_arrival', - 50: 'navigation_estimated_time_of_arrival', - 51: 'course_time', - 52: 'navigation_time', - 53: 'course_heading', - 54: 'navigation_heading', - 55: 'power_zone', - 56: 'torque_effectiveness', - 57: 'timer_time', - 58: 'power_weight_ratio', - 59: 'left_platform_center_offset', - 60: 'right_platform_center_offset', - 61: 'left_power_phase_start_angle', - 62: 'right_power_phase_start_angle', - 63: 'left_power_phase_finish_angle', - 64: 'right_power_phase_finish_angle', - 65: 'gears', # Combined gear information - 66: 'pace', - 67: 'training_effect', - 68: 'vertical_oscillation', - 69: 'vertical_ratio', - 70: 'ground_contact_time', - 71: 'left_ground_contact_time_balance', - 72: 'right_ground_contact_time_balance', - 73: 'stride_length', - 74: 'running_cadence', - 75: 'performance_condition', - 76: 'course_type', - 77: 'time_in_power_zone', - 78: 'navigation_turn', - 79: 'course_location', - 80: 'navigation_location', - 81: 'compass', - 82: 'gear_combo', - 83: 'muscle_oxygen', - 84: 'icon', - 85: 'compass_heading', - 86: 'gps_heading', - 87: 'gps_elevation', - 88: 'anaerobic_training_effect', - 89: 'course', - 90: 'off_course', - 91: 'glide_ratio', - 92: 'vertical_distance', - 93: 'vmg', - 94: 'ambient_pressure', - 95: 'pressure', - 96: 'vam', - }, - ), - 'exd_display_type': FieldType( - name='exd_display_type', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'numerical', - 1: 'simple', - 2: 'graph', - 3: 'bar', - 4: 'circle_graph', - 5: 'virtual_partner', - 6: 'balance', - 7: 'string_list', - 8: 'string', - 9: 'simple_dynamic_icon', - 10: 'gauge', - }, - ), - 'exd_layout': FieldType( - name='exd_layout', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'full_screen', - 1: 'half_vertical', - 2: 'half_horizontal', - 3: 'half_vertical_right_split', - 4: 'half_horizontal_bottom_split', - 5: 'full_quarter_split', - 6: 'half_vertical_left_split', - 7: 'half_horizontal_top_split', - }, - ), - 'exd_qualifiers': FieldType( - name='exd_qualifiers', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'no_qualifier', - 1: 'instantaneous', - 2: 'average', - 3: 'lap', - 4: 'maximum', - 5: 'maximum_average', - 6: 'maximum_lap', - 7: 'last_lap', - 8: 'average_lap', - 9: 'to_destination', - 10: 'to_go', - 11: 'to_next', - 12: 'next_course_point', - 13: 'total', - 14: 'three_second_average', - 15: 'ten_second_average', - 16: 'thirty_second_average', - 17: 'percent_maximum', - 18: 'percent_maximum_average', - 19: 'lap_percent_maximum', - 20: 'elapsed', - 21: 'sunrise', - 22: 'sunset', - 23: 'compared_to_virtual_partner', - 24: 'maximum_24h', - 25: 'minimum_24h', - 26: 'minimum', - 27: 'first', - 28: 'second', - 29: 'third', - 30: 'shifter', - 31: 'last_sport', - 32: 'moving', - 33: 'stopped', - 34: 'estimated_total', - 242: 'zone_9', - 243: 'zone_8', - 244: 'zone_7', - 245: 'zone_6', - 246: 'zone_5', - 247: 'zone_4', - 248: 'zone_3', - 249: 'zone_2', - 250: 'zone_1', - }, - ), - 'exercise_category': FieldType( - name='exercise_category', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: 'bench_press', - 1: 'calf_raise', - 2: 'cardio', - 3: 'carry', - 4: 'chop', - 5: 'core', - 6: 'crunch', - 7: 'curl', - 8: 'deadlift', - 9: 'flye', - 10: 'hip_raise', - 11: 'hip_stability', - 12: 'hip_swing', - 13: 'hyperextension', - 14: 'lateral_raise', - 15: 'leg_curl', - 16: 'leg_raise', - 17: 'lunge', - 18: 'olympic_lift', - 19: 'plank', - 20: 'plyo', - 21: 'pull_up', - 22: 'push_up', - 23: 'row', - 24: 'shoulder_press', - 25: 'shoulder_stability', - 26: 'shrug', - 27: 'sit_up', - 28: 'squat', - 29: 'total_body', - 30: 'triceps_extension', - 31: 'warm_up', - 32: 'run', - 65534: 'unknown', - }, - ), - 'file': FieldType( - name='file', - base_type=BASE_TYPES[0x00], # enum - values={ - 1: 'device', # Read only, single file. Must be in root directory. - 2: 'settings', # Read/write, single file. Directory=Settings - 3: 'sport', # Read/write, multiple files, file number = sport type. Directory=Sports - 4: 'activity', # Read/erase, multiple files. Directory=Activities - 5: 'workout', # Read/write/erase, multiple files. Directory=Workouts - 6: 'course', # Read/write/erase, multiple files. Directory=Courses - 7: 'schedules', # Read/write, single file. Directory=Schedules - 9: 'weight', # Read only, single file. Circular buffer. All message definitions at start of file. Directory=Weight - 10: 'totals', # Read only, single file. Directory=Totals - 11: 'goals', # Read/write, single file. Directory=Goals - 14: 'blood_pressure', # Read only. Directory=Blood Pressure - 15: 'monitoring_a', # Read only. Directory=Monitoring. File number=sub type. - 20: 'activity_summary', # Read/erase, multiple files. Directory=Activities - 28: 'monitoring_daily', - 32: 'monitoring_b', # Read only. Directory=Monitoring. File number=identifier - 34: 'segment', # Read/write/erase. Multiple Files. Directory=Segments - 35: 'segment_list', # Read/write/erase. Single File. Directory=Segments - 40: 'exd_configuration', # Read/write/erase. Single File. Directory=Settings - 0xF7: 'mfg_range_min', # 0xF7 - 0xFE reserved for manufacturer specific file types - 0xFE: 'mfg_range_max', # 0xF7 - 0xFE reserved for manufacturer specific file types - }, - ), - 'file_flags': FieldType( - name='file_flags', - base_type=BASE_TYPES[0x0A], # uint8z - values={ - 0x02: 'read', - 0x04: 'write', - 0x08: 'erase', - }, - ), - 'fit_base_type': FieldType( - name='fit_base_type', - base_type=BASE_TYPES[0x02], # uint8 - values={ - 0: 'enum', - 1: 'sint8', - 2: 'uint8', - 7: 'string', - 10: 'uint8z', - 13: 'byte', - 131: 'sint16', - 132: 'uint16', - 133: 'sint32', - 134: 'uint32', - 136: 'float32', - 137: 'float64', - 139: 'uint16z', - 140: 'uint32z', - 142: 'sint64', - 143: 'uint64', - 144: 'uint64z', - }, - ), - 'fit_base_unit': FieldType( - name='fit_base_unit', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: 'other', - 1: 'kilogram', - 2: 'pound', - }, - ), - 'fitness_equipment_state': FieldType( # fitness equipment event data - name='fitness_equipment_state', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'ready', - 1: 'in_use', - 2: 'paused', - 3: 'unknown', # lost connection to fitness equipment - }, - ), - 'flye_exercise_name': FieldType( - name='flye_exercise_name', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: 'cable_crossover', - 1: 'decline_dumbbell_flye', - 2: 'dumbbell_flye', - 3: 'incline_dumbbell_flye', - 4: 'kettlebell_flye', - 5: 'kneeling_rear_flye', - 6: 'single_arm_standing_cable_reverse_flye', - 7: 'swiss_ball_dumbbell_flye', - }, - ), - 'strava_product': FieldType( - name='strava_product', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 101: 'Strava iPhone App', # recent versions of Strava iPhone app - 102: 'Strava Android App', # recent versions of Strava Android app - } - ), - 'garmin_product': FieldType( - name='garmin_product', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 1: 'hrm1', - 2: 'axh01', # AXH01 HRM chipset - 3: 'axb01', - 4: 'axb02', - 5: 'hrm2ss', - 6: 'dsi_alf02', - 7: 'hrm3ss', - 8: 'hrm_run_single_byte_product_id', # hrm_run model for HRM ANT+ messaging - 9: 'bsm', # BSM model for ANT+ messaging - 10: 'bcm', # BCM model for ANT+ messaging - 11: 'axs01', # AXS01 HRM Bike Chipset model for ANT+ messaging - 12: 'hrm_tri_single_byte_product_id', # hrm_tri model for HRM ANT+ messaging - 14: 'fr225_single_byte_product_id', # fr225 model for HRM ANT+ messaging - 473: 'fr301_china', - 474: 'fr301_japan', - 475: 'fr301_korea', - 494: 'fr301_taiwan', - 717: 'fr405', # Forerunner 405 - 782: 'fr50', # Forerunner 50 - 987: 'fr405_japan', - 988: 'fr60', # Forerunner 60 - 1011: 'dsi_alf01', - 1018: 'fr310xt', # Forerunner 310 - 1036: 'edge500', - 1124: 'fr110', # Forerunner 110 - 1169: 'edge800', - 1199: 'edge500_taiwan', - 1213: 'edge500_japan', - 1253: 'chirp', - 1274: 'fr110_japan', - 1325: 'edge200', - 1328: 'fr910xt', - 1333: 'edge800_taiwan', - 1334: 'edge800_japan', - 1341: 'alf04', - 1345: 'fr610', - 1360: 'fr210_japan', - 1380: 'vector_ss', - 1381: 'vector_cp', - 1386: 'edge800_china', - 1387: 'edge500_china', - 1410: 'fr610_japan', - 1422: 'edge500_korea', - 1436: 'fr70', - 1446: 'fr310xt_4t', - 1461: 'amx', - 1482: 'fr10', - 1497: 'edge800_korea', - 1499: 'swim', - 1537: 'fr910xt_china', - 1551: 'fenix', - 1555: 'edge200_taiwan', - 1561: 'edge510', - 1567: 'edge810', - 1570: 'tempe', - 1600: 'fr910xt_japan', - 1623: 'fr620', - 1632: 'fr220', - 1664: 'fr910xt_korea', - 1688: 'fr10_japan', - 1721: 'edge810_japan', - 1735: 'virb_elite', - 1736: 'edge_touring', # Also Edge Touring Plus - 1742: 'edge510_japan', - 1743: 'hrm_tri', - 1752: 'hrm_run', - 1765: 'fr920xt', - 1821: 'edge510_asia', - 1822: 'edge810_china', - 1823: 'edge810_taiwan', - 1836: 'edge1000', - 1837: 'vivo_fit', - 1853: 'virb_remote', - 1885: 'vivo_ki', - 1903: 'fr15', - 1907: 'vivo_active', - 1918: 'edge510_korea', - 1928: 'fr620_japan', - 1929: 'fr620_china', - 1930: 'fr220_japan', - 1931: 'fr220_china', - 1936: 'approach_s6', - 1956: 'vivo_smart', - 1967: 'fenix2', - 1988: 'epix', - 2050: 'fenix3', - 2052: 'edge1000_taiwan', - 2053: 'edge1000_japan', - 2061: 'fr15_japan', - 2067: 'edge520', - 2070: 'edge1000_china', - 2072: 'fr620_russia', - 2073: 'fr220_russia', - 2079: 'vector_s', - 2100: 'edge1000_korea', - 2130: 'fr920xt_taiwan', - 2131: 'fr920xt_china', - 2132: 'fr920xt_japan', - 2134: 'virbx', - 2135: 'vivo_smart_apac', - 2140: 'etrex_touch', - 2147: 'edge25', - 2148: 'fr25', - 2150: 'vivo_fit2', - 2153: 'fr225', - 2156: 'fr630', - 2157: 'fr230', - 2160: 'vivo_active_apac', - 2161: 'vector_2', - 2162: 'vector_2s', - 2172: 'virbxe', - 2173: 'fr620_taiwan', - 2174: 'fr220_taiwan', - 2175: 'truswing', - 2188: 'fenix3_china', - 2189: 'fenix3_twn', - 2192: 'varia_headlight', - 2193: 'varia_taillight_old', - 2204: 'edge_explore_1000', - 2219: 'fr225_asia', - 2225: 'varia_radar_taillight', - 2226: 'varia_radar_display', - 2238: 'edge20', - 2262: 'd2_bravo', - 2266: 'approach_s20', - 2276: 'varia_remote', - 2327: 'hrm4_run', - 2337: 'vivo_active_hr', - 2347: 'vivo_smart_gps_hr', - 2348: 'vivo_smart_hr', - 2368: 'vivo_move', - 2398: 'varia_vision', - 2406: 'vivo_fit3', - 2413: 'fenix3_hr', - 2417: 'virb_ultra_30', - 2429: 'index_smart_scale', - 2431: 'fr235', - 2432: 'fenix3_chronos', - 2441: 'oregon7xx', - 2444: 'rino7xx', - 2496: 'nautix', - 2530: 'edge_820', - 2531: 'edge_explore_820', - 2544: 'fenix5s', - 2547: 'd2_bravo_titanium', - 2567: 'varia_ut800', # Varia UT 800 SW - 2593: 'running_dynamics_pod', - 2604: 'fenix5x', - 2606: 'vivo_fit_jr', - 2691: 'fr935', - 2697: 'fenix5', - 10007: 'sdm4', # SDM4 footpod - 10014: 'edge_remote', - 20119: 'training_center', - 65531: 'connectiq_simulator', - 65532: 'android_antplus_plugin', - 65534: 'connect', # Garmin Connect website - }, - ), - 'gender': FieldType( - name='gender', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'female', - 1: 'male', - }, - ), - 'goal': FieldType( - name='goal', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'time', - 1: 'distance', - 2: 'calories', - 3: 'frequency', - 4: 'steps', - 5: 'ascent', - 6: 'active_minutes', - }, - ), - 'goal_recurrence': FieldType( - name='goal_recurrence', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'off', - 1: 'daily', - 2: 'weekly', - 3: 'monthly', - 4: 'yearly', - 5: 'custom', - }, - ), - 'goal_source': FieldType( - name='goal_source', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'auto', # Device generated - 1: 'community', # Social network sourced goal - 2: 'user', # Manually generated - }, - ), - 'hip_raise_exercise_name': FieldType( - name='hip_raise_exercise_name', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: 'barbell_hip_thrust_on_floor', - 1: 'barbell_hip_thrust_with_bench', - 2: 'bent_knee_swiss_ball_reverse_hip_raise', - 3: 'weighted_bent_knee_swiss_ball_reverse_hip_raise', - 4: 'bridge_with_leg_extension', - 5: 'weighted_bridge_with_leg_extension', - 6: 'clam_bridge', - 7: 'front_kick_tabletop', - 8: 'weighted_front_kick_tabletop', - 9: 'hip_extension_and_cross', - 10: 'weighted_hip_extension_and_cross', - 11: 'hip_raise', - 12: 'weighted_hip_raise', - 13: 'hip_raise_with_feet_on_swiss_ball', - 14: 'weighted_hip_raise_with_feet_on_swiss_ball', - 15: 'hip_raise_with_head_on_bosu_ball', - 16: 'weighted_hip_raise_with_head_on_bosu_ball', - 17: 'hip_raise_with_head_on_swiss_ball', - 18: 'weighted_hip_raise_with_head_on_swiss_ball', - 19: 'hip_raise_with_knee_squeeze', - 20: 'weighted_hip_raise_with_knee_squeeze', - 21: 'incline_rear_leg_extension', - 22: 'weighted_incline_rear_leg_extension', - 23: 'kettlebell_swing', - 24: 'marching_hip_raise', - 25: 'weighted_marching_hip_raise', - 26: 'marching_hip_raise_with_feet_on_a_swiss_ball', - 27: 'weighted_marching_hip_raise_with_feet_on_a_swiss_ball', - 28: 'reverse_hip_raise', - 29: 'weighted_reverse_hip_raise', - 30: 'single_leg_hip_raise', - 31: 'weighted_single_leg_hip_raise', - 32: 'single_leg_hip_raise_with_foot_on_bench', - 33: 'weighted_single_leg_hip_raise_with_foot_on_bench', - 34: 'single_leg_hip_raise_with_foot_on_bosu_ball', - 35: 'weighted_single_leg_hip_raise_with_foot_on_bosu_ball', - 36: 'single_leg_hip_raise_with_foot_on_foam_roller', - 37: 'weighted_single_leg_hip_raise_with_foot_on_foam_roller', - 38: 'single_leg_hip_raise_with_foot_on_medicine_ball', - 39: 'weighted_single_leg_hip_raise_with_foot_on_medicine_ball', - 40: 'single_leg_hip_raise_with_head_on_bosu_ball', - 41: 'weighted_single_leg_hip_raise_with_head_on_bosu_ball', - 42: 'weighted_clam_bridge', - }, - ), - 'hip_stability_exercise_name': FieldType( - name='hip_stability_exercise_name', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: 'band_side_lying_leg_raise', - 1: 'dead_bug', - 2: 'weighted_dead_bug', - 3: 'external_hip_raise', - 4: 'weighted_external_hip_raise', - 5: 'fire_hydrant_kicks', - 6: 'weighted_fire_hydrant_kicks', - 7: 'hip_circles', - 8: 'weighted_hip_circles', - 9: 'inner_thigh_lift', - 10: 'weighted_inner_thigh_lift', - 11: 'lateral_walks_with_band_at_ankles', - 12: 'pretzel_side_kick', - 13: 'weighted_pretzel_side_kick', - 14: 'prone_hip_internal_rotation', - 15: 'weighted_prone_hip_internal_rotation', - 16: 'quadruped', - 17: 'quadruped_hip_extension', - 18: 'weighted_quadruped_hip_extension', - 19: 'quadruped_with_leg_lift', - 20: 'weighted_quadruped_with_leg_lift', - 21: 'side_lying_leg_raise', - 22: 'weighted_side_lying_leg_raise', - 23: 'sliding_hip_adduction', - 24: 'weighted_sliding_hip_adduction', - 25: 'standing_adduction', - 26: 'weighted_standing_adduction', - 27: 'standing_cable_hip_abduction', - 28: 'standing_hip_abduction', - 29: 'weighted_standing_hip_abduction', - 30: 'standing_rear_leg_raise', - 31: 'weighted_standing_rear_leg_raise', - 32: 'supine_hip_internal_rotation', - 33: 'weighted_supine_hip_internal_rotation', - }, - ), - 'hip_swing_exercise_name': FieldType( - name='hip_swing_exercise_name', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: 'single_arm_kettlebell_swing', - 1: 'single_arm_dumbbell_swing', - 2: 'step_out_swing', - }, - ), - 'hr_type': FieldType( - name='hr_type', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'normal', - 1: 'irregular', - }, - ), - 'hr_zone_calc': FieldType( - name='hr_zone_calc', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'custom', - 1: 'percent_max_hr', - 2: 'percent_hrr', - }, - ), - 'hyperextension_exercise_name': FieldType( - name='hyperextension_exercise_name', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: 'back_extension_with_opposite_arm_and_leg_reach', - 1: 'weighted_back_extension_with_opposite_arm_and_leg_reach', - 2: 'base_rotations', - 3: 'weighted_base_rotations', - 4: 'bent_knee_reverse_hyperextension', - 5: 'weighted_bent_knee_reverse_hyperextension', - 6: 'hollow_hold_and_roll', - 7: 'weighted_hollow_hold_and_roll', - 8: 'kicks', - 9: 'weighted_kicks', - 10: 'knee_raises', - 11: 'weighted_knee_raises', - 12: 'kneeling_superman', - 13: 'weighted_kneeling_superman', - 14: 'lat_pull_down_with_row', - 15: 'medicine_ball_deadlift_to_reach', - 16: 'one_arm_one_leg_row', - 17: 'one_arm_row_with_band', - 18: 'overhead_lunge_with_medicine_ball', - 19: 'plank_knee_tucks', - 20: 'weighted_plank_knee_tucks', - 21: 'side_step', - 22: 'weighted_side_step', - 23: 'single_leg_back_extension', - 24: 'weighted_single_leg_back_extension', - 25: 'spine_extension', - 26: 'weighted_spine_extension', - 27: 'static_back_extension', - 28: 'weighted_static_back_extension', - 29: 'superman_from_floor', - 30: 'weighted_superman_from_floor', - 31: 'swiss_ball_back_extension', - 32: 'weighted_swiss_ball_back_extension', - 33: 'swiss_ball_hyperextension', - 34: 'weighted_swiss_ball_hyperextension', - 35: 'swiss_ball_opposite_arm_and_leg_lift', - 36: 'weighted_swiss_ball_opposite_arm_and_leg_lift', - }, - ), - 'intensity': FieldType( - name='intensity', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'active', - 1: 'rest', - 2: 'warmup', - 3: 'cooldown', - }, - ), - 'language': FieldType( - name='language', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'english', - 1: 'french', - 2: 'italian', - 3: 'german', - 4: 'spanish', - 5: 'croatian', - 6: 'czech', - 7: 'danish', - 8: 'dutch', - 9: 'finnish', - 10: 'greek', - 11: 'hungarian', - 12: 'norwegian', - 13: 'polish', - 14: 'portuguese', - 15: 'slovakian', - 16: 'slovenian', - 17: 'swedish', - 18: 'russian', - 19: 'turkish', - 20: 'latvian', - 21: 'ukrainian', - 22: 'arabic', - 23: 'farsi', - 24: 'bulgarian', - 25: 'romanian', - 26: 'chinese', - 27: 'japanese', - 28: 'korean', - 29: 'taiwanese', - 30: 'thai', - 31: 'hebrew', - 32: 'brazilian_portuguese', - 33: 'indonesian', - 34: 'malaysian', - 35: 'vietnamese', - 36: 'burmese', - 37: 'mongolian', - 254: 'custom', - }, - ), - 'language_bits_0': FieldType( # Bit field corresponding to language enum type (1 << language). - name='language_bits_0', - base_type=BASE_TYPES[0x0A], # uint8z - values={ - 0x01: 'english', - 0x02: 'french', - 0x04: 'italian', - 0x08: 'german', - 0x10: 'spanish', - 0x20: 'croatian', - 0x40: 'czech', - 0x80: 'danish', - }, - ), - 'language_bits_1': FieldType( - name='language_bits_1', - base_type=BASE_TYPES[0x0A], # uint8z - values={ - 0x01: 'dutch', - 0x02: 'finnish', - 0x04: 'greek', - 0x08: 'hungarian', - 0x10: 'norwegian', - 0x20: 'polish', - 0x40: 'portuguese', - 0x80: 'slovakian', - }, - ), - 'language_bits_2': FieldType( - name='language_bits_2', - base_type=BASE_TYPES[0x0A], # uint8z - values={ - 0x01: 'slovenian', - 0x02: 'swedish', - 0x04: 'russian', - 0x08: 'turkish', - 0x10: 'latvian', - 0x20: 'ukrainian', - 0x40: 'arabic', - 0x80: 'farsi', - }, - ), - 'language_bits_3': FieldType( - name='language_bits_3', - base_type=BASE_TYPES[0x0A], # uint8z - values={ - 0x01: 'bulgarian', - 0x02: 'romanian', - 0x04: 'chinese', - 0x08: 'japanese', - 0x10: 'korean', - 0x20: 'taiwanese', - 0x40: 'thai', - 0x80: 'hebrew', - }, - ), - 'language_bits_4': FieldType( - name='language_bits_4', - base_type=BASE_TYPES[0x0A], # uint8z - values={ - 0x01: 'brazilian_portuguese', - 0x02: 'indonesian', - 0x04: 'malaysian', - 0x08: 'vietnamese', - 0x10: 'burmese', - 0x20: 'mongolian', - }, - ), - 'lap_trigger': FieldType( - name='lap_trigger', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'manual', - 1: 'time', - 2: 'distance', - 3: 'position_start', - 4: 'position_lap', - 5: 'position_waypoint', - 6: 'position_marked', - 7: 'session_end', - 8: 'fitness_equipment', - }, - ), - 'lateral_raise_exercise_name': FieldType( - name='lateral_raise_exercise_name', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: '45_degree_cable_external_rotation', - 1: 'alternating_lateral_raise_with_static_hold', - 2: 'bar_muscle_up', - 3: 'bent_over_lateral_raise', - 4: 'cable_diagonal_raise', - 5: 'cable_front_raise', - 6: 'calorie_row', - 7: 'combo_shoulder_raise', - 8: 'dumbbell_diagonal_raise', - 9: 'dumbbell_v_raise', - 10: 'front_raise', - 11: 'leaning_dumbbell_lateral_raise', - 12: 'lying_dumbbell_raise', - 13: 'muscle_up', - 14: 'one_arm_cable_lateral_raise', - 15: 'overhand_grip_rear_lateral_raise', - 16: 'plate_raises', - 17: 'ring_dip', - 18: 'weighted_ring_dip', - 19: 'ring_muscle_up', - 20: 'weighted_ring_muscle_up', - 21: 'rope_climb', - 22: 'weighted_rope_climb', - 23: 'scaption', - 24: 'seated_lateral_raise', - 25: 'seated_rear_lateral_raise', - 26: 'side_lying_lateral_raise', - 27: 'standing_lift', - 28: 'suspended_row', - 29: 'underhand_grip_rear_lateral_raise', - 30: 'wall_slide', - 31: 'weighted_wall_slide', - }, - ), - 'left_right_balance': FieldType( - name='left_right_balance', - base_type=BASE_TYPES[0x02], # uint8 - values={ - 0x7F: 'mask', # % contribution - 0x80: 'right', # data corresponds to right if set, otherwise unknown - }, - ), - 'left_right_balance_100': FieldType( - name='left_right_balance_100', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0x3FFF: 'mask', # % contribution scaled by 100 - 0x8000: 'right', # data corresponds to right if set, otherwise unknown - }, - ), - 'leg_curl_exercise_name': FieldType( - name='leg_curl_exercise_name', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: 'leg_curl', - 1: 'weighted_leg_curl', - 2: 'good_morning', - 3: 'seated_barbell_good_morning', - 4: 'single_leg_barbell_good_morning', - 5: 'single_leg_sliding_leg_curl', - 6: 'sliding_leg_curl', - 7: 'split_barbell_good_morning', - 8: 'split_stance_extension', - 9: 'staggered_stance_good_morning', - 10: 'swiss_ball_hip_raise_and_leg_curl', - 11: 'zercher_good_morning', - }, - ), - 'leg_raise_exercise_name': FieldType( - name='leg_raise_exercise_name', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: 'hanging_knee_raise', - 1: 'hanging_leg_raise', - 2: 'weighted_hanging_leg_raise', - 3: 'hanging_single_leg_raise', - 4: 'weighted_hanging_single_leg_raise', - 5: 'kettlebell_leg_raises', - 6: 'leg_lowering_drill', - 7: 'weighted_leg_lowering_drill', - 8: 'lying_straight_leg_raise', - 9: 'weighted_lying_straight_leg_raise', - 10: 'medicine_ball_leg_drops', - 11: 'quadruped_leg_raise', - 12: 'weighted_quadruped_leg_raise', - 13: 'reverse_leg_raise', - 14: 'weighted_reverse_leg_raise', - 15: 'reverse_leg_raise_on_swiss_ball', - 16: 'weighted_reverse_leg_raise_on_swiss_ball', - 17: 'single_leg_lowering_drill', - 18: 'weighted_single_leg_lowering_drill', - 19: 'weighted_hanging_knee_raise', - 20: 'lateral_stepover', - 21: 'weighted_lateral_stepover', - }, - ), - 'length_type': FieldType( - name='length_type', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'idle', # Rest period. Length with no strokes - 1: 'active', # Length with strokes. - }, - ), - 'local_date_time': FieldType( # seconds since 00:00 Dec 31 1989 in local time zone - name='local_date_time', - base_type=BASE_TYPES[0x86], # uint32 - values={ - 0x10000000: 'min', # if date_time is < 0x10000000 then it is system time (seconds from device power on) - }, - ), - 'local_device_type': FieldType( - name='local_device_type', - base_type=BASE_TYPES[0x02], # uint8 - ), - 'localtime_into_day': FieldType( # number of seconds into the day since local 00:00:00 - name='localtime_into_day', - base_type=BASE_TYPES[0x86], # uint32 - ), - 'lunge_exercise_name': FieldType( - name='lunge_exercise_name', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: 'overhead_lunge', - 1: 'lunge_matrix', - 2: 'weighted_lunge_matrix', - 3: 'alternating_barbell_forward_lunge', - 4: 'alternating_dumbbell_lunge_with_reach', - 5: 'back_foot_elevated_dumbbell_split_squat', - 6: 'barbell_box_lunge', - 7: 'barbell_bulgarian_split_squat', - 8: 'barbell_crossover_lunge', - 9: 'barbell_front_split_squat', - 10: 'barbell_lunge', - 11: 'barbell_reverse_lunge', - 12: 'barbell_side_lunge', - 13: 'barbell_split_squat', - 14: 'core_control_rear_lunge', - 15: 'diagonal_lunge', - 16: 'drop_lunge', - 17: 'dumbbell_box_lunge', - 18: 'dumbbell_bulgarian_split_squat', - 19: 'dumbbell_crossover_lunge', - 20: 'dumbbell_diagonal_lunge', - 21: 'dumbbell_lunge', - 22: 'dumbbell_lunge_and_rotation', - 23: 'dumbbell_overhead_bulgarian_split_squat', - 24: 'dumbbell_reverse_lunge_to_high_knee_and_press', - 25: 'dumbbell_side_lunge', - 26: 'elevated_front_foot_barbell_split_squat', - 27: 'front_foot_elevated_dumbbell_split_squat', - 28: 'gunslinger_lunge', - 29: 'lawnmower_lunge', - 30: 'low_lunge_with_isometric_adduction', - 31: 'low_side_to_side_lunge', - 32: 'lunge', - 33: 'weighted_lunge', - 34: 'lunge_with_arm_reach', - 35: 'lunge_with_diagonal_reach', - 36: 'lunge_with_side_bend', - 37: 'offset_dumbbell_lunge', - 38: 'offset_dumbbell_reverse_lunge', - 39: 'overhead_bulgarian_split_squat', - 40: 'overhead_dumbbell_reverse_lunge', - 41: 'overhead_dumbbell_split_squat', - 42: 'overhead_lunge_with_rotation', - 43: 'reverse_barbell_box_lunge', - 44: 'reverse_box_lunge', - 45: 'reverse_dumbbell_box_lunge', - 46: 'reverse_dumbbell_crossover_lunge', - 47: 'reverse_dumbbell_diagonal_lunge', - 48: 'reverse_lunge_with_reach_back', - 49: 'weighted_reverse_lunge_with_reach_back', - 50: 'reverse_lunge_with_twist_and_overhead_reach', - 51: 'weighted_reverse_lunge_with_twist_and_overhead_reach', - 52: 'reverse_sliding_box_lunge', - 53: 'weighted_reverse_sliding_box_lunge', - 54: 'reverse_sliding_lunge', - 55: 'weighted_reverse_sliding_lunge', - 56: 'runners_lunge_to_balance', - 57: 'weighted_runners_lunge_to_balance', - 58: 'shifting_side_lunge', - 59: 'side_and_crossover_lunge', - 60: 'weighted_side_and_crossover_lunge', - 61: 'side_lunge', - 62: 'weighted_side_lunge', - 63: 'side_lunge_and_press', - 64: 'side_lunge_jump_off', - 65: 'side_lunge_sweep', - 66: 'weighted_side_lunge_sweep', - 67: 'side_lunge_to_crossover_tap', - 68: 'weighted_side_lunge_to_crossover_tap', - 69: 'side_to_side_lunge_chops', - 70: 'weighted_side_to_side_lunge_chops', - 71: 'siff_jump_lunge', - 72: 'weighted_siff_jump_lunge', - 73: 'single_arm_reverse_lunge_and_press', - 74: 'sliding_lateral_lunge', - 75: 'weighted_sliding_lateral_lunge', - 76: 'walking_barbell_lunge', - 77: 'walking_dumbbell_lunge', - 78: 'walking_lunge', - 79: 'weighted_walking_lunge', - 80: 'wide_grip_overhead_barbell_split_squat', - }, - ), - 'manufacturer': FieldType( - name='manufacturer', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 1: 'garmin', - 2: 'garmin_fr405_antfs', # Do not use. Used by FR405 for ANTFS man id. - 3: 'zephyr', - 4: 'dayton', - 5: 'idt', - 6: 'srm', - 7: 'quarq', - 8: 'ibike', - 9: 'saris', - 10: 'spark_hk', - 11: 'tanita', - 12: 'echowell', - 13: 'dynastream_oem', - 14: 'nautilus', - 15: 'dynastream', - 16: 'timex', - 17: 'metrigear', - 18: 'xelic', - 19: 'beurer', - 20: 'cardiosport', - 21: 'a_and_d', - 22: 'hmm', - 23: 'suunto', - 24: 'thita_elektronik', - 25: 'gpulse', - 26: 'clean_mobile', - 27: 'pedal_brain', - 28: 'peaksware', - 29: 'saxonar', - 30: 'lemond_fitness', - 31: 'dexcom', - 32: 'wahoo_fitness', - 33: 'octane_fitness', - 34: 'archinoetics', - 35: 'the_hurt_box', - 36: 'citizen_systems', - 37: 'magellan', - 38: 'osynce', - 39: 'holux', - 40: 'concept2', - 42: 'one_giant_leap', - 43: 'ace_sensor', - 44: 'brim_brothers', - 45: 'xplova', - 46: 'perception_digital', - 47: 'bf1systems', - 48: 'pioneer', - 49: 'spantec', - 50: 'metalogics', - 51: '4iiiis', - 52: 'seiko_epson', - 53: 'seiko_epson_oem', - 54: 'ifor_powell', - 55: 'maxwell_guider', - 56: 'star_trac', - 57: 'breakaway', - 58: 'alatech_technology_ltd', - 59: 'mio_technology_europe', - 60: 'rotor', - 61: 'geonaute', - 62: 'id_bike', - 63: 'specialized', - 64: 'wtek', - 65: 'physical_enterprises', - 66: 'north_pole_engineering', - 67: 'bkool', - 68: 'cateye', - 69: 'stages_cycling', - 70: 'sigmasport', - 71: 'tomtom', - 72: 'peripedal', - 73: 'wattbike', - 76: 'moxy', - 77: 'ciclosport', - 78: 'powerbahn', - 79: 'acorn_projects_aps', - 80: 'lifebeam', - 81: 'bontrager', - 82: 'wellgo', - 83: 'scosche', - 84: 'magura', - 85: 'woodway', - 86: 'elite', - 87: 'nielsen_kellerman', - 88: 'dk_city', - 89: 'tacx', - 90: 'direction_technology', - 91: 'magtonic', - 92: '1partcarbon', - 93: 'inside_ride_technologies', - 94: 'sound_of_motion', - 95: 'stryd', - 96: 'icg', # Indoorcycling Group - 97: 'MiPulse', - 98: 'bsx_athletics', - 99: 'look', - 100: 'campagnolo_srl', - 101: 'body_bike_smart', - 102: 'praxisworks', - 103: 'limits_technology', # Limits Technology Ltd. - 104: 'topaction_technology', # TopAction Technology Inc. - 105: 'cosinuss', - 106: 'fitcare', - 107: 'magene', - 108: 'giant_manufacturing_co', - 109: 'tigrasport', # Tigrasport - 110: 'salutron', - 111: 'technogym', - 112: 'bryton_sensors', - 113: 'latitude_limited', - 114: 'soaring_technology', - 115: 'igpsport', - 116: 'thinkrider', - 117: 'gopher_sport', - 118: 'waterrower', - 119: 'orangetheory', - 120: 'inpeak', - 121: 'kinetic', - 122: 'johnson_health_tech', - 123: 'polar_electro', - 124: 'seesense', - 255: 'development', - 257: 'healthandlife', - 258: 'lezyne', - 259: 'scribe_labs', - 260: 'zwift', - 261: 'watteam', - 262: 'recon', - 263: 'favero_electronics', - 264: 'dynovelo', - 265: 'strava', - 266: 'precor', # Amer Sports - 267: 'bryton', - 268: 'sram', - 269: 'navman', # MiTAC Global Corporation (Mio Technology) - 270: 'cobi', # COBI GmbH - 271: 'spivi', - 272: 'mio_magellan', - 273: 'evesports', - 274: 'sensitivus_gauge', - 275: 'podoon', - 276: 'life_time_fitness', - 277: 'falco_e_motors', # Falco eMotors Inc. - 278: 'minoura', - 279: 'cycliq', - 280: 'luxottica', - 281: 'trainer_road', - 282: 'the_sufferfest', - 283: 'fullspeedahead', - 284: 'virtualtraining', - 285: 'feedbacksports', - 286: 'omata', - 287: 'vdo', - 288: 'magneticdays', - 289: 'hammerhead', - 290: 'kinetic_by_kurt', - 291: 'shapelog', - 292: 'dabuziduo', - 293: 'jetblack', - 5759: 'actigraphcorp', - }, - ), - 'mesg_count': FieldType( - name='mesg_count', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'num_per_file', - 1: 'max_per_file', - 2: 'max_per_file_type', - }, - ), - 'mesg_num': FieldType( - name='mesg_num', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: 'file_id', - 1: 'capabilities', - 2: 'device_settings', - 3: 'user_profile', - 4: 'hrm_profile', - 5: 'sdm_profile', - 6: 'bike_profile', - 7: 'zones_target', - 8: 'hr_zone', - 9: 'power_zone', - 10: 'met_zone', - 12: 'sport', - 15: 'goal', - 18: 'session', - 19: 'lap', - 20: 'record', - 21: 'event', - 23: 'device_info', - 26: 'workout', - 27: 'workout_step', - 28: 'schedule', - 30: 'weight_scale', - 31: 'course', - 32: 'course_point', - 33: 'totals', - 34: 'activity', - 35: 'software', - 37: 'file_capabilities', - 38: 'mesg_capabilities', - 39: 'field_capabilities', - 49: 'file_creator', - 51: 'blood_pressure', - 53: 'speed_zone', - 55: 'monitoring', - 72: 'training_file', - 78: 'hrv', - 80: 'ant_rx', - 81: 'ant_tx', - 82: 'ant_channel_id', - 101: 'length', - 103: 'monitoring_info', - 105: 'pad', - 106: 'slave_device', - 127: 'connectivity', - 128: 'weather_conditions', - 129: 'weather_alert', - 131: 'cadence_zone', - 132: 'hr', - 142: 'segment_lap', - 145: 'memo_glob', - 148: 'segment_id', - 149: 'segment_leaderboard_entry', - 150: 'segment_point', - 151: 'segment_file', - 158: 'workout_session', - 159: 'watchface_settings', - 160: 'gps_metadata', - 161: 'camera_event', - 162: 'timestamp_correlation', - 164: 'gyroscope_data', - 165: 'accelerometer_data', - 167: 'three_d_sensor_calibration', - 169: 'video_frame', - 174: 'obdii_data', - 177: 'nmea_sentence', - 178: 'aviation_attitude', - 184: 'video', - 185: 'video_title', - 186: 'video_description', - 187: 'video_clip', - 188: 'ohr_settings', - 200: 'exd_screen_configuration', - 201: 'exd_data_field_configuration', - 202: 'exd_data_concept_configuration', - 206: 'field_description', - 207: 'developer_data_id', - 208: 'magnetometer_data', - 209: 'barometer_data', - 210: 'one_d_sensor_calibration', - 225: 'set', - 227: 'stress_level', - 258: 'dive_settings', - 259: 'dive_gas', - 262: 'dive_alarm', - 264: 'exercise_title', - 268: 'dive_summary', - }, - ), - 'message_index': FieldType( - name='message_index', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0x0FFF: 'mask', # index - 0x7000: 'reserved', # reserved (default 0) - 0x8000: 'selected', # message is selected if set - }, - ), - 'olympic_lift_exercise_name': FieldType( - name='olympic_lift_exercise_name', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: 'barbell_hang_power_clean', - 1: 'barbell_hang_squat_clean', - 2: 'barbell_power_clean', - 3: 'barbell_power_snatch', - 4: 'barbell_squat_clean', - 5: 'clean_and_jerk', - 6: 'barbell_hang_power_snatch', - 7: 'barbell_hang_pull', - 8: 'barbell_high_pull', - 9: 'barbell_snatch', - 10: 'barbell_split_jerk', - 11: 'clean', - 12: 'dumbbell_clean', - 13: 'dumbbell_hang_pull', - 14: 'one_hand_dumbbell_split_snatch', - 15: 'push_jerk', - 16: 'single_arm_dumbbell_snatch', - 17: 'single_arm_hang_snatch', - 18: 'single_arm_kettlebell_snatch', - 19: 'split_jerk', - 20: 'squat_clean_and_jerk', - }, - ), - 'plank_exercise_name': FieldType( - name='plank_exercise_name', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: '45_degree_plank', - 1: 'weighted_45_degree_plank', - 2: '90_degree_static_hold', - 3: 'weighted_90_degree_static_hold', - 4: 'bear_crawl', - 5: 'weighted_bear_crawl', - 6: 'cross_body_mountain_climber', - 7: 'weighted_cross_body_mountain_climber', - 8: 'elbow_plank_pike_jacks', - 9: 'weighted_elbow_plank_pike_jacks', - 10: 'elevated_feet_plank', - 11: 'weighted_elevated_feet_plank', - 12: 'elevator_abs', - 13: 'weighted_elevator_abs', - 14: 'extended_plank', - 15: 'weighted_extended_plank', - 16: 'full_plank_passe_twist', - 17: 'weighted_full_plank_passe_twist', - 18: 'inching_elbow_plank', - 19: 'weighted_inching_elbow_plank', - 20: 'inchworm_to_side_plank', - 21: 'weighted_inchworm_to_side_plank', - 22: 'kneeling_plank', - 23: 'weighted_kneeling_plank', - 24: 'kneeling_side_plank_with_leg_lift', - 25: 'weighted_kneeling_side_plank_with_leg_lift', - 26: 'lateral_roll', - 27: 'weighted_lateral_roll', - 28: 'lying_reverse_plank', - 29: 'weighted_lying_reverse_plank', - 30: 'medicine_ball_mountain_climber', - 31: 'weighted_medicine_ball_mountain_climber', - 32: 'modified_mountain_climber_and_extension', - 33: 'weighted_modified_mountain_climber_and_extension', - 34: 'mountain_climber', - 35: 'weighted_mountain_climber', - 36: 'mountain_climber_on_sliding_discs', - 37: 'weighted_mountain_climber_on_sliding_discs', - 38: 'mountain_climber_with_feet_on_bosu_ball', - 39: 'weighted_mountain_climber_with_feet_on_bosu_ball', - 40: 'mountain_climber_with_hands_on_bench', - 41: 'mountain_climber_with_hands_on_swiss_ball', - 42: 'weighted_mountain_climber_with_hands_on_swiss_ball', - 43: 'plank', - 44: 'plank_jacks_with_feet_on_sliding_discs', - 45: 'weighted_plank_jacks_with_feet_on_sliding_discs', - 46: 'plank_knee_twist', - 47: 'weighted_plank_knee_twist', - 48: 'plank_pike_jumps', - 49: 'weighted_plank_pike_jumps', - 50: 'plank_pikes', - 51: 'weighted_plank_pikes', - 52: 'plank_to_stand_up', - 53: 'weighted_plank_to_stand_up', - 54: 'plank_with_arm_raise', - 55: 'weighted_plank_with_arm_raise', - 56: 'plank_with_knee_to_elbow', - 57: 'weighted_plank_with_knee_to_elbow', - 58: 'plank_with_oblique_crunch', - 59: 'weighted_plank_with_oblique_crunch', - 60: 'plyometric_side_plank', - 61: 'weighted_plyometric_side_plank', - 62: 'rolling_side_plank', - 63: 'weighted_rolling_side_plank', - 64: 'side_kick_plank', - 65: 'weighted_side_kick_plank', - 66: 'side_plank', - 67: 'weighted_side_plank', - 68: 'side_plank_and_row', - 69: 'weighted_side_plank_and_row', - 70: 'side_plank_lift', - 71: 'weighted_side_plank_lift', - 72: 'side_plank_with_elbow_on_bosu_ball', - 73: 'weighted_side_plank_with_elbow_on_bosu_ball', - 74: 'side_plank_with_feet_on_bench', - 75: 'weighted_side_plank_with_feet_on_bench', - 76: 'side_plank_with_knee_circle', - 77: 'weighted_side_plank_with_knee_circle', - 78: 'side_plank_with_knee_tuck', - 79: 'weighted_side_plank_with_knee_tuck', - 80: 'side_plank_with_leg_lift', - 81: 'weighted_side_plank_with_leg_lift', - 82: 'side_plank_with_reach_under', - 83: 'weighted_side_plank_with_reach_under', - 84: 'single_leg_elevated_feet_plank', - 85: 'weighted_single_leg_elevated_feet_plank', - 86: 'single_leg_flex_and_extend', - 87: 'weighted_single_leg_flex_and_extend', - 88: 'single_leg_side_plank', - 89: 'weighted_single_leg_side_plank', - 90: 'spiderman_plank', - 91: 'weighted_spiderman_plank', - 92: 'straight_arm_plank', - 93: 'weighted_straight_arm_plank', - 94: 'straight_arm_plank_with_shoulder_touch', - 95: 'weighted_straight_arm_plank_with_shoulder_touch', - 96: 'swiss_ball_plank', - 97: 'weighted_swiss_ball_plank', - 98: 'swiss_ball_plank_leg_lift', - 99: 'weighted_swiss_ball_plank_leg_lift', - 100: 'swiss_ball_plank_leg_lift_and_hold', - 101: 'swiss_ball_plank_with_feet_on_bench', - 102: 'weighted_swiss_ball_plank_with_feet_on_bench', - 103: 'swiss_ball_prone_jackknife', - 104: 'weighted_swiss_ball_prone_jackknife', - 105: 'swiss_ball_side_plank', - 106: 'weighted_swiss_ball_side_plank', - 107: 'three_way_plank', - 108: 'weighted_three_way_plank', - 109: 'towel_plank_and_knee_in', - 110: 'weighted_towel_plank_and_knee_in', - 111: 't_stabilization', - 112: 'weighted_t_stabilization', - 113: 'turkish_get_up_to_side_plank', - 114: 'weighted_turkish_get_up_to_side_plank', - 115: 'two_point_plank', - 116: 'weighted_two_point_plank', - 117: 'weighted_plank', - 118: 'wide_stance_plank_with_diagonal_arm_lift', - 119: 'weighted_wide_stance_plank_with_diagonal_arm_lift', - 120: 'wide_stance_plank_with_diagonal_leg_lift', - 121: 'weighted_wide_stance_plank_with_diagonal_leg_lift', - 122: 'wide_stance_plank_with_leg_lift', - 123: 'weighted_wide_stance_plank_with_leg_lift', - 124: 'wide_stance_plank_with_opposite_arm_and_leg_lift', - 125: 'weighted_mountain_climber_with_hands_on_bench', - 126: 'weighted_swiss_ball_plank_leg_lift_and_hold', - 127: 'weighted_wide_stance_plank_with_opposite_arm_and_leg_lift', - }, - ), - 'plyo_exercise_name': FieldType( - name='plyo_exercise_name', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: 'alternating_jump_lunge', - 1: 'weighted_alternating_jump_lunge', - 2: 'barbell_jump_squat', - 3: 'body_weight_jump_squat', - 4: 'weighted_jump_squat', - 5: 'cross_knee_strike', - 6: 'weighted_cross_knee_strike', - 7: 'depth_jump', - 8: 'weighted_depth_jump', - 9: 'dumbbell_jump_squat', - 10: 'dumbbell_split_jump', - 11: 'front_knee_strike', - 12: 'weighted_front_knee_strike', - 13: 'high_box_jump', - 14: 'weighted_high_box_jump', - 15: 'isometric_explosive_body_weight_jump_squat', - 16: 'weighted_isometric_explosive_jump_squat', - 17: 'lateral_leap_and_hop', - 18: 'weighted_lateral_leap_and_hop', - 19: 'lateral_plyo_squats', - 20: 'weighted_lateral_plyo_squats', - 21: 'lateral_slide', - 22: 'weighted_lateral_slide', - 23: 'medicine_ball_overhead_throws', - 24: 'medicine_ball_side_throw', - 25: 'medicine_ball_slam', - 26: 'side_to_side_medicine_ball_throws', - 27: 'side_to_side_shuffle_jump', - 28: 'weighted_side_to_side_shuffle_jump', - 29: 'squat_jump_onto_box', - 30: 'weighted_squat_jump_onto_box', - 31: 'squat_jumps_in_and_out', - 32: 'weighted_squat_jumps_in_and_out', - }, - ), - 'power_phase_type': FieldType( - name='power_phase_type', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'power_phase_start_angle', - 1: 'power_phase_end_angle', - 2: 'power_phase_arc_length', - 3: 'power_phase_center', - }, - ), - 'pull_up_exercise_name': FieldType( - name='pull_up_exercise_name', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: 'banded_pull_ups', - 1: '30_degree_lat_pulldown', - 2: 'band_assisted_chin_up', - 3: 'close_grip_chin_up', - 4: 'weighted_close_grip_chin_up', - 5: 'close_grip_lat_pulldown', - 6: 'crossover_chin_up', - 7: 'weighted_crossover_chin_up', - 8: 'ez_bar_pullover', - 9: 'hanging_hurdle', - 10: 'weighted_hanging_hurdle', - 11: 'kneeling_lat_pulldown', - 12: 'kneeling_underhand_grip_lat_pulldown', - 13: 'lat_pulldown', - 14: 'mixed_grip_chin_up', - 15: 'weighted_mixed_grip_chin_up', - 16: 'mixed_grip_pull_up', - 17: 'weighted_mixed_grip_pull_up', - 18: 'reverse_grip_pulldown', - 19: 'standing_cable_pullover', - 20: 'straight_arm_pulldown', - 21: 'swiss_ball_ez_bar_pullover', - 22: 'towel_pull_up', - 23: 'weighted_towel_pull_up', - 24: 'weighted_pull_up', - 25: 'wide_grip_lat_pulldown', - 26: 'wide_grip_pull_up', - 27: 'weighted_wide_grip_pull_up', - 28: 'burpee_pull_up', - 29: 'weighted_burpee_pull_up', - 30: 'jumping_pull_ups', - 31: 'weighted_jumping_pull_ups', - 32: 'kipping_pull_up', - 33: 'weighted_kipping_pull_up', - 34: 'l_pull_up', - 35: 'weighted_l_pull_up', - 36: 'suspended_chin_up', - 37: 'weighted_suspended_chin_up', - 38: 'pull_up', - }, - ), - 'push_up_exercise_name': FieldType( - name='push_up_exercise_name', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: 'chest_press_with_band', - 1: 'alternating_staggered_push_up', - 2: 'weighted_alternating_staggered_push_up', - 3: 'alternating_hands_medicine_ball_push_up', - 4: 'weighted_alternating_hands_medicine_ball_push_up', - 5: 'bosu_ball_push_up', - 6: 'weighted_bosu_ball_push_up', - 7: 'clapping_push_up', - 8: 'weighted_clapping_push_up', - 9: 'close_grip_medicine_ball_push_up', - 10: 'weighted_close_grip_medicine_ball_push_up', - 11: 'close_hands_push_up', - 12: 'weighted_close_hands_push_up', - 13: 'decline_push_up', - 14: 'weighted_decline_push_up', - 15: 'diamond_push_up', - 16: 'weighted_diamond_push_up', - 17: 'explosive_crossover_push_up', - 18: 'weighted_explosive_crossover_push_up', - 19: 'explosive_push_up', - 20: 'weighted_explosive_push_up', - 21: 'feet_elevated_side_to_side_push_up', - 22: 'weighted_feet_elevated_side_to_side_push_up', - 23: 'hand_release_push_up', - 24: 'weighted_hand_release_push_up', - 25: 'handstand_push_up', - 26: 'weighted_handstand_push_up', - 27: 'incline_push_up', - 28: 'weighted_incline_push_up', - 29: 'isometric_explosive_push_up', - 30: 'weighted_isometric_explosive_push_up', - 31: 'judo_push_up', - 32: 'weighted_judo_push_up', - 33: 'kneeling_push_up', - 34: 'weighted_kneeling_push_up', - 35: 'medicine_ball_chest_pass', - 36: 'medicine_ball_push_up', - 37: 'weighted_medicine_ball_push_up', - 38: 'one_arm_push_up', - 39: 'weighted_one_arm_push_up', - 40: 'weighted_push_up', - 41: 'push_up_and_row', - 42: 'weighted_push_up_and_row', - 43: 'push_up_plus', - 44: 'weighted_push_up_plus', - 45: 'push_up_with_feet_on_swiss_ball', - 46: 'weighted_push_up_with_feet_on_swiss_ball', - 47: 'push_up_with_one_hand_on_medicine_ball', - 48: 'weighted_push_up_with_one_hand_on_medicine_ball', - 49: 'shoulder_push_up', - 50: 'weighted_shoulder_push_up', - 51: 'single_arm_medicine_ball_push_up', - 52: 'weighted_single_arm_medicine_ball_push_up', - 53: 'spiderman_push_up', - 54: 'weighted_spiderman_push_up', - 55: 'stacked_feet_push_up', - 56: 'weighted_stacked_feet_push_up', - 57: 'staggered_hands_push_up', - 58: 'weighted_staggered_hands_push_up', - 59: 'suspended_push_up', - 60: 'weighted_suspended_push_up', - 61: 'swiss_ball_push_up', - 62: 'weighted_swiss_ball_push_up', - 63: 'swiss_ball_push_up_plus', - 64: 'weighted_swiss_ball_push_up_plus', - 65: 't_push_up', - 66: 'weighted_t_push_up', - 67: 'triple_stop_push_up', - 68: 'weighted_triple_stop_push_up', - 69: 'wide_hands_push_up', - 70: 'weighted_wide_hands_push_up', - 71: 'parallette_handstand_push_up', - 72: 'weighted_parallette_handstand_push_up', - 73: 'ring_handstand_push_up', - 74: 'weighted_ring_handstand_push_up', - 75: 'ring_push_up', - 76: 'weighted_ring_push_up', - 77: 'push_up', - }, - ), - 'pwr_zone_calc': FieldType( - name='pwr_zone_calc', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'custom', - 1: 'percent_ftp', - }, - ), - 'rider_position_type': FieldType( - name='rider_position_type', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'seated', - 1: 'standing', - 2: 'transition_to_seated', - 3: 'transition_to_standing', - }, - ), - 'row_exercise_name': FieldType( - name='row_exercise_name', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: 'barbell_straight_leg_deadlift_to_row', - 1: 'cable_row_standing', - 2: 'dumbbell_row', - 3: 'elevated_feet_inverted_row', - 4: 'weighted_elevated_feet_inverted_row', - 5: 'face_pull', - 6: 'face_pull_with_external_rotation', - 7: 'inverted_row_with_feet_on_swiss_ball', - 8: 'weighted_inverted_row_with_feet_on_swiss_ball', - 9: 'kettlebell_row', - 10: 'modified_inverted_row', - 11: 'weighted_modified_inverted_row', - 12: 'neutral_grip_alternating_dumbbell_row', - 13: 'one_arm_bent_over_row', - 14: 'one_legged_dumbbell_row', - 15: 'renegade_row', - 16: 'reverse_grip_barbell_row', - 17: 'rope_handle_cable_row', - 18: 'seated_cable_row', - 19: 'seated_dumbbell_row', - 20: 'single_arm_cable_row', - 21: 'single_arm_cable_row_and_rotation', - 22: 'single_arm_inverted_row', - 23: 'weighted_single_arm_inverted_row', - 24: 'single_arm_neutral_grip_dumbbell_row', - 25: 'single_arm_neutral_grip_dumbbell_row_and_rotation', - 26: 'suspended_inverted_row', - 27: 'weighted_suspended_inverted_row', - 28: 't_bar_row', - 29: 'towel_grip_inverted_row', - 30: 'weighted_towel_grip_inverted_row', - 31: 'underhand_grip_cable_row', - 32: 'v_grip_cable_row', - 33: 'wide_grip_seated_cable_row', - }, - ), - 'run_exercise_name': FieldType( - name='run_exercise_name', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: 'run', - 1: 'walk', - 2: 'jog', - 3: 'sprint', - }, - ), - 'schedule': FieldType( - name='schedule', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'workout', - 1: 'course', - }, - ), - 'segment_delete_status': FieldType( - name='segment_delete_status', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'do_not_delete', - 1: 'delete_one', - 2: 'delete_all', - }, - ), - 'segment_lap_status': FieldType( - name='segment_lap_status', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'end', - 1: 'fail', - }, - ), - 'segment_leaderboard_type': FieldType( - name='segment_leaderboard_type', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'overall', - 1: 'personal_best', - 2: 'connections', - 3: 'group', - 4: 'challenger', - 5: 'kom', - 6: 'qom', - 7: 'pr', - 8: 'goal', - 9: 'rival', - 10: 'club_leader', - }, - ), - 'segment_selection_type': FieldType( - name='segment_selection_type', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'starred', - 1: 'suggested', - }, - ), - 'sensor_type': FieldType( - name='sensor_type', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'accelerometer', - 1: 'gyroscope', - 2: 'compass', # Magnetometer - 3: 'barometer', - }, - ), - 'session_trigger': FieldType( - name='session_trigger', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'activity_end', - 1: 'manual', # User changed sport. - 2: 'auto_multi_sport', # Auto multi-sport feature is enabled and user pressed lap button to advance session. - 3: 'fitness_equipment', # Auto sport change caused by user linking to fitness equipment. - }, - ), - 'set_type': FieldType( - name='set_type', - base_type=BASE_TYPES[0x02], # uint8 - values={ - 0: 'rest', - 1: 'active', - }, - ), - 'shoulder_press_exercise_name': FieldType( - name='shoulder_press_exercise_name', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: 'alternating_dumbbell_shoulder_press', - 1: 'arnold_press', - 2: 'barbell_front_squat_to_push_press', - 3: 'barbell_push_press', - 4: 'barbell_shoulder_press', - 5: 'dead_curl_press', - 6: 'dumbbell_alternating_shoulder_press_and_twist', - 7: 'dumbbell_hammer_curl_to_lunge_to_press', - 8: 'dumbbell_push_press', - 9: 'floor_inverted_shoulder_press', - 10: 'weighted_floor_inverted_shoulder_press', - 11: 'inverted_shoulder_press', - 12: 'weighted_inverted_shoulder_press', - 13: 'one_arm_push_press', - 14: 'overhead_barbell_press', - 15: 'overhead_dumbbell_press', - 16: 'seated_barbell_shoulder_press', - 17: 'seated_dumbbell_shoulder_press', - 18: 'single_arm_dumbbell_shoulder_press', - 19: 'single_arm_step_up_and_press', - 20: 'smith_machine_overhead_press', - 21: 'split_stance_hammer_curl_to_press', - 22: 'swiss_ball_dumbbell_shoulder_press', - 23: 'weight_plate_front_raise', - }, - ), - 'shoulder_stability_exercise_name': FieldType( - name='shoulder_stability_exercise_name', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: '90_degree_cable_external_rotation', - 1: 'band_external_rotation', - 2: 'band_internal_rotation', - 3: 'bent_arm_lateral_raise_and_external_rotation', - 4: 'cable_external_rotation', - 5: 'dumbbell_face_pull_with_external_rotation', - 6: 'floor_i_raise', - 7: 'weighted_floor_i_raise', - 8: 'floor_t_raise', - 9: 'weighted_floor_t_raise', - 10: 'floor_y_raise', - 11: 'weighted_floor_y_raise', - 12: 'incline_i_raise', - 13: 'weighted_incline_i_raise', - 14: 'incline_l_raise', - 15: 'weighted_incline_l_raise', - 16: 'incline_t_raise', - 17: 'weighted_incline_t_raise', - 18: 'incline_w_raise', - 19: 'weighted_incline_w_raise', - 20: 'incline_y_raise', - 21: 'weighted_incline_y_raise', - 22: 'lying_external_rotation', - 23: 'seated_dumbbell_external_rotation', - 24: 'standing_l_raise', - 25: 'swiss_ball_i_raise', - 26: 'weighted_swiss_ball_i_raise', - 27: 'swiss_ball_t_raise', - 28: 'weighted_swiss_ball_t_raise', - 29: 'swiss_ball_w_raise', - 30: 'weighted_swiss_ball_w_raise', - 31: 'swiss_ball_y_raise', - 32: 'weighted_swiss_ball_y_raise', - }, - ), - 'shrug_exercise_name': FieldType( - name='shrug_exercise_name', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: 'barbell_jump_shrug', - 1: 'barbell_shrug', - 2: 'barbell_upright_row', - 3: 'behind_the_back_smith_machine_shrug', - 4: 'dumbbell_jump_shrug', - 5: 'dumbbell_shrug', - 6: 'dumbbell_upright_row', - 7: 'incline_dumbbell_shrug', - 8: 'overhead_barbell_shrug', - 9: 'overhead_dumbbell_shrug', - 10: 'scaption_and_shrug', - 11: 'scapular_retraction', - 12: 'serratus_chair_shrug', - 13: 'weighted_serratus_chair_shrug', - 14: 'serratus_shrug', - 15: 'weighted_serratus_shrug', - 16: 'wide_grip_jump_shrug', - }, - ), - 'side': FieldType( - name='side', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'right', - 1: 'left', - }, - ), - 'sit_up_exercise_name': FieldType( - name='sit_up_exercise_name', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: 'alternating_sit_up', - 1: 'weighted_alternating_sit_up', - 2: 'bent_knee_v_up', - 3: 'weighted_bent_knee_v_up', - 4: 'butterfly_sit_up', - 5: 'weighted_butterfly_situp', - 6: 'cross_punch_roll_up', - 7: 'weighted_cross_punch_roll_up', - 8: 'crossed_arms_sit_up', - 9: 'weighted_crossed_arms_sit_up', - 10: 'get_up_sit_up', - 11: 'weighted_get_up_sit_up', - 12: 'hovering_sit_up', - 13: 'weighted_hovering_sit_up', - 14: 'kettlebell_sit_up', - 15: 'medicine_ball_alternating_v_up', - 16: 'medicine_ball_sit_up', - 17: 'medicine_ball_v_up', - 18: 'modified_sit_up', - 19: 'negative_sit_up', - 20: 'one_arm_full_sit_up', - 21: 'reclining_circle', - 22: 'weighted_reclining_circle', - 23: 'reverse_curl_up', - 24: 'weighted_reverse_curl_up', - 25: 'single_leg_swiss_ball_jackknife', - 26: 'weighted_single_leg_swiss_ball_jackknife', - 27: 'the_teaser', - 28: 'the_teaser_weighted', - 29: 'three_part_roll_down', - 30: 'weighted_three_part_roll_down', - 31: 'v_up', - 32: 'weighted_v_up', - 33: 'weighted_russian_twist_on_swiss_ball', - 34: 'weighted_sit_up', - 35: 'x_abs', - 36: 'weighted_x_abs', - 37: 'sit_up', - }, - ), - 'source_type': FieldType( - name='source_type', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'ant', # External device connected with ANT - 1: 'antplus', # External device connected with ANT+ - 2: 'bluetooth', # External device connected with BT - 3: 'bluetooth_low_energy', # External device connected with BLE - 4: 'wifi', # External device connected with Wifi - 5: 'local', # Onboard device - }, - ), - 'sport': FieldType( - name='sport', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'generic', - 1: 'running', - 2: 'cycling', - 3: 'transition', # Mulitsport transition - 4: 'fitness_equipment', - 5: 'swimming', - 6: 'basketball', - 7: 'soccer', - 8: 'tennis', - 9: 'american_football', - 10: 'training', - 11: 'walking', - 12: 'cross_country_skiing', - 13: 'alpine_skiing', - 14: 'snowboarding', - 15: 'rowing', - 16: 'mountaineering', - 17: 'hiking', - 18: 'multisport', - 19: 'paddling', - 20: 'flying', - 21: 'e_biking', - 22: 'motorcycling', - 23: 'boating', - 24: 'driving', - 25: 'golf', - 26: 'hang_gliding', - 27: 'horseback_riding', - 28: 'hunting', - 29: 'fishing', - 30: 'inline_skating', - 31: 'rock_climbing', - 32: 'sailing', - 33: 'ice_skating', - 34: 'sky_diving', - 35: 'snowshoeing', - 36: 'snowmobiling', - 37: 'stand_up_paddleboarding', - 38: 'surfing', - 39: 'wakeboarding', - 40: 'water_skiing', - 41: 'kayaking', - 42: 'rafting', - 43: 'windsurfing', - 44: 'kitesurfing', - 45: 'tactical', - 46: 'jumpmaster', - 47: 'boxing', - 48: 'floor_climbing', - 254: 'all', # All is for goals only to include all sports. - }, - ), - 'sport_bits_0': FieldType( # Bit field corresponding to sport enum type (1 << sport). - name='sport_bits_0', - base_type=BASE_TYPES[0x0A], # uint8z - values={ - 0x01: 'generic', - 0x02: 'running', - 0x04: 'cycling', - 0x08: 'transition', # Mulitsport transition - 0x10: 'fitness_equipment', - 0x20: 'swimming', - 0x40: 'basketball', - 0x80: 'soccer', - }, - ), - 'sport_bits_1': FieldType( # Bit field corresponding to sport enum type (1 << (sport-8)). - name='sport_bits_1', - base_type=BASE_TYPES[0x0A], # uint8z - values={ - 0x01: 'tennis', - 0x02: 'american_football', - 0x04: 'training', - 0x08: 'walking', - 0x10: 'cross_country_skiing', - 0x20: 'alpine_skiing', - 0x40: 'snowboarding', - 0x80: 'rowing', - }, - ), - 'sport_bits_2': FieldType( # Bit field corresponding to sport enum type (1 << (sport-16)). - name='sport_bits_2', - base_type=BASE_TYPES[0x0A], # uint8z - values={ - 0x01: 'mountaineering', - 0x02: 'hiking', - 0x04: 'multisport', - 0x08: 'paddling', - 0x10: 'flying', - 0x20: 'e_biking', - 0x40: 'motorcycling', - 0x80: 'boating', - }, - ), - 'sport_bits_3': FieldType( # Bit field corresponding to sport enum type (1 << (sport-24)). - name='sport_bits_3', - base_type=BASE_TYPES[0x0A], # uint8z - values={ - 0x01: 'driving', - 0x02: 'golf', - 0x04: 'hang_gliding', - 0x08: 'horseback_riding', - 0x10: 'hunting', - 0x20: 'fishing', - 0x40: 'inline_skating', - 0x80: 'rock_climbing', - }, - ), - 'sport_bits_4': FieldType( # Bit field corresponding to sport enum type (1 << (sport-32)). - name='sport_bits_4', - base_type=BASE_TYPES[0x0A], # uint8z - values={ - 0x01: 'sailing', - 0x02: 'ice_skating', - 0x04: 'sky_diving', - 0x08: 'snowshoeing', - 0x10: 'snowmobiling', - 0x20: 'stand_up_paddleboarding', - 0x40: 'surfing', - 0x80: 'wakeboarding', - }, - ), - 'sport_bits_5': FieldType( # Bit field corresponding to sport enum type (1 << (sport-40)). - name='sport_bits_5', - base_type=BASE_TYPES[0x0A], # uint8z - values={ - 0x01: 'water_skiing', - 0x02: 'kayaking', - 0x04: 'rafting', - 0x08: 'windsurfing', - 0x10: 'kitesurfing', - 0x20: 'tactical', - 0x40: 'jumpmaster', - 0x80: 'boxing', - }, - ), - 'sport_bits_6': FieldType( # Bit field corresponding to sport enum type (1 << (sport-48)). - name='sport_bits_6', - base_type=BASE_TYPES[0x0A], # uint8z - values={ - 0x01: 'floor_climbing', - }, - ), - 'sport_event': FieldType( - name='sport_event', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'uncategorized', - 1: 'geocaching', - 2: 'fitness', - 3: 'recreation', - 4: 'race', - 5: 'special_event', - 6: 'training', - 7: 'transportation', - 8: 'touring', - }, - ), - 'squat_exercise_name': FieldType( - name='squat_exercise_name', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: 'leg_press', - 1: 'back_squat_with_body_bar', - 2: 'back_squats', - 3: 'weighted_back_squats', - 4: 'balancing_squat', - 5: 'weighted_balancing_squat', - 6: 'barbell_back_squat', - 7: 'barbell_box_squat', - 8: 'barbell_front_squat', - 9: 'barbell_hack_squat', - 10: 'barbell_hang_squat_snatch', - 11: 'barbell_lateral_step_up', - 12: 'barbell_quarter_squat', - 13: 'barbell_siff_squat', - 14: 'barbell_squat_snatch', - 15: 'barbell_squat_with_heels_raised', - 16: 'barbell_stepover', - 17: 'barbell_step_up', - 18: 'bench_squat_with_rotational_chop', - 19: 'weighted_bench_squat_with_rotational_chop', - 20: 'body_weight_wall_squat', - 21: 'weighted_wall_squat', - 22: 'box_step_squat', - 23: 'weighted_box_step_squat', - 24: 'braced_squat', - 25: 'crossed_arm_barbell_front_squat', - 26: 'crossover_dumbbell_step_up', - 27: 'dumbbell_front_squat', - 28: 'dumbbell_split_squat', - 29: 'dumbbell_squat', - 30: 'dumbbell_squat_clean', - 31: 'dumbbell_stepover', - 32: 'dumbbell_step_up', - 33: 'elevated_single_leg_squat', - 34: 'weighted_elevated_single_leg_squat', - 35: 'figure_four_squats', - 36: 'weighted_figure_four_squats', - 37: 'goblet_squat', - 38: 'kettlebell_squat', - 39: 'kettlebell_swing_overhead', - 40: 'kettlebell_swing_with_flip_to_squat', - 41: 'lateral_dumbbell_step_up', - 42: 'one_legged_squat', - 43: 'overhead_dumbbell_squat', - 44: 'overhead_squat', - 45: 'partial_single_leg_squat', - 46: 'weighted_partial_single_leg_squat', - 47: 'pistol_squat', - 48: 'weighted_pistol_squat', - 49: 'plie_slides', - 50: 'weighted_plie_slides', - 51: 'plie_squat', - 52: 'weighted_plie_squat', - 53: 'prisoner_squat', - 54: 'weighted_prisoner_squat', - 55: 'single_leg_bench_get_up', - 56: 'weighted_single_leg_bench_get_up', - 57: 'single_leg_bench_squat', - 58: 'weighted_single_leg_bench_squat', - 59: 'single_leg_squat_on_swiss_ball', - 60: 'weighted_single_leg_squat_on_swiss_ball', - 61: 'squat', - 62: 'weighted_squat', - 63: 'squats_with_band', - 64: 'staggered_squat', - 65: 'weighted_staggered_squat', - 66: 'step_up', - 67: 'weighted_step_up', - 68: 'suitcase_squats', - 69: 'sumo_squat', - 70: 'sumo_squat_slide_in', - 71: 'weighted_sumo_squat_slide_in', - 72: 'sumo_squat_to_high_pull', - 73: 'sumo_squat_to_stand', - 74: 'weighted_sumo_squat_to_stand', - 75: 'sumo_squat_with_rotation', - 76: 'weighted_sumo_squat_with_rotation', - 77: 'swiss_ball_body_weight_wall_squat', - 78: 'weighted_swiss_ball_wall_squat', - 79: 'thrusters', - 80: 'uneven_squat', - 81: 'weighted_uneven_squat', - 82: 'waist_slimming_squat', - 83: 'wall_ball', - 84: 'wide_stance_barbell_squat', - 85: 'wide_stance_goblet_squat', - 86: 'zercher_squat', - }, - ), - 'stroke_type': FieldType( - name='stroke_type', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'no_event', - 1: 'other', # stroke was detected but cannot be identified - 2: 'serve', - 3: 'forehand', - 4: 'backhand', - 5: 'smash', - }, - ), - 'sub_sport': FieldType( - name='sub_sport', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'generic', - 1: 'treadmill', # Run/Fitness Equipment - 2: 'street', # Run - 3: 'trail', # Run - 4: 'track', # Run - 5: 'spin', # Cycling - 6: 'indoor_cycling', # Cycling/Fitness Equipment - 7: 'road', # Cycling - 8: 'mountain', # Cycling - 9: 'downhill', # Cycling - 10: 'recumbent', # Cycling - 11: 'cyclocross', # Cycling - 12: 'hand_cycling', # Cycling - 13: 'track_cycling', # Cycling - 14: 'indoor_rowing', # Fitness Equipment - 15: 'elliptical', # Fitness Equipment - 16: 'stair_climbing', # Fitness Equipment - 17: 'lap_swimming', # Swimming - 18: 'open_water', # Swimming - 19: 'flexibility_training', # Training - 20: 'strength_training', # Training - 21: 'warm_up', # Tennis - 22: 'match', # Tennis - 23: 'exercise', # Tennis - 24: 'challenge', - 25: 'indoor_skiing', # Fitness Equipment - 26: 'cardio_training', # Training - 27: 'indoor_walking', # Walking/Fitness Equipment - 28: 'e_bike_fitness', # E-Biking - 29: 'bmx', # Cycling - 30: 'casual_walking', # Walking - 31: 'speed_walking', # Walking - 32: 'bike_to_run_transition', # Transition - 33: 'run_to_bike_transition', # Transition - 34: 'swim_to_bike_transition', # Transition - 35: 'atv', # Motorcycling - 36: 'motocross', # Motorcycling - 37: 'backcountry', # Alpine Skiing/Snowboarding - 38: 'resort', # Alpine Skiing/Snowboarding - 39: 'rc_drone', # Flying - 40: 'wingsuit', # Flying - 41: 'whitewater', # Kayaking/Rafting - 42: 'skate_skiing', # Cross Country Skiing - 43: 'yoga', # Training - 44: 'pilates', # Training - 45: 'indoor_running', # Run - 46: 'gravel_cycling', # Cycling - 47: 'e_bike_mountain', # Cycling - 48: 'commuting', # Cycling - 49: 'mixed_surface', # Cycling - 50: 'navigate', - 51: 'track_me', - 52: 'map', - 53: 'single_gas_diving', # Diving - 54: 'multi_gas_diving', # Diving - 55: 'gauge_diving', # Diving - 56: 'apnea_diving', # Diving - 57: 'apnea_hunting', # Diving - 58: 'virtual_activity', - 59: 'obstacle', # Used for events where participants run, crawl through mud, climb over walls, etc. - 254: 'all', - }, - ), - 'supported_exd_screen_layouts': FieldType( - name='supported_exd_screen_layouts', - base_type=BASE_TYPES[0x8C], # uint32z - values={ - 0x00000001: 'full_screen', - 0x00000002: 'half_vertical', - 0x00000004: 'half_horizontal', - 0x00000008: 'half_vertical_right_split', - 0x00000010: 'half_horizontal_bottom_split', - 0x00000020: 'full_quarter_split', - 0x00000040: 'half_vertical_left_split', - 0x00000080: 'half_horizontal_top_split', - }, - ), - 'swim_stroke': FieldType( - name='swim_stroke', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'freestyle', - 1: 'backstroke', - 2: 'breaststroke', - 3: 'butterfly', - 4: 'drill', - 5: 'mixed', - 6: 'im', # IM is a mixed interval containing the same number of lengths for each of: Butterfly, Backstroke, Breaststroke, Freestyle, swam in that order. - }, - ), - 'switch': FieldType( - name='switch', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'off', - 1: 'on', - 2: 'auto', - }, - ), - 'time_into_day': FieldType( # number of seconds into the day since 00:00:00 UTC - name='time_into_day', - base_type=BASE_TYPES[0x86], # uint32 - ), - 'time_mode': FieldType( - name='time_mode', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'hour12', - 1: 'hour24', # Does not use a leading zero and has a colon - 2: 'military', # Uses a leading zero and does not have a colon - 3: 'hour_12_with_seconds', - 4: 'hour_24_with_seconds', - 5: 'utc', - }, - ), - 'time_zone': FieldType( - name='time_zone', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'almaty', - 1: 'bangkok', - 2: 'bombay', - 3: 'brasilia', - 4: 'cairo', - 5: 'cape_verde_is', - 6: 'darwin', - 7: 'eniwetok', - 8: 'fiji', - 9: 'hong_kong', - 10: 'islamabad', - 11: 'kabul', - 12: 'magadan', - 13: 'mid_atlantic', - 14: 'moscow', - 15: 'muscat', - 16: 'newfoundland', - 17: 'samoa', - 18: 'sydney', - 19: 'tehran', - 20: 'tokyo', - 21: 'us_alaska', - 22: 'us_atlantic', - 23: 'us_central', - 24: 'us_eastern', - 25: 'us_hawaii', - 26: 'us_mountain', - 27: 'us_pacific', - 28: 'other', - 29: 'auckland', - 30: 'kathmandu', - 31: 'europe_western_wet', - 32: 'europe_central_cet', - 33: 'europe_eastern_eet', - 34: 'jakarta', - 35: 'perth', - 36: 'adelaide', - 37: 'brisbane', - 38: 'tasmania', - 39: 'iceland', - 40: 'amsterdam', - 41: 'athens', - 42: 'barcelona', - 43: 'berlin', - 44: 'brussels', - 45: 'budapest', - 46: 'copenhagen', - 47: 'dublin', - 48: 'helsinki', - 49: 'lisbon', - 50: 'london', - 51: 'madrid', - 52: 'munich', - 53: 'oslo', - 54: 'paris', - 55: 'prague', - 56: 'reykjavik', - 57: 'rome', - 58: 'stockholm', - 59: 'vienna', - 60: 'warsaw', - 61: 'zurich', - 62: 'quebec', - 63: 'ontario', - 64: 'manitoba', - 65: 'saskatchewan', - 66: 'alberta', - 67: 'british_columbia', - 68: 'boise', - 69: 'boston', - 70: 'chicago', - 71: 'dallas', - 72: 'denver', - 73: 'kansas_city', - 74: 'las_vegas', - 75: 'los_angeles', - 76: 'miami', - 77: 'minneapolis', - 78: 'new_york', - 79: 'new_orleans', - 80: 'phoenix', - 81: 'santa_fe', - 82: 'seattle', - 83: 'washington_dc', - 84: 'us_arizona', - 85: 'chita', - 86: 'ekaterinburg', - 87: 'irkutsk', - 88: 'kaliningrad', - 89: 'krasnoyarsk', - 90: 'novosibirsk', - 91: 'petropavlovsk_kamchatskiy', - 92: 'samara', - 93: 'vladivostok', - 94: 'mexico_central', - 95: 'mexico_mountain', - 96: 'mexico_pacific', - 97: 'cape_town', - 98: 'winkhoek', - 99: 'lagos', - 100: 'riyahd', - 101: 'venezuela', - 102: 'australia_lh', - 103: 'santiago', - 253: 'manual', - 254: 'automatic', - }, - ), - 'timer_trigger': FieldType( # timer event data - name='timer_trigger', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'manual', - 1: 'auto', - 2: 'fitness_equipment', - }, - ), - 'tissue_model_type': FieldType( - name='tissue_model_type', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'zhl_16c', # Buhlmann's decompression algorithm, version C - }, - ), - 'tone': FieldType( - name='tone', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'off', - 1: 'tone', - 2: 'vibrate', - 3: 'tone_and_vibrate', - }, - ), - 'total_body_exercise_name': FieldType( - name='total_body_exercise_name', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: 'burpee', - 1: 'weighted_burpee', - 2: 'burpee_box_jump', - 3: 'weighted_burpee_box_jump', - 4: 'high_pull_burpee', - 5: 'man_makers', - 6: 'one_arm_burpee', - 7: 'squat_thrusts', - 8: 'weighted_squat_thrusts', - 9: 'squat_plank_push_up', - 10: 'weighted_squat_plank_push_up', - 11: 'standing_t_rotation_balance', - 12: 'weighted_standing_t_rotation_balance', - }, - ), - 'triceps_extension_exercise_name': FieldType( - name='triceps_extension_exercise_name', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: 'bench_dip', - 1: 'weighted_bench_dip', - 2: 'body_weight_dip', - 3: 'cable_kickback', - 4: 'cable_lying_triceps_extension', - 5: 'cable_overhead_triceps_extension', - 6: 'dumbbell_kickback', - 7: 'dumbbell_lying_triceps_extension', - 8: 'ez_bar_overhead_triceps_extension', - 9: 'incline_dip', - 10: 'weighted_incline_dip', - 11: 'incline_ez_bar_lying_triceps_extension', - 12: 'lying_dumbbell_pullover_to_extension', - 13: 'lying_ez_bar_triceps_extension', - 14: 'lying_triceps_extension_to_close_grip_bench_press', - 15: 'overhead_dumbbell_triceps_extension', - 16: 'reclining_triceps_press', - 17: 'reverse_grip_pressdown', - 18: 'reverse_grip_triceps_pressdown', - 19: 'rope_pressdown', - 20: 'seated_barbell_overhead_triceps_extension', - 21: 'seated_dumbbell_overhead_triceps_extension', - 22: 'seated_ez_bar_overhead_triceps_extension', - 23: 'seated_single_arm_overhead_dumbbell_extension', - 24: 'single_arm_dumbbell_overhead_triceps_extension', - 25: 'single_dumbbell_seated_overhead_triceps_extension', - 26: 'single_leg_bench_dip_and_kick', - 27: 'weighted_single_leg_bench_dip_and_kick', - 28: 'single_leg_dip', - 29: 'weighted_single_leg_dip', - 30: 'static_lying_triceps_extension', - 31: 'suspended_dip', - 32: 'weighted_suspended_dip', - 33: 'swiss_ball_dumbbell_lying_triceps_extension', - 34: 'swiss_ball_ez_bar_lying_triceps_extension', - 35: 'swiss_ball_ez_bar_overhead_triceps_extension', - 36: 'tabletop_dip', - 37: 'weighted_tabletop_dip', - 38: 'triceps_extension_on_floor', - 39: 'triceps_pressdown', - 40: 'weighted_dip', - }, - ), - 'turn_type': FieldType( - name='turn_type', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'arriving_idx', - 1: 'arriving_left_idx', - 2: 'arriving_right_idx', - 3: 'arriving_via_idx', - 4: 'arriving_via_left_idx', - 5: 'arriving_via_right_idx', - 6: 'bear_keep_left_idx', - 7: 'bear_keep_right_idx', - 8: 'continue_idx', - 9: 'exit_left_idx', - 10: 'exit_right_idx', - 11: 'ferry_idx', - 12: 'roundabout_45_idx', - 13: 'roundabout_90_idx', - 14: 'roundabout_135_idx', - 15: 'roundabout_180_idx', - 16: 'roundabout_225_idx', - 17: 'roundabout_270_idx', - 18: 'roundabout_315_idx', - 19: 'roundabout_360_idx', - 20: 'roundabout_neg_45_idx', - 21: 'roundabout_neg_90_idx', - 22: 'roundabout_neg_135_idx', - 23: 'roundabout_neg_180_idx', - 24: 'roundabout_neg_225_idx', - 25: 'roundabout_neg_270_idx', - 26: 'roundabout_neg_315_idx', - 27: 'roundabout_neg_360_idx', - 28: 'roundabout_generic_idx', - 29: 'roundabout_neg_generic_idx', - 30: 'sharp_turn_left_idx', - 31: 'sharp_turn_right_idx', - 32: 'turn_left_idx', - 33: 'turn_right_idx', - 34: 'uturn_left_idx', - 35: 'uturn_right_idx', - 36: 'icon_inv_idx', - 37: 'icon_idx_cnt', - }, - ), - 'user_local_id': FieldType( - name='user_local_id', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0x0000: 'local_min', - 0x000F: 'local_max', - 0x0010: 'stationary_min', - 0x00FF: 'stationary_max', - 0x0100: 'portable_min', - 0xFFFE: 'portable_max', - }, - ), - 'warm_up_exercise_name': FieldType( - name='warm_up_exercise_name', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0: 'quadruped_rocking', - 1: 'neck_tilts', - 2: 'ankle_circles', - 3: 'ankle_dorsiflexion_with_band', - 4: 'ankle_internal_rotation', - 5: 'arm_circles', - 6: 'bent_over_reach_to_sky', - 7: 'cat_camel', - 8: 'elbow_to_foot_lunge', - 9: 'forward_and_backward_leg_swings', - 10: 'groiners', - 11: 'inverted_hamstring_stretch', - 12: 'lateral_duck_under', - 13: 'neck_rotations', - 14: 'opposite_arm_and_leg_balance', - 15: 'reach_roll_and_lift', - 16: 'scorpion', - 17: 'shoulder_circles', - 18: 'side_to_side_leg_swings', - 19: 'sleeper_stretch', - 20: 'slide_out', - 21: 'swiss_ball_hip_crossover', - 22: 'swiss_ball_reach_roll_and_lift', - 23: 'swiss_ball_windshield_wipers', - 24: 'thoracic_rotation', - 25: 'walking_high_kicks', - 26: 'walking_high_knees', - 27: 'walking_knee_hugs', - 28: 'walking_leg_cradles', - 29: 'walkout', - 30: 'walkout_from_push_up_position', - }, - ), - 'watchface_mode': FieldType( - name='watchface_mode', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'digital', - 1: 'analog', - 2: 'connect_iq', - 3: 'disabled', - }, - ), - 'water_type': FieldType( - name='water_type', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'fresh', - 1: 'salt', - 2: 'en13319', - 3: 'custom', - }, - ), - 'weather_report': FieldType( - name='weather_report', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'current', - 1: 'forecast', # Deprecated use hourly_forecast instead - 1: 'hourly_forecast', - 2: 'daily_forecast', - }, - ), - 'weather_severe_type': FieldType( - name='weather_severe_type', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'unspecified', - 1: 'tornado', - 2: 'tsunami', - 3: 'hurricane', - 4: 'extreme_wind', - 5: 'typhoon', - 6: 'inland_hurricane', - 7: 'hurricane_force_wind', - 8: 'waterspout', - 9: 'severe_thunderstorm', - 10: 'wreckhouse_winds', - 11: 'les_suetes_wind', - 12: 'avalanche', - 13: 'flash_flood', - 14: 'tropical_storm', - 15: 'inland_tropical_storm', - 16: 'blizzard', - 17: 'ice_storm', - 18: 'freezing_rain', - 19: 'debris_flow', - 20: 'flash_freeze', - 21: 'dust_storm', - 22: 'high_wind', - 23: 'winter_storm', - 24: 'heavy_freezing_spray', - 25: 'extreme_cold', - 26: 'wind_chill', - 27: 'cold_wave', - 28: 'heavy_snow_alert', - 29: 'lake_effect_blowing_snow', - 30: 'snow_squall', - 31: 'lake_effect_snow', - 32: 'winter_weather', - 33: 'sleet', - 34: 'snowfall', - 35: 'snow_and_blowing_snow', - 36: 'blowing_snow', - 37: 'snow_alert', - 38: 'arctic_outflow', - 39: 'freezing_drizzle', - 40: 'storm', - 41: 'storm_surge', - 42: 'rainfall', - 43: 'areal_flood', - 44: 'coastal_flood', - 45: 'lakeshore_flood', - 46: 'excessive_heat', - 47: 'heat', - 48: 'weather', - 49: 'high_heat_and_humidity', - 50: 'humidex_and_health', - 51: 'humidex', - 52: 'gale', - 53: 'freezing_spray', - 54: 'special_marine', - 55: 'squall', - 56: 'strong_wind', - 57: 'lake_wind', - 58: 'marine_weather', - 59: 'wind', - 60: 'small_craft_hazardous_seas', - 61: 'hazardous_seas', - 62: 'small_craft', - 63: 'small_craft_winds', - 64: 'small_craft_rough_bar', - 65: 'high_water_level', - 66: 'ashfall', - 67: 'freezing_fog', - 68: 'dense_fog', - 69: 'dense_smoke', - 70: 'blowing_dust', - 71: 'hard_freeze', - 72: 'freeze', - 73: 'frost', - 74: 'fire_weather', - 75: 'flood', - 76: 'rip_tide', - 77: 'high_surf', - 78: 'smog', - 79: 'air_quality', - 80: 'brisk_wind', - 81: 'air_stagnation', - 82: 'low_water', - 83: 'hydrological', - 84: 'special_weather', - }, - ), - 'weather_severity': FieldType( - name='weather_severity', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'unknown', - 1: 'warning', - 2: 'watch', - 3: 'advisory', - 4: 'statement', - }, - ), - 'weather_status': FieldType( - name='weather_status', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'clear', - 1: 'partly_cloudy', - 2: 'mostly_cloudy', - 3: 'rain', - 4: 'snow', - 5: 'windy', - 6: 'thunderstorms', - 7: 'wintry_mix', - 8: 'fog', - 11: 'hazy', - 12: 'hail', - 13: 'scattered_showers', - 14: 'scattered_thunderstorms', - 15: 'unknown_precipitation', - 16: 'light_rain', - 17: 'heavy_rain', - 18: 'light_snow', - 19: 'heavy_snow', - 20: 'light_rain_snow', - 21: 'heavy_rain_snow', - 22: 'cloudy', - }, - ), - 'weight': FieldType( - name='weight', - base_type=BASE_TYPES[0x84], # uint16 - values={ - 0xFFFE: 'calculating', - }, - ), - 'wkt_step_duration': FieldType( - name='wkt_step_duration', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'time', - 1: 'distance', - 2: 'hr_less_than', - 3: 'hr_greater_than', - 4: 'calories', - 5: 'open', - 6: 'repeat_until_steps_cmplt', - 7: 'repeat_until_time', - 8: 'repeat_until_distance', - 9: 'repeat_until_calories', - 10: 'repeat_until_hr_less_than', - 11: 'repeat_until_hr_greater_than', - 12: 'repeat_until_power_less_than', - 13: 'repeat_until_power_greater_than', - 14: 'power_less_than', - 15: 'power_greater_than', - 16: 'training_peaks_tss', - 17: 'repeat_until_power_last_lap_less_than', - 18: 'repeat_until_max_power_last_lap_less_than', - 19: 'power_3s_less_than', - 20: 'power_10s_less_than', - 21: 'power_30s_less_than', - 22: 'power_3s_greater_than', - 23: 'power_10s_greater_than', - 24: 'power_30s_greater_than', - 25: 'power_lap_less_than', - 26: 'power_lap_greater_than', - 27: 'repeat_until_training_peaks_tss', - 28: 'repetition_time', - 29: 'reps', - }, - ), - 'wkt_step_target': FieldType( - name='wkt_step_target', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'speed', - 1: 'heart_rate', - 2: 'open', - 3: 'cadence', - 4: 'power', - 5: 'grade', - 6: 'resistance', - 7: 'power_3s', - 8: 'power_10s', - 9: 'power_30s', - 10: 'power_lap', - 11: 'swim_stroke', - 12: 'speed_lap', - 13: 'heart_rate_lap', - }, - ), - 'workout_capabilities': FieldType( - name='workout_capabilities', - base_type=BASE_TYPES[0x8C], # uint32z - values={ - 0x00000001: 'interval', - 0x00000002: 'custom', - 0x00000004: 'fitness_equipment', - 0x00000008: 'firstbeat', - 0x00000010: 'new_leaf', - 0x00000020: 'tcx', # For backwards compatibility. Watch should add missing id fields then clear flag. - 0x00000080: 'speed', # Speed source required for workout step. - 0x00000100: 'heart_rate', # Heart rate source required for workout step. - 0x00000200: 'distance', # Distance source required for workout step. - 0x00000400: 'cadence', # Cadence source required for workout step. - 0x00000800: 'power', # Power source required for workout step. - 0x00001000: 'grade', # Grade source required for workout step. - 0x00002000: 'resistance', # Resistance source required for workout step. - 0x00004000: 'protected', - }, - ), - 'workout_equipment': FieldType( - name='workout_equipment', - base_type=BASE_TYPES[0x00], # enum - values={ - 0: 'none', - 1: 'swim_fins', - 2: 'swim_kickboard', - 3: 'swim_paddles', - 4: 'swim_pull_buoy', - 5: 'swim_snorkel', - }, - ), - 'workout_hr': FieldType( # 0 - 100 indicates% of max hr; >100 indicates bpm (255 max) plus 100 - name='workout_hr', - base_type=BASE_TYPES[0x86], # uint32 - values={ - 100: 'bpm_offset', - }, - ), - 'workout_power': FieldType( # 0 - 1000 indicates % of functional threshold power; >1000 indicates watts plus 1000. - name='workout_power', - base_type=BASE_TYPES[0x86], # uint32 - values={ - 1000: 'watts_offset', - }, - ), -} - - -FIELD_TYPE_TIMESTAMP = Field(name='timestamp', type=FIELD_TYPES['date_time'], def_num=253, units='s') - - -MESSAGE_TYPES = { - # **************************** Common Messages ***************************** - 0: MessageType( # Must be first message in file. - name='file_id', - mesg_num=0, - fields={ - 0: Field( - name='type', - type=FIELD_TYPES['file'], - def_num=0, - ), - 1: Field( - name='manufacturer', - type=FIELD_TYPES['manufacturer'], - def_num=1, - ), - 2: Field( - name='product', - type=BASE_TYPES[0x84], # uint16 - def_num=2, - subfields=( - SubField( - name='garmin_product', - def_num=2, - type=FIELD_TYPES['garmin_product'], - ref_fields=( - ReferenceField( - name='manufacturer', - def_num=1, - value='garmin', - raw_value=1, - ), - ReferenceField( - name='manufacturer', - def_num=1, - value='dynastream', - raw_value=15, - ), - ReferenceField( - name='manufacturer', - def_num=1, - value='dynastream_oem', - raw_value=13, - ), - ) - ), - SubField( - name='strava_product', - def_num=2, - type=FIELD_TYPES['strava_product'], - ref_fields=( - ReferenceField( - name='manufacturer', - def_num=1, - value='strava', - raw_value=265, - ), - ), - ), - ), - ), - 3: Field( - name='serial_number', - type=BASE_TYPES[0x8C], # uint32z - def_num=3, - ), - 4: Field( # Only set for files that are can be created/erased. - name='time_created', - type=FIELD_TYPES['date_time'], - def_num=4, - ), - 5: Field( # Only set for files that are not created/erased. - name='number', - type=BASE_TYPES[0x84], # uint16 - def_num=5, - ), - 8: Field( # Optional free form string to indicate the devices name or model - name='product_name', - type=BASE_TYPES[0x07], # string - def_num=8, - ), - }, - ), - - - # ************************************ ************************************ - 1: MessageType( - name='capabilities', - mesg_num=1, - fields={ - 0: Field( # Use language_bits_x types where x is index of array. - name='languages', - type=BASE_TYPES[0x0A], # uint8z - def_num=0, - ), - 1: Field( # Use sport_bits_x types where x is index of array. - name='sports', - type=FIELD_TYPES['sport_bits_0'], - def_num=1, - ), - 21: Field( - name='workouts_supported', - type=FIELD_TYPES['workout_capabilities'], - def_num=21, - ), - 23: Field( - name='connectivity_supported', - type=FIELD_TYPES['connectivity_capabilities'], - def_num=23, - ), - }, - ), - 4: MessageType( - name='hrm_profile', - mesg_num=4, - fields={ - 0: Field( - name='enabled', - type=FIELD_TYPES['bool'], - def_num=0, - ), - 1: Field( - name='hrm_ant_id', - type=BASE_TYPES[0x8B], # uint16z - def_num=1, - ), - 2: Field( - name='log_hrv', - type=FIELD_TYPES['bool'], - def_num=2, - ), - 3: Field( - name='hrm_ant_id_trans_type', - type=BASE_TYPES[0x0A], # uint8z - def_num=3, - ), - 254: Field( - name='message_index', - type=FIELD_TYPES['message_index'], - def_num=254, - ), - }, - ), - 5: MessageType( - name='sdm_profile', - mesg_num=5, - fields={ - 0: Field( - name='enabled', - type=FIELD_TYPES['bool'], - def_num=0, - ), - 1: Field( - name='sdm_ant_id', - type=BASE_TYPES[0x8B], # uint16z - def_num=1, - ), - 2: Field( - name='sdm_cal_factor', - type=BASE_TYPES[0x84], # uint16 - def_num=2, - scale=10, - units='%', - ), - 3: Field( - name='odometer', - type=BASE_TYPES[0x86], # uint32 - def_num=3, - scale=100, - units='m', - ), - 4: Field( # Use footpod for speed source instead of GPS - name='speed_source', - type=FIELD_TYPES['bool'], - def_num=4, - ), - 5: Field( - name='sdm_ant_id_trans_type', - type=BASE_TYPES[0x0A], # uint8z - def_num=5, - ), - 7: Field( # Rollover counter that can be used to extend the odometer - name='odometer_rollover', - type=BASE_TYPES[0x02], # uint8 - def_num=7, - ), - 254: Field( - name='message_index', - type=FIELD_TYPES['message_index'], - def_num=254, - ), - }, - ), - 6: MessageType( - name='bike_profile', - mesg_num=6, - fields={ - 0: Field( - name='name', - type=BASE_TYPES[0x07], # string - def_num=0, - ), - 1: Field( - name='sport', - type=FIELD_TYPES['sport'], - def_num=1, - ), - 2: Field( - name='sub_sport', - type=FIELD_TYPES['sub_sport'], - def_num=2, - ), - 3: Field( - name='odometer', - type=BASE_TYPES[0x86], # uint32 - def_num=3, - scale=100, - units='m', - ), - 4: Field( - name='bike_spd_ant_id', - type=BASE_TYPES[0x8B], # uint16z - def_num=4, - ), - 5: Field( - name='bike_cad_ant_id', - type=BASE_TYPES[0x8B], # uint16z - def_num=5, - ), - 6: Field( - name='bike_spdcad_ant_id', - type=BASE_TYPES[0x8B], # uint16z - def_num=6, - ), - 7: Field( - name='bike_power_ant_id', - type=BASE_TYPES[0x8B], # uint16z - def_num=7, - ), - 8: Field( - name='custom_wheelsize', - type=BASE_TYPES[0x84], # uint16 - def_num=8, - scale=1000, - units='m', - ), - 9: Field( - name='auto_wheelsize', - type=BASE_TYPES[0x84], # uint16 - def_num=9, - scale=1000, - units='m', - ), - 10: Field( - name='bike_weight', - type=BASE_TYPES[0x84], # uint16 - def_num=10, - scale=10, - units='kg', - ), - 11: Field( - name='power_cal_factor', - type=BASE_TYPES[0x84], # uint16 - def_num=11, - scale=10, - units='%', - ), - 12: Field( - name='auto_wheel_cal', - type=FIELD_TYPES['bool'], - def_num=12, - ), - 13: Field( - name='auto_power_zero', - type=FIELD_TYPES['bool'], - def_num=13, - ), - 14: Field( - name='id', - type=BASE_TYPES[0x02], # uint8 - def_num=14, - ), - 15: Field( - name='spd_enabled', - type=FIELD_TYPES['bool'], - def_num=15, - ), - 16: Field( - name='cad_enabled', - type=FIELD_TYPES['bool'], - def_num=16, - ), - 17: Field( - name='spdcad_enabled', - type=FIELD_TYPES['bool'], - def_num=17, - ), - 18: Field( - name='power_enabled', - type=FIELD_TYPES['bool'], - def_num=18, - ), - 19: Field( - name='crank_length', - type=BASE_TYPES[0x02], # uint8 - def_num=19, - scale=2, - offset=-110, - units='mm', - ), - 20: Field( - name='enabled', - type=FIELD_TYPES['bool'], - def_num=20, - ), - 21: Field( - name='bike_spd_ant_id_trans_type', - type=BASE_TYPES[0x0A], # uint8z - def_num=21, - ), - 22: Field( - name='bike_cad_ant_id_trans_type', - type=BASE_TYPES[0x0A], # uint8z - def_num=22, - ), - 23: Field( - name='bike_spdcad_ant_id_trans_type', - type=BASE_TYPES[0x0A], # uint8z - def_num=23, - ), - 24: Field( - name='bike_power_ant_id_trans_type', - type=BASE_TYPES[0x0A], # uint8z - def_num=24, - ), - 37: Field( # Rollover counter that can be used to extend the odometer - name='odometer_rollover', - type=BASE_TYPES[0x02], # uint8 - def_num=37, - ), - 38: Field( # Number of front gears - name='front_gear_num', - type=BASE_TYPES[0x0A], # uint8z - def_num=38, - ), - 39: Field( # Number of teeth on each gear 0 is innermost - name='front_gear', - type=BASE_TYPES[0x0A], # uint8z - def_num=39, - ), - 40: Field( # Number of rear gears - name='rear_gear_num', - type=BASE_TYPES[0x0A], # uint8z - def_num=40, - ), - 41: Field( # Number of teeth on each gear 0 is innermost - name='rear_gear', - type=BASE_TYPES[0x0A], # uint8z - def_num=41, - ), - 44: Field( - name='shimano_di2_enabled', - type=FIELD_TYPES['bool'], - def_num=44, - ), - 254: Field( - name='message_index', - type=FIELD_TYPES['message_index'], - def_num=254, - ), - }, - ), - 8: MessageType( - name='hr_zone', - mesg_num=8, - fields={ - 1: Field( - name='high_bpm', - type=BASE_TYPES[0x02], # uint8 - def_num=1, - units='bpm', - ), - 2: Field( - name='name', - type=BASE_TYPES[0x07], # string - def_num=2, - ), - 254: Field( - name='message_index', - type=FIELD_TYPES['message_index'], - def_num=254, - ), - }, - ), - 9: MessageType( - name='power_zone', - mesg_num=9, - fields={ - 1: Field( - name='high_value', - type=BASE_TYPES[0x84], # uint16 - def_num=1, - units='watts', - ), - 2: Field( - name='name', - type=BASE_TYPES[0x07], # string - def_num=2, - ), - 254: Field( - name='message_index', - type=FIELD_TYPES['message_index'], - def_num=254, - ), - }, - ), - 10: MessageType( - name='met_zone', - mesg_num=10, - fields={ - 1: Field( - name='high_bpm', - type=BASE_TYPES[0x02], # uint8 - def_num=1, - ), - 2: Field( - name='calories', - type=BASE_TYPES[0x84], # uint16 - def_num=2, - scale=10, - units='kcal/min', - ), - 3: Field( - name='fat_calories', - type=BASE_TYPES[0x02], # uint8 - def_num=3, - scale=10, - units='kcal/min', - ), - 254: Field( - name='message_index', - type=FIELD_TYPES['message_index'], - def_num=254, - ), - }, - ), - 12: MessageType( - name='sport', - mesg_num=12, - fields={ - 0: Field( - name='sport', - type=FIELD_TYPES['sport'], - def_num=0, - ), - 1: Field( - name='sub_sport', - type=FIELD_TYPES['sub_sport'], - def_num=1, - ), - 3: Field( - name='name', - type=BASE_TYPES[0x07], # string - def_num=3, - ), - }, - ), - 18: MessageType( - name='session', - mesg_num=18, - fields={ - 0: Field( # session - name='event', - type=FIELD_TYPES['event'], - def_num=0, - ), - 1: Field( # stop - name='event_type', - type=FIELD_TYPES['event_type'], - def_num=1, - ), - 2: Field( - name='start_time', - type=FIELD_TYPES['date_time'], - def_num=2, - ), - 3: Field( - name='start_position_lat', - type=BASE_TYPES[0x85], # sint32 - def_num=3, - units='semicircles', - ), - 4: Field( - name='start_position_long', - type=BASE_TYPES[0x85], # sint32 - def_num=4, - units='semicircles', - ), - 5: Field( - name='sport', - type=FIELD_TYPES['sport'], - def_num=5, - ), - 6: Field( - name='sub_sport', - type=FIELD_TYPES['sub_sport'], - def_num=6, - ), - 7: Field( # Time (includes pauses) - name='total_elapsed_time', - type=BASE_TYPES[0x86], # uint32 - def_num=7, - scale=1000, - units='s', - ), - 8: Field( # Timer Time (excludes pauses) - name='total_timer_time', - type=BASE_TYPES[0x86], # uint32 - def_num=8, - scale=1000, - units='s', - ), - 9: Field( - name='total_distance', - type=BASE_TYPES[0x86], # uint32 - def_num=9, - scale=100, - units='m', - ), - 10: Field( - name='total_cycles', - type=BASE_TYPES[0x86], # uint32 - def_num=10, - units='cycles', - subfields=( - SubField( - name='total_strides', - def_num=10, - type=BASE_TYPES[0x86], # uint32 - units='strides', - ref_fields=( - ReferenceField( - name='sport', - def_num=5, - value='running', - raw_value=1, - ), - ReferenceField( - name='sport', - def_num=5, - value='walking', - raw_value=11, - ), - ), - ), - ), - ), - 11: Field( - name='total_calories', - type=BASE_TYPES[0x84], # uint16 - def_num=11, - units='kcal', - ), - 13: Field( - name='total_fat_calories', - type=BASE_TYPES[0x84], # uint16 - def_num=13, - units='kcal', - ), - 14: Field( # total_distance / total_timer_time - name='avg_speed', - type=BASE_TYPES[0x84], # uint16 - def_num=14, - scale=1000, - units='m/s', - components=( - ComponentField( - name='enhanced_avg_speed', - def_num=124, - scale=1000, - units='m/s', - accumulate=False, - bits=16, - bit_offset=0, - ), - ), - ), - 15: Field( - name='max_speed', - type=BASE_TYPES[0x84], # uint16 - def_num=15, - scale=1000, - units='m/s', - components=( - ComponentField( - name='enhanced_max_speed', - def_num=125, - scale=1000, - units='m/s', - accumulate=False, - bits=16, - bit_offset=0, - ), - ), - ), - 16: Field( # average heart rate (excludes pause time) - name='avg_heart_rate', - type=BASE_TYPES[0x02], # uint8 - def_num=16, - units='bpm', - ), - 17: Field( - name='max_heart_rate', - type=BASE_TYPES[0x02], # uint8 - def_num=17, - units='bpm', - ), - 18: Field( # total_cycles / total_timer_time if non_zero_avg_cadence otherwise total_cycles / total_elapsed_time - name='avg_cadence', - type=BASE_TYPES[0x02], # uint8 - def_num=18, - units='rpm', - subfields=( - SubField( - name='avg_running_cadence', - def_num=18, - type=BASE_TYPES[0x02], # uint8 - units='strides/min', - ref_fields=( - ReferenceField( - name='sport', - def_num=5, - value='running', - raw_value=1, - ), - ), - ), - ), - ), - 19: Field( - name='max_cadence', - type=BASE_TYPES[0x02], # uint8 - def_num=19, - units='rpm', - subfields=( - SubField( - name='max_running_cadence', - def_num=19, - type=BASE_TYPES[0x02], # uint8 - units='strides/min', - ref_fields=( - ReferenceField( - name='sport', - def_num=5, - value='running', - raw_value=1, - ), - ), - ), - ), - ), - 20: Field( # total_power / total_timer_time if non_zero_avg_power otherwise total_power / total_elapsed_time - name='avg_power', - type=BASE_TYPES[0x84], # uint16 - def_num=20, - units='watts', - ), - 21: Field( - name='max_power', - type=BASE_TYPES[0x84], # uint16 - def_num=21, - units='watts', - ), - 22: Field( - name='total_ascent', - type=BASE_TYPES[0x84], # uint16 - def_num=22, - units='m', - ), - 23: Field( - name='total_descent', - type=BASE_TYPES[0x84], # uint16 - def_num=23, - units='m', - ), - 24: Field( - name='total_training_effect', - type=BASE_TYPES[0x02], # uint8 - def_num=24, - scale=10, - ), - 25: Field( - name='first_lap_index', - type=BASE_TYPES[0x84], # uint16 - def_num=25, - ), - 26: Field( - name='num_laps', - type=BASE_TYPES[0x84], # uint16 - def_num=26, - ), - 27: Field( - name='event_group', - type=BASE_TYPES[0x02], # uint8 - def_num=27, - ), - 28: Field( - name='trigger', - type=FIELD_TYPES['session_trigger'], - def_num=28, - ), - 29: Field( - name='nec_lat', - type=BASE_TYPES[0x85], # sint32 - def_num=29, - units='semicircles', - ), - 30: Field( - name='nec_long', - type=BASE_TYPES[0x85], # sint32 - def_num=30, - units='semicircles', - ), - 31: Field( - name='swc_lat', - type=BASE_TYPES[0x85], # sint32 - def_num=31, - units='semicircles', - ), - 32: Field( - name='swc_long', - type=BASE_TYPES[0x85], # sint32 - def_num=32, - units='semicircles', - ), - 34: Field( - name='normalized_power', - type=BASE_TYPES[0x84], # uint16 - def_num=34, - units='watts', - ), - 35: Field( - name='training_stress_score', - type=BASE_TYPES[0x84], # uint16 - def_num=35, - scale=10, - units='tss', - ), - 36: Field( - name='intensity_factor', - type=BASE_TYPES[0x84], # uint16 - def_num=36, - scale=1000, - units='if', - ), - 37: Field( - name='left_right_balance', - type=FIELD_TYPES['left_right_balance_100'], - def_num=37, - ), - 41: Field( - name='avg_stroke_count', - type=BASE_TYPES[0x86], # uint32 - def_num=41, - scale=10, - units='strokes/lap', - ), - 42: Field( - name='avg_stroke_distance', - type=BASE_TYPES[0x84], # uint16 - def_num=42, - scale=100, - units='m', - ), - 43: Field( - name='swim_stroke', - type=FIELD_TYPES['swim_stroke'], - def_num=43, - units='swim_stroke', - ), - 44: Field( - name='pool_length', - type=BASE_TYPES[0x84], # uint16 - def_num=44, - scale=100, - units='m', - ), - 45: Field( - name='threshold_power', - type=BASE_TYPES[0x84], # uint16 - def_num=45, - units='watts', - ), - 46: Field( - name='pool_length_unit', - type=FIELD_TYPES['display_measure'], - def_num=46, - ), - 47: Field( # # of active lengths of swim pool - name='num_active_lengths', - type=BASE_TYPES[0x84], # uint16 - def_num=47, - units='lengths', - ), - 48: Field( - name='total_work', - type=BASE_TYPES[0x86], # uint32 - def_num=48, - units='J', - ), - 49: Field( - name='avg_altitude', - type=BASE_TYPES[0x84], # uint16 - def_num=49, - scale=5, - offset=500, - units='m', - components=( - ComponentField( - name='enhanced_avg_altitude', - def_num=126, - scale=5, - offset=500, - units='m', - accumulate=False, - bits=16, - bit_offset=0, - ), - ), - ), - 50: Field( - name='max_altitude', - type=BASE_TYPES[0x84], # uint16 - def_num=50, - scale=5, - offset=500, - units='m', - components=( - ComponentField( - name='enhanced_max_altitude', - def_num=128, - scale=5, - offset=500, - units='m', - accumulate=False, - bits=16, - bit_offset=0, - ), - ), - ), - 51: Field( - name='gps_accuracy', - type=BASE_TYPES[0x02], # uint8 - def_num=51, - units='m', - ), - 52: Field( - name='avg_grade', - type=BASE_TYPES[0x83], # sint16 - def_num=52, - scale=100, - units='%', - ), - 53: Field( - name='avg_pos_grade', - type=BASE_TYPES[0x83], # sint16 - def_num=53, - scale=100, - units='%', - ), - 54: Field( - name='avg_neg_grade', - type=BASE_TYPES[0x83], # sint16 - def_num=54, - scale=100, - units='%', - ), - 55: Field( - name='max_pos_grade', - type=BASE_TYPES[0x83], # sint16 - def_num=55, - scale=100, - units='%', - ), - 56: Field( - name='max_neg_grade', - type=BASE_TYPES[0x83], # sint16 - def_num=56, - scale=100, - units='%', - ), - 57: Field( - name='avg_temperature', - type=BASE_TYPES[0x01], # sint8 - def_num=57, - units='C', - ), - 58: Field( - name='max_temperature', - type=BASE_TYPES[0x01], # sint8 - def_num=58, - units='C', - ), - 59: Field( - name='total_moving_time', - type=BASE_TYPES[0x86], # uint32 - def_num=59, - scale=1000, - units='s', - ), - 60: Field( - name='avg_pos_vertical_speed', - type=BASE_TYPES[0x83], # sint16 - def_num=60, - scale=1000, - units='m/s', - ), - 61: Field( - name='avg_neg_vertical_speed', - type=BASE_TYPES[0x83], # sint16 - def_num=61, - scale=1000, - units='m/s', - ), - 62: Field( - name='max_pos_vertical_speed', - type=BASE_TYPES[0x83], # sint16 - def_num=62, - scale=1000, - units='m/s', - ), - 63: Field( - name='max_neg_vertical_speed', - type=BASE_TYPES[0x83], # sint16 - def_num=63, - scale=1000, - units='m/s', - ), - 64: Field( - name='min_heart_rate', - type=BASE_TYPES[0x02], # uint8 - def_num=64, - units='bpm', - ), - 65: Field( - name='time_in_hr_zone', - type=BASE_TYPES[0x86], # uint32 - def_num=65, - scale=1000, - units='s', - ), - 66: Field( - name='time_in_speed_zone', - type=BASE_TYPES[0x86], # uint32 - def_num=66, - scale=1000, - units='s', - ), - 67: Field( - name='time_in_cadence_zone', - type=BASE_TYPES[0x86], # uint32 - def_num=67, - scale=1000, - units='s', - ), - 68: Field( - name='time_in_power_zone', - type=BASE_TYPES[0x86], # uint32 - def_num=68, - scale=1000, - units='s', - ), - 69: Field( - name='avg_lap_time', - type=BASE_TYPES[0x86], # uint32 - def_num=69, - scale=1000, - units='s', - ), - 70: Field( - name='best_lap_index', - type=BASE_TYPES[0x84], # uint16 - def_num=70, - ), - 71: Field( - name='min_altitude', - type=BASE_TYPES[0x84], # uint16 - def_num=71, - scale=5, - offset=500, - units='m', - components=( - ComponentField( - name='enhanced_min_altitude', - def_num=127, - scale=5, - offset=500, - units='m', - accumulate=False, - bits=16, - bit_offset=0, - ), - ), - ), - 82: Field( - name='player_score', - type=BASE_TYPES[0x84], # uint16 - def_num=82, - ), - 83: Field( - name='opponent_score', - type=BASE_TYPES[0x84], # uint16 - def_num=83, - ), - 84: Field( - name='opponent_name', - type=BASE_TYPES[0x07], # string - def_num=84, - ), - 85: Field( # stroke_type enum used as the index - name='stroke_count', - type=BASE_TYPES[0x84], # uint16 - def_num=85, - units='counts', - ), - 86: Field( # zone number used as the index - name='zone_count', - type=BASE_TYPES[0x84], # uint16 - def_num=86, - units='counts', - ), - 87: Field( - name='max_ball_speed', - type=BASE_TYPES[0x84], # uint16 - def_num=87, - scale=100, - units='m/s', - ), - 88: Field( - name='avg_ball_speed', - type=BASE_TYPES[0x84], # uint16 - def_num=88, - scale=100, - units='m/s', - ), - 89: Field( - name='avg_vertical_oscillation', - type=BASE_TYPES[0x84], # uint16 - def_num=89, - scale=10, - units='mm', - ), - 90: Field( - name='avg_stance_time_percent', - type=BASE_TYPES[0x84], # uint16 - def_num=90, - scale=100, - units='percent', - ), - 91: Field( - name='avg_stance_time', - type=BASE_TYPES[0x84], # uint16 - def_num=91, - scale=10, - units='ms', - ), - 92: Field( # fractional part of the avg_cadence - name='avg_fractional_cadence', - type=BASE_TYPES[0x02], # uint8 - def_num=92, - scale=128, - units='rpm', - ), - 93: Field( # fractional part of the max_cadence - name='max_fractional_cadence', - type=BASE_TYPES[0x02], # uint8 - def_num=93, - scale=128, - units='rpm', - ), - 94: Field( # fractional part of the total_cycles - name='total_fractional_cycles', - type=BASE_TYPES[0x02], # uint8 - def_num=94, - scale=128, - units='cycles', - ), - 95: Field( # Avg saturated and unsaturated hemoglobin - name='avg_total_hemoglobin_conc', - type=BASE_TYPES[0x84], # uint16 - def_num=95, - scale=100, - units='g/dL', - ), - 96: Field( # Min saturated and unsaturated hemoglobin - name='min_total_hemoglobin_conc', - type=BASE_TYPES[0x84], # uint16 - def_num=96, - scale=100, - units='g/dL', - ), - 97: Field( # Max saturated and unsaturated hemoglobin - name='max_total_hemoglobin_conc', - type=BASE_TYPES[0x84], # uint16 - def_num=97, - scale=100, - units='g/dL', - ), - 98: Field( # Avg percentage of hemoglobin saturated with oxygen - name='avg_saturated_hemoglobin_percent', - type=BASE_TYPES[0x84], # uint16 - def_num=98, - scale=10, - units='%', - ), - 99: Field( # Min percentage of hemoglobin saturated with oxygen - name='min_saturated_hemoglobin_percent', - type=BASE_TYPES[0x84], # uint16 - def_num=99, - scale=10, - units='%', - ), - 100: Field( # Max percentage of hemoglobin saturated with oxygen - name='max_saturated_hemoglobin_percent', - type=BASE_TYPES[0x84], # uint16 - def_num=100, - scale=10, - units='%', - ), - 101: Field( - name='avg_left_torque_effectiveness', - type=BASE_TYPES[0x02], # uint8 - def_num=101, - scale=2, - units='percent', - ), - 102: Field( - name='avg_right_torque_effectiveness', - type=BASE_TYPES[0x02], # uint8 - def_num=102, - scale=2, - units='percent', - ), - 103: Field( - name='avg_left_pedal_smoothness', - type=BASE_TYPES[0x02], # uint8 - def_num=103, - scale=2, - units='percent', - ), - 104: Field( - name='avg_right_pedal_smoothness', - type=BASE_TYPES[0x02], # uint8 - def_num=104, - scale=2, - units='percent', - ), - 105: Field( - name='avg_combined_pedal_smoothness', - type=BASE_TYPES[0x02], # uint8 - def_num=105, - scale=2, - units='percent', - ), - 111: Field( - name='sport_index', - type=BASE_TYPES[0x02], # uint8 - def_num=111, - ), - 112: Field( # Total time spend in the standing position - name='time_standing', - type=BASE_TYPES[0x86], # uint32 - def_num=112, - scale=1000, - units='s', - ), - 113: Field( # Number of transitions to the standing state - name='stand_count', - type=BASE_TYPES[0x84], # uint16 - def_num=113, - ), - 114: Field( # Average platform center offset Left - name='avg_left_pco', - type=BASE_TYPES[0x01], # sint8 - def_num=114, - units='mm', - ), - 115: Field( # Average platform center offset Right - name='avg_right_pco', - type=BASE_TYPES[0x01], # sint8 - def_num=115, - units='mm', - ), - 116: Field( # Average left power phase angles. Indexes defined by power_phase_type. - name='avg_left_power_phase', - type=BASE_TYPES[0x02], # uint8 - def_num=116, - scale=0.7111111, - units='degrees', - ), - 117: Field( # Average left power phase peak angles. Data value indexes defined by power_phase_type. - name='avg_left_power_phase_peak', - type=BASE_TYPES[0x02], # uint8 - def_num=117, - scale=0.7111111, - units='degrees', - ), - 118: Field( # Average right power phase angles. Data value indexes defined by power_phase_type. - name='avg_right_power_phase', - type=BASE_TYPES[0x02], # uint8 - def_num=118, - scale=0.7111111, - units='degrees', - ), - 119: Field( # Average right power phase peak angles data value indexes defined by power_phase_type. - name='avg_right_power_phase_peak', - type=BASE_TYPES[0x02], # uint8 - def_num=119, - scale=0.7111111, - units='degrees', - ), - 120: Field( # Average power by position. Data value indexes defined by rider_position_type. - name='avg_power_position', - type=BASE_TYPES[0x84], # uint16 - def_num=120, - units='watts', - ), - 121: Field( # Maximum power by position. Data value indexes defined by rider_position_type. - name='max_power_position', - type=BASE_TYPES[0x84], # uint16 - def_num=121, - units='watts', - ), - 122: Field( # Average cadence by position. Data value indexes defined by rider_position_type. - name='avg_cadence_position', - type=BASE_TYPES[0x02], # uint8 - def_num=122, - units='rpm', - ), - 123: Field( # Maximum cadence by position. Data value indexes defined by rider_position_type. - name='max_cadence_position', - type=BASE_TYPES[0x02], # uint8 - def_num=123, - units='rpm', - ), - 124: Field( # total_distance / total_timer_time - name='enhanced_avg_speed', - type=BASE_TYPES[0x86], # uint32 - def_num=124, - scale=1000, - units='m/s', - ), - 125: Field( - name='enhanced_max_speed', - type=BASE_TYPES[0x86], # uint32 - def_num=125, - scale=1000, - units='m/s', - ), - 126: Field( - name='enhanced_avg_altitude', - type=BASE_TYPES[0x86], # uint32 - def_num=126, - scale=5, - offset=500, - units='m', - ), - 127: Field( - name='enhanced_min_altitude', - type=BASE_TYPES[0x86], # uint32 - def_num=127, - scale=5, - offset=500, - units='m', - ), - 128: Field( - name='enhanced_max_altitude', - type=BASE_TYPES[0x86], # uint32 - def_num=128, - scale=5, - offset=500, - units='m', - ), - 129: Field( # lev average motor power during session - name='avg_lev_motor_power', - type=BASE_TYPES[0x84], # uint16 - def_num=129, - units='watts', - ), - 130: Field( # lev maximum motor power during session - name='max_lev_motor_power', - type=BASE_TYPES[0x84], # uint16 - def_num=130, - units='watts', - ), - 131: Field( # lev battery consumption during session - name='lev_battery_consumption', - type=BASE_TYPES[0x02], # uint8 - def_num=131, - scale=2, - units='percent', - ), - 132: Field( - name='avg_vertical_ratio', - type=BASE_TYPES[0x84], # uint16 - def_num=132, - scale=100, - units='percent', - ), - 133: Field( - name='avg_stance_time_balance', - type=BASE_TYPES[0x84], # uint16 - def_num=133, - scale=100, - units='percent', - ), - 134: Field( - name='avg_step_length', - type=BASE_TYPES[0x84], # uint16 - def_num=134, - scale=10, - units='mm', - ), - 137: Field( - name='total_anaerobic_training_effect', - type=BASE_TYPES[0x02], # uint8 - def_num=137, - scale=10, - ), - 139: Field( - name='avg_vam', - type=BASE_TYPES[0x84], # uint16 - def_num=139, - scale=1000, - units='m/s', - ), - 253: FIELD_TYPE_TIMESTAMP, # Sesson end time. - 254: Field( # Selected bit is set for the current session. - name='message_index', - type=FIELD_TYPES['message_index'], - def_num=254, - ), - }, - ), - 19: MessageType( - name='lap', - mesg_num=19, - fields={ - 0: Field( - name='event', - type=FIELD_TYPES['event'], - def_num=0, - ), - 1: Field( - name='event_type', - type=FIELD_TYPES['event_type'], - def_num=1, - ), - 2: Field( - name='start_time', - type=FIELD_TYPES['date_time'], - def_num=2, - ), - 3: Field( - name='start_position_lat', - type=BASE_TYPES[0x85], # sint32 - def_num=3, - units='semicircles', - ), - 4: Field( - name='start_position_long', - type=BASE_TYPES[0x85], # sint32 - def_num=4, - units='semicircles', - ), - 5: Field( - name='end_position_lat', - type=BASE_TYPES[0x85], # sint32 - def_num=5, - units='semicircles', - ), - 6: Field( - name='end_position_long', - type=BASE_TYPES[0x85], # sint32 - def_num=6, - units='semicircles', - ), - 7: Field( # Time (includes pauses) - name='total_elapsed_time', - type=BASE_TYPES[0x86], # uint32 - def_num=7, - scale=1000, - units='s', - ), - 8: Field( # Timer Time (excludes pauses) - name='total_timer_time', - type=BASE_TYPES[0x86], # uint32 - def_num=8, - scale=1000, - units='s', - ), - 9: Field( - name='total_distance', - type=BASE_TYPES[0x86], # uint32 - def_num=9, - scale=100, - units='m', - ), - 10: Field( - name='total_cycles', - type=BASE_TYPES[0x86], # uint32 - def_num=10, - units='cycles', - subfields=( - SubField( - name='total_strides', - def_num=10, - type=BASE_TYPES[0x86], # uint32 - units='strides', - ref_fields=( - ReferenceField( - name='sport', - def_num=25, - value='running', - raw_value=1, - ), - ReferenceField( - name='sport', - def_num=25, - value='walking', - raw_value=11, - ), - ), - ), - ), - ), - 11: Field( - name='total_calories', - type=BASE_TYPES[0x84], # uint16 - def_num=11, - units='kcal', - ), - 12: Field( # If New Leaf - name='total_fat_calories', - type=BASE_TYPES[0x84], # uint16 - def_num=12, - units='kcal', - ), - 13: Field( - name='avg_speed', - type=BASE_TYPES[0x84], # uint16 - def_num=13, - scale=1000, - units='m/s', - components=( - ComponentField( - name='enhanced_avg_speed', - def_num=110, - scale=1000, - units='m/s', - accumulate=False, - bits=16, - bit_offset=0, - ), - ), - ), - 14: Field( - name='max_speed', - type=BASE_TYPES[0x84], # uint16 - def_num=14, - scale=1000, - units='m/s', - components=( - ComponentField( - name='enhanced_max_speed', - def_num=111, - scale=1000, - units='m/s', - accumulate=False, - bits=16, - bit_offset=0, - ), - ), - ), - 15: Field( - name='avg_heart_rate', - type=BASE_TYPES[0x02], # uint8 - def_num=15, - units='bpm', - ), - 16: Field( - name='max_heart_rate', - type=BASE_TYPES[0x02], # uint8 - def_num=16, - units='bpm', - ), - 17: Field( # total_cycles / total_timer_time if non_zero_avg_cadence otherwise total_cycles / total_elapsed_time - name='avg_cadence', - type=BASE_TYPES[0x02], # uint8 - def_num=17, - units='rpm', - subfields=( - SubField( - name='avg_running_cadence', - def_num=17, - type=BASE_TYPES[0x02], # uint8 - units='strides/min', - ref_fields=( - ReferenceField( - name='sport', - def_num=25, - value='running', - raw_value=1, - ), - ), - ), - ), - ), - 18: Field( - name='max_cadence', - type=BASE_TYPES[0x02], # uint8 - def_num=18, - units='rpm', - subfields=( - SubField( - name='max_running_cadence', - def_num=18, - type=BASE_TYPES[0x02], # uint8 - units='strides/min', - ref_fields=( - ReferenceField( - name='sport', - def_num=25, - value='running', - raw_value=1, - ), - ), - ), - ), - ), - 19: Field( # total_power / total_timer_time if non_zero_avg_power otherwise total_power / total_elapsed_time - name='avg_power', - type=BASE_TYPES[0x84], # uint16 - def_num=19, - units='watts', - ), - 20: Field( - name='max_power', - type=BASE_TYPES[0x84], # uint16 - def_num=20, - units='watts', - ), - 21: Field( - name='total_ascent', - type=BASE_TYPES[0x84], # uint16 - def_num=21, - units='m', - ), - 22: Field( - name='total_descent', - type=BASE_TYPES[0x84], # uint16 - def_num=22, - units='m', - ), - 23: Field( - name='intensity', - type=FIELD_TYPES['intensity'], - def_num=23, - ), - 24: Field( - name='lap_trigger', - type=FIELD_TYPES['lap_trigger'], - def_num=24, - ), - 25: Field( - name='sport', - type=FIELD_TYPES['sport'], - def_num=25, - ), - 26: Field( - name='event_group', - type=BASE_TYPES[0x02], # uint8 - def_num=26, - ), - 32: Field( # # of lengths of swim pool - name='num_lengths', - type=BASE_TYPES[0x84], # uint16 - def_num=32, - units='lengths', - ), - 33: Field( - name='normalized_power', - type=BASE_TYPES[0x84], # uint16 - def_num=33, - units='watts', - ), - 34: Field( - name='left_right_balance', - type=FIELD_TYPES['left_right_balance_100'], - def_num=34, - ), - 35: Field( - name='first_length_index', - type=BASE_TYPES[0x84], # uint16 - def_num=35, - ), - 37: Field( - name='avg_stroke_distance', - type=BASE_TYPES[0x84], # uint16 - def_num=37, - scale=100, - units='m', - ), - 38: Field( - name='swim_stroke', - type=FIELD_TYPES['swim_stroke'], - def_num=38, - ), - 39: Field( - name='sub_sport', - type=FIELD_TYPES['sub_sport'], - def_num=39, - ), - 40: Field( # # of active lengths of swim pool - name='num_active_lengths', - type=BASE_TYPES[0x84], # uint16 - def_num=40, - units='lengths', - ), - 41: Field( - name='total_work', - type=BASE_TYPES[0x86], # uint32 - def_num=41, - units='J', - ), - 42: Field( - name='avg_altitude', - type=BASE_TYPES[0x84], # uint16 - def_num=42, - scale=5, - offset=500, - units='m', - components=( - ComponentField( - name='enhanced_avg_altitude', - def_num=112, - scale=5, - offset=500, - units='m', - accumulate=False, - bits=16, - bit_offset=0, - ), - ), - ), - 43: Field( - name='max_altitude', - type=BASE_TYPES[0x84], # uint16 - def_num=43, - scale=5, - offset=500, - units='m', - components=( - ComponentField( - name='enhanced_max_altitude', - def_num=114, - scale=5, - offset=500, - units='m', - accumulate=False, - bits=16, - bit_offset=0, - ), - ), - ), - 44: Field( - name='gps_accuracy', - type=BASE_TYPES[0x02], # uint8 - def_num=44, - units='m', - ), - 45: Field( - name='avg_grade', - type=BASE_TYPES[0x83], # sint16 - def_num=45, - scale=100, - units='%', - ), - 46: Field( - name='avg_pos_grade', - type=BASE_TYPES[0x83], # sint16 - def_num=46, - scale=100, - units='%', - ), - 47: Field( - name='avg_neg_grade', - type=BASE_TYPES[0x83], # sint16 - def_num=47, - scale=100, - units='%', - ), - 48: Field( - name='max_pos_grade', - type=BASE_TYPES[0x83], # sint16 - def_num=48, - scale=100, - units='%', - ), - 49: Field( - name='max_neg_grade', - type=BASE_TYPES[0x83], # sint16 - def_num=49, - scale=100, - units='%', - ), - 50: Field( - name='avg_temperature', - type=BASE_TYPES[0x01], # sint8 - def_num=50, - units='C', - ), - 51: Field( - name='max_temperature', - type=BASE_TYPES[0x01], # sint8 - def_num=51, - units='C', - ), - 52: Field( - name='total_moving_time', - type=BASE_TYPES[0x86], # uint32 - def_num=52, - scale=1000, - units='s', - ), - 53: Field( - name='avg_pos_vertical_speed', - type=BASE_TYPES[0x83], # sint16 - def_num=53, - scale=1000, - units='m/s', - ), - 54: Field( - name='avg_neg_vertical_speed', - type=BASE_TYPES[0x83], # sint16 - def_num=54, - scale=1000, - units='m/s', - ), - 55: Field( - name='max_pos_vertical_speed', - type=BASE_TYPES[0x83], # sint16 - def_num=55, - scale=1000, - units='m/s', - ), - 56: Field( - name='max_neg_vertical_speed', - type=BASE_TYPES[0x83], # sint16 - def_num=56, - scale=1000, - units='m/s', - ), - 57: Field( - name='time_in_hr_zone', - type=BASE_TYPES[0x86], # uint32 - def_num=57, - scale=1000, - units='s', - ), - 58: Field( - name='time_in_speed_zone', - type=BASE_TYPES[0x86], # uint32 - def_num=58, - scale=1000, - units='s', - ), - 59: Field( - name='time_in_cadence_zone', - type=BASE_TYPES[0x86], # uint32 - def_num=59, - scale=1000, - units='s', - ), - 60: Field( - name='time_in_power_zone', - type=BASE_TYPES[0x86], # uint32 - def_num=60, - scale=1000, - units='s', - ), - 61: Field( - name='repetition_num', - type=BASE_TYPES[0x84], # uint16 - def_num=61, - ), - 62: Field( - name='min_altitude', - type=BASE_TYPES[0x84], # uint16 - def_num=62, - scale=5, - offset=500, - units='m', - components=( - ComponentField( - name='enhanced_min_altitude', - def_num=113, - scale=5, - offset=500, - units='m', - accumulate=False, - bits=16, - bit_offset=0, - ), - ), - ), - 63: Field( - name='min_heart_rate', - type=BASE_TYPES[0x02], # uint8 - def_num=63, - units='bpm', - ), - 71: Field( - name='wkt_step_index', - type=FIELD_TYPES['message_index'], - def_num=71, - ), - 74: Field( - name='opponent_score', - type=BASE_TYPES[0x84], # uint16 - def_num=74, - ), - 75: Field( # stroke_type enum used as the index - name='stroke_count', - type=BASE_TYPES[0x84], # uint16 - def_num=75, - units='counts', - ), - 76: Field( # zone number used as the index - name='zone_count', - type=BASE_TYPES[0x84], # uint16 - def_num=76, - units='counts', - ), - 77: Field( - name='avg_vertical_oscillation', - type=BASE_TYPES[0x84], # uint16 - def_num=77, - scale=10, - units='mm', - ), - 78: Field( - name='avg_stance_time_percent', - type=BASE_TYPES[0x84], # uint16 - def_num=78, - scale=100, - units='percent', - ), - 79: Field( - name='avg_stance_time', - type=BASE_TYPES[0x84], # uint16 - def_num=79, - scale=10, - units='ms', - ), - 80: Field( # fractional part of the avg_cadence - name='avg_fractional_cadence', - type=BASE_TYPES[0x02], # uint8 - def_num=80, - scale=128, - units='rpm', - ), - 81: Field( # fractional part of the max_cadence - name='max_fractional_cadence', - type=BASE_TYPES[0x02], # uint8 - def_num=81, - scale=128, - units='rpm', - ), - 82: Field( # fractional part of the total_cycles - name='total_fractional_cycles', - type=BASE_TYPES[0x02], # uint8 - def_num=82, - scale=128, - units='cycles', - ), - 83: Field( - name='player_score', - type=BASE_TYPES[0x84], # uint16 - def_num=83, - ), - 84: Field( # Avg saturated and unsaturated hemoglobin - name='avg_total_hemoglobin_conc', - type=BASE_TYPES[0x84], # uint16 - def_num=84, - scale=100, - units='g/dL', - ), - 85: Field( # Min saturated and unsaturated hemoglobin - name='min_total_hemoglobin_conc', - type=BASE_TYPES[0x84], # uint16 - def_num=85, - scale=100, - units='g/dL', - ), - 86: Field( # Max saturated and unsaturated hemoglobin - name='max_total_hemoglobin_conc', - type=BASE_TYPES[0x84], # uint16 - def_num=86, - scale=100, - units='g/dL', - ), - 87: Field( # Avg percentage of hemoglobin saturated with oxygen - name='avg_saturated_hemoglobin_percent', - type=BASE_TYPES[0x84], # uint16 - def_num=87, - scale=10, - units='%', - ), - 88: Field( # Min percentage of hemoglobin saturated with oxygen - name='min_saturated_hemoglobin_percent', - type=BASE_TYPES[0x84], # uint16 - def_num=88, - scale=10, - units='%', - ), - 89: Field( # Max percentage of hemoglobin saturated with oxygen - name='max_saturated_hemoglobin_percent', - type=BASE_TYPES[0x84], # uint16 - def_num=89, - scale=10, - units='%', - ), - 91: Field( - name='avg_left_torque_effectiveness', - type=BASE_TYPES[0x02], # uint8 - def_num=91, - scale=2, - units='percent', - ), - 92: Field( - name='avg_right_torque_effectiveness', - type=BASE_TYPES[0x02], # uint8 - def_num=92, - scale=2, - units='percent', - ), - 93: Field( - name='avg_left_pedal_smoothness', - type=BASE_TYPES[0x02], # uint8 - def_num=93, - scale=2, - units='percent', - ), - 94: Field( - name='avg_right_pedal_smoothness', - type=BASE_TYPES[0x02], # uint8 - def_num=94, - scale=2, - units='percent', - ), - 95: Field( - name='avg_combined_pedal_smoothness', - type=BASE_TYPES[0x02], # uint8 - def_num=95, - scale=2, - units='percent', - ), - 98: Field( # Total time spent in the standing position - name='time_standing', - type=BASE_TYPES[0x86], # uint32 - def_num=98, - scale=1000, - units='s', - ), - 99: Field( # Number of transitions to the standing state - name='stand_count', - type=BASE_TYPES[0x84], # uint16 - def_num=99, - ), - 100: Field( # Average left platform center offset - name='avg_left_pco', - type=BASE_TYPES[0x01], # sint8 - def_num=100, - units='mm', - ), - 101: Field( # Average right platform center offset - name='avg_right_pco', - type=BASE_TYPES[0x01], # sint8 - def_num=101, - units='mm', - ), - 102: Field( # Average left power phase angles. Data value indexes defined by power_phase_type. - name='avg_left_power_phase', - type=BASE_TYPES[0x02], # uint8 - def_num=102, - scale=0.7111111, - units='degrees', - ), - 103: Field( # Average left power phase peak angles. Data value indexes defined by power_phase_type. - name='avg_left_power_phase_peak', - type=BASE_TYPES[0x02], # uint8 - def_num=103, - scale=0.7111111, - units='degrees', - ), - 104: Field( # Average right power phase angles. Data value indexes defined by power_phase_type. - name='avg_right_power_phase', - type=BASE_TYPES[0x02], # uint8 - def_num=104, - scale=0.7111111, - units='degrees', - ), - 105: Field( # Average right power phase peak angles. Data value indexes defined by power_phase_type. - name='avg_right_power_phase_peak', - type=BASE_TYPES[0x02], # uint8 - def_num=105, - scale=0.7111111, - units='degrees', - ), - 106: Field( # Average power by position. Data value indexes defined by rider_position_type. - name='avg_power_position', - type=BASE_TYPES[0x84], # uint16 - def_num=106, - units='watts', - ), - 107: Field( # Maximum power by position. Data value indexes defined by rider_position_type. - name='max_power_position', - type=BASE_TYPES[0x84], # uint16 - def_num=107, - units='watts', - ), - 108: Field( # Average cadence by position. Data value indexes defined by rider_position_type. - name='avg_cadence_position', - type=BASE_TYPES[0x02], # uint8 - def_num=108, - units='rpm', - ), - 109: Field( # Maximum cadence by position. Data value indexes defined by rider_position_type. - name='max_cadence_position', - type=BASE_TYPES[0x02], # uint8 - def_num=109, - units='rpm', - ), - 110: Field( - name='enhanced_avg_speed', - type=BASE_TYPES[0x86], # uint32 - def_num=110, - scale=1000, - units='m/s', - ), - 111: Field( - name='enhanced_max_speed', - type=BASE_TYPES[0x86], # uint32 - def_num=111, - scale=1000, - units='m/s', - ), - 112: Field( - name='enhanced_avg_altitude', - type=BASE_TYPES[0x86], # uint32 - def_num=112, - scale=5, - offset=500, - units='m', - ), - 113: Field( - name='enhanced_min_altitude', - type=BASE_TYPES[0x86], # uint32 - def_num=113, - scale=5, - offset=500, - units='m', - ), - 114: Field( - name='enhanced_max_altitude', - type=BASE_TYPES[0x86], # uint32 - def_num=114, - scale=5, - offset=500, - units='m', - ), - 115: Field( # lev average motor power during lap - name='avg_lev_motor_power', - type=BASE_TYPES[0x84], # uint16 - def_num=115, - units='watts', - ), - 116: Field( # lev maximum motor power during lap - name='max_lev_motor_power', - type=BASE_TYPES[0x84], # uint16 - def_num=116, - units='watts', - ), - 117: Field( # lev battery consumption during lap - name='lev_battery_consumption', - type=BASE_TYPES[0x02], # uint8 - def_num=117, - scale=2, - units='percent', - ), - 118: Field( - name='avg_vertical_ratio', - type=BASE_TYPES[0x84], # uint16 - def_num=118, - scale=100, - units='percent', - ), - 119: Field( - name='avg_stance_time_balance', - type=BASE_TYPES[0x84], # uint16 - def_num=119, - scale=100, - units='percent', - ), - 120: Field( - name='avg_step_length', - type=BASE_TYPES[0x84], # uint16 - def_num=120, - scale=10, - units='mm', - ), - 121: Field( - name='avg_vam', - type=BASE_TYPES[0x84], # uint16 - def_num=121, - scale=1000, - units='m/s', - ), - 253: FIELD_TYPE_TIMESTAMP, # Lap end time. - 254: Field( - name='message_index', - type=FIELD_TYPES['message_index'], - def_num=254, - ), - }, - ), - 20: MessageType( - name='record', - mesg_num=20, - fields={ - 0: Field( - name='position_lat', - type=BASE_TYPES[0x85], # sint32 - def_num=0, - units='semicircles', - ), - 1: Field( - name='position_long', - type=BASE_TYPES[0x85], # sint32 - def_num=1, - units='semicircles', - ), - 2: Field( - name='altitude', - type=BASE_TYPES[0x84], # uint16 - def_num=2, - scale=5, - offset=500, - units='m', - components=( - ComponentField( - name='enhanced_altitude', - def_num=78, - scale=5, - offset=500, - units='m', - accumulate=False, - bits=16, - bit_offset=0, - ), - ), - ), - 3: Field( - name='heart_rate', - type=BASE_TYPES[0x02], # uint8 - def_num=3, - units='bpm', - ), - 4: Field( - name='cadence', - type=BASE_TYPES[0x02], # uint8 - def_num=4, - units='rpm', - ), - 5: Field( - name='distance', - type=BASE_TYPES[0x86], # uint32 - def_num=5, - scale=100, - units='m', - ), - 6: Field( - name='speed', - type=BASE_TYPES[0x84], # uint16 - def_num=6, - scale=1000, - units='m/s', - components=( - ComponentField( - name='enhanced_speed', - def_num=73, - scale=1000, - units='m/s', - accumulate=False, - bits=16, - bit_offset=0, - ), - ), - ), - 7: Field( - name='power', - type=BASE_TYPES[0x84], # uint16 - def_num=7, - units='watts', - ), - 8: Field( - name='compressed_speed_distance', - type=BASE_TYPES[0x0D], # byte - def_num=8, - components=( - ComponentField( - name='speed', - def_num=6, - scale=100, - units='m/s', - accumulate=False, - bits=12, - bit_offset=0, - ), - ComponentField( - name='distance', - def_num=5, - scale=16, - units='m', - accumulate=True, - bits=12, - bit_offset=12, - ), - ), - ), - 9: Field( - name='grade', - type=BASE_TYPES[0x83], # sint16 - def_num=9, - scale=100, - units='%', - ), - 10: Field( # Relative. 0 is none 254 is Max. - name='resistance', - type=BASE_TYPES[0x02], # uint8 - def_num=10, - ), - 11: Field( - name='time_from_course', - type=BASE_TYPES[0x85], # sint32 - def_num=11, - scale=1000, - units='s', - ), - 12: Field( - name='cycle_length', - type=BASE_TYPES[0x02], # uint8 - def_num=12, - scale=100, - units='m', - ), - 13: Field( - name='temperature', - type=BASE_TYPES[0x01], # sint8 - def_num=13, - units='C', - ), - 17: Field( # Speed at 1s intervals. Timestamp field indicates time of last array element. - name='speed_1s', - type=BASE_TYPES[0x02], # uint8 - def_num=17, - scale=16, - units='m/s', - ), - 18: Field( - name='cycles', - type=BASE_TYPES[0x02], # uint8 - def_num=18, - components=( - ComponentField( - name='total_cycles', - def_num=19, - units='cycles', - accumulate=True, - bits=8, - bit_offset=0, - ), - ), - ), - 19: Field( - name='total_cycles', - type=BASE_TYPES[0x86], # uint32 - def_num=19, - units='cycles', - ), - 28: Field( - name='compressed_accumulated_power', - type=BASE_TYPES[0x84], # uint16 - def_num=28, - components=( - ComponentField( - name='accumulated_power', - def_num=29, - units='watts', - accumulate=True, - bits=16, - bit_offset=0, - ), - ), - ), - 29: Field( - name='accumulated_power', - type=BASE_TYPES[0x86], # uint32 - def_num=29, - units='watts', - ), - 30: Field( - name='left_right_balance', - type=FIELD_TYPES['left_right_balance'], - def_num=30, - ), - 31: Field( - name='gps_accuracy', - type=BASE_TYPES[0x02], # uint8 - def_num=31, - units='m', - ), - 32: Field( - name='vertical_speed', - type=BASE_TYPES[0x83], # sint16 - def_num=32, - scale=1000, - units='m/s', - ), - 33: Field( - name='calories', - type=BASE_TYPES[0x84], # uint16 - def_num=33, - units='kcal', - ), - 39: Field( - name='vertical_oscillation', - type=BASE_TYPES[0x84], # uint16 - def_num=39, - scale=10, - units='mm', - ), - 40: Field( - name='stance_time_percent', - type=BASE_TYPES[0x84], # uint16 - def_num=40, - scale=100, - units='percent', - ), - 41: Field( - name='stance_time', - type=BASE_TYPES[0x84], # uint16 - def_num=41, - scale=10, - units='ms', - ), - 42: Field( - name='activity_type', - type=FIELD_TYPES['activity_type'], - def_num=42, - ), - 43: Field( - name='left_torque_effectiveness', - type=BASE_TYPES[0x02], # uint8 - def_num=43, - scale=2, - units='percent', - ), - 44: Field( - name='right_torque_effectiveness', - type=BASE_TYPES[0x02], # uint8 - def_num=44, - scale=2, - units='percent', - ), - 45: Field( - name='left_pedal_smoothness', - type=BASE_TYPES[0x02], # uint8 - def_num=45, - scale=2, - units='percent', - ), - 46: Field( - name='right_pedal_smoothness', - type=BASE_TYPES[0x02], # uint8 - def_num=46, - scale=2, - units='percent', - ), - 47: Field( - name='combined_pedal_smoothness', - type=BASE_TYPES[0x02], # uint8 - def_num=47, - scale=2, - units='percent', - ), - 48: Field( - name='time128', - type=BASE_TYPES[0x02], # uint8 - def_num=48, - scale=128, - units='s', - ), - 49: Field( - name='stroke_type', - type=FIELD_TYPES['stroke_type'], - def_num=49, - ), - 50: Field( - name='zone', - type=BASE_TYPES[0x02], # uint8 - def_num=50, - ), - 51: Field( - name='ball_speed', - type=BASE_TYPES[0x84], # uint16 - def_num=51, - scale=100, - units='m/s', - ), - 52: Field( # Log cadence and fractional cadence for backwards compatability - name='cadence256', - type=BASE_TYPES[0x84], # uint16 - def_num=52, - scale=256, - units='rpm', - ), - 53: Field( - name='fractional_cadence', - type=BASE_TYPES[0x02], # uint8 - def_num=53, - scale=128, - units='rpm', - ), - 54: Field( # Total saturated and unsaturated hemoglobin - name='total_hemoglobin_conc', - type=BASE_TYPES[0x84], # uint16 - def_num=54, - scale=100, - units='g/dL', - ), - 55: Field( # Min saturated and unsaturated hemoglobin - name='total_hemoglobin_conc_min', - type=BASE_TYPES[0x84], # uint16 - def_num=55, - scale=100, - units='g/dL', - ), - 56: Field( # Max saturated and unsaturated hemoglobin - name='total_hemoglobin_conc_max', - type=BASE_TYPES[0x84], # uint16 - def_num=56, - scale=100, - units='g/dL', - ), - 57: Field( # Percentage of hemoglobin saturated with oxygen - name='saturated_hemoglobin_percent', - type=BASE_TYPES[0x84], # uint16 - def_num=57, - scale=10, - units='%', - ), - 58: Field( # Min percentage of hemoglobin saturated with oxygen - name='saturated_hemoglobin_percent_min', - type=BASE_TYPES[0x84], # uint16 - def_num=58, - scale=10, - units='%', - ), - 59: Field( # Max percentage of hemoglobin saturated with oxygen - name='saturated_hemoglobin_percent_max', - type=BASE_TYPES[0x84], # uint16 - def_num=59, - scale=10, - units='%', - ), - 62: Field( - name='device_index', - type=FIELD_TYPES['device_index'], - def_num=62, - ), - 67: Field( # Left platform center offset - name='left_pco', - type=BASE_TYPES[0x01], # sint8 - def_num=67, - units='mm', - ), - 68: Field( # Right platform center offset - name='right_pco', - type=BASE_TYPES[0x01], # sint8 - def_num=68, - units='mm', - ), - 69: Field( # Left power phase angles. Data value indexes defined by power_phase_type. - name='left_power_phase', - type=BASE_TYPES[0x02], # uint8 - def_num=69, - scale=0.7111111, - units='degrees', - ), - 70: Field( # Left power phase peak angles. Data value indexes defined by power_phase_type. - name='left_power_phase_peak', - type=BASE_TYPES[0x02], # uint8 - def_num=70, - scale=0.7111111, - units='degrees', - ), - 71: Field( # Right power phase angles. Data value indexes defined by power_phase_type. - name='right_power_phase', - type=BASE_TYPES[0x02], # uint8 - def_num=71, - scale=0.7111111, - units='degrees', - ), - 72: Field( # Right power phase peak angles. Data value indexes defined by power_phase_type. - name='right_power_phase_peak', - type=BASE_TYPES[0x02], # uint8 - def_num=72, - scale=0.7111111, - units='degrees', - ), - 73: Field( - name='enhanced_speed', - type=BASE_TYPES[0x86], # uint32 - def_num=73, - scale=1000, - units='m/s', - ), - 78: Field( - name='enhanced_altitude', - type=BASE_TYPES[0x86], # uint32 - def_num=78, - scale=5, - offset=500, - units='m', - ), - 81: Field( # lev battery state of charge - name='battery_soc', - type=BASE_TYPES[0x02], # uint8 - def_num=81, - scale=2, - units='percent', - ), - 82: Field( # lev motor power - name='motor_power', - type=BASE_TYPES[0x84], # uint16 - def_num=82, - units='watts', - ), - 83: Field( - name='vertical_ratio', - type=BASE_TYPES[0x84], # uint16 - def_num=83, - scale=100, - units='percent', - ), - 84: Field( - name='stance_time_balance', - type=BASE_TYPES[0x84], # uint16 - def_num=84, - scale=100, - units='percent', - ), - 85: Field( - name='step_length', - type=BASE_TYPES[0x84], # uint16 - def_num=85, - scale=10, - units='mm', - ), - 91: Field( # Includes atmospheric pressure - name='absolute_pressure', - type=BASE_TYPES[0x86], # uint32 - def_num=91, - units='Pa', - ), - 92: Field( # 0 if above water - name='depth', - type=BASE_TYPES[0x86], # uint32 - def_num=92, - scale=1000, - units='m', - ), - 93: Field( # 0 if above water - name='next_stop_depth', - type=BASE_TYPES[0x86], # uint32 - def_num=93, - scale=1000, - units='m', - ), - 94: Field( - name='next_stop_time', - type=BASE_TYPES[0x86], # uint32 - def_num=94, - units='s', - ), - 95: Field( - name='time_to_surface', - type=BASE_TYPES[0x86], # uint32 - def_num=95, - units='s', - ), - 96: Field( - name='ndl_time', - type=BASE_TYPES[0x86], # uint32 - def_num=96, - units='s', - ), - 97: Field( - name='cns_load', - type=BASE_TYPES[0x02], # uint8 - def_num=97, - units='percent', - ), - 98: Field( - name='n2_load', - type=BASE_TYPES[0x84], # uint16 - def_num=98, - units='percent', - ), - 253: FIELD_TYPE_TIMESTAMP, - }, - ), - 21: MessageType( - name='event', - mesg_num=21, - fields={ - 0: Field( - name='event', - type=FIELD_TYPES['event'], - def_num=0, - ), - 1: Field( - name='event_type', - type=FIELD_TYPES['event_type'], - def_num=1, - ), - 2: Field( - name='data16', - type=BASE_TYPES[0x84], # uint16 - def_num=2, - components=( - ComponentField( - name='data', - def_num=3, - accumulate=False, - bits=16, - bit_offset=0, - ), - ), - ), - 3: Field( - name='data', - type=BASE_TYPES[0x86], # uint32 - def_num=3, - subfields=( - SubField( - name='battery_level', - def_num=3, - type=BASE_TYPES[0x84], # uint16 - scale=1000, - units='V', - ref_fields=( - ReferenceField( - name='event', - def_num=0, - value='battery', - raw_value=11, - ), - ), - ), - SubField( - name='cad_high_alert', - def_num=3, - type=BASE_TYPES[0x84], # uint16 - units='rpm', - ref_fields=( - ReferenceField( - name='event', - def_num=0, - value='cad_high_alert', - raw_value=17, - ), - ), - ), - SubField( - name='cad_low_alert', - def_num=3, - type=BASE_TYPES[0x84], # uint16 - units='rpm', - ref_fields=( - ReferenceField( - name='event', - def_num=0, - value='cad_low_alert', - raw_value=18, - ), - ), - ), - SubField( - name='calorie_duration_alert', - def_num=3, - type=BASE_TYPES[0x86], # uint32 - units='calories', - ref_fields=( - ReferenceField( - name='event', - def_num=0, - value='calorie_duration_alert', - raw_value=25, - ), - ), - ), - SubField( - name='comm_timeout', - def_num=3, - type=FIELD_TYPES['comm_timeout_type'], - ref_fields=( - ReferenceField( - name='event', - def_num=0, - value='comm_timeout', - raw_value=47, - ), - ), - ), - SubField( - name='course_point_index', - def_num=3, - type=FIELD_TYPES['message_index'], - ref_fields=( - ReferenceField( - name='event', - def_num=0, - value='course_point', - raw_value=10, - ), - ), - ), - SubField( - name='distance_duration_alert', - def_num=3, - type=BASE_TYPES[0x86], # uint32 - scale=100, - units='m', - ref_fields=( - ReferenceField( - name='event', - def_num=0, - value='distance_duration_alert', - raw_value=24, - ), - ), - ), - SubField( - name='fitness_equipment_state', - def_num=3, - type=FIELD_TYPES['fitness_equipment_state'], - ref_fields=( - ReferenceField( - name='event', - def_num=0, - value='fitness_equipment', - raw_value=27, - ), - ), - ), - SubField( - name='gear_change_data', - def_num=3, - type=BASE_TYPES[0x86], # uint32 - ref_fields=( - ReferenceField( - name='event', - def_num=0, - value='front_gear_change', - raw_value=42, - ), - ReferenceField( - name='event', - def_num=0, - value='rear_gear_change', - raw_value=43, - ), - ), - components=( - ComponentField( - name='rear_gear_num', - def_num=11, - accumulate=False, - bits=8, - bit_offset=0, - ), - ComponentField( - name='rear_gear', - def_num=12, - accumulate=False, - bits=8, - bit_offset=8, - ), - ComponentField( - name='front_gear_num', - def_num=9, - accumulate=False, - bits=8, - bit_offset=16, - ), - ComponentField( - name='front_gear', - def_num=10, - accumulate=False, - bits=8, - bit_offset=24, - ), - ), - ), - SubField( - name='hr_high_alert', - def_num=3, - type=BASE_TYPES[0x02], # uint8 - units='bpm', - ref_fields=( - ReferenceField( - name='event', - def_num=0, - value='hr_high_alert', - raw_value=13, - ), - ), - ), - SubField( - name='hr_low_alert', - def_num=3, - type=BASE_TYPES[0x02], # uint8 - units='bpm', - ref_fields=( - ReferenceField( - name='event', - def_num=0, - value='hr_low_alert', - raw_value=14, - ), - ), - ), - SubField( - name='power_high_alert', - def_num=3, - type=BASE_TYPES[0x84], # uint16 - units='watts', - ref_fields=( - ReferenceField( - name='event', - def_num=0, - value='power_high_alert', - raw_value=19, - ), - ), - ), - SubField( - name='power_low_alert', - def_num=3, - type=BASE_TYPES[0x84], # uint16 - units='watts', - ref_fields=( - ReferenceField( - name='event', - def_num=0, - value='power_low_alert', - raw_value=20, - ), - ), - ), - SubField( # Indicates the rider position value. - name='rider_position', - def_num=3, - type=FIELD_TYPES['rider_position_type'], - ref_fields=( - ReferenceField( - name='event', - def_num=0, - value='rider_position_change', - raw_value=44, - ), - ), - ), - SubField( - name='speed_high_alert', - def_num=3, - type=BASE_TYPES[0x86], # uint32 - scale=1000, - units='m/s', - ref_fields=( - ReferenceField( - name='event', - def_num=0, - value='speed_high_alert', - raw_value=15, - ), - ), - ), - SubField( - name='speed_low_alert', - def_num=3, - type=BASE_TYPES[0x86], # uint32 - scale=1000, - units='m/s', - ref_fields=( - ReferenceField( - name='event', - def_num=0, - value='speed_low_alert', - raw_value=16, - ), - ), - ), - SubField( - name='sport_point', - def_num=3, - type=BASE_TYPES[0x86], # uint32 - ref_fields=( - ReferenceField( - name='event', - def_num=0, - value='sport_point', - raw_value=33, - ), - ), - components=( - ComponentField( - name='score', - def_num=7, - accumulate=False, - bits=16, - bit_offset=0, - ), - ComponentField( - name='opponent_score', - def_num=8, - accumulate=False, - bits=16, - bit_offset=16, - ), - ), - ), - SubField( - name='time_duration_alert', - def_num=3, - type=BASE_TYPES[0x86], # uint32 - scale=1000, - units='s', - ref_fields=( - ReferenceField( - name='event', - def_num=0, - value='time_duration_alert', - raw_value=23, - ), - ), - ), - SubField( - name='timer_trigger', - def_num=3, - type=FIELD_TYPES['timer_trigger'], - ref_fields=( - ReferenceField( - name='event', - def_num=0, - value='timer', - raw_value=0, - ), - ), - ), - SubField( - name='virtual_partner_speed', - def_num=3, - type=BASE_TYPES[0x84], # uint16 - scale=1000, - units='m/s', - ref_fields=( - ReferenceField( - name='event', - def_num=0, - value='virtual_partner_pace', - raw_value=12, - ), - ), - ), - ), - ), - 4: Field( - name='event_group', - type=BASE_TYPES[0x02], # uint8 - def_num=4, - ), - 7: Field( # Do not populate directly. Autogenerated by decoder for sport_point subfield components - name='score', - type=BASE_TYPES[0x84], # uint16 - def_num=7, - ), - 8: Field( # Do not populate directly. Autogenerated by decoder for sport_point subfield components - name='opponent_score', - type=BASE_TYPES[0x84], # uint16 - def_num=8, - ), - 9: Field( # Do not populate directly. Autogenerated by decoder for gear_change subfield components. Front gear number. 1 is innermost. - name='front_gear_num', - type=BASE_TYPES[0x0A], # uint8z - def_num=9, - ), - 10: Field( # Do not populate directly. Autogenerated by decoder for gear_change subfield components. Number of front teeth. - name='front_gear', - type=BASE_TYPES[0x0A], # uint8z - def_num=10, - ), - 11: Field( # Do not populate directly. Autogenerated by decoder for gear_change subfield components. Rear gear number. 1 is innermost. - name='rear_gear_num', - type=BASE_TYPES[0x0A], # uint8z - def_num=11, - ), - 12: Field( # Do not populate directly. Autogenerated by decoder for gear_change subfield components. Number of rear teeth. - name='rear_gear', - type=BASE_TYPES[0x0A], # uint8z - def_num=12, - ), - 13: Field( - name='device_index', - type=FIELD_TYPES['device_index'], - def_num=13, - ), - 253: FIELD_TYPE_TIMESTAMP, - }, - ), - 23: MessageType( - name='device_info', - mesg_num=23, - fields={ - 0: Field( - name='device_index', - type=FIELD_TYPES['device_index'], - def_num=0, - ), - 1: Field( - name='device_type', - type=BASE_TYPES[0x02], # uint8 - def_num=1, - subfields=( - SubField( - name='ant_device_type', - def_num=1, - type=BASE_TYPES[0x02], # uint8 - ref_fields=( - ReferenceField( - name='source_type', - def_num=25, - value='ant', - raw_value=0, - ), - ), - ), - SubField( - name='antplus_device_type', - def_num=1, - type=FIELD_TYPES['antplus_device_type'], - ref_fields=( - ReferenceField( - name='source_type', - def_num=25, - value='antplus', - raw_value=1, - ), - ), - ), - ), - ), - 2: Field( - name='manufacturer', - type=FIELD_TYPES['manufacturer'], - def_num=2, - ), - 3: Field( - name='serial_number', - type=BASE_TYPES[0x8C], # uint32z - def_num=3, - ), - 4: Field( - name='product', - type=BASE_TYPES[0x84], # uint16 - def_num=4, - subfields=( - SubField( - name='garmin_product', - def_num=4, - type=FIELD_TYPES['garmin_product'], - ref_fields=( - ReferenceField( - name='manufacturer', - def_num=2, - value='garmin', - raw_value=1, - ), - ReferenceField( - name='manufacturer', - def_num=2, - value='dynastream', - raw_value=15, - ), - ReferenceField( - name='manufacturer', - def_num=2, - value='dynastream_oem', - raw_value=13, - ), - ), - ), - SubField( - name='strava_product', - def_num=4, - type=FIELD_TYPES['strava_product'], - ref_fields=( - ReferenceField( - name='manufacturer', - def_num=2, - value='strava', - raw_value=265, - ), - ), - ), - ), - ), - 5: Field( - name='software_version', - type=BASE_TYPES[0x84], # uint16 - def_num=5, - scale=100, - ), - 6: Field( - name='hardware_version', - type=BASE_TYPES[0x02], # uint8 - def_num=6, - ), - 7: Field( # Reset by new battery or charge. - name='cum_operating_time', - type=BASE_TYPES[0x86], # uint32 - def_num=7, - units='s', - ), - 10: Field( - name='battery_voltage', - type=BASE_TYPES[0x84], # uint16 - def_num=10, - scale=256, - units='V', - ), - 11: Field( - name='battery_status', - type=FIELD_TYPES['battery_status'], - def_num=11, - ), - 18: Field( # Indicates the location of the sensor - name='sensor_position', - type=FIELD_TYPES['body_location'], - def_num=18, - ), - 19: Field( # Used to describe the sensor or location - name='descriptor', - type=BASE_TYPES[0x07], # string - def_num=19, - ), - 20: Field( - name='ant_transmission_type', - type=BASE_TYPES[0x0A], # uint8z - def_num=20, - ), - 21: Field( - name='ant_device_number', - type=BASE_TYPES[0x8B], # uint16z - def_num=21, - ), - 22: Field( - name='ant_network', - type=FIELD_TYPES['ant_network'], - def_num=22, - ), - 25: Field( - name='source_type', - type=FIELD_TYPES['source_type'], - def_num=25, - ), - 27: Field( # Optional free form string to indicate the devices name or model - name='product_name', - type=BASE_TYPES[0x07], # string - def_num=27, - ), - 253: FIELD_TYPE_TIMESTAMP, - }, - ), - 27: MessageType( - name='workout_step', - mesg_num=27, - fields={ - 0: Field( - name='wkt_step_name', - type=BASE_TYPES[0x07], # string - def_num=0, - ), - 1: Field( - name='duration_type', - type=FIELD_TYPES['wkt_step_duration'], - def_num=1, - ), - 2: Field( - name='duration_value', - type=BASE_TYPES[0x86], # uint32 - def_num=2, - subfields=( - SubField( - name='duration_calories', - def_num=2, - type=BASE_TYPES[0x86], # uint32 - units='calories', - ref_fields=( - ReferenceField( - name='duration_type', - def_num=1, - value='calories', - raw_value=4, - ), - ), - ), - SubField( - name='duration_distance', - def_num=2, - type=BASE_TYPES[0x86], # uint32 - scale=100, - units='m', - ref_fields=( - ReferenceField( - name='duration_type', - def_num=1, - value='distance', - raw_value=1, - ), - ), - ), - SubField( - name='duration_hr', - def_num=2, - type=FIELD_TYPES['workout_hr'], - units='% or bpm', - ref_fields=( - ReferenceField( - name='duration_type', - def_num=1, - value='hr_less_than', - raw_value=2, - ), - ReferenceField( - name='duration_type', - def_num=1, - value='hr_greater_than', - raw_value=3, - ), - ), - ), - SubField( - name='duration_power', - def_num=2, - type=FIELD_TYPES['workout_power'], - units='% or watts', - ref_fields=( - ReferenceField( - name='duration_type', - def_num=1, - value='power_less_than', - raw_value=14, - ), - ReferenceField( - name='duration_type', - def_num=1, - value='power_greater_than', - raw_value=15, - ), - ), - ), - SubField( - name='duration_reps', - def_num=2, - type=BASE_TYPES[0x86], # uint32 - ref_fields=( - ReferenceField( - name='duration_type', - def_num=1, - value='reps', - raw_value=29, - ), - ), - ), - SubField( # message_index of step to loop back to. Steps are assumed to be in the order by message_index. custom_name and intensity members are undefined for this duration type. - name='duration_step', - def_num=2, - type=BASE_TYPES[0x86], # uint32 - ref_fields=( - ReferenceField( - name='duration_type', - def_num=1, - value='repeat_until_steps_cmplt', - raw_value=6, - ), - ReferenceField( - name='duration_type', - def_num=1, - value='repeat_until_time', - raw_value=7, - ), - ReferenceField( - name='duration_type', - def_num=1, - value='repeat_until_distance', - raw_value=8, - ), - ReferenceField( - name='duration_type', - def_num=1, - value='repeat_until_calories', - raw_value=9, - ), - ReferenceField( - name='duration_type', - def_num=1, - value='repeat_until_hr_less_than', - raw_value=10, - ), - ReferenceField( - name='duration_type', - def_num=1, - value='repeat_until_hr_greater_than', - raw_value=11, - ), - ReferenceField( - name='duration_type', - def_num=1, - value='repeat_until_power_less_than', - raw_value=12, - ), - ReferenceField( - name='duration_type', - def_num=1, - value='repeat_until_power_greater_than', - raw_value=13, - ), - ), - ), - SubField( - name='duration_time', - def_num=2, - type=BASE_TYPES[0x86], # uint32 - scale=1000, - units='s', - ref_fields=( - ReferenceField( - name='duration_type', - def_num=1, - value='time', - raw_value=0, - ), - ReferenceField( - name='duration_type', - def_num=1, - value='repetition_time', - raw_value=28, - ), - ), - ), - ), - ), - 3: Field( - name='target_type', - type=FIELD_TYPES['wkt_step_target'], - def_num=3, - ), - 4: Field( - name='target_value', - type=BASE_TYPES[0x86], # uint32 - def_num=4, - subfields=( - SubField( - name='repeat_calories', - def_num=4, - type=BASE_TYPES[0x86], # uint32 - units='calories', - ref_fields=( - ReferenceField( - name='duration_type', - def_num=1, - value='repeat_until_calories', - raw_value=9, - ), - ), - ), - SubField( - name='repeat_distance', - def_num=4, - type=BASE_TYPES[0x86], # uint32 - scale=100, - units='m', - ref_fields=( - ReferenceField( - name='duration_type', - def_num=1, - value='repeat_until_distance', - raw_value=8, - ), - ), - ), - SubField( - name='repeat_hr', - def_num=4, - type=FIELD_TYPES['workout_hr'], - units='% or bpm', - ref_fields=( - ReferenceField( - name='duration_type', - def_num=1, - value='repeat_until_hr_less_than', - raw_value=10, - ), - ReferenceField( - name='duration_type', - def_num=1, - value='repeat_until_hr_greater_than', - raw_value=11, - ), - ), - ), - SubField( - name='repeat_power', - def_num=4, - type=FIELD_TYPES['workout_power'], - units='% or watts', - ref_fields=( - ReferenceField( - name='duration_type', - def_num=1, - value='repeat_until_power_less_than', - raw_value=12, - ), - ReferenceField( - name='duration_type', - def_num=1, - value='repeat_until_power_greater_than', - raw_value=13, - ), - ), - ), - SubField( # # of repetitions - name='repeat_steps', - def_num=4, - type=BASE_TYPES[0x86], # uint32 - ref_fields=( - ReferenceField( - name='duration_type', - def_num=1, - value='repeat_until_steps_cmplt', - raw_value=6, - ), - ), - ), - SubField( - name='repeat_time', - def_num=4, - type=BASE_TYPES[0x86], # uint32 - scale=1000, - units='s', - ref_fields=( - ReferenceField( - name='duration_type', - def_num=1, - value='repeat_until_time', - raw_value=7, - ), - ), - ), - SubField( # Zone (1-?); Custom = 0; - name='target_cadence_zone', - def_num=4, - type=BASE_TYPES[0x86], # uint32 - ref_fields=( - ReferenceField( - name='target_type', - def_num=3, - value='cadence', - raw_value=3, - ), - ), - ), - SubField( # hr zone (1-5);Custom =0; - name='target_hr_zone', - def_num=4, - type=BASE_TYPES[0x86], # uint32 - ref_fields=( - ReferenceField( - name='target_type', - def_num=3, - value='heart_rate', - raw_value=1, - ), - ), - ), - SubField( # Power Zone ( 1-7); Custom = 0; - name='target_power_zone', - def_num=4, - type=BASE_TYPES[0x86], # uint32 - ref_fields=( - ReferenceField( - name='target_type', - def_num=3, - value='power', - raw_value=4, - ), - ), - ), - SubField( # speed zone (1-10);Custom =0; - name='target_speed_zone', - def_num=4, - type=BASE_TYPES[0x86], # uint32 - ref_fields=( - ReferenceField( - name='target_type', - def_num=3, - value='speed', - raw_value=0, - ), - ), - ), - SubField( - name='target_stroke_type', - def_num=4, - type=FIELD_TYPES['swim_stroke'], - ref_fields=( - ReferenceField( - name='target_type', - def_num=3, - value='swim_stroke', - raw_value=11, - ), - ), - ), - ), - ), - 5: Field( - name='custom_target_value_low', - type=BASE_TYPES[0x86], # uint32 - def_num=5, - subfields=( - SubField( - name='custom_target_cadence_low', - def_num=5, - type=BASE_TYPES[0x86], # uint32 - units='rpm', - ref_fields=( - ReferenceField( - name='target_type', - def_num=3, - value='cadence', - raw_value=3, - ), - ), - ), - SubField( - name='custom_target_heart_rate_low', - def_num=5, - type=FIELD_TYPES['workout_hr'], - units='% or bpm', - ref_fields=( - ReferenceField( - name='target_type', - def_num=3, - value='heart_rate', - raw_value=1, - ), - ), - ), - SubField( - name='custom_target_power_low', - def_num=5, - type=FIELD_TYPES['workout_power'], - units='% or watts', - ref_fields=( - ReferenceField( - name='target_type', - def_num=3, - value='power', - raw_value=4, - ), - ), - ), - SubField( - name='custom_target_speed_low', - def_num=5, - type=BASE_TYPES[0x86], # uint32 - scale=1000, - units='m/s', - ref_fields=( - ReferenceField( - name='target_type', - def_num=3, - value='speed', - raw_value=0, - ), - ), - ), - ), - ), - 6: Field( - name='custom_target_value_high', - type=BASE_TYPES[0x86], # uint32 - def_num=6, - subfields=( - SubField( - name='custom_target_cadence_high', - def_num=6, - type=BASE_TYPES[0x86], # uint32 - units='rpm', - ref_fields=( - ReferenceField( - name='target_type', - def_num=3, - value='cadence', - raw_value=3, - ), - ), - ), - SubField( - name='custom_target_heart_rate_high', - def_num=6, - type=FIELD_TYPES['workout_hr'], - units='% or bpm', - ref_fields=( - ReferenceField( - name='target_type', - def_num=3, - value='heart_rate', - raw_value=1, - ), - ), - ), - SubField( - name='custom_target_power_high', - def_num=6, - type=FIELD_TYPES['workout_power'], - units='% or watts', - ref_fields=( - ReferenceField( - name='target_type', - def_num=3, - value='power', - raw_value=4, - ), - ), - ), - SubField( - name='custom_target_speed_high', - def_num=6, - type=BASE_TYPES[0x86], # uint32 - scale=1000, - units='m/s', - ref_fields=( - ReferenceField( - name='target_type', - def_num=3, - value='speed', - raw_value=0, - ), - ), - ), - ), - ), - 7: Field( - name='intensity', - type=FIELD_TYPES['intensity'], - def_num=7, - ), - 8: Field( - name='notes', - type=BASE_TYPES[0x07], # string - def_num=8, - ), - 9: Field( - name='equipment', - type=FIELD_TYPES['workout_equipment'], - def_num=9, - ), - 10: Field( - name='exercise_category', - type=FIELD_TYPES['exercise_category'], - def_num=10, - ), - 11: Field( - name='exercise_name', - type=BASE_TYPES[0x84], # uint16 - def_num=11, - ), - 12: Field( - name='exercise_weight', - type=BASE_TYPES[0x84], # uint16 - def_num=12, - scale=100, - units='kg', - ), - 13: Field( - name='weight_display_unit', - type=FIELD_TYPES['fit_base_unit'], - def_num=13, - ), - 254: Field( - name='message_index', - type=FIELD_TYPES['message_index'], - def_num=254, - ), - }, - ), - 32: MessageType( - name='course_point', - mesg_num=32, - fields={ - 1: Field( - name='timestamp', - type=FIELD_TYPES['date_time'], - def_num=1, - ), - 2: Field( - name='position_lat', - type=BASE_TYPES[0x85], # sint32 - def_num=2, - units='semicircles', - ), - 3: Field( - name='position_long', - type=BASE_TYPES[0x85], # sint32 - def_num=3, - units='semicircles', - ), - 4: Field( - name='distance', - type=BASE_TYPES[0x86], # uint32 - def_num=4, - scale=100, - units='m', - ), - 5: Field( - name='type', - type=FIELD_TYPES['course_point'], - def_num=5, - ), - 6: Field( - name='name', - type=BASE_TYPES[0x07], # string - def_num=6, - ), - 8: Field( - name='favorite', - type=FIELD_TYPES['bool'], - def_num=8, - ), - 254: Field( - name='message_index', - type=FIELD_TYPES['message_index'], - def_num=254, - ), - }, - ), - 37: MessageType( - name='file_capabilities', - mesg_num=37, - fields={ - 0: Field( - name='type', - type=FIELD_TYPES['file'], - def_num=0, - ), - 1: Field( - name='flags', - type=FIELD_TYPES['file_flags'], - def_num=1, - ), - 2: Field( - name='directory', - type=BASE_TYPES[0x07], # string - def_num=2, - ), - 3: Field( - name='max_count', - type=BASE_TYPES[0x84], # uint16 - def_num=3, - ), - 4: Field( - name='max_size', - type=BASE_TYPES[0x86], # uint32 - def_num=4, - units='bytes', - ), - 254: Field( - name='message_index', - type=FIELD_TYPES['message_index'], - def_num=254, - ), - }, - ), - 38: MessageType( - name='mesg_capabilities', - mesg_num=38, - fields={ - 0: Field( - name='file', - type=FIELD_TYPES['file'], - def_num=0, - ), - 1: Field( - name='mesg_num', - type=FIELD_TYPES['mesg_num'], - def_num=1, - ), - 2: Field( - name='count_type', - type=FIELD_TYPES['mesg_count'], - def_num=2, - ), - 3: Field( - name='count', - type=BASE_TYPES[0x84], # uint16 - def_num=3, - subfields=( - SubField( - name='max_per_file', - def_num=3, - type=BASE_TYPES[0x84], # uint16 - ref_fields=( - ReferenceField( - name='count_type', - def_num=2, - value='max_per_file', - raw_value=1, - ), - ), - ), - SubField( - name='max_per_file_type', - def_num=3, - type=BASE_TYPES[0x84], # uint16 - ref_fields=( - ReferenceField( - name='count_type', - def_num=2, - value='max_per_file_type', - raw_value=2, - ), - ), - ), - SubField( - name='num_per_file', - def_num=3, - type=BASE_TYPES[0x84], # uint16 - ref_fields=( - ReferenceField( - name='count_type', - def_num=2, - value='num_per_file', - raw_value=0, - ), - ), - ), - ), - ), - 254: Field( - name='message_index', - type=FIELD_TYPES['message_index'], - def_num=254, - ), - }, - ), - 39: MessageType( - name='field_capabilities', - mesg_num=39, - fields={ - 0: Field( - name='file', - type=FIELD_TYPES['file'], - def_num=0, - ), - 1: Field( - name='mesg_num', - type=FIELD_TYPES['mesg_num'], - def_num=1, - ), - 2: Field( - name='field_num', - type=BASE_TYPES[0x02], # uint8 - def_num=2, - ), - 3: Field( - name='count', - type=BASE_TYPES[0x84], # uint16 - def_num=3, - ), - 254: Field( - name='message_index', - type=FIELD_TYPES['message_index'], - def_num=254, - ), - }, - ), - 49: MessageType( - name='file_creator', - mesg_num=49, - fields={ - 0: Field( - name='software_version', - type=BASE_TYPES[0x84], # uint16 - def_num=0, - ), - 1: Field( - name='hardware_version', - type=BASE_TYPES[0x02], # uint8 - def_num=1, - ), - }, - ), - 53: MessageType( - name='speed_zone', - mesg_num=53, - fields={ - 0: Field( - name='high_value', - type=BASE_TYPES[0x84], # uint16 - def_num=0, - scale=1000, - units='m/s', - ), - 1: Field( - name='name', - type=BASE_TYPES[0x07], # string - def_num=1, - ), - 254: Field( - name='message_index', - type=FIELD_TYPES['message_index'], - def_num=254, - ), - }, - ), - 55: MessageType( - name='monitoring', - mesg_num=55, - fields={ - 0: Field( # Associates this data to device_info message. Not required for file with single device (sensor). - name='device_index', - type=FIELD_TYPES['device_index'], - def_num=0, - ), - 1: Field( # Accumulated total calories. Maintained by MonitoringReader for each activity_type. See SDK documentation - name='calories', - type=BASE_TYPES[0x84], # uint16 - def_num=1, - units='kcal', - ), - 2: Field( # Accumulated distance. Maintained by MonitoringReader for each activity_type. See SDK documentation. - name='distance', - type=BASE_TYPES[0x86], # uint32 - def_num=2, - scale=100, - units='m', - ), - 3: Field( # Accumulated cycles. Maintained by MonitoringReader for each activity_type. See SDK documentation. - name='cycles', - type=BASE_TYPES[0x86], # uint32 - def_num=3, - scale=2, - units='cycles', - subfields=( - SubField( - name='steps', - def_num=3, - type=BASE_TYPES[0x86], # uint32 - units='steps', - ref_fields=( - ReferenceField( - name='activity_type', - def_num=5, - value='walking', - raw_value=6, - ), - ReferenceField( - name='activity_type', - def_num=5, - value='running', - raw_value=1, - ), - ), - ), - SubField( - name='strokes', - def_num=3, - type=BASE_TYPES[0x86], # uint32 - scale=2, - units='strokes', - ref_fields=( - ReferenceField( - name='activity_type', - def_num=5, - value='cycling', - raw_value=2, - ), - ReferenceField( - name='activity_type', - def_num=5, - value='swimming', - raw_value=5, - ), - ), - ), - ), - ), - 4: Field( - name='active_time', - type=BASE_TYPES[0x86], # uint32 - def_num=4, - scale=1000, - units='s', - ), - 5: Field( - name='activity_type', - type=FIELD_TYPES['activity_type'], - def_num=5, - ), - 6: Field( - name='activity_subtype', - type=FIELD_TYPES['activity_subtype'], - def_num=6, - ), - 7: Field( - name='activity_level', - type=FIELD_TYPES['activity_level'], - def_num=7, - ), - 8: Field( - name='distance_16', - type=BASE_TYPES[0x84], # uint16 - def_num=8, - units='100*m', - ), - 9: Field( - name='cycles_16', - type=BASE_TYPES[0x84], # uint16 - def_num=9, - units='2*cycles or steps', - ), - 10: Field( - name='active_time_16', - type=BASE_TYPES[0x84], # uint16 - def_num=10, - units='s', - ), - 11: Field( # Must align to logging interval, for example, time must be 00:00:00 for daily log. - name='local_timestamp', - type=FIELD_TYPES['local_date_time'], - def_num=11, - ), - 12: Field( # Avg temperature during the logging interval ended at timestamp - name='temperature', - type=BASE_TYPES[0x83], # sint16 - def_num=12, - scale=100, - units='C', - ), - 14: Field( # Min temperature during the logging interval ended at timestamp - name='temperature_min', - type=BASE_TYPES[0x83], # sint16 - def_num=14, - scale=100, - units='C', - ), - 15: Field( # Max temperature during the logging interval ended at timestamp - name='temperature_max', - type=BASE_TYPES[0x83], # sint16 - def_num=15, - scale=100, - units='C', - ), - 16: Field( # Indexed using minute_activity_level enum - name='activity_time', - type=BASE_TYPES[0x84], # uint16 - def_num=16, - units='minutes', - ), - 19: Field( - name='active_calories', - type=BASE_TYPES[0x84], # uint16 - def_num=19, - units='kcal', - ), - 24: Field( # Indicates single type / intensity for duration since last monitoring message. - name='current_activity_type_intensity', - type=BASE_TYPES[0x0D], # byte - def_num=24, - components=( - ComponentField( - name='activity_type', - def_num=5, - accumulate=False, - bits=5, - bit_offset=0, - ), - ComponentField( - name='intensity', - def_num=28, - accumulate=False, - bits=3, - bit_offset=5, - ), - ), - ), - 25: Field( - name='timestamp_min_8', - type=BASE_TYPES[0x02], # uint8 - def_num=25, - units='min', - ), - 26: Field( - name='timestamp_16', - type=BASE_TYPES[0x84], # uint16 - def_num=26, - units='s', - ), - 27: Field( - name='heart_rate', - type=BASE_TYPES[0x02], # uint8 - def_num=27, - units='bpm', - ), - 28: Field( - name='intensity', - type=BASE_TYPES[0x02], # uint8 - def_num=28, - scale=10, - ), - 29: Field( - name='duration_min', - type=BASE_TYPES[0x84], # uint16 - def_num=29, - units='min', - ), - 30: Field( - name='duration', - type=BASE_TYPES[0x86], # uint32 - def_num=30, - units='s', - ), - 31: Field( - name='ascent', - type=BASE_TYPES[0x86], # uint32 - def_num=31, - scale=1000, - units='m', - ), - 32: Field( - name='descent', - type=BASE_TYPES[0x86], # uint32 - def_num=32, - scale=1000, - units='m', - ), - 33: Field( - name='moderate_activity_minutes', - type=BASE_TYPES[0x84], # uint16 - def_num=33, - units='minutes', - ), - 34: Field( - name='vigorous_activity_minutes', - type=BASE_TYPES[0x84], # uint16 - def_num=34, - units='minutes', - ), - 253: FIELD_TYPE_TIMESTAMP, # Must align to logging interval, for example, time must be 00:00:00 for daily log. - }, - ), - 72: MessageType( # Corresponds to file_id of workout or course. - name='training_file', - mesg_num=72, - fields={ - 0: Field( - name='type', - type=FIELD_TYPES['file'], - def_num=0, - ), - 1: Field( - name='manufacturer', - type=FIELD_TYPES['manufacturer'], - def_num=1, - ), - 2: Field( - name='product', - type=BASE_TYPES[0x84], # uint16 - def_num=2, - subfields=( - SubField( - name='garmin_product', - def_num=2, - type=FIELD_TYPES['garmin_product'], - ref_fields=( - ReferenceField( - name='manufacturer', - def_num=1, - value='garmin', - raw_value=1, - ), - ReferenceField( - name='manufacturer', - def_num=1, - value='dynastream', - raw_value=15, - ), - ReferenceField( - name='manufacturer', - def_num=1, - value='dynastream_oem', - raw_value=13, - ), - ), - ), - ), - ), - 3: Field( - name='serial_number', - type=BASE_TYPES[0x8C], # uint32z - def_num=3, - ), - 4: Field( - name='time_created', - type=FIELD_TYPES['date_time'], - def_num=4, - ), - 253: FIELD_TYPE_TIMESTAMP, - }, - ), - 78: MessageType( # Heart rate variability - name='hrv', - mesg_num=78, - fields={ - 0: Field( # Time between beats - name='time', - type=BASE_TYPES[0x84], # uint16 - def_num=0, - scale=1000, - units='s', - ), - }, - ), - 80: MessageType( - name='ant_rx', - mesg_num=80, - fields={ - 0: Field( - name='fractional_timestamp', - type=BASE_TYPES[0x84], # uint16 - def_num=0, - scale=32768, - units='s', - ), - 1: Field( - name='mesg_id', - type=BASE_TYPES[0x0D], # byte - def_num=1, - ), - 2: Field( - name='mesg_data', - type=BASE_TYPES[0x0D], # byte - def_num=2, - components=( - ComponentField( - name='channel_number', - def_num=3, - accumulate=False, - bits=8, - bit_offset=0, - ), - ComponentField( - name='data', - def_num=4, - accumulate=False, - bits=8, - bit_offset=8, - ), - ComponentField( - name='data', - def_num=4, - accumulate=False, - bits=8, - bit_offset=16, - ), - ComponentField( - name='data', - def_num=4, - accumulate=False, - bits=8, - bit_offset=24, - ), - ComponentField( - name='data', - def_num=4, - accumulate=False, - bits=8, - bit_offset=32, - ), - ComponentField( - name='data', - def_num=4, - accumulate=False, - bits=8, - bit_offset=40, - ), - ComponentField( - name='data', - def_num=4, - accumulate=False, - bits=8, - bit_offset=48, - ), - ComponentField( - name='data', - def_num=4, - accumulate=False, - bits=8, - bit_offset=56, - ), - ComponentField( - name='data', - def_num=4, - accumulate=False, - bits=8, - bit_offset=64, - ), - ), - ), - 3: Field( - name='channel_number', - type=BASE_TYPES[0x02], # uint8 - def_num=3, - ), - 4: Field( - name='data', - type=BASE_TYPES[0x0D], # byte - def_num=4, - ), - 253: FIELD_TYPE_TIMESTAMP, - }, - ), - 81: MessageType( - name='ant_tx', - mesg_num=81, - fields={ - 0: Field( - name='fractional_timestamp', - type=BASE_TYPES[0x84], # uint16 - def_num=0, - scale=32768, - units='s', - ), - 1: Field( - name='mesg_id', - type=BASE_TYPES[0x0D], # byte - def_num=1, - ), - 2: Field( - name='mesg_data', - type=BASE_TYPES[0x0D], # byte - def_num=2, - components=( - ComponentField( - name='channel_number', - def_num=3, - accumulate=False, - bits=8, - bit_offset=0, - ), - ComponentField( - name='data', - def_num=4, - accumulate=False, - bits=8, - bit_offset=8, - ), - ComponentField( - name='data', - def_num=4, - accumulate=False, - bits=8, - bit_offset=16, - ), - ComponentField( - name='data', - def_num=4, - accumulate=False, - bits=8, - bit_offset=24, - ), - ComponentField( - name='data', - def_num=4, - accumulate=False, - bits=8, - bit_offset=32, - ), - ComponentField( - name='data', - def_num=4, - accumulate=False, - bits=8, - bit_offset=40, - ), - ComponentField( - name='data', - def_num=4, - accumulate=False, - bits=8, - bit_offset=48, - ), - ComponentField( - name='data', - def_num=4, - accumulate=False, - bits=8, - bit_offset=56, - ), - ComponentField( - name='data', - def_num=4, - accumulate=False, - bits=8, - bit_offset=64, - ), - ), - ), - 3: Field( - name='channel_number', - type=BASE_TYPES[0x02], # uint8 - def_num=3, - ), - 4: Field( - name='data', - type=BASE_TYPES[0x0D], # byte - def_num=4, - ), - 253: FIELD_TYPE_TIMESTAMP, - }, - ), - 82: MessageType( - name='ant_channel_id', - mesg_num=82, - fields={ - 0: Field( - name='channel_number', - type=BASE_TYPES[0x02], # uint8 - def_num=0, - ), - 1: Field( - name='device_type', - type=BASE_TYPES[0x0A], # uint8z - def_num=1, - ), - 2: Field( - name='device_number', - type=BASE_TYPES[0x8B], # uint16z - def_num=2, - ), - 3: Field( - name='transmission_type', - type=BASE_TYPES[0x0A], # uint8z - def_num=3, - ), - 4: Field( - name='device_index', - type=FIELD_TYPES['device_index'], - def_num=4, - ), - }, - ), - 101: MessageType( - name='length', - mesg_num=101, - fields={ - 0: Field( - name='event', - type=FIELD_TYPES['event'], - def_num=0, - ), - 1: Field( - name='event_type', - type=FIELD_TYPES['event_type'], - def_num=1, - ), - 2: Field( - name='start_time', - type=FIELD_TYPES['date_time'], - def_num=2, - ), - 3: Field( - name='total_elapsed_time', - type=BASE_TYPES[0x86], # uint32 - def_num=3, - scale=1000, - units='s', - ), - 4: Field( - name='total_timer_time', - type=BASE_TYPES[0x86], # uint32 - def_num=4, - scale=1000, - units='s', - ), - 5: Field( - name='total_strokes', - type=BASE_TYPES[0x84], # uint16 - def_num=5, - units='strokes', - ), - 6: Field( - name='avg_speed', - type=BASE_TYPES[0x84], # uint16 - def_num=6, - scale=1000, - units='m/s', - ), - 7: Field( - name='swim_stroke', - type=FIELD_TYPES['swim_stroke'], - def_num=7, - units='swim_stroke', - ), - 9: Field( - name='avg_swimming_cadence', - type=BASE_TYPES[0x02], # uint8 - def_num=9, - units='strokes/min', - ), - 10: Field( - name='event_group', - type=BASE_TYPES[0x02], # uint8 - def_num=10, - ), - 11: Field( - name='total_calories', - type=BASE_TYPES[0x84], # uint16 - def_num=11, - units='kcal', - ), - 12: Field( - name='length_type', - type=FIELD_TYPES['length_type'], - def_num=12, - ), - 18: Field( - name='player_score', - type=BASE_TYPES[0x84], # uint16 - def_num=18, - ), - 19: Field( - name='opponent_score', - type=BASE_TYPES[0x84], # uint16 - def_num=19, - ), - 20: Field( # stroke_type enum used as the index - name='stroke_count', - type=BASE_TYPES[0x84], # uint16 - def_num=20, - units='counts', - ), - 21: Field( # zone number used as the index - name='zone_count', - type=BASE_TYPES[0x84], # uint16 - def_num=21, - units='counts', - ), - 253: FIELD_TYPE_TIMESTAMP, - 254: Field( - name='message_index', - type=FIELD_TYPES['message_index'], - def_num=254, - ), - }, - ), - 106: MessageType( - name='slave_device', - mesg_num=106, - fields={ - 0: Field( - name='manufacturer', - type=FIELD_TYPES['manufacturer'], - def_num=0, - ), - 1: Field( - name='product', - type=BASE_TYPES[0x84], # uint16 - def_num=1, - subfields=( - SubField( - name='garmin_product', - def_num=1, - type=FIELD_TYPES['garmin_product'], - ref_fields=( - ReferenceField( - name='manufacturer', - def_num=0, - value='garmin', - raw_value=1, - ), - ReferenceField( - name='manufacturer', - def_num=0, - value='dynastream', - raw_value=15, - ), - ReferenceField( - name='manufacturer', - def_num=0, - value='dynastream_oem', - raw_value=13, - ), - ), - ), - SubField( - name='strava_product', - def_num=1, - type=FIELD_TYPES['strava_product'], - ref_fields=( - ReferenceField( - name='manufacturer', - def_num=0, - value='strava', - raw_value=265, - ), - ), - ), - ), - ), - }, - ), - 127: MessageType( - name='connectivity', - mesg_num=127, - fields={ - 0: Field( # Use Bluetooth for connectivity features - name='bluetooth_enabled', - type=FIELD_TYPES['bool'], - def_num=0, - ), - 1: Field( # Use Bluetooth Low Energy for connectivity features - name='bluetooth_le_enabled', - type=FIELD_TYPES['bool'], - def_num=1, - ), - 2: Field( # Use ANT for connectivity features - name='ant_enabled', - type=FIELD_TYPES['bool'], - def_num=2, - ), - 3: Field( - name='name', - type=BASE_TYPES[0x07], # string - def_num=3, - ), - 4: Field( - name='live_tracking_enabled', - type=FIELD_TYPES['bool'], - def_num=4, - ), - 5: Field( - name='weather_conditions_enabled', - type=FIELD_TYPES['bool'], - def_num=5, - ), - 6: Field( - name='weather_alerts_enabled', - type=FIELD_TYPES['bool'], - def_num=6, - ), - 7: Field( - name='auto_activity_upload_enabled', - type=FIELD_TYPES['bool'], - def_num=7, - ), - 8: Field( - name='course_download_enabled', - type=FIELD_TYPES['bool'], - def_num=8, - ), - 9: Field( - name='workout_download_enabled', - type=FIELD_TYPES['bool'], - def_num=9, - ), - 10: Field( - name='gps_ephemeris_download_enabled', - type=FIELD_TYPES['bool'], - def_num=10, - ), - 11: Field( - name='incident_detection_enabled', - type=FIELD_TYPES['bool'], - def_num=11, - ), - 12: Field( - name='grouptrack_enabled', - type=FIELD_TYPES['bool'], - def_num=12, - ), - }, - ), - 128: MessageType( - name='weather_conditions', - mesg_num=128, - fields={ - 0: Field( # Current or forecast - name='weather_report', - type=FIELD_TYPES['weather_report'], - def_num=0, - ), - 1: Field( - name='temperature', - type=BASE_TYPES[0x01], # sint8 - def_num=1, - units='C', - ), - 2: Field( # Corresponds to GSC Response weatherIcon field - name='condition', - type=FIELD_TYPES['weather_status'], - def_num=2, - ), - 3: Field( - name='wind_direction', - type=BASE_TYPES[0x84], # uint16 - def_num=3, - units='degrees', - ), - 4: Field( - name='wind_speed', - type=BASE_TYPES[0x84], # uint16 - def_num=4, - scale=1000, - units='m/s', - ), - 5: Field( # range 0-100 - name='precipitation_probability', - type=BASE_TYPES[0x02], # uint8 - def_num=5, - ), - 6: Field( # Heat Index if GCS heatIdx above or equal to 90F or wind chill if GCS windChill below or equal to 32F - name='temperature_feels_like', - type=BASE_TYPES[0x01], # sint8 - def_num=6, - units='C', - ), - 7: Field( - name='relative_humidity', - type=BASE_TYPES[0x02], # uint8 - def_num=7, - ), - 8: Field( # string corresponding to GCS response location string - name='location', - type=BASE_TYPES[0x07], # string - def_num=8, - ), - 9: Field( - name='observed_at_time', - type=FIELD_TYPES['date_time'], - def_num=9, - ), - 10: Field( - name='observed_location_lat', - type=BASE_TYPES[0x85], # sint32 - def_num=10, - units='semicircles', - ), - 11: Field( - name='observed_location_long', - type=BASE_TYPES[0x85], # sint32 - def_num=11, - units='semicircles', - ), - 12: Field( - name='day_of_week', - type=FIELD_TYPES['day_of_week'], - def_num=12, - ), - 13: Field( - name='high_temperature', - type=BASE_TYPES[0x01], # sint8 - def_num=13, - units='C', - ), - 14: Field( - name='low_temperature', - type=BASE_TYPES[0x01], # sint8 - def_num=14, - units='C', - ), - 253: FIELD_TYPE_TIMESTAMP, # time of update for current conditions, else forecast time - }, - ), - 129: MessageType( - name='weather_alert', - mesg_num=129, - fields={ - 0: Field( # Unique identifier from GCS report ID string, length is 12 - name='report_id', - type=BASE_TYPES[0x07], # string - def_num=0, - ), - 1: Field( # Time alert was issued - name='issue_time', - type=FIELD_TYPES['date_time'], - def_num=1, - ), - 2: Field( # Time alert expires - name='expire_time', - type=FIELD_TYPES['date_time'], - def_num=2, - ), - 3: Field( # Warning, Watch, Advisory, Statement - name='severity', - type=FIELD_TYPES['weather_severity'], - def_num=3, - ), - 4: Field( # Tornado, Severe Thunderstorm, etc. - name='type', - type=FIELD_TYPES['weather_severe_type'], - def_num=4, - ), - 253: FIELD_TYPE_TIMESTAMP, - }, - ), - 131: MessageType( - name='cadence_zone', - mesg_num=131, - fields={ - 0: Field( - name='high_value', - type=BASE_TYPES[0x02], # uint8 - def_num=0, - units='rpm', - ), - 1: Field( - name='name', - type=BASE_TYPES[0x07], # string - def_num=1, - ), - 254: Field( - name='message_index', - type=FIELD_TYPES['message_index'], - def_num=254, - ), - }, - ), - 132: MessageType( - name='hr', - mesg_num=132, - fields={ - 0: Field( - name='fractional_timestamp', - type=BASE_TYPES[0x84], # uint16 - def_num=0, - scale=32768, - units='s', - ), - 1: Field( - name='time256', - type=BASE_TYPES[0x02], # uint8 - def_num=1, - scale=256, - units='s', - components=( - ComponentField( - name='fractional_timestamp', - def_num=0, - scale=256, - units='s', - accumulate=False, - bits=8, - bit_offset=0, - ), - ), - ), - 6: Field( - name='filtered_bpm', - type=BASE_TYPES[0x02], # uint8 - def_num=6, - units='bpm', - ), - 9: Field( - name='event_timestamp', - type=BASE_TYPES[0x86], # uint32 - def_num=9, - scale=1024, - units='s', - ), - 10: Field( - name='event_timestamp_12', - type=BASE_TYPES[0x0D], # byte - def_num=10, - components=( - ComponentField( - name='event_timestamp', - def_num=9, - scale=1024, - units='s', - accumulate=True, - bits=12, - bit_offset=0, - ), - ComponentField( - name='event_timestamp', - def_num=9, - scale=1024, - units='s', - accumulate=True, - bits=12, - bit_offset=12, - ), - ComponentField( - name='event_timestamp', - def_num=9, - scale=1024, - units='s', - accumulate=True, - bits=12, - bit_offset=24, - ), - ComponentField( - name='event_timestamp', - def_num=9, - scale=1024, - units='s', - accumulate=True, - bits=12, - bit_offset=36, - ), - ComponentField( - name='event_timestamp', - def_num=9, - scale=1024, - units='s', - accumulate=True, - bits=12, - bit_offset=48, - ), - ComponentField( - name='event_timestamp', - def_num=9, - scale=1024, - units='s', - accumulate=True, - bits=12, - bit_offset=60, - ), - ComponentField( - name='event_timestamp', - def_num=9, - scale=1024, - units='s', - accumulate=True, - bits=12, - bit_offset=72, - ), - ComponentField( - name='event_timestamp', - def_num=9, - scale=1024, - units='s', - accumulate=True, - bits=12, - bit_offset=84, - ), - ComponentField( - name='event_timestamp', - def_num=9, - scale=1024, - units='s', - accumulate=True, - bits=12, - bit_offset=96, - ), - ComponentField( - name='event_timestamp', - def_num=9, - scale=1024, - units='s', - accumulate=True, - bits=12, - bit_offset=108, - ), - ), - ), - 253: FIELD_TYPE_TIMESTAMP, - }, - ), - 142: MessageType( - name='segment_lap', - mesg_num=142, - fields={ - 0: Field( - name='event', - type=FIELD_TYPES['event'], - def_num=0, - ), - 1: Field( - name='event_type', - type=FIELD_TYPES['event_type'], - def_num=1, - ), - 2: Field( - name='start_time', - type=FIELD_TYPES['date_time'], - def_num=2, - ), - 3: Field( - name='start_position_lat', - type=BASE_TYPES[0x85], # sint32 - def_num=3, - units='semicircles', - ), - 4: Field( - name='start_position_long', - type=BASE_TYPES[0x85], # sint32 - def_num=4, - units='semicircles', - ), - 5: Field( - name='end_position_lat', - type=BASE_TYPES[0x85], # sint32 - def_num=5, - units='semicircles', - ), - 6: Field( - name='end_position_long', - type=BASE_TYPES[0x85], # sint32 - def_num=6, - units='semicircles', - ), - 7: Field( # Time (includes pauses) - name='total_elapsed_time', - type=BASE_TYPES[0x86], # uint32 - def_num=7, - scale=1000, - units='s', - ), - 8: Field( # Timer Time (excludes pauses) - name='total_timer_time', - type=BASE_TYPES[0x86], # uint32 - def_num=8, - scale=1000, - units='s', - ), - 9: Field( - name='total_distance', - type=BASE_TYPES[0x86], # uint32 - def_num=9, - scale=100, - units='m', - ), - 10: Field( - name='total_cycles', - type=BASE_TYPES[0x86], # uint32 - def_num=10, - units='cycles', - subfields=( - SubField( - name='total_strokes', - def_num=10, - type=BASE_TYPES[0x86], # uint32 - units='strokes', - ref_fields=( - ReferenceField( - name='sport', - def_num=23, - value='cycling', - raw_value=2, - ), - ), - ), - ), - ), - 11: Field( - name='total_calories', - type=BASE_TYPES[0x84], # uint16 - def_num=11, - units='kcal', - ), - 12: Field( # If New Leaf - name='total_fat_calories', - type=BASE_TYPES[0x84], # uint16 - def_num=12, - units='kcal', - ), - 13: Field( - name='avg_speed', - type=BASE_TYPES[0x84], # uint16 - def_num=13, - scale=1000, - units='m/s', - ), - 14: Field( - name='max_speed', - type=BASE_TYPES[0x84], # uint16 - def_num=14, - scale=1000, - units='m/s', - ), - 15: Field( - name='avg_heart_rate', - type=BASE_TYPES[0x02], # uint8 - def_num=15, - units='bpm', - ), - 16: Field( - name='max_heart_rate', - type=BASE_TYPES[0x02], # uint8 - def_num=16, - units='bpm', - ), - 17: Field( # total_cycles / total_timer_time if non_zero_avg_cadence otherwise total_cycles / total_elapsed_time - name='avg_cadence', - type=BASE_TYPES[0x02], # uint8 - def_num=17, - units='rpm', - ), - 18: Field( - name='max_cadence', - type=BASE_TYPES[0x02], # uint8 - def_num=18, - units='rpm', - ), - 19: Field( # total_power / total_timer_time if non_zero_avg_power otherwise total_power / total_elapsed_time - name='avg_power', - type=BASE_TYPES[0x84], # uint16 - def_num=19, - units='watts', - ), - 20: Field( - name='max_power', - type=BASE_TYPES[0x84], # uint16 - def_num=20, - units='watts', - ), - 21: Field( - name='total_ascent', - type=BASE_TYPES[0x84], # uint16 - def_num=21, - units='m', - ), - 22: Field( - name='total_descent', - type=BASE_TYPES[0x84], # uint16 - def_num=22, - units='m', - ), - 23: Field( - name='sport', - type=FIELD_TYPES['sport'], - def_num=23, - ), - 24: Field( - name='event_group', - type=BASE_TYPES[0x02], # uint8 - def_num=24, - ), - 25: Field( # North east corner latitude. - name='nec_lat', - type=BASE_TYPES[0x85], # sint32 - def_num=25, - units='semicircles', - ), - 26: Field( # North east corner longitude. - name='nec_long', - type=BASE_TYPES[0x85], # sint32 - def_num=26, - units='semicircles', - ), - 27: Field( # South west corner latitude. - name='swc_lat', - type=BASE_TYPES[0x85], # sint32 - def_num=27, - units='semicircles', - ), - 28: Field( # South west corner latitude. - name='swc_long', - type=BASE_TYPES[0x85], # sint32 - def_num=28, - units='semicircles', - ), - 29: Field( - name='name', - type=BASE_TYPES[0x07], # string - def_num=29, - ), - 30: Field( - name='normalized_power', - type=BASE_TYPES[0x84], # uint16 - def_num=30, - units='watts', - ), - 31: Field( - name='left_right_balance', - type=FIELD_TYPES['left_right_balance_100'], - def_num=31, - ), - 32: Field( - name='sub_sport', - type=FIELD_TYPES['sub_sport'], - def_num=32, - ), - 33: Field( - name='total_work', - type=BASE_TYPES[0x86], # uint32 - def_num=33, - units='J', - ), - 34: Field( - name='avg_altitude', - type=BASE_TYPES[0x84], # uint16 - def_num=34, - scale=5, - offset=500, - units='m', - ), - 35: Field( - name='max_altitude', - type=BASE_TYPES[0x84], # uint16 - def_num=35, - scale=5, - offset=500, - units='m', - ), - 36: Field( - name='gps_accuracy', - type=BASE_TYPES[0x02], # uint8 - def_num=36, - units='m', - ), - 37: Field( - name='avg_grade', - type=BASE_TYPES[0x83], # sint16 - def_num=37, - scale=100, - units='%', - ), - 38: Field( - name='avg_pos_grade', - type=BASE_TYPES[0x83], # sint16 - def_num=38, - scale=100, - units='%', - ), - 39: Field( - name='avg_neg_grade', - type=BASE_TYPES[0x83], # sint16 - def_num=39, - scale=100, - units='%', - ), - 40: Field( - name='max_pos_grade', - type=BASE_TYPES[0x83], # sint16 - def_num=40, - scale=100, - units='%', - ), - 41: Field( - name='max_neg_grade', - type=BASE_TYPES[0x83], # sint16 - def_num=41, - scale=100, - units='%', - ), - 42: Field( - name='avg_temperature', - type=BASE_TYPES[0x01], # sint8 - def_num=42, - units='C', - ), - 43: Field( - name='max_temperature', - type=BASE_TYPES[0x01], # sint8 - def_num=43, - units='C', - ), - 44: Field( - name='total_moving_time', - type=BASE_TYPES[0x86], # uint32 - def_num=44, - scale=1000, - units='s', - ), - 45: Field( - name='avg_pos_vertical_speed', - type=BASE_TYPES[0x83], # sint16 - def_num=45, - scale=1000, - units='m/s', - ), - 46: Field( - name='avg_neg_vertical_speed', - type=BASE_TYPES[0x83], # sint16 - def_num=46, - scale=1000, - units='m/s', - ), - 47: Field( - name='max_pos_vertical_speed', - type=BASE_TYPES[0x83], # sint16 - def_num=47, - scale=1000, - units='m/s', - ), - 48: Field( - name='max_neg_vertical_speed', - type=BASE_TYPES[0x83], # sint16 - def_num=48, - scale=1000, - units='m/s', - ), - 49: Field( - name='time_in_hr_zone', - type=BASE_TYPES[0x86], # uint32 - def_num=49, - scale=1000, - units='s', - ), - 50: Field( - name='time_in_speed_zone', - type=BASE_TYPES[0x86], # uint32 - def_num=50, - scale=1000, - units='s', - ), - 51: Field( - name='time_in_cadence_zone', - type=BASE_TYPES[0x86], # uint32 - def_num=51, - scale=1000, - units='s', - ), - 52: Field( - name='time_in_power_zone', - type=BASE_TYPES[0x86], # uint32 - def_num=52, - scale=1000, - units='s', - ), - 53: Field( - name='repetition_num', - type=BASE_TYPES[0x84], # uint16 - def_num=53, - ), - 54: Field( - name='min_altitude', - type=BASE_TYPES[0x84], # uint16 - def_num=54, - scale=5, - offset=500, - units='m', - ), - 55: Field( - name='min_heart_rate', - type=BASE_TYPES[0x02], # uint8 - def_num=55, - units='bpm', - ), - 56: Field( - name='active_time', - type=BASE_TYPES[0x86], # uint32 - def_num=56, - scale=1000, - units='s', - ), - 57: Field( - name='wkt_step_index', - type=FIELD_TYPES['message_index'], - def_num=57, - ), - 58: Field( - name='sport_event', - type=FIELD_TYPES['sport_event'], - def_num=58, - ), - 59: Field( - name='avg_left_torque_effectiveness', - type=BASE_TYPES[0x02], # uint8 - def_num=59, - scale=2, - units='percent', - ), - 60: Field( - name='avg_right_torque_effectiveness', - type=BASE_TYPES[0x02], # uint8 - def_num=60, - scale=2, - units='percent', - ), - 61: Field( - name='avg_left_pedal_smoothness', - type=BASE_TYPES[0x02], # uint8 - def_num=61, - scale=2, - units='percent', - ), - 62: Field( - name='avg_right_pedal_smoothness', - type=BASE_TYPES[0x02], # uint8 - def_num=62, - scale=2, - units='percent', - ), - 63: Field( - name='avg_combined_pedal_smoothness', - type=BASE_TYPES[0x02], # uint8 - def_num=63, - scale=2, - units='percent', - ), - 64: Field( - name='status', - type=FIELD_TYPES['segment_lap_status'], - def_num=64, - ), - 65: Field( - name='uuid', - type=BASE_TYPES[0x07], # string - def_num=65, - ), - 66: Field( # fractional part of the avg_cadence - name='avg_fractional_cadence', - type=BASE_TYPES[0x02], # uint8 - def_num=66, - scale=128, - units='rpm', - ), - 67: Field( # fractional part of the max_cadence - name='max_fractional_cadence', - type=BASE_TYPES[0x02], # uint8 - def_num=67, - scale=128, - units='rpm', - ), - 68: Field( # fractional part of the total_cycles - name='total_fractional_cycles', - type=BASE_TYPES[0x02], # uint8 - def_num=68, - scale=128, - units='cycles', - ), - 69: Field( - name='front_gear_shift_count', - type=BASE_TYPES[0x84], # uint16 - def_num=69, - ), - 70: Field( - name='rear_gear_shift_count', - type=BASE_TYPES[0x84], # uint16 - def_num=70, - ), - 71: Field( # Total time spent in the standing position - name='time_standing', - type=BASE_TYPES[0x86], # uint32 - def_num=71, - scale=1000, - units='s', - ), - 72: Field( # Number of transitions to the standing state - name='stand_count', - type=BASE_TYPES[0x84], # uint16 - def_num=72, - ), - 73: Field( # Average left platform center offset - name='avg_left_pco', - type=BASE_TYPES[0x01], # sint8 - def_num=73, - units='mm', - ), - 74: Field( # Average right platform center offset - name='avg_right_pco', - type=BASE_TYPES[0x01], # sint8 - def_num=74, - units='mm', - ), - 75: Field( # Average left power phase angles. Data value indexes defined by power_phase_type. - name='avg_left_power_phase', - type=BASE_TYPES[0x02], # uint8 - def_num=75, - scale=0.7111111, - units='degrees', - ), - 76: Field( # Average left power phase peak angles. Data value indexes defined by power_phase_type. - name='avg_left_power_phase_peak', - type=BASE_TYPES[0x02], # uint8 - def_num=76, - scale=0.7111111, - units='degrees', - ), - 77: Field( # Average right power phase angles. Data value indexes defined by power_phase_type. - name='avg_right_power_phase', - type=BASE_TYPES[0x02], # uint8 - def_num=77, - scale=0.7111111, - units='degrees', - ), - 78: Field( # Average right power phase peak angles. Data value indexes defined by power_phase_type. - name='avg_right_power_phase_peak', - type=BASE_TYPES[0x02], # uint8 - def_num=78, - scale=0.7111111, - units='degrees', - ), - 79: Field( # Average power by position. Data value indexes defined by rider_position_type. - name='avg_power_position', - type=BASE_TYPES[0x84], # uint16 - def_num=79, - units='watts', - ), - 80: Field( # Maximum power by position. Data value indexes defined by rider_position_type. - name='max_power_position', - type=BASE_TYPES[0x84], # uint16 - def_num=80, - units='watts', - ), - 81: Field( # Average cadence by position. Data value indexes defined by rider_position_type. - name='avg_cadence_position', - type=BASE_TYPES[0x02], # uint8 - def_num=81, - units='rpm', - ), - 82: Field( # Maximum cadence by position. Data value indexes defined by rider_position_type. - name='max_cadence_position', - type=BASE_TYPES[0x02], # uint8 - def_num=82, - units='rpm', - ), - 83: Field( # Manufacturer that produced the segment - name='manufacturer', - type=FIELD_TYPES['manufacturer'], - def_num=83, - ), - 253: FIELD_TYPE_TIMESTAMP, # Lap end time. - 254: Field( - name='message_index', - type=FIELD_TYPES['message_index'], - def_num=254, - ), - }, - ), - 149: MessageType( # Unique Identification data for an individual segment leader within a segment file - name='segment_leaderboard_entry', - mesg_num=149, - fields={ - 0: Field( # Friendly name assigned to leader - name='name', - type=BASE_TYPES[0x07], # string - def_num=0, - ), - 1: Field( # Leader classification - name='type', - type=FIELD_TYPES['segment_leaderboard_type'], - def_num=1, - ), - 2: Field( # Primary user ID of this leader - name='group_primary_key', - type=BASE_TYPES[0x86], # uint32 - def_num=2, - ), - 3: Field( # ID of the activity associated with this leader time - name='activity_id', - type=BASE_TYPES[0x86], # uint32 - def_num=3, - ), - 4: Field( # Segment Time (includes pauses) - name='segment_time', - type=BASE_TYPES[0x86], # uint32 - def_num=4, - scale=1000, - units='s', - ), - 5: Field( # String version of the activity_id. 21 characters long, express in decimal - name='activity_id_string', - type=BASE_TYPES[0x07], # string - def_num=5, - ), - 254: Field( - name='message_index', - type=FIELD_TYPES['message_index'], - def_num=254, - ), - }, - ), - 150: MessageType( # Navigation and race evaluation point for a segment decribing a point along the segment path and time it took each segment leader to reach that point - name='segment_point', - mesg_num=150, - fields={ - 1: Field( - name='position_lat', - type=BASE_TYPES[0x85], # sint32 - def_num=1, - units='semicircles', - ), - 2: Field( - name='position_long', - type=BASE_TYPES[0x85], # sint32 - def_num=2, - units='semicircles', - ), - 3: Field( # Accumulated distance along the segment at the described point - name='distance', - type=BASE_TYPES[0x86], # uint32 - def_num=3, - scale=100, - units='m', - ), - 4: Field( # Accumulated altitude along the segment at the described point - name='altitude', - type=BASE_TYPES[0x84], # uint16 - def_num=4, - scale=5, - offset=500, - units='m', - ), - 5: Field( # Accumualted time each leader board member required to reach the described point. This value is zero for all leader board members at the starting point of the segment. - name='leader_time', - type=BASE_TYPES[0x86], # uint32 - def_num=5, - scale=1000, - units='s', - ), - 254: Field( - name='message_index', - type=FIELD_TYPES['message_index'], - def_num=254, - ), - }, - ), - 158: MessageType( - name='workout_session', - mesg_num=158, - fields={ - 0: Field( - name='sport', - type=FIELD_TYPES['sport'], - def_num=0, - ), - 1: Field( - name='sub_sport', - type=FIELD_TYPES['sub_sport'], - def_num=1, - ), - 2: Field( - name='num_valid_steps', - type=BASE_TYPES[0x84], # uint16 - def_num=2, - ), - 3: Field( - name='first_step_index', - type=BASE_TYPES[0x84], # uint16 - def_num=3, - ), - 4: Field( - name='pool_length', - type=BASE_TYPES[0x84], # uint16 - def_num=4, - scale=100, - units='m', - ), - 5: Field( - name='pool_length_unit', - type=FIELD_TYPES['display_measure'], - def_num=5, - ), - 254: Field( - name='message_index', - type=FIELD_TYPES['message_index'], - def_num=254, - ), - }, - ), - 159: MessageType( - name='watchface_settings', - mesg_num=159, - fields={ - 0: Field( - name='mode', - type=FIELD_TYPES['watchface_mode'], - def_num=0, - ), - 1: Field( - name='layout', - type=BASE_TYPES[0x0D], # byte - def_num=1, - subfields=( - SubField( - name='analog_layout', - def_num=1, - type=FIELD_TYPES['analog_watchface_layout'], - ref_fields=( - ReferenceField( - name='mode', - def_num=0, - value='analog', - raw_value=1, - ), - ), - ), - SubField( - name='digital_layout', - def_num=1, - type=FIELD_TYPES['digital_watchface_layout'], - ref_fields=( - ReferenceField( - name='mode', - def_num=0, - value='digital', - raw_value=0, - ), - ), - ), - ), - ), - 254: Field( - name='message_index', - type=FIELD_TYPES['message_index'], - def_num=254, - ), - }, - ), - 160: MessageType( - name='gps_metadata', - mesg_num=160, - fields={ - 0: Field( # Millisecond part of the timestamp. - name='timestamp_ms', - type=BASE_TYPES[0x84], # uint16 - def_num=0, - units='ms', - ), - 1: Field( - name='position_lat', - type=BASE_TYPES[0x85], # sint32 - def_num=1, - units='semicircles', - ), - 2: Field( - name='position_long', - type=BASE_TYPES[0x85], # sint32 - def_num=2, - units='semicircles', - ), - 3: Field( - name='enhanced_altitude', - type=BASE_TYPES[0x86], # uint32 - def_num=3, - scale=5, - offset=500, - units='m', - ), - 4: Field( - name='enhanced_speed', - type=BASE_TYPES[0x86], # uint32 - def_num=4, - scale=1000, - units='m/s', - ), - 5: Field( - name='heading', - type=BASE_TYPES[0x84], # uint16 - def_num=5, - scale=100, - units='degrees', - ), - 6: Field( # Used to correlate UTC to system time if the timestamp of the message is in system time. This UTC time is derived from the GPS data. - name='utc_timestamp', - type=FIELD_TYPES['date_time'], - def_num=6, - units='s', - ), - 7: Field( # velocity[0] is lon velocity. Velocity[1] is lat velocity. Velocity[2] is altitude velocity. - name='velocity', - type=BASE_TYPES[0x83], # sint16 - def_num=7, - scale=100, - units='m/s', - ), - 253: FIELD_TYPE_TIMESTAMP, # Whole second part of the timestamp. - }, - ), - 161: MessageType( - name='camera_event', - mesg_num=161, - fields={ - 0: Field( # Millisecond part of the timestamp. - name='timestamp_ms', - type=BASE_TYPES[0x84], # uint16 - def_num=0, - units='ms', - ), - 1: Field( - name='camera_event_type', - type=FIELD_TYPES['camera_event_type'], - def_num=1, - ), - 2: Field( - name='camera_file_uuid', - type=BASE_TYPES[0x07], # string - def_num=2, - ), - 3: Field( - name='camera_orientation', - type=FIELD_TYPES['camera_orientation_type'], - def_num=3, - ), - 253: FIELD_TYPE_TIMESTAMP, # Whole second part of the timestamp. - }, - ), - 162: MessageType( - name='timestamp_correlation', - mesg_num=162, - fields={ - 0: Field( # Fractional part of the UTC timestamp at the time the system timestamp was recorded. - name='fractional_timestamp', - type=BASE_TYPES[0x84], # uint16 - def_num=0, - scale=32768, - units='s', - ), - 1: Field( # Whole second part of the system timestamp - name='system_timestamp', - type=FIELD_TYPES['date_time'], - def_num=1, - units='s', - ), - 2: Field( # Fractional part of the system timestamp - name='fractional_system_timestamp', - type=BASE_TYPES[0x84], # uint16 - def_num=2, - scale=32768, - units='s', - ), - 3: Field( # timestamp epoch expressed in local time used to convert timestamps to local time - name='local_timestamp', - type=FIELD_TYPES['local_date_time'], - def_num=3, - units='s', - ), - 4: Field( # Millisecond part of the UTC timestamp at the time the system timestamp was recorded. - name='timestamp_ms', - type=BASE_TYPES[0x84], # uint16 - def_num=4, - units='ms', - ), - 5: Field( # Millisecond part of the system timestamp - name='system_timestamp_ms', - type=BASE_TYPES[0x84], # uint16 - def_num=5, - units='ms', - ), - 253: FIELD_TYPE_TIMESTAMP, # Whole second part of UTC timestamp at the time the system timestamp was recorded. - }, - ), - 164: MessageType( - name='gyroscope_data', - mesg_num=164, - fields={ - 0: Field( # Millisecond part of the timestamp. - name='timestamp_ms', - type=BASE_TYPES[0x84], # uint16 - def_num=0, - units='ms', - ), - 1: Field( # Each time in the array describes the time at which the gyro sample with the corrosponding index was taken. Limited to 30 samples in each message. The samples may span across seconds. Array size must match the number of samples in gyro_x and gyro_y and gyro_z - name='sample_time_offset', - type=BASE_TYPES[0x84], # uint16 - def_num=1, - units='ms', - ), - 2: Field( # These are the raw ADC reading. Maximum number of samples is 30 in each message. The samples may span across seconds. A conversion will need to be done on this data once read. - name='gyro_x', - type=BASE_TYPES[0x84], # uint16 - def_num=2, - units='counts', - ), - 3: Field( # These are the raw ADC reading. Maximum number of samples is 30 in each message. The samples may span across seconds. A conversion will need to be done on this data once read. - name='gyro_y', - type=BASE_TYPES[0x84], # uint16 - def_num=3, - units='counts', - ), - 4: Field( # These are the raw ADC reading. Maximum number of samples is 30 in each message. The samples may span across seconds. A conversion will need to be done on this data once read. - name='gyro_z', - type=BASE_TYPES[0x84], # uint16 - def_num=4, - units='counts', - ), - 5: Field( # Calibrated gyro reading - name='calibrated_gyro_x', - type=BASE_TYPES[0x88], # float32 - def_num=5, - units='deg/s', - ), - 6: Field( # Calibrated gyro reading - name='calibrated_gyro_y', - type=BASE_TYPES[0x88], # float32 - def_num=6, - units='deg/s', - ), - 7: Field( # Calibrated gyro reading - name='calibrated_gyro_z', - type=BASE_TYPES[0x88], # float32 - def_num=7, - units='deg/s', - ), - 253: FIELD_TYPE_TIMESTAMP, # Whole second part of the timestamp - }, - ), - 165: MessageType( - name='accelerometer_data', - mesg_num=165, - fields={ - 0: Field( # Millisecond part of the timestamp. - name='timestamp_ms', - type=BASE_TYPES[0x84], # uint16 - def_num=0, - units='ms', - ), - 1: Field( # Each time in the array describes the time at which the accelerometer sample with the corrosponding index was taken. Limited to 30 samples in each message. The samples may span across seconds. Array size must match the number of samples in accel_x and accel_y and accel_z - name='sample_time_offset', - type=BASE_TYPES[0x84], # uint16 - def_num=1, - units='ms', - ), - 2: Field( # These are the raw ADC reading. Maximum number of samples is 30 in each message. The samples may span across seconds. A conversion will need to be done on this data once read. - name='accel_x', - type=BASE_TYPES[0x84], # uint16 - def_num=2, - units='counts', - ), - 3: Field( # These are the raw ADC reading. Maximum number of samples is 30 in each message. The samples may span across seconds. A conversion will need to be done on this data once read. - name='accel_y', - type=BASE_TYPES[0x84], # uint16 - def_num=3, - units='counts', - ), - 4: Field( # These are the raw ADC reading. Maximum number of samples is 30 in each message. The samples may span across seconds. A conversion will need to be done on this data once read. - name='accel_z', - type=BASE_TYPES[0x84], # uint16 - def_num=4, - units='counts', - ), - 5: Field( # Calibrated accel reading - name='calibrated_accel_x', - type=BASE_TYPES[0x88], # float32 - def_num=5, - units='g', - ), - 6: Field( # Calibrated accel reading - name='calibrated_accel_y', - type=BASE_TYPES[0x88], # float32 - def_num=6, - units='g', - ), - 7: Field( # Calibrated accel reading - name='calibrated_accel_z', - type=BASE_TYPES[0x88], # float32 - def_num=7, - units='g', - ), - 8: Field( # Calibrated accel reading - name='compressed_calibrated_accel_x', - type=BASE_TYPES[0x83], # sint16 - def_num=8, - units='mG', - ), - 9: Field( # Calibrated accel reading - name='compressed_calibrated_accel_y', - type=BASE_TYPES[0x83], # sint16 - def_num=9, - units='mG', - ), - 10: Field( # Calibrated accel reading - name='compressed_calibrated_accel_z', - type=BASE_TYPES[0x83], # sint16 - def_num=10, - units='mG', - ), - 253: FIELD_TYPE_TIMESTAMP, # Whole second part of the timestamp - }, - ), - 167: MessageType( - name='three_d_sensor_calibration', - mesg_num=167, - fields={ - 0: Field( # Indicates which sensor the calibration is for - name='sensor_type', - type=FIELD_TYPES['sensor_type'], - def_num=0, - ), - 1: Field( # Calibration factor used to convert from raw ADC value to degrees, g, etc. - name='calibration_factor', - type=BASE_TYPES[0x86], # uint32 - def_num=1, - subfields=( - SubField( # Accelerometer calibration factor - name='accel_cal_factor', - def_num=1, - type=BASE_TYPES[0x86], # uint32 - units='g', - ref_fields=( - ReferenceField( - name='sensor_type', - def_num=0, - value='accelerometer', - raw_value=0, - ), - ), - ), - SubField( # Gyro calibration factor - name='gyro_cal_factor', - def_num=1, - type=BASE_TYPES[0x86], # uint32 - units='deg/s', - ref_fields=( - ReferenceField( - name='sensor_type', - def_num=0, - value='gyroscope', - raw_value=1, - ), - ), - ), - ), - ), - 2: Field( # Calibration factor divisor - name='calibration_divisor', - type=BASE_TYPES[0x86], # uint32 - def_num=2, - units='counts', - ), - 3: Field( # Level shift value used to shift the ADC value back into range - name='level_shift', - type=BASE_TYPES[0x86], # uint32 - def_num=3, - ), - 4: Field( # Internal calibration factors, one for each: xy, yx, zx - name='offset_cal', - type=BASE_TYPES[0x85], # sint32 - def_num=4, - ), - 5: Field( # 3 x 3 rotation matrix (row major) - name='orientation_matrix', - type=BASE_TYPES[0x85], # sint32 - def_num=5, - scale=65535, - ), - 253: FIELD_TYPE_TIMESTAMP, # Whole second part of the timestamp - }, - ), - 169: MessageType( - name='video_frame', - mesg_num=169, - fields={ - 0: Field( # Millisecond part of the timestamp. - name='timestamp_ms', - type=BASE_TYPES[0x84], # uint16 - def_num=0, - units='ms', - ), - 1: Field( # Number of the frame that the timestamp and timestamp_ms correlate to - name='frame_number', - type=BASE_TYPES[0x86], # uint32 - def_num=1, - ), - 253: FIELD_TYPE_TIMESTAMP, # Whole second part of the timestamp - }, - ), - 174: MessageType( - name='obdii_data', - mesg_num=174, - fields={ - 0: Field( # Fractional part of timestamp, added to timestamp - name='timestamp_ms', - type=BASE_TYPES[0x84], # uint16 - def_num=0, - units='ms', - ), - 1: Field( # Offset of PID reading [i] from start_timestamp+start_timestamp_ms. Readings may span accross seconds. - name='time_offset', - type=BASE_TYPES[0x84], # uint16 - def_num=1, - units='ms', - ), - 2: Field( # Parameter ID - name='pid', - type=BASE_TYPES[0x0D], # byte - def_num=2, - ), - 3: Field( # Raw parameter data - name='raw_data', - type=BASE_TYPES[0x0D], # byte - def_num=3, - ), - 4: Field( # Optional, data size of PID[i]. If not specified refer to SAE J1979. - name='pid_data_size', - type=BASE_TYPES[0x02], # uint8 - def_num=4, - ), - 5: Field( # System time associated with sample expressed in ms, can be used instead of time_offset. There will be a system_time value for each raw_data element. For multibyte pids the system_time is repeated. - name='system_time', - type=BASE_TYPES[0x86], # uint32 - def_num=5, - ), - 6: Field( # Timestamp of first sample recorded in the message. Used with time_offset to generate time of each sample - name='start_timestamp', - type=FIELD_TYPES['date_time'], - def_num=6, - ), - 7: Field( # Fractional part of start_timestamp - name='start_timestamp_ms', - type=BASE_TYPES[0x84], # uint16 - def_num=7, - units='ms', - ), - 253: FIELD_TYPE_TIMESTAMP, # Timestamp message was output - }, - ), - 177: MessageType( - name='nmea_sentence', - mesg_num=177, - fields={ - 0: Field( # Fractional part of timestamp, added to timestamp - name='timestamp_ms', - type=BASE_TYPES[0x84], # uint16 - def_num=0, - units='ms', - ), - 1: Field( # NMEA sentence - name='sentence', - type=BASE_TYPES[0x07], # string - def_num=1, - ), - 253: FIELD_TYPE_TIMESTAMP, # Timestamp message was output - }, - ), - 178: MessageType( - name='aviation_attitude', - mesg_num=178, - fields={ - 0: Field( # Fractional part of timestamp, added to timestamp - name='timestamp_ms', - type=BASE_TYPES[0x84], # uint16 - def_num=0, - units='ms', - ), - 1: Field( # System time associated with sample expressed in ms. - name='system_time', - type=BASE_TYPES[0x86], # uint32 - def_num=1, - units='ms', - ), - 2: Field( # Range -PI/2 to +PI/2 - name='pitch', - type=BASE_TYPES[0x83], # sint16 - def_num=2, - scale=10430.38, - units='radians', - ), - 3: Field( # Range -PI to +PI - name='roll', - type=BASE_TYPES[0x83], # sint16 - def_num=3, - scale=10430.38, - units='radians', - ), - 4: Field( # Range -78.4 to +78.4 (-8 Gs to 8 Gs) - name='accel_lateral', - type=BASE_TYPES[0x83], # sint16 - def_num=4, - scale=100, - units='m/s^2', - ), - 5: Field( # Range -78.4 to +78.4 (-8 Gs to 8 Gs) - name='accel_normal', - type=BASE_TYPES[0x83], # sint16 - def_num=5, - scale=100, - units='m/s^2', - ), - 6: Field( # Range -8.727 to +8.727 (-500 degs/sec to +500 degs/sec) - name='turn_rate', - type=BASE_TYPES[0x83], # sint16 - def_num=6, - scale=1024, - units='radians/second', - ), - 7: Field( - name='stage', - type=FIELD_TYPES['attitude_stage'], - def_num=7, - ), - 8: Field( # The percent complete of the current attitude stage. Set to 0 for attitude stages 0, 1 and 2 and to 100 for attitude stage 3 by AHRS modules that do not support it. Range - 100 - name='attitude_stage_complete', - type=BASE_TYPES[0x02], # uint8 - def_num=8, - units='%', - ), - 9: Field( # Track Angle/Heading Range 0 - 2pi - name='track', - type=BASE_TYPES[0x84], # uint16 - def_num=9, - scale=10430.38, - units='radians', - ), - 10: Field( - name='validity', - type=FIELD_TYPES['attitude_validity'], - def_num=10, - ), - 253: FIELD_TYPE_TIMESTAMP, # Timestamp message was output - }, - ), - 184: MessageType( - name='video', - mesg_num=184, - fields={ - 0: Field( - name='url', - type=BASE_TYPES[0x07], # string - def_num=0, - ), - 1: Field( - name='hosting_provider', - type=BASE_TYPES[0x07], # string - def_num=1, - ), - 2: Field( # Playback time of video - name='duration', - type=BASE_TYPES[0x86], # uint32 - def_num=2, - units='ms', - ), - }, - ), - 185: MessageType( - name='video_title', - mesg_num=185, - fields={ - 0: Field( # Total number of title parts - name='message_count', - type=BASE_TYPES[0x84], # uint16 - def_num=0, - ), - 1: Field( - name='text', - type=BASE_TYPES[0x07], # string - def_num=1, - ), - 254: Field( # Long titles will be split into multiple parts - name='message_index', - type=FIELD_TYPES['message_index'], - def_num=254, - ), - }, - ), - 186: MessageType( - name='video_description', - mesg_num=186, - fields={ - 0: Field( # Total number of description parts - name='message_count', - type=BASE_TYPES[0x84], # uint16 - def_num=0, - ), - 1: Field( - name='text', - type=BASE_TYPES[0x07], # string - def_num=1, - ), - 254: Field( # Long descriptions will be split into multiple parts - name='message_index', - type=FIELD_TYPES['message_index'], - def_num=254, - ), - }, - ), - 187: MessageType( - name='video_clip', - mesg_num=187, - fields={ - 0: Field( - name='clip_number', - type=BASE_TYPES[0x84], # uint16 - def_num=0, - ), - 1: Field( - name='start_timestamp', - type=FIELD_TYPES['date_time'], - def_num=1, - ), - 2: Field( - name='start_timestamp_ms', - type=BASE_TYPES[0x84], # uint16 - def_num=2, - ), - 3: Field( - name='end_timestamp', - type=FIELD_TYPES['date_time'], - def_num=3, - ), - 4: Field( - name='end_timestamp_ms', - type=BASE_TYPES[0x84], # uint16 - def_num=4, - ), - 6: Field( # Start of clip in video time - name='clip_start', - type=BASE_TYPES[0x86], # uint32 - def_num=6, - units='ms', - ), - 7: Field( # End of clip in video time - name='clip_end', - type=BASE_TYPES[0x86], # uint32 - def_num=7, - units='ms', - ), - }, - ), - 188: MessageType( - name='ohr_settings', - mesg_num=188, - fields={ - 0: Field( - name='enabled', - type=FIELD_TYPES['switch'], - def_num=0, - ), - }, - ), - 200: MessageType( - name='exd_screen_configuration', - mesg_num=200, - fields={ - 0: Field( - name='screen_index', - type=BASE_TYPES[0x02], # uint8 - def_num=0, - ), - 1: Field( # number of fields in screen - name='field_count', - type=BASE_TYPES[0x02], # uint8 - def_num=1, - ), - 2: Field( - name='layout', - type=FIELD_TYPES['exd_layout'], - def_num=2, - ), - 3: Field( - name='screen_enabled', - type=FIELD_TYPES['bool'], - def_num=3, - ), - }, - ), - 201: MessageType( - name='exd_data_field_configuration', - mesg_num=201, - fields={ - 0: Field( - name='screen_index', - type=BASE_TYPES[0x02], # uint8 - def_num=0, - ), - 1: Field( - name='concept_field', - type=BASE_TYPES[0x0D], # byte - def_num=1, - components=( - ComponentField( - name='field_id', - def_num=2, - accumulate=False, - bits=4, - bit_offset=0, - ), - ComponentField( - name='concept_count', - def_num=3, - accumulate=False, - bits=4, - bit_offset=4, - ), - ), - ), - 2: Field( - name='field_id', - type=BASE_TYPES[0x02], # uint8 - def_num=2, - ), - 3: Field( - name='concept_count', - type=BASE_TYPES[0x02], # uint8 - def_num=3, - ), - 4: Field( - name='display_type', - type=FIELD_TYPES['exd_display_type'], - def_num=4, - ), - 5: Field( - name='title', - type=BASE_TYPES[0x07], # string - def_num=5, - ), - }, - ), - 202: MessageType( - name='exd_data_concept_configuration', - mesg_num=202, - fields={ - 0: Field( - name='screen_index', - type=BASE_TYPES[0x02], # uint8 - def_num=0, - ), - 1: Field( - name='concept_field', - type=BASE_TYPES[0x0D], # byte - def_num=1, - components=( - ComponentField( - name='field_id', - def_num=2, - accumulate=False, - bits=4, - bit_offset=0, - ), - ComponentField( - name='concept_index', - def_num=3, - accumulate=False, - bits=4, - bit_offset=4, - ), - ), - ), - 2: Field( - name='field_id', - type=BASE_TYPES[0x02], # uint8 - def_num=2, - ), - 3: Field( - name='concept_index', - type=BASE_TYPES[0x02], # uint8 - def_num=3, - ), - 4: Field( - name='data_page', - type=BASE_TYPES[0x02], # uint8 - def_num=4, - ), - 5: Field( - name='concept_key', - type=BASE_TYPES[0x02], # uint8 - def_num=5, - ), - 6: Field( - name='scaling', - type=BASE_TYPES[0x02], # uint8 - def_num=6, - ), - 8: Field( - name='data_units', - type=FIELD_TYPES['exd_data_units'], - def_num=8, - ), - 9: Field( - name='qualifier', - type=FIELD_TYPES['exd_qualifiers'], - def_num=9, - ), - 10: Field( - name='descriptor', - type=FIELD_TYPES['exd_descriptors'], - def_num=10, - ), - 11: Field( - name='is_signed', - type=FIELD_TYPES['bool'], - def_num=11, - ), - }, - ), - 206: MessageType( # Must be logged before developer field is used - name='field_description', - mesg_num=206, - fields={ - 0: Field( - name='developer_data_index', - type=BASE_TYPES[0x02], # uint8 - def_num=0, - ), - 1: Field( - name='field_definition_number', - type=BASE_TYPES[0x02], # uint8 - def_num=1, - ), - 2: Field( - name='fit_base_type_id', - type=FIELD_TYPES['fit_base_type'], - def_num=2, - ), - 3: Field( - name='field_name', - type=BASE_TYPES[0x07], # string - def_num=3, - ), - 4: Field( - name='array', - type=BASE_TYPES[0x02], # uint8 - def_num=4, - ), - 5: Field( - name='components', - type=BASE_TYPES[0x07], # string - def_num=5, - ), - 6: Field( - name='scale', - type=BASE_TYPES[0x02], # uint8 - def_num=6, - ), - 7: Field( - name='offset', - type=BASE_TYPES[0x01], # sint8 - def_num=7, - ), - 8: Field( - name='units', - type=BASE_TYPES[0x07], # string - def_num=8, - ), - 9: Field( - name='bits', - type=BASE_TYPES[0x07], # string - def_num=9, - ), - 10: Field( - name='accumulate', - type=BASE_TYPES[0x07], # string - def_num=10, - ), - 13: Field( - name='fit_base_unit_id', - type=FIELD_TYPES['fit_base_unit'], - def_num=13, - ), - 14: Field( - name='native_mesg_num', - type=FIELD_TYPES['mesg_num'], - def_num=14, - ), - 15: Field( - name='native_field_num', - type=BASE_TYPES[0x02], # uint8 - def_num=15, - ), - }, - ), - 207: MessageType( # Must be logged before field description - name='developer_data_id', - mesg_num=207, - fields={ - 0: Field( - name='developer_id', - type=BASE_TYPES[0x0D], # byte - def_num=0, - ), - 1: Field( - name='application_id', - type=BASE_TYPES[0x0D], # byte - def_num=1, - ), - 2: Field( - name='manufacturer_id', - type=FIELD_TYPES['manufacturer'], - def_num=2, - ), - 3: Field( - name='developer_data_index', - type=BASE_TYPES[0x02], # uint8 - def_num=3, - ), - 4: Field( - name='application_version', - type=BASE_TYPES[0x86], # uint32 - def_num=4, - ), - }, - ), - 208: MessageType( - name='magnetometer_data', - mesg_num=208, - fields={ - 0: Field( # Millisecond part of the timestamp. - name='timestamp_ms', - type=BASE_TYPES[0x84], # uint16 - def_num=0, - units='ms', - ), - 1: Field( # Each time in the array describes the time at which the compass sample with the corrosponding index was taken. Limited to 30 samples in each message. The samples may span across seconds. Array size must match the number of samples in cmps_x and cmps_y and cmps_z - name='sample_time_offset', - type=BASE_TYPES[0x84], # uint16 - def_num=1, - units='ms', - ), - 2: Field( # These are the raw ADC reading. Maximum number of samples is 30 in each message. The samples may span across seconds. A conversion will need to be done on this data once read. - name='mag_x', - type=BASE_TYPES[0x84], # uint16 - def_num=2, - units='counts', - ), - 3: Field( # These are the raw ADC reading. Maximum number of samples is 30 in each message. The samples may span across seconds. A conversion will need to be done on this data once read. - name='mag_y', - type=BASE_TYPES[0x84], # uint16 - def_num=3, - units='counts', - ), - 4: Field( # These are the raw ADC reading. Maximum number of samples is 30 in each message. The samples may span across seconds. A conversion will need to be done on this data once read. - name='mag_z', - type=BASE_TYPES[0x84], # uint16 - def_num=4, - units='counts', - ), - 5: Field( # Calibrated Magnetometer reading - name='calibrated_mag_x', - type=BASE_TYPES[0x88], # float32 - def_num=5, - units='G', - ), - 6: Field( # Calibrated Magnetometer reading - name='calibrated_mag_y', - type=BASE_TYPES[0x88], # float32 - def_num=6, - units='G', - ), - 7: Field( # Calibrated Magnetometer reading - name='calibrated_mag_z', - type=BASE_TYPES[0x88], # float32 - def_num=7, - units='G', - ), - 253: FIELD_TYPE_TIMESTAMP, # Whole second part of the timestamp - }, - ), - 209: MessageType( - name='barometer_data', - mesg_num=209, - fields={ - 0: Field( # Millisecond part of the timestamp. - name='timestamp_ms', - type=BASE_TYPES[0x84], # uint16 - def_num=0, - units='ms', - ), - 1: Field( # Each time in the array describes the time at which the barometer sample with the corrosponding index was taken. The samples may span across seconds. Array size must match the number of samples in baro_cal - name='sample_time_offset', - type=BASE_TYPES[0x84], # uint16 - def_num=1, - units='ms', - ), - 2: Field( # These are the raw ADC reading. The samples may span across seconds. A conversion will need to be done on this data once read. - name='baro_pres', - type=BASE_TYPES[0x86], # uint32 - def_num=2, - units='Pa', - ), - 253: FIELD_TYPE_TIMESTAMP, # Whole second part of the timestamp - }, - ), - 210: MessageType( - name='one_d_sensor_calibration', - mesg_num=210, - fields={ - 0: Field( # Indicates which sensor the calibration is for - name='sensor_type', - type=FIELD_TYPES['sensor_type'], - def_num=0, - ), - 1: Field( # Calibration factor used to convert from raw ADC value to degrees, g, etc. - name='calibration_factor', - type=BASE_TYPES[0x86], # uint32 - def_num=1, - subfields=( - SubField( # Barometer calibration factor - name='baro_cal_factor', - def_num=1, - type=BASE_TYPES[0x86], # uint32 - units='Pa', - ref_fields=( - ReferenceField( - name='sensor_type', - def_num=0, - value='barometer', - raw_value=3, - ), - ), - ), - ), - ), - 2: Field( # Calibration factor divisor - name='calibration_divisor', - type=BASE_TYPES[0x86], # uint32 - def_num=2, - units='counts', - ), - 3: Field( # Level shift value used to shift the ADC value back into range - name='level_shift', - type=BASE_TYPES[0x86], # uint32 - def_num=3, - ), - 4: Field( # Internal Calibration factor - name='offset_cal', - type=BASE_TYPES[0x85], # sint32 - def_num=4, - ), - 253: FIELD_TYPE_TIMESTAMP, # Whole second part of the timestamp - }, - ), - 225: MessageType( - name='set', - mesg_num=225, - fields={ - 0: Field( - name='duration', - type=BASE_TYPES[0x86], # uint32 - def_num=0, - scale=1000, - units='s', - ), - 3: Field( # # of repitions of the movement - name='repetitions', - type=BASE_TYPES[0x84], # uint16 - def_num=3, - ), - 4: Field( # Amount of weight applied for the set - name='weight', - type=BASE_TYPES[0x84], # uint16 - def_num=4, - scale=16, - units='kg', - ), - 5: Field( - name='set_type', - type=FIELD_TYPES['set_type'], - def_num=5, - ), - 6: Field( # Start time of the set - name='start_time', - type=FIELD_TYPES['date_time'], - def_num=6, - ), - 7: Field( - name='category', - type=FIELD_TYPES['exercise_category'], - def_num=7, - ), - 8: Field( # Based on the associated category, see [category]_exercise_names - name='category_subtype', - type=BASE_TYPES[0x84], # uint16 - def_num=8, - ), - 9: Field( - name='weight_display_unit', - type=FIELD_TYPES['fit_base_unit'], - def_num=9, - ), - 10: Field( - name='message_index', - type=FIELD_TYPES['message_index'], - def_num=10, - ), - 11: Field( - name='wkt_step_index', - type=FIELD_TYPES['message_index'], - def_num=11, - ), - 254: Field( # Timestamp of the set - name='timestamp', - type=FIELD_TYPES['date_time'], - def_num=254, - ), - }, - ), - 227: MessageType( # Value from 1 to 100 calculated by FirstBeat - name='stress_level', - mesg_num=227, - fields={ - 0: Field( - name='stress_level_value', - type=BASE_TYPES[0x83], # sint16 - def_num=0, - ), - 1: Field( # Time stress score was calculated - name='stress_level_time', - type=FIELD_TYPES['date_time'], - def_num=1, - units='s', - ), - }, - ), - 258: MessageType( - name='dive_settings', - mesg_num=258, - fields={ - 0: Field( - name='name', - type=BASE_TYPES[0x07], # string - def_num=0, - ), - 1: Field( - name='model', - type=FIELD_TYPES['tissue_model_type'], - def_num=1, - ), - 2: Field( - name='gf_low', - type=BASE_TYPES[0x02], # uint8 - def_num=2, - units='percent', - ), - 3: Field( - name='gf_high', - type=BASE_TYPES[0x02], # uint8 - def_num=3, - units='percent', - ), - 4: Field( - name='water_type', - type=FIELD_TYPES['water_type'], - def_num=4, - ), - 5: Field( # Fresh water is usually 1000; salt water is usually 1025 - name='water_density', - type=BASE_TYPES[0x88], # float32 - def_num=5, - units='kg/m^3', - ), - 6: Field( # Typically 1.40 - name='po2_warn', - type=BASE_TYPES[0x02], # uint8 - def_num=6, - scale=100, - units='percent', - ), - 7: Field( # Typically 1.60 - name='po2_critical', - type=BASE_TYPES[0x02], # uint8 - def_num=7, - scale=100, - units='percent', - ), - 8: Field( - name='po2_deco', - type=BASE_TYPES[0x02], # uint8 - def_num=8, - scale=100, - units='percent', - ), - 9: Field( - name='safety_stop_enabled', - type=FIELD_TYPES['bool'], - def_num=9, - ), - 10: Field( - name='bottom_depth', - type=BASE_TYPES[0x88], # float32 - def_num=10, - ), - 11: Field( - name='bottom_time', - type=BASE_TYPES[0x86], # uint32 - def_num=11, - ), - 12: Field( - name='apnea_countdown_enabled', - type=FIELD_TYPES['bool'], - def_num=12, - ), - 13: Field( - name='apnea_countdown_time', - type=BASE_TYPES[0x86], # uint32 - def_num=13, - ), - 14: Field( - name='backlight_mode', - type=FIELD_TYPES['dive_backlight_mode'], - def_num=14, - ), - 15: Field( - name='backlight_brightness', - type=BASE_TYPES[0x02], # uint8 - def_num=15, - ), - 16: Field( - name='backlight_timeout', - type=FIELD_TYPES['backlight_timeout'], - def_num=16, - ), - 17: Field( # Time between surfacing and ending the activity - name='repeat_dive_interval', - type=BASE_TYPES[0x84], # uint16 - def_num=17, - units='s', - ), - 18: Field( # Time at safety stop (if enabled) - name='safety_stop_time', - type=BASE_TYPES[0x84], # uint16 - def_num=18, - units='s', - ), - 19: Field( - name='heart_rate_source_type', - type=FIELD_TYPES['source_type'], - def_num=19, - ), - 20: Field( - name='heart_rate_source', - type=BASE_TYPES[0x02], # uint8 - def_num=20, - subfields=( - SubField( - name='heart_rate_antplus_device_type', - def_num=20, - type=FIELD_TYPES['antplus_device_type'], - ref_fields=( - ReferenceField( - name='heart_rate_source_type', - def_num=19, - value='antplus', - raw_value=1, - ), - ), - ), - SubField( - name='heart_rate_local_device_type', - def_num=20, - type=FIELD_TYPES['local_device_type'], - ref_fields=( - ReferenceField( - name='heart_rate_source_type', - def_num=19, - value='local', - raw_value=5, - ), - ), - ), - ), - ), - 254: Field( - name='message_index', - type=FIELD_TYPES['message_index'], - def_num=254, - ), - }, - ), - 259: MessageType( - name='dive_gas', - mesg_num=259, - fields={ - 0: Field( - name='helium_content', - type=BASE_TYPES[0x02], # uint8 - def_num=0, - units='percent', - ), - 1: Field( - name='oxygen_content', - type=BASE_TYPES[0x02], # uint8 - def_num=1, - units='percent', - ), - 2: Field( - name='status', - type=FIELD_TYPES['dive_gas_status'], - def_num=2, - ), - 254: Field( - name='message_index', - type=FIELD_TYPES['message_index'], - def_num=254, - ), - }, - ), - 262: MessageType( - name='dive_alarm', - mesg_num=262, - fields={ - 0: Field( - name='depth', - type=BASE_TYPES[0x86], # uint32 - def_num=0, - scale=1000, - units='m', - ), - 1: Field( - name='time', - type=BASE_TYPES[0x85], # sint32 - def_num=1, - units='s', - ), - 2: Field( - name='enabled', - type=FIELD_TYPES['bool'], - def_num=2, - ), - 3: Field( - name='alarm_type', - type=FIELD_TYPES['dive_alarm_type'], - def_num=3, - ), - 4: Field( - name='sound', - type=FIELD_TYPES['tone'], - def_num=4, - ), - 5: Field( - name='dive_types', - type=FIELD_TYPES['sub_sport'], - def_num=5, - ), - 254: Field( # Index of the alarm - name='message_index', - type=FIELD_TYPES['message_index'], - def_num=254, - ), - }, - ), - 264: MessageType( - name='exercise_title', - mesg_num=264, - fields={ - 0: Field( - name='exercise_category', - type=FIELD_TYPES['exercise_category'], - def_num=0, - ), - 1: Field( - name='exercise_name', - type=BASE_TYPES[0x84], # uint16 - def_num=1, - ), - 2: Field( - name='wkt_step_name', - type=BASE_TYPES[0x07], # string - def_num=2, - ), - 254: Field( - name='message_index', - type=FIELD_TYPES['message_index'], - def_num=254, - ), - }, - ), - 268: MessageType( - name='dive_summary', - mesg_num=268, - fields={ - 0: Field( - name='reference_mesg', - type=FIELD_TYPES['mesg_num'], - def_num=0, - ), - 1: Field( - name='reference_index', - type=FIELD_TYPES['message_index'], - def_num=1, - ), - 2: Field( # 0 if above water - name='avg_depth', - type=BASE_TYPES[0x86], # uint32 - def_num=2, - scale=1000, - units='m', - ), - 3: Field( # 0 if above water - name='max_depth', - type=BASE_TYPES[0x86], # uint32 - def_num=3, - scale=1000, - units='m', - ), - 4: Field( # Time since end of last dive - name='surface_interval', - type=BASE_TYPES[0x86], # uint32 - def_num=4, - units='s', - ), - 5: Field( - name='start_cns', - type=BASE_TYPES[0x02], # uint8 - def_num=5, - units='percent', - ), - 6: Field( - name='end_cns', - type=BASE_TYPES[0x02], # uint8 - def_num=6, - units='percent', - ), - 7: Field( - name='start_n2', - type=BASE_TYPES[0x84], # uint16 - def_num=7, - units='percent', - ), - 8: Field( - name='end_n2', - type=BASE_TYPES[0x84], # uint16 - def_num=8, - units='percent', - ), - 9: Field( - name='o2_toxicity', - type=BASE_TYPES[0x84], # uint16 - def_num=9, - units='OTUs', - ), - 10: Field( - name='dive_number', - type=BASE_TYPES[0x86], # uint32 - def_num=10, - ), - 11: Field( - name='bottom_time', - type=BASE_TYPES[0x86], # uint32 - def_num=11, - scale=1000, - units='s', - ), - 253: FIELD_TYPE_TIMESTAMP, - }, - ), - - - # ************************* Activity File Messages ************************* - 34: MessageType( - name='activity', - mesg_num=34, - fields={ - 0: Field( # Exclude pauses - name='total_timer_time', - type=BASE_TYPES[0x86], # uint32 - def_num=0, - scale=1000, - units='s', - ), - 1: Field( - name='num_sessions', - type=BASE_TYPES[0x84], # uint16 - def_num=1, - ), - 2: Field( - name='type', - type=FIELD_TYPES['activity'], - def_num=2, - ), - 3: Field( - name='event', - type=FIELD_TYPES['event'], - def_num=3, - ), - 4: Field( - name='event_type', - type=FIELD_TYPES['event_type'], - def_num=4, - ), - 5: Field( # timestamp epoch expressed in local time, used to convert activity timestamps to local time - name='local_timestamp', - type=FIELD_TYPES['local_date_time'], - def_num=5, - ), - 6: Field( - name='event_group', - type=BASE_TYPES[0x02], # uint8 - def_num=6, - ), - 253: FIELD_TYPE_TIMESTAMP, - }, - ), - - - # ********************** Blood Pressure File Messages ********************** - 51: MessageType( - name='blood_pressure', - mesg_num=51, - fields={ - 0: Field( - name='systolic_pressure', - type=BASE_TYPES[0x84], # uint16 - def_num=0, - units='mmHg', - ), - 1: Field( - name='diastolic_pressure', - type=BASE_TYPES[0x84], # uint16 - def_num=1, - units='mmHg', - ), - 2: Field( - name='mean_arterial_pressure', - type=BASE_TYPES[0x84], # uint16 - def_num=2, - units='mmHg', - ), - 3: Field( - name='map_3_sample_mean', - type=BASE_TYPES[0x84], # uint16 - def_num=3, - units='mmHg', - ), - 4: Field( - name='map_morning_values', - type=BASE_TYPES[0x84], # uint16 - def_num=4, - units='mmHg', - ), - 5: Field( - name='map_evening_values', - type=BASE_TYPES[0x84], # uint16 - def_num=5, - units='mmHg', - ), - 6: Field( - name='heart_rate', - type=BASE_TYPES[0x02], # uint8 - def_num=6, - units='bpm', - ), - 7: Field( - name='heart_rate_type', - type=FIELD_TYPES['hr_type'], - def_num=7, - ), - 8: Field( - name='status', - type=FIELD_TYPES['bp_status'], - def_num=8, - ), - 9: Field( # Associates this blood pressure message to a user. This corresponds to the index of the user profile message in the blood pressure file. - name='user_profile_index', - type=FIELD_TYPES['message_index'], - def_num=9, - ), - 253: FIELD_TYPE_TIMESTAMP, - }, - ), - - - # ************************** Course File Messages ************************** - 31: MessageType( - name='course', - mesg_num=31, - fields={ - 4: Field( - name='sport', - type=FIELD_TYPES['sport'], - def_num=4, - ), - 5: Field( - name='name', - type=BASE_TYPES[0x07], # string - def_num=5, - ), - 6: Field( - name='capabilities', - type=FIELD_TYPES['course_capabilities'], - def_num=6, - ), - 7: Field( - name='sub_sport', - type=FIELD_TYPES['sub_sport'], - def_num=7, - ), - }, - ), - - - # ************************** Device File Messages ************************** - 35: MessageType( - name='software', - mesg_num=35, - fields={ - 3: Field( - name='version', - type=BASE_TYPES[0x84], # uint16 - def_num=3, - scale=100, - ), - 5: Field( - name='part_number', - type=BASE_TYPES[0x07], # string - def_num=5, - ), - 254: Field( - name='message_index', - type=FIELD_TYPES['message_index'], - def_num=254, - ), - }, - ), - - - # ************************** Goals File Messages *************************** - 15: MessageType( - name='goal', - mesg_num=15, - fields={ - 0: Field( - name='sport', - type=FIELD_TYPES['sport'], - def_num=0, - ), - 1: Field( - name='sub_sport', - type=FIELD_TYPES['sub_sport'], - def_num=1, - ), - 2: Field( - name='start_date', - type=FIELD_TYPES['date_time'], - def_num=2, - ), - 3: Field( - name='end_date', - type=FIELD_TYPES['date_time'], - def_num=3, - ), - 4: Field( - name='type', - type=FIELD_TYPES['goal'], - def_num=4, - ), - 5: Field( - name='value', - type=BASE_TYPES[0x86], # uint32 - def_num=5, - ), - 6: Field( - name='repeat', - type=FIELD_TYPES['bool'], - def_num=6, - ), - 7: Field( - name='target_value', - type=BASE_TYPES[0x86], # uint32 - def_num=7, - ), - 8: Field( - name='recurrence', - type=FIELD_TYPES['goal_recurrence'], - def_num=8, - ), - 9: Field( - name='recurrence_value', - type=BASE_TYPES[0x84], # uint16 - def_num=9, - ), - 10: Field( - name='enabled', - type=FIELD_TYPES['bool'], - def_num=10, - ), - 11: Field( - name='source', - type=FIELD_TYPES['goal_source'], - def_num=11, - ), - 254: Field( - name='message_index', - type=FIELD_TYPES['message_index'], - def_num=254, - ), - }, - ), - - - # ************************ Monitoring File Messages ************************ - 103: MessageType( - name='monitoring_info', - mesg_num=103, - fields={ - 0: Field( # Use to convert activity timestamps to local time if device does not support time zone and daylight savings time correction. - name='local_timestamp', - type=FIELD_TYPES['local_date_time'], - def_num=0, - units='s', - ), - 1: Field( - name='activity_type', - type=FIELD_TYPES['activity_type'], - def_num=1, - ), - 3: Field( # Indexed by activity_type - name='cycles_to_distance', - type=BASE_TYPES[0x84], # uint16 - def_num=3, - scale=5000, - units='m/cycle', - ), - 4: Field( # Indexed by activity_type - name='cycles_to_calories', - type=BASE_TYPES[0x84], # uint16 - def_num=4, - scale=5000, - units='kcal/cycle', - ), - 5: Field( - name='resting_metabolic_rate', - type=BASE_TYPES[0x84], # uint16 - def_num=5, - units='kcal/day', - ), - 253: FIELD_TYPE_TIMESTAMP, - }, - ), - - - # ***************************** Other Messages ***************************** - 145: MessageType( - name='memo_glob', - mesg_num=145, - fields={ - 0: Field( # Block of utf8 bytes - name='memo', - type=BASE_TYPES[0x0D], # byte - def_num=0, - ), - 1: Field( # Allows relating glob to another mesg If used only required for first part of each memo_glob - name='message_number', - type=BASE_TYPES[0x84], # uint16 - def_num=1, - ), - 2: Field( # Index of external mesg - name='message_index', - type=FIELD_TYPES['message_index'], - def_num=2, - ), - 250: Field( # Sequence number of memo blocks - name='part_index', - type=BASE_TYPES[0x86], # uint32 - def_num=250, - ), - }, - ), - - - # ************************* Schedule File Messages ************************* - 28: MessageType( - name='schedule', - mesg_num=28, - fields={ - 0: Field( # Corresponds to file_id of scheduled workout / course. - name='manufacturer', - type=FIELD_TYPES['manufacturer'], - def_num=0, - ), - 1: Field( # Corresponds to file_id of scheduled workout / course. - name='product', - type=BASE_TYPES[0x84], # uint16 - def_num=1, - subfields=( - SubField( - name='garmin_product', - def_num=1, - type=FIELD_TYPES['garmin_product'], - ref_fields=( - ReferenceField( - name='manufacturer', - def_num=0, - value='garmin', - raw_value=1, - ), - ReferenceField( - name='manufacturer', - def_num=0, - value='dynastream', - raw_value=15, - ), - ReferenceField( - name='manufacturer', - def_num=0, - value='dynastream_oem', - raw_value=13, - ), - ), - ), - SubField( - name='strava_product', - def_num=1, - type=FIELD_TYPES['strava_product'], - ref_fields=( - ReferenceField( - name='manufacturer', - def_num=0, - value='strava', - raw_value=265, - ), - ), - ), - ), - ), - 2: Field( # Corresponds to file_id of scheduled workout / course. - name='serial_number', - type=BASE_TYPES[0x8C], # uint32z - def_num=2, - ), - 3: Field( # Corresponds to file_id of scheduled workout / course. - name='time_created', - type=FIELD_TYPES['date_time'], - def_num=3, - ), - 4: Field( # TRUE if this activity has been started - name='completed', - type=FIELD_TYPES['bool'], - def_num=4, - ), - 5: Field( - name='type', - type=FIELD_TYPES['schedule'], - def_num=5, - ), - 6: Field( - name='scheduled_time', - type=FIELD_TYPES['local_date_time'], - def_num=6, - ), - }, - ), - - - # ************************* Segment File Messages ************************** - 148: MessageType( # Unique Identification data for a segment file - name='segment_id', - mesg_num=148, - fields={ - 0: Field( # Friendly name assigned to segment - name='name', - type=BASE_TYPES[0x07], # string - def_num=0, - ), - 1: Field( # UUID of the segment - name='uuid', - type=BASE_TYPES[0x07], # string - def_num=1, - ), - 2: Field( # Sport associated with the segment - name='sport', - type=FIELD_TYPES['sport'], - def_num=2, - ), - 3: Field( # Segment enabled for evaluation - name='enabled', - type=FIELD_TYPES['bool'], - def_num=3, - ), - 4: Field( # Primary key of the user that created the segment - name='user_profile_primary_key', - type=BASE_TYPES[0x86], # uint32 - def_num=4, - ), - 5: Field( # ID of the device that created the segment - name='device_id', - type=BASE_TYPES[0x86], # uint32 - def_num=5, - ), - 6: Field( # Index for the Leader Board entry selected as the default race participant - name='default_race_leader', - type=BASE_TYPES[0x02], # uint8 - def_num=6, - ), - 7: Field( # Indicates if any segments should be deleted - name='delete_status', - type=FIELD_TYPES['segment_delete_status'], - def_num=7, - ), - 8: Field( # Indicates how the segment was selected to be sent to the device - name='selection_type', - type=FIELD_TYPES['segment_selection_type'], - def_num=8, - ), - }, - ), - - - # *********************** Segment List File Messages *********************** - 151: MessageType( # Summary of the unique segment and leaderboard information associated with a segment file. This message is used to compile a segment list file describing all segment files on a device. The segment list file is used when refreshing the contents of a segment file with the latest available leaderboard information. - name='segment_file', - mesg_num=151, - fields={ - 1: Field( # UUID of the segment file - name='file_uuid', - type=BASE_TYPES[0x07], # string - def_num=1, - ), - 3: Field( # Enabled state of the segment file - name='enabled', - type=FIELD_TYPES['bool'], - def_num=3, - ), - 4: Field( # Primary key of the user that created the segment file - name='user_profile_primary_key', - type=BASE_TYPES[0x86], # uint32 - def_num=4, - ), - 7: Field( # Leader type of each leader in the segment file - name='leader_type', - type=FIELD_TYPES['segment_leaderboard_type'], - def_num=7, - ), - 8: Field( # Group primary key of each leader in the segment file - name='leader_group_primary_key', - type=BASE_TYPES[0x86], # uint32 - def_num=8, - ), - 9: Field( # Activity ID of each leader in the segment file - name='leader_activity_id', - type=BASE_TYPES[0x86], # uint32 - def_num=9, - ), - 10: Field( # String version of the activity ID of each leader in the segment file. 21 characters long for each ID, express in decimal - name='leader_activity_id_string', - type=BASE_TYPES[0x07], # string - def_num=10, - ), - 11: Field( # Index for the Leader Board entry selected as the default race participant - name='default_race_leader', - type=BASE_TYPES[0x02], # uint8 - def_num=11, - ), - 254: Field( - name='message_index', - type=FIELD_TYPES['message_index'], - def_num=254, - ), - }, - ), - - - # ************************* Settings File Messages ************************* - 2: MessageType( - name='device_settings', - mesg_num=2, - fields={ - 0: Field( # Index into time zone arrays. - name='active_time_zone', - type=BASE_TYPES[0x02], # uint8 - def_num=0, - ), - 1: Field( # Offset from system time. Required to convert timestamp from system time to UTC. - name='utc_offset', - type=BASE_TYPES[0x86], # uint32 - def_num=1, - ), - 2: Field( # Offset from system time. - name='time_offset', - type=BASE_TYPES[0x86], # uint32 - def_num=2, - units='s', - ), - 4: Field( # Display mode for the time - name='time_mode', - type=FIELD_TYPES['time_mode'], - def_num=4, - ), - 5: Field( # timezone offset in 1/4 hour increments - name='time_zone_offset', - type=BASE_TYPES[0x01], # sint8 - def_num=5, - scale=4, - units='hr', - ), - 12: Field( # Mode for backlight - name='backlight_mode', - type=FIELD_TYPES['backlight_mode'], - def_num=12, - ), - 36: Field( # Enabled state of the activity tracker functionality - name='activity_tracker_enabled', - type=FIELD_TYPES['bool'], - def_num=36, - ), - 39: Field( # UTC timestamp used to set the devices clock and date - name='clock_time', - type=FIELD_TYPES['date_time'], - def_num=39, - ), - 40: Field( # Bitfield to configure enabled screens for each supported loop - name='pages_enabled', - type=BASE_TYPES[0x84], # uint16 - def_num=40, - ), - 46: Field( # Enabled state of the move alert - name='move_alert_enabled', - type=FIELD_TYPES['bool'], - def_num=46, - ), - 47: Field( # Display mode for the date - name='date_mode', - type=FIELD_TYPES['date_mode'], - def_num=47, - ), - 55: Field( - name='display_orientation', - type=FIELD_TYPES['display_orientation'], - def_num=55, - ), - 56: Field( - name='mounting_side', - type=FIELD_TYPES['side'], - def_num=56, - ), - 57: Field( # Bitfield to indicate one page as default for each supported loop - name='default_page', - type=BASE_TYPES[0x84], # uint16 - def_num=57, - ), - 58: Field( # Minimum steps before an autosync can occur - name='autosync_min_steps', - type=BASE_TYPES[0x84], # uint16 - def_num=58, - units='steps', - ), - 59: Field( # Minimum minutes before an autosync can occur - name='autosync_min_time', - type=BASE_TYPES[0x84], # uint16 - def_num=59, - units='minutes', - ), - 80: Field( # Enable auto-detect setting for the lactate threshold feature. - name='lactate_threshold_autodetect_enabled', - type=FIELD_TYPES['bool'], - def_num=80, - ), - 86: Field( # Automatically upload using BLE - name='ble_auto_upload_enabled', - type=FIELD_TYPES['bool'], - def_num=86, - ), - 89: Field( # Helps to conserve battery by changing modes - name='auto_sync_frequency', - type=FIELD_TYPES['auto_sync_frequency'], - def_num=89, - ), - 90: Field( # Allows setting specific activities auto-activity detect enabled/disabled settings - name='auto_activity_detect', - type=FIELD_TYPES['auto_activity_detect'], - def_num=90, - ), - 94: Field( # Number of screens configured to display - name='number_of_screens', - type=BASE_TYPES[0x02], # uint8 - def_num=94, - ), - 95: Field( # Smart Notification display orientation - name='smart_notification_display_orientation', - type=FIELD_TYPES['display_orientation'], - def_num=95, - ), - 134: Field( - name='tap_interface', - type=FIELD_TYPES['switch'], - def_num=134, - ), - }, - ), - 3: MessageType( - name='user_profile', - mesg_num=3, - fields={ - 0: Field( - name='friendly_name', - type=BASE_TYPES[0x07], # string - def_num=0, - ), - 1: Field( - name='gender', - type=FIELD_TYPES['gender'], - def_num=1, - ), - 2: Field( - name='age', - type=BASE_TYPES[0x02], # uint8 - def_num=2, - units='years', - ), - 3: Field( - name='height', - type=BASE_TYPES[0x02], # uint8 - def_num=3, - scale=100, - units='m', - ), - 4: Field( - name='weight', - type=BASE_TYPES[0x84], # uint16 - def_num=4, - scale=10, - units='kg', - ), - 5: Field( - name='language', - type=FIELD_TYPES['language'], - def_num=5, - ), - 6: Field( - name='elev_setting', - type=FIELD_TYPES['display_measure'], - def_num=6, - ), - 7: Field( - name='weight_setting', - type=FIELD_TYPES['display_measure'], - def_num=7, - ), - 8: Field( - name='resting_heart_rate', - type=BASE_TYPES[0x02], # uint8 - def_num=8, - units='bpm', - ), - 9: Field( - name='default_max_running_heart_rate', - type=BASE_TYPES[0x02], # uint8 - def_num=9, - units='bpm', - ), - 10: Field( - name='default_max_biking_heart_rate', - type=BASE_TYPES[0x02], # uint8 - def_num=10, - units='bpm', - ), - 11: Field( - name='default_max_heart_rate', - type=BASE_TYPES[0x02], # uint8 - def_num=11, - units='bpm', - ), - 12: Field( - name='hr_setting', - type=FIELD_TYPES['display_heart'], - def_num=12, - ), - 13: Field( - name='speed_setting', - type=FIELD_TYPES['display_measure'], - def_num=13, - ), - 14: Field( - name='dist_setting', - type=FIELD_TYPES['display_measure'], - def_num=14, - ), - 16: Field( - name='power_setting', - type=FIELD_TYPES['display_power'], - def_num=16, - ), - 17: Field( - name='activity_class', - type=FIELD_TYPES['activity_class'], - def_num=17, - ), - 18: Field( - name='position_setting', - type=FIELD_TYPES['display_position'], - def_num=18, - ), - 21: Field( - name='temperature_setting', - type=FIELD_TYPES['display_measure'], - def_num=21, - ), - 22: Field( - name='local_id', - type=FIELD_TYPES['user_local_id'], - def_num=22, - ), - 23: Field( - name='global_id', - type=BASE_TYPES[0x0D], # byte - def_num=23, - ), - 28: Field( # Typical wake time - name='wake_time', - type=FIELD_TYPES['localtime_into_day'], - def_num=28, - ), - 29: Field( # Typical bed time - name='sleep_time', - type=FIELD_TYPES['localtime_into_day'], - def_num=29, - ), - 30: Field( - name='height_setting', - type=FIELD_TYPES['display_measure'], - def_num=30, - ), - 31: Field( # User defined running step length set to 0 for auto length - name='user_running_step_length', - type=BASE_TYPES[0x84], # uint16 - def_num=31, - scale=1000, - units='m', - ), - 32: Field( # User defined walking step length set to 0 for auto length - name='user_walking_step_length', - type=BASE_TYPES[0x84], # uint16 - def_num=32, - scale=1000, - units='m', - ), - 47: Field( - name='depth_setting', - type=FIELD_TYPES['display_measure'], - def_num=47, - ), - 49: Field( - name='dive_count', - type=BASE_TYPES[0x86], # uint32 - def_num=49, - ), - 254: Field( - name='message_index', - type=FIELD_TYPES['message_index'], - def_num=254, - ), - }, - ), - - - # ********************** Sport Settings File Messages ********************** - 7: MessageType( - name='zones_target', - mesg_num=7, - fields={ - 1: Field( - name='max_heart_rate', - type=BASE_TYPES[0x02], # uint8 - def_num=1, - ), - 2: Field( - name='threshold_heart_rate', - type=BASE_TYPES[0x02], # uint8 - def_num=2, - ), - 3: Field( - name='functional_threshold_power', - type=BASE_TYPES[0x84], # uint16 - def_num=3, - ), - 5: Field( - name='hr_calc_type', - type=FIELD_TYPES['hr_zone_calc'], - def_num=5, - ), - 7: Field( - name='pwr_calc_type', - type=FIELD_TYPES['pwr_zone_calc'], - def_num=7, - ), - }, - ), - - - # ************************** Totals File Messages ************************** - 33: MessageType( - name='totals', - mesg_num=33, - fields={ - 0: Field( # Excludes pauses - name='timer_time', - type=BASE_TYPES[0x86], # uint32 - def_num=0, - units='s', - ), - 1: Field( - name='distance', - type=BASE_TYPES[0x86], # uint32 - def_num=1, - units='m', - ), - 2: Field( - name='calories', - type=BASE_TYPES[0x86], # uint32 - def_num=2, - units='kcal', - ), - 3: Field( - name='sport', - type=FIELD_TYPES['sport'], - def_num=3, - ), - 4: Field( # Includes pauses - name='elapsed_time', - type=BASE_TYPES[0x86], # uint32 - def_num=4, - units='s', - ), - 5: Field( - name='sessions', - type=BASE_TYPES[0x84], # uint16 - def_num=5, - ), - 6: Field( - name='active_time', - type=BASE_TYPES[0x86], # uint32 - def_num=6, - units='s', - ), - 9: Field( - name='sport_index', - type=BASE_TYPES[0x02], # uint8 - def_num=9, - ), - 253: FIELD_TYPE_TIMESTAMP, - 254: Field( - name='message_index', - type=FIELD_TYPES['message_index'], - def_num=254, - ), - }, - ), - - - # *********************** Weight Scale File Messages *********************** - 30: MessageType( - name='weight_scale', - mesg_num=30, - fields={ - 0: Field( - name='weight', - type=FIELD_TYPES['weight'], - def_num=0, - scale=100, - units='kg', - ), - 1: Field( - name='percent_fat', - type=BASE_TYPES[0x84], # uint16 - def_num=1, - scale=100, - units='%', - ), - 2: Field( - name='percent_hydration', - type=BASE_TYPES[0x84], # uint16 - def_num=2, - scale=100, - units='%', - ), - 3: Field( - name='visceral_fat_mass', - type=BASE_TYPES[0x84], # uint16 - def_num=3, - scale=100, - units='kg', - ), - 4: Field( - name='bone_mass', - type=BASE_TYPES[0x84], # uint16 - def_num=4, - scale=100, - units='kg', - ), - 5: Field( - name='muscle_mass', - type=BASE_TYPES[0x84], # uint16 - def_num=5, - scale=100, - units='kg', - ), - 7: Field( - name='basal_met', - type=BASE_TYPES[0x84], # uint16 - def_num=7, - scale=4, - units='kcal/day', - ), - 8: Field( - name='physique_rating', - type=BASE_TYPES[0x02], # uint8 - def_num=8, - ), - 9: Field( # ~4kJ per kcal, 0.25 allows max 16384 kcal - name='active_met', - type=BASE_TYPES[0x84], # uint16 - def_num=9, - scale=4, - units='kcal/day', - ), - 10: Field( - name='metabolic_age', - type=BASE_TYPES[0x02], # uint8 - def_num=10, - units='years', - ), - 11: Field( - name='visceral_fat_rating', - type=BASE_TYPES[0x02], # uint8 - def_num=11, - ), - 12: Field( # Associates this weight scale message to a user. This corresponds to the index of the user profile message in the weight scale file. - name='user_profile_index', - type=FIELD_TYPES['message_index'], - def_num=12, - ), - 253: FIELD_TYPE_TIMESTAMP, - }, - ), - - - # ************************* Workout File Messages ************************** - 26: MessageType( - name='workout', - mesg_num=26, - fields={ - 4: Field( - name='sport', - type=FIELD_TYPES['sport'], - def_num=4, - ), - 5: Field( - name='capabilities', - type=FIELD_TYPES['workout_capabilities'], - def_num=5, - ), - 6: Field( # number of valid steps - name='num_valid_steps', - type=BASE_TYPES[0x84], # uint16 - def_num=6, - ), - 8: Field( - name='wkt_name', - type=BASE_TYPES[0x07], # string - def_num=8, - ), - 11: Field( - name='sub_sport', - type=FIELD_TYPES['sub_sport'], - def_num=11, - ), - 14: Field( - name='pool_length', - type=BASE_TYPES[0x84], # uint16 - def_num=14, - scale=100, - units='m', - ), - 15: Field( - name='pool_length_unit', - type=FIELD_TYPES['display_measure'], - def_num=15, - ), - }, - ), -} diff --git a/fitparse/records.py b/fitparse/records.py deleted file mode 100644 index e9fcd6a..0000000 --- a/fitparse/records.py +++ /dev/null @@ -1,418 +0,0 @@ -import math -import struct - -from itertools import zip_longest - - -class RecordBase: - # namedtuple-like base class. Subclasses should must __slots__ - __slots__ = () - - # TODO: switch back to namedtuple, and don't use default arguments as None - # and see if that gives us any performance improvements - - def __init__(self, *args, **kwargs): - for slot_name, value in zip_longest(self.__slots__, args, fillvalue=None): - setattr(self, slot_name, value) - for slot_name, value in kwargs.items(): - setattr(self, slot_name, value) - - -class MessageHeader(RecordBase): - __slots__ = ('is_definition', 'is_developer_data', 'local_mesg_num', 'time_offset') - - def __repr__(self): - return '' % ( - 'definition' if self.is_definition else 'data', - '(developer)' if self.is_developer_data else '', - self.local_mesg_num, - ', time offset: %d' % self.time_offset if self.time_offset else '', - ) - - -class DefinitionMessage(RecordBase): - __slots__ = ('header', 'endian', 'mesg_type', 'mesg_num', 'field_defs', 'dev_field_defs') - type = 'definition' - - @property - def name(self): - return self.mesg_type.name if self.mesg_type else 'unknown_%d' % self.mesg_num - - def __repr__(self): - return '' % ( - self.name, - self.mesg_num, - self.header.local_mesg_num, - ', '.join([fd.name for fd in self.field_defs]), - ', '.join([fd.name for fd in self.dev_field_defs]), - ) - - -class FieldDefinition(RecordBase): - __slots__ = ('field', 'def_num', 'base_type', 'size') - - @property - def name(self): - return self.field.name if self.field else 'unknown_%d' % self.def_num - - @property - def type(self): - return self.field.type if self.field else self.base_type - - def __repr__(self): - return '' % ( - self.name, - self.def_num, - self.type.name, self.base_type.name, - self.size, 's' if self.size != 1 else '', - ) - - -class DevFieldDefinition(RecordBase): - __slots__ = ('field', 'dev_data_index', 'base_type', 'def_num', 'size') - - def __init__(self, **kwargs): - super().__init__(**kwargs) - # For dev fields, the base_type and type are always the same. - self.base_type = self.type - - @property - def name(self): - return self.field.name if self.field else 'unknown_dev_%d_%d' % (self.dev_data_index, self.def_num) - - @property - def type(self): - return self.field.type - - def __repr__(self): - return '' % ( - self.name, - self.dev_data_index, - self.def_num, - self.type.name, - self.size, 's' if self.size != 1 else '', - ) - - -class DataMessage(RecordBase): - __slots__ = ('header', 'def_mesg', 'fields') - type = 'data' - - def get(self, field_name, as_dict=False): - # SIMPLIFY: get rid of as_dict - for field_data in self.fields: - if field_data.is_named(field_name): - return field_data.as_dict() if as_dict else field_data - - def get_raw_value(self, field_name): - field_data = self.get(field_name) - if field_data: - return field_data.raw_value - return None - - def get_value(self, field_name): - # SIMPLIFY: get rid of this completely - field_data = self.get(field_name) - if field_data: - return field_data.value - - def get_values(self): - # SIMPLIFY: get rid of this completely - return {f.name if f.name else f.def_num: f.value for f in self.fields} - - @property - def name(self): - return self.def_mesg.name - - @property - def mesg_num(self): - # SIMPLIFY: get rid of this - return self.def_mesg.mesg_num - - @property - def mesg_type(self): - # SIMPLIFY: get rid of this - return self.def_mesg.mesg_type - - def as_dict(self): - # TODO: rethink this format - return { - 'name': self.name, - 'fields': [f.as_dict() for f in self.fields], - } - - def __iter__(self): - # Sort by whether this is a known field, then its name - return iter(sorted(self.fields, key=lambda fd: (int(fd.field is None), fd.name))) - - def __repr__(self): - return '' % ( - self.name, self.mesg_num, self.header.local_mesg_num, - ', '.join([f"{fd.name}: {fd.value}" for fd in self.fields]), - ) - - def __str__(self): - # SIMPLIFY: get rid of this - return '%s (#%d)' % (self.name, self.mesg_num) - - -class FieldData(RecordBase): - __slots__ = ('field_def', 'field', 'parent_field', 'value', 'raw_value', 'units') - - def __init__(self, *args, **kwargs): - super().__init__(self, *args, **kwargs) - if not self.units and self.field: - # Default to units on field, otherwise None. - # NOTE:Not a property since you may want to override this in a data processor - self.units = self.field.units - - @property - def name(self): - return self.field.name if self.field else 'unknown_%d' % self.def_num - - # TODO: Some notion of flags - - def is_named(self, name): - if self.field: - if name in (self.field.name, self.field.def_num): - return True - if self.parent_field: - if name in (self.parent_field.name, self.parent_field.def_num): - return True - if self.field_def: - if name == self.field_def.def_num: - return True - return False - - @property - def def_num(self): - # Prefer to return the def_num on the field - # since field_def may be None if this field is dynamic - return self.field.def_num if self.field else self.field_def.def_num - - @property - def base_type(self): - # Try field_def's base type, if it doesn't exist, this is a - # dynamically added field, so field doesn't be None - return self.field_def.base_type if self.field_def else self.field.base_type - - @property - def is_base_type(self): - return self.field.is_base_type if self.field else True - - @property - def type(self): - return self.field.type if self.field else self.base_type - - @property - def field_type(self): - return self.field.field_type if self.field else 'field' - - def as_dict(self): - return { - 'name': self.name, 'def_num': self.def_num, 'base_type': self.base_type.name, - 'type': self.type.name, 'units': self.units, 'value': self.value, - 'raw_value': self.raw_value, - } - - def __repr__(self): - return '' % ( - self.name, self.value, ' [%s]' % self.units if self.units else '', - self.def_num, self.type.name, self.base_type.name, self.raw_value, - ) - - def __str__(self): - return '{}: {}{}'.format( - self.name, self.value, ' [%s]' % self.units if self.units else '', - ) - - -class BaseType(RecordBase): - __slots__ = ('name', 'identifier', 'fmt', 'parse') - values = None # In case we're treated as a FieldType - - @property - def size(self): - return struct.calcsize(self.fmt) - - @property - def type_num(self): - return self.identifier & 0x1F - - def __repr__(self): - return '' % ( - self.name, self.type_num, self.identifier, - ) - - -class FieldType(RecordBase): - __slots__ = ('name', 'base_type', 'values') - - def __repr__(self): - return f'' - - -class MessageType(RecordBase): - __slots__ = ('name', 'mesg_num', 'fields') - - def __repr__(self): - return '' % (self.name, self.mesg_num) - - -class FieldAndSubFieldBase(RecordBase): - __slots__ = () - - @property - def base_type(self): - return self.type if self.is_base_type else self.type.base_type - - @property - def is_base_type(self): - return isinstance(self.type, BaseType) - - def render(self, raw_value): - if self.type.values and (raw_value in self.type.values): - return self.type.values[raw_value] - return raw_value - - -class Field(FieldAndSubFieldBase): - __slots__ = ('name', 'type', 'def_num', 'scale', 'offset', 'units', 'components', 'subfields') - field_type = 'field' - - -class SubField(FieldAndSubFieldBase): - __slots__ = ('name', 'def_num', 'type', 'scale', 'offset', 'units', 'components', 'ref_fields') - field_type = 'subfield' - - -class DevField(FieldAndSubFieldBase): - __slots__ = ('dev_data_index', 'def_num', 'type', 'name', 'units', 'native_field_num', - # The rest of these are just to be compatible with Field objects. They're always None - 'scale', 'offset', 'components', 'subfields') - field_type = 'devfield' - - -class ReferenceField(RecordBase): - __slots__ = ('name', 'def_num', 'value', 'raw_value') - - -class ComponentField(RecordBase): - __slots__ = ('name', 'def_num', 'scale', 'offset', 'units', 'accumulate', 'bits', 'bit_offset') - field_type = 'component' - - def render(self, raw_value): - if raw_value is None: - return None - - # If it's a tuple, then it's a byte array and unpack it as such - # (only type that uses this is compressed speed/distance) - if isinstance(raw_value, tuple): - # Profile.xls sometimes contains more components than the read raw - # value is able to hold (typically the *event_timestamp_12* field in - # *hr* messages). - # This test allows to ensure *unpacked_num* is not right-shifted - # more than necessary. - if self.bit_offset and self.bit_offset >= len(raw_value) << 3: - raise ValueError() - - unpacked_num = 0 - - # Unpack byte array as little endian - for value in reversed(raw_value): - unpacked_num = (unpacked_num << 8) + value - - raw_value = unpacked_num - - # Mask and shift like a normal number - if isinstance(raw_value, int): - raw_value = (raw_value >> self.bit_offset) & ((1 << self.bits) - 1) - - return raw_value - - -class Crc: - """FIT file CRC computation.""" - - CRC_TABLE = ( - 0x0000, 0xCC01, 0xD801, 0x1400, 0xF001, 0x3C00, 0x2800, 0xE401, - 0xA001, 0x6C00, 0x7800, 0xB401, 0x5000, 0x9C01, 0x8801, 0x4400, - ) - - FMT = 'H' - - def __init__(self, value=0, byte_arr=None): - self.value = value - if byte_arr: - self.update(byte_arr) - - def __repr__(self): - return '<{} {}>'.format(self.__class__.__name__, self.value or "-") - - def __str__(self): - return self.format(self.value) - - def update(self, byte_arr): - """Read bytes and update the CRC computed.""" - if byte_arr: - self.value = self.calculate(byte_arr, self.value) - - @staticmethod - def format(value): - """Format CRC value to string.""" - return '0x%04X' % value - - @classmethod - def calculate(cls, byte_arr, crc=0): - """Compute CRC for input bytes.""" - for byte in byte_arr: - # Taken verbatim from FIT SDK docs - tmp = cls.CRC_TABLE[crc & 0xF] - crc = (crc >> 4) & 0x0FFF - crc = crc ^ tmp ^ cls.CRC_TABLE[byte & 0xF] - - tmp = cls.CRC_TABLE[crc & 0xF] - crc = (crc >> 4) & 0x0FFF - crc = crc ^ tmp ^ cls.CRC_TABLE[(byte >> 4) & 0xF] - return crc - - -def parse_string(string): - try: - s = string[:string.index(0x00)] - except ValueError: - # FIT specification defines the 'string' type as follows: "Null - # terminated string encoded in UTF-8 format". - # - # However 'string' values are not always null-terminated when encoded, - # according to FIT files created by Garmin devices (e.g. DEVICE.FIT file - # from a fenix3). - # - # So in order to be more flexible, in case index() could not find any - # null byte, we just decode the whole bytes-like object. - s = string - - return s.decode(encoding='utf-8', errors='replace') or None - -# The default base type -BASE_TYPE_BYTE = BaseType(name='byte', identifier=0x0D, fmt='B', parse=lambda x: None if all(b == 0xFF for b in x) else x) - -BASE_TYPES = { - 0x00: BaseType(name='enum', identifier=0x00, fmt='B', parse=lambda x: None if x == 0xFF else x), - 0x01: BaseType(name='sint8', identifier=0x01, fmt='b', parse=lambda x: None if x == 0x7F else x), - 0x02: BaseType(name='uint8', identifier=0x02, fmt='B', parse=lambda x: None if x == 0xFF else x), - 0x83: BaseType(name='sint16', identifier=0x83, fmt='h', parse=lambda x: None if x == 0x7FFF else x), - 0x84: BaseType(name='uint16', identifier=0x84, fmt='H', parse=lambda x: None if x == 0xFFFF else x), - 0x85: BaseType(name='sint32', identifier=0x85, fmt='i', parse=lambda x: None if x == 0x7FFFFFFF else x), - 0x86: BaseType(name='uint32', identifier=0x86, fmt='I', parse=lambda x: None if x == 0xFFFFFFFF else x), - 0x07: BaseType(name='string', identifier=0x07, fmt='s', parse=parse_string), - 0x88: BaseType(name='float32', identifier=0x88, fmt='f', parse=lambda x: None if math.isnan(x) else x), - 0x89: BaseType(name='float64', identifier=0x89, fmt='d', parse=lambda x: None if math.isnan(x) else x), - 0x0A: BaseType(name='uint8z', identifier=0x0A, fmt='B', parse=lambda x: None if x == 0x0 else x), - 0x8B: BaseType(name='uint16z', identifier=0x8B, fmt='H', parse=lambda x: None if x == 0x0 else x), - 0x8C: BaseType(name='uint32z', identifier=0x8C, fmt='I', parse=lambda x: None if x == 0x0 else x), - 0x0D: BASE_TYPE_BYTE, - 0x8E: BaseType(name='sint64', identifier=0x8E, fmt='q', parse=lambda x: None if x == 0x7FFFFFFFFFFFFFFF else x), - 0x8F: BaseType(name='uint64', identifier=0x8F, fmt='Q', parse=lambda x: None if x == 0xFFFFFFFFFFFFFFFF else x), - 0x90: BaseType(name='uint64z', identifier=0x90, fmt='Q', parse=lambda x: None if x == 0 else x), -} diff --git a/fitparse/utils.py b/fitparse/utils.py deleted file mode 100644 index 65f424a..0000000 --- a/fitparse/utils.py +++ /dev/null @@ -1,67 +0,0 @@ -import io -import re -from collections.abc import Iterable - -from pathlib import PurePath - - -class FitParseError(ValueError): - pass - -class FitEOFError(FitParseError): - pass - -class FitCRCError(FitParseError): - pass - -class FitHeaderError(FitParseError): - pass - - -METHOD_NAME_SCRUBBER = re.compile(r'\W|^(?=\d)') -UNIT_NAME_TO_FUNC_REPLACEMENTS = ( - ('/', ' per '), - ('%', 'percent'), - ('*', ' times '), -) - -def scrub_method_name(method_name, convert_units=False): - if convert_units: - for replace_from, replace_to in UNIT_NAME_TO_FUNC_REPLACEMENTS: - method_name = method_name.replace( - replace_from, '%s' % replace_to, - ) - return METHOD_NAME_SCRUBBER.sub('_', method_name) - - -def fileish_open(fileish, mode): - """ - Convert file-ish object to BytesIO like object. - :param fileish: the file-ihs object (str, BytesIO, bytes, file contents) - :param str mode: mode for the open function. - :rtype: BytesIO - """ - if mode is not None and any(m in mode for m in ['+', 'w', 'a', 'x']): - attr = 'write' - else: - attr = 'read' - if hasattr(fileish, attr) and hasattr(fileish, 'seek'): - # BytesIO-like object - return fileish - elif isinstance(fileish, str): - # file path - return open(fileish, mode) - - # pathlib obj - if isinstance(fileish, PurePath): - return fileish.open(mode) - - # file contents - return io.BytesIO(fileish) - - -def is_iterable(obj): - """Check, if the obj is iterable but not string or bytes. - :rtype bool""" - # Speed: do not use iter() although it's more robust, see also https://stackoverflow.com/questions/1952464/ - return isinstance(obj, Iterable) and not isinstance(obj, (str, bytes)) diff --git a/genindex.html b/genindex.html new file mode 100644 index 0000000..f188700 --- /dev/null +++ b/genindex.html @@ -0,0 +1,191 @@ + + + + + + + + Index — python-fitparse 1.1.0 documentation + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..c19d868 --- /dev/null +++ b/index.html @@ -0,0 +1,241 @@ + + + + + + + + python-fitparse Documention — python-fitparse 1.1.0 documentation + + + + + + + + + + + + + + + +
+
+
+
+ +
+

python-fitparse Documention¶

+ +
+

Introduction¶

+

The fitparse module is a Python library for parsing +ANT/Garmin .FIT +files.

+

The FIT (Flexible and Interoperable Data Transfer) file protocol is specified +by ANT in its FIT SDK. It’s a common file format +used internally on embedded fitness computers, for example on the Edge and +Forerunner series of Garmin products.

+
+

Quickstart Guide¶

+

TODO

+
+
+

Installation¶

+
+

Using pip¶

+

The easiest way to grab fitparse is using pip,

+
$ pip install fitparse
+
+
+
+
+

From github¶

+

Navigate to dtcooper/python-fitparse +on github and clone the latest version:

+
$ git clone git@github.com:dtcooper/python-fitparse.git
+$ cd python-fitparse
+$ python setup.py install
+
+
+
+
+

Requirements¶

+

The following are required to install fitparse,

+
    +
  • Python 2.5 and above (Python 3 is currently not +supported)

  • +
  • The argparse is required for the +fitdump command, but it is included in the Python standard library +as of version 2.7. Using pip to install the package will install this if +needed.

  • +
+
+
+
+

API Documentation¶

+

If you are looking for information on a specific function, class or method, +this part of the documentation is for you.

+ +
+
+

Usage Examples¶

+

Here’s a simple program to print all the record fields in an activity file:

+
from fitparse import FitFile
+
+
+fitfile = FitFile('/home/dave/garmin-activities/2012-12-19-16-14-54.fit')
+
+# Get all data messages that are of type record
+for record in fitfile.get_messages('record'):
+
+    # Go through all the data entries in this record
+    for record_data in record:
+
+        # Print the records name and value (and units if it has any)
+        if record_data.units:
+            print(" * %s: %s %s" % (
+                record_data.name, record_data.value, record_data.units,
+            ))
+        else:
+            print(" * %s: %s" % (record_data.name, record_data.value))
+    print()
+
+
+
+
+

License¶

+
MIT License
+
+Copyright (c) 2011-2020, David Cooper <david@dtcooper.com>
+Copyright (c) 2017-2020, Carey Metcalfe <carey@cmetcalfe.ca>
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+
+
+
+
+ + +
+
+
+
+ +
+
+ + + + \ No newline at end of file diff --git a/objects.inv b/objects.inv new file mode 100644 index 0000000..7ffa043 Binary files /dev/null and b/objects.inv differ diff --git a/py-modindex.html b/py-modindex.html new file mode 100644 index 0000000..7291ea0 --- /dev/null +++ b/py-modindex.html @@ -0,0 +1,104 @@ + + + + + + + + Python Module Index — python-fitparse 1.1.0 documentation + + + + + + + + + + + + + + + + + + + +
+
+
+
+ + +

Python Module Index

+ +
+ f +
+ + + + + + + +
 
+ f
+ fitparse +
+ + +
+
+
+
+ +
+
+ + + + \ No newline at end of file diff --git a/requirements-test.txt b/requirements-test.txt deleted file mode 100644 index 5cc4f02..0000000 --- a/requirements-test.txt +++ /dev/null @@ -1,2 +0,0 @@ -coverage>=4.5.2 -coveralls>=1.7.0 # via pip-tools diff --git a/run_tests.py b/run_tests.py deleted file mode 100755 index 3670d1a..0000000 --- a/run_tests.py +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/env python - -import os -import sys - -if sys.version_info >= (2, 7): - import unittest -else: - import unittest2 as unittest - - -TEST_PATH = os.path.join(os.path.realpath(os.path.dirname(__file__)), 'tests') - -suite = unittest.defaultTestLoader.discover(start_dir=TEST_PATH) -runner = unittest.TextTestRunner() -runner.run(suite) diff --git a/scripts/fitdump b/scripts/fitdump deleted file mode 100755 index 629f61b..0000000 --- a/scripts/fitdump +++ /dev/null @@ -1,200 +0,0 @@ -#!/usr/bin/env python - -import argparse -import codecs -import datetime -import itertools -import json -import os.path -import types - -import fitparse - - -def format_message(num, message, options): - s = [f"{num}. {message.name}"] - if options.with_defs: - s.append(f' [{message.type}]') - s.append('\n') - - if message.type == 'data': - for field_data in message: - s.append(f' * {field_data.name}: {field_data.value}') - if field_data.units: - s.append(f' [{field_data.units}]') - s.append('\n') - - s.append('\n') - return "".join(s) - - -def parse_args(args=None): - parser = argparse.ArgumentParser( - description='Dump .FIT files to various formats', - epilog='python-fitparse version %s' % fitparse.__version__, - ) - parser.add_argument('-v', '--verbose', action='count', default=0) - parser.add_argument( - '-o', '--output', type=argparse.FileType(mode='w', encoding="utf-8"), - default="-", - help='File to output data into (defaults to stdout)', - ) - parser.add_argument( - # TODO: csv - '-t', '--type', choices=('readable', 'json', 'gpx'), default='readable', - help='File type to output. (DEFAULT: %(default)s)', - ) - parser.add_argument( - '-n', '--name', action='append', help='Message name (or number) to filter', - ) - parser.add_argument( - 'infile', metavar='FITFILE', type=argparse.FileType(mode='rb'), - help='Input .FIT file (Use - for stdin)', - ) - parser.add_argument( - '--ignore-crc', action='store_const', const=True, help='Some devices seem to write invalid crc\'s, ignore these.' - ) - - options = parser.parse_args(args) - - options.verbose = options.verbose >= 1 - options.with_defs = (options.type == "readable" and options.verbose) - options.as_dict = (options.type != "readable" and options.verbose) - - return options - - -class RecordJSONEncoder(json.JSONEncoder): - def default(self, obj): - if isinstance(obj, types.GeneratorType): - return list(obj) - if isinstance(obj, (datetime.datetime, datetime.time)): - return obj.isoformat() - if isinstance(obj, fitparse.DataMessage): - return { - "type": obj.name, - "data": { - data.name: data.value for data in obj - } - } - # Fall back to original to raise a TypeError - return super().default(obj) - - -def generate_gpx(records, filename=None): - # TODO: Use xml.etree.ElementTree ? - - GPX_TIME_FMT = "%Y-%m-%dT%H:%M:%SZ" # ISO 8601 format - - records = iter(records) - - # header + open tags - yield '\n' - yield '\n' - yield ' \n' - - # file creation time (if a file_id record exists) - first_record = [] - for message in records: - if message.name == "file_id": - for field_data in message: - if field_data.name == "time_created" and type(field_data.value) == datetime.datetime: - yield f' \n' - break - else: - # No time found in the fields, check next record - continue - break - elif message.name == "record": - first_record.append(message) - break - - if filename: - yield f' {filename}\n' - - yield ' \n' - yield ' \n' - - if filename: - yield f' {filename}\n' - - yield ' \n' - - # track points - for message in itertools.chain(first_record, records): - if message.name != "record": - continue - - trkpt = {} - - # TODO: support more data types (heart rate, cadence, etc) - for field_data in message: - if field_data.name == "position_lat": - # Units are decimal degrees - trkpt["lat"] = field_data.value - elif field_data.name == "position_long": - # Units are decimal degrees - trkpt["lon"] = field_data.value - elif field_data.name == "enhanced_altitude": - # Units are m - trkpt["ele"] = field_data.value - elif field_data.name == "timestamp" and type(field_data.value) == datetime.datetime: - trkpt["time"] = field_data.value.strftime(GPX_TIME_FMT) - elif field_data.name == "enhanced_speed" and type(field_data.value) == float: - # convert from km/h to m/s - trkpt["speed"] = field_data.value / 3.6 - - # Add trackpoint - if "lat" in trkpt and "lon" in trkpt: - yield ' \n'.format(**trkpt) - if "ele" in trkpt: - yield ' {ele}\n'.format(**trkpt) - if "time" in trkpt: - yield ' \n'.format(**trkpt) - if "speed" in trkpt: - yield ' {speed}\n'.format(**trkpt) - yield ' \n' - - # close tags - yield ' \n' - yield ' \n' - yield '\n' - - -def main(args=None): - options = parse_args(args) - - fitfile = fitparse.UncachedFitFile( - options.infile, - data_processor=fitparse.StandardUnitsDataProcessor(), - check_crc=not(options.ignore_crc), - ) - records = fitfile.get_messages( - name=options.name, - with_definitions=options.with_defs, - as_dict=options.as_dict - ) - - try: - if options.type == "json": - json.dump(records, fp=options.output, cls=RecordJSONEncoder) - elif options.type == "readable": - options.output.writelines( - format_message(n, record, options) for n, record in enumerate(records, 1) - ) - elif options.type == "gpx": - filename = getattr(options.infile, "name") - if filename: - filename = os.path.basename(filename) - options.output.writelines(generate_gpx(records, filename)) - finally: - try: - options.output.close() - except OSError: - pass - -if __name__ == '__main__': - try: - main() - except BrokenPipeError: - pass diff --git a/scripts/generate_profile.py b/scripts/generate_profile.py deleted file mode 100755 index 5d5a5fb..0000000 --- a/scripts/generate_profile.py +++ /dev/null @@ -1,626 +0,0 @@ -#!/usr/bin/env python - -# -# Horrible, dirty, ugly, awful, and terrible script to export the Profile.xls -# that comes with the FIT SDK to the Python data structures in profile.py. You -# shouldn't have to use this unless you're developing python-fitparse. -# -# You can download the SDK at http://www.thisisant.com/ -# -# WARNING: This is only known to work with FIT SDK versions up to 5.10 -# - -from collections import namedtuple -import datetime -import os -import re -import sys -import zipfile - -import xlrd # Dev requirement for parsing Excel spreadsheet - - -FIELD_NUM_TIMESTAMP = 253 - -XLS_HEADER_MAGIC = b'\xD0\xCF\x11\xE0\xA1\xB1\x1A\xE1' - -SYMBOL_NAME_SCRUBBER = re.compile(r'\W|^(?=\d)') - - -def header(header, indent=0): - return '{}# {}'.format(' ' * indent, (' %s ' % header).center(78 - indent, '*')) - - -def scrub_symbol_name(symbol_name): - return SYMBOL_NAME_SCRUBBER.sub('_', symbol_name) - - -PROFILE_HEADER_FIRST_PART = "{}\n{}".format( - header('BEGIN AUTOMATICALLY GENERATED FIT PROFILE'), - header('DO NOT EDIT THIS FILE'), -) - -IMPORT_HEADER = '''from fitparse.records import ( - ComponentField, - Field, - FieldType, - MessageType, - ReferenceField, - SubField, - BASE_TYPES, -)''' - -# This allows to prepend the declaration of some message numbers to the -# generated file. -# E.g. 'hr' -> MESG_NUM_HR = 132 -MESSAGE_NUM_DECLARATIONS = () - -# This allows to prepend the declaration of some field numbers of specific -# messages to the generated file. -# E.g. 'hr.event_timestamp' -> FIELD_NUM_HR_EVENT_TIMESTAMP = 9 -FIELD_NUM_DECLARATIONS = () - -SPECIAL_FIELD_DECLARATIONS = "FIELD_TYPE_TIMESTAMP = Field(name='timestamp', type=FIELD_TYPES['date_time'], def_num=" + str(FIELD_NUM_TIMESTAMP) + ", units='s')" - -IGNORE_TYPE_VALUES = ( - # of the form 'type_name:value_name' - 'mesg_num:mfg_range_min', - 'mesg_num:mfg_range_max', - 'date_time:min', # TODO: How to account for this? (see Profile.xls) -) - -BASE_TYPES = { - 'enum': '0x00', - 'sint8': '0x01', - 'uint8': '0x02', - 'sint16': '0x83', - 'uint16': '0x84', - 'sint32': '0x85', - 'uint32': '0x86', - 'string': '0x07', - 'float32': '0x88', - 'float64': '0x89', - 'uint8z': '0x0A', - 'uint16z': '0x8B', - 'uint32z': '0x8C', - 'byte': '0x0D', - 'sint64': '0x8E', - 'uint64': '0x8F', - 'uint64z': '0x90', -} - - -def render_type(name): - if name in BASE_TYPES: - return "BASE_TYPES[{}], # {}".format(BASE_TYPES[name], name) - else: - return "FIELD_TYPES['%s']," % name - - -def indent(s, amount=1): - return ('\n%s' % (' ' * (amount * 4))).join(str(s).splitlines()) - - -class TypeList(namedtuple('TypeList', ('types'))): - def get(self, name, raise_exception=True): - for type in self.types: - if type.name == name: - return type - if raise_exception: - raise AssertionError("Couldn't find type by name: %s" % name) - - def num_values(self): - return sum(len(type.values) for type in self.types) - - def get_mesg_num(self, name): - for mesg in self.get('mesg_num').values: - if mesg.name == name: - return mesg.value - raise AssertionError("Couldn't find message by name: %s" % name) - - def __str__(self): - s = 'FIELD_TYPES = {\n' - for type in sorted(self.types, key=lambda x: x.name): - s += " '{}': {},\n".format(type.name, indent(type)) - s += '}' - return s - - -class TypeInfo(namedtuple('TypeInfo', ('name', 'base_type', 'values', 'comment'))): - def get(self, value_name): - for value in self.values: - if value.name == value_name: - return value - raise AssertionError("Invalid value name {} in type {}".format(value_name, self.name)) - - def __str__(self): - s = 'FieldType(%s\n' % render_comment(self.comment) - s += " name='%s',\n" % (self.name) - s += " base_type=BASE_TYPES[{}], # {}\n".format( - BASE_TYPES[self.base_type], self.base_type, - ) - if self.values: - s += " values={\n" - for value in sorted(self.values, key=lambda x: x.value if isinstance(x.value, int) else int(x.value, 16)): - s += " {}\n".format(value) - s += " },\n" - s += ")" - return s - - -class TypeValueInfo(namedtuple('TypeValueInfo', ('name', 'value', 'comment'))): - def __str__(self): - return "{}: '{}',{}".format(self.value, self.name, render_comment(self.comment)) - - -class MessageList(namedtuple('MessageList', ('messages'))): - def __str__(self): - s = 'MESSAGE_TYPES = {\n' - last_group_name = None - for message in sorted( - self.messages, - key=lambda mi: ( - 0 if mi.group_name.lower().startswith('common') else 1, - mi.group_name.lower(), mi.num, - ), - ): - # Group name comment - if message.group_name != last_group_name: - if last_group_name is not None: - s += '\n\n' - s += "%s\n" % header(message.group_name, 4) - last_group_name = message.group_name - s += " {}: {},\n".format(message.num, indent(message)) - s += '}' - return s - - def get_by_name(self, mesg_name): - for mesg in self.messages: - if mesg.name == mesg_name: - return mesg - - raise ValueError('message "%s" not found' % mesg_name) - - def get_field_by_name(self, mesg_name, field_name): - mesg = self.get_by_name(mesg_name) - - for field in mesg.fields: - if field.name == field_name: - return mesg, field - - raise ValueError('field "{}" not found in message "{}"'.format(field_name, mesg_name)) - - -class MessageInfo(namedtuple('MessageInfo', ('name', 'num', 'group_name', 'fields', 'comment'))): - def get(self, field_name): - for field in self.fields: - if field.name == field_name: - return field - raise AssertionError("Invalid field name {} in message {}".format(field_name, self.name)) - - def __str__(self): - s = "MessageType(%s\n" % render_comment(self.comment) - s += " name='%s',\n" % self.name - s += " mesg_num=%d,\n" % self.num - s += " fields={\n" - for field in sorted(self.fields, key=lambda fi: fi.num): - # Don't include trailing comma for fields - s += " %d: %s\n" % (field.num, indent(field, 2)) - s += " },\n" - s += ")" - return s - - -class FieldInfo(namedtuple('FieldInfo', ('name', 'type', 'num', 'scale', 'offset', 'units', 'components', 'subfields', 'comment'))): - def __str__(self): - if self.num == FIELD_NUM_TIMESTAMP: - # Add trailing comma here because of comment - assert not self.components and not self.subfields - return 'FIELD_TYPE_TIMESTAMP,%s' % render_comment(self.comment) - s = "Field(%s\n" % render_comment(self.comment) - s += " name='%s',\n" % self.name - s += " type=%s\n" % render_type(self.type) - s += " def_num=%d,\n" % self.num - if self.scale: - s += " scale=%s,\n" % self.scale - if self.offset: - s += " offset=%s,\n" % self.offset - if self.units: - s += " units=%s,\n" % repr(self.units) - if self.components: - s += ' components=(\n' - # Leave components sorted as is (order matters because of bit layout) - for component in self.components: - s += " %s,\n" % indent(component, 2) - s += " ),\n" - if self.subfields: - s += " subfields=(\n" - for subfield in sorted(self.subfields, key=lambda si: si.name): - s += " %s,\n" % indent(subfield, 2) - s += " ),\n" - s += ")," - return s - - -class ComponentFieldInfo(namedtuple('ComponentFieldInfo', ('name', 'num', 'scale', 'offset', 'units', 'bits', 'bit_offset', 'accumulate'))): - def __str__(self): - s = "ComponentField(\n" - s += " name='%s',\n" % self.name - s += " def_num=%d,\n" % (self.num if self.num is not None else 0) - if self.scale: - s += " scale=%s,\n" % self.scale - if self.offset: - s += " offset=%s,\n" % self.offset - if self.units: - s += " units=%s,\n" % repr(self.units) - s += " accumulate=%s,\n" % self.accumulate - s += " bits=%s,\n" % self.bits - s += " bit_offset=%s,\n" % self.bit_offset - s += ")" - return s - - -class SubFieldInfo(namedtuple('SubFieldInfo', ('name', 'num', 'type', 'scale', 'offset', 'units', 'ref_fields', 'components', 'comment'))): - def __str__(self): - s = "SubField(%s\n" % render_comment(self.comment) - s += " name='%s',\n" % self.name - s += " def_num=%s,\n" % self.num - s += " type=%s\n" % render_type(self.type) - if self.scale: - s += " scale=%s,\n" % self.scale - if self.offset: - s += " offset=%s,\n" % self.offset - if self.units: - s += " units=%s,\n" % repr(self.units) - s += " ref_fields=(\n" - for ref_field in self.ref_fields: # sorted(self.ref_fields, key=lambda rf: (rf.name, rf.value)): - s += " %s,\n" % indent(ref_field, 2) - s += " ),\n" - if self.components: - s += ' components=(\n' - # Leave components sorted as is (order matters because of bit layout) - for component in self.components: - s += " %s,\n" % indent(component, 2) - s += " ),\n" - s += ")" - return s - - -class ReferenceFieldInfo(namedtuple('ReferenceFieldInfo', ('name', 'value', 'num', 'raw_value'))): - def __str__(self): - s = 'ReferenceField(\n' - s += " name='%s',\n" % self.name - s += ' def_num=%d,\n' % self.num - s += " value='%s',\n" % self.value - s += ' raw_value=%d,\n' % self.raw_value - s += ')' - return s - - -def render_comment(comment): - if comment: - return ' # %s' % comment - return '' - - -def fix_scale(data): - if data == 1: - return None - return data - - -def fix_units(data): - if isinstance(data, str): - data = data.replace(' / ', '/') - data = data.replace(' * ', '*') - data = data.replace('(steps)', 'or steps') - data = data.strip() - return data - - -def parse_csv_fields(data, num_expected): - if data is None or data == '': - return [None] * num_expected - elif isinstance(data, str): - ret = [(int(x.strip()) if x.strip().isdigit() else x.strip()) for x in data.strip().split(',')] - else: - ret = [data] - - # Only len 1 but more were expected, extend it for all values - if len(ret) == 1 and num_expected: - return ret * num_expected - return ret - - -def parse_spreadsheet(xls_file, *sheet_names): - if isinstance(xls_file, str): - workbook = xlrd.open_workbook(xls_file) - else: - workbook = xlrd.open_workbook(file_contents=xls_file.read()) - - for sheet_name in sheet_names: - sheet = workbook.sheet_by_name(sheet_name) - - parsed_values = [] - - # Strip sheet header - for n in range(1, sheet.nrows): - values = [] - - row_values = sheet.row_values(n) - if sheet_name.lower() == 'messages': - # Only care about the first 14 rows for Messages - row_values = row_values[:14] - - for value in row_values: - if isinstance(value, str): - # Use strings for now. Unicode is wonky - value = value.strip().encode('ascii', 'ignore') - if value == '': - value = None - if isinstance(value, float): - if value.is_integer(): - value = int(value) - - values.append(value) - - if all(v is None for v in values): - continue - - parsed_values.append(values) - - yield parsed_values - - -def parse_types(types_rows): - type_list = TypeList([]) - - for row in types_rows: - if row[0]: - # First column means new type - type = TypeInfo( - name=row[0].decode(), base_type=row[1].decode(), values=[], comment=row[4].decode(), - ) - type_list.types.append(type) - assert type.name - assert type.base_type - - else: - # No first column means a value for this type - value = TypeValueInfo(name=row[2].decode(), value=maybe_decode(row[3]), comment=row[4].decode()) - - if value.name and value.value is not None: - # Don't add ignore keyed types - if "{}:{}".format(type.name, value.name) not in IGNORE_TYPE_VALUES: - type.values.append(value) - - # Add missing boolean type if it's not there - if not type_list.get('bool', raise_exception=False): - type_list.types.append(TypeInfo('bool', 'enum', [], None)) - - return type_list - - -def maybe_decode(o): - if isinstance(o, bytes): - return o.decode() - return o - - -def parse_messages(messages_rows, type_list): - message_list = MessageList([]) - - group_name = "" - for row in messages_rows: - if (row[3] is not None) and all(r == b'' for n, r in enumerate(row[:14]) if n != 3): - # Only row 3 means it's a group name - group_name = row[3].decode().title() - elif row[0] is not None and row[0] != b'': - # First row means a new message - name = row[0].decode() - message = MessageInfo( - name=name, num=type_list.get_mesg_num(name), - group_name=group_name, fields=[], comment=row[13].decode(), - ) - message_list.messages.append(message) - else: - # Get components if they exist - components = [] - component_names = parse_csv_fields(row[5].decode(), 0) - if component_names and (len(component_names) != 1 or component_names[0] != ''): - num_components = len(component_names) - components = [ - ComponentFieldInfo( - name=cmp_name, num=None, scale=fix_scale(cmp_scale), - offset=cmp_offset, units=fix_units(cmp_units), - bits=cmp_bits, bit_offset=None, accumulate=bool(cmp_accumulate), - ) - for cmp_name, cmp_scale, cmp_offset, cmp_units, cmp_bits, cmp_accumulate in zip( - component_names, # name - parse_csv_fields(maybe_decode(row[6]), num_components), # scale - parse_csv_fields(maybe_decode(row[7]), num_components), # offset - parse_csv_fields(maybe_decode(row[8]), num_components), # units - parse_csv_fields(maybe_decode(row[9]), num_components), # bits - parse_csv_fields(maybe_decode(row[10]), num_components), # accumulate - ) - ] - - assert len(components) == num_components - for component in components: - assert component.name - assert component.bits - - # Otherwise a field - # Not a subfield if first row has definition num - if row[1] is not None and row[1] != b'': - field = FieldInfo( - name=row[2].decode(), type=row[3].decode(), num=maybe_decode(row[1]), scale=fix_scale(row[6]), - offset=maybe_decode(row[7]), units=fix_units(row[8].decode()), components=[], - subfields=[], comment=row[13].decode(), - ) - - assert field.name - assert field.type - - # Add components if they exist - if components: - field.components.extend(components) - - # Wipe out scale, units, offset from field since components scale is None or b'' or is not digit - if row[6] is None or row[6] == b'' or not str(row[6]).isdigit(): - field = field._replace(scale=None, offset=None, units=None) - - message.fields.append(field) - elif row[2] != b'': - # Sub fields - subfield = SubFieldInfo( - name=row[2].decode(), num=field.num, type=row[3].decode(), scale=fix_scale(row[6]), - offset=maybe_decode(row[7]), units=fix_units(row[8].decode()), ref_fields=[], - components=[], comment=row[13].decode(), - ) - - ref_field_names = parse_csv_fields(row[11].decode(), 0) - assert ref_field_names - - if components: - subfield.components.extend(components) - # Wipe out scale, units, offset from field since it's a component - subfield = subfield._replace(scale=None, offset=None, units=None) - - subfield.ref_fields.extend( - ReferenceFieldInfo( - name=ref_field_name, value=ref_field_value, - num=None, raw_value=None, - ) - for ref_field_name, ref_field_value - in zip(ref_field_names, parse_csv_fields(row[12].decode(), 0)) - ) - - assert len(subfield.ref_fields) == len(ref_field_names) - if "alert_type" not in ref_field_names: - field.subfields.append(subfield) - - # Resolve reference fields for subfields and components - for message in message_list.messages: - for field in message.fields: - for sub_field in field.subfields: - for n, ref_field_info in enumerate(sub_field.ref_fields[:]): - ref_field = message.get(ref_field_info.name) - sub_field.ref_fields[n] = ref_field_info._replace( - num=ref_field.num, - # Get the type of the reference field, then get its numeric value - raw_value=type_list.get(ref_field.type).get(ref_field_info.value).value, - ) - bit_offset = 0 - for n, component in enumerate(sub_field.components[:]): - sub_field.components[n] = component._replace( - num=message.get(component.name).num, bit_offset=bit_offset - ) - bit_offset += component.bits - bit_offset = 0 - for n, component in enumerate(field.components[:]): - field.components[n] = component._replace( - num=message.get(component.name).num, bit_offset=bit_offset - ) - bit_offset += component.bits - - return message_list - - -def get_xls_and_version_from_zip(path): - archive = zipfile.ZipFile(path, 'r') - profile_version = None - - version_match = re.search( - r'Profile Version.+?(\d+\.?\d*).*', - archive.open('c/fit.h').read().decode(), - ) - if version_match: - profile_version = ("%f" % float(version_match.group(1))).rstrip('0').ljust(4, '0') - - try: - return archive.open('Profile.xls'), profile_version - except KeyError: - return archive.open('Profile.xlsx'), profile_version - - -def main(input_xls_or_zip, output_py_path=None): - if output_py_path and os.path.exists(output_py_path): - if not open(output_py_path).read().strip().startswith(PROFILE_HEADER_FIRST_PART): - print("Python file doesn't begin with appropriate header. Exiting.") - sys.exit(1) - - if open(input_xls_or_zip, 'rb').read().startswith(XLS_HEADER_MAGIC): - xls_file, profile_version = input_xls_or_zip, None - else: - xls_file, profile_version = get_xls_and_version_from_zip(input_xls_or_zip) - - types_rows, messages_rows = parse_spreadsheet(xls_file, 'Types', 'Messages') - type_list = parse_types(types_rows) - message_list = parse_messages(messages_rows, type_list) - - mesg_num_declarations = [] - for mesg_name in MESSAGE_NUM_DECLARATIONS: - mesg_info = message_list.get_by_name(mesg_name) - - mesg_num_declarations.append('MESG_NUM_{} = {}'.format( - scrub_symbol_name(mesg_name).upper(), - str(mesg_info.num) if mesg_info else 'None')) - - field_num_declarations = [ - 'FIELD_NUM_TIMESTAMP = ' + str(FIELD_NUM_TIMESTAMP)] - for field_fqn in FIELD_NUM_DECLARATIONS: - mesg_name, field_name = field_fqn.split('.', maxsplit=1) - mesg_info, field_info = message_list.get_field_by_name(mesg_name, field_name) - - field_decl = 'FIELD_NUM_{}_{} = {}'.format( - scrub_symbol_name(mesg_name).upper(), - scrub_symbol_name(field_name).upper(), - str(field_info.num)) - - field_num_declarations.append(field_decl) - - output = '\n'.join([ - "\n%s" % PROFILE_HEADER_FIRST_PART, - header('EXPORTED PROFILE FROM {} ON {}'.format( - ('SDK VERSION %s' % profile_version) if profile_version else 'SPREADSHEET', - datetime.datetime.now().strftime('%Y-%m-%d'), - )), - header('PARSED %d TYPES (%d VALUES), %d MESSAGES (%d FIELDS)' % ( - len(type_list.types), sum(len(ti.values) for ti in type_list.types), - len(message_list.messages), sum(len(mi.fields) for mi in message_list.messages), - )), - '', IMPORT_HEADER - ]) + '\n' - - if mesg_num_declarations: - output += '\n\n' + '\n'.join(mesg_num_declarations) + '\n' - if field_num_declarations: - output += '\n\n' + '\n'.join(field_num_declarations) + '\n' - - output += '\n\n' + '\n'.join([ - str(type_list), '\n', - SPECIAL_FIELD_DECLARATIONS, '\n', - str(message_list), '' - ]) - - # TODO: Apply an additional layer of monkey patching to match reference/component - # fields to actual field objects? Would clean up accesses to these - - if output_py_path: - open(output_py_path, 'w').write(output) - print('Profile version {} written to {}'.format( - profile_version if profile_version else '', - output_py_path)) - else: - print(output.strip()) - - -if __name__ == '__main__': - if len(sys.argv) < 2: - print("Usage: %s [profile.py]" % os.path.basename(__file__)) - sys.exit(0) - - xls = sys.argv[1] - profile = sys.argv[2] if len(sys.argv) >= 3 else None - main(xls, profile) diff --git a/scripts/unit_tool.py b/scripts/unit_tool.py deleted file mode 100755 index 0f66258..0000000 --- a/scripts/unit_tool.py +++ /dev/null @@ -1,62 +0,0 @@ -#!/usr/bin/env python - -# Tool for verifying sanity of units in Profile.xls / fitparse/profile.py - -import os -import sys - -import xlrd # Dev requirement for parsing Excel spreadsheet - -from fitparse.profile import MESSAGE_TYPES -from fitparse.utils import scrub_method_name - - -def do_profile_xls(): - workbook = xlrd.open_workbook(sys.argv[1]) - sheet = workbook.sheet_by_name('Messages') - - all_unit_values = [] - for unit_value in sheet.col_values(8): # Extract unit column values - unit_value = unit_value.strip() - if unit_value: - # Deal with comma separated components - unit_values = [v.strip() for v in unit_value.split(',')] - all_unit_values.extend(unit_values) - - print('In Profile.xls:') - for unit_value in sorted(set(all_unit_values)): - print(' * %s' % unit_value) - - -def do_fitparse_profile(): - unit_values = [] - for message_type in MESSAGE_TYPES.values(): - for field in message_type.fields.values(): - unit_values.append(field.units) - if field.components: - for component in field.components: - unit_values.append(component.units) - if field.subfields: - for subfield in field.subfields: - unit_values.append(subfield.units) - if subfield.components: - for component in subfield.components: - unit_values.append(component.units) - - unit_values = filter(None, unit_values) - - print('In fitparse/profile.py:') - for unit_value in sorted(set(unit_values)): - print(' * {} [{}]'.format( - unit_value, - scrub_method_name('process_units_%s' % unit_value, convert_units=True) - )) - -if __name__ == '__main__': - if len(sys.argv) < 2: - print(f"Usage: {os.path.basename(__file__)} Profile.xls") - sys.exit(0) - - do_profile_xls() - print() - do_fitparse_profile() diff --git a/search.html b/search.html new file mode 100644 index 0000000..538933d --- /dev/null +++ b/search.html @@ -0,0 +1,95 @@ + + + + + + + + Search — python-fitparse 1.1.0 documentation + + + + + + + + + + + + + + + + + + + +
+
+
+
+ +

Search

+
+ +

+ Please activate JavaScript to enable the search + functionality. +

+
+

+ Searching for multiple words only shows matches that contain + all words. +

+
+ + + +
+ +
+ +
+ +
+
+
+
+ +
+
+ + + + \ No newline at end of file diff --git a/searchindex.js b/searchindex.js new file mode 100644 index 0000000..d1caf61 --- /dev/null +++ b/searchindex.js @@ -0,0 +1 @@ +Search.setIndex({docnames:["api","index"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":3,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":2,"sphinx.domains.rst":2,"sphinx.domains.std":1,sphinx:56},filenames:["api.rst","index.rst"],objects:{"":{fitparse:[0,0,0,"-"]},"fitparse.DataMessage":{as_dict:[0,2,1,""],def_mesg:[0,3,1,""],fields:[0,3,1,""],get:[0,2,1,""],get_value:[0,2,1,""],get_values:[0,2,1,""],mesg_num:[0,3,1,""],mesg_type:[0,3,1,""],name:[0,3,1,""]},"fitparse.FitFile":{get_messages:[0,2,1,""],messages:[0,3,1,""],parse:[0,2,1,""],profile_version:[0,3,1,""],protocol_version:[0,3,1,""]},fitparse:{DataMessage:[0,1,1,""],FitFile:[0,1,1,""]}},objnames:{"0":["py","module","Python module"],"1":["py","class","Python class"],"2":["py","method","Python method"],"3":["py","attribute","Python attribute"]},objtypes:{"0":"py:module","1":"py:class","2":"py:method","3":"py:attribute"},terms:{"byte":0,"catch":0,"class":[0,1],"function":[0,1],"import":[0,1],"return":0,"throw":0,"true":0,"try":0,"while":0,AND:1,BUT:1,FOR:1,For:0,NOT:1,One:0,THE:1,The:1,These:0,USE:1,Use:0,WITH:1,abov:1,access:0,action:1,activ:1,after:0,all:[0,1],altern:0,altitud:0,ani:[0,1],ant:[0,1],argpars:1,aris:1,as_dict:0,associ:[0,1],attribut:0,author:1,befor:0,cadenc:0,call:0,carei:1,caught:0,charg:1,check_crc:0,claim:1,clone:1,close:0,cmetcalf:1,com:1,command:1,common:1,complet:0,comput:1,condit:1,connect:1,contain:0,contract:1,conveni:0,cooper:1,copi:1,copyright:1,crc:0,creat:0,current:[0,1],damag:1,data:[0,1],data_messag:0,data_processor:0,datamessag:0,datetim:0,dave:1,david:1,deal:1,declar:0,def:0,def_mesg:0,defin:0,definitionmessag:0,dict:0,directli:0,disabl:0,distanc:0,distribut:1,dtcooper:1,dure:0,easiest:1,edg:1,els:1,embed:1,encount:0,entri:1,equival:0,error:0,event:1,exampl:0,except:0,exist:0,exit:0,express:1,fals:0,field:[0,1],field_nam:0,fielddata:0,file:[0,1],file_obj:0,fileish:0,fit:[0,1],fitdump:1,fitfil:1,fitfiledataprocessor:0,fitparseerror:0,flexibl:1,follow:[0,1],forerunn:1,format:1,free:1,from:0,furnish:1,garmin:1,gener:0,get:[0,1],get_messag:[0,1],get_valu:0,git:1,going:0,grab:1,grade:0,grant:1,has:1,heart_rat:0,here:1,herebi:1,holder:1,home:1,immedi:0,implement:0,impli:1,includ:1,inform:1,instanc:0,interfac:0,intern:[0,1],interoper:1,invalid:0,its:[0,1],kind:1,latest:1,liabil:1,liabl:1,librari:1,like:0,limit:1,link:0,list:0,look:1,mai:0,main:0,map:0,meant:0,merchant:1,merg:1,mesg_num:0,mesg_typ:0,messag:[0,1],messagetyp:0,metcalf:1,method:1,mit:1,modifi:1,modul:1,name:[0,1],navig:1,need:1,none:0,noninfring:1,note:0,notic:1,number:0,object:1,obtain:1,one:0,onli:0,open:0,oper:0,other:1,otherwis:[0,1],out:1,packag:1,paramet:0,pars:[0,1],part:1,particular:1,path:0,permiss:1,permit:1,person:1,portion:1,position_lat:0,position_long:0,power:0,print:[0,1],processor:0,product:1,profil:0,profile_vers:0,program:1,properti:0,protocol:[0,1],protocol_vers:0,provid:[0,1],publish:1,purpos:1,rais:0,raw:0,raw_fit_data:0,read:0,record:1,record_data:1,relat:0,repres:0,represent:0,resist:0,restrict:1,result:0,right:1,sdk:[0,1],see:0,self:0,sell:1,seri:1,set:0,setup:1,shall:1,simpl:1,softwar:1,specif:1,specifi:[0,1],speed:0,standard:1,start:0,string:0,subject:1,sublicens:1,substanti:1,support:1,sys:0,temperatur:0,thi:[0,1],through:[0,1],time_from_cours:0,timestamp:0,todo:[0,1],tort:1,transfer:1,type:[0,1],underli:0,unit:1,updat:0,usag:0,use:[0,1],used:[0,1],using:1,usual:0,valid:0,valu:[0,1],version:[0,1],wai:[0,1],warranti:1,when:0,whether:1,whom:1,with_definit:0,without:1,work:0,wrap:0,you:[0,1]},titles:["The fitparse API Documentation","python-fitparse Documention"],titleterms:{The:0,Used:0,Using:1,api:[0,1],common:0,document:[0,1],exampl:1,fitfil:0,fitpars:[0,1],from:1,github:1,guid:1,instal:1,introduct:1,licens:1,object:0,pip:1,python:1,quickstart:1,record:0,requir:1,usag:1}}) \ No newline at end of file diff --git a/setup.py b/setup.py deleted file mode 100644 index ad51427..0000000 --- a/setup.py +++ /dev/null @@ -1,23 +0,0 @@ -from distutils.core import setup -import sys - -import fitparse - - -requires = None -if sys.version_info < (3, 6): - sys.exit("Python 3.6+ is required.") - - -setup( - name='fitparse', - version=fitparse.__version__, - description='Python library to parse ANT/Garmin .FIT files', - author='David Cooper', - author_email='dave@kupesoft.com', - url='https://www.github.com/dtcooper/python-fitparse', - license=open('LICENSE').read(), - packages=['fitparse'], - scripts=['scripts/fitdump'], # Don't include generate_profile.py - install_requires=requires, -) diff --git a/tests/api_examples.txt b/tests/api_examples.txt deleted file mode 100644 index 73133aa..0000000 --- a/tests/api_examples.txt +++ /dev/null @@ -1,37 +0,0 @@ -Imports - - >>> import os - >>> from fitparse import FitFile - -Read .FIT file and parse - - >>> fitfile_path = os.path.join('files', 'garmin-edge-500-activitiy.fit') - >>> fitfile = FitFile(fitfile_path) - >>> fitfile.parse() - -Test get_messages() - - >>> records = list(fitfile.get_messages(name='record')) - >>> print len(records) - 10686 - -Test API on an arbitrary DataMessage - - - >>> record = records[1234] - >>> for field in record: - ... print (field.name, field.value, field.units) - ('altitude', 128.0, 'm') - ('cadence', 0, 'rpm') - ('distance', 9027.49, 'm') - ('grade', None, '%') - ('heart_rate', 147, 'bpm') - ('position_lat', 522265991, 'semicircles') - ('position_long', -947288309, 'semicircles') - ('power', None, 'watts') - ('resistance', None, None) - ('speed', 8.431, 'm/s') - ('temperature', 19, 'C') - ('time_from_course', None, 's') - ('timestamp', datetime.datetime(2011, 9, 25, 13, 21, 29), None) - diff --git a/tests/doctests.py b/tests/doctests.py deleted file mode 100644 index 92ba66b..0000000 --- a/tests/doctests.py +++ /dev/null @@ -1,3 +0,0 @@ -import doctest - -doctest.testfile('api_examples.txt') diff --git a/tests/files/2013-02-06-12-11-14.fit b/tests/files/2013-02-06-12-11-14.fit deleted file mode 100644 index e674a8b..0000000 Binary files a/tests/files/2013-02-06-12-11-14.fit and /dev/null differ diff --git a/tests/files/2015-10-13-08-43-15.fit b/tests/files/2015-10-13-08-43-15.fit deleted file mode 100644 index 66e8f2f..0000000 Binary files a/tests/files/2015-10-13-08-43-15.fit and /dev/null differ diff --git a/tests/files/20170518-191602-1740899583.fit b/tests/files/20170518-191602-1740899583.fit deleted file mode 100644 index 67c8f5a..0000000 Binary files a/tests/files/20170518-191602-1740899583.fit and /dev/null differ diff --git a/tests/files/2019-02-17-062644-ELEMNT-297E-195-0.fit b/tests/files/2019-02-17-062644-ELEMNT-297E-195-0.fit deleted file mode 100644 index b9f0c00..0000000 Binary files a/tests/files/2019-02-17-062644-ELEMNT-297E-195-0.fit and /dev/null differ diff --git a/tests/files/Activity.fit b/tests/files/Activity.fit deleted file mode 100644 index b593523..0000000 Binary files a/tests/files/Activity.fit and /dev/null differ diff --git a/tests/files/DeveloperData.fit b/tests/files/DeveloperData.fit deleted file mode 100644 index 213d517..0000000 Binary files a/tests/files/DeveloperData.fit and /dev/null differ diff --git a/tests/files/Edge810-Vector-2013-08-16-15-35-10.fit b/tests/files/Edge810-Vector-2013-08-16-15-35-10.fit deleted file mode 100644 index 0cd216e..0000000 Binary files a/tests/files/Edge810-Vector-2013-08-16-15-35-10.fit and /dev/null differ diff --git a/tests/files/MonitoringFile.fit b/tests/files/MonitoringFile.fit deleted file mode 100644 index 2201b10..0000000 Binary files a/tests/files/MonitoringFile.fit and /dev/null differ diff --git a/tests/files/Settings.fit b/tests/files/Settings.fit deleted file mode 100644 index 13cd333..0000000 Binary files a/tests/files/Settings.fit and /dev/null differ diff --git a/tests/files/Settings2.fit b/tests/files/Settings2.fit deleted file mode 100644 index 49fb73a..0000000 Binary files a/tests/files/Settings2.fit and /dev/null differ diff --git a/tests/files/WeightScaleMultiUser.fit b/tests/files/WeightScaleMultiUser.fit deleted file mode 100644 index fbddbee..0000000 Binary files a/tests/files/WeightScaleMultiUser.fit and /dev/null differ diff --git a/tests/files/WeightScaleSingleUser.fit b/tests/files/WeightScaleSingleUser.fit deleted file mode 100644 index fe1d37a..0000000 Binary files a/tests/files/WeightScaleSingleUser.fit and /dev/null differ diff --git a/tests/files/WorkoutCustomTargetValues.fit b/tests/files/WorkoutCustomTargetValues.fit deleted file mode 100644 index e7cd2d6..0000000 Binary files a/tests/files/WorkoutCustomTargetValues.fit and /dev/null differ diff --git a/tests/files/WorkoutIndividualSteps.fit b/tests/files/WorkoutIndividualSteps.fit deleted file mode 100644 index ccea4cf..0000000 Binary files a/tests/files/WorkoutIndividualSteps.fit and /dev/null differ diff --git a/tests/files/WorkoutRepeatGreaterThanStep.fit b/tests/files/WorkoutRepeatGreaterThanStep.fit deleted file mode 100644 index c0152ff..0000000 Binary files a/tests/files/WorkoutRepeatGreaterThanStep.fit and /dev/null differ diff --git a/tests/files/WorkoutRepeatSteps.fit b/tests/files/WorkoutRepeatSteps.fit deleted file mode 100644 index 9bf6898..0000000 Binary files a/tests/files/WorkoutRepeatSteps.fit and /dev/null differ diff --git a/tests/files/activity-activity-filecrc.fit b/tests/files/activity-activity-filecrc.fit deleted file mode 100644 index b074e9a..0000000 Binary files a/tests/files/activity-activity-filecrc.fit and /dev/null differ diff --git a/tests/files/activity-filecrc.fit b/tests/files/activity-filecrc.fit deleted file mode 100644 index 6973b3c..0000000 Binary files a/tests/files/activity-filecrc.fit and /dev/null differ diff --git a/tests/files/activity-large-fenxi2-multisport.fit b/tests/files/activity-large-fenxi2-multisport.fit deleted file mode 100644 index a494c10..0000000 Binary files a/tests/files/activity-large-fenxi2-multisport.fit and /dev/null differ diff --git a/tests/files/activity-settings-corruptheader.fit b/tests/files/activity-settings-corruptheader.fit deleted file mode 100644 index 69a752d..0000000 Binary files a/tests/files/activity-settings-corruptheader.fit and /dev/null differ diff --git a/tests/files/activity-settings-nodata.fit b/tests/files/activity-settings-nodata.fit deleted file mode 100644 index 21e26ae..0000000 Binary files a/tests/files/activity-settings-nodata.fit and /dev/null differ diff --git a/tests/files/activity-settings.fit b/tests/files/activity-settings.fit deleted file mode 100644 index de1dff0..0000000 Binary files a/tests/files/activity-settings.fit and /dev/null differ diff --git a/tests/files/activity-small-fenix2-run.fit b/tests/files/activity-small-fenix2-run.fit deleted file mode 100644 index ac33210..0000000 Binary files a/tests/files/activity-small-fenix2-run.fit and /dev/null differ diff --git a/tests/files/activity-unexpected-eof.fit b/tests/files/activity-unexpected-eof.fit deleted file mode 100644 index 06f7ab2..0000000 Binary files a/tests/files/activity-unexpected-eof.fit and /dev/null differ diff --git a/tests/files/antfs-dump.63.fit b/tests/files/antfs-dump.63.fit deleted file mode 100644 index 77337cf..0000000 Binary files a/tests/files/antfs-dump.63.fit and /dev/null differ diff --git a/tests/files/compressed-speed-distance-records.csv b/tests/files/compressed-speed-distance-records.csv deleted file mode 100644 index 560c4ce..0000000 --- a/tests/files/compressed-speed-distance-records.csv +++ /dev/null @@ -1,755 +0,0 @@ -Timestamp, Heart Rate [bpm],Speed [m/s],Distance [m],Cadence [rpm] -17217869,93,3.54,0.0,null -17217874,104,3.55,14.25,88 -17217879,113,0.0,18.875,34 -17217884,111,1.66,25.1875,41 -17217889,119,3.12,42.0,87 -17217894,122,0.0,43.9375,53 -17217899,117,0.0,43.9375,0 -17217904,116,0.55,46.8125,0 -17217909,122,3.31,63.75,74 -17217914,131,2.91,80.25,87 -17217919,137,2.84,89.125,87 -17217924,141,2.59,106.3125,87 -17217929,143,2.52,118.3125,88 -17217934,144,2.49,130.1875,87 -17217939,145,0.0,134.75,69 -17217944,140,0.0,134.75,0 -17217949,134,0.51,134.75,12 -17217954,137,2.77,146.0,76 -17217959,143,2.64,163.6875,86 -17217964,145,2.51,175.125,87 -17217969,146,2.47,187.0625,88 -17217974,149,2.41,198.3125,88 -17217979,150,2.31,208.875,88 -17217984,149,2.24,219.8125,87 -17217989,150,1.39,228.0,43 -17217994,152,2.19,238.5625,75 -17217999,151,2.14,248.75,86 -17218004,149,2.12,259.0625,87 -17218009,150,2.08,268.9375,87 -17218014,150,2.03,278.8125,87 -17218019,149,2.03,289.1875,85 -17218024,151,1.97,299.125,81 -17218029,153,1.96,307.75,82 -17218034,151,2.0,319.6875,83 -17218039,150,1.98,329.3125,83 -17218044,151,1.96,339.25,83 -17218049,151,1.97,347.8125,84 -17218054,148,1.99,357.875,85 -17218059,144,2.02,368.125,85 -17218064,147,2.03,379.3125,86 -17218069,152,2.02,390.625,87 -17218074,153,0.0,396.75,87 -17218079,152,0.0,396.75,0 -17218084,148,0.0,396.75,0 -17218089,145,0.0,396.75,0 -17218094,139,0.0,396.75,0 -17218099,140,2.52,409.25,77 -17218104,143,2.45,421.125,85 -17218109,145,2.41,432.5625,86 -17218114,148,2.4,444.125,87 -17218119,152,2.33,456.375,87 -17218124,154,2.26,467.25,87 -17218129,156,2.21,477.6875,87 -17218134,158,2.14,487.8125,86 -17218139,160,2.09,497.8125,86 -17218144,161,2.07,508.0625,87 -17218149,160,2.05,519.5,86 -17218154,159,1.98,528.9375,85 -17218159,158,1.93,537.0,85 -17218164,158,1.92,546.875,85 -17218169,158,1.95,556.5625,85 -17218174,157,1.97,566.5625,86 -17218179,157,2.04,577.5,86 -17218184,157,2.47,592.375,85 -17218189,157,0.0,596.0625,34 -17218194,154,0.0,596.0625,0 -17218199,150,0.0,599.625,39 -17218204,147,0.0,599.625,0 -17218209,143,0.0,599.625,0 -17218214,137,0.33,600.8125,13 -17218219,137,2.35,612.5,80 -17218224,135,2.43,625.4375,85 -17218229,137,2.62,638.1875,85 -17218234,142,2.54,649.3125,87 -17218239,146,2.45,661.4375,86 -17218244,149,2.33,673.75,86 -17218249,151,2.25,684.375,87 -17218254,152,2.2,694.6875,87 -17218259,153,2.15,706.6875,87 -17218264,154,2.13,717.125,86 -17218269,155,2.12,727.5,85 -17218274,156,2.08,736.3125,85 -17218279,158,2.08,748.25,85 -17218284,159,2.21,760.0,85 -17218289,161,2.22,770.3125,86 -17218294,162,2.14,780.5625,86 -17218299,162,2.11,791.1875,86 -17218304,162,2.16,802.9375,86 -17218309,162,2.47,816.5625,85 -17218314,161,2.8,829.0,85 -17218319,161,2.82,842.75,85 -17218324,161,2.77,856.1875,85 -17218329,160,2.67,870.25,85 -17218334,157,2.45,881.875,86 -17218339,156,2.35,894.4375,85 -17218344,157,2.23,903.3125,85 -17218349,158,2.09,912.6875,85 -17218354,158,2.01,922.5625,85 -17218359,160,1.97,932.125,85 -17218364,164,1.92,942.1875,83 -17218369,165,1.89,951.125,82 -17218374,164,1.84,959.875,83 -17218379,166,1.79,969.375,84 -17218384,168,1.76,976.625,81 -17218389,170,1.67,985.3125,81 -17218394,170,1.38,990.0625,80 -17218399,170,0.93,993.125,81 -17218404,170,1.03,1000.75,82 -17218409,169,1.63,1009.6875,82 -17218414,168,1.72,1019.0,82 -17218419,167,1.12,1022.875,82 -17218424,167,0.85,1029.1875,82 -17218429,168,1.47,1037.75,83 -17218434,169,1.64,1045.0625,83 -17218439,168,1.66,1052.1875,84 -17218444,167,1.66,1061.8125,84 -17218449,167,1.64,1069.0,82 -17218454,168,1.56,1075.75,82 -17218459,169,0.75,1079.5625,82 -17218464,168,0.78,1083.75,77 -17218469,166,0.0,1083.75,24 -17218474,163,0.0,1083.75,0 -17218479,160,0.0,1083.75,0 -17218484,156,0.0,1083.75,0 -17218489,151,0.0,1083.75,0 -17218494,144,0.0,1083.75,0 -17218499,140,0.0,1083.75,0 -17218504,132,0.0,1083.75,0 -17218509,128,0.48,1087.0,21 -17218514,125,0.0,1087.375,17 -17218519,121,0.0,1087.375,0 -17218524,119,0.0,1087.375,0 -17218529,118,0.0,1087.375,0 -17218534,117,0.0,1087.375,0 -17218539,116,0.0,1087.375,0 -17218544,117,0.0,1087.375,0 -17218659,108,1.14,1092.5,24 -17218664,110,2.19,1103.6875,78 -17218669,121,2.12,1112.0625,84 -17218674,133,2.05,1121.9375,85 -17218679,142,2.04,1132.0,86 -17218684,148,1.98,1141.0625,87 -17218689,154,1.88,1152.8125,87 -17218694,158,0.0,1155.9375,51 -17218699,161,1.73,1165.5625,69 -17218704,159,1.81,1173.4375,84 -17218709,158,1.77,1182.1875,84 -17218714,160,1.75,1190.9375,84 -17218719,163,1.77,1199.8125,84 -17218724,166,1.75,1208.6875,83 -17218729,168,1.74,1217.125,84 -17218734,168,1.72,1225.5625,85 -17218739,168,1.71,1234.5,85 -17218744,167,1.24,1239.0,84 -17218749,167,0.93,1242.1875,83 -17218754,168,1.22,1250.5625,83 -17218759,169,1.57,1258.8125,84 -17218764,168,1.62,1268.1875,85 -17218769,168,1.64,1276.75,84 -17218774,167,1.64,1285.25,83 -17218779,167,1.64,1291.625,83 -17218784,167,0.86,1295.4375,83 -17218789,167,0.77,1299.3125,83 -17218794,166,0.75,1303.25,83 -17218799,167,0.78,1306.8125,83 -17218804,168,0.76,1310.5,83 -17218809,164,0.7,1313.25,83 -17218814,165,0.71,1317.0,83 -17218819,166,0.74,1321.125,82 -17218824,166,0.73,1325.0,81 -17218829,166,0.7,1328.1875,82 -17218834,166,0.68,1331.6875,82 -17218839,165,0.73,1336.1875,82 -17218844,165,0.89,1341.125,84 -17218849,163,0.89,1344.875,85 -17218854,164,0.81,1349.125,85 -17218859,165,0.88,1354.6875,84 -17218864,166,1.41,1363.125,84 -17218869,166,1.6,1372.0,83 -17218874,165,1.63,1380.3125,83 -17218879,165,1.64,1388.5,83 -17218884,166,1.64,1395.75,84 -17218889,166,1.68,1404.6875,84 -17218894,168,1.72,1414.75,84 -17218899,171,1.75,1423.9375,84 -17218904,171,1.74,1431.25,84 -17218909,172,1.72,1440.0,83 -17218914,170,1.71,1448.4375,84 -17218919,169,1.69,1456.5625,85 -17218924,171,1.65,1463.5625,85 -17218929,170,1.66,1472.125,84 -17218934,171,1.37,1477.8125,83 -17218939,170,0.79,1482.8125,82 -17218944,171,1.39,1491.0625,83 -17218949,170,1.61,1500.0,84 -17218954,171,1.68,1508.6875,84 -17218959,172,1.71,1517.625,84 -17218964,174,1.75,1526.6875,84 -17218969,175,1.78,1535.625,84 -17218974,176,1.82,1545.0,85 -17218979,176,1.86,1554.3125,86 -17218984,176,1.84,1563.4375,86 -17218989,177,1.88,1574.375,86 -17218994,175,1.92,1583.875,86 -17218999,175,1.95,1593.6875,87 -17219004,175,1.99,1603.8125,87 -17219009,176,2.16,1615.9375,87 -17219014,174,2.62,1630.3125,87 -17219019,174,2.3,1637.5625,87 -17219024,174,0.0,1641.625,55 -17219029,169,0.0,1641.625,0 -17219034,164,0.0,1641.625,0 -17219039,155,0.0,1641.625,0 -17219044,149,0.0,1641.625,0 -17219049,150,1.19,1648.625,36 -17219054,152,2.46,1655.25,74 -17219059,151,3.98,1678.0625,91 -17219064,146,0.0,1678.0625,0 -17219069,140,0.0,1678.0625,0 -17219074,137,0.0,1678.0625,0 -17219079,130,0.0,1678.0625,0 -17219084,125,0.0,1678.0625,0 -17219089,123,0.0,1678.0625,0 -17219094,122,0.0,1678.0625,0 -17219099,123,2.47,1689.75,45 -17219104,136,3.44,1707.375,89 -17219109,146,3.21,1722.125,91 -17219114,155,3.39,1741.25,91 -17219119,161,3.61,1761.0,91 -17219124,165,3.62,1778.5625,90 -17219129,167,3.69,1799.3125,89 -17219134,170,3.78,1818.375,89 -17219139,171,3.81,1836.25,89 -17219144,168,3.7,1852.875,89 -17219149,165,3.52,1871.4375,89 -17219154,164,3.49,1885.8125,90 -17219159,167,3.69,1906.3125,90 -17219164,169,3.72,1923.75,90 -17219169,171,3.7,1941.0625,90 -17219174,172,3.77,1964.375,90 -17219179,172,3.83,1985.3125,90 -17219184,173,3.79,2000.375,90 -17219189,173,3.79,2021.0,90 -17219194,173,3.81,2039.1875,90 -17219199,172,3.95,2061.1875,91 -17219204,172,4.24,2080.5,93 -17219209,174,4.28,2102.75,93 -17219214,174,3.99,2120.9375,90 -17219219,173,3.82,2141.3125,89 -17219224,174,3.73,2158.5625,89 -17219229,176,3.58,2177.4375,89 -17219234,174,3.49,2194.25,89 -17219239,174,3.48,2210.75,89 -17219244,174,3.46,2227.375,89 -17219249,174,3.42,2245.5,89 -17219254,174,3.33,2261.0625,89 -17219259,174,3.29,2279.0625,89 -17219264,172,3.25,2294.1875,89 -17219269,173,3.19,2309.4375,89 -17219274,173,3.29,2326.0625,89 -17219279,175,3.38,2340.4375,89 -17219284,177,3.41,2359.1875,89 -17219289,179,3.52,2377.125,89 -17219294,179,3.74,2398.0625,89 -17219299,179,3.74,2415.25,89 -17219304,178,3.58,2431.5,89 -17219309,180,3.38,2447.375,89 -17219314,180,3.24,2464.4375,88 -17219319,178,3.17,2482.25,88 -17219324,178,3.37,2498.75,88 -17219329,180,3.32,2511.5625,89 -17219334,180,3.14,2528.0625,89 -17219339,180,2.97,2542.0625,89 -17219344,177,2.95,2558.5,89 -17219349,179,2.95,2570.6875,88 -17219354,179,2.96,2588.5,89 -17219359,179,2.97,2602.875,90 -17219364,180,3.02,2619.5625,90 -17219369,182,3.0,2634.125,89 -17219374,181,3.08,2649.0625,89 -17219379,182,3.07,2663.6875,89 -17219384,183,3.0,2681.875,89 -17219389,183,3.04,2696.625,89 -17219394,184,3.0,2710.125,89 -17219399,185,2.87,2723.0625,89 -17219404,184,2.74,2737.3125,89 -17219409,185,2.69,2748.125,89 -17219414,186,2.62,2760.25,89 -17219419,186,2.61,2775.0,89 -17219424,186,2.9,2789.8125,89 -17219429,186,2.96,2803.8125,89 -17219434,186,2.88,2818.9375,89 -17219439,186,2.87,2832.8125,89 -17219444,185,2.85,2847.875,89 -17219449,185,2.78,2860.75,89 -17219454,185,2.74,2873.6875,89 -17219459,185,2.73,2888.6875,89 -17219464,185,2.85,2903.4375,89 -17219469,184,3.09,2918.5,89 -17219474,184,3.06,2934.5,89 -17219479,183,2.9,2949.1875,89 -17219484,182,2.75,2961.375,89 -17219489,181,2.59,2972.625,89 -17219494,181,2.44,2983.9375,89 -17219499,180,2.43,2993.875,89 -17219504,179,2.37,3007.75,89 -17219509,180,2.3,3018.375,89 -17219514,179,2.25,3029.0,89 -17219519,176,2.29,3044.0625,89 -17219524,173,2.51,3056.875,89 -17219529,174,2.65,3070.4375,89 -17219534,175,2.79,3084.0625,89 -17219539,174,2.85,3098.25,89 -17219544,174,3.09,3114.0,89 -17219549,174,3.19,3131.75,89 -17219554,173,3.35,3148.5625,89 -17219559,172,3.4,3164.5625,89 -17219564,172,3.35,3179.875,89 -17219569,171,3.15,3196.1875,89 -17219574,170,3.0,3212.0,89 -17219579,171,2.96,3226.0,89 -17219584,170,2.94,3239.875,89 -17219589,170,2.93,3254.0,89 -17219594,170,2.9,3269.3125,89 -17219599,168,2.78,3279.9375,89 -17219604,167,1.66,3287.875,31 -17219609,166,3.5,3307.875,84 -17219614,165,3.64,3324.9375,90 -17219619,166,3.64,3341.8125,91 -17219624,165,3.53,3360.5625,90 -17219629,166,3.51,3377.0625,90 -17219634,167,3.56,3392.4375,90 -17219639,166,3.72,3413.75,90 -17219644,167,3.82,3431.625,90 -17219649,169,3.69,3448.625,90 -17219654,169,3.66,3468.8125,90 -17219659,168,3.69,3488.625,89 -17219664,166,3.54,3507.375,89 -17219669,165,3.53,3522.0625,89 -17219674,165,3.52,3540.9375,89 -17219679,166,3.47,3557.5625,89 -17219684,166,3.46,3573.875,89 -17219689,165,3.5,3590.625,89 -17219694,165,3.53,3609.75,90 -17219699,166,3.62,3630.0,90 -17219704,166,3.64,3647.1875,90 -17219709,165,3.62,3666.5,90 -17219714,165,3.56,3683.0,90 -17219719,167,3.49,3699.0625,90 -17219724,169,3.39,3717.0,90 -17219729,170,3.35,3732.625,90 -17219734,170,3.33,3750.6875,90 -17219739,169,3.3,3766.0,90 -17219744,169,3.29,3784.6875,90 -17219749,171,3.66,3802.5625,90 -17219754,172,3.75,3822.5,91 -17219759,174,3.68,3839.375,90 -17219764,175,3.58,3853.0625,90 -17219769,176,3.35,3871.125,89 -17219774,177,3.36,3886.9375,89 -17219779,178,3.24,3901.875,89 -17219784,178,3.2,3918.75,89 -17219789,177,3.14,3933.8125,89 -17219794,175,3.26,3947.9375,89 -17219799,176,3.44,3969.125,89 -17219804,176,3.45,3987.8125,89 -17219809,177,3.43,4003.8125,90 -17219814,177,3.33,4019.0,90 -17219819,175,3.22,4033.875,89 -17219824,174,3.14,4050.6875,89 -17219829,172,3.09,4068.125,88 -17219834,173,3.09,4082.1875,88 -17219839,174,2.89,4094.75,89 -17219844,175,2.68,4106.9375,89 -17219849,175,2.55,4118.4375,88 -17219854,173,2.38,4129.75,87 -17219859,173,2.42,4144.3125,87 -17219864,176,2.53,4155.3125,87 -17219869,177,2.54,4170.9375,87 -17219874,180,2.48,4182.9375,87 -17219879,182,2.47,4195.0625,87 -17219884,183,2.51,4207.5625,87 -17219889,183,2.69,4222.125,87 -17219894,182,3.07,4233.1875,87 -17219899,182,3.06,4251.8125,88 -17219904,180,3.11,4267.25,88 -17219909,180,3.12,4281.9375,88 -17219914,178,3.12,4298.9375,89 -17219919,176,3.2,4314.875,90 -17219924,175,3.31,4333.3125,90 -17219929,174,3.43,4352.3125,90 -17219934,174,3.61,4369.8125,91 -17219939,173,3.81,4389.75,93 -17219944,172,3.81,4409.4375,94 -17219949,171,3.62,4425.75,92 -17219954,170,3.54,4444.25,91 -17219959,169,3.44,4462.25,89 -17219964,169,3.35,4477.875,89 -17219969,170,3.37,4493.625,90 -17219974,170,3.3,4510.9375,90 -17219979,171,3.2,4525.75,89 -17219984,168,3.14,4540.9375,88 -17219989,167,3.11,4553.625,88 -17219994,167,3.01,4567.625,88 -17219999,168,2.97,4584.0,88 -17220004,171,2.89,4597.8125,87 -17220009,172,2.92,4614.75,87 -17220014,174,3.12,4630.5,87 -17220019,175,3.2,4648.6875,87 -17220024,174,3.26,4662.4375,88 -17220029,174,3.44,4681.9375,89 -17220034,175,3.63,4699.0,90 -17220039,176,3.81,4719.5,92 -17220044,175,3.85,4736.9375,92 -17220049,174,3.63,4755.75,91 -17220054,174,3.37,4771.9375,91 -17220059,175,3.01,4785.625,91 -17220064,176,2.89,4798.625,90 -17220069,177,2.8,4813.75,89 -17220074,179,2.77,4826.8125,89 -17220079,180,2.68,4838.875,89 -17220084,180,2.61,4851.3125,89 -17220089,180,1.66,4860.25,61 -17220094,178,2.77,4872.875,84 -17220099,179,2.59,4884.6875,88 -17220104,180,2.53,4896.5,88 -17220109,181,2.47,4908.625,87 -17220114,183,2.48,4920.6875,87 -17220119,184,2.52,4933.5625,87 -17220124,184,2.54,4945.75,87 -17220129,185,2.51,4957.875,88 -17220134,185,2.77,4972.5,88 -17220139,185,3.09,4989.875,88 -17220144,184,3.14,5007.25,89 -17220149,184,3.12,5023.5,89 -17220154,184,2.95,5034.6875,89 -17220159,183,2.73,5049.0,89 -17220164,181,2.71,5062.8125,88 -17220169,182,2.89,5077.0,89 -17220174,180,2.87,5090.5,89 -17220179,179,2.85,5104.625,88 -17220184,176,3.13,5123.0625,88 -17220189,175,3.64,5143.5625,89 -17220194,177,3.71,5160.5625,90 -17220199,177,3.56,5178.4375,90 -17220204,178,3.0,5191.0,90 -17220209,175,2.71,5203.5,90 -17220214,175,2.68,5216.9375,89 -17220219,175,2.73,5231.75,88 -17220224,175,2.65,5245.5625,89 -17220229,173,2.56,5257.6875,89 -17220234,172,2.59,5270.6875,89 -17220239,175,2.78,5285.5,89 -17220244,177,3.15,5303.0625,89 -17220249,179,3.26,5316.6875,90 -17220254,178,3.25,5333.9375,90 -17220259,178,3.16,5348.4375,90 -17220264,178,2.97,5361.3125,90 -17220269,180,2.58,5374.875,89 -17220274,179,2.48,5385.9375,89 -17220279,180,2.35,5396.9375,87 -17220284,181,2.3,5409.6875,87 -17220289,181,2.27,5420.375,87 -17220294,183,2.22,5430.875,87 -17220299,184,2.18,5439.75,87 -17220304,184,2.15,5451.5,87 -17220309,184,2.11,5461.5,87 -17220314,184,2.06,5472.9375,87 -17220319,185,2.07,5483.1875,87 -17220324,185,2.08,5493.625,87 -17220329,185,2.09,5503.8125,87 -17220334,186,2.09,5514.125,87 -17220339,186,2.09,5525.6875,87 -17220344,186,2.05,5532.5625,87 -17220349,186,2.05,5544.375,87 -17220354,186,2.11,5557.75,87 -17220359,185,2.1,5567.75,87 -17220364,184,2.1,5579.125,87 -17220369,183,2.22,5588.0625,81 -17220374,181,1.01,5590.5,36 -17220379,180,1.74,5601.0625,64 -17220384,177,1.78,5607.5,74 -17220389,174,0.0,5609.8125,46 -17220394,169,0.68,5613.0,34 -17220399,166,1.84,5624.625,81 -17220404,163,2.71,5639.0,86 -17220409,160,3.04,5656.75,88 -17220414,159,3.28,5675.125,88 -17220419,158,3.27,5690.1875,88 -17220424,155,3.2,5705.0,89 -17220429,153,2.93,5717.5,89 -17220434,153,1.85,5723.875,77 -17220439,155,1.81,5734.0625,80 -17220444,156,2.27,5747.8125,86 -17220449,157,2.42,5760.125,86 -17220454,158,2.44,5773.6875,86 -17220459,159,2.42,5785.4375,87 -17220464,160,2.4,5797.0625,87 -17220469,163,2.55,5811.0,87 -17220474,167,2.86,5823.6875,87 -17220479,170,2.89,5839.1875,87 -17220484,171,2.8,5851.75,88 -17220489,171,2.71,5865.1875,88 -17220494,172,3.38,5887.6875,88 -17220499,173,3.78,5905.25,90 -17220504,175,3.86,5925.75,92 -17220509,176,3.84,5942.375,93 -17220514,176,3.77,5961.0,95 -17220519,176,3.9,5980.6875,97 -17220524,175,4.08,6003.0625,100 -17220529,175,4.12,6023.375,101 -17220534,175,4.16,6043.9375,100 -17220539,174,4.24,6068.3125,99 -17220544,174,4.26,6087.0,96 -17220549,175,4.14,6107.9375,95 -17220554,176,4.05,6128.1875,94 -17220559,177,3.92,6145.4375,94 -17220564,176,3.82,6164.5625,94 -17220569,175,3.78,6184.375,94 -17220574,171,3.81,6203.8125,94 -17220579,168,3.84,6224.25,95 -17220584,169,3.93,6244.375,95 -17220589,172,3.88,6262.0625,94 -17220594,175,3.98,6283.6875,94 -17220599,177,3.98,6298.5625,93 -17220604,180,3.8,6318.375,93 -17220609,181,3.87,6338.9375,93 -17220614,181,3.79,6355.8125,93 -17220619,182,3.85,6376.8125,93 -17220624,182,3.91,6397.4375,93 -17220629,182,3.95,6415.75,93 -17220634,181,3.92,6435.8125,93 -17220639,178,3.9,6456.25,93 -17220644,178,3.99,6471.75,94 -17220649,179,4.02,6498.0625,94 -17220654,178,4.1,6518.0625,95 -17220659,178,3.96,6535.9375,95 -17220664,177,3.89,6554.8125,95 -17220669,176,3.86,6577.3125,95 -17220674,176,3.85,6591.8125,95 -17220679,175,4.22,6619.25,96 -17220684,176,4.1,6636.5625,95 -17220689,176,3.88,6656.125,94 -17220694,177,3.54,6671.9375,93 -17220699,179,3.65,6694.75,93 -17220704,182,3.78,6712.1875,93 -17220709,185,3.75,6731.5,93 -17220714,184,3.66,6747.6875,93 -17220719,183,3.67,6767.5,92 -17220724,184,3.66,6784.25,92 -17220729,186,3.72,6804.875,92 -17220734,185,3.83,6822.6875,92 -17220739,183,3.79,6839.75,92 -17220744,182,3.84,6860.625,92 -17220749,181,3.9,6878.4375,93 -17220754,181,3.84,6897.875,93 -17220759,182,3.87,6918.75,93 -17220764,183,4.07,6940.6875,93 -17220769,184,4.06,6961.375,93 -17220774,184,3.79,6977.75,93 -17220779,182,3.66,6997.1875,93 -17220784,182,3.58,7013.125,92 -17220789,184,3.41,7030.5625,92 -17220794,186,3.16,7044.5,91 -17220799,188,3.01,7060.0,91 -17220804,187,2.91,7073.3125,90 -17220809,188,2.86,7088.625,90 -17220814,188,2.83,7102.5,90 -17220819,189,2.95,7117.75,89 -17220824,189,3.12,7134.625,89 -17220829,189,3.14,7147.9375,89 -17220834,189,3.28,7166.5,90 -17220839,188,3.35,7185.25,90 -17220844,187,3.6,7200.625,90 -17220849,187,3.73,7222.9375,91 -17220854,185,3.77,7235.375,93 -17220859,184,3.91,7263.25,94 -17220864,183,4.01,7281.1875,95 -17220869,182,4.07,7302.375,96 -17220874,182,4.15,7324.1875,95 -17220879,181,4.1,7342.4375,94 -17220884,180,4.05,7363.25,94 -17220889,180,4.02,7381.5625,94 -17220894,180,4.11,7406.0625,94 -17220899,180,4.1,7425.0,93 -17220904,181,4.1,7446.25,93 -17220909,181,4.02,7464.3125,93 -17220914,181,3.96,7484.6875,93 -17220919,181,3.9,7504.625,93 -17220924,181,3.92,7523.375,93 -17220929,181,4.02,7547.375,93 -17220934,183,3.99,7565.3125,93 -17220939,184,3.88,7584.9375,93 -17220944,182,3.65,7601.0,92 -17220949,181,3.56,7618.0625,91 -17220954,183,3.62,7637.9375,91 -17220959,184,3.7,7653.0,91 -17220964,185,3.73,7673.4375,91 -17220969,184,3.82,7691.5625,91 -17220974,184,3.79,7711.5,91 -17220979,185,3.78,7734.75,90 -17220984,184,3.74,7751.625,90 -17220989,184,3.57,7766.25,89 -17220994,184,3.56,7785.4375,89 -17220999,184,3.47,7801.5625,89 -17221004,185,3.46,7817.875,89 -17221009,185,3.43,7831.5625,90 -17221014,184,3.47,7850.5,90 -17221019,185,3.45,7869.0,90 -17221024,185,3.43,7887.375,90 -17221029,185,3.38,7905.125,90 -17221034,185,3.34,7921.125,90 -17221039,183,3.3,7936.4375,90 -17221044,182,3.31,7954.9375,89 -17221049,183,3.34,7971.0,89 -17221054,184,3.31,7988.8125,89 -17221059,185,3.27,8004.625,89 -17221064,186,3.36,8021.1875,89 -17221069,186,3.37,8039.5,89 -17221074,186,3.31,8054.875,89 -17221079,186,3.2,8067.375,89 -17221084,187,3.18,8084.5,89 -17221089,187,2.93,8097.75,89 -17221094,187,3.02,8113.4375,89 -17221099,186,3.27,8129.9375,89 -17221104,186,3.33,8148.6875,89 -17221109,186,3.46,8165.875,89 -17221114,185,3.57,8183.375,89 -17221119,185,3.63,8203.375,90 -17221124,183,3.68,8223.125,90 -17221129,184,3.67,8240.0625,90 -17221134,183,3.57,8258.75,90 -17221139,183,3.51,8274.9375,90 -17221144,183,3.45,8291.0625,90 -17221149,183,3.38,8309.625,90 -17221154,182,3.59,8329.0625,90 -17221159,182,3.61,8346.5625,90 -17221164,183,3.72,8367.0625,90 -17221169,183,3.81,8384.75,91 -17221174,182,3.86,8405.5,92 -17221179,181,3.94,8423.9375,93 -17221184,181,3.98,8442.375,93 -17221189,181,4.0,8465.875,93 -17221194,181,3.89,8486.1875,92 -17221199,180,3.9,8504.0625,92 -17221204,180,3.95,8524.625,93 -17221209,179,3.9,8542.1875,93 -17221214,177,3.78,8561.4375,93 -17221219,178,3.76,8578.625,93 -17221224,177,3.74,8598.0,93 -17221229,177,3.71,8614.5,94 -17221234,178,3.95,8635.0,95 -17221239,178,4.15,8656.8125,96 -17221244,179,4.11,8677.25,94 -17221249,179,4.02,8697.75,94 -17221254,179,3.95,8718.0,93 -17221259,179,3.95,8738.625,93 -17221264,178,3.99,8756.75,95 -17221269,178,3.99,8777.3125,94 -17221274,178,4.0,8798.625,94 -17221279,178,4.16,8817.6875,94 -17221284,179,4.13,8840.5625,94 -17221289,179,3.9,8858.125,93 -17221294,180,3.87,8878.375,93 -17221299,180,3.92,8898.9375,94 -17221304,180,3.87,8915.75,93 -17221309,180,3.72,8934.4375,93 -17221314,179,3.62,8950.875,92 -17221319,179,3.64,8968.4375,92 -17221324,179,3.96,8990.0625,92 -17221329,180,4.01,9013.25,93 -17221334,181,4.02,9031.75,93 -17221339,181,4.03,9052.3125,93 -17221344,181,3.96,9067.75,93 -17221349,181,3.99,9091.125,93 -17221354,180,3.95,9109.0625,93 -17221359,178,3.88,9128.875,93 -17221364,178,3.84,9146.4375,93 -17221369,180,3.77,9165.5625,93 -17221374,181,3.68,9182.3125,92 -17221379,183,3.68,9204.875,92 -17221384,183,3.71,9221.1875,92 -17221389,184,3.34,9238.0625,91 -17221394,185,3.29,9254.125,91 -17221399,186,3.31,9269.625,91 -17221404,186,3.28,9287.5625,91 -17221409,187,3.39,9306.4375,91 -17221414,187,3.49,9323.5625,91 -17221419,187,3.55,9342.4375,91 -17221424,187,3.59,9359.875,91 -17221429,187,3.6,9378.875,91 -17221434,187,3.6,9395.75,91 -17221439,187,3.59,9412.4375,91 -17221444,187,3.57,9426.75,91 -17221449,187,3.56,9445.8125,91 -17221454,186,3.71,9466.4375,91 -17221459,186,3.7,9483.0625,91 -17221464,185,3.61,9501.75,91 -17221469,185,3.51,9521.875,91 -17221474,184,3.35,9535.4375,91 -17221479,184,3.57,9555.4375,91 -17221484,185,3.65,9572.625,91 -17221489,183,3.8,9593.25,91 -17221494,182,3.84,9613.4375,93 -17221499,182,3.84,9630.8125,93 -17221504,181,3.56,9648.4375,92 -17221509,182,3.15,9664.0,92 -17221514,184,2.99,9678.5,90 -17221519,185,3.52,9698.875,90 -17221524,187,3.65,9714.875,91 -17221529,187,3.47,9730.625,91 -17221534,186,3.42,9749.0,91 -17221539,187,3.31,9765.5,91 -17221544,187,2.92,9778.375,91 -17221549,187,2.81,9793.25,91 -17221554,187,2.81,9806.5625,91 -17221559,188,2.82,9821.75,91 -17221564,188,2.82,9835.1875,91 -17221569,189,2.91,9849.3125,91 -17221574,189,2.99,9864.0,91 -17221579,189,3.06,9880.0,91 -17221584,189,3.02,9894.0,91 -17221589,188,2.96,9907.4375,91 -17221594,188,2.88,9922.375,91 -17221599,188,2.87,9933.9375,91 -17221604,188,2.79,9950.375,90 -17221609,188,3.06,9969.0,88 -17221614,187,3.67,9986.625,90 -17221619,187,3.72,10006.25,91 -17221624,185,3.79,10024.0,92 -17221629,184,3.8,10043.875,93 -17221634,183,3.73,10060.8125,93 -17221639,183,3.78,10083.75,93 -17221644,182,3.88,10104.1875,93 -17221649,182,3.96,10122.375,94 -17221654,182,3.99,10142.6875,94 -17221659,181,3.96,10163.0,94 -17221664,181,3.86,10179.6875,94 -17221669,181,3.74,10195.625,94 -17221674,179,3.38,10213.9375,91 -17221679,177,3.66,10234.9375,92 -17221684,177,2.59,10242.0625,84 -17221689,177,0.56,10244.4375,58 -17221694,175,0.0,10246.25,51 -17221699,173,0.0,10246.25,0 -17221704,169,0.0,10246.25,0 -17221709,166,0.0,10246.25,0 -17221714,164,0.0,10246.25,0 -17221719,162,0.0,10248.6875,14 -17221724,157,0.0,10248.6875,0 -17221729,153,0.0,10248.6875,0 -17221734,150,0.0,10248.6875,0 -17221739,130,0.0,10248.6875,0 -17221744,118,0.0,10248.6875,0 diff --git a/tests/files/compressed-speed-distance.fit b/tests/files/compressed-speed-distance.fit deleted file mode 100644 index e92439a..0000000 Binary files a/tests/files/compressed-speed-distance.fit and /dev/null differ diff --git a/tests/files/coros-pace-2-cycling-misaligned-fields.fit b/tests/files/coros-pace-2-cycling-misaligned-fields.fit deleted file mode 100644 index ae824ab..0000000 Binary files a/tests/files/coros-pace-2-cycling-misaligned-fields.fit and /dev/null differ diff --git a/tests/files/developer-types-sample.fit b/tests/files/developer-types-sample.fit deleted file mode 100644 index 7915c90..0000000 Binary files a/tests/files/developer-types-sample.fit and /dev/null differ diff --git a/tests/files/elemnt-bolt-no-application-id-inside-developer-data-id.fit b/tests/files/elemnt-bolt-no-application-id-inside-developer-data-id.fit deleted file mode 100644 index 810004b..0000000 Binary files a/tests/files/elemnt-bolt-no-application-id-inside-developer-data-id.fit and /dev/null differ diff --git a/tests/files/event_timestamp.fit b/tests/files/event_timestamp.fit deleted file mode 100644 index 3ecc523..0000000 Binary files a/tests/files/event_timestamp.fit and /dev/null differ diff --git a/tests/files/garmin-edge-500-activity-records.csv b/tests/files/garmin-edge-500-activity-records.csv deleted file mode 100644 index 864f6d6..0000000 --- a/tests/files/garmin-edge-500-activity-records.csv +++ /dev/null @@ -1,10687 +0,0 @@ -timestamp,heart_rate,cadence,speed,distance,position_lat,position_long,altitude,temperature -Sun Sep 25 06:00:22 PDT 2011,161,71,5.888,0.0,521521093,-946874053,75.2,21 -Sun Sep 25 06:00:23 PDT 2011,161,72,6.019,6.01,521520850,-946875435,75.2,21 -Sun Sep 25 06:00:24 PDT 2011,162,73,6.086,13.58,521520550,-946876846,75.2,21 -Sun Sep 25 06:00:25 PDT 2011,162,72,6.173,18.25,521520319,-946877612,75.2,21 -Sun Sep 25 06:00:26 PDT 2011,162,71,6.12,24.37,521520089,-946878437,75.2,21 -Sun Sep 25 06:00:27 PDT 2011,162,70,6.002,30.37,521519882,-946879119,75.2,21 -Sun Sep 25 06:00:28 PDT 2011,162,70,5.953,36.33,521519718,-946879641,75.2,21 -Sun Sep 25 06:00:29 PDT 2011,162,70,5.936,42.26,521519520,-946880398,75.2,21 -Sun Sep 25 06:00:30 PDT 2011,161,73,5.986,48.25,521519340,-946881133,75.2,21 -Sun Sep 25 06:00:31 PDT 2011,161,74,6.138,54.39,521519166,-946881894,75.2,21 -Sun Sep 25 06:00:32 PDT 2011,160,77,6.298,60.68,521519037,-946882707,75.2,21 -Sun Sep 25 06:00:33 PDT 2011,160,77,6.428,67.11,521518934,-946883579,75.2,21 -Sun Sep 25 06:00:34 PDT 2011,160,79,6.544,73.66,521518792,-946884530,75.2,21 -Sun Sep 25 06:00:35 PDT 2011,160,80,6.645,80.58,521518606,-946885572,75.2,21 -Sun Sep 25 06:00:36 PDT 2011,160,81,6.79,87.09,521518415,-946886569,75.2,21 -Sun Sep 25 06:00:37 PDT 2011,160,77,6.854,93.94,521518216,-946887554,75.2,21 -Sun Sep 25 06:00:38 PDT 2011,159,75,6.833,100.77,521517978,-946888663,75.2,21 -Sun Sep 25 06:00:39 PDT 2011,159,79,7.032,107.8,521517731,-946889791,75.2,21 -Sun Sep 25 06:00:40 PDT 2011,159,79,7.267,115.07,521517482,-946890574,75.2,21 -Sun Sep 25 06:00:41 PDT 2011,158,80,7.365,122.44,521517229,-946891260,75.2,21 -Sun Sep 25 06:00:42 PDT 2011,159,81,7.544,129.98,521516954,-946892165,75.2,21 -Sun Sep 25 06:00:43 PDT 2011,158,81,7.544,137.52,521516715,-946893081,75.2,21 -Sun Sep 25 06:00:44 PDT 2011,159,82,7.486,145.01,521516467,-946894195,75.2,21 -Sun Sep 25 06:00:45 PDT 2011,158,82,7.566,152.58,521516249,-946895362,75.2,21 -Sun Sep 25 06:00:46 PDT 2011,158,76,7.566,160.14,521516042,-946896498,75.2,21 -Sun Sep 25 06:00:47 PDT 2011,158,74,7.566,167.71,521515835,-946897650,75.2,21 -Sun Sep 25 06:00:48 PDT 2011,158,74,7.592,175.3,521515608,-946898907,75.2,21 -Sun Sep 25 06:00:49 PDT 2011,157,73,7.512,182.81,521515401,-946900078,75.2,21 -Sun Sep 25 06:00:50 PDT 2011,157,72,7.486,190.3,521515194,-946901247,75.2,21 -Sun Sep 25 06:00:51 PDT 2011,157,72,7.408,197.71,521514990,-946902344,75.2,21 -Sun Sep 25 06:00:52 PDT 2011,157,72,7.408,205.14,521514779,-946903380,75.2,21 -Sun Sep 25 06:00:53 PDT 2011,156,0,7.066,212.18,521514573,-946904355,75.2,21 -Sun Sep 25 06:00:54 PDT 2011,155,0,6.84,219.02,521514351,-946905290,75.2,21 -Sun Sep 25 06:00:55 PDT 2011,154,0,6.588,225.61,521514149,-946906141,75.2,21 -Sun Sep 25 06:00:56 PDT 2011,152,0,6.353,231.96,521513931,-946907081,75.2,21 -Sun Sep 25 06:00:57 PDT 2011,150,0,6.065,238.03,521513742,-946907975,75.2,21 -Sun Sep 25 06:00:58 PDT 2011,149,0,5.964,243.99,521513599,-946908717,75.2,21 -Sun Sep 25 06:00:59 PDT 2011,149,0,5.802,249.79,521513472,-946909426,75.2,21 -Sun Sep 25 06:01:00 PDT 2011,148,0,5.533,255.36,521513334,-946910176,75.2,21 -Sun Sep 25 06:01:01 PDT 2011,148,0,5.201,260.53,521513243,-946910780,75.2,21 -Sun Sep 25 06:01:02 PDT 2011,147,0,4.344,264.87,521513149,-946911366,75.2,21 -Sun Sep 25 06:01:03 PDT 2011,146,0,3.97,268.84,521513071,-946911848,75.2,21 -Sun Sep 25 06:01:04 PDT 2011,144,0,3.154,272.0,521513017,-946912207,75.2,21 -Sun Sep 25 06:01:05 PDT 2011,141,0,2.616,274.61,521512973,-946912423,75.2,21 -Sun Sep 25 06:01:06 PDT 2011,139,0,2.232,276.85,521512924,-946912661,75.2,21 -Sun Sep 25 06:01:07 PDT 2011,137,0,2.045,278.89,521512864,-946912907,75.2,21 -Sun Sep 25 06:01:08 PDT 2011,136,0,1.819,280.71,521512811,-946913172,75.2,21 -Sun Sep 25 06:01:09 PDT 2011,136,0,1.889,282.6,521512762,-946913471,75.2,21 -Sun Sep 25 06:01:10 PDT 2011,137,24,2.098,284.7,521512666,-946913903,75.2,21 -Sun Sep 25 06:01:11 PDT 2011,138,38,2.664,287.36,521512566,-946914358,75.2,21 -Sun Sep 25 06:01:12 PDT 2011,141,38,3.624,290.98,521512491,-946914945,75.2,21 -Sun Sep 25 06:01:13 PDT 2011,142,43,3.87,294.85,521512426,-946915454,75.2,21 -Sun Sep 25 06:01:14 PDT 2011,145,47,4.137,298.99,521512348,-946916032,75.2,21 -Sun Sep 25 06:01:15 PDT 2011,146,51,4.461,303.45,521512226,-946916639,75.2,21 -Sun Sep 25 06:01:16 PDT 2011,148,56,4.755,308.21,521512109,-946917456,75.2,21 -Sun Sep 25 06:01:17 PDT 2011,149,62,5.355,313.56,521511954,-946918321,75.2,21 -Sun Sep 25 06:01:18 PDT 2011,150,67,5.634,319.2,521511773,-946919278,75.2,21 -Sun Sep 25 06:01:19 PDT 2011,152,66,6.401,325.6,521511597,-946920142,75.2,21 -Sun Sep 25 06:01:20 PDT 2011,152,65,6.146,331.74,521511468,-946920897,75.2,21 -Sun Sep 25 06:01:21 PDT 2011,153,70,6.027,337.77,521511326,-946921653,75.2,21 -Sun Sep 25 06:01:22 PDT 2011,153,76,6.112,343.88,521511144,-946922437,75.2,21 -Sun Sep 25 06:01:23 PDT 2011,154,78,6.42,350.3,521510939,-946923272,75.2,21 -Sun Sep 25 06:01:24 PDT 2011,154,79,6.596,356.9,521510772,-946924126,75.4,21 -Sun Sep 25 06:01:25 PDT 2011,154,82,6.698,363.61,521510571,-946925094,75.6,21 -Sun Sep 25 06:01:26 PDT 2011,155,83,6.782,370.38,521510405,-946926117,75.8,21 -Sun Sep 25 06:01:27 PDT 2011,155,83,7.002,377.38,521510222,-946927179,76.0,21 -Sun Sep 25 06:01:28 PDT 2011,155,82,7.002,384.38,521510048,-946928136,76.0,21 -Sun Sep 25 06:01:29 PDT 2011,156,82,6.89,391.27,521509851,-946929135,76.2,21 -Sun Sep 25 06:01:30 PDT 2011,155,81,6.89,398.16,521509651,-946930126,76.4,21 -Sun Sep 25 06:01:31 PDT 2011,155,81,6.921,405.08,521509469,-946931077,76.4,21 -Sun Sep 25 06:01:32 PDT 2011,155,79,6.827,411.91,521509294,-946932047,76.6,21 -Sun Sep 25 06:01:33 PDT 2011,155,77,6.679,418.59,521509108,-946933047,76.6,21 -Sun Sep 25 06:01:34 PDT 2011,155,77,6.721,425.32,521508937,-946933994,76.6,21 -Sun Sep 25 06:01:35 PDT 2011,155,76,6.479,431.86,521508747,-946935009,76.8,21 -Sun Sep 25 06:01:36 PDT 2011,156,82,6.383,438.17,521508551,-946935953,76.8,21 -Sun Sep 25 06:01:37 PDT 2011,155,82,6.364,444.54,521508372,-946936890,76.8,21 -Sun Sep 25 06:01:38 PDT 2011,155,82,6.253,450.79,521508179,-946937820,76.8,21 -Sun Sep 25 06:01:39 PDT 2011,155,83,6.29,457.08,521507978,-946938624,77.0,21 -Sun Sep 25 06:01:40 PDT 2011,154,83,6.345,463.43,521507788,-946939464,77.0,21 -Sun Sep 25 06:01:41 PDT 2011,154,84,6.364,469.79,521507546,-946940420,77.2,21 -Sun Sep 25 06:01:42 PDT 2011,153,84,6.498,476.29,521507306,-946941287,77.4,21 -Sun Sep 25 06:01:43 PDT 2011,154,84,6.402,482.69,521507083,-946942162,77.6,21 -Sun Sep 25 06:01:44 PDT 2011,154,85,6.459,489.15,521506938,-946943011,77.8,21 -Sun Sep 25 06:01:45 PDT 2011,154,84,6.459,495.61,521506812,-946943913,78.0,21 -Sun Sep 25 06:01:46 PDT 2011,155,92,6.44,502.05,521506652,-946944778,78.0,21 -Sun Sep 25 06:01:47 PDT 2011,155,93,6.421,508.47,521506487,-946945677,78.2,21 -Sun Sep 25 06:01:48 PDT 2011,156,96,6.538,515.01,521506294,-946946594,78.4,21 -Sun Sep 25 06:01:49 PDT 2011,156,91,6.808,521.81,521506050,-946947606,78.4,21 -Sun Sep 25 06:01:50 PDT 2011,156,91,6.873,528.69,521505871,-946948551,78.4,21 -Sun Sep 25 06:01:51 PDT 2011,157,90,6.895,535.58,521505657,-946949595,78.6,21 -Sun Sep 25 06:01:52 PDT 2011,157,89,6.917,542.5,521505465,-946950578,78.6,21 -Sun Sep 25 06:01:53 PDT 2011,158,88,6.851,549.35,521505287,-946951581,78.8,21 -Sun Sep 25 06:01:54 PDT 2011,158,86,6.744,556.09,521505137,-946952517,79.0,21 -Sun Sep 25 06:01:55 PDT 2011,158,84,6.619,562.71,521504977,-946953481,79.2,21 -Sun Sep 25 06:01:56 PDT 2011,159,82,6.422,569.14,521504819,-946954335,79.6,21 -Sun Sep 25 06:01:57 PDT 2011,159,81,6.327,575.46,521504643,-946955157,79.8,21 -Sun Sep 25 06:01:58 PDT 2011,159,81,6.217,581.69,521504520,-946955943,80.0,21 -Sun Sep 25 06:01:59 PDT 2011,160,79,6.236,587.92,521504353,-946956775,80.0,21 -Sun Sep 25 06:02:00 PDT 2011,160,78,6.094,594.01,521504195,-946957563,80.2,21 -Sun Sep 25 06:02:01 PDT 2011,159,77,6.026,600.04,521504032,-946958434,80.4,21 -Sun Sep 25 06:02:02 PDT 2011,159,77,5.894,605.93,521503864,-946959266,80.6,21 -Sun Sep 25 06:02:03 PDT 2011,158,79,5.926,611.86,521503678,-946960123,80.8,21 -Sun Sep 25 06:02:04 PDT 2011,158,79,5.984,617.84,521503467,-946961109,81.2,21 -Sun Sep 25 06:02:05 PDT 2011,158,78,6.06,623.9,521503265,-946962078,81.4,21 -Sun Sep 25 06:02:06 PDT 2011,157,77,5.934,629.83,521503086,-946963023,81.6,21 -Sun Sep 25 06:02:07 PDT 2011,157,77,5.885,635.72,521502903,-946964034,81.8,21 -Sun Sep 25 06:02:08 PDT 2011,157,78,5.885,641.6,521502760,-946964976,82.0,21 -Sun Sep 25 06:02:09 PDT 2011,158,86,5.902,647.51,521502663,-946965940,82.2,21 -Sun Sep 25 06:02:10 PDT 2011,158,87,6.034,653.54,521502817,-946966807,82.4,21 -Sun Sep 25 06:02:11 PDT 2011,158,87,6.173,659.71,521503032,-946967613,82.6,21 -Sun Sep 25 06:02:12 PDT 2011,159,86,6.103,665.82,521503369,-946968374,82.6,21 -Sun Sep 25 06:02:13 PDT 2011,159,86,6.085,671.9,521503821,-946969102,83.0,21 -Sun Sep 25 06:02:14 PDT 2011,160,85,5.984,677.88,521504304,-946969793,83.4,21 -Sun Sep 25 06:02:15 PDT 2011,160,84,6.034,683.92,521504732,-946970483,83.6,21 -Sun Sep 25 06:02:16 PDT 2011,161,84,5.934,689.85,521505181,-946971126,83.8,21 -Sun Sep 25 06:02:17 PDT 2011,161,85,5.918,695.77,521505635,-946971706,84.0,21 -Sun Sep 25 06:02:18 PDT 2011,162,87,6.017,701.79,521506078,-946972319,84.2,21 -Sun Sep 25 06:02:19 PDT 2011,163,87,6.068,707.86,521506514,-946973003,84.4,21 -Sun Sep 25 06:02:20 PDT 2011,164,88,6.138,713.99,521506936,-946973687,84.6,21 -Sun Sep 25 06:02:21 PDT 2011,163,90,6.173,721.91,521507471,-946974570,84.8,21 -Sun Sep 25 06:02:22 PDT 2011,162,92,6.281,726.42,521507767,-946975096,84.8,21 -Sun Sep 25 06:02:23 PDT 2011,163,92,6.432,732.85,521508203,-946975865,85.2,21 -Sun Sep 25 06:02:24 PDT 2011,162,85,6.51,739.36,521508597,-946976663,85.6,21 -Sun Sep 25 06:02:25 PDT 2011,163,85,6.49,745.96,521509010,-946977415,85.8,21 -Sun Sep 25 06:02:26 PDT 2011,162,26,6.451,754.07,521509537,-946978323,86.0,21 -Sun Sep 25 06:02:27 PDT 2011,162,77,6.227,758.66,521509844,-946978856,86.2,21 -Sun Sep 25 06:02:28 PDT 2011,161,77,5.918,764.51,521510246,-946979514,86.4,21 -Sun Sep 25 06:02:29 PDT 2011,161,76,5.918,770.43,521510623,-946980149,86.6,21 -Sun Sep 25 06:02:30 PDT 2011,160,82,5.775,776.2,521510973,-946980809,86.8,21 -Sun Sep 25 06:02:31 PDT 2011,160,81,5.775,781.99,521511334,-946981511,87.0,21 -Sun Sep 25 06:02:32 PDT 2011,160,79,5.728,787.71,521511681,-946982182,87.0,21 -Sun Sep 25 06:02:33 PDT 2011,161,79,5.536,793.24,521512086,-946982806,87.2,21 -Sun Sep 25 06:02:34 PDT 2011,161,82,5.467,798.71,521512505,-946983505,87.4,21 -Sun Sep 25 06:02:35 PDT 2011,161,85,5.745,804.46,521512873,-946984144,87.8,21 -Sun Sep 25 06:02:36 PDT 2011,162,89,6.003,810.46,521513310,-946984794,88.0,21 -Sun Sep 25 06:02:37 PDT 2011,162,89,6.212,816.67,521513750,-946985507,88.2,21 -Sun Sep 25 06:02:38 PDT 2011,163,88,6.176,822.85,521514204,-946986144,88.4,21 -Sun Sep 25 06:02:39 PDT 2011,163,82,6.23,829.08,521514679,-946986833,88.6,21 -Sun Sep 25 06:02:40 PDT 2011,163,82,6.266,835.34,521515205,-946987449,88.8,21 -Sun Sep 25 06:02:41 PDT 2011,164,83,6.248,841.59,521515623,-946988031,88.8,21 -Sun Sep 25 06:02:42 PDT 2011,164,84,6.285,847.87,521516068,-946988607,89.0,21 -Sun Sep 25 06:02:43 PDT 2011,164,85,6.378,854.25,521516601,-946989049,89.2,21 -Sun Sep 25 06:02:44 PDT 2011,164,84,6.436,860.69,521517172,-946989419,89.2,21 -Sun Sep 25 06:02:45 PDT 2011,164,84,6.416,867.1,521517695,-946989809,89.4,21 -Sun Sep 25 06:02:46 PDT 2011,164,84,6.416,873.52,521518332,-946990207,89.4,21 -Sun Sep 25 06:02:47 PDT 2011,164,84,6.416,879.94,521518950,-946990560,89.6,21 -Sun Sep 25 06:02:48 PDT 2011,164,84,6.416,886.35,521519633,-946990966,89.6,21 -Sun Sep 25 06:02:49 PDT 2011,163,84,6.378,892.73,521520328,-946991373,89.6,21 -Sun Sep 25 06:02:50 PDT 2011,164,86,6.436,899.17,521521158,-946991716,89.8,21 -Sun Sep 25 06:02:51 PDT 2011,163,89,6.554,905.72,521521842,-946992135,89.8,21 -Sun Sep 25 06:02:52 PDT 2011,162,91,6.554,912.27,521522541,-946992422,89.8,21 -Sun Sep 25 06:02:53 PDT 2011,162,88,6.378,918.65,521523182,-946992777,89.8,21 -Sun Sep 25 06:02:54 PDT 2011,163,82,6.23,924.88,521523802,-946993031,89.8,21 -Sun Sep 25 06:02:55 PDT 2011,162,80,5.904,930.79,521524398,-946993209,90.2,21 -Sun Sep 25 06:02:56 PDT 2011,162,79,5.64,936.43,521524974,-946993348,90.4,21 -Sun Sep 25 06:02:57 PDT 2011,163,77,5.595,942.02,521525562,-946993345,90.6,21 -Sun Sep 25 06:02:58 PDT 2011,163,76,5.453,947.47,521526214,-946993331,90.8,21 -Sun Sep 25 06:02:59 PDT 2011,162,75,5.412,952.89,521526637,-946993519,91.0,21 -Sun Sep 25 06:03:00 PDT 2011,163,73,5.318,958.2,521527116,-946993736,91.2,21 -Sun Sep 25 06:03:01 PDT 2011,163,72,5.164,963.37,521527617,-946994083,91.2,21 -Sun Sep 25 06:03:02 PDT 2011,163,77,5.127,968.5,521528015,-946994604,91.6,21 -Sun Sep 25 06:03:03 PDT 2011,163,81,5.042,973.54,521528373,-946995245,92.0,21 -Sun Sep 25 06:03:04 PDT 2011,164,86,5.7,979.24,521528555,-946995920,92.2,21 -Sun Sep 25 06:03:05 PDT 2011,164,85,6.02,985.26,521528705,-946996647,92.4,21 -Sun Sep 25 06:03:06 PDT 2011,165,87,6.02,991.28,521528780,-946997329,92.8,21 -Sun Sep 25 06:03:07 PDT 2011,165,88,5.936,997.21,521528765,-946998136,93.0,21 -Sun Sep 25 06:03:08 PDT 2011,166,88,6.176,1003.39,521528678,-946999086,93.2,21 -Sun Sep 25 06:03:09 PDT 2011,167,87,6.176,1009.57,521528580,-947000155,93.4,21 -Sun Sep 25 06:03:10 PDT 2011,167,87,6.123,1015.69,521528429,-947001232,93.4,21 -Sun Sep 25 06:03:11 PDT 2011,167,85,6.071,1021.76,521528303,-947002178,93.6,21 -Sun Sep 25 06:03:12 PDT 2011,167,84,5.986,1027.75,521528138,-947003218,93.8,21 -Sun Sep 25 06:03:13 PDT 2011,167,84,5.888,1033.63,521528047,-947004066,93.8,21 -Sun Sep 25 06:03:14 PDT 2011,167,84,5.715,1039.35,521527938,-947004982,94.0,21 -Sun Sep 25 06:03:15 PDT 2011,167,0,5.552,1044.9,521527801,-947006029,94.0,21 -Sun Sep 25 06:03:16 PDT 2011,165,0,5.007,1049.91,521527714,-947006953,94.4,21 -Sun Sep 25 06:03:17 PDT 2011,164,0,4.589,1054.5,521527735,-947007675,94.6,21 -Sun Sep 25 06:03:18 PDT 2011,164,0,4.177,1058.67,521527793,-947008309,94.8,21 -Sun Sep 25 06:03:19 PDT 2011,163,55,3.954,1062.63,521527873,-947008844,95.0,21 -Sun Sep 25 06:03:20 PDT 2011,163,52,3.746,1066.37,521528012,-947009363,95.2,21 -Sun Sep 25 06:03:21 PDT 2011,162,58,3.602,1069.98,521528244,-947009847,95.4,21 -Sun Sep 25 06:03:22 PDT 2011,163,60,4.066,1074.04,521528563,-947010099,95.6,21 -Sun Sep 25 06:03:23 PDT 2011,163,66,4.295,1078.34,521529092,-947010216,95.6,21 -Sun Sep 25 06:03:24 PDT 2011,164,72,4.446,1082.78,521529646,-947010278,96.0,21 -Sun Sep 25 06:03:25 PDT 2011,165,77,4.827,1087.61,521530291,-947010286,96.4,21 -Sun Sep 25 06:03:26 PDT 2011,165,82,5.066,1092.68,521531003,-947010213,96.6,21 -Sun Sep 25 06:03:27 PDT 2011,167,90,5.715,1098.39,521531700,-947010402,96.8,21 -Sun Sep 25 06:03:28 PDT 2011,167,89,6.475,1104.87,521532384,-947010511,97.0,21 -Sun Sep 25 06:03:29 PDT 2011,168,89,6.248,1111.11,521533095,-947010656,97.2,21 -Sun Sep 25 06:03:30 PDT 2011,169,83,6.285,1117.4,521533790,-947010809,97.4,21 -Sun Sep 25 06:03:31 PDT 2011,170,84,6.303,1123.7,521534464,-947010947,97.6,21 -Sun Sep 25 06:03:32 PDT 2011,170,85,6.378,1130.08,521535176,-947011085,97.8,21 -Sun Sep 25 06:03:33 PDT 2011,170,87,6.436,1136.52,521535868,-947011232,97.8,21 -Sun Sep 25 06:03:34 PDT 2011,171,87,6.554,1143.07,521536600,-947011412,98.0,21 -Sun Sep 25 06:03:35 PDT 2011,171,88,6.635,1149.7,521537322,-947011538,98.0,21 -Sun Sep 25 06:03:36 PDT 2011,170,91,6.635,1156.34,521538044,-947011690,98.2,21 -Sun Sep 25 06:03:37 PDT 2011,171,85,6.958,1163.3,521538840,-947011860,98.2,21 -Sun Sep 25 06:03:38 PDT 2011,170,86,7.12,1170.42,521539611,-947012028,98.4,21 -Sun Sep 25 06:03:39 PDT 2011,170,86,7.252,1177.67,521540291,-947012229,98.4,21 -Sun Sep 25 06:03:40 PDT 2011,169,87,7.216,1184.89,521541024,-947012421,98.4,21 -Sun Sep 25 06:03:41 PDT 2011,168,82,7.39,1192.28,521541747,-947012650,98.6,21 -Sun Sep 25 06:03:42 PDT 2011,168,48,7.493,1199.77,521542523,-947012860,98.6,21 -Sun Sep 25 06:03:43 PDT 2011,167,85,7.627,1207.4,521543247,-947013069,98.6,21 -Sun Sep 25 06:03:44 PDT 2011,167,79,7.879,1215.27,521544186,-947013246,98.6,21 -Sun Sep 25 06:03:45 PDT 2011,166,79,8.049,1223.32,521545099,-947013365,98.8,21 -Sun Sep 25 06:03:46 PDT 2011,165,79,8.331,1231.65,521546055,-947013522,98.8,21 -Sun Sep 25 06:03:47 PDT 2011,164,0,8.668,1240.32,521546953,-947013746,98.8,21 -Sun Sep 25 06:03:48 PDT 2011,164,0,8.704,1249.03,521547857,-947013985,98.8,21 -Sun Sep 25 06:03:49 PDT 2011,163,0,8.775,1257.8,521548697,-947014326,98.8,21 -Sun Sep 25 06:03:50 PDT 2011,163,0,9.053,1266.85,521549634,-947014617,98.8,21 -Sun Sep 25 06:03:51 PDT 2011,163,84,9.35,1276.2,521550580,-947014875,98.8,21 -Sun Sep 25 06:03:52 PDT 2011,162,74,9.601,1285.81,521551572,-947015118,98.6,21 -Sun Sep 25 06:03:53 PDT 2011,162,71,9.867,1295.67,521552678,-947015304,98.4,21 -Sun Sep 25 06:03:54 PDT 2011,162,71,10.196,1305.87,521553796,-947015488,98.2,21 -Sun Sep 25 06:03:55 PDT 2011,161,71,10.444,1316.31,521554889,-947015733,98.2,21 -Sun Sep 25 06:03:56 PDT 2011,160,0,10.592,1326.9,521556066,-947015927,98.0,21 -Sun Sep 25 06:03:57 PDT 2011,158,0,10.726,1337.63,521557329,-947015941,97.8,21 -Sun Sep 25 06:03:58 PDT 2011,156,0,10.891,1348.52,521558573,-947016053,97.6,21 -Sun Sep 25 06:03:59 PDT 2011,154,0,10.947,1359.47,521559802,-947016235,97.2,21 -Sun Sep 25 06:04:00 PDT 2011,152,0,10.891,1370.36,521560972,-947016517,97.0,21 -Sun Sep 25 06:04:01 PDT 2011,152,0,10.891,1381.25,521562102,-947016891,96.8,21 -Sun Sep 25 06:04:02 PDT 2011,151,0,10.863,1392.11,521563295,-947017250,96.4,21 -Sun Sep 25 06:04:03 PDT 2011,151,0,11.004,1403.12,521564450,-947017463,96.0,21 -Sun Sep 25 06:04:04 PDT 2011,151,0,11.061,1414.18,521565662,-947017646,95.6,21 -Sun Sep 25 06:04:05 PDT 2011,151,0,11.266,1425.44,521566885,-947017827,95.2,21 -Sun Sep 25 06:04:06 PDT 2011,150,0,11.485,1436.93,521568122,-947017993,95.0,21 -Sun Sep 25 06:04:07 PDT 2011,150,0,11.642,1448.57,521569426,-947018230,94.4,21 -Sun Sep 25 06:04:08 PDT 2011,150,0,11.937,1460.51,521570683,-947018528,93.8,21 -Sun Sep 25 06:04:09 PDT 2011,149,0,12.141,1472.65,521571950,-947018883,93.4,21 -Sun Sep 25 06:04:10 PDT 2011,148,0,12.401,1485.05,521573280,-947019227,93.0,21 -Sun Sep 25 06:04:11 PDT 2011,147,0,12.572,1497.62,521574635,-947019577,92.4,21 -Sun Sep 25 06:04:12 PDT 2011,146,0,12.498,1510.12,521575948,-947019909,91.8,21 -Sun Sep 25 06:04:13 PDT 2011,143,0,12.353,1522.47,521577256,-947020240,91.4,21 -Sun Sep 25 06:04:14 PDT 2011,142,0,12.282,1534.76,521578542,-947020566,90.6,21 -Sun Sep 25 06:04:15 PDT 2011,142,0,12.299,1547.05,521579879,-947020850,90.0,21 -Sun Sep 25 06:04:16 PDT 2011,141,0,12.335,1559.39,521581150,-947021106,89.6,21 -Sun Sep 25 06:04:17 PDT 2011,142,0,12.371,1571.76,521582468,-947021362,89.0,21 -Sun Sep 25 06:04:18 PDT 2011,142,0,12.408,1584.17,521583810,-947021611,88.6,21 -Sun Sep 25 06:04:19 PDT 2011,143,0,12.228,1596.4,521585087,-947021868,88.2,21 -Sun Sep 25 06:04:20 PDT 2011,143,0,12.158,1608.55,521586358,-947022146,87.6,21 -Sun Sep 25 06:04:21 PDT 2011,144,28,11.818,1620.37,521587618,-947022360,87.2,21 -Sun Sep 25 06:04:22 PDT 2011,145,81,11.193,1631.57,521588898,-947022565,86.6,21 -Sun Sep 25 06:04:23 PDT 2011,147,87,11.076,1642.64,521590088,-947022762,86.2,21 -Sun Sep 25 06:04:24 PDT 2011,147,87,11.136,1653.78,521591298,-947022972,85.8,21 -Sun Sep 25 06:04:25 PDT 2011,148,87,10.964,1664.74,521592428,-947023142,85.4,21 -Sun Sep 25 06:04:26 PDT 2011,147,0,10.532,1675.32,521593554,-947023332,85.2,21 -Sun Sep 25 06:04:27 PDT 2011,146,0,10.181,1685.46,521594608,-947023556,84.8,21 -Sun Sep 25 06:04:28 PDT 2011,145,0,9.502,1694.96,521595602,-947023762,84.6,21 -Sun Sep 25 06:04:29 PDT 2011,145,0,9.098,1704.14,521596555,-947023974,84.4,21 -Sun Sep 25 06:04:30 PDT 2011,146,69,8.552,1712.74,521597447,-947024173,84.2,21 -Sun Sep 25 06:04:31 PDT 2011,146,78,8.192,1723.01,521598521,-947024374,84.0,21 -Sun Sep 25 06:04:32 PDT 2011,146,76,7.948,1728.92,521599109,-947024472,84.0,21 -Sun Sep 25 06:04:33 PDT 2011,147,78,7.86,1736.68,521599895,-947024518,84.2,21 -Sun Sep 25 06:04:34 PDT 2011,147,83,7.663,1744.35,521600654,-947024562,84.2,21 -Sun Sep 25 06:04:35 PDT 2011,148,81,7.608,1751.96,521601429,-947024650,84.2,21 -Sun Sep 25 06:04:36 PDT 2011,150,81,7.424,1759.38,521602191,-947024743,84.2,21 -Sun Sep 25 06:04:37 PDT 2011,151,80,7.398,1766.78,521602975,-947024864,84.2,21 -Sun Sep 25 06:04:38 PDT 2011,152,78,7.347,1774.12,521603747,-947025012,84.2,21 -Sun Sep 25 06:04:39 PDT 2011,153,78,7.223,1781.35,521604515,-947025143,84.6,21 -Sun Sep 25 06:04:40 PDT 2011,155,79,7.15,1788.5,521605284,-947025204,84.8,21 -Sun Sep 25 06:04:41 PDT 2011,156,82,7.297,1795.79,521606096,-947025300,85.0,20 -Sun Sep 25 06:04:42 PDT 2011,157,83,7.475,1803.27,521606883,-947025462,85.2,20 -Sun Sep 25 06:04:43 PDT 2011,158,84,7.608,1810.88,521607708,-947025599,85.4,20 -Sun Sep 25 06:04:44 PDT 2011,159,84,7.663,1818.54,521608551,-947025756,85.4,20 -Sun Sep 25 06:04:45 PDT 2011,160,84,7.718,1826.26,521609386,-947025957,85.6,20 -Sun Sep 25 06:04:46 PDT 2011,161,84,7.718,1833.98,521610207,-947026154,85.8,20 -Sun Sep 25 06:04:47 PDT 2011,161,84,7.691,1841.67,521611050,-947026327,85.8,20 -Sun Sep 25 06:04:48 PDT 2011,162,85,7.774,1849.44,521611923,-947026473,86.0,20 -Sun Sep 25 06:04:49 PDT 2011,162,84,7.743,1857.18,521612714,-947026600,86.0,20 -Sun Sep 25 06:04:50 PDT 2011,162,57,7.659,1864.84,521613556,-947026685,86.0,20 -Sun Sep 25 06:04:51 PDT 2011,162,84,7.632,1872.48,521614410,-947026755,86.2,20 -Sun Sep 25 06:04:52 PDT 2011,162,77,7.55,1880.03,521615224,-947026900,86.2,20 -Sun Sep 25 06:04:53 PDT 2011,161,78,7.771,1887.8,521616034,-947027134,86.2,20 -Sun Sep 25 06:04:54 PDT 2011,161,77,7.887,1895.68,521616893,-947027410,86.4,20 -Sun Sep 25 06:04:55 PDT 2011,161,77,8.036,1903.72,521617716,-947027679,86.4,20 -Sun Sep 25 06:04:56 PDT 2011,161,77,8.097,1911.82,521618589,-947027945,86.4,20 -Sun Sep 25 06:04:57 PDT 2011,160,0,8.192,1920.01,521619554,-947027802,86.4,20 -Sun Sep 25 06:04:58 PDT 2011,160,0,8.223,1928.23,521620474,-947027659,86.4,20 -Sun Sep 25 06:04:59 PDT 2011,160,80,8.223,1936.46,521621529,-947027574,86.6,20 -Sun Sep 25 06:05:00 PDT 2011,159,72,8.223,1944.68,521622440,-947027631,86.6,20 -Sun Sep 25 06:05:01 PDT 2011,159,73,8.32,1953.0,521623148,-947027956,86.6,20 -Sun Sep 25 06:05:02 PDT 2011,158,73,8.453,1961.45,521624054,-947028534,86.6,20 -Sun Sep 25 06:05:03 PDT 2011,158,73,8.555,1970.01,521624871,-947028957,86.6,20 -Sun Sep 25 06:05:04 PDT 2011,157,0,8.486,1978.49,521625784,-947029261,86.6,20 -Sun Sep 25 06:05:05 PDT 2011,155,0,8.453,1986.99,521626770,-947029483,86.6,20 -Sun Sep 25 06:05:06 PDT 2011,153,0,8.453,1995.4,521627698,-947029651,86.6,20 -Sun Sep 25 06:05:07 PDT 2011,152,0,8.386,2003.78,521628625,-947029844,86.6,20 -Sun Sep 25 06:05:08 PDT 2011,152,0,8.32,2012.1,521629482,-947030074,86.6,20 -Sun Sep 25 06:05:09 PDT 2011,150,0,8.288,2020.39,521630395,-947030273,86.6,20 -Sun Sep 25 06:05:10 PDT 2011,149,0,8.255,2028.65,521631241,-947030418,86.6,20 -Sun Sep 25 06:05:11 PDT 2011,147,0,8.288,2036.94,521632251,-947030562,86.8,20 -Sun Sep 25 06:05:12 PDT 2011,146,0,8.203,2045.14,521633107,-947030718,86.8,20 -Sun Sep 25 06:05:13 PDT 2011,145,0,8.141,2053.28,521634013,-947030941,86.8,20 -Sun Sep 25 06:05:14 PDT 2011,143,0,8.049,2061.33,521634856,-947031185,86.8,20 -Sun Sep 25 06:05:15 PDT 2011,142,0,8.017,2069.35,521635547,-947031465,86.8,20 -Sun Sep 25 06:05:16 PDT 2011,141,74,8.049,2077.4,521636293,-947031764,86.8,20 -Sun Sep 25 06:05:17 PDT 2011,140,80,8.141,2085.54,521637018,-947032055,86.8,20 -Sun Sep 25 06:05:18 PDT 2011,141,76,8.203,2093.74,521637934,-947032220,86.8,20 -Sun Sep 25 06:05:19 PDT 2011,141,76,8.364,2102.1,521638835,-947032394,86.8,20 -Sun Sep 25 06:05:20 PDT 2011,140,76,8.332,2110.44,521639691,-947032614,86.8,20 -Sun Sep 25 06:05:21 PDT 2011,139,0,8.203,2118.64,521640623,-947032780,86.8,20 -Sun Sep 25 06:05:22 PDT 2011,139,0,8.203,2126.84,521641529,-947032942,86.8,20 -Sun Sep 25 06:05:23 PDT 2011,139,0,8.049,2134.89,521642304,-947033190,86.8,20 -Sun Sep 25 06:05:24 PDT 2011,138,78,8.017,2142.91,521643145,-947033379,86.8,20 -Sun Sep 25 06:05:25 PDT 2011,139,80,8.049,2150.96,521644022,-947033521,86.8,20 -Sun Sep 25 06:05:26 PDT 2011,140,80,8.203,2159.16,521644865,-947033714,86.8,20 -Sun Sep 25 06:05:27 PDT 2011,140,80,8.235,2167.4,521645752,-947033864,86.8,20 -Sun Sep 25 06:05:28 PDT 2011,141,80,8.203,2175.6,521646573,-947033970,86.8,20 -Sun Sep 25 06:05:29 PDT 2011,140,0,8.017,2183.62,521647495,-947034132,86.8,20 -Sun Sep 25 06:05:30 PDT 2011,140,0,8.017,2191.64,521648458,-947034245,86.8,20 -Sun Sep 25 06:05:31 PDT 2011,140,77,7.841,2199.48,521649313,-947034341,86.8,20 -Sun Sep 25 06:05:32 PDT 2011,140,77,7.899,2207.38,521650110,-947034504,86.8,20 -Sun Sep 25 06:05:33 PDT 2011,141,77,7.899,2215.27,521650936,-947034750,86.8,20 -Sun Sep 25 06:05:34 PDT 2011,140,0,7.784,2223.06,521651700,-947034945,86.8,20 -Sun Sep 25 06:05:35 PDT 2011,140,75,7.672,2230.73,521652488,-947035170,86.8,20 -Sun Sep 25 06:05:36 PDT 2011,139,75,7.672,2238.4,521653373,-947035424,86.8,20 -Sun Sep 25 06:05:37 PDT 2011,139,76,7.756,2246.16,521654094,-947035793,86.8,20 -Sun Sep 25 06:05:38 PDT 2011,138,77,7.767,2253.93,521654920,-947036181,86.8,20 -Sun Sep 25 06:05:39 PDT 2011,138,70,7.899,2261.82,521655709,-947036552,86.8,20 -Sun Sep 25 06:05:40 PDT 2011,138,70,7.929,2269.75,521656452,-947036910,86.8,20 -Sun Sep 25 06:05:41 PDT 2011,138,30,7.988,2277.74,521657196,-947037227,86.8,20 -Sun Sep 25 06:05:42 PDT 2011,138,73,7.899,2285.64,521658014,-947037482,86.8,20 -Sun Sep 25 06:05:43 PDT 2011,138,77,7.899,2293.54,521658780,-947037769,86.8,20 -Sun Sep 25 06:05:44 PDT 2011,138,77,7.929,2301.47,521659574,-947038088,86.8,20 -Sun Sep 25 06:05:45 PDT 2011,138,77,7.958,2309.43,521660495,-947038402,86.8,20 -Sun Sep 25 06:05:46 PDT 2011,138,31,7.813,2317.24,521661350,-947038760,86.8,20 -Sun Sep 25 06:05:47 PDT 2011,137,76,7.728,2324.97,521662141,-947039261,86.8,20 -Sun Sep 25 06:05:48 PDT 2011,138,76,7.841,2332.81,521662979,-947039688,86.8,20 -Sun Sep 25 06:05:49 PDT 2011,138,37,7.784,2340.59,521663766,-947040211,86.8,20 -Sun Sep 25 06:05:50 PDT 2011,138,76,7.7,2348.29,521664490,-947040839,86.8,20 -Sun Sep 25 06:05:51 PDT 2011,139,76,7.841,2356.13,521665212,-947041465,86.8,20 -Sun Sep 25 06:05:52 PDT 2011,140,76,7.813,2363.95,521665949,-947041949,86.8,20 -Sun Sep 25 06:05:53 PDT 2011,141,20,7.645,2371.59,521666630,-947042549,86.8,20 -Sun Sep 25 06:05:54 PDT 2011,141,83,7.458,2379.05,521667329,-947043182,86.8,20 -Sun Sep 25 06:05:55 PDT 2011,142,84,7.7,2386.75,521667972,-947043905,86.8,20 -Sun Sep 25 06:05:56 PDT 2011,143,86,7.756,2394.51,521668601,-947044678,86.8,20 -Sun Sep 25 06:05:57 PDT 2011,143,86,7.813,2402.32,521669239,-947045497,86.8,20 -Sun Sep 25 06:05:58 PDT 2011,144,86,7.87,2410.19,521669897,-947046285,86.8,20 -Sun Sep 25 06:05:59 PDT 2011,145,86,7.899,2418.09,521670572,-947047043,86.8,20 -Sun Sep 25 06:06:00 PDT 2011,145,85,7.87,2425.96,521671250,-947047770,86.8,20 -Sun Sep 25 06:06:01 PDT 2011,145,86,7.899,2433.86,521671919,-947048442,86.8,20 -Sun Sep 25 06:06:02 PDT 2011,146,86,7.813,2441.67,521672589,-947049144,86.8,20 -Sun Sep 25 06:06:03 PDT 2011,146,86,7.899,2449.57,521673227,-947049870,86.8,20 -Sun Sep 25 06:06:04 PDT 2011,147,86,7.899,2457.47,521673850,-947050663,86.8,20 -Sun Sep 25 06:06:05 PDT 2011,147,87,7.899,2465.37,521674494,-947051424,86.8,20 -Sun Sep 25 06:06:06 PDT 2011,148,88,7.988,2473.35,521675162,-947052183,86.8,20 -Sun Sep 25 06:06:07 PDT 2011,149,83,8.017,2481.37,521675795,-947052983,86.8,20 -Sun Sep 25 06:06:08 PDT 2011,150,79,8.079,2489.45,521676442,-947053793,86.8,20 -Sun Sep 25 06:06:09 PDT 2011,151,79,8.235,2497.69,521677123,-947054631,86.8,20 -Sun Sep 25 06:06:10 PDT 2011,150,79,8.414,2506.1,521677804,-947055441,86.8,20 -Sun Sep 25 06:06:11 PDT 2011,149,0,8.549,2514.65,521678548,-947056232,86.8,20 -Sun Sep 25 06:06:12 PDT 2011,148,0,8.584,2523.23,521679317,-947056971,86.8,20 -Sun Sep 25 06:06:13 PDT 2011,147,0,8.689,2531.92,521680122,-947057689,86.8,20 -Sun Sep 25 06:06:14 PDT 2011,146,0,8.907,2540.83,521680924,-947058391,86.6,20 -Sun Sep 25 06:06:15 PDT 2011,145,0,9.02,2549.85,521681817,-947059044,86.4,20 -Sun Sep 25 06:06:16 PDT 2011,145,0,9.296,2559.15,521682751,-947059687,86.2,20 -Sun Sep 25 06:06:17 PDT 2011,145,0,9.546,2568.69,521683632,-947060316,86.0,20 -Sun Sep 25 06:06:18 PDT 2011,145,0,9.546,2578.24,521684585,-947060980,85.8,20 -Sun Sep 25 06:06:19 PDT 2011,143,0,9.676,2587.91,521685568,-947061520,85.8,20 -Sun Sep 25 06:06:20 PDT 2011,142,0,9.72,2597.63,521686621,-947061947,85.6,20 -Sun Sep 25 06:06:21 PDT 2011,141,0,9.765,2607.4,521687581,-947062318,85.6,20 -Sun Sep 25 06:06:22 PDT 2011,139,0,9.676,2617.07,521688653,-947062402,85.2,20 -Sun Sep 25 06:06:23 PDT 2011,138,0,9.589,2626.66,521689688,-947062652,85.0,20 -Sun Sep 25 06:06:24 PDT 2011,138,0,9.546,2636.21,521690799,-947062917,84.6,20 -Sun Sep 25 06:06:25 PDT 2011,138,0,9.378,2645.59,521691817,-947063115,84.4,20 -Sun Sep 25 06:06:26 PDT 2011,137,0,9.256,2654.84,521692713,-947063303,84.2,20 -Sun Sep 25 06:06:27 PDT 2011,137,0,9.02,2663.86,521693739,-947063203,84.0,20 -Sun Sep 25 06:06:28 PDT 2011,136,0,8.944,2672.81,521694733,-947063170,83.8,20 -Sun Sep 25 06:06:29 PDT 2011,135,0,8.797,2681.6,521695609,-947063051,83.8,20 -Sun Sep 25 06:06:30 PDT 2011,134,83,8.584,2690.29,521696570,-947062874,83.6,20 -Sun Sep 25 06:06:31 PDT 2011,135,84,8.481,2698.67,521697496,-947062666,83.4,20 -Sun Sep 25 06:06:32 PDT 2011,136,84,8.584,2707.25,521698337,-947062486,83.4,20 -Sun Sep 25 06:06:33 PDT 2011,138,84,8.619,2716.01,521699247,-947062275,83.2,20 -Sun Sep 25 06:06:34 PDT 2011,139,84,8.689,2724.67,521700152,-947062028,83.2,20 -Sun Sep 25 06:06:35 PDT 2011,139,0,8.584,2733.24,521701094,-947061737,83.0,20 -Sun Sep 25 06:06:36 PDT 2011,138,0,8.414,2741.56,521702035,-947061446,83.0,20 -Sun Sep 25 06:06:37 PDT 2011,136,0,8.414,2749.98,521702949,-947061163,83.0,20 -Sun Sep 25 06:06:38 PDT 2011,133,0,8.316,2758.29,521703823,-947060920,82.8,20 -Sun Sep 25 06:06:39 PDT 2011,132,82,8.316,2766.61,521704602,-947060752,82.8,20 -Sun Sep 25 06:06:40 PDT 2011,131,82,8.448,2775.06,521705406,-947060585,82.8,20 -Sun Sep 25 06:06:41 PDT 2011,132,28,8.481,2783.54,521706306,-947060327,82.8,20 -Sun Sep 25 06:06:42 PDT 2011,133,83,8.219,2791.76,521707203,-947060102,82.6,20 -Sun Sep 25 06:06:43 PDT 2011,134,92,8.316,2800.07,521708074,-947059878,82.6,20 -Sun Sep 25 06:06:44 PDT 2011,136,92,8.381,2808.45,521708987,-947059586,82.6,20 -Sun Sep 25 06:06:45 PDT 2011,137,85,8.414,2816.92,521709875,-947059293,82.6,20 -Sun Sep 25 06:06:46 PDT 2011,138,85,8.515,2825.38,521710573,-947059317,82.6,20 -Sun Sep 25 06:06:47 PDT 2011,140,86,8.283,2833.67,521711247,-947059287,82.6,20 -Sun Sep 25 06:06:48 PDT 2011,141,79,8.003,2841.67,521711954,-947059229,82.6,20 -Sun Sep 25 06:06:49 PDT 2011,142,75,7.826,2849.49,521712692,-947059110,82.4,20 -Sun Sep 25 06:06:50 PDT 2011,143,79,7.685,2857.18,521713513,-947058876,82.4,20 -Sun Sep 25 06:06:51 PDT 2011,144,82,7.549,2864.73,521714384,-947058571,82.4,20 -Sun Sep 25 06:06:52 PDT 2011,145,82,7.549,2872.28,521715229,-947058337,82.4,20 -Sun Sep 25 06:06:53 PDT 2011,146,82,7.522,2879.8,521716069,-947058078,82.4,20 -Sun Sep 25 06:06:54 PDT 2011,147,82,7.522,2887.32,521716908,-947057789,82.4,20 -Sun Sep 25 06:06:55 PDT 2011,148,82,7.443,2894.76,521717755,-947057485,82.4,20 -Sun Sep 25 06:06:56 PDT 2011,150,44,7.443,2902.21,521718579,-947057195,82.4,20 -Sun Sep 25 06:06:57 PDT 2011,149,78,7.192,2909.4,521719406,-947056967,82.4,20 -Sun Sep 25 06:06:58 PDT 2011,149,86,7.192,2916.59,521720209,-947056774,82.4,20 -Sun Sep 25 06:06:59 PDT 2011,150,85,7.12,2923.71,521720983,-947056580,82.4,20 -Sun Sep 25 06:07:00 PDT 2011,150,84,7.096,2930.81,521721749,-947056386,82.4,20 -Sun Sep 25 06:07:01 PDT 2011,150,83,6.979,2937.79,521722500,-947056193,82.4,20 -Sun Sep 25 06:07:02 PDT 2011,150,83,6.934,2944.72,521723226,-947055997,82.4,20 -Sun Sep 25 06:07:03 PDT 2011,150,83,6.889,2951.61,521724000,-947055780,82.4,20 -Sun Sep 25 06:07:04 PDT 2011,151,83,6.867,2958.48,521724758,-947055583,82.4,20 -Sun Sep 25 06:07:05 PDT 2011,151,82,6.845,2965.32,521725468,-947055401,82.4,20 -Sun Sep 25 06:07:06 PDT 2011,151,89,6.801,2972.16,521726229,-947055210,82.4,20 -Sun Sep 25 06:07:07 PDT 2011,151,90,6.801,2978.92,521726958,-947055056,82.4,20 -Sun Sep 25 06:07:08 PDT 2011,150,90,6.845,2985.77,521727710,-947054899,82.4,20 -Sun Sep 25 06:07:09 PDT 2011,151,90,6.867,2992.64,521728466,-947054718,82.6,20 -Sun Sep 25 06:07:10 PDT 2011,151,89,6.823,2999.46,521729254,-947054529,82.8,20 -Sun Sep 25 06:07:11 PDT 2011,151,89,6.779,3006.24,521730000,-947054322,83.0,20 -Sun Sep 25 06:07:12 PDT 2011,151,89,6.779,3013.02,521730757,-947054114,83.0,20 -Sun Sep 25 06:07:13 PDT 2011,152,91,6.715,3019.73,521731572,-947053905,83.2,20 -Sun Sep 25 06:07:14 PDT 2011,153,91,6.903,3026.63,521732308,-947053719,83.4,20 -Sun Sep 25 06:07:15 PDT 2011,153,83,6.926,3033.56,521733067,-947053523,83.4,20 -Sun Sep 25 06:07:16 PDT 2011,153,84,6.903,3040.46,521733833,-947053336,83.6,20 -Sun Sep 25 06:07:17 PDT 2011,154,84,6.993,3047.46,521734561,-947053168,83.6,20 -Sun Sep 25 06:07:18 PDT 2011,154,84,6.948,3054.4,521735301,-947053009,83.8,20 -Sun Sep 25 06:07:19 PDT 2011,155,83,7.016,3061.42,521736027,-947052861,83.8,20 -Sun Sep 25 06:07:20 PDT 2011,156,83,6.948,3068.41,521736773,-947052678,83.8,20 -Sun Sep 25 06:07:21 PDT 2011,157,84,6.971,3075.34,521737553,-947052477,84.2,20 -Sun Sep 25 06:07:22 PDT 2011,158,84,7.016,3082.36,521738298,-947052292,84.4,20 -Sun Sep 25 06:07:23 PDT 2011,158,84,7.04,3089.4,521739017,-947052166,84.6,20 -Sun Sep 25 06:07:24 PDT 2011,159,87,7.016,3096.41,521739665,-947052154,84.8,20 -Sun Sep 25 06:07:25 PDT 2011,159,92,6.881,3103.32,521740417,-947052178,85.0,20 -Sun Sep 25 06:07:26 PDT 2011,160,91,6.948,3110.24,521741067,-947052214,85.2,20 -Sun Sep 25 06:07:27 PDT 2011,160,89,6.993,3117.26,521741781,-947052234,85.4,20 -Sun Sep 25 06:07:28 PDT 2011,161,89,6.794,3124.03,521742521,-947052223,85.4,20 -Sun Sep 25 06:07:29 PDT 2011,162,93,6.837,3130.87,521743238,-947052346,85.6,20 -Sun Sep 25 06:07:30 PDT 2011,163,94,6.751,3137.62,521743966,-947052471,85.8,20 -Sun Sep 25 06:07:31 PDT 2011,163,94,6.646,3144.26,521744665,-947052647,85.8,20 -Sun Sep 25 06:07:32 PDT 2011,164,94,6.605,3150.87,521745387,-947052802,85.8,20 -Sun Sep 25 06:07:33 PDT 2011,165,95,6.585,3157.45,521746088,-947052921,86.2,20 -Sun Sep 25 06:07:34 PDT 2011,165,96,6.605,3164.06,521746829,-947053017,86.4,20 -Sun Sep 25 06:07:35 PDT 2011,165,96,6.688,3170.74,521747561,-947053128,86.8,20 -Sun Sep 25 06:07:36 PDT 2011,166,95,6.708,3177.45,521748273,-947053258,87.0,20 -Sun Sep 25 06:07:37 PDT 2011,166,89,6.772,3184.22,521749006,-947053391,87.2,20 -Sun Sep 25 06:07:38 PDT 2011,166,88,6.751,3190.98,521749719,-947053505,87.4,20 -Sun Sep 25 06:07:39 PDT 2011,166,88,6.73,3197.71,521750455,-947053613,87.4,20 -Sun Sep 25 06:07:40 PDT 2011,167,87,6.708,3204.41,521751178,-947053701,87.6,20 -Sun Sep 25 06:07:41 PDT 2011,167,87,6.667,3211.08,521751904,-947053795,87.8,20 -Sun Sep 25 06:07:42 PDT 2011,168,87,6.73,3217.81,521752638,-947053914,87.8,20 -Sun Sep 25 06:07:43 PDT 2011,168,86,6.73,3224.54,521753329,-947054077,88.0,20 -Sun Sep 25 06:07:44 PDT 2011,169,87,6.465,3231.03,521754050,-947054196,88.2,20 -Sun Sep 25 06:07:45 PDT 2011,169,85,6.564,3237.57,521754767,-947054298,88.6,20 -Sun Sep 25 06:07:46 PDT 2011,170,88,6.544,3244.11,521755511,-947054336,88.8,20 -Sun Sep 25 06:07:47 PDT 2011,170,93,6.625,3250.74,521756240,-947054439,89.0,20 -Sun Sep 25 06:07:48 PDT 2011,170,93,6.646,3257.38,521756898,-947054549,89.2,20 -Sun Sep 25 06:07:49 PDT 2011,170,90,6.487,3263.87,521757599,-947054700,89.4,20 -Sun Sep 25 06:07:50 PDT 2011,170,86,6.467,3270.34,521758313,-947054869,89.6,20 -Sun Sep 25 06:07:51 PDT 2011,170,88,6.607,3276.95,521759011,-947055012,89.6,20 -Sun Sep 25 06:07:52 PDT 2011,170,88,6.752,3283.7,521759736,-947055175,89.8,20 -Sun Sep 25 06:07:53 PDT 2011,171,88,6.648,3290.35,521760423,-947055272,90.0,20 -Sun Sep 25 06:07:54 PDT 2011,170,88,6.689,3297.03,521761158,-947055389,90.2,20 -Sun Sep 25 06:07:55 PDT 2011,170,87,6.731,3303.77,521761842,-947055501,90.6,20 -Sun Sep 25 06:07:56 PDT 2011,169,87,6.648,3310.41,521762496,-947055587,90.8,20 -Sun Sep 25 06:07:57 PDT 2011,169,87,6.627,3317.04,521763217,-947055660,91.0,20 -Sun Sep 25 06:07:58 PDT 2011,168,79,6.627,3323.67,521763961,-947055744,91.2,20 -Sun Sep 25 06:07:59 PDT 2011,168,81,6.586,3330.25,521764743,-947055803,91.4,20 -Sun Sep 25 06:08:00 PDT 2011,167,84,6.904,3337.18,521765626,-947055873,91.6,20 -Sun Sep 25 06:08:01 PDT 2011,167,85,6.994,3344.15,521766421,-947055949,91.8,20 -Sun Sep 25 06:08:02 PDT 2011,167,85,7.11,3351.26,521767203,-947056002,92.0,20 -Sun Sep 25 06:08:03 PDT 2011,166,85,7.133,3358.42,521767975,-947056105,92.0,20 -Sun Sep 25 06:08:04 PDT 2011,166,86,7.133,3365.53,521768689,-947056232,92.2,20 -Sun Sep 25 06:08:05 PDT 2011,166,47,7.188,3372.72,521769390,-947056370,92.2,20 -Sun Sep 25 06:08:06 PDT 2011,166,88,7.164,3379.88,521770119,-947056480,92.4,20 -Sun Sep 25 06:08:07 PDT 2011,165,88,7.286,3387.17,521770890,-947056587,92.4,20 -Sun Sep 25 06:08:08 PDT 2011,165,82,7.515,3394.68,521771668,-947056696,92.4,20 -Sun Sep 25 06:08:09 PDT 2011,165,82,7.568,3402.25,521772446,-947056794,92.6,20 -Sun Sep 25 06:08:10 PDT 2011,165,82,7.649,3409.95,521773262,-947056941,92.6,20 -Sun Sep 25 06:08:11 PDT 2011,165,0,7.568,3417.47,521774010,-947057064,92.6,20 -Sun Sep 25 06:08:12 PDT 2011,164,80,7.411,3424.88,521774754,-947057174,92.8,20 -Sun Sep 25 06:08:13 PDT 2011,164,80,7.411,3432.29,521775496,-947057302,92.8,20 -Sun Sep 25 06:08:14 PDT 2011,164,80,7.568,3439.86,521776317,-947057466,92.8,20 -Sun Sep 25 06:08:15 PDT 2011,164,21,7.463,3447.32,521777135,-947057658,92.8,20 -Sun Sep 25 06:08:16 PDT 2011,163,80,7.411,3454.73,521777930,-947057862,92.8,20 -Sun Sep 25 06:08:17 PDT 2011,164,80,7.463,3462.19,521778702,-947058085,92.8,20 -Sun Sep 25 06:08:18 PDT 2011,164,81,7.437,3469.63,521779486,-947058328,93.0,20 -Sun Sep 25 06:08:19 PDT 2011,164,81,7.515,3477.14,521780315,-947058505,93.0,20 -Sun Sep 25 06:08:20 PDT 2011,164,82,7.52,3484.66,521781089,-947058646,93.0,20 -Sun Sep 25 06:08:21 PDT 2011,164,82,7.52,3492.18,521781936,-947058791,93.0,20 -Sun Sep 25 06:08:22 PDT 2011,164,78,7.591,3499.8,521782753,-947058940,93.0,20 -Sun Sep 25 06:08:23 PDT 2011,164,34,7.467,3507.24,521783562,-947059127,93.0,20 -Sun Sep 25 06:08:24 PDT 2011,164,77,6.936,3514.18,521784345,-947059331,93.0,20 -Sun Sep 25 06:08:25 PDT 2011,163,81,6.76,3521.01,521785013,-947059614,93.0,20 -Sun Sep 25 06:08:26 PDT 2011,162,80,6.718,3527.66,521785652,-947059870,93.0,20 -Sun Sep 25 06:08:27 PDT 2011,161,81,6.656,3534.31,521786335,-947060063,93.0,20 -Sun Sep 25 06:08:28 PDT 2011,160,82,6.739,3541.05,521787030,-947060225,93.0,20 -Sun Sep 25 06:08:29 PDT 2011,160,83,6.825,3547.88,521787734,-947060317,93.0,20 -Sun Sep 25 06:08:30 PDT 2011,160,84,6.936,3554.81,521788512,-947060435,93.2,20 -Sun Sep 25 06:08:31 PDT 2011,161,84,7.004,3561.82,521789272,-947060627,93.4,20 -Sun Sep 25 06:08:32 PDT 2011,161,83,6.981,3568.8,521790030,-947060826,93.6,20 -Sun Sep 25 06:08:33 PDT 2011,161,83,6.936,3575.75,521790814,-947061021,93.8,20 -Sun Sep 25 06:08:34 PDT 2011,162,83,6.891,3582.63,521791557,-947061214,94.0,20 -Sun Sep 25 06:08:35 PDT 2011,162,83,6.94,3589.57,521792299,-947061399,94.0,20 -Sun Sep 25 06:08:36 PDT 2011,162,84,7.077,3599.52,521793318,-947061634,94.2,20 -Sun Sep 25 06:08:37 PDT 2011,162,84,7.077,3603.79,521793735,-947061723,94.4,20 -Sun Sep 25 06:08:38 PDT 2011,162,84,7.077,3610.8,521794474,-947061914,94.4,20 -Sun Sep 25 06:08:39 PDT 2011,163,85,7.077,3617.87,521795169,-947062110,94.4,20 -Sun Sep 25 06:08:40 PDT 2011,163,85,7.1,3624.97,521795899,-947062314,94.6,20 -Sun Sep 25 06:08:41 PDT 2011,163,88,7.171,3632.17,521796725,-947062417,94.6,20 -Sun Sep 25 06:08:42 PDT 2011,162,89,7.243,3639.39,521797552,-947062519,94.6,20 -Sun Sep 25 06:08:43 PDT 2011,163,92,7.418,3646.8,521798350,-947062677,94.8,20 -Sun Sep 25 06:08:44 PDT 2011,163,92,7.602,3654.41,521799159,-947062783,94.8,20 -Sun Sep 25 06:08:45 PDT 2011,163,86,7.795,3662.2,521800027,-947062875,94.8,20 -Sun Sep 25 06:08:46 PDT 2011,163,87,7.851,3670.05,521800929,-947062996,94.8,20 -Sun Sep 25 06:08:47 PDT 2011,163,88,8.088,3678.14,521801783,-947063159,95.0,20 -Sun Sep 25 06:08:48 PDT 2011,163,35,8.118,3686.26,521802617,-947063227,95.0,20 -Sun Sep 25 06:08:49 PDT 2011,163,88,8.149,3694.41,521803571,-947063318,95.0,20 -Sun Sep 25 06:08:50 PDT 2011,163,88,8.211,3702.62,521804451,-947063476,95.0,20 -Sun Sep 25 06:08:51 PDT 2011,163,88,8.211,3710.83,521805306,-947063646,95.0,20 -Sun Sep 25 06:08:52 PDT 2011,162,0,7.997,3718.83,521806113,-947063891,95.0,20 -Sun Sep 25 06:08:53 PDT 2011,162,0,7.88,3726.71,521806940,-947064142,95.0,20 -Sun Sep 25 06:08:54 PDT 2011,161,0,7.711,3734.42,521807737,-947064383,95.0,20 -Sun Sep 25 06:08:55 PDT 2011,160,82,7.522,3741.94,521808521,-947064582,95.0,20 -Sun Sep 25 06:08:56 PDT 2011,159,91,7.444,3749.38,521809238,-947064762,95.2,20 -Sun Sep 25 06:08:57 PDT 2011,158,94,7.766,3757.15,521810043,-947064957,95.2,20 -Sun Sep 25 06:08:58 PDT 2011,158,91,7.823,3764.97,521810868,-947065106,95.2,20 -Sun Sep 25 06:08:59 PDT 2011,157,91,7.909,3772.88,521811693,-947065224,95.2,20 -Sun Sep 25 06:09:00 PDT 2011,157,28,7.738,3780.65,521812511,-947065366,95.2,20 -Sun Sep 25 06:09:01 PDT 2011,157,81,7.656,3788.28,521813378,-947065474,95.2,20 -Sun Sep 25 06:09:02 PDT 2011,157,81,7.548,3795.82,521814237,-947065463,95.2,20 -Sun Sep 25 06:09:03 PDT 2011,157,81,7.444,3803.27,521815062,-947065468,95.2,20 -Sun Sep 25 06:09:04 PDT 2011,157,81,7.548,3810.82,521815917,-947065509,95.2,20 -Sun Sep 25 06:09:05 PDT 2011,157,80,7.522,3818.34,521816715,-947065561,95.2,20 -Sun Sep 25 06:09:06 PDT 2011,157,80,7.342,3825.7,521817507,-947065663,95.2,20 -Sun Sep 25 06:09:07 PDT 2011,157,80,7.444,3833.12,521818292,-947065830,95.2,20 -Sun Sep 25 06:09:08 PDT 2011,157,82,7.47,3840.59,521819078,-947066009,95.2,20 -Sun Sep 25 06:09:09 PDT 2011,157,82,7.548,3848.14,521819816,-947066265,95.2,20 -Sun Sep 25 06:09:10 PDT 2011,157,84,7.629,3855.77,521820568,-947066537,95.2,20 -Sun Sep 25 06:09:11 PDT 2011,157,84,7.795,3863.57,521821322,-947066818,95.2,20 -Sun Sep 25 06:09:12 PDT 2011,157,83,7.795,3871.36,521822082,-947067112,95.2,20 -Sun Sep 25 06:09:13 PDT 2011,157,82,7.602,3878.96,521822856,-947067342,95.2,20 -Sun Sep 25 06:09:14 PDT 2011,158,82,7.683,3886.65,521823647,-947067575,95.2,20 -Sun Sep 25 06:09:15 PDT 2011,159,80,7.656,3894.3,521824415,-947067790,95.2,20 -Sun Sep 25 06:09:16 PDT 2011,158,79,7.47,3901.77,521825173,-947067988,95.2,20 -Sun Sep 25 06:09:17 PDT 2011,158,79,7.317,3909.09,521825934,-947068126,95.2,20 -Sun Sep 25 06:09:18 PDT 2011,158,78,7.317,3916.41,521826724,-947068277,95.2,20 -Sun Sep 25 06:09:19 PDT 2011,158,77,7.243,3923.66,521827492,-947068395,95.2,20 -Sun Sep 25 06:09:20 PDT 2011,157,77,7.171,3930.82,521828239,-947068481,95.4,20 -Sun Sep 25 06:09:21 PDT 2011,157,84,7.077,3937.9,521829015,-947068604,95.6,20 -Sun Sep 25 06:09:22 PDT 2011,157,85,7.03,3944.93,521829770,-947068816,95.8,19 -Sun Sep 25 06:09:23 PDT 2011,157,84,7.147,3952.07,521830550,-947069010,96.0,19 -Sun Sep 25 06:09:24 PDT 2011,157,83,7.053,3959.13,521831189,-947069161,96.2,19 -Sun Sep 25 06:09:25 PDT 2011,156,82,7.007,3966.13,521832051,-947069332,96.2,19 -Sun Sep 25 06:09:26 PDT 2011,157,82,6.962,3973.1,521832748,-947069532,96.4,19 -Sun Sep 25 06:09:27 PDT 2011,157,83,6.985,3980.08,521833371,-947069722,96.4,19 -Sun Sep 25 06:09:28 PDT 2011,157,83,6.917,3987.0,521834113,-947069966,96.6,19 -Sun Sep 25 06:09:29 PDT 2011,158,82,6.917,3993.92,521834687,-947070216,96.6,19 -Sun Sep 25 06:09:30 PDT 2011,158,83,6.895,4000.81,521835359,-947070495,96.8,19 -Sun Sep 25 06:09:31 PDT 2011,159,84,7.007,4007.82,521836089,-947070729,97.0,19 -Sun Sep 25 06:09:32 PDT 2011,160,84,7.053,4014.87,521836792,-947070933,97.2,19 -Sun Sep 25 06:09:33 PDT 2011,161,83,7.077,4021.95,521837500,-947071147,97.4,19 -Sun Sep 25 06:09:34 PDT 2011,162,83,6.985,4028.93,521838254,-947071341,97.6,19 -Sun Sep 25 06:09:35 PDT 2011,162,82,6.866,4035.8,521839026,-947071438,97.8,19 -Sun Sep 25 06:09:36 PDT 2011,163,82,6.822,4042.62,521839779,-947071555,98.0,19 -Sun Sep 25 06:09:37 PDT 2011,163,81,6.888,4049.51,521840491,-947071661,98.2,19 -Sun Sep 25 06:09:38 PDT 2011,163,81,6.779,4056.3,521841235,-947071764,98.4,19 -Sun Sep 25 06:09:39 PDT 2011,163,82,6.757,4063.06,521841966,-947071884,98.4,19 -Sun Sep 25 06:09:40 PDT 2011,163,81,6.694,4069.74,521842712,-947071985,98.6,19 -Sun Sep 25 06:09:41 PDT 2011,163,82,6.8,4076.54,521843472,-947072062,98.8,19 -Sun Sep 25 06:09:42 PDT 2011,164,84,6.822,4083.36,521844198,-947072167,99.2,19 -Sun Sep 25 06:09:43 PDT 2011,164,84,7.023,4090.38,521844984,-947072277,99.4,19 -Sun Sep 25 06:09:44 PDT 2011,165,84,7.0,4097.38,521845720,-947072391,99.6,19 -Sun Sep 25 06:09:45 PDT 2011,165,85,7.069,4104.45,521846455,-947072503,100.0,19 -Sun Sep 25 06:09:46 PDT 2011,166,85,7.093,4111.61,521847232,-947072585,100.2,19 -Sun Sep 25 06:09:47 PDT 2011,166,84,7.069,4118.61,521847972,-947072708,100.2,19 -Sun Sep 25 06:09:48 PDT 2011,165,83,7.046,4125.66,521848712,-947072892,100.4,19 -Sun Sep 25 06:09:49 PDT 2011,165,83,6.888,4132.55,521849446,-947073072,100.6,19 -Sun Sep 25 06:09:50 PDT 2011,164,83,6.955,4139.5,521850143,-947073232,100.8,19 -Sun Sep 25 06:09:51 PDT 2011,164,84,6.932,4146.44,521850883,-947073377,100.8,19 -Sun Sep 25 06:09:52 PDT 2011,164,84,7.0,4153.44,521851617,-947073494,101.0,19 -Sun Sep 25 06:09:53 PDT 2011,163,84,6.977,4160.41,521852393,-947073584,101.0,19 -Sun Sep 25 06:09:54 PDT 2011,164,83,7.0,4167.41,521853166,-947073680,101.2,19 -Sun Sep 25 06:09:55 PDT 2011,163,78,7.069,4174.48,521853926,-947073861,101.2,19 -Sun Sep 25 06:09:56 PDT 2011,164,78,7.212,4181.69,521854707,-947074030,101.2,19 -Sun Sep 25 06:09:57 PDT 2011,163,79,7.237,4188.94,521855463,-947074225,101.4,19 -Sun Sep 25 06:09:58 PDT 2011,163,80,7.314,4196.24,521856231,-947074474,101.4,19 -Sun Sep 25 06:09:59 PDT 2011,163,80,7.39,4203.63,521856922,-947074736,101.4,19 -Sun Sep 25 06:10:00 PDT 2011,163,81,7.416,4211.05,521857739,-947074975,101.4,19 -Sun Sep 25 06:10:01 PDT 2011,162,81,7.441,4218.49,521858501,-947075186,101.4,19 -Sun Sep 25 06:10:02 PDT 2011,162,35,7.546,4226.04,521859363,-947075314,101.6,19 -Sun Sep 25 06:10:03 PDT 2011,161,83,7.573,4233.61,521860177,-947075395,101.6,19 -Sun Sep 25 06:10:04 PDT 2011,161,83,7.654,4241.26,521861043,-947075516,101.6,19 -Sun Sep 25 06:10:05 PDT 2011,161,30,7.681,4248.95,521861873,-947075677,101.6,19 -Sun Sep 25 06:10:06 PDT 2011,160,94,7.793,4256.74,521862735,-947075861,101.6,19 -Sun Sep 25 06:10:07 PDT 2011,160,94,8.057,4264.8,521863473,-947076067,101.6,19 -Sun Sep 25 06:10:08 PDT 2011,161,94,8.243,4273.04,521864302,-947076270,101.6,19 -Sun Sep 25 06:10:09 PDT 2011,160,94,8.118,4281.16,521865092,-947076398,101.8,19 -Sun Sep 25 06:10:10 PDT 2011,158,0,8.18,4289.34,521865998,-947076536,101.8,19 -Sun Sep 25 06:10:11 PDT 2011,157,0,8.275,4297.61,521866839,-947076684,101.8,19 -Sun Sep 25 06:10:12 PDT 2011,156,0,8.168,4305.8,521867739,-947076852,101.8,19 -Sun Sep 25 06:10:13 PDT 2011,155,0,8.231,4314.01,521868616,-947077021,101.8,19 -Sun Sep 25 06:10:14 PDT 2011,154,0,8.327,4322.34,521869528,-947077239,101.8,19 -Sun Sep 25 06:10:15 PDT 2011,153,0,8.459,4330.8,521870444,-947077482,101.8,19 -Sun Sep 25 06:10:16 PDT 2011,152,0,8.492,4339.3,521871424,-947077623,101.8,19 -Sun Sep 25 06:10:17 PDT 2011,151,0,8.526,4347.81,521872380,-947077685,101.8,19 -Sun Sep 25 06:10:18 PDT 2011,151,0,8.56,4356.38,521873378,-947077726,101.8,19 -Sun Sep 25 06:10:19 PDT 2011,151,0,8.56,4364.94,521874339,-947077839,101.8,19 -Sun Sep 25 06:10:20 PDT 2011,150,0,8.629,4373.56,521875251,-947078130,101.8,19 -Sun Sep 25 06:10:21 PDT 2011,148,0,8.664,4382.23,521876128,-947078410,101.8,19 -Sun Sep 25 06:10:22 PDT 2011,146,0,8.664,4390.89,521877045,-947078702,101.8,19 -Sun Sep 25 06:10:23 PDT 2011,144,0,8.699,4399.59,521877959,-947078952,101.8,19 -Sun Sep 25 06:10:24 PDT 2011,142,0,8.664,4408.26,521878850,-947079165,101.8,19 -Sun Sep 25 06:10:25 PDT 2011,141,0,8.538,4416.79,521879699,-947079395,101.8,19 -Sun Sep 25 06:10:26 PDT 2011,141,0,8.471,4425.26,521880648,-947079526,101.8,19 -Sun Sep 25 06:10:27 PDT 2011,141,76,8.471,4433.74,521881605,-947079596,101.6,19 -Sun Sep 25 06:10:28 PDT 2011,141,72,8.437,4442.17,521882485,-947079711,101.4,19 -Sun Sep 25 06:10:29 PDT 2011,142,72,8.437,4450.61,521883409,-947079846,101.2,19 -Sun Sep 25 06:10:30 PDT 2011,144,72,8.471,4459.08,521884334,-947079941,101.2,19 -Sun Sep 25 06:10:31 PDT 2011,145,72,8.504,4467.59,521885212,-947080076,101.0,19 -Sun Sep 25 06:10:32 PDT 2011,145,0,8.504,4476.09,521886078,-947080260,100.8,19 -Sun Sep 25 06:10:33 PDT 2011,144,0,8.307,4484.4,521886969,-947080439,100.8,19 -Sun Sep 25 06:10:34 PDT 2011,144,0,8.243,4492.64,521887845,-947080639,100.6,19 -Sun Sep 25 06:10:35 PDT 2011,144,0,8.211,4500.93,521888703,-947080845,100.6,19 -Sun Sep 25 06:10:36 PDT 2011,144,21,8.027,4508.88,521889557,-947080990,100.4,19 -Sun Sep 25 06:10:37 PDT 2011,144,77,7.879,4516.76,521890410,-947081108,100.4,19 -Sun Sep 25 06:10:38 PDT 2011,145,77,7.86,4524.62,521891255,-947081287,100.4,19 -Sun Sep 25 06:10:39 PDT 2011,145,77,7.918,4532.54,521892111,-947081451,100.2,19 -Sun Sep 25 06:10:40 PDT 2011,146,84,7.948,4540.99,521892990,-947081623,100.2,19 -Sun Sep 25 06:10:41 PDT 2011,148,77,7.948,4551.91,521894132,-947081758,100.2,19 -Sun Sep 25 06:10:42 PDT 2011,148,76,7.948,4556.44,521894607,-947081849,100.0,19 -Sun Sep 25 06:10:43 PDT 2011,149,75,7.803,4564.18,521895386,-947081985,100.0,19 -Sun Sep 25 06:10:44 PDT 2011,150,74,7.663,4571.85,521896204,-947082120,100.0,19 -Sun Sep 25 06:10:45 PDT 2011,150,74,7.581,4579.44,521897024,-947082261,100.0,19 -Sun Sep 25 06:10:46 PDT 2011,151,73,7.581,4587.01,521897844,-947082474,100.0,19 -Sun Sep 25 06:10:47 PDT 2011,151,73,7.449,4594.46,521898670,-947082654,100.0,19 -Sun Sep 25 06:10:48 PDT 2011,151,72,7.502,4601.96,521899482,-947082820,100.0,19 -Sun Sep 25 06:10:49 PDT 2011,150,73,7.502,4609.46,521900285,-947083001,99.8,19 -Sun Sep 25 06:10:50 PDT 2011,149,73,7.475,4616.94,521901096,-947083098,99.8,19 -Sun Sep 25 06:10:51 PDT 2011,149,73,7.608,4624.54,521901909,-947083235,99.8,19 -Sun Sep 25 06:10:52 PDT 2011,149,74,7.498,4632.04,521902694,-947083384,99.8,19 -Sun Sep 25 06:10:53 PDT 2011,149,80,7.394,4639.44,521903471,-947083526,99.8,19 -Sun Sep 25 06:10:54 PDT 2011,150,80,7.219,4646.66,521904155,-947083648,99.8,19 -Sun Sep 25 06:10:55 PDT 2011,150,27,7.006,4653.66,521904890,-947083804,99.8,19 -Sun Sep 25 06:10:56 PDT 2011,150,81,6.916,4660.58,521905638,-947083983,99.8,19 -Sun Sep 25 06:10:57 PDT 2011,150,81,6.983,4667.56,521906349,-947084163,99.8,19 -Sun Sep 25 06:10:58 PDT 2011,150,25,6.961,4674.52,521907059,-947084306,99.8,19 -Sun Sep 25 06:10:59 PDT 2011,151,81,6.871,4681.39,521907783,-947084477,99.8,19 -Sun Sep 25 06:11:00 PDT 2011,151,83,6.678,4688.07,521908541,-947084623,99.8,19 -Sun Sep 25 06:11:01 PDT 2011,150,86,6.871,4694.94,521909293,-947084746,99.8,19 -Sun Sep 25 06:11:02 PDT 2011,150,87,7.006,4701.95,521909959,-947085046,99.8,19 -Sun Sep 25 06:11:03 PDT 2011,150,88,7.171,4709.12,521910741,-947085314,99.8,19 -Sun Sep 25 06:11:04 PDT 2011,150,88,7.343,4716.46,521911505,-947085504,100.0,19 -Sun Sep 25 06:11:05 PDT 2011,151,88,7.343,4723.8,521912272,-947085622,100.2,19 -Sun Sep 25 06:11:06 PDT 2011,150,0,7.195,4731.0,521913107,-947085719,100.4,19 -Sun Sep 25 06:11:07 PDT 2011,151,0,6.983,4737.98,521913927,-947085737,100.6,19 -Sun Sep 25 06:11:08 PDT 2011,151,0,7.006,4744.99,521914693,-947085838,100.6,19 -Sun Sep 25 06:11:09 PDT 2011,151,0,6.806,4751.79,521915401,-947085934,100.8,19 -Sun Sep 25 06:11:10 PDT 2011,151,0,6.555,4758.35,521916146,-947086027,101.0,19 -Sun Sep 25 06:11:11 PDT 2011,151,0,6.515,4764.86,521916873,-947086056,101.0,19 -Sun Sep 25 06:11:12 PDT 2011,150,0,6.437,4771.3,521917622,-947086105,101.2,19 -Sun Sep 25 06:11:13 PDT 2011,149,0,6.476,4777.78,521918336,-947086180,101.2,19 -Sun Sep 25 06:11:14 PDT 2011,148,0,6.575,4784.35,521919034,-947086307,101.4,19 -Sun Sep 25 06:11:15 PDT 2011,147,0,6.476,4790.83,521919761,-947086448,101.4,19 -Sun Sep 25 06:11:16 PDT 2011,147,0,6.575,4797.4,521920417,-947086653,101.4,19 -Sun Sep 25 06:11:17 PDT 2011,148,0,6.515,4803.92,521921089,-947086835,101.6,19 -Sun Sep 25 06:11:18 PDT 2011,148,0,6.515,4810.44,521921802,-947086972,101.6,19 -Sun Sep 25 06:11:19 PDT 2011,148,0,6.595,4817.03,521922523,-947087064,101.4,19 -Sun Sep 25 06:11:20 PDT 2011,147,0,6.699,4823.73,521923277,-947087120,101.2,19 -Sun Sep 25 06:11:21 PDT 2011,146,0,6.678,4830.41,521924015,-947087196,101.2,19 -Sun Sep 25 06:11:22 PDT 2011,144,0,6.678,4837.08,521924760,-947087267,101.0,19 -Sun Sep 25 06:11:23 PDT 2011,143,0,6.595,4843.68,521925491,-947087344,100.8,19 -Sun Sep 25 06:11:24 PDT 2011,140,0,6.468,4850.15,521926201,-947087419,100.8,19 -Sun Sep 25 06:11:25 PDT 2011,140,0,6.372,4856.52,521926893,-947087516,100.8,19 -Sun Sep 25 06:11:26 PDT 2011,140,0,6.391,4862.91,521927558,-947087652,100.6,19 -Sun Sep 25 06:11:27 PDT 2011,140,0,6.334,4869.24,521928234,-947087753,100.6,19 -Sun Sep 25 06:11:28 PDT 2011,141,0,6.26,4875.5,521928859,-947087871,100.4,19 -Sun Sep 25 06:11:29 PDT 2011,141,0,5.882,4881.39,521929442,-947087974,100.4,19 -Sun Sep 25 06:11:30 PDT 2011,141,0,5.476,4886.86,521930037,-947088024,100.4,19 -Sun Sep 25 06:11:31 PDT 2011,141,0,5.049,4891.91,521930541,-947088124,100.4,19 -Sun Sep 25 06:11:32 PDT 2011,141,0,4.933,4896.84,521931060,-947088210,100.2,19 -Sun Sep 25 06:11:33 PDT 2011,141,0,4.866,4901.71,521931535,-947088272,100.2,19 -Sun Sep 25 06:11:34 PDT 2011,140,0,4.536,4906.25,521931966,-947088300,100.2,19 -Sun Sep 25 06:11:35 PDT 2011,140,0,3.987,4910.23,521932321,-947088342,100.2,19 -Sun Sep 25 06:11:36 PDT 2011,139,0,3.51,4913.74,521932560,-947088426,100.2,19 -Sun Sep 25 06:11:37 PDT 2011,139,0,2.419,4916.16,521932779,-947088475,100.2,19 -Sun Sep 25 06:11:38 PDT 2011,139,0,2.126,4918.29,521932927,-947088536,100.2,19 -Sun Sep 25 06:11:39 PDT 2011,137,0,1.82,4920.11,521932806,-947088974,100.0,19 -Sun Sep 25 06:11:40 PDT 2011,137,0,1.82,4921.93,521932640,-947089332,100.0,19 -Sun Sep 25 06:11:41 PDT 2011,137,0,1.82,4923.75,521932569,-947089555,100.0,19 -Sun Sep 25 06:11:42 PDT 2011,137,0,0.0,4923.75,521932506,-947089649,100.0,19 -Sun Sep 25 06:12:15 PDT 2011,134,0,0.0,4923.75,521932546,-947089305,100.0,19 -Sun Sep 25 06:12:16 PDT 2011,135,0,26.112,4950.28,521932596,-947089345,100.0,19 -Sun Sep 25 06:12:17 PDT 2011,136,0,0.0,4950.28,521932715,-947089372,100.0,19 -Sun Sep 25 06:12:18 PDT 2011,137,34,2.13,4952.64,521933092,-947089408,100.0,19 -Sun Sep 25 06:12:19 PDT 2011,137,34,2.693,4955.04,521933549,-947089367,100.0,19 -Sun Sep 25 06:12:20 PDT 2011,138,43,3.377,4958.42,521934023,-947089314,100.0,19 -Sun Sep 25 06:12:21 PDT 2011,138,49,3.809,4962.22,521934593,-947089319,100.0,19 -Sun Sep 25 06:12:22 PDT 2011,139,59,4.231,4966.46,521935223,-947089301,100.0,19 -Sun Sep 25 06:12:23 PDT 2011,140,69,5.038,4971.49,521935872,-947089479,100.0,19 -Sun Sep 25 06:12:24 PDT 2011,142,85,6.031,4977.52,521936626,-947089755,100.0,19 -Sun Sep 25 06:12:25 PDT 2011,144,85,6.929,4984.45,521937525,-947090092,99.8,19 -Sun Sep 25 06:12:26 PDT 2011,146,85,7.729,4992.18,521938415,-947090410,99.6,19 -Sun Sep 25 06:12:27 PDT 2011,147,22,7.619,4999.8,521939275,-947090735,99.4,19 -Sun Sep 25 06:12:28 PDT 2011,148,95,7.814,5007.62,521940161,-947091008,99.2,19 -Sun Sep 25 06:12:29 PDT 2011,149,90,8.141,5015.76,521940976,-947091180,99.0,19 -Sun Sep 25 06:12:30 PDT 2011,149,82,8.299,5024.06,521941889,-947091371,99.0,19 -Sun Sep 25 06:12:31 PDT 2011,150,83,8.429,5032.48,521942754,-947091517,98.8,19 -Sun Sep 25 06:12:32 PDT 2011,150,84,8.564,5041.05,521943712,-947091693,98.8,19 -Sun Sep 25 06:12:33 PDT 2011,149,84,8.633,5049.68,521944663,-947091906,98.6,19 -Sun Sep 25 06:12:34 PDT 2011,149,84,8.463,5058.14,521945561,-947092108,98.4,19 -Sun Sep 25 06:12:35 PDT 2011,148,0,8.203,5066.35,521946439,-947092296,98.0,19 -Sun Sep 25 06:12:36 PDT 2011,147,81,8.203,5074.55,521947368,-947092484,97.8,19 -Sun Sep 25 06:12:37 PDT 2011,147,87,8.31,5082.86,521948246,-947092680,97.6,19 -Sun Sep 25 06:12:38 PDT 2011,147,87,8.541,5091.4,521949183,-947092821,97.4,19 -Sun Sep 25 06:12:39 PDT 2011,147,87,8.679,5100.08,521950102,-947092961,97.2,19 -Sun Sep 25 06:12:40 PDT 2011,147,0,8.575,5108.66,521951040,-947093104,97.2,19 -Sun Sep 25 06:12:41 PDT 2011,147,0,8.507,5117.16,521951951,-947093217,97.0,19 -Sun Sep 25 06:12:42 PDT 2011,147,0,8.408,5125.57,521952891,-947093330,96.8,19 -Sun Sep 25 06:12:43 PDT 2011,146,0,8.246,5133.82,521953754,-947093449,96.8,19 -Sun Sep 25 06:12:44 PDT 2011,145,0,7.972,5141.79,521954613,-947093580,96.6,19 -Sun Sep 25 06:12:45 PDT 2011,145,83,7.827,5150.22,521955474,-947093732,96.6,19 -Sun Sep 25 06:12:46 PDT 2011,144,89,7.605,5160.69,521956593,-947093950,96.4,19 -Sun Sep 25 06:12:47 PDT 2011,145,82,7.605,5165.0,521957051,-947094036,96.4,19 -Sun Sep 25 06:12:48 PDT 2011,145,82,7.579,5172.42,521957848,-947094194,96.4,19 -Sun Sep 25 06:12:49 PDT 2011,145,81,7.605,5180.03,521958647,-947094329,96.2,19 -Sun Sep 25 06:12:50 PDT 2011,146,80,7.538,5187.69,521959409,-947094462,96.2,19 -Sun Sep 25 06:12:51 PDT 2011,147,86,7.433,5195.0,521960210,-947094583,96.2,19 -Sun Sep 25 06:12:52 PDT 2011,148,89,7.185,5202.19,521961003,-947094687,96.2,19 -Sun Sep 25 06:12:53 PDT 2011,150,92,7.332,5209.52,521961823,-947094821,96.2,19 -Sun Sep 25 06:12:54 PDT 2011,150,92,7.783,5217.3,521962658,-947094999,96.0,19 -Sun Sep 25 06:12:55 PDT 2011,151,27,7.869,5225.17,521963385,-947095173,96.0,19 -Sun Sep 25 06:12:56 PDT 2011,152,94,7.307,5232.48,521964169,-947095352,96.0,19 -Sun Sep 25 06:12:57 PDT 2011,153,95,7.233,5239.71,521964989,-947095512,96.0,19 -Sun Sep 25 06:12:58 PDT 2011,154,95,7.233,5246.94,521965718,-947095661,96.0,19 -Sun Sep 25 06:12:59 PDT 2011,154,94,7.257,5254.2,521966503,-947095807,96.0,19 -Sun Sep 25 06:13:00 PDT 2011,155,93,7.209,5261.41,521967265,-947095974,96.2,19 -Sun Sep 25 06:13:01 PDT 2011,156,95,7.161,5268.57,521968037,-947096125,96.4,19 -Sun Sep 25 06:13:02 PDT 2011,156,97,7.137,5275.71,521968853,-947096199,96.6,19 -Sun Sep 25 06:13:03 PDT 2011,157,100,7.459,5283.17,521969671,-947096302,96.6,19 -Sun Sep 25 06:13:04 PDT 2011,157,102,7.591,5290.76,521970510,-947096382,96.8,19 -Sun Sep 25 06:13:05 PDT 2011,158,39,7.859,5298.65,521971344,-947096489,97.0,19 -Sun Sep 25 06:13:06 PDT 2011,159,95,7.582,5306.2,521972103,-947096637,97.0,19 -Sun Sep 25 06:13:07 PDT 2011,160,89,7.25,5313.45,521972906,-947096825,97.2,19 -Sun Sep 25 06:13:08 PDT 2011,161,89,7.13,5320.58,521973592,-947096986,97.2,19 -Sun Sep 25 06:13:09 PDT 2011,162,85,6.858,5327.44,521974341,-947097136,97.6,19 -Sun Sep 25 06:13:10 PDT 2011,162,86,6.525,5333.96,521975020,-947097260,97.8,19 -Sun Sep 25 06:13:11 PDT 2011,162,89,6.565,5340.53,521975691,-947097361,98.0,19 -Sun Sep 25 06:13:12 PDT 2011,162,90,6.75,5347.28,521976449,-947097499,98.2,19 -Sun Sep 25 06:13:13 PDT 2011,163,91,6.858,5354.13,521977183,-947097631,98.4,19 -Sun Sep 25 06:13:14 PDT 2011,163,90,6.924,5361.06,521977924,-947097755,98.8,19 -Sun Sep 25 06:13:15 PDT 2011,163,90,6.924,5367.98,521978619,-947097877,99.2,19 -Sun Sep 25 06:13:16 PDT 2011,164,93,6.902,5374.88,521979400,-947098017,99.4,19 -Sun Sep 25 06:13:17 PDT 2011,164,93,7.014,5381.9,521980123,-947098146,99.8,19 -Sun Sep 25 06:13:18 PDT 2011,165,93,7.083,5388.98,521980886,-947098300,100.0,19 -Sun Sep 25 06:13:19 PDT 2011,165,93,7.107,5396.09,521981626,-947098450,100.2,19 -Sun Sep 25 06:13:20 PDT 2011,165,92,7.154,5403.24,521982330,-947098607,100.4,19 -Sun Sep 25 06:13:21 PDT 2011,166,92,7.093,5410.33,521983053,-947098751,100.6,19 -Sun Sep 25 06:13:22 PDT 2011,166,93,7.024,5417.36,521983760,-947098911,100.8,19 -Sun Sep 25 06:13:23 PDT 2011,167,93,7.093,5424.45,521984520,-947099082,100.8,19 -Sun Sep 25 06:13:24 PDT 2011,167,93,7.188,5431.64,521985222,-947099247,101.0,19 -Sun Sep 25 06:13:25 PDT 2011,167,92,7.14,5438.78,521985985,-947099408,101.2,19 -Sun Sep 25 06:13:26 PDT 2011,168,91,7.047,5445.83,521986787,-947099586,101.4,19 -Sun Sep 25 06:13:27 PDT 2011,168,91,6.979,5452.81,521987546,-947099731,101.8,19 -Sun Sep 25 06:13:28 PDT 2011,168,91,6.956,5459.76,521988321,-947099899,102.0,19 -Sun Sep 25 06:13:29 PDT 2011,168,92,6.956,5466.72,521989039,-947100191,102.2,19 -Sun Sep 25 06:13:30 PDT 2011,168,94,7.093,5473.81,521989794,-947100430,102.4,19 -Sun Sep 25 06:13:31 PDT 2011,168,91,7.212,5481.02,521990533,-947100663,102.6,19 -Sun Sep 25 06:13:32 PDT 2011,168,87,7.31,5488.33,521991273,-947100872,102.8,19 -Sun Sep 25 06:13:33 PDT 2011,168,86,7.31,5495.64,521991989,-947101067,103.0,19 -Sun Sep 25 06:13:34 PDT 2011,168,84,7.31,5502.95,521992688,-947101205,103.0,19 -Sun Sep 25 06:13:35 PDT 2011,168,83,7.117,5510.07,521993470,-947101289,103.2,19 -Sun Sep 25 06:13:36 PDT 2011,168,83,7.027,5517.1,521994252,-947101387,103.2,19 -Sun Sep 25 06:13:37 PDT 2011,168,84,7.005,5524.1,521995002,-947101497,103.4,19 -Sun Sep 25 06:13:38 PDT 2011,167,85,7.027,5531.13,521995705,-947101623,103.4,19 -Sun Sep 25 06:13:39 PDT 2011,168,84,7.097,5538.23,521996460,-947101765,103.6,19 -Sun Sep 25 06:13:40 PDT 2011,168,83,7.12,5545.35,521997181,-947101882,103.8,19 -Sun Sep 25 06:13:41 PDT 2011,168,83,7.027,5552.37,521997866,-947102023,104.2,19 -Sun Sep 25 06:13:42 PDT 2011,168,82,6.937,5559.31,521998642,-947102170,104.4,19 -Sun Sep 25 06:13:43 PDT 2011,168,86,6.937,5566.25,521999345,-947102323,104.6,19 -Sun Sep 25 06:13:44 PDT 2011,168,91,6.915,5573.16,522000090,-947102481,104.8,19 -Sun Sep 25 06:13:45 PDT 2011,168,92,6.959,5580.12,522000860,-947102633,105.0,19 -Sun Sep 25 06:13:46 PDT 2011,169,92,7.005,5587.13,522001612,-947102769,105.2,19 -Sun Sep 25 06:13:47 PDT 2011,168,92,7.097,5594.22,522002356,-947102908,105.4,19 -Sun Sep 25 06:13:48 PDT 2011,169,91,7.027,5601.25,522003124,-947103072,105.4,19 -Sun Sep 25 06:13:49 PDT 2011,169,91,7.027,5608.28,522003857,-947103205,105.6,19 -Sun Sep 25 06:13:50 PDT 2011,169,91,7.027,5615.3,522004593,-947103398,105.6,19 -Sun Sep 25 06:13:51 PDT 2011,169,91,6.959,5622.26,522005320,-947103548,105.8,19 -Sun Sep 25 06:13:52 PDT 2011,169,91,6.946,5629.21,522006097,-947103686,105.8,19 -Sun Sep 25 06:13:53 PDT 2011,169,91,7.037,5636.24,522006776,-947103802,106.0,19 -Sun Sep 25 06:13:54 PDT 2011,169,90,6.991,5643.24,522007544,-947103935,106.0,19 -Sun Sep 25 06:13:55 PDT 2011,169,91,6.969,5650.21,522008279,-947104032,106.0,19 -Sun Sep 25 06:13:56 PDT 2011,169,91,7.014,5657.22,522009011,-947104153,106.4,19 -Sun Sep 25 06:13:57 PDT 2011,168,91,7.014,5664.23,522009777,-947104316,106.6,19 -Sun Sep 25 06:13:58 PDT 2011,168,94,7.037,5671.27,522010528,-947104541,106.8,19 -Sun Sep 25 06:13:59 PDT 2011,168,89,7.037,5678.31,522011235,-947104751,107.0,19 -Sun Sep 25 06:14:00 PDT 2011,168,86,7.226,5685.53,522011986,-947104986,107.2,19 -Sun Sep 25 06:14:01 PDT 2011,168,86,7.202,5692.74,522012722,-947105214,107.4,19 -Sun Sep 25 06:14:02 PDT 2011,167,86,7.226,5699.96,522013480,-947105372,107.6,19 -Sun Sep 25 06:14:03 PDT 2011,167,85,7.178,5707.14,522014251,-947105485,107.6,19 -Sun Sep 25 06:14:04 PDT 2011,168,34,7.014,5714.15,522014984,-947105657,107.8,19 -Sun Sep 25 06:14:05 PDT 2011,167,79,6.836,5720.99,522015678,-947105809,108.0,19 -Sun Sep 25 06:14:06 PDT 2011,167,83,6.646,5727.69,522016406,-947105980,108.0,19 -Sun Sep 25 06:14:07 PDT 2011,167,87,6.667,5734.3,522017112,-947106163,108.2,19 -Sun Sep 25 06:14:08 PDT 2011,168,88,6.626,5740.93,522017809,-947106338,108.2,19 -Sun Sep 25 06:14:09 PDT 2011,167,89,6.667,5747.6,522018573,-947106448,108.2,19 -Sun Sep 25 06:14:10 PDT 2011,167,90,6.793,5754.39,522019332,-947106608,108.4,19 -Sun Sep 25 06:14:11 PDT 2011,167,91,6.858,5761.25,522020080,-947106737,108.4,19 -Sun Sep 25 06:14:12 PDT 2011,167,92,6.969,5768.22,522020823,-947106890,108.4,19 -Sun Sep 25 06:14:13 PDT 2011,166,93,6.969,5775.19,522021536,-947107057,108.4,19 -Sun Sep 25 06:14:14 PDT 2011,166,93,7.037,5782.22,522022231,-947107253,108.8,19 -Sun Sep 25 06:14:15 PDT 2011,166,92,7.154,5789.38,522022947,-947107401,109.0,19 -Sun Sep 25 06:14:16 PDT 2011,166,92,6.991,5796.37,522023654,-947107565,109.2,19 -Sun Sep 25 06:14:17 PDT 2011,166,91,7.107,5803.47,522024371,-947107736,109.4,19 -Sun Sep 25 06:14:18 PDT 2011,166,90,7.014,5810.49,522025084,-947107840,109.6,19 -Sun Sep 25 06:14:19 PDT 2011,166,89,6.924,5817.43,522025842,-947107951,109.8,19 -Sun Sep 25 06:14:20 PDT 2011,166,90,6.814,5824.23,522026647,-947108091,109.8,19 -Sun Sep 25 06:14:21 PDT 2011,166,92,6.946,5831.17,522027360,-947108226,110.0,19 -Sun Sep 25 06:14:22 PDT 2011,167,94,7.06,5838.23,522028087,-947108411,110.2,19 -Sun Sep 25 06:14:23 PDT 2011,167,95,7.178,5845.41,522028860,-947108563,110.4,19 -Sun Sep 25 06:14:24 PDT 2011,168,95,7.251,5852.66,522029674,-947108717,110.8,19 -Sun Sep 25 06:14:25 PDT 2011,169,92,7.3,5859.96,522030411,-947108848,111.0,19 -Sun Sep 25 06:14:26 PDT 2011,169,91,7.106,5867.07,522031155,-947109023,111.2,19 -Sun Sep 25 06:14:27 PDT 2011,170,89,6.923,5873.99,522031925,-947109196,111.4,19 -Sun Sep 25 06:14:28 PDT 2011,170,88,6.813,5880.8,522032578,-947109365,111.6,19 -Sun Sep 25 06:14:29 PDT 2011,171,90,6.728,5887.53,522033262,-947109622,111.8,19 -Sun Sep 25 06:14:30 PDT 2011,171,91,6.879,5894.41,522034013,-947109899,111.8,19 -Sun Sep 25 06:14:31 PDT 2011,171,90,6.945,5901.36,522034817,-947110157,112.0,19 -Sun Sep 25 06:14:32 PDT 2011,171,91,6.901,5908.26,522035573,-947110346,112.2,19 -Sun Sep 25 06:14:33 PDT 2011,171,94,6.923,5915.18,522036337,-947110507,112.4,19 -Sun Sep 25 06:14:34 PDT 2011,171,95,7.154,5922.33,522037213,-947110587,112.8,19 -Sun Sep 25 06:14:35 PDT 2011,171,96,7.275,5929.61,522037948,-947110669,113.0,19 -Sun Sep 25 06:14:36 PDT 2011,171,93,7.325,5937.1,522038712,-947110789,113.2,19 -Sun Sep 25 06:14:37 PDT 2011,171,79,7.275,5944.21,522039383,-947110942,113.4,19 -Sun Sep 25 06:14:38 PDT 2011,171,79,6.991,5951.2,522040107,-947111073,113.6,19 -Sun Sep 25 06:14:39 PDT 2011,170,87,6.729,5957.93,522040833,-947111217,113.8,19 -Sun Sep 25 06:14:40 PDT 2011,171,88,6.585,5964.51,522041433,-947111335,113.8,19 -Sun Sep 25 06:14:41 PDT 2011,170,89,6.729,5971.24,522042178,-947111447,114.0,19 -Sun Sep 25 06:14:42 PDT 2011,170,90,6.836,5978.08,522042955,-947111530,114.2,19 -Sun Sep 25 06:14:43 PDT 2011,170,94,6.902,5984.98,522043784,-947111616,114.2,19 -Sun Sep 25 06:14:44 PDT 2011,170,95,7.13,5992.11,522044506,-947111649,114.4,19 -Sun Sep 25 06:14:45 PDT 2011,170,98,7.275,5999.39,522045358,-947111718,114.4,19 -Sun Sep 25 06:14:46 PDT 2011,170,99,7.503,6006.89,522046067,-947111786,114.6,19 -Sun Sep 25 06:14:47 PDT 2011,170,100,7.582,6014.47,522046833,-947111897,114.8,19 -Sun Sep 25 06:14:48 PDT 2011,170,83,7.663,6022.13,522047522,-947112067,115.0,19 -Sun Sep 25 06:14:49 PDT 2011,169,83,7.636,6029.86,522048351,-947112222,115.4,19 -Sun Sep 25 06:14:50 PDT 2011,169,83,7.556,6038.01,522049158,-947112453,115.6,19 -Sun Sep 25 06:14:51 PDT 2011,169,0,7.609,6044.93,522049915,-947112615,115.8,19 -Sun Sep 25 06:14:52 PDT 2011,169,0,7.582,6052.52,522050703,-947112814,116.0,19 -Sun Sep 25 06:14:53 PDT 2011,168,0,7.451,6059.96,522051492,-947112935,116.0,19 -Sun Sep 25 06:14:54 PDT 2011,167,0,7.434,6067.4,522052334,-947113013,116.2,19 -Sun Sep 25 06:14:55 PDT 2011,165,0,7.512,6074.91,522053115,-947113004,116.4,19 -Sun Sep 25 06:14:56 PDT 2011,164,85,7.566,6082.48,522053937,-947113152,116.4,19 -Sun Sep 25 06:14:57 PDT 2011,163,87,7.757,6090.23,522054771,-947113218,116.6,19 -Sun Sep 25 06:14:58 PDT 2011,162,87,7.989,6098.22,522055676,-947113353,116.6,19 -Sun Sep 25 06:14:59 PDT 2011,162,87,8.079,6106.3,522056516,-947113459,116.8,19 -Sun Sep 25 06:15:00 PDT 2011,161,0,8.141,6114.44,522057420,-947113635,116.8,19 -Sun Sep 25 06:15:01 PDT 2011,161,0,8.109,6122.55,522058339,-947113811,116.8,19 -Sun Sep 25 06:15:02 PDT 2011,160,88,8.235,6130.79,522059215,-947114015,117.0,19 -Sun Sep 25 06:15:03 PDT 2011,158,88,8.364,6139.15,522060156,-947114218,117.0,19 -Sun Sep 25 06:15:04 PDT 2011,157,88,8.53,6147.68,522061043,-947114444,117.0,19 -Sun Sep 25 06:15:05 PDT 2011,155,0,8.564,6156.24,522061921,-947114656,117.0,19 -Sun Sep 25 06:15:06 PDT 2011,154,0,8.496,6164.74,522062877,-947114836,117.2,19 -Sun Sep 25 06:15:07 PDT 2011,152,0,8.235,6172.98,522063729,-947115028,117.2,19 -Sun Sep 25 06:15:08 PDT 2011,150,0,8.079,6181.05,522064593,-947115221,117.2,19 -Sun Sep 25 06:15:09 PDT 2011,149,0,8.109,6189.16,522065415,-947115420,117.2,19 -Sun Sep 25 06:15:10 PDT 2011,147,0,8.172,6197.34,522066257,-947115661,117.0,19 -Sun Sep 25 06:15:11 PDT 2011,146,0,8.022,6205.36,522067035,-947115868,116.8,19 -Sun Sep 25 06:15:12 PDT 2011,145,0,7.816,6213.17,522067842,-947116108,116.8,19 -Sun Sep 25 06:15:13 PDT 2011,143,0,7.648,6220.82,522068642,-947116294,116.6,19 -Sun Sep 25 06:15:14 PDT 2011,143,81,7.704,6228.53,522069519,-947116281,116.4,19 -Sun Sep 25 06:15:15 PDT 2011,144,81,7.816,6236.39,522070397,-947116309,116.4,19 -Sun Sep 25 06:15:16 PDT 2011,144,81,7.874,6244.22,522071271,-947116311,116.2,19 -Sun Sep 25 06:15:17 PDT 2011,145,0,7.903,6252.12,522072133,-947116390,116.2,19 -Sun Sep 25 06:15:18 PDT 2011,144,0,7.992,6260.11,522073035,-947116537,116.0,19 -Sun Sep 25 06:15:19 PDT 2011,143,0,7.962,6268.07,522073870,-947116765,116.0,19 -Sun Sep 25 06:15:20 PDT 2011,143,0,7.514,6275.59,522074723,-947116947,116.0,19 -Sun Sep 25 06:15:21 PDT 2011,142,0,7.594,6283.18,522075564,-947117146,115.8,19 -Sun Sep 25 06:15:22 PDT 2011,142,0,7.514,6290.7,522076355,-947117340,115.6,19 -Sun Sep 25 06:15:23 PDT 2011,141,0,7.209,6297.9,522077121,-947117523,115.4,19 -Sun Sep 25 06:15:24 PDT 2011,141,74,6.689,6304.59,522077841,-947117684,115.2,19 -Sun Sep 25 06:15:25 PDT 2011,141,81,6.746,6311.34,522078548,-947117874,115.0,19 -Sun Sep 25 06:15:26 PDT 2011,143,85,7.174,6318.51,522079353,-947118064,114.8,19 -Sun Sep 25 06:15:27 PDT 2011,145,91,7.772,6326.29,522080217,-947118191,114.6,19 -Sun Sep 25 06:15:28 PDT 2011,147,93,8.219,6334.5,522081139,-947118354,114.6,19 -Sun Sep 25 06:15:29 PDT 2011,149,96,8.581,6343.09,522082090,-947118531,114.4,19 -Sun Sep 25 06:15:30 PDT 2011,150,96,8.828,6351.91,522083061,-947118714,114.2,19 -Sun Sep 25 06:15:31 PDT 2011,151,89,9.013,6360.93,522084032,-947118907,114.2,19 -Sun Sep 25 06:15:32 PDT 2011,151,89,9.167,6370.09,522085036,-947119114,114.0,19 -Sun Sep 25 06:15:33 PDT 2011,152,79,9.246,6379.34,522085988,-947119330,114.0,19 -Sun Sep 25 06:15:34 PDT 2011,152,79,9.246,6388.59,522086889,-947119603,114.0,19 -Sun Sep 25 06:15:35 PDT 2011,152,79,9.207,6397.79,522087868,-947119844,113.8,19 -Sun Sep 25 06:15:36 PDT 2011,150,0,8.938,6406.73,522088748,-947120064,113.8,19 -Sun Sep 25 06:15:37 PDT 2011,148,0,8.72,6415.45,522089671,-947120222,113.8,19 -Sun Sep 25 06:15:38 PDT 2011,146,0,8.168,6423.62,522090555,-947120353,113.6,19 -Sun Sep 25 06:15:39 PDT 2011,144,0,7.641,6431.26,522091373,-947120473,113.6,19 -Sun Sep 25 06:15:40 PDT 2011,143,76,7.533,6438.79,522092208,-947120579,113.4,19 -Sun Sep 25 06:15:41 PDT 2011,144,86,7.696,6446.49,522093050,-947120686,113.2,19 -Sun Sep 25 06:15:42 PDT 2011,144,86,7.867,6454.36,522093871,-947120824,113.0,19 -Sun Sep 25 06:15:43 PDT 2011,145,86,7.955,6462.31,522094699,-947120921,112.8,19 -Sun Sep 25 06:15:44 PDT 2011,145,25,7.925,6470.24,522095559,-947121002,112.6,19 -Sun Sep 25 06:15:45 PDT 2011,146,86,7.838,6478.07,522096401,-947121100,112.6,19 -Sun Sep 25 06:15:46 PDT 2011,146,86,7.838,6485.92,522097253,-947121208,112.4,19 -Sun Sep 25 06:15:47 PDT 2011,146,87,7.955,6493.87,522098097,-947121334,112.2,19 -Sun Sep 25 06:15:48 PDT 2011,146,87,7.955,6501.82,522098918,-947121547,112.2,19 -Sun Sep 25 06:15:49 PDT 2011,147,87,7.984,6509.81,522099769,-947121739,112.0,19 -Sun Sep 25 06:15:50 PDT 2011,148,77,7.984,6517.79,522100601,-947121916,112.0,19 -Sun Sep 25 06:15:51 PDT 2011,149,78,7.915,6525.71,522101430,-947122105,112.0,19 -Sun Sep 25 06:15:52 PDT 2011,151,85,8.034,6533.74,522102263,-947122342,111.8,19 -Sun Sep 25 06:15:53 PDT 2011,151,88,8.187,6541.93,522103055,-947122535,111.8,19 -Sun Sep 25 06:15:54 PDT 2011,151,88,8.125,6550.05,522103893,-947122708,111.8,19 -Sun Sep 25 06:15:55 PDT 2011,151,87,8.156,6558.21,522104773,-947122847,111.6,19 -Sun Sep 25 06:15:56 PDT 2011,151,87,8.003,6566.21,522105661,-947122952,111.6,19 -Sun Sep 25 06:15:57 PDT 2011,152,86,8.003,6574.22,522106495,-947123024,111.6,19 -Sun Sep 25 06:15:58 PDT 2011,152,86,7.944,6582.16,522107329,-947123102,111.6,19 -Sun Sep 25 06:15:59 PDT 2011,153,32,7.856,6590.02,522108181,-947123167,111.6,19 -Sun Sep 25 06:16:00 PDT 2011,153,89,7.578,6597.59,522109015,-947123256,111.4,19 -Sun Sep 25 06:16:01 PDT 2011,153,89,7.578,6605.17,522109871,-947123343,111.4,19 -Sun Sep 25 06:16:02 PDT 2011,153,92,7.551,6612.72,522110726,-947123432,111.4,19 -Sun Sep 25 06:16:03 PDT 2011,152,89,7.632,6620.35,522111577,-947123549,111.4,19 -Sun Sep 25 06:16:04 PDT 2011,152,84,7.687,6628.04,522112617,-947123496,111.4,19 -Sun Sep 25 06:16:05 PDT 2011,152,84,7.646,6635.69,522113588,-947123455,111.4,19 -Sun Sep 25 06:16:06 PDT 2011,152,84,7.799,6643.49,522114676,-947123438,111.4,19 -Sun Sep 25 06:16:07 PDT 2011,152,81,7.771,6651.26,522115683,-947123328,111.4,19 -Sun Sep 25 06:16:08 PDT 2011,152,81,7.715,6658.97,522116678,-947123178,111.4,19 -Sun Sep 25 06:16:09 PDT 2011,152,81,7.687,6666.66,522117569,-947123055,111.4,19 -Sun Sep 25 06:16:10 PDT 2011,152,23,7.551,6674.21,522118352,-947123008,111.4,19 -Sun Sep 25 06:16:11 PDT 2011,152,81,7.369,6681.58,522119156,-947123051,111.4,19 -Sun Sep 25 06:16:12 PDT 2011,152,82,7.472,6689.05,522120014,-947123021,111.4,19 -Sun Sep 25 06:16:13 PDT 2011,152,82,7.524,6696.58,522120014,-947123021,111.2,19 -Sun Sep 25 06:16:14 PDT 2011,152,82,7.472,6704.05,522120014,-947123021,111.2,19 -Sun Sep 25 06:16:15 PDT 2011,152,0,7.343,6711.39,522121703,-947124094,111.2,19 -Sun Sep 25 06:16:16 PDT 2011,152,0,7.076,6718.47,522122654,-947124658,111.2,19 -Sun Sep 25 06:16:17 PDT 2011,151,0,6.961,6725.43,522123492,-947125200,111.2,19 -Sun Sep 25 06:16:18 PDT 2011,151,0,6.379,6731.81,522124262,-947125591,111.2,19 -Sun Sep 25 06:16:19 PDT 2011,151,0,5.936,6737.74,522124909,-947125849,111.2,19 -Sun Sep 25 06:16:20 PDT 2011,150,0,5.536,6743.28,522125501,-947125942,111.2,19 -Sun Sep 25 06:16:21 PDT 2011,149,0,5.356,6748.63,522125959,-947125977,111.2,19 -Sun Sep 25 06:16:22 PDT 2011,148,0,4.595,6753.23,522126400,-947126090,111.2,19 -Sun Sep 25 06:16:23 PDT 2011,148,0,4.24,6757.47,522126800,-947126185,111.2,19 -Sun Sep 25 06:16:24 PDT 2011,149,30,4.282,6761.75,522127200,-947126359,111.2,19 -Sun Sep 25 06:16:25 PDT 2011,150,55,4.054,6765.81,522127622,-947126474,111.2,19 -Sun Sep 25 06:16:26 PDT 2011,151,71,4.586,6770.39,522128105,-947126536,111.2,19 -Sun Sep 25 06:16:27 PDT 2011,151,76,5.1,6775.49,522128650,-947126685,111.2,19 -Sun Sep 25 06:16:28 PDT 2011,152,78,5.775,6781.27,522129231,-947126837,111.2,19 -Sun Sep 25 06:16:29 PDT 2011,153,81,5.919,6787.19,522129932,-947127077,111.2,19 -Sun Sep 25 06:16:30 PDT 2011,155,87,6.194,6793.38,522130715,-947127390,111.2,19 -Sun Sep 25 06:16:31 PDT 2011,157,91,6.437,6799.82,522131429,-947127682,111.2,19 -Sun Sep 25 06:16:32 PDT 2011,159,89,6.961,6806.78,522132176,-947128026,111.4,19 -Sun Sep 25 06:16:33 PDT 2011,161,89,6.827,6813.61,522132879,-947128321,111.6,19 -Sun Sep 25 06:16:34 PDT 2011,162,87,6.762,6820.37,522133552,-947128585,111.8,19 -Sun Sep 25 06:16:35 PDT 2011,164,91,6.699,6827.07,522134179,-947128807,112.0,19 -Sun Sep 25 06:16:36 PDT 2011,165,93,6.476,6833.54,522134907,-947129034,112.2,19 -Sun Sep 25 06:16:37 PDT 2011,166,92,6.456,6840.0,522135549,-947129236,112.2,19 -Sun Sep 25 06:16:38 PDT 2011,167,92,6.437,6846.44,522136209,-947129439,112.4,19 -Sun Sep 25 06:16:39 PDT 2011,167,91,6.456,6852.89,522136787,-947129609,112.6,19 -Sun Sep 25 06:16:40 PDT 2011,168,92,6.341,6859.28,522137389,-947129804,112.8,19 -Sun Sep 25 06:16:41 PDT 2011,169,92,6.437,6865.67,522138001,-947130003,113.2,19 -Sun Sep 25 06:16:42 PDT 2011,170,91,6.417,6872.09,522138565,-947130164,113.4,19 -Sun Sep 25 06:16:43 PDT 2011,170,93,6.326,6878.41,522139218,-947130336,113.6,19 -Sun Sep 25 06:16:44 PDT 2011,171,92,6.44,6884.85,522139870,-947130498,114.0,19 -Sun Sep 25 06:16:45 PDT 2011,172,96,6.402,6891.26,522140543,-947130683,114.2,19 -Sun Sep 25 06:16:46 PDT 2011,172,99,6.6,6897.86,522141237,-947130841,114.2,19 -Sun Sep 25 06:16:47 PDT 2011,173,99,6.877,6904.75,522141974,-947131007,114.6,19 -Sun Sep 25 06:16:48 PDT 2011,173,98,6.921,6911.65,522142730,-947131189,115.0,19 -Sun Sep 25 06:16:49 PDT 2011,174,97,6.877,6918.53,522143476,-947131368,115.4,19 -Sun Sep 25 06:16:50 PDT 2011,174,96,6.725,6925.26,522144212,-947131563,115.6,19 -Sun Sep 25 06:16:51 PDT 2011,175,96,6.725,6935.23,522145261,-947131893,115.8,19 -Sun Sep 25 06:16:52 PDT 2011,175,96,6.725,6938.73,522145629,-947131978,116.0,19 -Sun Sep 25 06:16:53 PDT 2011,175,95,6.683,6945.39,522146310,-947132217,116.4,19 -Sun Sep 25 06:16:54 PDT 2011,176,95,6.683,6952.07,522146971,-947132464,116.8,19 -Sun Sep 25 06:16:55 PDT 2011,176,95,6.621,6958.7,522147682,-947132743,117.0,19 -Sun Sep 25 06:16:56 PDT 2011,176,96,6.641,6965.33,522148405,-947133060,117.4,19 -Sun Sep 25 06:16:57 PDT 2011,176,100,6.621,6971.95,522149065,-947133309,117.8,19 -Sun Sep 25 06:16:58 PDT 2011,177,103,6.944,6978.9,522149828,-947133547,118.0,19 -Sun Sep 25 06:16:59 PDT 2011,177,103,7.14,6986.04,522150586,-947133789,118.2,19 -Sun Sep 25 06:17:00 PDT 2011,177,101,7.164,6993.2,522151350,-947133956,118.6,19 -Sun Sep 25 06:17:01 PDT 2011,177,99,7.116,7000.32,522152136,-947134103,119.0,19 -Sun Sep 25 06:17:02 PDT 2011,177,97,6.999,7007.32,522152888,-947134261,119.4,19 -Sun Sep 25 06:17:03 PDT 2011,178,97,6.755,7014.07,522153682,-947134449,119.8,19 -Sun Sep 25 06:17:04 PDT 2011,178,97,6.712,7020.78,522154371,-947134599,120.0,19 -Sun Sep 25 06:17:05 PDT 2011,178,98,6.733,7027.52,522155096,-947134769,120.4,19 -Sun Sep 25 06:17:06 PDT 2011,178,99,6.842,7034.36,522155883,-947134937,120.6,19 -Sun Sep 25 06:17:07 PDT 2011,178,97,6.864,7041.22,522156602,-947135087,121.0,19 -Sun Sep 25 06:17:08 PDT 2011,178,96,6.755,7047.98,522157338,-947135239,121.4,19 -Sun Sep 25 06:17:09 PDT 2011,178,97,6.649,7054.63,522158077,-947135373,121.6,19 -Sun Sep 25 06:17:10 PDT 2011,178,99,6.691,7061.32,522158830,-947135520,122.0,19 -Sun Sep 25 06:17:11 PDT 2011,178,101,6.886,7068.2,522159559,-947135665,122.2,19 -Sun Sep 25 06:17:12 PDT 2011,177,93,7.022,7075.23,522160304,-947135823,122.6,19 -Sun Sep 25 06:17:13 PDT 2011,177,94,7.022,7082.25,522161066,-947136027,122.8,19 -Sun Sep 25 06:17:14 PDT 2011,177,91,7.069,7089.32,522161832,-947136246,123.0,19 -Sun Sep 25 06:17:15 PDT 2011,176,89,7.255,7096.57,522162535,-947136449,123.2,19 -Sun Sep 25 06:17:16 PDT 2011,175,91,7.355,7103.93,522163305,-947136672,123.2,19 -Sun Sep 25 06:17:17 PDT 2011,175,83,7.537,7111.46,522164026,-947136870,123.4,19 -Sun Sep 25 06:17:18 PDT 2011,174,85,7.672,7119.14,522164824,-947137083,123.6,19 -Sun Sep 25 06:17:19 PDT 2011,174,79,7.813,7126.95,522165590,-947137293,123.6,19 -Sun Sep 25 06:17:20 PDT 2011,173,79,7.87,7134.83,522166384,-947137520,123.8,19 -Sun Sep 25 06:17:21 PDT 2011,173,29,7.958,7142.78,522167203,-947137740,123.8,19 -Sun Sep 25 06:17:22 PDT 2011,173,86,7.973,7150.75,522168140,-947138000,124.0,19 -Sun Sep 25 06:17:23 PDT 2011,173,89,8.566,7159.32,522169065,-947138218,124.0,19 -Sun Sep 25 06:17:24 PDT 2011,173,85,9.115,7168.43,522170099,-947138407,124.0,19 -Sun Sep 25 06:17:25 PDT 2011,173,35,9.396,7177.83,522171208,-947138449,124.2,19 -Sun Sep 25 06:17:26 PDT 2011,173,97,9.564,7187.39,522172346,-947138522,124.2,19 -Sun Sep 25 06:17:27 PDT 2011,174,102,9.874,7197.26,522173557,-947138499,124.2,19 -Sun Sep 25 06:17:28 PDT 2011,174,98,10.304,7207.57,522174757,-947138588,124.0,19 -Sun Sep 25 06:17:29 PDT 2011,174,96,10.882,7218.45,522176081,-947138610,124.0,19 -Sun Sep 25 06:17:30 PDT 2011,174,96,11.109,7229.56,522177418,-947138585,123.8,19 -Sun Sep 25 06:17:31 PDT 2011,174,96,11.285,7240.84,522178690,-947138756,123.6,19 -Sun Sep 25 06:17:32 PDT 2011,174,0,11.226,7252.07,522179796,-947139220,123.6,19 -Sun Sep 25 06:17:33 PDT 2011,174,0,11.08,7263.15,522180840,-947139691,123.4,19 -Sun Sep 25 06:17:34 PDT 2011,173,0,10.533,7273.68,522181835,-947140208,123.2,19 -Sun Sep 25 06:17:35 PDT 2011,173,0,9.967,7283.65,522182817,-947140659,122.8,19 -Sun Sep 25 06:17:36 PDT 2011,172,0,9.651,7293.3,522183803,-947141056,122.6,19 -Sun Sep 25 06:17:37 PDT 2011,172,0,9.479,7302.78,522184676,-947141522,122.4,19 -Sun Sep 25 06:17:38 PDT 2011,171,0,8.635,7311.42,522185485,-947142193,122.2,19 -Sun Sep 25 06:17:39 PDT 2011,170,0,7.784,7319.2,522185928,-947143037,121.8,19 -Sun Sep 25 06:17:40 PDT 2011,170,0,7.537,7326.74,522186117,-947144101,121.4,19 -Sun Sep 25 06:17:41 PDT 2011,170,70,7.756,7334.49,522185996,-947145181,121.0,19 -Sun Sep 25 06:17:42 PDT 2011,169,71,7.958,7342.45,522185647,-947146386,120.8,19 -Sun Sep 25 06:17:43 PDT 2011,170,71,8.141,7350.59,522185217,-947147785,120.6,19 -Sun Sep 25 06:17:44 PDT 2011,170,72,8.267,7358.86,522184808,-947149126,120.2,19 -Sun Sep 25 06:17:45 PDT 2011,171,72,8.464,7367.32,522184461,-947150346,120.0,19 -Sun Sep 25 06:17:46 PDT 2011,171,82,8.43,7375.75,522184132,-947151733,119.8,19 -Sun Sep 25 06:17:47 PDT 2011,172,89,8.203,7383.96,522183869,-947152966,119.6,19 -Sun Sep 25 06:17:48 PDT 2011,173,87,8.332,7392.29,522183582,-947154186,119.6,19 -Sun Sep 25 06:17:49 PDT 2011,173,85,8.017,7400.31,522183302,-947155308,119.4,19 -Sun Sep 25 06:17:50 PDT 2011,174,84,7.87,7408.18,522183031,-947156415,119.2,19 -Sun Sep 25 06:17:51 PDT 2011,174,83,7.7,7415.88,522182798,-947157462,119.2,19 -Sun Sep 25 06:17:52 PDT 2011,175,82,7.728,7423.6,522182541,-947158570,119.0,19 -Sun Sep 25 06:17:53 PDT 2011,175,85,7.59,7431.19,522182296,-947159617,119.0,19 -Sun Sep 25 06:17:54 PDT 2011,175,86,7.355,7438.55,522182053,-947160679,119.2,19 -Sun Sep 25 06:17:55 PDT 2011,175,85,7.255,7445.88,522181820,-947161691,119.2,19 -Sun Sep 25 06:17:56 PDT 2011,175,81,6.947,7452.75,522181579,-947162648,119.4,19 -Sun Sep 25 06:17:57 PDT 2011,175,80,6.883,7459.64,522181351,-947163597,119.4,19 -Sun Sep 25 06:17:58 PDT 2011,174,81,6.753,7466.39,522181124,-947164562,119.6,19 -Sun Sep 25 06:17:59 PDT 2011,174,81,6.818,7473.21,522180902,-947165535,119.6,19 -Sun Sep 25 06:18:00 PDT 2011,174,81,6.905,7480.11,522180683,-947166522,119.6,19 -Sun Sep 25 06:18:01 PDT 2011,174,80,6.818,7486.93,522180465,-947167484,119.8,19 -Sun Sep 25 06:18:02 PDT 2011,174,80,6.861,7493.79,522180243,-947168473,120.0,19 -Sun Sep 25 06:18:03 PDT 2011,173,80,6.732,7500.52,522180043,-947169437,120.2,19 -Sun Sep 25 06:18:04 PDT 2011,173,25,6.732,7507.26,522179839,-947170382,120.4,19 -Sun Sep 25 06:18:05 PDT 2011,172,79,6.568,7513.82,522179622,-947171312,120.6,19 -Sun Sep 25 06:18:06 PDT 2011,171,81,6.568,7520.39,522179383,-947172293,120.8,19 -Sun Sep 25 06:18:07 PDT 2011,171,81,6.796,7527.19,522179135,-947173258,121.0,19 -Sun Sep 25 06:18:08 PDT 2011,171,81,6.775,7533.96,522178883,-947174222,121.0,19 -Sun Sep 25 06:18:09 PDT 2011,170,81,6.839,7540.8,522178654,-947175180,121.2,19 -Sun Sep 25 06:18:10 PDT 2011,169,80,6.861,7547.66,522178437,-947176193,121.4,19 -Sun Sep 25 06:18:11 PDT 2011,167,76,6.861,7554.52,522178256,-947177219,121.4,19 -Sun Sep 25 06:18:12 PDT 2011,167,76,7.11,7561.63,522178013,-947178221,121.6,19 -Sun Sep 25 06:18:13 PDT 2011,166,76,7.123,7568.76,522177765,-947179204,121.6,19 -Sun Sep 25 06:18:14 PDT 2011,165,79,7.219,7575.97,522177496,-947180211,121.6,19 -Sun Sep 25 06:18:15 PDT 2011,165,80,7.342,7583.32,522177214,-947181243,121.8,19 -Sun Sep 25 06:18:16 PDT 2011,164,74,7.444,7590.76,522176945,-947182317,121.8,19 -Sun Sep 25 06:18:17 PDT 2011,164,74,7.629,7598.39,522176695,-947183448,121.8,19 -Sun Sep 25 06:18:18 PDT 2011,163,74,7.823,7606.21,522176438,-947184586,122.0,19 -Sun Sep 25 06:18:19 PDT 2011,162,0,7.909,7614.12,522176166,-947185733,122.0,19 -Sun Sep 25 06:18:20 PDT 2011,162,0,8.027,7622.15,522175895,-947186914,122.0,19 -Sun Sep 25 06:18:21 PDT 2011,160,0,8.118,7630.27,522175623,-947188107,122.0,19 -Sun Sep 25 06:18:22 PDT 2011,159,0,8.18,7638.45,522175343,-947189292,122.0,19 -Sun Sep 25 06:18:23 PDT 2011,158,0,8.211,7646.66,522175053,-947190445,122.0,19 -Sun Sep 25 06:18:24 PDT 2011,158,0,8.306,7654.96,522174771,-947191659,122.2,19 -Sun Sep 25 06:18:25 PDT 2011,158,0,8.404,7663.37,522174495,-947192876,122.2,19 -Sun Sep 25 06:18:26 PDT 2011,157,0,8.243,7671.61,522174222,-947194081,122.2,19 -Sun Sep 25 06:18:27 PDT 2011,156,0,8.502,7680.11,522173924,-947195331,122.2,19 -Sun Sep 25 06:18:28 PDT 2011,154,65,8.37,7688.48,522173658,-947196565,122.2,19 -Sun Sep 25 06:18:29 PDT 2011,153,65,8.536,7697.02,522173360,-947197848,122.2,19 -Sun Sep 25 06:18:31 PDT 2011,152,67,8.961,7715.9,522172738,-947200537,122.2,19 -Sun Sep 25 06:18:32 PDT 2011,152,68,9.268,7724.18,522172465,-947201748,122.2,19 -Sun Sep 25 06:18:33 PDT 2011,151,68,9.229,7733.4,522172161,-947203100,122.2,19 -Sun Sep 25 06:18:34 PDT 2011,151,68,9.308,7742.71,522171841,-947204452,122.2,19 -Sun Sep 25 06:18:35 PDT 2011,149,68,9.308,7752.02,522171533,-947205790,122.0,19 -Sun Sep 25 06:18:36 PDT 2011,149,0,9.074,7761.1,522171225,-947207158,121.8,19 -Sun Sep 25 06:18:37 PDT 2011,148,0,9.229,7770.32,522170953,-947208479,121.6,19 -Sun Sep 25 06:18:38 PDT 2011,148,0,9.036,7779.36,522170669,-947209756,121.6,19 -Sun Sep 25 06:18:39 PDT 2011,147,0,9.053,7788.41,522170400,-947211009,121.4,19 -Sun Sep 25 06:18:40 PDT 2011,146,0,8.795,7797.21,522170122,-947212187,121.2,19 -Sun Sep 25 06:18:41 PDT 2011,145,0,8.073,7805.28,522169838,-947213337,121.2,19 -Sun Sep 25 06:18:42 PDT 2011,144,0,7.783,7813.07,522169548,-947214403,121.0,19 -Sun Sep 25 06:18:43 PDT 2011,143,0,7.539,7820.6,522169301,-947215505,121.0,19 -Sun Sep 25 06:18:44 PDT 2011,143,56,7.591,7828.2,522169080,-947216558,120.8,19 -Sun Sep 25 06:18:45 PDT 2011,143,62,7.618,7835.81,522168823,-947217596,120.8,19 -Sun Sep 25 06:18:46 PDT 2011,143,65,7.645,7843.46,522168501,-947218639,120.8,19 -Sun Sep 25 06:18:47 PDT 2011,144,65,7.618,7851.08,522168212,-947219702,120.6,19 -Sun Sep 25 06:18:48 PDT 2011,144,65,7.461,7858.54,522167962,-947220665,120.6,19 -Sun Sep 25 06:18:49 PDT 2011,143,0,7.14,7865.68,522167755,-947221672,120.6,19 -Sun Sep 25 06:18:50 PDT 2011,142,0,6.576,7872.25,522167603,-947222586,120.6,19 -Sun Sep 25 06:18:51 PDT 2011,141,0,6.289,7878.54,522167473,-947223453,120.6,19 -Sun Sep 25 06:18:52 PDT 2011,139,0,5.769,7884.31,522167348,-947224260,120.4,19 -Sun Sep 25 06:18:53 PDT 2011,139,0,5.649,7889.96,522167309,-947225038,120.4,19 -Sun Sep 25 06:18:54 PDT 2011,139,0,5.329,7895.29,522167467,-947225799,120.4,19 -Sun Sep 25 06:18:55 PDT 2011,141,47,5.649,7902.12,522167981,-947226366,120.4,19 -Sun Sep 25 06:18:56 PDT 2011,143,50,5.382,7906.46,522168319,-947226772,120.4,19 -Sun Sep 25 06:18:57 PDT 2011,145,58,5.664,7912.12,522168890,-947227088,120.4,19 -Sun Sep 25 06:18:58 PDT 2011,148,63,6.027,7918.09,522169540,-947227312,120.4,19 -Sun Sep 25 06:18:59 PDT 2011,150,65,6.576,7924.63,522170311,-947227592,120.4,19 -Sun Sep 25 06:19:00 PDT 2011,152,67,6.782,7931.41,522171049,-947227870,120.2,19 -Sun Sep 25 06:19:01 PDT 2011,154,68,6.979,7938.39,522171903,-947228313,120.2,19 -Sun Sep 25 06:19:02 PDT 2011,157,69,7.14,7945.53,522172752,-947228523,120.2,19 -Sun Sep 25 06:19:03 PDT 2011,158,72,7.212,7952.74,522173630,-947228769,120.2,19 -Sun Sep 25 06:19:04 PDT 2011,160,69,7.591,7960.34,522174574,-947228905,120.2,19 -Sun Sep 25 06:19:05 PDT 2011,161,74,7.212,7967.55,522175421,-947228997,120.2,19 -Sun Sep 25 06:19:06 PDT 2011,162,78,7.212,7974.76,522176285,-947229099,120.2,19 -Sun Sep 25 06:19:07 PDT 2011,163,78,7.309,7982.07,522177069,-947229302,120.2,19 -Sun Sep 25 06:19:08 PDT 2011,163,79,7.285,7989.35,522177854,-947229519,120.2,19 -Sun Sep 25 06:19:09 PDT 2011,163,81,7.435,7996.79,522178685,-947229826,120.2,19 -Sun Sep 25 06:19:10 PDT 2011,163,81,7.539,8004.33,522179515,-947230110,120.2,19 -Sun Sep 25 06:19:11 PDT 2011,162,82,7.618,8011.95,522180319,-947230431,120.2,19 -Sun Sep 25 06:19:12 PDT 2011,163,84,7.727,8019.67,522181243,-947230817,120.2,19 -Sun Sep 25 06:19:13 PDT 2011,162,84,7.783,8027.46,522182098,-947231190,120.2,19 -Sun Sep 25 06:19:14 PDT 2011,163,84,7.868,8035.32,522182899,-947231509,120.2,19 -Sun Sep 25 06:19:15 PDT 2011,162,84,7.984,8043.34,522183700,-947231831,120.2,19 -Sun Sep 25 06:19:16 PDT 2011,161,0,7.868,8051.18,522184493,-947232164,120.2,19 -Sun Sep 25 06:19:17 PDT 2011,160,0,7.727,8058.9,522185246,-947232478,120.2,19 -Sun Sep 25 06:19:18 PDT 2011,160,83,7.539,8066.44,522186031,-947232801,120.2,19 -Sun Sep 25 06:19:19 PDT 2011,160,82,7.7,8074.14,522186811,-947233130,120.2,19 -Sun Sep 25 06:19:20 PDT 2011,160,83,7.618,8081.76,522187576,-947233461,120.2,19 -Sun Sep 25 06:19:21 PDT 2011,161,85,7.783,8089.54,522188381,-947233812,120.2,19 -Sun Sep 25 06:19:22 PDT 2011,160,86,7.954,8097.5,522189153,-947234154,120.2,19 -Sun Sep 25 06:19:23 PDT 2011,160,86,8.043,8105.54,522189938,-947234469,120.2,19 -Sun Sep 25 06:19:24 PDT 2011,160,87,8.012,8113.55,522190724,-947234781,120.2,19 -Sun Sep 25 06:19:25 PDT 2011,160,87,8.102,8121.66,522191539,-947235080,120.2,19 -Sun Sep 25 06:19:26 PDT 2011,159,87,8.012,8129.67,522192342,-947235431,120.2,19 -Sun Sep 25 06:19:27 PDT 2011,157,0,7.811,8137.48,522193149,-947235798,120.2,19 -Sun Sep 25 06:19:28 PDT 2011,156,0,7.552,8145.03,522193886,-947236133,120.2,19 -Sun Sep 25 06:19:29 PDT 2011,153,0,7.447,8152.48,522194701,-947236510,120.2,19 -Sun Sep 25 06:19:30 PDT 2011,152,0,7.422,8159.9,522195380,-947236805,120.2,19 -Sun Sep 25 06:19:31 PDT 2011,151,0,7.473,8167.38,522196120,-947237170,120.2,19 -Sun Sep 25 06:19:32 PDT 2011,150,76,7.346,8174.72,522196782,-947237538,120.2,19 -Sun Sep 25 06:19:33 PDT 2011,150,81,7.271,8181.99,522197477,-947237915,120.2,19 -Sun Sep 25 06:19:34 PDT 2011,151,81,7.447,8189.44,522198286,-947238286,120.2,19 -Sun Sep 25 06:19:35 PDT 2011,151,82,7.552,8196.99,522199036,-947238598,120.2,19 -Sun Sep 25 06:19:36 PDT 2011,152,82,7.552,8204.54,522199838,-947238898,120.2,19 -Sun Sep 25 06:19:37 PDT 2011,153,82,7.605,8212.15,522200629,-947239180,120.2,19 -Sun Sep 25 06:19:38 PDT 2011,154,82,7.714,8219.86,522201419,-947239454,120.2,19 -Sun Sep 25 06:19:39 PDT 2011,155,81,7.659,8227.52,522202177,-947239670,120.2,19 -Sun Sep 25 06:19:40 PDT 2011,155,80,7.552,8235.07,522202917,-947239928,120.2,19 -Sun Sep 25 06:19:41 PDT 2011,155,80,7.447,8242.52,522203685,-947240191,120.2,19 -Sun Sep 25 06:19:42 PDT 2011,155,78,7.503,8250.02,522204543,-947240521,120.2,19 -Sun Sep 25 06:19:43 PDT 2011,155,77,7.275,8257.3,522205155,-947240774,120.2,19 -Sun Sep 25 06:19:44 PDT 2011,154,77,7.154,8264.45,522205939,-947241123,120.4,19 -Sun Sep 25 06:19:45 PDT 2011,154,77,7.154,8271.61,522206621,-947241454,120.6,19 -Sun Sep 25 06:19:46 PDT 2011,154,78,7.25,8278.86,522207389,-947241812,120.8,19 -Sun Sep 25 06:19:47 PDT 2011,154,79,7.202,8286.06,522208110,-947242172,120.8,19 -Sun Sep 25 06:19:48 PDT 2011,154,80,7.25,8293.34,522208881,-947242517,121.0,19 -Sun Sep 25 06:19:49 PDT 2011,154,81,7.425,8300.73,522209630,-947242859,121.2,19 -Sun Sep 25 06:19:50 PDT 2011,155,80,7.503,8308.24,522210449,-947243137,121.2,19 -Sun Sep 25 06:19:51 PDT 2011,156,79,7.451,8315.69,522211244,-947243407,121.4,19 -Sun Sep 25 06:19:52 PDT 2011,156,79,7.4,8323.09,522212006,-947243654,121.4,19 -Sun Sep 25 06:19:53 PDT 2011,156,78,7.299,8330.39,522212825,-947243966,121.6,19 -Sun Sep 25 06:19:54 PDT 2011,156,78,7.25,8337.64,522213560,-947244290,121.6,19 -Sun Sep 25 06:19:55 PDT 2011,155,78,7.154,8344.79,522214270,-947244597,121.6,19 -Sun Sep 25 06:19:56 PDT 2011,153,22,6.924,8351.72,522214952,-947244905,121.8,19 -Sun Sep 25 06:19:57 PDT 2011,151,72,6.648,8358.36,522215585,-947245220,121.8,19 -Sun Sep 25 06:19:58 PDT 2011,150,73,6.71,8365.07,522216211,-947245529,121.8,19 -Sun Sep 25 06:19:59 PDT 2011,150,75,6.794,8371.87,522216910,-947245903,121.8,19 -Sun Sep 25 06:20:00 PDT 2011,149,77,7.037,8378.91,522217613,-947246322,122.0,19 -Sun Sep 25 06:20:01 PDT 2011,149,78,7.202,8386.11,522218347,-947246704,122.0,19 -Sun Sep 25 06:20:02 PDT 2011,149,80,7.226,8393.33,522219117,-947247058,122.0,19 -Sun Sep 25 06:20:03 PDT 2011,150,80,7.424,8400.76,522219936,-947247349,122.0,19 -Sun Sep 25 06:20:04 PDT 2011,151,80,7.554,8408.31,522220690,-947247643,122.0,19 -Sun Sep 25 06:20:05 PDT 2011,151,80,7.45,8415.76,522221436,-947247894,122.0,19 -Sun Sep 25 06:20:06 PDT 2011,152,80,7.399,8423.16,522222225,-947248170,122.0,19 -Sun Sep 25 06:20:07 PDT 2011,152,80,7.476,8430.64,522223044,-947248433,122.2,19 -Sun Sep 25 06:20:08 PDT 2011,153,80,7.45,8438.09,522223792,-947248702,122.2,19 -Sun Sep 25 06:20:09 PDT 2011,153,80,7.45,8445.54,522224586,-947248941,122.2,19 -Sun Sep 25 06:20:10 PDT 2011,152,0,7.154,8452.69,522225260,-947249189,122.2,19 -Sun Sep 25 06:20:11 PDT 2011,151,0,6.925,8459.62,522225981,-947249465,122.2,19 -Sun Sep 25 06:20:12 PDT 2011,151,80,6.752,8466.37,522226726,-947249784,122.2,19 -Sun Sep 25 06:20:13 PDT 2011,151,86,6.82,8473.19,522227429,-947250062,122.2,19 -Sun Sep 25 06:20:14 PDT 2011,150,86,7.087,8480.27,522228151,-947250332,122.2,19 -Sun Sep 25 06:20:15 PDT 2011,150,88,7.351,8487.63,522228922,-947250623,122.2,19 -Sun Sep 25 06:20:16 PDT 2011,150,91,7.205,8494.83,522229663,-947250906,122.2,19 -Sun Sep 25 06:20:17 PDT 2011,151,94,7.583,8502.41,522230394,-947251251,122.2,19 -Sun Sep 25 06:20:18 PDT 2011,151,98,7.915,8510.33,522231177,-947251569,122.2,19 -Sun Sep 25 06:20:19 PDT 2011,151,96,8.031,8518.36,522231965,-947251885,122.2,19 -Sun Sep 25 06:20:20 PDT 2011,151,87,8.092,8526.45,522232796,-947252186,122.2,19 -Sun Sep 25 06:20:21 PDT 2011,151,87,8.031,8534.49,522233635,-947252553,122.2,19 -Sun Sep 25 06:20:22 PDT 2011,150,87,7.858,8542.34,522234478,-947252923,122.2,19 -Sun Sep 25 06:20:23 PDT 2011,148,0,7.427,8549.77,522235237,-947253279,122.2,19 -Sun Sep 25 06:20:24 PDT 2011,147,0,7.087,8556.86,522235969,-947253709,122.2,19 -Sun Sep 25 06:20:25 PDT 2011,145,0,6.777,8563.63,522236716,-947254146,122.2,19 -Sun Sep 25 06:20:26 PDT 2011,144,0,6.652,8570.29,522237427,-947254551,122.2,19 -Sun Sep 25 06:20:27 PDT 2011,144,78,6.645,8576.93,522238125,-947254930,122.4,19 -Sun Sep 25 06:20:28 PDT 2011,144,83,6.769,8583.7,522238855,-947255293,122.6,19 -Sun Sep 25 06:20:29 PDT 2011,145,86,6.876,8590.58,522239577,-947255596,122.8,19 -Sun Sep 25 06:20:30 PDT 2011,145,89,7.077,8597.65,522240328,-947255925,123.0,19 -Sun Sep 25 06:20:31 PDT 2011,146,91,7.416,8605.07,522241088,-947256273,123.2,19 -Sun Sep 25 06:20:32 PDT 2011,147,89,7.597,8612.67,522241854,-947256579,123.2,19 -Sun Sep 25 06:20:33 PDT 2011,147,89,7.816,8620.48,522242604,-947256888,123.4,19 -Sun Sep 25 06:20:34 PDT 2011,148,89,7.901,8628.38,522243347,-947257182,123.4,19 -Sun Sep 25 06:20:35 PDT 2011,148,89,7.872,8636.26,522244156,-947257538,123.6,19 -Sun Sep 25 06:20:36 PDT 2011,147,0,7.705,8643.96,522244927,-947257900,123.6,19 -Sun Sep 25 06:20:37 PDT 2011,147,0,7.624,8651.58,522245668,-947258258,123.8,19 -Sun Sep 25 06:20:38 PDT 2011,148,0,7.243,8658.83,522246375,-947258616,123.8,19 -Sun Sep 25 06:20:39 PDT 2011,149,85,7.171,8666.0,522247023,-947259001,123.8,19 -Sun Sep 25 06:20:40 PDT 2011,150,84,7.195,8673.19,522247763,-947259380,124.0,19 -Sun Sep 25 06:20:41 PDT 2011,151,84,7.124,8680.32,522248464,-947259733,124.0,19 -Sun Sep 25 06:20:42 PDT 2011,151,85,7.071,8687.42,522249173,-947260133,124.0,19 -Sun Sep 25 06:20:43 PDT 2011,151,87,7.164,8694.55,522249939,-947260563,124.0,19 -Sun Sep 25 06:20:44 PDT 2011,151,86,7.358,8701.91,522250748,-947260985,124.0,19 -Sun Sep 25 06:20:45 PDT 2011,151,85,7.309,8709.22,522251445,-947261325,124.2,19 -Sun Sep 25 06:20:46 PDT 2011,150,84,7.236,8716.46,522252211,-947261645,124.2,19 -Sun Sep 25 06:20:47 PDT 2011,150,84,7.071,8723.53,522252895,-947261901,124.2,19 -Sun Sep 25 06:20:48 PDT 2011,149,84,6.826,8730.35,522253596,-947262138,124.2,19 -Sun Sep 25 06:20:49 PDT 2011,148,77,6.519,8736.87,522254269,-947262367,124.2,19 -Sun Sep 25 06:20:50 PDT 2011,148,79,6.422,8743.29,522254920,-947262614,124.2,19 -Sun Sep 25 06:20:51 PDT 2011,149,80,6.659,8749.95,522255577,-947262882,124.2,19 -Sun Sep 25 06:20:52 PDT 2011,149,81,6.72,8756.67,522256255,-947263177,124.2,19 -Sun Sep 25 06:20:53 PDT 2011,150,81,6.784,8763.46,522256930,-947263478,124.2,19 -Sun Sep 25 06:20:54 PDT 2011,151,81,6.869,8770.33,522257630,-947263753,124.2,19 -Sun Sep 25 06:20:55 PDT 2011,151,82,6.869,8777.19,522258421,-947264041,124.2,19 -Sun Sep 25 06:20:56 PDT 2011,151,81,6.869,8784.06,522259128,-947264292,124.2,19 -Sun Sep 25 06:20:57 PDT 2011,150,81,6.891,8790.95,522259850,-947264568,124.6,19 -Sun Sep 25 06:20:58 PDT 2011,150,81,6.848,8797.8,522260544,-947264845,124.6,19 -Sun Sep 25 06:20:59 PDT 2011,150,82,6.813,8804.66,522261217,-947265139,124.8,19 -Sun Sep 25 06:21:00 PDT 2011,150,82,6.967,8812.82,522262071,-947265543,125.0,19 -Sun Sep 25 06:21:01 PDT 2011,150,82,6.967,8818.64,522262605,-947265785,125.2,19 -Sun Sep 25 06:21:02 PDT 2011,149,82,6.9,8825.46,522263266,-947266037,125.2,19 -Sun Sep 25 06:21:03 PDT 2011,149,81,6.9,8832.35,522263888,-947266224,125.4,19 -Sun Sep 25 06:21:04 PDT 2011,149,81,6.878,8839.23,522264573,-947266476,125.4,19 -Sun Sep 25 06:21:05 PDT 2011,148,82,6.856,8846.08,522265293,-947266748,125.6,19 -Sun Sep 25 06:21:06 PDT 2011,147,82,6.878,8852.96,522265994,-947266992,125.6,19 -Sun Sep 25 06:21:07 PDT 2011,148,82,6.9,8859.86,522266680,-947267241,125.8,19 -Sun Sep 25 06:21:08 PDT 2011,148,82,6.75,8866.61,522267362,-947267485,125.8,19 -Sun Sep 25 06:21:09 PDT 2011,147,19,6.372,8872.98,522268015,-947267749,125.8,19 -Sun Sep 25 06:21:10 PDT 2011,147,81,5.985,8878.97,522268617,-947267996,126.0,19 -Sun Sep 25 06:21:11 PDT 2011,147,82,6.086,8885.05,522269198,-947268283,126.0,19 -Sun Sep 25 06:21:12 PDT 2011,148,85,6.41,8891.46,522269773,-947268766,126.0,19 -Sun Sep 25 06:21:13 PDT 2011,148,91,6.506,8897.97,522270271,-947269445,126.0,19 -Sun Sep 25 06:21:14 PDT 2011,150,97,7.057,8905.03,522270448,-947270369,126.2,19 -Sun Sep 25 06:21:15 PDT 2011,151,99,7.295,8912.32,522270317,-947271357,126.6,19 -Sun Sep 25 06:21:16 PDT 2011,152,92,7.794,8920.12,522269966,-947272468,126.8,19 -Sun Sep 25 06:21:17 PDT 2011,154,87,7.995,8928.11,522269570,-947273669,127.0,19 -Sun Sep 25 06:21:18 PDT 2011,154,87,8.145,8936.26,522269149,-947274992,127.0,19 -Sun Sep 25 06:21:19 PDT 2011,155,87,8.145,8944.4,522268779,-947276228,127.2,19 -Sun Sep 25 06:21:20 PDT 2011,156,0,8.145,8952.59,522268516,-947277408,127.4,19 -Sun Sep 25 06:21:21 PDT 2011,155,0,8.207,8960.75,522268248,-947278594,127.4,19 -Sun Sep 25 06:21:22 PDT 2011,154,0,8.238,8968.99,522267972,-947279765,127.6,19 -Sun Sep 25 06:21:23 PDT 2011,152,0,8.27,8977.26,522267666,-947280985,127.6,19 -Sun Sep 25 06:21:24 PDT 2011,150,0,8.207,8985.47,522267362,-947282264,127.8,19 -Sun Sep 25 06:21:25 PDT 2011,149,90,8.27,8993.74,522267123,-947283468,127.8,19 -Sun Sep 25 06:21:26 PDT 2011,148,90,8.398,9002.13,522266824,-947284731,128.0,19 -Sun Sep 25 06:21:27 PDT 2011,148,90,8.497,9010.63,522266548,-947285927,128.0,19 -Sun Sep 25 06:21:28 PDT 2011,148,0,8.431,9019.06,522266266,-947287154,128.0,19 -Sun Sep 25 06:21:29 PDT 2011,147,0,8.431,9027.49,522265991,-947288309,128.0,19 -Sun Sep 25 06:21:30 PDT 2011,147,0,8.145,9035.64,522265751,-947289441,128.2,19 -Sun Sep 25 06:21:31 PDT 2011,147,76,7.995,9043.63,522265511,-947290601,128.2,19 -Sun Sep 25 06:21:32 PDT 2011,147,75,7.85,9051.48,522265269,-947291678,128.2,19 -Sun Sep 25 06:21:33 PDT 2011,148,74,7.794,9059.28,522265034,-947292773,128.2,19 -Sun Sep 25 06:21:34 PDT 2011,148,73,7.738,9067.01,522264796,-947293831,128.2,19 -Sun Sep 25 06:21:35 PDT 2011,148,73,7.602,9074.62,522264516,-947294858,128.2,19 -Sun Sep 25 06:21:36 PDT 2011,148,72,7.576,9082.19,522264266,-947295941,128.4,19 -Sun Sep 25 06:21:37 PDT 2011,147,72,7.576,9089.77,522264020,-947297010,128.4,19 -Sun Sep 25 06:21:38 PDT 2011,147,23,7.395,9097.16,522263808,-947297995,128.4,19 -Sun Sep 25 06:21:39 PDT 2011,147,75,7.08,9104.27,522263604,-947298954,128.4,19 -Sun Sep 25 06:21:40 PDT 2011,147,77,7.174,9111.42,522263405,-947299898,128.4,19 -Sun Sep 25 06:21:41 PDT 2011,146,76,7.151,9118.57,522263178,-947300861,128.4,19 -Sun Sep 25 06:21:42 PDT 2011,146,77,7.151,9125.72,522262949,-947301857,128.4,19 -Sun Sep 25 06:21:43 PDT 2011,146,79,7.08,9132.8,522262949,-947301857,128.4,19 -Sun Sep 25 06:21:44 PDT 2011,147,79,7.271,9140.07,522262475,-947303913,128.4,19 -Sun Sep 25 06:21:45 PDT 2011,148,80,7.395,9147.47,522262238,-947304939,128.4,19 -Sun Sep 25 06:21:46 PDT 2011,148,81,7.471,9154.94,522262016,-947305908,128.4,19 -Sun Sep 25 06:21:47 PDT 2011,149,73,7.497,9162.43,522261797,-947306890,128.4,19 -Sun Sep 25 06:21:48 PDT 2011,148,74,7.576,9170.01,522261550,-947307898,128.4,19 -Sun Sep 25 06:21:49 PDT 2011,148,74,7.738,9177.75,522261312,-947308937,128.4,19 -Sun Sep 25 06:21:50 PDT 2011,147,74,7.794,9185.54,522261054,-947310009,128.4,19 -Sun Sep 25 06:21:51 PDT 2011,146,0,7.71,9193.25,522260797,-947311081,128.6,19 -Sun Sep 25 06:21:52 PDT 2011,145,0,7.445,9200.7,522260539,-947312171,128.6,19 -Sun Sep 25 06:21:53 PDT 2011,144,0,7.549,9208.25,522260294,-947313235,128.6,19 -Sun Sep 25 06:21:54 PDT 2011,143,0,7.576,9215.82,522260053,-947314240,128.6,19 -Sun Sep 25 06:21:55 PDT 2011,142,0,7.395,9223.22,522259809,-947315259,128.6,19 -Sun Sep 25 06:21:56 PDT 2011,142,0,7.523,9230.74,522259558,-947316289,128.6,19 -Sun Sep 25 06:21:57 PDT 2011,141,0,7.471,9238.21,522259326,-947317328,128.6,19 -Sun Sep 25 06:21:58 PDT 2011,140,0,7.445,9245.68,522259095,-947318365,128.6,19 -Sun Sep 25 06:21:59 PDT 2011,139,0,7.445,9253.1,522258868,-947319359,128.6,19 -Sun Sep 25 06:22:00 PDT 2011,138,0,7.407,9260.51,522258637,-947320394,128.6,19 -Sun Sep 25 06:22:01 PDT 2011,138,0,7.407,9267.91,522258403,-947321465,128.6,19 -Sun Sep 25 06:22:02 PDT 2011,138,0,7.306,9275.22,522258169,-947322478,128.6,19 -Sun Sep 25 06:22:03 PDT 2011,138,0,7.161,9282.38,522257931,-947323484,128.6,19 -Sun Sep 25 06:22:04 PDT 2011,137,0,7.137,9289.52,522257681,-947324487,128.4,19 -Sun Sep 25 06:22:05 PDT 2011,136,0,7.067,9296.59,522257445,-947325451,128.2,19 -Sun Sep 25 06:22:06 PDT 2011,135,0,6.778,9303.36,522257219,-947326390,128.0,19 -Sun Sep 25 06:22:07 PDT 2011,135,0,6.377,9309.74,522257009,-947327235,127.8,19 -Sun Sep 25 06:22:08 PDT 2011,133,0,6.211,9315.95,522256833,-947328026,127.6,19 -Sun Sep 25 06:22:09 PDT 2011,133,0,5.457,9321.41,522256693,-947328670,127.6,19 -Sun Sep 25 06:22:10 PDT 2011,132,0,3.947,9325.36,522256614,-947329185,127.4,19 -Sun Sep 25 06:22:11 PDT 2011,133,0,3.947,9329.3,522256564,-947329558,127.4,19 -Sun Sep 25 06:22:12 PDT 2011,134,0,2.997,9332.3,522256531,-947329963,127.2,19 -Sun Sep 25 06:22:13 PDT 2011,136,33,2.928,9335.23,522256608,-947330389,127.2,19 -Sun Sep 25 06:22:14 PDT 2011,138,44,3.202,9338.43,522256816,-947330739,127.2,19 -Sun Sep 25 06:22:15 PDT 2011,139,44,3.999,9342.43,522257260,-947330931,127.0,19 -Sun Sep 25 06:22:16 PDT 2011,142,69,4.675,9347.11,522257762,-947331281,127.0,19 -Sun Sep 25 06:22:17 PDT 2011,144,78,5.657,9352.78,522258383,-947331595,127.0,19 -Sun Sep 25 06:22:18 PDT 2011,146,82,6.444,9359.2,522259215,-947331836,126.8,19 -Sun Sep 25 06:22:19 PDT 2011,148,88,6.998,9366.2,522260018,-947332181,126.8,19 -Sun Sep 25 06:22:20 PDT 2011,151,89,7.616,9373.81,522260853,-947332499,126.8,19 -Sun Sep 25 06:22:21 PDT 2011,152,94,7.484,9381.3,522261718,-947332810,126.8,19 -Sun Sep 25 06:22:22 PDT 2011,154,95,7.866,9389.16,522262584,-947333086,126.8,19 -Sun Sep 25 06:22:23 PDT 2011,156,96,7.953,9397.12,522263443,-947333355,126.8,19 -Sun Sep 25 06:22:24 PDT 2011,157,89,8.042,9405.16,522264295,-947333626,126.6,19 -Sun Sep 25 06:22:25 PDT 2011,158,89,8.073,9413.23,522265187,-947333898,126.6,19 -Sun Sep 25 06:22:26 PDT 2011,158,89,7.895,9421.13,522265975,-947334147,126.6,19 -Sun Sep 25 06:22:27 PDT 2011,157,0,7.458,9428.59,522266768,-947334368,126.6,19 -Sun Sep 25 06:22:28 PDT 2011,156,79,7.185,9435.77,522267545,-947334655,126.6,19 -Sun Sep 25 06:22:29 PDT 2011,156,82,7.233,9443.0,522268330,-947334975,126.6,19 -Sun Sep 25 06:22:30 PDT 2011,156,84,7.51,9450.51,522269135,-947335344,126.6,19 -Sun Sep 25 06:22:31 PDT 2011,155,85,7.725,9458.24,522269900,-947335698,126.6,19 -Sun Sep 25 06:22:32 PDT 2011,155,85,7.953,9466.19,522270715,-947336087,126.6,19 -Sun Sep 25 06:22:33 PDT 2011,155,85,8.102,9474.29,522271506,-947336404,126.6,19 -Sun Sep 25 06:22:34 PDT 2011,154,83,7.936,9482.23,522272350,-947336747,126.6,19 -Sun Sep 25 06:22:35 PDT 2011,155,83,7.936,9490.16,522273121,-947337070,126.6,19 -Sun Sep 25 06:22:36 PDT 2011,154,83,7.738,9497.93,522273911,-947337392,126.6,19 -Sun Sep 25 06:22:37 PDT 2011,153,19,7.549,9505.45,522274722,-947337759,126.6,19 -Sun Sep 25 06:22:38 PDT 2011,153,72,7.445,9512.9,522275401,-947338068,126.6,19 -Sun Sep 25 06:22:39 PDT 2011,153,81,7.549,9520.45,522276138,-947338402,126.6,19 -Sun Sep 25 06:22:40 PDT 2011,153,82,7.549,9527.99,522276901,-947338723,126.4,19 -Sun Sep 25 06:22:41 PDT 2011,154,82,7.602,9535.6,522277689,-947339121,126.4,19 -Sun Sep 25 06:22:42 PDT 2011,154,82,7.683,9543.28,522278477,-947339504,126.4,19 -Sun Sep 25 06:22:43 PDT 2011,154,82,7.656,9550.93,522279236,-947339915,126.4,19 -Sun Sep 25 06:22:44 PDT 2011,155,30,7.471,9558.41,522280062,-947340292,126.4,19 -Sun Sep 25 06:22:45 PDT 2011,155,79,7.42,9565.83,522280864,-947340660,126.4,19 -Sun Sep 25 06:22:46 PDT 2011,156,79,7.37,9573.2,522281612,-947340982,126.4,19 -Sun Sep 25 06:22:47 PDT 2011,156,79,7.37,9580.57,522282347,-947341319,126.4,19 -Sun Sep 25 06:22:48 PDT 2011,155,79,7.409,9587.97,522283135,-947341659,126.4,19 -Sun Sep 25 06:22:49 PDT 2011,155,80,7.384,9595.36,522283913,-947342002,126.4,19 -Sun Sep 25 06:22:50 PDT 2011,154,80,7.435,9602.79,522284642,-947342296,126.4,19 -Sun Sep 25 06:22:51 PDT 2011,154,81,7.435,9610.23,522285442,-947342642,126.4,19 -Sun Sep 25 06:22:52 PDT 2011,153,79,7.461,9617.69,522286228,-947343022,126.4,19 -Sun Sep 25 06:22:53 PDT 2011,152,78,7.384,9625.07,522286992,-947343370,126.6,19 -Sun Sep 25 06:22:54 PDT 2011,152,77,7.334,9632.41,522287736,-947343699,126.8,19 -Sun Sep 25 06:22:55 PDT 2011,151,76,7.212,9639.64,522288504,-947344047,127.0,19 -Sun Sep 25 06:22:56 PDT 2011,150,76,7.14,9646.76,522289190,-947344316,127.2,19 -Sun Sep 25 06:22:57 PDT 2011,151,76,7.117,9653.88,522289927,-947344594,127.4,19 -Sun Sep 25 06:22:58 PDT 2011,151,75,7.117,9660.99,522290653,-947344858,127.4,19 -Sun Sep 25 06:22:59 PDT 2011,150,74,6.979,9667.97,522291334,-947345120,127.6,19 -Sun Sep 25 06:23:00 PDT 2011,150,81,6.89,9674.86,522292085,-947345409,127.8,19 -Sun Sep 25 06:23:01 PDT 2011,151,84,6.979,9681.84,522292785,-947345684,127.8,19 -Sun Sep 25 06:23:02 PDT 2011,150,84,7.094,9688.93,522293550,-947346007,127.8,19 -Sun Sep 25 06:23:03 PDT 2011,150,84,7.117,9696.1,522294303,-947346322,128.0,19 -Sun Sep 25 06:23:04 PDT 2011,151,75,7.054,9703.1,522295053,-947346620,128.0,19 -Sun Sep 25 06:23:05 PDT 2011,151,76,7.008,9711.48,522295928,-947346995,128.0,19 -Sun Sep 25 06:23:06 PDT 2011,151,77,7.031,9717.2,522296497,-947347241,128.2,19 -Sun Sep 25 06:23:07 PDT 2011,152,76,7.147,9724.29,522297224,-947347559,128.2,19 -Sun Sep 25 06:23:08 PDT 2011,151,83,7.1,9731.38,522297921,-947347865,128.2,19 -Sun Sep 25 06:23:09 PDT 2011,151,83,7.054,9738.44,522298660,-947348177,128.2,19 -Sun Sep 25 06:23:10 PDT 2011,151,81,6.963,9745.4,522299367,-947348487,128.4,19 -Sun Sep 25 06:23:11 PDT 2011,151,84,6.789,9752.19,522300065,-947348816,128.4,19 -Sun Sep 25 06:23:12 PDT 2011,152,84,7.008,9759.2,522300724,-947349112,128.4,19 -Sun Sep 25 06:23:13 PDT 2011,152,87,7.077,9766.28,522301557,-947349466,128.4,19 -Sun Sep 25 06:23:14 PDT 2011,152,88,7.292,9773.59,522302285,-947349760,128.4,19 -Sun Sep 25 06:23:15 PDT 2011,152,89,7.391,9780.96,522302992,-947350110,128.6,19 -Sun Sep 25 06:23:16 PDT 2011,152,89,7.572,9788.53,522303768,-947350418,128.8,19 -Sun Sep 25 06:23:17 PDT 2011,153,91,7.493,9796.02,522304558,-947350750,129.0,19 -Sun Sep 25 06:23:18 PDT 2011,154,89,7.652,9803.68,522305323,-947351074,129.2,19 -Sun Sep 25 06:23:19 PDT 2011,154,85,7.572,9811.25,522306050,-947351348,129.4,19 -Sun Sep 25 06:23:20 PDT 2011,155,79,7.416,9818.66,522306859,-947351647,129.4,19 -Sun Sep 25 06:23:21 PDT 2011,156,80,7.366,9826.03,522307636,-947351929,129.6,19 -Sun Sep 25 06:23:22 PDT 2011,156,79,7.416,9833.45,522308336,-947352208,129.6,19 -Sun Sep 25 06:23:23 PDT 2011,157,79,7.341,9840.79,522309076,-947352496,129.8,19 -Sun Sep 25 06:23:24 PDT 2011,156,35,7.316,9848.1,522309821,-947352813,129.8,19 -Sun Sep 25 06:23:25 PDT 2011,156,77,7.1,9855.2,522310458,-947353060,130.0,19 -Sun Sep 25 06:23:26 PDT 2011,155,75,7.147,9862.35,522311165,-947353339,130.0,19 -Sun Sep 25 06:23:27 PDT 2011,155,76,7.008,9869.36,522311862,-947353619,130.0,19 -Sun Sep 25 06:23:28 PDT 2011,155,76,7.008,9876.37,522312575,-947353899,130.2,19 -Sun Sep 25 06:23:29 PDT 2011,155,76,7.1,9883.47,522313278,-947354183,130.2,19 -Sun Sep 25 06:23:30 PDT 2011,155,77,7.054,9890.52,522314029,-947354514,130.2,19 -Sun Sep 25 06:23:31 PDT 2011,156,78,7.147,9897.67,522314776,-947354847,130.2,19 -Sun Sep 25 06:23:32 PDT 2011,156,78,7.195,9904.86,522315541,-947355204,130.4,19 -Sun Sep 25 06:23:33 PDT 2011,156,33,7.267,9912.14,522316208,-947355514,130.4,19 -Sun Sep 25 06:23:34 PDT 2011,156,76,7.07,9919.2,522316868,-947355780,130.4,19 -Sun Sep 25 06:23:35 PDT 2011,155,75,7.047,9926.25,522317593,-947356079,130.4,19 -Sun Sep 25 06:23:36 PDT 2011,154,76,7.047,9933.29,522318281,-947356357,130.4,19 -Sun Sep 25 06:23:37 PDT 2011,154,76,7.024,9940.32,522318977,-947356643,130.4,19 -Sun Sep 25 06:23:38 PDT 2011,154,82,7.093,9947.41,522319667,-947356947,130.4,19 -Sun Sep 25 06:23:39 PDT 2011,154,84,7.093,9954.5,522320431,-947357260,130.6,19 -Sun Sep 25 06:23:40 PDT 2011,153,85,7.117,9961.62,522321177,-947357568,130.6,19 -Sun Sep 25 06:23:41 PDT 2011,153,85,7.117,9968.74,522321908,-947357899,130.6,19 -Sun Sep 25 06:23:42 PDT 2011,154,84,7.188,9975.93,522322674,-947358237,130.8,19 -Sun Sep 25 06:23:43 PDT 2011,154,85,7.117,9983.04,522323362,-947358523,131.0,19 -Sun Sep 25 06:23:44 PDT 2011,154,86,7.047,9990.09,522324146,-947358845,131.2,19 -Sun Sep 25 06:23:45 PDT 2011,153,86,7.188,9997.28,522324892,-947359168,131.4,19 -Sun Sep 25 06:23:46 PDT 2011,153,86,7.212,10004.49,522325627,-947359466,131.6,19 -Sun Sep 25 06:23:47 PDT 2011,153,83,7.164,10011.66,522326385,-947359775,131.6,19 -Sun Sep 25 06:23:48 PDT 2011,152,83,7.024,10018.68,522327133,-947360093,131.8,19 -Sun Sep 25 06:23:49 PDT 2011,152,86,6.956,10025.63,522327888,-947360422,131.8,19 -Sun Sep 25 06:23:50 PDT 2011,152,87,7.11,10032.74,522328649,-947360733,132.0,19 -Sun Sep 25 06:23:51 PDT 2011,153,85,7.377,10040.12,522329409,-947361063,132.0,19 -Sun Sep 25 06:23:52 PDT 2011,154,85,7.229,10047.36,522330110,-947361413,132.2,19 -Sun Sep 25 06:23:53 PDT 2011,154,26,7.064,10054.41,522330803,-947361757,132.2,19 -Sun Sep 25 06:23:54 PDT 2011,155,81,6.713,10061.13,522331483,-947362059,132.4,19 -Sun Sep 25 06:23:55 PDT 2011,156,81,6.819,10067.95,522332193,-947362297,132.4,19 -Sun Sep 25 06:23:56 PDT 2011,156,82,6.884,10074.83,522332839,-947362537,132.4,19 -Sun Sep 25 06:23:57 PDT 2011,157,83,6.928,10081.76,522333538,-947362782,132.4,19 -Sun Sep 25 06:23:58 PDT 2011,158,84,6.928,10088.69,522334226,-947363054,132.6,19 -Sun Sep 25 06:23:59 PDT 2011,158,84,7.064,10095.75,522334941,-947363343,132.6,19 -Sun Sep 25 06:24:00 PDT 2011,158,83,7.064,10102.81,522335622,-947363668,132.6,19 -Sun Sep 25 06:24:01 PDT 2011,159,85,7.018,10109.83,522336462,-947364065,132.6,19 -Sun Sep 25 06:24:02 PDT 2011,159,89,7.134,10116.97,522337211,-947364431,132.8,19 -Sun Sep 25 06:24:03 PDT 2011,160,91,7.377,10124.34,522338016,-947364786,133.0,19 -Sun Sep 25 06:24:04 PDT 2011,160,95,7.558,10131.9,522338816,-947365130,133.2,19 -Sun Sep 25 06:24:05 PDT 2011,161,95,7.903,10139.8,522339595,-947365416,133.4,19 -Sun Sep 25 06:24:06 PDT 2011,162,86,8.02,10147.82,522340436,-947365727,133.6,19 -Sun Sep 25 06:24:07 PDT 2011,162,86,8.05,10155.87,522341243,-947366033,133.8,19 -Sun Sep 25 06:24:08 PDT 2011,162,86,7.903,10163.78,522342018,-947366342,133.8,19 -Sun Sep 25 06:24:09 PDT 2011,162,0,7.65,10171.43,522342818,-947366665,134.0,19 -Sun Sep 25 06:24:10 PDT 2011,161,0,7.439,10178.87,522343617,-947367016,134.0,19 -Sun Sep 25 06:24:11 PDT 2011,161,87,7.313,10186.22,522344367,-947367333,134.2,19 -Sun Sep 25 06:24:12 PDT 2011,160,83,7.313,10193.49,522345100,-947367645,134.2,19 -Sun Sep 25 06:24:13 PDT 2011,160,78,7.264,10200.76,522345813,-947367946,134.4,19 -Sun Sep 25 06:24:14 PDT 2011,159,77,7.215,10207.97,522346532,-947368280,134.4,19 -Sun Sep 25 06:24:15 PDT 2011,160,79,7.215,10215.19,522347238,-947368571,134.4,19 -Sun Sep 25 06:24:16 PDT 2011,160,80,7.215,10222.4,522348018,-947368886,134.6,19 -Sun Sep 25 06:24:17 PDT 2011,160,82,7.491,10229.89,522348790,-947369197,134.6,19 -Sun Sep 25 06:24:18 PDT 2011,160,84,7.557,10237.45,522349621,-947369503,134.6,19 -Sun Sep 25 06:24:19 PDT 2011,160,87,7.761,10245.21,522350425,-947369821,134.6,19 -Sun Sep 25 06:24:20 PDT 2011,160,88,8.05,10253.26,522351250,-947370144,134.6,19 -Sun Sep 25 06:24:21 PDT 2011,160,89,8.203,10261.46,522352060,-947370463,134.8,19 -Sun Sep 25 06:24:22 PDT 2011,160,89,8.298,10269.76,522352837,-947370714,134.8,19 -Sun Sep 25 06:24:23 PDT 2011,160,89,8.362,10278.12,522353737,-947371050,134.8,19 -Sun Sep 25 06:24:24 PDT 2011,159,0,8.203,10286.33,522354602,-947371375,134.8,19 -Sun Sep 25 06:24:25 PDT 2011,158,0,8.172,10294.5,522355470,-947371708,134.8,19 -Sun Sep 25 06:24:26 PDT 2011,158,0,8.172,10302.67,522356339,-947372035,134.8,19 -Sun Sep 25 06:24:27 PDT 2011,157,0,8.266,10310.93,522357213,-947372377,134.8,19 -Sun Sep 25 06:24:28 PDT 2011,157,86,8.05,10318.98,522358067,-947372696,134.8,19 -Sun Sep 25 06:24:29 PDT 2011,156,80,7.99,10326.97,522358843,-947372973,134.8,19 -Sun Sep 25 06:24:30 PDT 2011,156,78,8.05,10335.04,522359706,-947373365,135.0,19 -Sun Sep 25 06:24:31 PDT 2011,156,78,8.111,10343.14,522360541,-947373796,135.0,19 -Sun Sep 25 06:24:32 PDT 2011,156,79,8.141,10351.28,522361451,-947374325,135.0,19 -Sun Sep 25 06:24:33 PDT 2011,156,79,8.106,10359.38,522362310,-947374827,135.0,19 -Sun Sep 25 06:24:34 PDT 2011,156,79,8.137,10367.52,522363192,-947375306,135.0,19 -Sun Sep 25 06:24:35 PDT 2011,155,0,8.106,10375.63,522364069,-947375699,135.0,19 -Sun Sep 25 06:24:36 PDT 2011,153,0,8.121,10383.75,522364862,-947376016,135.0,19 -Sun Sep 25 06:24:37 PDT 2011,152,0,8.045,10391.79,522365602,-947376310,135.0,19 -Sun Sep 25 06:24:38 PDT 2011,150,0,7.898,10399.69,522366356,-947376593,135.0,19 -Sun Sep 25 06:24:39 PDT 2011,148,0,7.783,10407.48,522367147,-947376904,135.0,19 -Sun Sep 25 06:24:40 PDT 2011,147,86,7.7,10415.18,522367958,-947377231,135.0,19 -Sun Sep 25 06:24:41 PDT 2011,147,87,7.812,10422.99,522368809,-947377590,135.0,19 -Sun Sep 25 06:24:42 PDT 2011,146,89,8.016,10431.0,522369702,-947377986,135.0,19 -Sun Sep 25 06:24:43 PDT 2011,146,89,8.137,10439.14,522370593,-947378420,135.0,19 -Sun Sep 25 06:24:44 PDT 2011,146,84,8.262,10447.4,522371444,-947378805,135.0,19 -Sun Sep 25 06:24:45 PDT 2011,146,39,8.491,10455.89,522372314,-947379190,135.0,19 -Sun Sep 25 06:24:46 PDT 2011,145,39,8.44,10464.33,522373241,-947379603,135.0,19 -Sun Sep 25 06:24:47 PDT 2011,146,39,8.573,10472.91,522374133,-947380090,135.0,19 -Sun Sep 25 06:24:48 PDT 2011,146,0,8.642,10481.55,522374997,-947380639,135.0,19 -Sun Sep 25 06:24:49 PDT 2011,146,0,8.642,10490.2,522375886,-947381199,135.0,19 -Sun Sep 25 06:24:50 PDT 2011,146,0,8.54,10498.73,522376758,-947381791,135.0,19 -Sun Sep 25 06:24:51 PDT 2011,146,0,8.642,10507.37,522377602,-947382404,135.0,19 -Sun Sep 25 06:24:52 PDT 2011,145,0,8.473,10515.84,522378410,-947382996,135.0,19 -Sun Sep 25 06:24:53 PDT 2011,144,0,8.342,10524.19,522379230,-947383570,135.0,19 -Sun Sep 25 06:24:54 PDT 2011,143,0,8.184,10532.37,522380024,-947384122,135.0,19 -Sun Sep 25 06:24:55 PDT 2011,143,78,8.002,10540.37,522380820,-947384663,135.0,19 -Sun Sep 25 06:24:56 PDT 2011,143,78,7.972,10548.34,522381629,-947385209,135.0,19 -Sun Sep 25 06:24:57 PDT 2011,144,78,8.092,10556.44,522382466,-947385752,135.0,19 -Sun Sep 25 06:24:58 PDT 2011,144,0,8.031,10564.47,522383256,-947386301,135.0,19 -Sun Sep 25 06:24:59 PDT 2011,144,0,7.943,10572.41,522383991,-947386812,135.0,19 -Sun Sep 25 06:25:00 PDT 2011,143,0,7.943,10580.35,522384759,-947387384,135.0,19 -Sun Sep 25 06:25:01 PDT 2011,143,75,7.828,10588.18,522385517,-947388006,135.0,19 -Sun Sep 25 06:25:02 PDT 2011,144,77,7.943,10596.13,522386261,-947388576,135.0,19 -Sun Sep 25 06:25:03 PDT 2011,144,77,8.024,10604.15,522387034,-947389124,135.0,19 -Sun Sep 25 06:25:04 PDT 2011,143,77,8.27,10612.42,522387868,-947389670,134.8,19 -Sun Sep 25 06:25:05 PDT 2011,143,0,8.399,10620.82,522388719,-947390157,134.6,19 -Sun Sep 25 06:25:06 PDT 2011,142,0,8.599,10629.42,522389591,-947390671,134.4,19 -Sun Sep 25 06:25:07 PDT 2011,141,0,8.599,10638.15,522390447,-947391187,134.4,19 -Sun Sep 25 06:25:08 PDT 2011,140,0,8.704,10646.87,522391327,-947391702,134.2,19 -Sun Sep 25 06:25:09 PDT 2011,140,0,8.846,10655.56,522392249,-947392049,134.0,19 -Sun Sep 25 06:25:10 PDT 2011,140,0,9.107,10664.67,522393193,-947392413,134.0,19 -Sun Sep 25 06:25:11 PDT 2011,141,92,8.956,10673.63,522394185,-947392815,133.8,19 -Sun Sep 25 06:25:12 PDT 2011,142,86,9.551,10683.18,522395221,-947393196,133.8,19 -Sun Sep 25 06:25:13 PDT 2011,143,86,9.856,10693.03,522396232,-947393587,133.6,19 -Sun Sep 25 06:25:14 PDT 2011,145,86,10.063,10703.1,522397309,-947394015,133.4,19 -Sun Sep 25 06:25:15 PDT 2011,146,86,10.086,10713.18,522398242,-947394365,133.2,19 -Sun Sep 25 06:25:16 PDT 2011,145,0,10.134,10723.32,522399325,-947394798,132.8,19 -Sun Sep 25 06:25:17 PDT 2011,144,0,10.086,10733.4,522400286,-947395159,132.6,19 -Sun Sep 25 06:25:18 PDT 2011,142,0,9.993,10743.4,522401128,-947395470,132.4,19 -Sun Sep 25 06:25:19 PDT 2011,140,0,9.344,10752.74,522401887,-947395753,132.2,19 -Sun Sep 25 06:25:20 PDT 2011,139,0,8.919,10761.66,522402655,-947396061,132.2,19 -Sun Sep 25 06:25:21 PDT 2011,137,75,8.334,10769.99,522403429,-947396374,132.0,19 -Sun Sep 25 06:25:22 PDT 2011,136,83,7.912,10777.9,522404247,-947396725,131.8,19 -Sun Sep 25 06:25:23 PDT 2011,138,84,7.769,10785.67,522405080,-947397096,131.8,19 -Sun Sep 25 06:25:24 PDT 2011,139,84,7.769,10793.44,522405915,-947397445,131.6,19 -Sun Sep 25 06:25:25 PDT 2011,141,82,7.713,10801.15,522406626,-947397735,131.6,19 -Sun Sep 25 06:25:26 PDT 2011,142,80,7.603,10808.76,522407310,-947397998,131.4,19 -Sun Sep 25 06:25:27 PDT 2011,142,79,7.471,10816.23,522408015,-947398218,131.4,19 -Sun Sep 25 06:25:28 PDT 2011,143,79,7.305,10823.53,522408757,-947398271,131.2,19 -Sun Sep 25 06:25:29 PDT 2011,143,83,7.244,10830.78,522409522,-947398330,131.2,19 -Sun Sep 25 06:25:30 PDT 2011,144,86,7.268,10838.04,522410280,-947398279,131.2,19 -Sun Sep 25 06:25:31 PDT 2011,145,85,7.076,10845.12,522411066,-947398169,131.2,19 -Sun Sep 25 06:25:32 PDT 2011,145,85,7.268,10852.39,522411827,-947397968,131.2,19 -Sun Sep 25 06:25:33 PDT 2011,147,85,7.123,10859.51,522412506,-947397708,131.4,19 -Sun Sep 25 06:25:34 PDT 2011,147,85,6.618,10866.13,522413136,-947397453,131.6,19 -Sun Sep 25 06:25:35 PDT 2011,147,0,6.074,10872.2,522413693,-947397189,131.6,19 -Sun Sep 25 06:25:36 PDT 2011,146,0,5.32,10877.52,522414185,-947396926,131.8,19 -Sun Sep 25 06:25:37 PDT 2011,146,0,5.033,10882.56,522414635,-947396710,131.8,19 -Sun Sep 25 06:25:38 PDT 2011,145,0,4.641,10887.2,522415057,-947396538,132.0,19 -Sun Sep 25 06:25:39 PDT 2011,144,0,4.297,10891.49,522415451,-947396438,132.0,19 -Sun Sep 25 06:25:40 PDT 2011,142,0,4.038,10895.53,522415810,-947396377,132.2,19 -Sun Sep 25 06:25:41 PDT 2011,141,0,3.532,10899.06,522416160,-947396324,132.2,19 -Sun Sep 25 06:25:42 PDT 2011,140,0,3.452,10902.52,522416474,-947396317,132.2,19 -Sun Sep 25 06:25:43 PDT 2011,139,21,3.167,10905.68,522416819,-947396351,132.4,19 -Sun Sep 25 06:25:44 PDT 2011,140,49,3.19,10908.87,522417212,-947396400,132.4,19 -Sun Sep 25 06:25:45 PDT 2011,141,60,3.829,10912.7,522417634,-947396499,132.4,19 -Sun Sep 25 06:25:46 PDT 2011,142,68,4.421,10917.12,522418157,-947396565,132.4,19 -Sun Sep 25 06:25:47 PDT 2011,143,74,5.033,10922.16,522418736,-947396684,132.4,19 -Sun Sep 25 06:25:48 PDT 2011,145,77,6.057,10928.21,522419351,-947396942,132.6,19 -Sun Sep 25 06:25:49 PDT 2011,147,79,6.006,10934.22,522420018,-947397199,132.8,19 -Sun Sep 25 06:25:50 PDT 2011,149,80,6.197,10940.45,522420676,-947397483,133.0,19 -Sun Sep 25 06:25:51 PDT 2011,150,55,6.439,10946.86,522421336,-947397795,133.2,19 -Sun Sep 25 06:25:52 PDT 2011,152,55,6.288,10953.14,522422047,-947398056,133.4,19 -Sun Sep 25 06:25:53 PDT 2011,153,60,6.497,10959.64,522422689,-947398384,133.4,19 -Sun Sep 25 06:25:54 PDT 2011,154,63,7.03,10966.67,522423433,-947398662,133.6,19 -Sun Sep 25 06:25:55 PDT 2011,155,66,7.368,10974.04,522424202,-947399016,133.8,19 -Sun Sep 25 06:25:56 PDT 2011,156,69,7.854,10981.89,522425024,-947399445,133.8,19 -Sun Sep 25 06:25:57 PDT 2011,157,74,8.09,10989.98,522425927,-947399973,134.0,19 -Sun Sep 25 06:25:58 PDT 2011,159,78,8.376,10998.36,522426759,-947400582,134.0,19 -Sun Sep 25 06:25:59 PDT 2011,160,78,8.971,11007.33,522427540,-947401269,134.2,19 -Sun Sep 25 06:26:00 PDT 2011,161,34,9.009,11016.34,522428301,-947402139,134.2,19 -Sun Sep 25 06:26:01 PDT 2011,162,83,8.681,11025.02,522429013,-947402937,134.2,19 -Sun Sep 25 06:26:02 PDT 2011,162,84,8.611,11033.63,522429755,-947403729,134.4,19 -Sun Sep 25 06:26:03 PDT 2011,162,83,8.611,11042.24,522430486,-947404350,134.4,19 -Sun Sep 25 06:26:04 PDT 2011,162,83,8.611,11050.85,522431388,-947404890,134.4,19 -Sun Sep 25 06:26:05 PDT 2011,163,83,8.441,11059.29,522432255,-947405299,134.4,19 -Sun Sep 25 06:26:06 PDT 2011,162,0,8.441,11067.74,522433156,-947405656,134.6,19 -Sun Sep 25 06:26:07 PDT 2011,162,0,8.376,11076.11,522434060,-947405923,134.6,19 -Sun Sep 25 06:26:08 PDT 2011,162,0,8.184,11084.3,522434965,-947406217,134.6,19 -Sun Sep 25 06:26:09 PDT 2011,162,0,8.121,11092.42,522435839,-947406488,134.6,19 -Sun Sep 25 06:26:10 PDT 2011,161,0,8.09,11100.51,522436658,-947406763,134.6,19 -Sun Sep 25 06:26:11 PDT 2011,161,74,7.941,11108.45,522437500,-947407102,134.6,19 -Sun Sep 25 06:26:12 PDT 2011,161,74,7.713,11116.16,522438300,-947407438,134.6,19 -Sun Sep 25 06:26:13 PDT 2011,161,75,7.63,11123.79,522439113,-947407808,134.6,19 -Sun Sep 25 06:26:14 PDT 2011,161,75,7.74,11131.53,522439959,-947408185,134.8,19 -Sun Sep 25 06:26:15 PDT 2011,160,34,7.883,11139.42,522440734,-947408532,134.8,19 -Sun Sep 25 06:26:16 PDT 2011,160,77,7.74,11147.16,522441545,-947408874,134.8,19 -Sun Sep 25 06:26:17 PDT 2011,160,77,7.825,11154.98,522442357,-947409222,134.8,19 -Sun Sep 25 06:26:18 PDT 2011,160,78,7.941,11162.92,522443241,-947409592,134.8,19 -Sun Sep 25 06:26:19 PDT 2011,159,78,8.029,11170.95,522444016,-947409938,134.8,19 -Sun Sep 25 06:26:20 PDT 2011,158,78,8.061,11179.01,522444878,-947410302,134.8,19 -Sun Sep 25 06:26:21 PDT 2011,157,78,8.061,11187.07,522445672,-947410642,134.8,19 -Sun Sep 25 06:26:22 PDT 2011,156,0,7.797,11194.87,522446439,-947410964,134.8,19 -Sun Sep 25 06:26:23 PDT 2011,154,0,7.713,11202.61,522447145,-947411282,134.8,19 -Sun Sep 25 06:26:24 PDT 2011,153,0,7.685,11210.28,522447892,-947411631,134.8,19 -Sun Sep 25 06:26:25 PDT 2011,151,74,7.603,11217.87,522448664,-947411981,134.8,19 -Sun Sep 25 06:26:26 PDT 2011,150,75,7.685,11225.56,522449443,-947412294,134.8,19 -Sun Sep 25 06:26:27 PDT 2011,148,87,7.769,11233.33,522450239,-947412631,134.8,19 -Sun Sep 25 06:26:28 PDT 2011,147,86,8.019,11241.34,522451111,-947412984,134.8,19 -Sun Sep 25 06:26:29 PDT 2011,147,86,8.079,11249.42,522451938,-947413308,134.8,19 -Sun Sep 25 06:26:30 PDT 2011,146,86,8.235,11257.66,522452807,-947413660,134.8,19 -Sun Sep 25 06:26:31 PDT 2011,146,0,8.141,11265.8,522453624,-947413992,134.8,19 -Sun Sep 25 06:26:32 PDT 2011,144,0,7.989,11273.79,522454412,-947414334,134.8,19 -Sun Sep 25 06:26:33 PDT 2011,143,0,7.843,11281.63,522455233,-947414683,134.8,19 -Sun Sep 25 06:26:34 PDT 2011,142,0,7.872,11289.5,522456022,-947415043,134.8,19 -Sun Sep 25 06:26:35 PDT 2011,141,80,7.843,11297.35,522456852,-947415393,134.8,19 -Sun Sep 25 06:26:36 PDT 2011,141,85,7.757,11305.1,522457642,-947415731,134.8,19 -Sun Sep 25 06:26:37 PDT 2011,142,85,7.786,11312.89,522458397,-947416069,134.8,19 -Sun Sep 25 06:26:38 PDT 2011,143,85,7.872,11320.76,522459195,-947416394,134.8,19 -Sun Sep 25 06:26:39 PDT 2011,144,85,7.786,11328.55,522459988,-947416719,134.8,19 -Sun Sep 25 06:26:40 PDT 2011,144,0,7.674,11336.22,522460706,-947417008,134.8,19 -Sun Sep 25 06:26:41 PDT 2011,143,0,7.539,11343.76,522461472,-947417294,134.8,19 -Sun Sep 25 06:26:42 PDT 2011,143,81,7.486,11351.25,522462215,-947417557,134.8,19 -Sun Sep 25 06:26:43 PDT 2011,143,82,7.46,11358.71,522462956,-947417860,134.8,19 -Sun Sep 25 06:26:44 PDT 2011,144,83,7.512,11366.22,522463764,-947418155,134.8,19 -Sun Sep 25 06:26:45 PDT 2011,146,84,7.702,11373.92,522464520,-947418435,134.8,19 -Sun Sep 25 06:26:46 PDT 2011,147,84,7.729,11381.65,522465356,-947418733,134.8,19 -Sun Sep 25 06:26:47 PDT 2011,148,87,7.786,11389.44,522466216,-947419060,134.8,19 -Sun Sep 25 06:26:48 PDT 2011,149,88,7.872,11397.31,522467055,-947419348,134.8,19 -Sun Sep 25 06:26:49 PDT 2011,150,88,8.049,11405.36,522467965,-947419629,134.8,19 -Sun Sep 25 06:26:50 PDT 2011,150,88,8.172,11413.53,522468865,-947419919,134.8,19 -Sun Sep 25 06:26:51 PDT 2011,150,88,8.235,11421.76,522469571,-947420372,134.8,19 -Sun Sep 25 06:26:52 PDT 2011,150,0,8.049,11429.81,522470443,-947420753,134.8,19 -Sun Sep 25 06:26:53 PDT 2011,149,0,7.989,11437.8,522471190,-947421051,134.8,19 -Sun Sep 25 06:26:54 PDT 2011,148,0,7.757,11445.56,522471957,-947421328,134.8,19 -Sun Sep 25 06:26:55 PDT 2011,146,0,7.512,11453.07,522472770,-947421636,134.8,19 -Sun Sep 25 06:26:56 PDT 2011,145,78,7.282,11460.37,522473566,-947421931,134.8,19 -Sun Sep 25 06:26:57 PDT 2011,145,78,7.233,11467.58,522474325,-947422166,134.8,19 -Sun Sep 25 06:26:58 PDT 2011,145,78,7.258,11474.84,522475086,-947422424,134.8,19 -Sun Sep 25 06:26:59 PDT 2011,145,79,7.209,11482.05,522475839,-947422670,134.8,19 -Sun Sep 25 06:27:00 PDT 2011,146,79,7.258,11489.31,522476598,-947422921,134.8,19 -Sun Sep 25 06:27:01 PDT 2011,147,79,7.282,11496.59,522477327,-947423153,134.8,19 -Sun Sep 25 06:27:02 PDT 2011,148,82,7.258,11503.85,522478083,-947423397,134.8,19 -Sun Sep 25 06:27:03 PDT 2011,148,82,7.358,11511.21,522478907,-947423687,134.8,19 -Sun Sep 25 06:27:04 PDT 2011,149,81,7.566,11518.77,522479680,-947423976,134.8,19 -Sun Sep 25 06:27:05 PDT 2011,150,81,7.512,11526.29,522480464,-947424291,134.8,19 -Sun Sep 25 06:27:06 PDT 2011,150,80,7.619,11533.9,522481269,-947424578,134.8,19 -Sun Sep 25 06:27:07 PDT 2011,151,80,7.434,11541.34,522482067,-947424870,134.8,19 -Sun Sep 25 06:27:08 PDT 2011,150,80,7.332,11548.67,522482805,-947425138,134.8,19 -Sun Sep 25 06:27:09 PDT 2011,150,83,7.09,11555.76,522483538,-947425399,134.8,19 -Sun Sep 25 06:27:10 PDT 2011,149,85,6.862,11564.53,522484475,-947425733,134.8,19 -Sun Sep 25 06:27:11 PDT 2011,149,86,7.09,11569.66,522484973,-947425917,134.8,19 -Sun Sep 25 06:27:12 PDT 2011,150,86,7.282,11576.93,522485730,-947426216,134.8,19 -Sun Sep 25 06:27:13 PDT 2011,150,86,7.257,11584.19,522486466,-947426532,134.8,19 -Sun Sep 25 06:27:14 PDT 2011,150,86,7.161,11591.35,522487163,-947426928,134.8,19 -Sun Sep 25 06:27:15 PDT 2011,150,87,7.282,11598.63,522487880,-947427346,134.8,19 -Sun Sep 25 06:27:16 PDT 2011,150,86,7.408,11606.04,522488611,-947427755,134.8,19 -Sun Sep 25 06:27:17 PDT 2011,150,85,7.233,11613.27,522489316,-947428072,134.8,19 -Sun Sep 25 06:27:18 PDT 2011,150,86,7.113,11620.39,522490073,-947428338,134.8,19 -Sun Sep 25 06:27:19 PDT 2011,150,87,7.137,11627.52,522490795,-947428582,134.8,19 -Sun Sep 25 06:27:20 PDT 2011,150,86,7.233,11634.76,522491505,-947428858,134.8,19 -Sun Sep 25 06:27:21 PDT 2011,150,85,7.209,11641.96,522492166,-947429118,135.0,19 -Sun Sep 25 06:27:22 PDT 2011,149,85,7.161,11649.13,522492855,-947429455,135.2,19 -Sun Sep 25 06:27:23 PDT 2011,150,85,7.066,11656.19,522493571,-947429761,135.4,19 -Sun Sep 25 06:27:24 PDT 2011,150,85,7.113,11663.31,522494344,-947430092,135.6,19 -Sun Sep 25 06:27:25 PDT 2011,151,87,7.137,11670.44,522495087,-947430384,135.8,19 -Sun Sep 25 06:27:26 PDT 2011,151,87,7.185,11677.63,522495840,-947430688,135.8,19 -Sun Sep 25 06:27:27 PDT 2011,152,85,7.244,11684.87,522496576,-947431101,136.0,19 -Sun Sep 25 06:27:28 PDT 2011,152,84,7.123,11691.99,522497278,-947431478,136.0,19 -Sun Sep 25 06:27:29 PDT 2011,152,84,7.053,11699.07,522498014,-947431828,136.2,19 -Sun Sep 25 06:27:30 PDT 2011,153,85,7.053,11706.1,522498751,-947432156,136.2,19 -Sun Sep 25 06:27:31 PDT 2011,153,86,7.053,11713.15,522499505,-947432443,136.2,19 -Sun Sep 25 06:27:32 PDT 2011,153,86,7.123,11720.28,522500285,-947432694,136.4,19 -Sun Sep 25 06:27:33 PDT 2011,153,85,7.123,11727.4,522501052,-947432992,136.4,19 -Sun Sep 25 06:27:34 PDT 2011,154,86,7.076,11734.48,522501803,-947433329,136.4,19 -Sun Sep 25 06:27:35 PDT 2011,154,86,7.147,11741.62,522502525,-947433632,136.6,19 -Sun Sep 25 06:27:36 PDT 2011,154,86,7.171,11748.79,522503301,-947433940,136.6,19 -Sun Sep 25 06:27:37 PDT 2011,155,85,7.195,11755.99,522504019,-947434213,136.6,19 -Sun Sep 25 06:27:38 PDT 2011,155,85,7.053,11763.04,522504791,-947434498,136.8,19 -Sun Sep 25 06:27:39 PDT 2011,156,86,7.147,11770.19,522505524,-947434777,137.0,19 -Sun Sep 25 06:27:40 PDT 2011,155,85,7.076,11777.27,522506268,-947435063,137.2,19 -Sun Sep 25 06:27:41 PDT 2011,156,85,7.244,11784.51,522506970,-947435395,137.4,19 -Sun Sep 25 06:27:42 PDT 2011,155,87,7.174,11791.68,522507696,-947435748,137.6,19 -Sun Sep 25 06:27:43 PDT 2011,155,88,7.271,11798.95,522508390,-947436058,137.8,19 -Sun Sep 25 06:27:44 PDT 2011,156,87,7.346,11806.3,522509138,-947436374,137.8,19 -Sun Sep 25 06:27:45 PDT 2011,156,88,7.271,11813.57,522509887,-947436678,138.0,19 -Sun Sep 25 06:27:46 PDT 2011,156,89,7.346,11820.92,522510648,-947436978,138.2,19 -Sun Sep 25 06:27:47 PDT 2011,156,88,7.422,11828.34,522511386,-947437282,138.2,19 -Sun Sep 25 06:27:48 PDT 2011,156,88,7.447,11835.79,522512147,-947437592,138.4,19 -Sun Sep 25 06:27:49 PDT 2011,157,88,7.371,11843.16,522512935,-947437884,138.4,19 -Sun Sep 25 06:27:50 PDT 2011,157,88,7.396,11850.55,522513725,-947438216,138.4,19 -Sun Sep 25 06:27:51 PDT 2011,158,88,7.346,11857.9,522514486,-947438527,138.6,19 -Sun Sep 25 06:27:52 PDT 2011,158,89,7.371,11865.27,522515245,-947438831,138.6,19 -Sun Sep 25 06:27:53 PDT 2011,158,89,7.396,11872.67,522516010,-947439116,138.6,19 -Sun Sep 25 06:27:54 PDT 2011,157,89,7.499,11880.17,522516790,-947439441,138.6,19 -Sun Sep 25 06:27:55 PDT 2011,157,89,7.499,11887.67,522517563,-947439745,138.8,19 -Sun Sep 25 06:27:56 PDT 2011,157,89,7.526,11895.19,522518337,-947440057,138.8,19 -Sun Sep 25 06:27:57 PDT 2011,157,89,7.463,11902.65,522519100,-947440384,139.0,19 -Sun Sep 25 06:27:58 PDT 2011,157,40,7.286,11909.94,522519852,-947440698,139.2,19 -Sun Sep 25 06:27:59 PDT 2011,156,86,7.286,11917.23,522520619,-947441004,139.4,19 -Sun Sep 25 06:28:00 PDT 2011,156,34,7.31,11924.54,522521329,-947441271,139.6,19 -Sun Sep 25 06:28:01 PDT 2011,155,84,7.024,11931.56,522522032,-947441562,139.8,19 -Sun Sep 25 06:28:02 PDT 2011,155,84,7.047,11938.62,522522737,-947441863,139.8,19 -Sun Sep 25 06:28:03 PDT 2011,155,85,7.07,11945.68,522523461,-947442140,140.0,19 -Sun Sep 25 06:28:04 PDT 2011,156,86,7.047,11952.73,522524193,-947442425,140.2,19 -Sun Sep 25 06:28:05 PDT 2011,156,85,7.093,11959.82,522524916,-947442721,140.2,19 -Sun Sep 25 06:28:06 PDT 2011,156,85,7.212,11967.03,522525663,-947443018,140.4,19 -Sun Sep 25 06:28:07 PDT 2011,156,85,7.236,11974.27,522526419,-947443321,140.4,19 -Sun Sep 25 06:28:08 PDT 2011,156,86,7.117,11981.38,522527152,-947443603,140.4,19 -Sun Sep 25 06:28:09 PDT 2011,156,87,7.14,11988.52,522527923,-947443923,140.6,19 -Sun Sep 25 06:28:10 PDT 2011,155,88,7.36,11995.88,522528686,-947444225,140.6,19 -Sun Sep 25 06:28:11 PDT 2011,156,89,7.286,12003.17,522529422,-947444511,140.6,19 -Sun Sep 25 06:28:12 PDT 2011,156,89,7.473,12010.64,522530213,-947444837,140.8,19 -Sun Sep 25 06:28:13 PDT 2011,157,89,7.473,12018.11,522530973,-947445157,140.8,19 -Sun Sep 25 06:28:14 PDT 2011,157,89,7.422,12025.54,522531741,-947445466,140.8,19 -Sun Sep 25 06:28:15 PDT 2011,158,90,7.499,12033.04,522532529,-947445777,140.8,19 -Sun Sep 25 06:28:16 PDT 2011,159,90,7.579,12040.61,522533316,-947446082,140.8,19 -Sun Sep 25 06:28:17 PDT 2011,159,85,7.526,12048.14,522534121,-947446413,141.0,19 -Sun Sep 25 06:28:18 PDT 2011,160,85,7.579,12055.72,522534888,-947446732,141.0,19 -Sun Sep 25 06:28:19 PDT 2011,160,85,7.447,12063.17,522535640,-947447024,141.0,19 -Sun Sep 25 06:28:20 PDT 2011,159,0,7.011,12070.18,522536340,-947447357,141.0,19 -Sun Sep 25 06:28:21 PDT 2011,158,0,6.622,12076.8,522537012,-947447679,141.0,19 -Sun Sep 25 06:28:22 PDT 2011,157,0,6.444,12083.24,522537656,-947448008,141.2,19 -Sun Sep 25 06:28:23 PDT 2011,157,0,6.368,12089.61,522538268,-947448334,141.4,19 -Sun Sep 25 06:28:24 PDT 2011,155,0,6.22,12095.83,522538859,-947448625,141.6,19 -Sun Sep 25 06:28:25 PDT 2011,154,0,6.114,12101.95,522539449,-947448886,141.8,19 -Sun Sep 25 06:28:26 PDT 2011,153,0,6.023,12107.97,522540000,-947449136,142.0,19 -Sun Sep 25 06:28:27 PDT 2011,153,0,5.649,12113.62,522540538,-947449386,142.0,19 -Sun Sep 25 06:28:28 PDT 2011,152,0,5.086,12118.71,522541023,-947449603,142.2,19 -Sun Sep 25 06:28:29 PDT 2011,152,0,4.482,12123.19,522541453,-947449785,142.2,19 -Sun Sep 25 06:28:30 PDT 2011,151,0,4.059,12127.25,522541847,-947449933,142.4,19 -Sun Sep 25 06:28:31 PDT 2011,150,0,3.503,12130.75,522542146,-947450032,142.4,19 -Sun Sep 25 06:28:32 PDT 2011,149,0,3.0,12133.75,522542402,-947450126,142.6,19 -Sun Sep 25 06:28:33 PDT 2011,147,0,2.747,12136.5,522542581,-947450239,142.6,19 -Sun Sep 25 06:28:34 PDT 2011,146,0,2.335,12138.83,522542732,-947450311,142.6,19 -Sun Sep 25 06:28:35 PDT 2011,145,0,1.954,12140.79,522542834,-947450358,142.8,19 -Sun Sep 25 06:28:36 PDT 2011,143,0,1.341,12142.13,522542922,-947450408,142.8,19 -Sun Sep 25 06:28:56 PDT 2011,141,0,0.0,12142.13,522543442,-947450510,143.2,19 -Sun Sep 25 06:28:57 PDT 2011,141,0,2.027,12144.2,522543783,-947450672,143.2,19 -Sun Sep 25 06:28:58 PDT 2011,142,43,2.027,12146.18,522544171,-947450860,143.2,19 -Sun Sep 25 06:28:59 PDT 2011,143,63,2.027,12148.43,522544635,-947451396,143.2,19 -Sun Sep 25 06:29:00 PDT 2011,145,70,4.718,12152.62,522544949,-947451930,143.2,19 -Sun Sep 25 06:29:01 PDT 2011,147,75,5.544,12158.17,522545278,-947452758,143.2,19 -Sun Sep 25 06:29:02 PDT 2011,149,77,6.236,12164.4,522545463,-947453750,143.2,19 -Sun Sep 25 06:29:03 PDT 2011,150,77,6.579,12170.98,522545505,-947454853,143.2,19 -Sun Sep 25 06:29:04 PDT 2011,152,31,7.195,12178.18,522545402,-947455949,143.2,19 -Sun Sep 25 06:29:05 PDT 2011,153,83,7.342,12185.52,522545208,-947457117,143.2,19 -Sun Sep 25 06:29:06 PDT 2011,154,85,7.496,12193.02,522544914,-947458318,143.2,19 -Sun Sep 25 06:29:07 PDT 2011,154,89,7.795,12200.81,522544589,-947459480,143.2,19 -Sun Sep 25 06:29:08 PDT 2011,153,86,8.149,12208.96,522544273,-947460676,143.2,19 -Sun Sep 25 06:29:09 PDT 2011,153,83,8.436,12217.4,522543970,-947461901,143.2,19 -Sun Sep 25 06:29:10 PDT 2011,153,83,8.64,12226.04,522543682,-947463157,143.2,19 -Sun Sep 25 06:29:11 PDT 2011,153,83,8.817,12234.85,522543398,-947464424,143.2,19 -Sun Sep 25 06:29:12 PDT 2011,153,19,8.964,12243.82,522543106,-947465755,143.2,19 -Sun Sep 25 06:29:13 PDT 2011,152,76,9.077,12252.89,522542801,-947467073,143.2,19 -Sun Sep 25 06:29:14 PDT 2011,151,75,9.273,12262.8,522542475,-947468506,143.2,19 -Sun Sep 25 06:29:15 PDT 2011,149,75,9.561,12275.29,522542049,-947470318,143.2,19 -Sun Sep 25 06:29:16 PDT 2011,148,75,9.561,12281.3,522541857,-947471166,143.0,19 -Sun Sep 25 06:29:17 PDT 2011,145,0,9.604,12290.92,522541542,-947472552,142.8,19 -Sun Sep 25 06:29:18 PDT 2011,143,0,9.561,12300.43,522541236,-947473931,142.6,19 -Sun Sep 25 06:29:19 PDT 2011,143,0,9.519,12309.95,522540924,-947475307,142.6,19 -Sun Sep 25 06:29:20 PDT 2011,143,76,9.561,12319.51,522540626,-947476630,142.4,19 -Sun Sep 25 06:29:21 PDT 2011,144,77,9.604,12329.12,522540321,-947478020,142.2,19 -Sun Sep 25 06:29:22 PDT 2011,144,77,9.691,12338.81,522540015,-947479421,142.2,19 -Sun Sep 25 06:29:23 PDT 2011,145,77,9.691,12348.5,522539717,-947480788,142.0,19 -Sun Sep 25 06:29:24 PDT 2011,145,0,9.626,12358.17,522539436,-947482153,142.0,19 -Sun Sep 25 06:29:25 PDT 2011,144,0,9.561,12367.69,522539153,-947483468,141.8,19 -Sun Sep 25 06:29:26 PDT 2011,141,0,9.313,12377.0,522538870,-947484759,141.8,19 -Sun Sep 25 06:29:27 PDT 2011,138,0,9.039,12386.04,522538598,-947486019,141.8,19 -Sun Sep 25 06:29:28 PDT 2011,137,80,9.116,12395.16,522538311,-947487304,141.6,19 -Sun Sep 25 06:29:29 PDT 2011,137,80,9.273,12404.43,522538029,-947488552,141.6,19 -Sun Sep 25 06:29:30 PDT 2011,138,41,9.519,12413.95,522537703,-947489848,141.6,19 -Sun Sep 25 06:29:31 PDT 2011,140,81,9.491,12423.44,522537390,-947491174,141.6,19 -Sun Sep 25 06:29:32 PDT 2011,140,82,9.533,12432.97,522537079,-947492518,141.6,19 -Sun Sep 25 06:29:33 PDT 2011,141,82,9.575,12442.55,522536835,-947493855,141.4,19 -Sun Sep 25 06:29:34 PDT 2011,142,82,9.533,12452.08,522536579,-947495203,141.4,19 -Sun Sep 25 06:29:35 PDT 2011,141,0,9.449,12461.53,522536297,-947496473,141.4,19 -Sun Sep 25 06:29:36 PDT 2011,140,0,9.326,12470.86,522535988,-947497777,141.4,19 -Sun Sep 25 06:29:37 PDT 2011,139,0,9.246,12480.1,522535668,-947499104,141.4,19 -Sun Sep 25 06:29:38 PDT 2011,139,0,9.207,12489.31,522535358,-947500405,141.4,19 -Sun Sep 25 06:29:39 PDT 2011,138,0,9.168,12498.48,522535068,-947501726,141.4,19 -Sun Sep 25 06:29:40 PDT 2011,138,0,9.052,12507.53,522534811,-947503016,141.4,19 -Sun Sep 25 06:29:41 PDT 2011,137,0,8.866,12516.4,522534541,-947504307,141.4,19 -Sun Sep 25 06:29:42 PDT 2011,136,0,8.722,12525.12,522534276,-947505530,141.2,19 -Sun Sep 25 06:29:43 PDT 2011,135,0,8.536,12533.65,522534019,-947506766,141.2,19 -Sun Sep 25 06:29:44 PDT 2011,134,0,8.274,12541.93,522533794,-947507940,141.2,19 -Sun Sep 25 06:29:45 PDT 2011,133,0,8.18,12550.11,522533581,-947509061,141.2,19 -Sun Sep 25 06:29:46 PDT 2011,134,0,7.939,12558.05,522533387,-947510139,141.2,19 -Sun Sep 25 06:29:47 PDT 2011,134,0,7.853,12566.01,522533217,-947511163,141.2,19 -Sun Sep 25 06:29:48 PDT 2011,134,0,7.37,12573.28,522533035,-947512139,141.2,19 -Sun Sep 25 06:29:49 PDT 2011,135,0,7.222,12580.5,522532825,-947513130,141.2,19 -Sun Sep 25 06:29:50 PDT 2011,136,0,7.198,12587.7,522532648,-947514071,141.2,19 -Sun Sep 25 06:29:51 PDT 2011,137,0,7.151,12594.85,522532459,-947515046,141.2,19 -Sun Sep 25 06:29:52 PDT 2011,139,0,6.944,12601.79,522532443,-947516055,141.2,19 -Sun Sep 25 06:29:53 PDT 2011,141,0,6.604,12608.4,522532690,-947516937,141.2,19 -Sun Sep 25 06:29:54 PDT 2011,142,58,6.584,12614.98,522533110,-947517785,141.2,19 -Sun Sep 25 06:29:55 PDT 2011,145,61,7.222,12622.2,522533651,-947518274,141.2,19 -Sun Sep 25 06:29:56 PDT 2011,147,63,7.247,12629.45,522534286,-947518842,141.2,19 -Sun Sep 25 06:29:57 PDT 2011,149,75,7.472,12636.95,522535170,-947519172,141.2,19 -Sun Sep 25 06:29:58 PDT 2011,151,78,7.768,12644.69,522536001,-947519467,141.2,19 -Sun Sep 25 06:29:59 PDT 2011,152,83,8.18,12652.87,522536894,-947519793,141.2,19 -Sun Sep 25 06:30:00 PDT 2011,154,85,8.502,12661.37,522537838,-947520107,141.2,19 -Sun Sep 25 06:30:01 PDT 2011,156,86,8.778,12670.15,522538805,-947520441,141.2,19 -Sun Sep 25 06:30:02 PDT 2011,157,85,9.229,12679.38,522539840,-947520747,141.2,19 -Sun Sep 25 06:30:03 PDT 2011,158,84,8.924,12688.3,522540792,-947521117,141.2,19 -Sun Sep 25 06:30:04 PDT 2011,159,83,8.778,12697.08,522541738,-947521423,141.2,19 -Sun Sep 25 06:30:05 PDT 2011,161,87,8.708,12705.79,522542675,-947521713,141.2,19 -Sun Sep 25 06:30:06 PDT 2011,161,90,8.436,12714.22,522543587,-947521936,141.2,19 -Sun Sep 25 06:30:07 PDT 2011,161,89,8.338,12722.56,522544470,-947522200,141.2,19 -Sun Sep 25 06:30:08 PDT 2011,161,89,8.306,12730.86,522545418,-947522444,141.2,19 -Sun Sep 25 06:30:09 PDT 2011,161,89,8.338,12739.2,522546324,-947522669,141.2,19 -Sun Sep 25 06:30:10 PDT 2011,161,90,8.306,12748.19,522547296,-947522899,141.2,19 -Sun Sep 25 06:30:11 PDT 2011,162,91,8.436,12756.63,522548177,-947523115,141.2,19 -Sun Sep 25 06:30:12 PDT 2011,162,91,8.436,12765.07,522549060,-947523314,141.2,19 -Sun Sep 25 06:30:13 PDT 2011,161,86,8.403,12773.48,522549963,-947523535,141.2,19 -Sun Sep 25 06:30:14 PDT 2011,161,86,8.436,12781.93,522550856,-947523753,141.2,19 -Sun Sep 25 06:30:15 PDT 2011,160,86,8.274,12790.17,522551711,-947523988,141.2,19 -Sun Sep 25 06:30:16 PDT 2011,159,0,8.118,12798.24,522552558,-947524194,141.2,19 -Sun Sep 25 06:30:17 PDT 2011,158,0,7.998,12806.32,522553401,-947524392,141.2,19 -Sun Sep 25 06:30:18 PDT 2011,157,0,7.604,12813.8,522554169,-947524587,141.2,19 -Sun Sep 25 06:30:19 PDT 2011,155,0,7.32,12821.12,522554925,-947524786,141.2,19 -Sun Sep 25 06:30:20 PDT 2011,154,0,7.127,12828.27,522555680,-947524978,141.2,19 -Sun Sep 25 06:30:21 PDT 2011,153,0,6.925,12835.18,522556399,-947525177,141.2,19 -Sun Sep 25 06:30:22 PDT 2011,152,0,6.67,12841.85,522557072,-947525384,141.2,19 -Sun Sep 25 06:30:23 PDT 2011,151,0,6.509,12848.36,522557736,-947525563,141.2,19 -Sun Sep 25 06:30:24 PDT 2011,151,0,6.375,12854.76,522558389,-947525741,141.2,19 -Sun Sep 25 06:30:25 PDT 2011,150,0,6.141,12860.92,522558932,-947525874,141.2,19 -Sun Sep 25 06:30:26 PDT 2011,149,0,4.478,12865.39,522559370,-947526000,141.2,19 -Sun Sep 25 06:30:27 PDT 2011,149,0,3.392,12868.78,522559671,-947526055,141.2,19 -Sun Sep 25 06:30:28 PDT 2011,146,0,3.019,12871.82,522559935,-947526085,141.2,19 -Sun Sep 25 06:30:29 PDT 2011,145,0,2.765,12874.58,522560131,-947526149,141.2,19 -Sun Sep 25 06:30:30 PDT 2011,144,0,2.765,12877.35,522560274,-947526162,141.2,19 -Sun Sep 25 06:30:31 PDT 2011,144,0,2.483,12879.83,522560448,-947526232,141.2,19 -Sun Sep 25 06:30:32 PDT 2011,143,0,2.33,12882.17,522560600,-947526320,141.2,19 -Sun Sep 25 06:30:33 PDT 2011,143,0,2.154,12884.31,522560850,-947526467,141.2,19 -Sun Sep 25 06:30:34 PDT 2011,143,25,2.894,12887.19,522561106,-947526715,141.2,19 -Sun Sep 25 06:30:35 PDT 2011,143,25,2.878,12890.06,522561290,-947527200,141.2,19 -Sun Sep 25 06:30:36 PDT 2011,143,39,3.803,12893.88,522561481,-947527747,141.2,19 -Sun Sep 25 06:30:37 PDT 2011,145,50,4.353,12898.21,522561495,-947528512,141.2,19 -Sun Sep 25 06:30:38 PDT 2011,146,58,5.412,12903.63,522561416,-947529498,141.2,19 -Sun Sep 25 06:30:39 PDT 2011,148,65,6.193,12909.82,522561186,-947530464,141.2,19 -Sun Sep 25 06:30:40 PDT 2011,150,71,7.061,12916.92,522560906,-947531604,141.2,19 -Sun Sep 25 06:30:41 PDT 2011,152,71,7.373,12924.25,522560628,-947532701,141.2,19 -Sun Sep 25 06:30:42 PDT 2011,153,24,7.742,12932.04,522560369,-947533740,141.2,19 -Sun Sep 25 06:30:43 PDT 2011,155,76,7.299,12939.33,522560188,-947534720,141.2,19 -Sun Sep 25 06:30:44 PDT 2011,156,82,7.348,12946.77,522560027,-947535814,141.2,19 -Sun Sep 25 06:30:45 PDT 2011,157,83,7.633,12954.35,522559875,-947536854,141.2,19 -Sun Sep 25 06:30:46 PDT 2011,157,83,7.687,12962.05,522559721,-947537919,141.2,19 -Sun Sep 25 06:30:47 PDT 2011,158,83,7.742,12970.11,522559552,-947539050,141.2,19 -Sun Sep 25 06:30:48 PDT 2011,157,83,7.769,12977.59,522559387,-947540152,141.2,19 -Sun Sep 25 06:30:49 PDT 2011,158,83,7.687,12985.24,522559203,-947541274,141.2,19 -Sun Sep 25 06:30:50 PDT 2011,158,83,7.742,12992.94,522559022,-947542382,141.2,19 -Sun Sep 25 06:30:51 PDT 2011,157,83,7.769,13000.71,522558821,-947543537,141.2,19 -Sun Sep 25 06:30:52 PDT 2011,157,83,7.826,13008.57,522558640,-947544664,141.2,19 -Sun Sep 25 06:30:53 PDT 2011,157,0,7.579,13016.09,522558475,-947545743,141.2,19 -Sun Sep 25 06:30:54 PDT 2011,156,79,7.475,13023.54,522558311,-947546818,141.2,19 -Sun Sep 25 06:30:55 PDT 2011,155,80,7.398,13030.94,522558160,-947547874,141.2,19 -Sun Sep 25 06:30:56 PDT 2011,155,80,7.501,13037.91,522558037,-947548873,141.2,19 -Sun Sep 25 06:30:57 PDT 2011,156,81,7.553,13045.46,522557905,-947549931,141.2,19 -Sun Sep 25 06:30:58 PDT 2011,156,81,7.527,13052.99,522557788,-947551015,141.2,19 -Sun Sep 25 06:30:59 PDT 2011,156,81,7.527,13060.52,522557655,-947552123,141.2,19 -Sun Sep 25 06:31:00 PDT 2011,156,81,7.606,13068.15,522557555,-947553224,141.2,19 -Sun Sep 25 06:31:01 PDT 2011,156,0,7.424,13075.55,522557457,-947554298,141.2,19 -Sun Sep 25 06:31:02 PDT 2011,155,0,7.449,13083.0,522557335,-947555400,141.2,19 -Sun Sep 25 06:31:03 PDT 2011,155,78,7.25,13090.27,522557225,-947556458,141.2,19 -Sun Sep 25 06:31:04 PDT 2011,154,79,7.366,13097.61,522557106,-947557560,141.2,19 -Sun Sep 25 06:31:05 PDT 2011,154,79,7.366,13104.98,522556990,-947558623,141.2,19 -Sun Sep 25 06:31:06 PDT 2011,153,79,7.292,13112.27,522556893,-947559655,141.2,19 -Sun Sep 25 06:31:07 PDT 2011,153,79,7.292,13119.56,522556804,-947560688,141.2,19 -Sun Sep 25 06:31:08 PDT 2011,153,84,6.705,13126.27,522556804,-947560688,141.2,19 -Sun Sep 25 06:31:09 PDT 2011,152,87,7.031,13133.3,522556547,-947562686,141.2,19 -Sun Sep 25 06:31:10 PDT 2011,152,90,7.267,13140.56,522556395,-947563743,141.2,19 -Sun Sep 25 06:31:11 PDT 2011,151,96,7.546,13148.11,522556178,-947564841,141.2,19 -Sun Sep 25 06:31:12 PDT 2011,151,93,7.933,13156.04,522555939,-947566016,141.2,19 -Sun Sep 25 06:31:13 PDT 2011,151,91,8.111,13164.15,522555689,-947567231,141.2,19 -Sun Sep 25 06:31:14 PDT 2011,151,92,8.46,13172.61,522555410,-947568475,141.2,19 -Sun Sep 25 06:31:15 PDT 2011,152,88,8.628,13181.24,522555139,-947569711,141.2,19 -Sun Sep 25 06:31:16 PDT 2011,152,88,8.768,13190.01,522554852,-947571011,141.2,19 -Sun Sep 25 06:31:17 PDT 2011,152,88,8.839,13198.85,522554571,-947572295,141.2,19 -Sun Sep 25 06:31:18 PDT 2011,152,0,8.628,13207.48,522554308,-947573501,141.2,19 -Sun Sep 25 06:31:19 PDT 2011,150,0,8.526,13216.14,522554040,-947574753,141.2,19 -Sun Sep 25 06:31:20 PDT 2011,148,0,8.56,13228.17,522553652,-947576437,141.2,20 -Sun Sep 25 06:31:21 PDT 2011,148,84,8.56,13233.14,522553496,-947577133,141.2,20 -Sun Sep 25 06:31:22 PDT 2011,147,84,8.732,13241.85,522553206,-947578376,141.2,20 -Sun Sep 25 06:31:23 PDT 2011,146,84,8.921,13250.77,522552942,-947579600,141.2,20 -Sun Sep 25 06:31:24 PDT 2011,146,0,8.812,13259.59,522552668,-947580888,141.2,20 -Sun Sep 25 06:31:25 PDT 2011,145,0,8.848,13268.43,522552387,-947582142,141.2,20 -Sun Sep 25 06:31:26 PDT 2011,145,0,8.671,13277.11,522552118,-947583367,141.2,20 -Sun Sep 25 06:31:27 PDT 2011,145,0,8.534,13285.64,522551864,-947584551,141.2,20 -Sun Sep 25 06:31:28 PDT 2011,146,82,8.149,13293.79,522551605,-947585788,141.2,20 -Sun Sep 25 06:31:29 PDT 2011,147,77,8.568,13302.36,522551370,-947586957,141.2,20 -Sun Sep 25 06:31:30 PDT 2011,147,77,8.706,13311.06,522551129,-947588193,141.2,20 -Sun Sep 25 06:31:31 PDT 2011,147,77,8.812,13319.87,522550880,-947589437,141.2,20 -Sun Sep 25 06:31:32 PDT 2011,147,0,8.776,13328.65,522550625,-947590699,141.2,20 -Sun Sep 25 06:31:33 PDT 2011,146,0,8.776,13337.43,522550363,-947591936,141.2,20 -Sun Sep 25 06:31:34 PDT 2011,146,74,8.706,13346.13,522550092,-947593183,141.2,20 -Sun Sep 25 06:31:35 PDT 2011,145,79,8.706,13354.84,522549806,-947594432,141.2,20 -Sun Sep 25 06:31:36 PDT 2011,144,84,8.799,13363.66,522549525,-947595686,141.2,20 -Sun Sep 25 06:31:37 PDT 2011,143,84,8.835,13372.47,522549244,-947596967,141.2,20 -Sun Sep 25 06:31:38 PDT 2011,142,84,8.728,13381.2,522548966,-947598190,141.2,20 -Sun Sep 25 06:31:39 PDT 2011,140,0,8.728,13389.93,522548682,-947599421,141.2,20 -Sun Sep 25 06:31:40 PDT 2011,139,0,8.556,13398.48,522548404,-947600627,141.2,20 -Sun Sep 25 06:31:41 PDT 2011,139,0,8.294,13406.78,522548158,-947601776,141.2,20 -Sun Sep 25 06:31:42 PDT 2011,138,78,8.076,13414.86,522547906,-947602909,141.2,20 -Sun Sep 25 06:31:43 PDT 2011,138,79,8.137,13422.99,522547651,-947604059,141.2,20 -Sun Sep 25 06:31:44 PDT 2011,140,81,8.262,13431.25,522547391,-947605195,141.2,20 -Sun Sep 25 06:31:45 PDT 2011,142,81,8.423,13439.68,522547130,-947606347,141.2,20 -Sun Sep 25 06:31:46 PDT 2011,143,27,8.325,13448.0,522546871,-947607513,141.2,20 -Sun Sep 25 06:31:47 PDT 2011,143,80,8.294,13456.3,522546621,-947608672,141.2,20 -Sun Sep 25 06:31:48 PDT 2011,144,81,8.423,13464.72,522546364,-947609874,141.2,20 -Sun Sep 25 06:31:49 PDT 2011,144,81,8.53,13473.25,522546115,-947611078,141.2,20 -Sun Sep 25 06:31:50 PDT 2011,144,81,8.564,13481.81,522545871,-947612254,141.2,20 -Sun Sep 25 06:31:51 PDT 2011,144,0,8.464,13490.28,522545637,-947613427,141.2,20 -Sun Sep 25 06:31:52 PDT 2011,144,0,8.398,13498.68,522545377,-947614613,141.2,20 -Sun Sep 25 06:31:53 PDT 2011,144,0,8.27,13506.95,522545128,-947615773,141.2,20 -Sun Sep 25 06:31:54 PDT 2011,144,0,8.145,13515.09,522544890,-947616893,141.2,20 -Sun Sep 25 06:31:55 PDT 2011,145,0,8.145,13523.23,522544645,-947618048,141.2,20 -Sun Sep 25 06:31:56 PDT 2011,144,0,8.115,13531.35,522544399,-947619200,141.2,20 -Sun Sep 25 06:31:57 PDT 2011,143,76,8.024,13539.38,522544163,-947620350,141.2,20 -Sun Sep 25 06:31:58 PDT 2011,142,76,7.995,13547.37,522543911,-947621484,141.2,20 -Sun Sep 25 06:31:59 PDT 2011,142,76,7.936,13555.31,522543648,-947622553,141.2,20 -Sun Sep 25 06:32:00 PDT 2011,141,0,7.879,13563.19,522543381,-947623645,141.2,20 -Sun Sep 25 06:32:01 PDT 2011,139,0,7.822,13571.01,522543114,-947624745,141.2,20 -Sun Sep 25 06:32:02 PDT 2011,137,0,7.683,13578.69,522542861,-947625820,141.2,20 -Sun Sep 25 06:32:03 PDT 2011,135,0,7.602,13586.29,522542617,-947626888,141.0,20 -Sun Sep 25 06:32:04 PDT 2011,132,0,7.445,13593.74,522542381,-947627970,140.8,20 -Sun Sep 25 06:32:05 PDT 2011,131,0,7.295,13601.03,522542183,-947628976,140.6,20 -Sun Sep 25 06:32:06 PDT 2011,129,0,7.104,13608.14,522542003,-947629918,140.4,20 -Sun Sep 25 06:32:07 PDT 2011,128,0,6.585,13614.72,522541828,-947630869,140.4,20 -Sun Sep 25 06:32:08 PDT 2011,128,0,6.448,13621.17,522541649,-947631761,140.2,20 -Sun Sep 25 06:32:09 PDT 2011,129,0,6.354,13627.54,522541496,-947632625,140.0,20 -Sun Sep 25 06:32:10 PDT 2011,130,0,6.155,13633.68,522541358,-947633493,140.0,20 -Sun Sep 25 06:32:11 PDT 2011,132,64,6.208,13639.89,522541478,-947634401,140.0,20 -Sun Sep 25 06:32:12 PDT 2011,134,68,6.208,13646.09,522541949,-947635206,139.8,20 -Sun Sep 25 06:32:13 PDT 2011,138,72,7.151,13653.25,522542583,-947635600,139.8,20 -Sun Sep 25 06:32:14 PDT 2011,140,74,7.395,13660.64,522543306,-947636100,139.6,20 -Sun Sep 25 06:32:15 PDT 2011,143,81,7.738,13668.38,522544334,-947636466,139.6,20 -Sun Sep 25 06:32:16 PDT 2011,145,83,8.365,13676.74,522545402,-947636622,139.6,20 -Sun Sep 25 06:32:17 PDT 2011,148,83,8.649,13685.39,522546423,-947636695,139.6,20 -Sun Sep 25 06:32:18 PDT 2011,150,83,9.22,13694.61,522547427,-947636818,139.4,20 -Sun Sep 25 06:32:19 PDT 2011,151,0,8.632,13703.24,522548396,-947637076,139.4,20 -Sun Sep 25 06:32:20 PDT 2011,151,0,8.497,13711.74,522549282,-947637375,139.4,20 -Sun Sep 25 06:32:21 PDT 2011,149,0,8.054,13719.8,522550120,-947637661,139.4,20 -Sun Sep 25 06:32:22 PDT 2011,147,75,7.936,13727.73,522550906,-947637905,139.4,20 -Sun Sep 25 06:32:23 PDT 2011,146,85,7.629,13735.36,522551738,-947638193,139.4,20 -Sun Sep 25 06:32:24 PDT 2011,147,86,7.995,13743.36,522552518,-947638507,139.4,20 -Sun Sep 25 06:32:25 PDT 2011,147,87,7.995,13751.35,522553328,-947638897,139.2,20 -Sun Sep 25 06:32:26 PDT 2011,148,88,8.085,13759.44,522554155,-947639299,139.2,20 -Sun Sep 25 06:32:27 PDT 2011,149,90,8.145,13767.58,522554967,-947639707,139.2,20 -Sun Sep 25 06:32:28 PDT 2011,150,91,8.333,13775.91,522555807,-947640185,139.2,20 -Sun Sep 25 06:32:29 PDT 2011,152,91,8.464,13784.38,522556606,-947640740,139.2,20 -Sun Sep 25 06:32:30 PDT 2011,153,90,8.431,13792.81,522557385,-947641365,139.2,20 -Sun Sep 25 06:32:31 PDT 2011,154,91,8.464,13801.27,522558156,-947642121,139.2,20 -Sun Sep 25 06:32:32 PDT 2011,154,86,8.431,13809.7,522558873,-947642943,139.2,20 -Sun Sep 25 06:32:33 PDT 2011,155,80,8.464,13818.17,522559558,-947643833,139.2,20 -Sun Sep 25 06:32:34 PDT 2011,155,75,8.365,13826.53,522560199,-947644718,139.2,20 -Sun Sep 25 06:32:35 PDT 2011,155,75,8.365,13834.9,522560805,-947645597,139.2,20 -Sun Sep 25 06:32:36 PDT 2011,155,80,7.966,13842.86,522561380,-947646438,139.2,20 -Sun Sep 25 06:32:37 PDT 2011,155,84,7.794,13850.66,522561926,-947647287,139.2,20 -Sun Sep 25 06:32:38 PDT 2011,156,84,7.794,13858.45,522562458,-947648191,139.2,20 -Sun Sep 25 06:32:39 PDT 2011,156,83,7.85,13866.3,522562957,-947649126,139.4,20 -Sun Sep 25 06:32:40 PDT 2011,155,83,7.794,13874.09,522563496,-947650018,139.6,20 -Sun Sep 25 06:32:41 PDT 2011,156,89,7.794,13881.89,522564035,-947650885,139.8,20 -Sun Sep 25 06:32:42 PDT 2011,156,90,7.656,13889.54,522564615,-947651710,139.8,20 -Sun Sep 25 06:32:43 PDT 2011,155,91,7.629,13897.17,522565169,-947652495,140.0,20 -Sun Sep 25 06:32:44 PDT 2011,156,91,7.656,13904.83,522565758,-947653288,140.2,20 -Sun Sep 25 06:32:45 PDT 2011,156,92,7.71,13912.54,522566260,-947654185,140.2,20 -Sun Sep 25 06:32:46 PDT 2011,157,92,7.71,13920.25,522566785,-947655173,140.4,20 -Sun Sep 25 06:32:47 PDT 2011,158,94,7.794,13928.04,522567301,-947656153,140.4,20 -Sun Sep 25 06:32:48 PDT 2011,159,95,7.951,13935.99,522567833,-947657083,140.4,20 -Sun Sep 25 06:32:49 PDT 2011,159,96,8.085,13944.08,522568409,-947657995,140.6,20 -Sun Sep 25 06:32:50 PDT 2011,160,96,8.05,13952.13,522569024,-947658832,140.6,20 -Sun Sep 25 06:32:51 PDT 2011,160,96,8.05,13960.18,522569628,-947659639,140.8,20 -Sun Sep 25 06:32:52 PDT 2011,160,0,7.707,13967.89,522570233,-947660367,141.2,20 -Sun Sep 25 06:32:53 PDT 2011,159,0,7.625,13975.51,522570836,-947661108,141.4,20 -Sun Sep 25 06:32:54 PDT 2011,158,0,7.652,13983.16,522571439,-947661868,141.6,20 -Sun Sep 25 06:32:55 PDT 2011,158,0,7.625,13990.79,522572006,-947662673,141.8,20 -Sun Sep 25 06:32:56 PDT 2011,157,0,7.707,13998.5,522572561,-947663529,141.8,20 -Sun Sep 25 06:32:57 PDT 2011,157,0,7.846,14006.34,522573122,-947664402,142.0,20 -Sun Sep 25 06:32:58 PDT 2011,156,0,8.081,14014.42,522573724,-947665290,142.2,20 -Sun Sep 25 06:32:59 PDT 2011,155,0,8.234,14022.66,522574321,-947666179,142.2,20 -Sun Sep 25 06:33:00 PDT 2011,154,0,8.394,14031.05,522574943,-947667079,142.4,20 -Sun Sep 25 06:33:01 PDT 2011,153,0,8.46,14039.51,522575555,-947667992,142.4,20 -Sun Sep 25 06:33:02 PDT 2011,151,0,8.56,14048.07,522576181,-947668947,142.6,20 -Sun Sep 25 06:33:03 PDT 2011,150,0,8.697,14056.77,522576797,-947669885,142.6,20 -Sun Sep 25 06:33:04 PDT 2011,148,0,8.773,14065.54,522577434,-947670818,142.8,20 -Sun Sep 25 06:33:05 PDT 2011,146,0,8.791,14074.33,522578109,-947671738,142.8,20 -Sun Sep 25 06:33:06 PDT 2011,145,0,8.65,14082.98,522578750,-947672683,142.8,20 -Sun Sep 25 06:33:07 PDT 2011,143,0,8.286,14091.27,522579380,-947673538,142.6,20 -Sun Sep 25 06:33:08 PDT 2011,141,0,8.13,14099.4,522580003,-947674428,142.6,20 -Sun Sep 25 06:33:09 PDT 2011,140,0,8.099,14107.5,522580590,-947675282,142.4,20 -Sun Sep 25 06:33:10 PDT 2011,140,0,8.069,14115.57,522581184,-947676122,142.2,20 -Sun Sep 25 06:33:11 PDT 2011,141,0,7.98,14123.55,522581775,-947676951,142.2,20 -Sun Sep 25 06:33:12 PDT 2011,141,0,7.751,14131.3,522582307,-947677716,142.0,20 -Sun Sep 25 06:33:13 PDT 2011,140,0,7.161,14138.46,522582879,-947678355,142.0,20 -Sun Sep 25 06:33:14 PDT 2011,138,0,6.305,14144.76,522583375,-947678908,141.8,20 -Sun Sep 25 06:33:15 PDT 2011,136,0,5.489,14150.25,522583782,-947679396,141.8,20 -Sun Sep 25 06:33:16 PDT 2011,135,0,4.572,14154.83,522584066,-947679749,141.8,20 -Sun Sep 25 06:33:17 PDT 2011,134,0,3.96,14158.79,522584260,-947680015,141.6,20 -Sun Sep 25 06:33:18 PDT 2011,134,0,2.634,14161.42,522584337,-947680162,141.6,20 -Sun Sep 25 06:33:19 PDT 2011,135,0,1.878,14163.3,522584408,-947680256,141.6,20 -Sun Sep 25 06:33:20 PDT 2011,135,0,1.878,14165.18,522584452,-947680295,141.6,20 -Sun Sep 25 06:33:21 PDT 2011,135,0,1.309,14166.48,522584478,-947680287,141.4,20 -Sun Sep 25 06:33:24 PDT 2011,139,0,1.694,14166.48,522584526,-947680273,141.4,20 -Sun Sep 25 06:33:25 PDT 2011,139,0,1.694,14167.06,522584559,-947680286,141.4,20 -Sun Sep 25 06:33:26 PDT 2011,141,0,1.694,14168.7,522584643,-947680414,141.4,20 -Sun Sep 25 06:33:27 PDT 2011,142,0,1.266,14170.11,522584811,-947680638,141.2,20 -Sun Sep 25 06:33:28 PDT 2011,145,37,2.13,14172.0,522585054,-947680834,141.2,20 -Sun Sep 25 06:33:29 PDT 2011,147,52,2.13,14174.13,522585350,-947681296,141.2,20 -Sun Sep 25 06:33:30 PDT 2011,149,72,4.004,14178.14,522585742,-947681853,141.2,20 -Sun Sep 25 06:33:31 PDT 2011,150,80,4.904,14183.06,522586152,-947682571,141.2,20 -Sun Sep 25 06:33:32 PDT 2011,152,87,5.782,14188.82,522586636,-947683254,141.2,20 -Sun Sep 25 06:33:33 PDT 2011,154,92,6.654,14195.48,522587176,-947684095,141.2,20 -Sun Sep 25 06:33:34 PDT 2011,155,94,7.381,14202.86,522587720,-947684894,141.2,20 -Sun Sep 25 06:33:35 PDT 2011,157,87,7.208,14210.06,522588280,-947685759,141.2,20 -Sun Sep 25 06:33:36 PDT 2011,158,88,7.331,14217.4,522588826,-947686651,141.2,20 -Sun Sep 25 06:33:37 PDT 2011,159,89,7.381,14224.78,522589337,-947687530,141.2,20 -Sun Sep 25 06:33:38 PDT 2011,159,91,7.509,14232.28,522589865,-947688440,141.2,20 -Sun Sep 25 06:33:39 PDT 2011,160,93,7.669,14239.95,522590400,-947689349,141.2,20 -Sun Sep 25 06:33:40 PDT 2011,160,95,7.807,14247.76,522590953,-947690282,141.2,20 -Sun Sep 25 06:33:41 PDT 2011,161,98,8.038,14255.8,522591520,-947691227,141.2,20 -Sun Sep 25 06:33:42 PDT 2011,161,89,8.223,14264.02,522592104,-947692287,141.2,20 -Sun Sep 25 06:33:43 PDT 2011,162,89,8.286,14272.31,522592679,-947693285,141.2,20 -Sun Sep 25 06:33:44 PDT 2011,163,89,8.318,14280.63,522593282,-947694217,141.2,20 -Sun Sep 25 06:33:45 PDT 2011,163,89,8.161,14288.79,522593916,-947695140,141.2,20 -Sun Sep 25 06:33:46 PDT 2011,162,0,7.98,14296.77,522594467,-947696013,141.2,20 -Sun Sep 25 06:33:47 PDT 2011,161,0,7.807,14304.57,522595042,-947696906,141.2,20 -Sun Sep 25 06:33:48 PDT 2011,161,85,7.669,14312.24,522595583,-947697814,141.2,20 -Sun Sep 25 06:33:49 PDT 2011,160,86,7.723,14319.97,522596137,-947698675,141.2,20 -Sun Sep 25 06:33:50 PDT 2011,160,87,7.951,14327.92,522596748,-947699543,141.2,20 -Sun Sep 25 06:33:51 PDT 2011,160,89,8.099,14336.02,522597352,-947700419,141.2,20 -Sun Sep 25 06:33:52 PDT 2011,160,90,8.223,14344.24,522597955,-947701300,141.2,20 -Sun Sep 25 06:33:53 PDT 2011,159,91,8.369,14352.61,522598589,-947702223,141.2,20 -Sun Sep 25 06:33:54 PDT 2011,159,91,8.435,14361.04,522599202,-947703211,141.2,20 -Sun Sep 25 06:33:55 PDT 2011,159,92,8.534,14369.58,522599788,-947704194,141.2,20 -Sun Sep 25 06:33:56 PDT 2011,158,92,8.636,14378.21,522600391,-947705115,141.2,20 -Sun Sep 25 06:33:57 PDT 2011,158,92,8.568,14386.78,522600944,-947706208,141.2,20 -Sun Sep 25 06:33:58 PDT 2011,157,0,8.568,14395.35,522601505,-947707258,141.2,20 -Sun Sep 25 06:33:59 PDT 2011,156,0,8.501,14403.85,522602100,-947708248,141.2,20 -Sun Sep 25 06:34:00 PDT 2011,155,0,8.468,14412.32,522602733,-947709082,141.2,20 -Sun Sep 25 06:34:01 PDT 2011,154,0,8.435,14420.75,522603478,-947709830,141.2,20 -Sun Sep 25 06:34:02 PDT 2011,153,0,8.741,14429.49,522604262,-947710443,141.2,20 -Sun Sep 25 06:34:03 PDT 2011,153,0,8.957,14438.45,522605045,-947711192,141.2,20 -Sun Sep 25 06:34:04 PDT 2011,152,0,9.264,14447.75,522605865,-947711864,141.2,20 -Sun Sep 25 06:34:05 PDT 2011,151,0,9.384,14457.1,522606730,-947712514,141.2,20 -Sun Sep 25 06:34:06 PDT 2011,149,0,9.549,14466.65,522607723,-947712986,141.2,20 -Sun Sep 25 06:34:07 PDT 2011,148,0,9.507,14476.15,522608765,-947713308,141.2,20 -Sun Sep 25 06:34:08 PDT 2011,147,0,9.466,14485.62,522609878,-947713551,141.2,20 -Sun Sep 25 06:34:09 PDT 2011,146,0,9.592,14495.21,522610968,-947713771,141.2,20 -Sun Sep 25 06:34:10 PDT 2011,145,0,9.721,14504.93,522612050,-947713978,141.2,20 -Sun Sep 25 06:34:11 PDT 2011,144,0,9.764,14514.7,522613124,-947714251,140.8,20 -Sun Sep 25 06:34:12 PDT 2011,144,0,9.853,14524.55,522614144,-947714569,140.8,20 -Sun Sep 25 06:34:13 PDT 2011,143,0,10.012,14534.56,522615162,-947714898,140.6,20 -Sun Sep 25 06:34:14 PDT 2011,142,0,9.944,14544.5,522616180,-947715231,140.4,20 -Sun Sep 25 06:34:15 PDT 2011,142,0,9.592,14554.1,522617169,-947715609,140.2,20 -Sun Sep 25 06:34:16 PDT 2011,140,0,9.507,14563.6,522618141,-947715993,140.2,20 -Sun Sep 25 06:34:17 PDT 2011,140,0,9.549,14573.15,522619099,-947716388,140.0,20 -Sun Sep 25 06:34:18 PDT 2011,140,0,9.466,14582.62,522620082,-947716790,139.8,20 -Sun Sep 25 06:34:19 PDT 2011,141,33,9.425,14592.04,522621011,-947717282,139.8,20 -Sun Sep 25 06:34:20 PDT 2011,141,111,9.224,14601.27,522621842,-947718049,139.4,20 -Sun Sep 25 06:34:21 PDT 2011,142,103,9.326,14610.59,522622464,-947719059,139.2,20 -Sun Sep 25 06:34:22 PDT 2011,143,102,9.286,14619.88,522622948,-947720234,139.0,20 -Sun Sep 25 06:34:23 PDT 2011,144,103,9.531,14629.41,522623124,-947721627,138.8,20 -Sun Sep 25 06:34:24 PDT 2011,147,100,9.573,14638.98,522623034,-947723191,138.6,20 -Sun Sep 25 06:34:25 PDT 2011,148,99,9.407,14648.39,522622774,-947724618,138.4,20 -Sun Sep 25 06:34:26 PDT 2011,149,95,9.246,14657.64,522622371,-947726053,138.2,20 -Sun Sep 25 06:34:27 PDT 2011,151,92,8.94,14666.58,522621920,-947727365,138.0,20 -Sun Sep 25 06:34:28 PDT 2011,151,91,8.654,14675.23,522621478,-947728544,138.0,20 -Sun Sep 25 06:34:29 PDT 2011,152,88,8.552,14683.78,522621086,-947729692,137.8,20 -Sun Sep 25 06:34:30 PDT 2011,152,87,8.386,14692.17,522620759,-947730813,137.6,20 -Sun Sep 25 06:34:31 PDT 2011,152,87,8.195,14700.36,522620471,-947731900,137.6,20 -Sun Sep 25 06:34:32 PDT 2011,152,87,7.984,14708.35,522620186,-947732923,137.6,20 -Sun Sep 25 06:34:33 PDT 2011,149,0,6.957,14715.31,522619969,-947733783,137.4,20 -Sun Sep 25 06:34:34 PDT 2011,147,0,6.235,14721.54,522619786,-947734564,137.4,20 -Sun Sep 25 06:34:35 PDT 2011,145,0,5.754,14727.29,522619628,-947735266,137.4,20 -Sun Sep 25 06:34:36 PDT 2011,145,0,5.316,14732.61,522619496,-947735857,137.2,20 -Sun Sep 25 06:34:37 PDT 2011,141,0,4.928,14737.55,522619378,-947736371,137.4,20 -Sun Sep 25 06:34:38 PDT 2011,141,0,4.47,14742.01,522619254,-947736855,137.6,20 -Sun Sep 25 06:34:39 PDT 2011,140,0,3.707,14745.72,522619156,-947737217,137.6,20 -Sun Sep 25 06:34:40 PDT 2011,140,0,2.759,14748.48,522619081,-947737509,137.8,20 -Sun Sep 25 06:34:41 PDT 2011,141,38,2.316,14750.79,522618993,-947737865,137.8,20 -Sun Sep 25 06:34:42 PDT 2011,142,38,2.498,14753.29,522618916,-947738170,138.0,20 -Sun Sep 25 06:34:43 PDT 2011,144,51,2.498,14755.79,522618842,-947738525,138.0,20 -Sun Sep 25 06:34:44 PDT 2011,147,58,4.353,14760.14,522618693,-947738999,138.2,20 -Sun Sep 25 06:34:45 PDT 2011,149,71,5.055,14765.2,522618497,-947739683,138.2,20 -Sun Sep 25 06:34:46 PDT 2011,151,76,5.505,14770.7,522618317,-947740446,138.2,20 -Sun Sep 25 06:34:47 PDT 2011,154,81,6.094,14776.79,522618113,-947741347,138.4,20 -Sun Sep 25 06:34:48 PDT 2011,155,89,6.761,14783.56,522617857,-947742373,138.4,20 -Sun Sep 25 06:34:49 PDT 2011,157,88,7.335,14790.89,522617593,-947743552,138.4,20 -Sun Sep 25 06:34:50 PDT 2011,159,88,7.437,14798.33,522617325,-947744687,138.4,20 -Sun Sep 25 06:34:51 PDT 2011,160,89,7.36,14805.69,522617089,-947745790,138.4,20 -Sun Sep 25 06:34:52 PDT 2011,162,90,7.437,14813.12,522616877,-947746889,138.6,20 -Sun Sep 25 06:34:53 PDT 2011,163,90,7.515,14820.64,522616690,-947747950,138.6,20 -Sun Sep 25 06:34:54 PDT 2011,164,89,7.489,14828.13,522616469,-947749038,138.6,20 -Sun Sep 25 06:34:55 PDT 2011,164,88,7.489,14835.62,522616240,-947750148,138.8,20 -Sun Sep 25 06:34:56 PDT 2011,164,87,7.386,14843.0,522616005,-947751267,139.0,20 -Sun Sep 25 06:34:57 PDT 2011,165,86,7.286,14850.29,522615815,-947752376,139.2,20 -Sun Sep 25 06:34:58 PDT 2011,164,86,7.236,14857.52,522615639,-947753442,139.4,20 -Sun Sep 25 06:34:59 PDT 2011,164,84,7.188,14864.71,522615480,-947754461,139.4,20 -Sun Sep 25 06:35:00 PDT 2011,163,83,7.093,14871.81,522615316,-947755452,139.6,20 -Sun Sep 25 06:35:01 PDT 2011,163,81,6.933,14878.74,522615145,-947756437,139.8,20 -Sun Sep 25 06:35:02 PDT 2011,163,81,6.867,14885.61,522614954,-947757430,139.8,20 -Sun Sep 25 06:35:03 PDT 2011,163,79,6.759,14892.36,522614794,-947758416,140.0,20 -Sun Sep 25 06:35:04 PDT 2011,163,79,6.791,14899.16,522614660,-947759396,140.0,20 -Sun Sep 25 06:35:05 PDT 2011,163,79,6.644,14905.8,522614536,-947760358,140.2,20 -Sun Sep 25 06:35:06 PDT 2011,162,0,6.524,14912.32,522614413,-947761326,140.2,20 -Sun Sep 25 06:35:07 PDT 2011,162,77,6.37,14918.69,522614277,-947762243,140.2,20 -Sun Sep 25 06:35:08 PDT 2011,161,86,6.524,14925.22,522614182,-947763181,140.4,20 -Sun Sep 25 06:35:09 PDT 2011,161,90,6.584,14931.8,522614234,-947764060,140.6,20 -Sun Sep 25 06:35:10 PDT 2011,161,95,6.877,14938.7,522614478,-947764914,140.8,20 -Sun Sep 25 06:35:11 PDT 2011,161,97,7.034,14945.71,522614989,-947765466,141.0,20 -Sun Sep 25 06:35:12 PDT 2011,161,100,7.37,14953.08,522615667,-947766047,141.2,20 -Sun Sep 25 06:35:13 PDT 2011,161,101,7.604,14960.69,522616522,-947766392,141.4,20 -Sun Sep 25 06:35:14 PDT 2011,162,93,7.824,14968.51,522617457,-947766706,141.6,20 -Sun Sep 25 06:35:15 PDT 2011,162,93,7.881,14976.41,522618364,-947766889,141.8,20 -Sun Sep 25 06:35:16 PDT 2011,162,93,7.881,14984.27,522619238,-947767116,141.8,20 -Sun Sep 25 06:35:17 PDT 2011,162,93,7.867,14992.14,522620106,-947767413,142.0,20 -Sun Sep 25 06:35:18 PDT 2011,162,94,7.853,14999.99,522620938,-947767755,142.0,20 -Sun Sep 25 06:35:19 PDT 2011,162,93,7.939,15007.93,522621741,-947768139,142.2,20 -Sun Sep 25 06:35:20 PDT 2011,162,92,7.867,15015.8,522622543,-947768514,142.2,20 -Sun Sep 25 06:35:21 PDT 2011,162,91,7.768,15023.57,522623342,-947768917,142.4,20 -Sun Sep 25 06:35:22 PDT 2011,162,92,7.577,15031.14,522624118,-947769313,142.4,20 -Sun Sep 25 06:35:23 PDT 2011,163,91,7.712,15038.86,522624893,-947769706,142.4,20 -Sun Sep 25 06:35:24 PDT 2011,163,91,7.685,15046.54,522625646,-947770142,142.4,20 -Sun Sep 25 06:35:25 PDT 2011,163,90,7.658,15054.2,522626410,-947770564,142.6,20 -Sun Sep 25 06:35:26 PDT 2011,163,90,7.577,15061.77,522627152,-947771027,142.6,20 -Sun Sep 25 06:35:27 PDT 2011,163,90,7.524,15069.3,522627867,-947771490,142.6,20 -Sun Sep 25 06:35:28 PDT 2011,163,0,7.174,15077.16,522628588,-947771934,142.6,20 -Sun Sep 25 06:35:29 PDT 2011,163,0,6.485,15083.02,522629133,-947772262,142.6,20 -Sun Sep 25 06:35:30 PDT 2011,162,0,5.852,15088.88,522629697,-947772587,142.8,20 -Sun Sep 25 06:35:31 PDT 2011,161,0,5.594,15094.47,522630203,-947772882,142.8,20 -Sun Sep 25 06:35:32 PDT 2011,160,0,5.045,15099.51,522630654,-947773146,142.8,20 -Sun Sep 25 06:35:33 PDT 2011,158,0,4.644,15104.16,522631101,-947773377,142.8,20 -Sun Sep 25 06:35:34 PDT 2011,157,57,4.434,15108.61,522631487,-947773595,142.8,20 -Sun Sep 25 06:35:35 PDT 2011,156,57,4.527,15113.12,522631926,-947773794,142.8,20 -Sun Sep 25 06:35:36 PDT 2011,156,57,4.425,15117.54,522632334,-947773941,142.8,20 -Sun Sep 25 06:35:37 PDT 2011,154,0,4.193,15121.74,522632730,-947774096,142.8,20 -Sun Sep 25 06:35:38 PDT 2011,153,0,3.955,15125.69,522633100,-947774256,142.8,20 -Sun Sep 25 06:35:39 PDT 2011,152,0,3.152,15128.84,522633319,-947774305,143.0,20 -Sun Sep 25 06:35:40 PDT 2011,151,0,3.152,15132.0,522633522,-947774407,143.4,20 -Sun Sep 25 06:35:41 PDT 2011,151,0,0.0,15132.0,522633621,-947774478,143.4,20 -Sun Sep 25 06:35:49 PDT 2011,150,0,0.0,15132.0,522633942,-947774530,144.4,20 -Sun Sep 25 06:35:50 PDT 2011,151,37,3.282,15135.33,522634201,-947774539,144.4,20 -Sun Sep 25 06:35:51 PDT 2011,151,37,2.577,15137.87,522634485,-947774727,144.6,20 -Sun Sep 25 06:35:52 PDT 2011,151,45,3.194,15141.43,522634773,-947774993,144.6,20 -Sun Sep 25 06:35:53 PDT 2011,152,51,3.654,15144.68,522635203,-947775150,144.6,20 -Sun Sep 25 06:35:54 PDT 2011,152,61,4.145,15148.8,522635665,-947775438,144.8,20 -Sun Sep 25 06:35:55 PDT 2011,153,67,4.809,15153.61,522636146,-947775790,144.8,20 -Sun Sep 25 06:35:56 PDT 2011,154,78,5.166,15158.78,522636705,-947776119,144.8,20 -Sun Sep 25 06:35:57 PDT 2011,155,83,5.805,15164.58,522637424,-947776377,144.8,20 -Sun Sep 25 06:35:58 PDT 2011,156,82,6.427,15171.01,522638139,-947776696,144.8,20 -Sun Sep 25 06:35:59 PDT 2011,157,82,6.644,15177.65,522638829,-947777021,144.8,20 -Sun Sep 25 06:36:00 PDT 2011,158,84,7.057,15184.71,522639654,-947777392,145.0,20 -Sun Sep 25 06:36:01 PDT 2011,159,85,7.057,15191.77,522640478,-947777689,145.0,20 -Sun Sep 25 06:36:02 PDT 2011,160,86,7.08,15198.85,522641203,-947778098,145.0,20 -Sun Sep 25 06:36:03 PDT 2011,161,89,7.222,15206.07,522642038,-947778481,145.0,20 -Sun Sep 25 06:36:04 PDT 2011,161,90,7.472,15213.54,522642846,-947778795,145.0,20 -Sun Sep 25 06:36:05 PDT 2011,162,94,7.577,15221.12,522643611,-947779129,145.0,20 -Sun Sep 25 06:36:06 PDT 2011,162,95,7.853,15228.97,522644510,-947779511,145.0,20 -Sun Sep 25 06:36:07 PDT 2011,163,92,8.057,15237.03,522645444,-947779781,145.0,20 -Sun Sep 25 06:36:08 PDT 2011,163,92,8.028,15245.06,522646311,-947780030,145.0,20 -Sun Sep 25 06:36:09 PDT 2011,163,22,7.824,15252.88,522647138,-947780305,145.0,20 -Sun Sep 25 06:36:10 PDT 2011,163,87,7.421,15260.3,522647965,-947780597,145.0,20 -Sun Sep 25 06:36:11 PDT 2011,164,83,7.37,15267.67,522648748,-947780888,145.0,20 -Sun Sep 25 06:36:12 PDT 2011,163,76,7.127,15274.83,522649519,-947781228,145.0,20 -Sun Sep 25 06:36:13 PDT 2011,163,43,7.127,15281.93,522650268,-947781529,145.0,20 -Sun Sep 25 06:36:14 PDT 2011,162,78,7.08,15289.01,522651005,-947781835,145.0,20 -Sun Sep 25 06:36:15 PDT 2011,161,79,7.174,15296.18,522651747,-947782118,145.0,20 -Sun Sep 25 06:36:16 PDT 2011,160,81,7.345,15303.54,522652504,-947782396,145.0,20 -Sun Sep 25 06:36:17 PDT 2011,159,82,7.472,15311.0,522653243,-947782649,145.0,20 -Sun Sep 25 06:36:18 PDT 2011,158,83,7.631,15318.63,522654063,-947782923,145.0,20 -Sun Sep 25 06:36:19 PDT 2011,157,85,7.74,15326.37,522654880,-947783200,145.0,20 -Sun Sep 25 06:36:20 PDT 2011,158,81,7.881,15334.25,522655720,-947783519,145.2,20 -Sun Sep 25 06:36:21 PDT 2011,158,81,8.012,15342.26,522656571,-947783816,145.2,20 -Sun Sep 25 06:36:22 PDT 2011,157,27,8.028,15350.29,522657395,-947784110,145.2,20 -Sun Sep 25 06:36:23 PDT 2011,155,27,7.951,15358.24,522658219,-947784424,145.2,20 -Sun Sep 25 06:36:24 PDT 2011,154,21,7.951,15366.19,522659036,-947784762,145.2,20 -Sun Sep 25 06:36:25 PDT 2011,154,76,7.835,15374.03,522659824,-947785123,145.2,20 -Sun Sep 25 06:36:26 PDT 2011,153,76,7.921,15381.95,522660606,-947785450,145.2,20 -Sun Sep 25 06:36:27 PDT 2011,152,76,8.192,15390.14,522661421,-947785779,145.2,20 -Sun Sep 25 06:36:28 PDT 2011,151,0,8.192,15398.33,522662185,-947786097,145.2,20 -Sun Sep 25 06:36:29 PDT 2011,151,0,8.415,15406.75,522662972,-947786396,145.2,20 -Sun Sep 25 06:36:30 PDT 2011,150,0,8.514,15415.26,522663823,-947786733,145.2,20 -Sun Sep 25 06:36:31 PDT 2011,149,0,8.72,15424.02,522664698,-947787055,145.2,20 -Sun Sep 25 06:36:32 PDT 2011,148,0,8.791,15432.77,522665599,-947787374,145.2,20 -Sun Sep 25 06:36:33 PDT 2011,147,0,8.863,15441.63,522666527,-947787701,145.2,20 -Sun Sep 25 06:36:34 PDT 2011,147,0,8.899,15450.53,522667488,-947787984,145.2,20 -Sun Sep 25 06:36:35 PDT 2011,145,0,9.163,15459.7,522668470,-947788228,145.2,20 -Sun Sep 25 06:36:36 PDT 2011,143,0,9.273,15468.97,522669488,-947788430,145.2,20 -Sun Sep 25 06:36:37 PDT 2011,142,0,9.273,15478.24,522670493,-947788629,145.2,20 -Sun Sep 25 06:36:38 PDT 2011,140,0,9.194,15487.44,522671483,-947788831,144.8,20 -Sun Sep 25 06:36:39 PDT 2011,138,0,9.273,15496.71,522672481,-947789059,144.6,20 -Sun Sep 25 06:36:40 PDT 2011,137,0,9.354,15506.06,522673473,-947789282,144.4,20 -Sun Sep 25 06:36:41 PDT 2011,137,0,9.154,15515.22,522674441,-947789500,144.4,20 -Sun Sep 25 06:36:42 PDT 2011,138,0,9.077,15524.3,522675402,-947789707,144.2,20 -Sun Sep 25 06:36:43 PDT 2011,138,0,8.815,15533.11,522676353,-947789911,144.0,20 -Sun Sep 25 06:36:44 PDT 2011,137,0,8.815,15541.93,522677243,-947790104,144.0,20 -Sun Sep 25 06:36:45 PDT 2011,136,0,8.271,15550.2,522678096,-947790280,143.8,20 -Sun Sep 25 06:36:46 PDT 2011,133,0,7.963,15558.16,522678925,-947790485,143.6,20 -Sun Sep 25 06:36:47 PDT 2011,132,0,7.516,15565.68,522679702,-947790667,143.6,20 -Sun Sep 25 06:36:48 PDT 2011,130,0,6.842,15572.52,522680372,-947790808,143.6,20 -Sun Sep 25 06:36:49 PDT 2011,129,0,5.569,15578.09,522680923,-947790859,143.4,20 -Sun Sep 25 06:36:50 PDT 2011,128,0,4.921,15583.02,522681398,-947790968,143.4,20 -Sun Sep 25 06:36:51 PDT 2011,127,0,4.153,15587.16,522681707,-947791048,143.4,20 -Sun Sep 25 06:36:52 PDT 2011,126,0,3.476,15590.64,522681881,-947791130,143.2,20 -Sun Sep 25 06:36:53 PDT 2011,126,0,0.0,15590.64,522681942,-947791178,143.0,20 -Sun Sep 25 06:37:04 PDT 2011,137,0,0.0,15590.64,522681804,-947791560,141.4,20 -Sun Sep 25 06:37:05 PDT 2011,138,33,1.843,15592.55,522682116,-947791655,141.4,20 -Sun Sep 25 06:37:06 PDT 2011,140,33,1.843,15594.33,522682542,-947791881,141.2,20 -Sun Sep 25 06:37:07 PDT 2011,142,45,4.259,15599.1,522683104,-947792108,141.2,20 -Sun Sep 25 06:37:08 PDT 2011,143,51,4.943,15603.44,522683610,-947792373,141.2,20 -Sun Sep 25 06:37:09 PDT 2011,145,56,5.555,15609.02,522684270,-947792610,141.2,20 -Sun Sep 25 06:37:10 PDT 2011,146,60,5.921,15614.92,522684938,-947792796,141.0,20 -Sun Sep 25 06:37:11 PDT 2011,147,63,6.247,15621.17,522685580,-947792956,141.0,20 -Sun Sep 25 06:37:12 PDT 2011,148,66,6.591,15627.76,522686369,-947793122,141.0,20 -Sun Sep 25 06:37:13 PDT 2011,149,70,6.953,15634.71,522687128,-947793276,141.0,20 -Sun Sep 25 06:37:14 PDT 2011,150,72,7.09,15641.8,522687913,-947793452,141.0,20 -Sun Sep 25 06:37:15 PDT 2011,151,72,7.484,15649.28,522688755,-947793553,141.0,20 -Sun Sep 25 06:37:16 PDT 2011,151,72,7.643,15656.93,522689663,-947793648,141.0,20 -Sun Sep 25 06:37:17 PDT 2011,151,0,7.458,15664.39,522690494,-947793726,140.8,20 -Sun Sep 25 06:37:18 PDT 2011,151,0,7.209,15671.59,522691347,-947793811,140.8,20 -Sun Sep 25 06:37:19 PDT 2011,150,0,6.975,15678.57,522692200,-947793903,140.8,20 -Sun Sep 25 06:37:20 PDT 2011,149,0,6.715,15685.28,522692975,-947793996,140.8,20 -Sun Sep 25 06:37:21 PDT 2011,148,0,6.415,15691.7,522693659,-947794082,140.8,20 -Sun Sep 25 06:37:22 PDT 2011,146,0,6.054,15697.76,522694326,-947794168,140.8,20 -Sun Sep 25 06:37:23 PDT 2011,144,0,5.541,15703.29,522694896,-947794244,140.8,20 -Sun Sep 25 06:37:24 PDT 2011,142,0,5.194,15708.49,522695459,-947794332,140.8,20 -Sun Sep 25 06:37:25 PDT 2011,142,0,4.91,15713.4,522695975,-947794432,140.8,20 -Sun Sep 25 06:37:26 PDT 2011,140,0,4.605,15718.0,522696385,-947794509,140.8,20 -Sun Sep 25 06:37:27 PDT 2011,139,0,3.926,15721.93,522696727,-947794577,140.8,20 -Sun Sep 25 06:37:28 PDT 2011,138,0,3.097,15725.03,522696986,-947794622,140.8,20 -Sun Sep 25 06:37:29 PDT 2011,137,0,2.062,15727.87,522697274,-947794642,140.8,20 -Sun Sep 25 06:37:30 PDT 2011,136,0,2.062,15729.16,522697384,-947794684,140.8,20 -Sun Sep 25 06:37:31 PDT 2011,137,0,1.667,15730.82,522697516,-947794697,140.8,20 -Sun Sep 25 06:37:42 PDT 2011,141,0,0.0,15730.82,522697725,-947794852,140.8,20 -Sun Sep 25 06:37:43 PDT 2011,141,0,1.699,15732.55,522698008,-947794864,140.8,20 -Sun Sep 25 06:37:44 PDT 2011,142,29,2.821,15735.32,522698438,-947794854,140.8,20 -Sun Sep 25 06:37:45 PDT 2011,142,38,3.421,15739.13,522698945,-947794879,140.8,20 -Sun Sep 25 06:37:46 PDT 2011,143,38,4.067,15742.74,522699440,-947794915,140.8,20 -Sun Sep 25 06:37:47 PDT 2011,144,45,4.417,15747.16,522699969,-947794992,140.8,20 -Sun Sep 25 06:37:48 PDT 2011,145,53,4.665,15751.82,522700539,-947795123,140.8,20 -Sun Sep 25 06:37:49 PDT 2011,146,57,5.071,15756.89,522701075,-947795281,140.8,20 -Sun Sep 25 06:37:50 PDT 2011,148,59,5.388,15762.28,522701655,-947795422,141.0,20 -Sun Sep 25 06:37:51 PDT 2011,149,68,5.627,15767.9,522702246,-947795588,141.0,20 -Sun Sep 25 06:37:52 PDT 2011,150,72,5.873,15773.78,522702908,-947795735,141.2,20 -Sun Sep 25 06:37:53 PDT 2011,152,77,6.415,15780.19,522703651,-947795871,141.4,20 -Sun Sep 25 06:37:54 PDT 2011,153,77,7.067,15787.26,522704554,-947795959,141.6,20 -Sun Sep 25 06:37:55 PDT 2011,153,81,7.753,15795.01,522705394,-947796123,141.6,20 -Sun Sep 25 06:37:56 PDT 2011,153,84,7.407,15802.42,522706258,-947796293,141.8,20 -Sun Sep 25 06:37:57 PDT 2011,154,86,7.725,15810.15,522707057,-947796547,141.8,20 -Sun Sep 25 06:37:58 PDT 2011,154,86,7.866,15818.01,522707932,-947796733,142.0,20 -Sun Sep 25 06:37:59 PDT 2011,155,86,8.012,15826.02,522708712,-947796933,142.0,20 -Sun Sep 25 06:38:00 PDT 2011,154,0,7.781,15833.81,522709493,-947797099,142.0,20 -Sun Sep 25 06:38:01 PDT 2011,154,0,7.257,15841.06,522710237,-947797229,142.2,20 -Sun Sep 25 06:38:02 PDT 2011,153,0,6.975,15848.04,522710884,-947797369,142.2,20 -Sun Sep 25 06:38:03 PDT 2011,151,0,6.318,15854.36,522711495,-947797498,142.2,20 -Sun Sep 25 06:38:04 PDT 2011,149,0,5.713,15860.07,522712046,-947797613,142.4,20 -Sun Sep 25 06:38:05 PDT 2011,147,0,5.411,15865.48,522712544,-947797694,142.4,20 -Sun Sep 25 06:38:06 PDT 2011,144,0,5.127,15870.62,522713038,-947797754,142.4,20 -Sun Sep 25 06:38:07 PDT 2011,143,0,4.532,15875.14,522713464,-947797785,142.4,20 -Sun Sep 25 06:38:08 PDT 2011,141,0,3.899,15879.04,522713846,-947797814,142.4,20 -Sun Sep 25 06:38:09 PDT 2011,139,0,3.527,15882.57,522714140,-947797836,142.4,20 -Sun Sep 25 06:38:10 PDT 2011,138,0,3.15,15885.72,522714345,-947797860,142.4,20 -Sun Sep 25 06:38:11 PDT 2011,137,0,2.53,15888.25,522714516,-947797882,142.6,20 -Sun Sep 25 06:38:12 PDT 2011,136,0,2.098,15890.34,522714621,-947797880,142.6,20 -Sun Sep 25 06:38:13 PDT 2011,136,0,1.647,15891.99,522714737,-947797860,142.6,20 -Sun Sep 25 06:38:34 PDT 2011,133,0,0.0,15891.99,522714996,-947797654,142.6,20 -Sun Sep 25 06:38:35 PDT 2011,134,33,1.937,15893.96,522715224,-947797574,142.6,20 -Sun Sep 25 06:38:36 PDT 2011,135,33,1.937,15895.87,522715578,-947797550,142.6,20 -Sun Sep 25 06:38:37 PDT 2011,136,41,1.937,15898.03,522716106,-947797487,142.6,20 -Sun Sep 25 06:38:38 PDT 2011,137,50,4.038,15901.6,522716560,-947797545,142.8,20 -Sun Sep 25 06:38:39 PDT 2011,138,55,4.57,15906.17,522717074,-947797569,142.8,20 -Sun Sep 25 06:38:40 PDT 2011,140,61,5.227,15911.39,522717716,-947797653,142.8,20 -Sun Sep 25 06:38:41 PDT 2011,141,65,5.759,15917.15,522718365,-947797782,142.8,20 -Sun Sep 25 06:38:42 PDT 2011,142,69,6.051,15923.2,522719033,-947797890,142.8,20 -Sun Sep 25 06:38:43 PDT 2011,143,75,6.529,15929.73,522719665,-947798073,142.8,20 -Sun Sep 25 06:38:44 PDT 2011,145,75,6.82,15936.56,522720455,-947798194,142.8,20 -Sun Sep 25 06:38:45 PDT 2011,146,78,7.257,15943.81,522721417,-947798181,142.8,20 -Sun Sep 25 06:38:46 PDT 2011,147,79,7.282,15951.09,522722324,-947798161,142.8,20 -Sun Sep 25 06:38:47 PDT 2011,148,80,7.307,15958.4,522723233,-947798164,142.8,20 -Sun Sep 25 06:38:48 PDT 2011,149,83,7.459,15965.86,522724144,-947798201,142.8,20 -Sun Sep 25 06:38:49 PDT 2011,150,84,7.564,15973.42,522724993,-947798193,142.8,20 -Sun Sep 25 06:38:50 PDT 2011,151,85,7.869,15981.29,522725801,-947798294,142.8,20 -Sun Sep 25 06:38:51 PDT 2011,152,84,7.869,15989.16,522726643,-947798370,142.8,20 -Sun Sep 25 06:38:52 PDT 2011,152,84,7.812,15996.97,522727525,-947798410,142.8,20 -Sun Sep 25 06:38:53 PDT 2011,152,83,7.783,16004.76,522728379,-947798455,142.8,20 -Sun Sep 25 06:38:54 PDT 2011,152,76,7.727,16012.48,522729237,-947798473,142.8,20 -Sun Sep 25 06:38:55 PDT 2011,152,74,7.672,16020.15,522730082,-947798482,142.8,20 -Sun Sep 25 06:38:56 PDT 2011,151,74,7.672,16027.83,522730913,-947798536,142.8,20 -Sun Sep 25 06:38:57 PDT 2011,151,73,7.672,16035.5,522731752,-947798671,142.8,20 -Sun Sep 25 06:38:58 PDT 2011,151,73,7.618,16043.12,522732600,-947798682,142.8,20 -Sun Sep 25 06:38:59 PDT 2011,151,81,7.591,16050.71,522733487,-947798692,142.8,20 -Sun Sep 25 06:39:00 PDT 2011,151,84,7.591,16058.3,522734389,-947798712,142.8,20 -Sun Sep 25 06:39:01 PDT 2011,152,85,7.812,16066.11,522735255,-947798683,142.8,20 -Sun Sep 25 06:39:02 PDT 2011,152,87,7.84,16073.95,522736041,-947798694,142.8,20 -Sun Sep 25 06:39:03 PDT 2011,152,87,7.956,16081.91,522736902,-947798720,142.8,20 -Sun Sep 25 06:39:04 PDT 2011,152,88,8.137,16090.04,522737749,-947798802,142.8,20 -Sun Sep 25 06:39:05 PDT 2011,153,89,8.137,16098.18,522738633,-947798922,142.8,20 -Sun Sep 25 06:39:06 PDT 2011,153,83,8.326,16106.5,522739574,-947799034,142.8,20 -Sun Sep 25 06:39:07 PDT 2011,154,51,8.168,16114.67,522740491,-947799142,142.8,20 -Sun Sep 25 06:39:08 PDT 2011,154,36,8.016,16122.69,522741310,-947799235,142.8,20 -Sun Sep 25 06:39:09 PDT 2011,154,85,8.016,16130.7,522742115,-947799371,142.8,20 -Sun Sep 25 06:39:10 PDT 2011,153,85,7.898,16138.6,522742941,-947799510,142.8,20 -Sun Sep 25 06:39:11 PDT 2011,152,32,7.84,16146.44,522743732,-947799682,142.8,20 -Sun Sep 25 06:39:12 PDT 2011,152,84,7.672,16154.11,522744532,-947799872,142.8,20 -Sun Sep 25 06:39:13 PDT 2011,152,84,7.7,16161.81,522745370,-947800058,142.8,20 -Sun Sep 25 06:39:14 PDT 2011,152,84,7.755,16169.57,522746119,-947800181,142.8,20 -Sun Sep 25 06:39:15 PDT 2011,153,85,7.783,16177.35,522746883,-947800329,142.8,20 -Sun Sep 25 06:39:16 PDT 2011,153,86,7.869,16185.22,522747731,-947800470,142.8,20 -Sun Sep 25 06:39:17 PDT 2011,153,77,7.986,16193.21,522748534,-947800666,142.8,20 -Sun Sep 25 06:39:18 PDT 2011,154,84,7.927,16201.13,522749370,-947800865,142.8,20 -Sun Sep 25 06:39:19 PDT 2011,154,89,7.812,16208.95,522750192,-947801138,142.8,20 -Sun Sep 25 06:39:20 PDT 2011,153,96,7.672,16216.62,522750995,-947801440,142.8,20 -Sun Sep 25 06:39:21 PDT 2011,154,96,7.7,16224.32,522751772,-947801859,142.8,20 -Sun Sep 25 06:39:22 PDT 2011,154,93,7.618,16231.94,522752525,-947802308,142.8,20 -Sun Sep 25 06:39:23 PDT 2011,154,89,7.672,16239.61,522753265,-947802814,142.8,20 -Sun Sep 25 06:39:24 PDT 2011,154,89,7.618,16247.23,522754014,-947803338,142.8,20 -Sun Sep 25 06:39:25 PDT 2011,154,88,7.645,16254.87,522754747,-947803904,142.8,20 -Sun Sep 25 06:39:26 PDT 2011,154,88,7.538,16262.41,522755435,-947804491,142.8,20 -Sun Sep 25 06:39:27 PDT 2011,155,88,7.459,16269.87,522756075,-947805089,142.8,20 -Sun Sep 25 06:39:28 PDT 2011,155,88,7.433,16277.3,522756715,-947805706,142.8,20 -Sun Sep 25 06:39:29 PDT 2011,155,89,7.485,16284.79,522757385,-947806396,143.0,20 -Sun Sep 25 06:39:30 PDT 2011,155,93,7.485,16292.27,522757975,-947807133,143.2,20 -Sun Sep 25 06:39:31 PDT 2011,155,94,7.459,16299.73,522758515,-947807891,143.2,20 -Sun Sep 25 06:39:32 PDT 2011,155,94,7.538,16307.27,522759059,-947808712,143.4,20 -Sun Sep 25 06:39:33 PDT 2011,156,94,7.511,16314.78,522759518,-947809496,143.6,20 -Sun Sep 25 06:39:34 PDT 2011,156,93,7.459,16322.24,522760017,-947810317,143.8,20 -Sun Sep 25 06:39:35 PDT 2011,157,93,7.459,16329.72,522760565,-947811141,143.8,20 -Sun Sep 25 06:39:36 PDT 2011,158,96,7.332,16337.03,522761129,-947811970,144.0,20 -Sun Sep 25 06:39:37 PDT 2011,159,96,7.618,16344.97,522761684,-947812804,144.0,20 -Sun Sep 25 06:39:38 PDT 2011,160,96,7.645,16352.29,522762202,-947813565,144.4,20 -Sun Sep 25 06:39:39 PDT 2011,161,96,7.618,16359.91,522762706,-947814379,144.6,20 -Sun Sep 25 06:39:40 PDT 2011,161,96,7.672,16367.58,522763268,-947815163,144.8,20 -Sun Sep 25 06:39:41 PDT 2011,162,94,7.672,16375.25,522763833,-947815946,145.2,20 -Sun Sep 25 06:39:42 PDT 2011,162,92,7.538,16382.79,522764385,-947816746,145.4,20 -Sun Sep 25 06:39:43 PDT 2011,163,89,7.382,16390.17,522764957,-947817497,145.6,20 -Sun Sep 25 06:39:44 PDT 2011,163,89,7.137,16397.31,522765498,-947818200,145.6,20 -Sun Sep 25 06:39:45 PDT 2011,163,91,7.09,16404.4,522766025,-947818937,145.8,20 -Sun Sep 25 06:39:47 PDT 2011,164,93,7.307,16418.25,522767022,-947820491,146.0,20 -Sun Sep 25 06:39:47 PDT 2011,164,93,7.307,16419.01,522767078,-947820575,146.0,20 -Sun Sep 25 06:39:48 PDT 2011,164,62,7.408,16426.42,522767597,-947821501,146.4,20 -Sun Sep 25 06:39:49 PDT 2011,165,86,7.357,16433.78,522768063,-947822423,146.8,20 -Sun Sep 25 06:39:50 PDT 2011,165,87,7.137,16440.92,522768552,-947823288,147.0,20 -Sun Sep 25 06:39:51 PDT 2011,165,66,7.307,16448.22,522769006,-947824136,147.2,20 -Sun Sep 25 06:39:52 PDT 2011,166,66,7.161,16455.38,522769452,-947825013,147.4,20 -Sun Sep 25 06:39:53 PDT 2011,165,66,7.956,16463.34,522769939,-947825831,147.6,20 -Sun Sep 25 06:39:54 PDT 2011,165,0,7.84,16471.18,522770317,-947826701,147.8,20 -Sun Sep 25 06:39:55 PDT 2011,165,0,7.727,16478.9,522770692,-947827801,148.0,20 -Sun Sep 25 06:39:56 PDT 2011,165,71,7.459,16486.36,522770978,-947828875,148.2,20 -Sun Sep 25 06:39:57 PDT 2011,165,74,7.485,16493.85,522771242,-947829991,148.2,20 -Sun Sep 25 06:39:58 PDT 2011,165,74,7.618,16501.46,522771481,-947831088,148.4,20 -Sun Sep 25 06:39:59 PDT 2011,166,51,7.7,16509.16,522771701,-947832192,148.4,20 -Sun Sep 25 06:40:00 PDT 2011,166,84,7.783,16516.95,522771878,-947833269,148.6,20 -Sun Sep 25 06:40:01 PDT 2011,165,87,7.812,16524.76,522771987,-947834397,148.6,20 -Sun Sep 25 06:40:02 PDT 2011,165,88,8.076,16532.84,522772004,-947835601,148.8,20 -Sun Sep 25 06:40:03 PDT 2011,164,88,8.106,16540.94,522772059,-947836856,148.8,20 -Sun Sep 25 06:40:04 PDT 2011,164,88,8.016,16548.96,522772073,-947838095,148.8,20 -Sun Sep 25 06:40:05 PDT 2011,163,88,8.106,16557.06,522772032,-947839344,149.0,20 -Sun Sep 25 06:40:06 PDT 2011,163,88,8.076,16565.14,522771960,-947840617,149.0,20 -Sun Sep 25 06:40:07 PDT 2011,163,88,8.106,16573.24,522771880,-947841804,149.0,20 -Sun Sep 25 06:40:08 PDT 2011,162,89,8.168,16581.41,522771739,-947843031,149.0,20 -Sun Sep 25 06:40:09 PDT 2011,162,87,8.326,16589.74,522771568,-947844235,149.0,20 -Sun Sep 25 06:40:10 PDT 2011,162,79,8.199,16597.94,522771345,-947845397,149.2,20 -Sun Sep 25 06:40:11 PDT 2011,161,79,8.137,16606.07,522771088,-947846583,149.2,20 -Sun Sep 25 06:40:12 PDT 2011,159,77,7.986,16614.06,522770816,-947847718,149.2,20 -Sun Sep 25 06:40:13 PDT 2011,158,78,7.898,16621.96,522770507,-947848877,149.2,20 -Sun Sep 25 06:40:14 PDT 2011,158,78,8.016,16629.97,522770207,-947850018,149.2,20 -Sun Sep 25 06:40:15 PDT 2011,157,78,8.137,16638.11,522769928,-947851147,149.2,20 -Sun Sep 25 06:40:16 PDT 2011,157,78,8.076,16646.19,522769665,-947852288,149.2,20 -Sun Sep 25 06:40:17 PDT 2011,157,78,8.106,16654.29,522769403,-947853445,149.2,20 -Sun Sep 25 06:40:18 PDT 2011,157,78,8.106,16662.4,522769143,-947854596,149.4,20 -Sun Sep 25 06:40:19 PDT 2011,157,78,8.076,16670.47,522768897,-947855752,149.4,20 -Sun Sep 25 06:40:20 PDT 2011,156,0,7.986,16678.46,522768639,-947856878,149.4,20 -Sun Sep 25 06:40:21 PDT 2011,154,0,7.956,16686.42,522768388,-947857996,149.4,20 -Sun Sep 25 06:40:22 PDT 2011,153,0,8.016,16694.43,522768135,-947859137,149.4,20 -Sun Sep 25 06:40:23 PDT 2011,151,0,8.045,16702.48,522767879,-947860258,149.4,20 -Sun Sep 25 06:40:24 PDT 2011,150,0,8.106,16710.58,522767620,-947861414,149.4,20 -Sun Sep 25 06:40:25 PDT 2011,149,0,8.294,16718.88,522767372,-947862607,149.4,20 -Sun Sep 25 06:40:26 PDT 2011,148,0,8.376,16727.26,522767123,-947863803,149.4,20 -Sun Sep 25 06:40:27 PDT 2011,148,0,8.542,16735.8,522766870,-947865027,149.4,20 -Sun Sep 25 06:40:28 PDT 2011,147,0,8.681,16744.48,522766630,-947866262,149.4,20 -Sun Sep 25 06:40:29 PDT 2011,145,0,8.681,16753.16,522766387,-947867515,149.4,20 -Sun Sep 25 06:40:30 PDT 2011,145,0,8.934,16762.1,522766144,-947868798,149.4,20 -Sun Sep 25 06:40:31 PDT 2011,144,0,8.934,16771.03,522765897,-947870074,149.4,20 -Sun Sep 25 06:40:32 PDT 2011,142,0,8.934,16779.96,522765643,-947871375,149.4,20 -Sun Sep 25 06:40:33 PDT 2011,140,0,9.085,16789.05,522765384,-947872684,149.4,20 -Sun Sep 25 06:40:34 PDT 2011,140,87,8.971,16798.02,522765126,-947874008,149.4,20 -Sun Sep 25 06:40:35 PDT 2011,139,87,9.085,16807.11,522764873,-947875260,149.4,20 -Sun Sep 25 06:40:36 PDT 2011,139,87,9.047,16816.15,522764613,-947876531,149.4,20 -Sun Sep 25 06:40:37 PDT 2011,140,0,8.577,16824.73,522764350,-947877739,149.4,20 -Sun Sep 25 06:40:38 PDT 2011,140,0,8.298,16833.03,522764100,-947878919,149.4,20 -Sun Sep 25 06:40:39 PDT 2011,139,0,8.235,16841.26,522763892,-947879948,149.4,20 -Sun Sep 25 06:40:40 PDT 2011,139,0,7.902,16849.16,522763694,-947880888,149.4,20 -Sun Sep 25 06:40:41 PDT 2011,137,0,7.164,16856.33,522763502,-947881760,149.4,20 -Sun Sep 25 06:40:42 PDT 2011,135,0,6.513,16862.84,522763315,-947882593,149.4,20 -Sun Sep 25 06:40:43 PDT 2011,132,0,5.921,16868.76,522763175,-947883290,149.4,20 -Sun Sep 25 06:40:44 PDT 2011,132,0,5.455,16874.22,522763041,-947883944,149.4,20 -Sun Sep 25 06:40:45 PDT 2011,133,0,4.929,16879.15,522762947,-947884470,149.4,20 -Sun Sep 25 06:40:46 PDT 2011,134,0,4.29,16883.44,522762870,-947884954,149.4,20 -Sun Sep 25 06:40:47 PDT 2011,135,0,3.784,16887.22,522762800,-947885355,149.4,20 -Sun Sep 25 06:40:48 PDT 2011,135,0,3.374,16890.59,522762722,-947885719,149.4,20 -Sun Sep 25 06:40:49 PDT 2011,135,0,3.227,16893.82,522762614,-947886088,149.4,20 -Sun Sep 25 06:40:50 PDT 2011,136,0,3.757,16897.58,522762507,-947886496,149.2,20 -Sun Sep 25 06:40:51 PDT 2011,137,0,3.661,16901.24,522762388,-947886887,149.0,20 -Sun Sep 25 06:40:52 PDT 2011,137,0,3.594,16904.83,522762295,-947887228,148.8,20 -Sun Sep 25 06:40:53 PDT 2011,139,0,2.78,16907.61,522762206,-947887648,148.8,20 -Sun Sep 25 06:40:54 PDT 2011,140,0,2.643,16910.25,522762130,-947888061,148.6,20 -Sun Sep 25 06:40:55 PDT 2011,140,0,2.852,16913.11,522762077,-947888293,148.4,20 -Sun Sep 25 06:40:56 PDT 2011,140,0,2.328,16915.44,522762051,-947888521,148.4,20 -Sun Sep 25 06:40:57 PDT 2011,140,0,2.06,16917.49,522762019,-947888770,148.2,20 -Sun Sep 25 06:40:58 PDT 2011,139,0,2.06,16919.55,522761975,-947888939,148.2,20 -Sun Sep 25 06:40:59 PDT 2011,139,0,1.864,16921.42,522761952,-947889069,148.2,20 -Sun Sep 25 06:41:00 PDT 2011,139,0,1.391,16922.81,522761895,-947889263,148.0,20 -Sun Sep 25 06:41:02 PDT 2011,140,0,1.388,16922.81,522761752,-947889810,148.0,20 -Sun Sep 25 06:41:03 PDT 2011,142,25,2.074,16925.09,522761645,-947890191,147.8,20 -Sun Sep 25 06:41:04 PDT 2011,143,25,2.074,16926.96,522761572,-947890603,147.8,20 -Sun Sep 25 06:41:05 PDT 2011,144,33,2.074,16929.03,522761504,-947891128,147.8,20 -Sun Sep 25 06:41:06 PDT 2011,145,40,3.588,16933.02,522761568,-947891783,147.8,20 -Sun Sep 25 06:41:07 PDT 2011,147,40,4.07,16936.63,522761781,-947892350,147.8,20 -Sun Sep 25 06:41:08 PDT 2011,148,45,4.264,16940.9,522762122,-947892834,147.6,20 -Sun Sep 25 06:41:09 PDT 2011,150,55,4.602,16945.5,522762647,-947893064,147.6,20 -Sun Sep 25 06:41:10 PDT 2011,152,61,5.229,16950.73,522763244,-947893370,147.6,20 -Sun Sep 25 06:41:11 PDT 2011,153,66,5.746,16956.47,522763919,-947893542,147.6,20 -Sun Sep 25 06:41:12 PDT 2011,155,73,6.23,16962.7,522764561,-947893791,147.6,20 -Sun Sep 25 06:41:13 PDT 2011,157,75,6.716,16969.42,522765343,-947894001,147.6,20 -Sun Sep 25 06:41:14 PDT 2011,158,75,6.867,16976.29,522766109,-947894191,147.6,20 -Sun Sep 25 06:41:15 PDT 2011,160,77,7.236,16983.52,522766901,-947894384,147.6,20 -Sun Sep 25 06:41:16 PDT 2011,161,85,7.14,16990.67,522767749,-947894616,147.6,20 -Sun Sep 25 06:41:17 PDT 2011,162,89,7.236,16997.98,522768575,-947894865,147.6,20 -Sun Sep 25 06:41:18 PDT 2011,163,91,7.36,17005.26,522769391,-947895129,147.4,20 -Sun Sep 25 06:41:19 PDT 2011,163,94,7.676,17012.94,522770219,-947895388,147.4,20 -Sun Sep 25 06:41:20 PDT 2011,164,95,7.844,17020.78,522771063,-947895628,147.4,20 -Sun Sep 25 06:41:21 PDT 2011,164,96,7.99,17028.77,522771916,-947895861,147.4,20 -Sun Sep 25 06:41:22 PDT 2011,164,95,7.99,17036.76,522772769,-947896087,147.4,20 -Sun Sep 25 06:41:23 PDT 2011,165,95,7.99,17044.75,522773642,-947896319,147.4,20 -Sun Sep 25 06:41:24 PDT 2011,165,30,7.96,17052.71,522774492,-947896557,147.4,20 -Sun Sep 25 06:41:25 PDT 2011,165,91,7.676,17060.39,522775307,-947896784,147.4,20 -Sun Sep 25 06:41:26 PDT 2011,165,91,7.594,17067.98,522776142,-947897016,147.4,20 -Sun Sep 25 06:41:27 PDT 2011,165,91,7.659,17075.64,522776954,-947897238,147.6,20 -Sun Sep 25 06:41:28 PDT 2011,164,91,7.632,17083.27,522777747,-947897461,147.8,20 -Sun Sep 25 06:41:29 PDT 2011,164,91,7.632,17090.94,522778568,-947897696,148.0,21 -Sun Sep 25 06:41:30 PDT 2011,164,91,7.659,17098.56,522779367,-947897929,148.2,21 -Sun Sep 25 06:41:31 PDT 2011,163,92,7.605,17106.17,522780171,-947898148,148.2,21 -Sun Sep 25 06:41:32 PDT 2011,162,94,7.77,17113.94,522781025,-947898368,148.4,21 -Sun Sep 25 06:41:33 PDT 2011,162,94,7.855,17121.79,522781848,-947898575,148.6,21 -Sun Sep 25 06:41:34 PDT 2011,162,90,7.855,17129.65,522782675,-947898753,148.6,21 -Sun Sep 25 06:41:35 PDT 2011,162,90,7.798,17137.45,522783498,-947898889,148.6,21 -Sun Sep 25 06:41:36 PDT 2011,161,90,7.579,17145.03,522784309,-947899053,148.8,21 -Sun Sep 25 06:41:37 PDT 2011,161,78,7.422,17152.45,522785096,-947899216,148.8,21 -Sun Sep 25 06:41:38 PDT 2011,160,87,7.198,17160.69,522785984,-947899459,149.0,21 -Sun Sep 25 06:41:39 PDT 2011,160,88,7.321,17167.02,522786655,-947899632,149.0,21 -Sun Sep 25 06:41:40 PDT 2011,160,49,7.422,17174.48,522787422,-947899824,149.0,21 -Sun Sep 25 06:41:41 PDT 2011,160,88,7.374,17181.75,522788191,-947900027,149.0,21 -Sun Sep 25 06:41:42 PDT 2011,159,89,7.299,17189.05,522788982,-947900226,149.2,21 -Sun Sep 25 06:41:43 PDT 2011,159,90,7.451,17196.5,522789772,-947900423,149.2,21 -Sun Sep 25 06:41:44 PDT 2011,159,91,7.451,17203.95,522790569,-947900625,149.4,21 -Sun Sep 25 06:41:45 PDT 2011,159,91,7.609,17211.56,522791359,-947900815,149.6,21 -Sun Sep 25 06:41:46 PDT 2011,159,85,7.69,17219.25,522792175,-947900989,149.8,21 -Sun Sep 25 06:41:47 PDT 2011,159,86,7.859,17227.26,522793013,-947901189,150.0,21 -Sun Sep 25 06:41:48 PDT 2011,159,86,8.005,17235.11,522793837,-947901388,150.2,21 -Sun Sep 25 06:41:49 PDT 2011,160,87,8.035,17243.14,522794703,-947901602,150.2,21 -Sun Sep 25 06:41:50 PDT 2011,160,88,8.005,17251.15,522795556,-947901844,150.4,21 -Sun Sep 25 06:41:51 PDT 2011,160,85,8.156,17259.31,522796445,-947902102,150.6,21 -Sun Sep 25 06:41:52 PDT 2011,160,85,8.282,17267.59,522797295,-947902357,150.6,21 -Sun Sep 25 06:41:53 PDT 2011,160,85,8.064,17275.65,522798179,-947902631,150.6,21 -Sun Sep 25 06:41:54 PDT 2011,160,0,7.975,17283.63,522799014,-947902856,150.8,21 -Sun Sep 25 06:41:55 PDT 2011,159,86,7.888,17291.52,522799837,-947903070,150.8,21 -Sun Sep 25 06:41:56 PDT 2011,158,87,7.969,17299.48,522800700,-947903290,151.0,21 -Sun Sep 25 06:41:57 PDT 2011,158,89,8.149,17307.63,522801549,-947903527,151.0,21 -Sun Sep 25 06:41:58 PDT 2011,157,90,8.337,17315.97,522802370,-947903788,151.0,21 -Sun Sep 25 06:41:59 PDT 2011,157,89,8.402,17324.37,522803267,-947904013,151.0,21 -Sun Sep 25 06:42:00 PDT 2011,157,89,8.468,17332.84,522804172,-947904252,151.2,21 -Sun Sep 25 06:42:01 PDT 2011,156,89,8.534,17341.37,522805090,-947904500,151.2,21 -Sun Sep 25 06:42:02 PDT 2011,156,0,8.534,17349.92,522806000,-947904752,151.2,21 -Sun Sep 25 06:42:03 PDT 2011,154,0,8.568,17358.48,522806886,-947904988,151.2,21 -Sun Sep 25 06:42:04 PDT 2011,153,0,8.369,17366.85,522807724,-947905195,151.2,21 -Sun Sep 25 06:42:05 PDT 2011,151,0,8.149,17374.99,522808581,-947905394,151.2,21 -Sun Sep 25 06:42:06 PDT 2011,148,0,7.826,17382.82,522809378,-947905576,151.4,21 -Sun Sep 25 06:42:07 PDT 2011,146,79,7.742,17390.56,522810197,-947905774,151.4,21 -Sun Sep 25 06:42:08 PDT 2011,146,84,7.742,17398.3,522810990,-947905988,151.4,21 -Sun Sep 25 06:42:09 PDT 2011,146,79,7.817,17406.12,522811810,-947906194,151.4,21 -Sun Sep 25 06:42:10 PDT 2011,146,79,7.845,17413.97,522812586,-947906377,151.4,21 -Sun Sep 25 06:42:11 PDT 2011,147,79,7.99,17421.96,522813455,-947906599,151.4,21 -Sun Sep 25 06:42:12 PDT 2011,147,0,7.903,17429.86,522814286,-947906736,151.4,21 -Sun Sep 25 06:42:13 PDT 2011,147,0,7.733,17437.59,522815109,-947906833,151.4,21 -Sun Sep 25 06:42:14 PDT 2011,146,0,7.761,17445.35,522815970,-947906892,151.4,21 -Sun Sep 25 06:42:15 PDT 2011,146,83,7.789,17453.14,522816796,-947906984,151.4,21 -Sun Sep 25 06:42:16 PDT 2011,146,88,7.874,17461.02,522817660,-947907160,151.2,21 -Sun Sep 25 06:42:17 PDT 2011,146,89,8.08,17469.1,522818491,-947907387,151.0,21 -Sun Sep 25 06:42:18 PDT 2011,146,90,8.234,17477.33,522819365,-947907676,150.8,21 -Sun Sep 25 06:42:19 PDT 2011,147,94,8.362,17485.69,522820238,-947907974,150.8,21 -Sun Sep 25 06:42:20 PDT 2011,149,96,8.699,17494.39,522821128,-947908280,150.6,21 -Sun Sep 25 06:42:21 PDT 2011,151,100,8.952,17503.34,522822112,-947908612,150.4,21 -Sun Sep 25 06:42:22 PDT 2011,153,97,9.181,17512.52,522823066,-947908904,150.4,21 -Sun Sep 25 06:42:23 PDT 2011,155,97,9.473,17522.0,522824078,-947909208,150.2,21 -Sun Sep 25 06:42:24 PDT 2011,156,37,9.6,17531.6,522825120,-947909496,150.2,21 -Sun Sep 25 06:42:25 PDT 2011,157,96,9.6,17541.19,522826144,-947909775,150.0,21 -Sun Sep 25 06:42:26 PDT 2011,157,97,9.819,17551.01,522827210,-947910052,150.0,21 -Sun Sep 25 06:42:27 PDT 2011,157,88,10.048,17561.06,522828296,-947910354,150.0,21 -Sun Sep 25 06:42:28 PDT 2011,158,89,10.24,17571.3,522829375,-947910621,150.0,21 -Sun Sep 25 06:42:29 PDT 2011,158,50,10.438,17581.74,522830491,-947910880,149.8,21 -Sun Sep 25 06:42:30 PDT 2011,159,50,10.515,17592.26,522831630,-947911153,149.6,21 -Sun Sep 25 06:42:31 PDT 2011,159,50,10.671,17602.93,522832770,-947911426,149.4,21 -Sun Sep 25 06:42:32 PDT 2011,158,0,10.619,17613.55,522833903,-947911681,149.2,21 -Sun Sep 25 06:42:33 PDT 2011,156,0,10.489,17624.03,522835048,-947911925,149.0,21 -Sun Sep 25 06:42:34 PDT 2011,156,0,10.463,17634.5,522836141,-947912135,148.8,21 -Sun Sep 25 06:42:35 PDT 2011,154,0,10.463,17644.96,522837259,-947912375,148.6,21 -Sun Sep 25 06:42:36 PDT 2011,154,0,10.566,17655.53,522838362,-947912599,148.4,21 -Sun Sep 25 06:42:37 PDT 2011,153,0,10.413,17665.94,522839461,-947912824,148.4,21 -Sun Sep 25 06:42:38 PDT 2011,151,0,10.313,17676.25,522840521,-947913064,148.2,21 -Sun Sep 25 06:42:39 PDT 2011,150,0,9.666,17685.92,522841565,-947913284,148.2,21 -Sun Sep 25 06:42:40 PDT 2011,149,0,9.709,17695.63,522842603,-947913509,148.0,21 -Sun Sep 25 06:42:41 PDT 2011,147,35,9.753,17705.38,522843605,-947913742,148.0,21 -Sun Sep 25 06:42:42 PDT 2011,147,84,9.666,17715.05,522844640,-947913984,148.0,21 -Sun Sep 25 06:42:43 PDT 2011,147,84,9.933,17724.98,522845656,-947914190,147.8,21 -Sun Sep 25 06:42:44 PDT 2011,147,84,9.969,17734.95,522846728,-947914405,147.8,21 -Sun Sep 25 06:42:45 PDT 2011,148,84,10.016,17744.96,522847771,-947914614,147.8,21 -Sun Sep 25 06:42:46 PDT 2011,148,0,9.969,17754.93,522848838,-947914831,147.6,21 -Sun Sep 25 06:42:47 PDT 2011,147,0,9.744,17764.68,522849865,-947915051,147.6,21 -Sun Sep 25 06:42:48 PDT 2011,147,0,9.656,17774.33,522850907,-947915252,147.6,21 -Sun Sep 25 06:42:49 PDT 2011,146,0,9.57,17783.9,522851921,-947915442,147.6,21 -Sun Sep 25 06:42:50 PDT 2011,146,82,9.528,17793.43,522852947,-947915663,147.6,21 -Sun Sep 25 06:42:51 PDT 2011,145,83,9.613,17803.04,522853935,-947915872,147.4,21 -Sun Sep 25 06:42:52 PDT 2011,145,96,9.7,17812.74,522854981,-947916086,147.0,21 -Sun Sep 25 06:42:53 PDT 2011,146,96,9.878,17822.62,522856020,-947916296,146.8,21 -Sun Sep 25 06:42:54 PDT 2011,146,97,9.946,17832.57,522857092,-947916514,146.8,21 -Sun Sep 25 06:42:55 PDT 2011,147,97,10.016,17842.58,522858152,-947916712,146.6,21 -Sun Sep 25 06:42:56 PDT 2011,148,98,10.062,17852.65,522859232,-947916921,146.4,21 -Sun Sep 25 06:42:57 PDT 2011,149,98,10.173,17862.82,522860298,-947917131,146.4,21 -Sun Sep 25 06:42:58 PDT 2011,149,98,10.173,17872.99,522861361,-947917328,146.2,21 -Sun Sep 25 06:42:59 PDT 2011,149,20,9.923,17882.92,522862397,-947917502,146.0,21 -Sun Sep 25 06:43:00 PDT 2011,149,93,9.7,17892.62,522863425,-947917719,146.0,21 -Sun Sep 25 06:43:01 PDT 2011,149,41,9.7,17902.32,522864450,-947917870,146.0,21 -Sun Sep 25 06:43:02 PDT 2011,149,91,9.486,17911.8,522865452,-947918026,145.8,21 -Sun Sep 25 06:43:03 PDT 2011,149,91,9.445,17921.25,522866452,-947918137,145.8,21 -Sun Sep 25 06:43:04 PDT 2011,150,91,9.445,17930.69,522867438,-947918311,145.8,21 -Sun Sep 25 06:43:05 PDT 2011,151,90,9.403,17940.1,522868431,-947918468,145.6,21 -Sun Sep 25 06:43:06 PDT 2011,151,90,9.342,17949.44,522869402,-947918663,145.6,21 -Sun Sep 25 06:43:07 PDT 2011,152,90,9.344,17958.78,522870391,-947918855,145.6,21 -Sun Sep 25 06:43:08 PDT 2011,153,90,9.385,17968.17,522871350,-947919042,145.6,21 -Sun Sep 25 06:43:09 PDT 2011,154,89,9.344,17977.51,522872371,-947919226,145.6,21 -Sun Sep 25 06:43:10 PDT 2011,155,50,9.304,17986.81,522873315,-947919337,145.4,21 -Sun Sep 25 06:43:11 PDT 2011,156,86,8.994,17995.81,522874286,-947919469,145.4,21 -Sun Sep 25 06:43:12 PDT 2011,156,96,8.883,18004.69,522875241,-947919604,145.4,21 -Sun Sep 25 06:43:13 PDT 2011,156,97,8.919,18013.61,522876184,-947919752,145.4,21 -Sun Sep 25 06:43:14 PDT 2011,157,97,8.956,18022.57,522877092,-947919909,145.4,21 -Sun Sep 25 06:43:15 PDT 2011,157,97,8.994,18031.56,522878035,-947920098,145.4,21 -Sun Sep 25 06:43:16 PDT 2011,158,97,8.956,18040.52,522878997,-947920275,145.4,21 -Sun Sep 25 06:43:17 PDT 2011,158,98,8.994,18049.51,522879925,-947920432,145.4,21 -Sun Sep 25 06:43:18 PDT 2011,158,97,9.031,18058.54,522880865,-947920587,145.4,21 -Sun Sep 25 06:43:19 PDT 2011,159,97,9.116,18067.66,522881825,-947920737,145.4,21 -Sun Sep 25 06:43:20 PDT 2011,159,97,9.077,18076.73,522882790,-947920873,145.4,21 -Sun Sep 25 06:43:21 PDT 2011,158,0,8.781,18085.51,522883737,-947921016,145.6,21 -Sun Sep 25 06:43:22 PDT 2011,157,0,8.64,18094.15,522884655,-947921153,145.8,21 -Sun Sep 25 06:43:23 PDT 2011,155,0,8.537,18102.69,522885558,-947921290,146.0,21 -Sun Sep 25 06:43:24 PDT 2011,154,0,8.338,18111.05,522886449,-947921437,146.2,21 -Sun Sep 25 06:43:25 PDT 2011,152,0,8.274,18119.3,522887314,-947921585,146.2,21 -Sun Sep 25 06:43:26 PDT 2011,151,86,8.118,18127.42,522888165,-947921734,146.4,21 -Sun Sep 25 06:43:27 PDT 2011,151,91,8.243,18135.66,522889026,-947921897,146.4,21 -Sun Sep 25 06:43:28 PDT 2011,150,91,8.371,18144.03,522889901,-947922076,146.6,21 -Sun Sep 25 06:43:29 PDT 2011,150,93,8.537,18152.57,522890776,-947922263,146.6,21 -Sun Sep 25 06:43:30 PDT 2011,150,95,8.64,18161.21,522891718,-947922470,146.6,21 -Sun Sep 25 06:43:31 PDT 2011,149,89,8.853,18170.07,522892661,-947922680,146.8,21 -Sun Sep 25 06:43:32 PDT 2011,149,87,8.91,18178.98,522893611,-947922870,146.8,21 -Sun Sep 25 06:43:33 PDT 2011,149,88,9.022,18188.0,522894588,-947923050,146.8,21 -Sun Sep 25 06:43:34 PDT 2011,150,29,9.137,18197.13,522895565,-947923229,146.8,21 -Sun Sep 25 06:43:35 PDT 2011,150,89,9.098,18206.23,522896521,-947923401,147.0,21 -Sun Sep 25 06:43:36 PDT 2011,151,89,9.137,18215.37,522897498,-947923550,147.0,21 -Sun Sep 25 06:43:37 PDT 2011,151,89,9.216,18224.59,522898501,-947923732,147.0,21 -Sun Sep 25 06:43:38 PDT 2011,152,22,9.216,18233.8,522899454,-947923880,147.0,21 -Sun Sep 25 06:43:39 PDT 2011,153,88,9.098,18242.9,522900453,-947924045,147.0,21 -Sun Sep 25 06:43:40 PDT 2011,154,88,9.022,18251.92,522901392,-947924165,147.0,21 -Sun Sep 25 06:43:41 PDT 2011,154,89,9.06,18260.98,522902416,-947924368,147.0,21 -Sun Sep 25 06:43:42 PDT 2011,154,91,9.216,18270.22,522903393,-947924519,147.0,21 -Sun Sep 25 06:43:43 PDT 2011,153,94,9.501,18281.3,522904595,-947924731,147.2,21 -Sun Sep 25 06:43:44 PDT 2011,153,94,9.64,18289.32,522905481,-947924903,147.2,21 -Sun Sep 25 06:43:45 PDT 2011,153,96,9.728,18299.07,522906506,-947925093,147.2,21 -Sun Sep 25 06:43:46 PDT 2011,153,97,9.817,18308.86,522907582,-947925261,147.2,21 -Sun Sep 25 06:43:47 PDT 2011,154,99,9.908,18318.77,522908659,-947925423,147.2,21 -Sun Sep 25 06:43:48 PDT 2011,155,89,10.24,18330.19,522909917,-947925627,147.2,21 -Sun Sep 25 06:43:49 PDT 2011,156,91,10.389,18339.39,522910899,-947925799,147.2,21 -Sun Sep 25 06:43:50 PDT 2011,157,93,10.594,18349.98,522912033,-947925997,147.2,21 -Sun Sep 25 06:43:51 PDT 2011,158,93,10.808,18360.78,522913218,-947926200,147.0,21 -Sun Sep 25 06:43:52 PDT 2011,158,93,10.863,18371.66,522914406,-947926400,146.8,21 -Sun Sep 25 06:43:53 PDT 2011,158,0,10.863,18382.51,522915571,-947926606,146.6,21 -Sun Sep 25 06:43:54 PDT 2011,158,0,10.863,18393.37,522916774,-947926817,146.4,21 -Sun Sep 25 06:43:55 PDT 2011,156,0,10.772,18404.14,522917917,-947927031,146.2,21 -Sun Sep 25 06:43:56 PDT 2011,156,0,10.799,18414.94,522919081,-947927263,146.2,21 -Sun Sep 25 06:43:57 PDT 2011,154,0,10.882,18425.89,522920255,-947927477,146.0,21 -Sun Sep 25 06:43:58 PDT 2011,154,0,10.772,18436.6,522921420,-947927693,146.0,21 -Sun Sep 25 06:43:59 PDT 2011,152,0,10.664,18447.26,522922542,-947927899,145.6,21 -Sun Sep 25 06:44:00 PDT 2011,151,0,10.664,18457.93,522923716,-947928106,145.4,21 -Sun Sep 25 06:44:01 PDT 2011,150,0,10.772,18468.7,522924880,-947928288,145.2,21 -Sun Sep 25 06:44:02 PDT 2011,150,0,10.772,18479.47,522926013,-947928445,145.0,21 -Sun Sep 25 06:44:03 PDT 2011,150,0,10.772,18490.24,522927181,-947928614,144.8,21 -Sun Sep 25 06:44:04 PDT 2011,150,0,10.938,18501.18,522928364,-947928784,144.6,21 -Sun Sep 25 06:44:05 PDT 2011,151,0,10.908,18512.09,522929546,-947928949,144.4,21 -Sun Sep 25 06:44:06 PDT 2011,151,0,10.908,18522.99,522930702,-947929110,144.2,21 -Sun Sep 25 06:44:07 PDT 2011,152,0,10.532,18533.52,522931851,-947929248,144.0,21 -Sun Sep 25 06:44:08 PDT 2011,152,0,10.532,18544.06,522932971,-947929347,143.8,21 -Sun Sep 25 06:44:09 PDT 2011,152,0,10.329,18554.38,522934083,-947929374,143.4,21 -Sun Sep 25 06:44:10 PDT 2011,152,0,10.279,18564.66,522935177,-947929129,143.2,21 -Sun Sep 25 06:44:11 PDT 2011,152,0,10.157,18574.82,522936143,-947928566,143.0,21 -Sun Sep 25 06:44:12 PDT 2011,151,97,9.718,18584.54,522936945,-947927595,142.8,21 -Sun Sep 25 06:44:13 PDT 2011,151,100,9.898,18594.44,522937589,-947926354,142.6,21 -Sun Sep 25 06:44:14 PDT 2011,152,106,10.181,18604.62,522937969,-947924835,142.4,21 -Sun Sep 25 06:44:15 PDT 2011,153,110,10.717,18615.34,522938208,-947923038,142.2,21 -Sun Sep 25 06:44:16 PDT 2011,154,99,11.136,18626.47,522938347,-947921203,142.0,21 -Sun Sep 25 06:44:17 PDT 2011,156,99,11.433,18637.91,522938422,-947919373,141.6,21 -Sun Sep 25 06:44:18 PDT 2011,157,31,11.588,18649.49,522938481,-947917488,141.4,21 -Sun Sep 25 06:44:19 PDT 2011,159,102,11.557,18661.05,522938555,-947915606,141.0,21 -Sun Sep 25 06:44:20 PDT 2011,160,105,11.878,18672.93,522938606,-947913742,140.8,21 -Sun Sep 25 06:44:21 PDT 2011,161,99,12.288,18685.22,522938537,-947911837,140.6,21 -Sun Sep 25 06:44:22 PDT 2011,163,55,12.288,18697.5,522938392,-947909931,140.2,21 -Sun Sep 25 06:44:23 PDT 2011,164,55,12.241,18709.74,522938102,-947908115,140.0,21 -Sun Sep 25 06:44:24 PDT 2011,164,55,12.217,18721.96,522937690,-947906315,139.6,21 -Sun Sep 25 06:44:25 PDT 2011,165,0,11.651,18733.61,522937217,-947904700,139.4,21 -Sun Sep 25 06:44:26 PDT 2011,165,0,11.312,18744.92,522936653,-947903112,139.0,21 -Sun Sep 25 06:44:27 PDT 2011,164,0,11.107,18756.03,522936046,-947901657,138.8,21 -Sun Sep 25 06:44:28 PDT 2011,163,94,10.88,18766.91,522935370,-947900301,138.6,21 -Sun Sep 25 06:44:29 PDT 2011,163,94,11.021,18777.93,522934608,-947899068,138.4,21 -Sun Sep 25 06:44:30 PDT 2011,162,29,10.853,18788.8,522933749,-947897930,138.4,21 -Sun Sep 25 06:44:31 PDT 2011,161,92,10.637,18799.42,522932842,-947896873,138.2,21 -Sun Sep 25 06:44:32 PDT 2011,160,92,10.744,18810.17,522931859,-947895923,138.0,21 -Sun Sep 25 06:44:33 PDT 2011,160,92,10.798,18820.97,522930813,-947895046,138.0,21 -Sun Sep 25 06:44:34 PDT 2011,160,0,10.532,18831.5,522929773,-947894305,137.8,21 -Sun Sep 25 06:44:35 PDT 2011,159,0,10.23,18841.73,522928708,-947893689,137.6,21 -Sun Sep 25 06:44:36 PDT 2011,158,0,10.038,18851.77,522927593,-947893144,137.6,21 -Sun Sep 25 06:44:37 PDT 2011,157,84,9.944,18861.71,522926497,-947892703,137.6,21 -Sun Sep 25 06:44:38 PDT 2011,156,92,9.853,18871.56,522925437,-947892368,137.4,21 -Sun Sep 25 06:44:39 PDT 2011,156,92,9.898,18881.46,522924338,-947892071,137.4,21 -Sun Sep 25 06:44:40 PDT 2011,156,92,9.853,18891.31,522923268,-947891818,137.4,21 -Sun Sep 25 06:44:41 PDT 2011,156,92,9.718,18901.03,522922213,-947891598,137.2,21 -Sun Sep 25 06:44:42 PDT 2011,156,92,9.631,18910.66,522921127,-947891393,137.2,21 -Sun Sep 25 06:44:43 PDT 2011,157,92,9.631,18920.29,522920083,-947891210,137.2,21 -Sun Sep 25 06:44:44 PDT 2011,156,0,9.418,18929.71,522919071,-947891013,137.2,21 -Sun Sep 25 06:44:45 PDT 2011,156,0,9.216,18938.93,522918062,-947890795,137.2,21 -Sun Sep 25 06:44:46 PDT 2011,155,88,9.059,18947.99,522917072,-947890569,137.0,21 -Sun Sep 25 06:44:47 PDT 2011,155,89,9.059,18957.05,522916090,-947890355,137.0,21 -Sun Sep 25 06:44:48 PDT 2011,155,89,9.098,18966.14,522915086,-947890163,137.0,21 -Sun Sep 25 06:44:49 PDT 2011,155,92,9.255,18975.4,522914100,-947890152,137.0,21 -Sun Sep 25 06:44:50 PDT 2011,156,98,9.377,18984.78,522913123,-947890506,137.0,21 -Sun Sep 25 06:44:51 PDT 2011,158,104,9.898,18994.68,522912265,-947891344,137.0,21 -Sun Sep 25 06:44:52 PDT 2011,159,106,10.404,19005.08,522911705,-947892723,137.0,21 -Sun Sep 25 06:44:53 PDT 2011,161,108,10.853,19015.93,522911517,-947895033,137.0,21 -Sun Sep 25 06:44:54 PDT 2011,162,110,11.136,19027.07,522911115,-947896673,137.0,21 -Sun Sep 25 06:44:55 PDT 2011,164,99,11.194,19038.26,522910746,-947898248,136.8,21 -Sun Sep 25 06:44:56 PDT 2011,165,99,11.312,19049.58,522910397,-947899845,136.6,21 -Sun Sep 25 06:44:57 PDT 2011,167,99,11.049,19060.62,522910096,-947901378,136.4,21 -Sun Sep 25 06:44:58 PDT 2011,168,0,10.48,19071.11,522909806,-947902845,136.2,21 -Sun Sep 25 06:44:59 PDT 2011,169,0,10.181,19081.29,522909477,-947904332,136.0,21 -Sun Sep 25 06:45:00 PDT 2011,170,0,9.853,19091.14,522909178,-947905784,136.0,21 -Sun Sep 25 06:45:01 PDT 2011,170,100,9.967,19101.11,522908883,-947907206,135.8,21 -Sun Sep 25 06:45:02 PDT 2011,171,101,10.23,19111.34,522908562,-947908637,135.8,21 -Sun Sep 25 06:45:03 PDT 2011,171,102,10.279,19121.62,522908245,-947910135,135.6,21 -Sun Sep 25 06:45:04 PDT 2011,171,79,10.455,19132.07,522907924,-947911615,135.6,21 -Sun Sep 25 06:45:05 PDT 2011,172,98,10.455,19142.53,522907592,-947913096,135.4,21 -Sun Sep 25 06:45:06 PDT 2011,172,98,10.358,19152.88,522907592,-947913096,135.4,21 -Sun Sep 25 06:45:07 PDT 2011,172,99,10.162,19163.05,522906911,-947916079,135.4,21 -Sun Sep 25 06:45:08 PDT 2011,172,100,10.21,19173.26,522906585,-947917522,135.2,21 -Sun Sep 25 06:45:09 PDT 2011,173,102,10.259,19183.52,522906252,-947919023,135.2,21 -Sun Sep 25 06:45:10 PDT 2011,173,102,10.459,19193.98,522905924,-947920517,135.4,21 -Sun Sep 25 06:45:11 PDT 2011,173,102,10.562,19204.54,522905594,-947922017,135.6,21 -Sun Sep 25 06:45:12 PDT 2011,173,89,10.511,19215.05,522905241,-947923546,135.6,21 -Sun Sep 25 06:45:13 PDT 2011,174,88,10.409,19225.46,522904894,-947925008,135.8,21 -Sun Sep 25 06:45:14 PDT 2011,174,85,10.284,19235.74,522904480,-947926446,136.0,21 -Sun Sep 25 06:45:15 PDT 2011,174,92,10.066,19245.81,522904041,-947927950,136.0,21 -Sun Sep 25 06:45:16 PDT 2011,174,99,9.927,19255.74,522903631,-947929364,136.2,21 -Sun Sep 25 06:45:17 PDT 2011,174,100,10.066,19265.8,522903279,-947930548,136.2,21 -Sun Sep 25 06:45:18 PDT 2011,174,84,10.308,19276.11,522902963,-947931889,136.2,21 -Sun Sep 25 06:45:19 PDT 2011,174,97,10.109,19286.22,522902614,-947933285,136.4,21 -Sun Sep 25 06:45:20 PDT 2011,175,100,9.968,19296.19,522902276,-947934690,136.6,21 -Sun Sep 25 06:45:21 PDT 2011,175,101,10.304,19306.49,522901899,-947936138,136.8,21 -Sun Sep 25 06:45:22 PDT 2011,175,101,10.404,19316.9,522901518,-947937648,137.0,21 -Sun Sep 25 06:45:23 PDT 2011,175,101,10.353,19327.25,522901134,-947939152,137.2,21 -Sun Sep 25 06:45:24 PDT 2011,176,101,10.454,19337.7,522900747,-947940677,137.4,21 -Sun Sep 25 06:45:25 PDT 2011,175,28,10.23,19347.94,522900368,-947942127,137.6,21 -Sun Sep 25 06:45:26 PDT 2011,175,94,9.876,19357.81,522899993,-947943539,137.8,21 -Sun Sep 25 06:45:27 PDT 2011,175,96,9.741,19367.55,522899595,-947944963,138.2,21 -Sun Sep 25 06:45:28 PDT 2011,175,95,9.899,19377.45,522899181,-947946353,138.4,21 -Sun Sep 25 06:45:29 PDT 2011,175,94,9.786,19387.24,522898766,-947947708,138.8,21 -Sun Sep 25 06:45:30 PDT 2011,176,94,9.909,19397.14,522898342,-947949022,139.0,21 -Sun Sep 25 06:45:31 PDT 2011,175,94,9.686,19406.83,522897931,-947950338,139.2,21 -Sun Sep 25 06:45:32 PDT 2011,175,94,9.643,19416.47,522897511,-947951678,139.4,21 -Sun Sep 25 06:45:33 PDT 2011,175,94,9.819,19426.29,522897088,-947952988,139.6,21 -Sun Sep 25 06:45:34 PDT 2011,175,95,9.515,19435.81,522896669,-947954252,140.0,21 -Sun Sep 25 06:45:35 PDT 2011,175,100,9.229,19445.03,522896261,-947955456,140.2,21 -Sun Sep 25 06:45:36 PDT 2011,174,103,9.189,19454.22,522895844,-947956697,140.6,21 -Sun Sep 25 06:45:37 PDT 2011,174,104,9.39,19463.61,522895446,-947957973,140.8,21 -Sun Sep 25 06:45:38 PDT 2011,175,96,9.686,19473.3,522895025,-947959257,141.0,21 -Sun Sep 25 06:45:39 PDT 2011,175,96,9.6,19482.9,522894599,-947960524,141.2,21 -Sun Sep 25 06:45:40 PDT 2011,175,100,9.229,19492.13,522894180,-947961787,141.4,21 -Sun Sep 25 06:45:41 PDT 2011,175,101,9.249,19501.38,522893757,-947963058,141.6,21 -Sun Sep 25 06:45:42 PDT 2011,175,104,9.282,19510.66,522893342,-947964275,142.0,21 -Sun Sep 25 06:45:43 PDT 2011,175,105,9.57,19520.23,522892878,-947965578,142.4,21 -Sun Sep 25 06:45:44 PDT 2011,175,105,9.744,19529.97,522892405,-947966814,142.6,21 -Sun Sep 25 06:45:45 PDT 2011,176,105,9.744,19539.72,522891945,-947968099,143.0,21 -Sun Sep 25 06:45:46 PDT 2011,176,93,9.81,19549.58,522891475,-947969422,143.2,21 -Sun Sep 25 06:45:47 PDT 2011,176,91,9.656,19559.2,522891027,-947970672,143.4,21 -Sun Sep 25 06:45:48 PDT 2011,176,91,9.445,19571.16,522890454,-947972291,143.6,21 -Sun Sep 25 06:45:49 PDT 2011,176,89,9.445,19578.16,522890129,-947973207,143.8,21 -Sun Sep 25 06:45:50 PDT 2011,176,97,9.362,19587.44,522889697,-947974381,144.2,21 -Sun Sep 25 06:45:51 PDT 2011,176,103,9.202,19596.64,522889240,-947975609,144.6,21 -Sun Sep 25 06:45:52 PDT 2011,176,106,9.403,19606.04,522888765,-947976886,144.8,21 -Sun Sep 25 06:45:53 PDT 2011,176,107,9.717,19615.76,522888302,-947978153,145.0,21 -Sun Sep 25 06:45:54 PDT 2011,176,106,9.873,19625.63,522887817,-947979457,145.4,21 -Sun Sep 25 06:45:55 PDT 2011,177,93,9.873,19635.5,522887328,-947980786,145.6,21 -Sun Sep 25 06:45:56 PDT 2011,177,93,9.783,19645.28,522886853,-947982075,145.8,21 -Sun Sep 25 06:45:57 PDT 2011,177,92,9.652,19654.94,522886391,-947983367,146.0,21 -Sun Sep 25 06:45:58 PDT 2011,177,92,9.524,19664.46,522885932,-947984641,146.0,21 -Sun Sep 25 06:45:59 PDT 2011,177,94,9.524,19673.98,522885475,-947985893,146.2,21 -Sun Sep 25 06:46:00 PDT 2011,177,97,9.673,19683.66,522884994,-947987182,146.6,21 -Sun Sep 25 06:46:01 PDT 2011,177,99,9.965,19693.62,522884515,-947988479,146.8,21 -Sun Sep 25 06:46:02 PDT 2011,177,98,10.201,19703.82,522884014,-947989832,147.2,21 -Sun Sep 25 06:46:03 PDT 2011,177,98,10.298,19714.12,522883515,-947991156,147.4,21 -Sun Sep 25 06:46:04 PDT 2011,177,96,10.11,19724.23,522883023,-947992465,147.6,21 -Sun Sep 25 06:46:05 PDT 2011,177,97,10.016,19734.25,522882521,-947993817,147.8,21 -Sun Sep 25 06:46:06 PDT 2011,177,98,10.016,19744.26,522882019,-947995131,148.0,21 -Sun Sep 25 06:46:07 PDT 2011,177,98,10.11,19754.37,522881562,-947996373,148.2,21 -Sun Sep 25 06:46:08 PDT 2011,178,97,10.157,19764.53,522881145,-947997569,148.2,21 -Sun Sep 25 06:46:09 PDT 2011,178,97,10.11,19774.64,522880695,-947998771,148.6,21 -Sun Sep 25 06:46:10 PDT 2011,178,97,10.062,19784.7,522880205,-948000043,149.0,21 -Sun Sep 25 06:46:11 PDT 2011,178,100,10.062,19794.76,522879722,-948001381,149.2,21 -Sun Sep 25 06:46:12 PDT 2011,178,100,10.23,19804.99,522879220,-948002745,149.4,21 -Sun Sep 25 06:46:13 PDT 2011,178,100,10.303,19815.3,522878715,-948004031,149.6,21 -Sun Sep 25 06:46:14 PDT 2011,177,24,10.11,19825.41,522878212,-948005349,149.8,21 -Sun Sep 25 06:46:15 PDT 2011,177,97,9.871,19835.28,522877711,-948006642,150.0,21 -Sun Sep 25 06:46:16 PDT 2011,177,99,10.01,19845.29,522877192,-948007987,150.2,21 -Sun Sep 25 06:46:17 PDT 2011,176,92,10.152,19855.44,522876701,-948009343,150.4,21 -Sun Sep 25 06:46:18 PDT 2011,177,98,10.299,19865.74,522876217,-948010726,150.4,21 -Sun Sep 25 06:46:19 PDT 2011,176,98,10.104,19875.84,522875720,-948012105,150.6,21 -Sun Sep 25 06:46:20 PDT 2011,176,101,10.104,19885.94,522875230,-948013457,150.6,21 -Sun Sep 25 06:46:21 PDT 2011,177,103,10.501,19896.45,522874715,-948014874,151.0,21 -Sun Sep 25 06:46:22 PDT 2011,177,93,10.604,19907.05,522874203,-948016321,151.2,21 -Sun Sep 25 06:46:23 PDT 2011,177,93,10.631,19917.68,522873695,-948017745,151.4,21 -Sun Sep 25 06:46:24 PDT 2011,177,100,10.449,19928.13,522873193,-948019160,151.6,21 -Sun Sep 25 06:46:25 PDT 2011,177,100,10.274,19938.4,522872692,-948020564,151.8,21 -Sun Sep 25 06:46:26 PDT 2011,178,102,10.398,19948.8,522872195,-948021977,152.0,21 -Sun Sep 25 06:46:27 PDT 2011,178,102,10.499,19959.3,522871719,-948023333,152.2,21 -Sun Sep 25 06:46:28 PDT 2011,178,103,10.603,19969.9,522871224,-948024752,152.4,21 -Sun Sep 25 06:46:29 PDT 2011,177,94,10.551,19980.45,522870732,-948026160,152.4,21 -Sun Sep 25 06:46:30 PDT 2011,177,89,10.655,19991.11,522870243,-948027556,152.6,21 -Sun Sep 25 06:46:31 PDT 2011,177,90,10.603,20001.71,522869753,-948028986,152.8,21 -Sun Sep 25 06:46:32 PDT 2011,177,90,10.499,20012.21,522869290,-948030417,152.8,21 -Sun Sep 25 06:46:33 PDT 2011,177,93,10.551,20022.76,522868813,-948031851,152.8,21 -Sun Sep 25 06:46:34 PDT 2011,176,95,10.87,20033.63,522868317,-948033356,153.0,21 -Sun Sep 25 06:46:35 PDT 2011,176,96,11.095,20044.73,522867828,-948034822,153.0,21 -Sun Sep 25 06:46:36 PDT 2011,176,87,11.264,20055.99,522867318,-948036352,153.0,21 -Sun Sep 25 06:46:37 PDT 2011,176,87,11.264,20067.25,522866797,-948037898,153.2,21 -Sun Sep 25 06:46:38 PDT 2011,176,23,10.865,20078.12,522866307,-948039374,153.2,21 -Sun Sep 25 06:46:39 PDT 2011,176,98,10.757,20088.88,522865797,-948040845,153.2,21 -Sun Sep 25 06:46:40 PDT 2011,176,98,10.703,20099.58,522865291,-948042316,153.2,21 -Sun Sep 25 06:46:41 PDT 2011,176,92,10.811,20110.39,522864808,-948043741,153.4,21 -Sun Sep 25 06:46:42 PDT 2011,176,40,10.811,20121.2,522864346,-948045178,153.4,21 -Sun Sep 25 06:46:43 PDT 2011,176,93,10.703,20131.9,522863865,-948046593,153.4,21 -Sun Sep 25 06:46:44 PDT 2011,176,93,10.784,20142.69,522863358,-948048031,153.4,21 -Sun Sep 25 06:46:45 PDT 2011,176,95,10.92,20153.61,522862847,-948049474,153.4,21 -Sun Sep 25 06:46:46 PDT 2011,175,96,11.064,20164.67,522862337,-948050954,153.4,21 -Sun Sep 25 06:46:47 PDT 2011,175,97,11.179,20175.85,522861805,-948052476,153.4,21 -Sun Sep 25 06:46:48 PDT 2011,176,99,11.355,20187.21,522861281,-948054011,153.4,21 -Sun Sep 25 06:46:49 PDT 2011,175,97,11.599,20198.81,522860753,-948055616,153.4,21 -Sun Sep 25 06:46:50 PDT 2011,176,97,11.662,20210.47,522860240,-948057187,153.6,21 -Sun Sep 25 06:46:51 PDT 2011,175,97,11.631,20222.1,522859727,-948058741,153.6,21 -Sun Sep 25 06:46:52 PDT 2011,175,97,11.415,20233.51,522859214,-948060277,153.6,21 -Sun Sep 25 06:46:53 PDT 2011,174,99,11.415,20244.93,522858695,-948061843,153.6,21 -Sun Sep 25 06:46:54 PDT 2011,174,100,11.537,20256.46,522858174,-948063419,153.6,21 -Sun Sep 25 06:46:55 PDT 2011,174,100,11.789,20268.25,522857637,-948065023,153.6,21 -Sun Sep 25 06:46:56 PDT 2011,174,100,11.739,20279.99,522857108,-948066577,153.6,21 -Sun Sep 25 06:46:57 PDT 2011,173,0,11.675,20291.67,522856572,-948068136,153.6,21 -Sun Sep 25 06:46:58 PDT 2011,173,0,11.488,20303.18,522856051,-948069689,153.6,21 -Sun Sep 25 06:46:59 PDT 2011,171,0,11.366,20314.52,522855528,-948071293,153.6,21 -Sun Sep 25 06:47:00 PDT 2011,170,99,11.247,20325.77,522855029,-948072810,153.6,21 -Sun Sep 25 06:47:01 PDT 2011,170,101,11.55,20337.32,522854511,-948074395,153.6,21 -Sun Sep 25 06:47:02 PDT 2011,170,97,11.771,20349.09,522853992,-948075973,153.6,21 -Sun Sep 25 06:47:03 PDT 2011,170,97,11.869,20360.96,522853474,-948077517,153.6,21 -Sun Sep 25 06:47:04 PDT 2011,169,53,11.804,20372.77,522852931,-948079133,153.6,21 -Sun Sep 25 06:47:05 PDT 2011,169,100,11.804,20384.57,522852366,-948080760,153.6,21 -Sun Sep 25 06:47:06 PDT 2011,169,100,11.98,20396.55,522851830,-948082344,153.6,21 -Sun Sep 25 06:47:07 PDT 2011,168,100,11.98,20408.53,522851289,-948083980,153.6,21 -Sun Sep 25 06:47:08 PDT 2011,168,0,11.784,20420.31,522850755,-948085566,153.6,21 -Sun Sep 25 06:47:09 PDT 2011,168,0,11.563,20431.88,522850247,-948087101,153.6,21 -Sun Sep 25 06:47:10 PDT 2011,167,91,11.47,20443.35,522849719,-948088643,153.6,21 -Sun Sep 25 06:47:11 PDT 2011,167,91,11.47,20454.82,522849196,-948090142,153.6,21 -Sun Sep 25 06:47:12 PDT 2011,166,91,11.47,20466.29,522848656,-948091623,153.6,21 -Sun Sep 25 06:47:13 PDT 2011,165,98,11.35,20477.64,522848110,-948093127,153.6,21 -Sun Sep 25 06:47:14 PDT 2011,165,101,11.232,20488.87,522847584,-948094576,153.6,21 -Sun Sep 25 06:47:15 PDT 2011,166,103,11.908,20500.78,522847044,-948096106,153.6,21 -Sun Sep 25 06:47:16 PDT 2011,166,106,12.042,20512.82,522846509,-948097681,153.6,21 -Sun Sep 25 06:47:17 PDT 2011,166,109,12.352,20525.17,522845961,-948099333,153.6,21 -Sun Sep 25 06:47:18 PDT 2011,167,109,12.792,20537.97,522845389,-948101067,153.6,21 -Sun Sep 25 06:47:19 PDT 2011,168,109,12.907,20550.87,522844820,-948102803,153.6,21 -Sun Sep 25 06:47:20 PDT 2011,168,0,12.83,20563.7,522844228,-948104562,153.6,21 -Sun Sep 25 06:47:21 PDT 2011,167,0,12.642,20576.35,522843650,-948106292,153.6,21 -Sun Sep 25 06:47:22 PDT 2011,167,0,12.495,20588.84,522843097,-948108007,153.6,21 -Sun Sep 25 06:47:23 PDT 2011,166,105,12.317,20601.16,522842562,-948109692,153.6,21 -Sun Sep 25 06:47:24 PDT 2011,166,92,12.317,20613.47,522842032,-948111343,153.6,21 -Sun Sep 25 06:47:25 PDT 2011,167,92,12.317,20625.79,522841471,-948113013,153.6,21 -Sun Sep 25 06:47:26 PDT 2011,167,92,12.495,20638.28,522840918,-948114672,153.6,21 -Sun Sep 25 06:47:27 PDT 2011,167,92,12.532,20650.81,522840329,-948116354,153.6,21 -Sun Sep 25 06:47:28 PDT 2011,167,0,12.459,20663.27,522839762,-948118003,153.6,21 -Sun Sep 25 06:47:29 PDT 2011,166,0,12.388,20675.66,522839192,-948119683,153.6,21 -Sun Sep 25 06:47:30 PDT 2011,164,0,12.178,20687.84,522838667,-948121297,153.6,21 -Sun Sep 25 06:47:31 PDT 2011,163,91,12.143,20699.99,522838153,-948122963,153.6,21 -Sun Sep 25 06:47:32 PDT 2011,162,97,12.109,20712.09,522837659,-948124660,153.6,21 -Sun Sep 25 06:47:33 PDT 2011,161,97,12.293,20724.38,522837156,-948126306,153.6,21 -Sun Sep 25 06:47:34 PDT 2011,162,97,12.293,20736.68,522836660,-948127955,153.6,21 -Sun Sep 25 06:47:35 PDT 2011,161,0,12.019,20748.7,522836139,-948129560,153.6,21 -Sun Sep 25 06:47:36 PDT 2011,161,0,11.756,20760.45,522835598,-948131134,153.6,21 -Sun Sep 25 06:47:37 PDT 2011,161,0,11.383,20771.84,522835071,-948132680,153.6,21 -Sun Sep 25 06:47:38 PDT 2011,160,0,11.032,20782.87,522834597,-948134130,153.6,21 -Sun Sep 25 06:47:39 PDT 2011,160,0,10.811,20793.68,522834215,-948135616,153.6,21 -Sun Sep 25 06:47:40 PDT 2011,160,0,10.865,20804.54,522834102,-948137136,153.6,21 -Sun Sep 25 06:47:41 PDT 2011,161,0,10.865,20815.41,522834452,-948138536,153.6,21 -Sun Sep 25 06:47:42 PDT 2011,161,92,10.703,20826.11,522835008,-948139878,153.6,21 -Sun Sep 25 06:47:43 PDT 2011,161,98,10.92,20837.03,522836013,-948140753,153.6,21 -Sun Sep 25 06:47:44 PDT 2011,162,99,11.443,20848.47,522837783,-948141269,153.6,21 -Sun Sep 25 06:47:45 PDT 2011,164,100,11.692,20860.17,522839012,-948141937,153.6,21 -Sun Sep 25 06:47:46 PDT 2011,165,101,11.756,20871.92,522840155,-948142683,153.6,21 -Sun Sep 25 06:47:47 PDT 2011,167,102,11.566,20883.49,522841286,-948143464,153.6,21 -Sun Sep 25 06:47:48 PDT 2011,169,102,11.886,20895.37,522842397,-948144281,153.6,21 -Sun Sep 25 06:47:49 PDT 2011,170,101,12.019,20907.39,522843486,-948145309,153.6,21 -Sun Sep 25 06:47:50 PDT 2011,172,101,11.952,20919.36,522844556,-948146270,153.6,21 -Sun Sep 25 06:47:51 PDT 2011,174,101,11.597,20930.94,522845487,-948147304,153.6,21 -Sun Sep 25 06:47:52 PDT 2011,175,0,10.244,20941.82,522846335,-948148454,153.6,21 -Sun Sep 25 06:47:53 PDT 2011,175,0,9.233,20950.48,522846975,-948149428,153.6,21 -Sun Sep 25 06:47:54 PDT 2011,176,0,8.675,20959.16,522847578,-948150379,153.6,21 -Sun Sep 25 06:47:55 PDT 2011,174,0,8.404,20967.56,522848083,-948151277,153.6,21 -Sun Sep 25 06:47:56 PDT 2011,174,0,8.057,20975.62,522848529,-948152192,153.6,21 -Sun Sep 25 06:47:57 PDT 2011,172,0,7.629,20983.25,522848961,-948153066,153.6,21 -Sun Sep 25 06:47:58 PDT 2011,171,61,7.077,20990.33,522849329,-948153957,153.6,21 -Sun Sep 25 06:47:59 PDT 2011,171,63,7.053,20997.38,522849683,-948154928,153.6,21 -Sun Sep 25 06:48:00 PDT 2011,172,65,7.393,21004.77,522850028,-948156019,153.6,21 -Sun Sep 25 06:48:01 PDT 2011,172,67,7.522,21012.29,522850355,-948157019,153.6,21 -Sun Sep 25 06:48:02 PDT 2011,172,69,7.823,21020.12,522850683,-948158179,153.6,21 -Sun Sep 25 06:48:03 PDT 2011,173,71,8.027,21028.14,522851016,-948159308,153.6,21 -Sun Sep 25 06:48:04 PDT 2011,173,76,8.503,21036.65,522851246,-948160550,153.6,21 -Sun Sep 25 06:48:05 PDT 2011,173,79,8.745,21045.39,522851550,-948161798,153.6,21 -Sun Sep 25 06:48:06 PDT 2011,174,80,9.233,21054.62,522851809,-948163138,153.6,21 -Sun Sep 25 06:48:07 PDT 2011,174,80,9.477,21064.1,522852034,-948164587,153.6,21 -Sun Sep 25 06:48:08 PDT 2011,175,28,9.868,21073.97,522852242,-948165988,153.6,21 -Sun Sep 25 06:48:09 PDT 2011,175,92,9.394,21083.36,522852377,-948167414,153.6,21 -Sun Sep 25 06:48:10 PDT 2011,174,93,9.394,21092.76,522852473,-948168843,153.6,21 -Sun Sep 25 06:48:11 PDT 2011,175,99,9.647,21102.4,522852518,-948170331,153.6,21 -Sun Sep 25 06:48:12 PDT 2011,175,104,10.1,21112.5,522852534,-948171812,153.6,21 -Sun Sep 25 06:48:13 PDT 2011,176,105,10.598,21123.1,522852490,-948173386,153.6,21 -Sun Sep 25 06:48:14 PDT 2011,176,104,10.92,21134.02,522852340,-948175015,153.6,21 -Sun Sep 25 06:48:15 PDT 2011,176,95,10.976,21145.0,522852066,-948176639,153.6,21 -Sun Sep 25 06:48:16 PDT 2011,176,95,11.089,21156.09,522851759,-948178290,153.6,21 -Sun Sep 25 06:48:17 PDT 2011,176,96,11.205,21167.29,522851366,-948179963,153.6,21 -Sun Sep 25 06:48:18 PDT 2011,176,93,11.323,21178.61,522850970,-948181539,153.6,21 -Sun Sep 25 06:48:19 PDT 2011,176,54,11.383,21190.0,522850555,-948183147,153.6,21 -Sun Sep 25 06:48:20 PDT 2011,176,54,11.443,21201.44,522850153,-948184756,153.6,21 -Sun Sep 25 06:48:21 PDT 2011,175,54,11.443,21212.88,522849759,-948186385,153.6,21 -Sun Sep 25 06:48:22 PDT 2011,175,96,11.383,21224.27,522849358,-948188022,153.6,21 -Sun Sep 25 06:48:23 PDT 2011,175,91,11.264,21235.53,522848975,-948189649,153.6,21 -Sun Sep 25 06:48:24 PDT 2011,174,92,11.383,21246.91,522848586,-948191265,153.6,21 -Sun Sep 25 06:48:25 PDT 2011,173,92,11.535,21258.45,522848208,-948192868,153.6,21 -Sun Sep 25 06:48:26 PDT 2011,173,92,11.504,21269.95,522847828,-948194515,153.6,21 -Sun Sep 25 06:48:27 PDT 2011,172,93,11.597,21281.55,522847452,-948196176,153.6,21 -Sun Sep 25 06:48:28 PDT 2011,172,93,11.629,21293.18,522847070,-948197862,153.6,21 -Sun Sep 25 06:48:29 PDT 2011,171,94,11.692,21304.87,522846678,-948199556,153.6,21 -Sun Sep 25 06:48:30 PDT 2011,171,94,11.925,21316.8,522846259,-948201244,153.6,21 -Sun Sep 25 06:48:31 PDT 2011,171,94,11.958,21328.75,522845857,-948202889,153.6,21 -Sun Sep 25 06:48:32 PDT 2011,170,0,11.451,21340.2,522845465,-948204518,153.6,21 -Sun Sep 25 06:48:33 PDT 2011,170,0,11.242,21351.45,522845058,-948206081,153.6,21 -Sun Sep 25 06:48:34 PDT 2011,168,0,10.633,21362.08,522844679,-948207496,153.6,21 -Sun Sep 25 06:48:35 PDT 2011,167,0,10.182,21372.26,522844335,-948208823,153.6,21 -Sun Sep 25 06:48:36 PDT 2011,167,0,9.224,21381.48,522844054,-948209957,153.6,21 -Sun Sep 25 06:48:37 PDT 2011,165,0,7.219,21388.7,522843857,-948210897,153.6,21 -Sun Sep 25 06:48:38 PDT 2011,164,0,6.256,21394.96,522843664,-948211720,153.6,21 -Sun Sep 25 06:48:39 PDT 2011,163,0,5.534,21400.49,522843521,-948212299,153.6,21 -Sun Sep 25 06:48:40 PDT 2011,162,0,4.45,21404.94,522843395,-948212749,153.6,21 -Sun Sep 25 06:48:41 PDT 2011,162,0,3.591,21408.53,522843282,-948213065,153.6,21 -Sun Sep 25 06:48:42 PDT 2011,161,0,3.221,21411.75,522843193,-948213334,153.6,21 -Sun Sep 25 06:48:43 PDT 2011,160,0,2.668,21414.42,522843187,-948213542,153.6,21 -Sun Sep 25 06:48:44 PDT 2011,160,0,2.348,21416.77,522843183,-948213654,153.6,21 -Sun Sep 25 06:48:45 PDT 2011,159,0,2.348,21419.12,522843217,-948213671,153.6,21 -Sun Sep 25 06:48:46 PDT 2011,159,0,1.367,21420.48,522843269,-948213690,153.6,21 -Sun Sep 25 06:49:15 PDT 2011,145,0,0.0,21420.48,522843377,-948213399,153.6,21 -Sun Sep 25 06:49:16 PDT 2011,146,0,5.621,21426.2,522843377,-948213402,153.6,21 -Sun Sep 25 06:49:17 PDT 2011,146,0,0.0,21426.2,522843375,-948213421,153.6,21 -Sun Sep 25 06:50:01 PDT 2011,142,0,0.934,21426.2,522843106,-948214008,153.6,21 -Sun Sep 25 06:50:02 PDT 2011,143,0,1.837,21428.07,522843069,-948214373,153.6,21 -Sun Sep 25 06:50:03 PDT 2011,144,0,1.837,21429.87,522843049,-948214884,153.6,21 -Sun Sep 25 06:50:04 PDT 2011,146,30,1.837,21431.91,522842956,-948215546,153.6,21 -Sun Sep 25 06:50:05 PDT 2011,147,41,1.837,21433.54,522842840,-948216170,153.6,21 -Sun Sep 25 06:50:06 PDT 2011,148,50,4.573,21438.12,522842737,-948216896,153.6,21 -Sun Sep 25 06:50:07 PDT 2011,150,56,5.139,21443.28,522842531,-948217784,153.6,21 -Sun Sep 25 06:50:08 PDT 2011,151,63,5.771,21449.02,522842271,-948218706,153.6,21 -Sun Sep 25 06:50:09 PDT 2011,153,68,6.424,21455.45,522841877,-948219690,153.6,21 -Sun Sep 25 06:50:10 PDT 2011,154,72,7.1,21462.55,522841468,-948220822,153.6,21 -Sun Sep 25 06:50:11 PDT 2011,156,38,7.6,21470.15,522841078,-948221935,153.6,21 -Sun Sep 25 06:50:12 PDT 2011,157,79,8.054,21478.2,522840803,-948222987,153.6,21 -Sun Sep 25 06:50:13 PDT 2011,158,83,8.175,21486.38,522840567,-948224200,153.6,21 -Sun Sep 25 06:50:14 PDT 2011,158,89,8.669,21495.05,522840335,-948225495,153.6,21 -Sun Sep 25 06:50:15 PDT 2011,159,92,8.956,21504.0,522840100,-948226845,153.4,21 -Sun Sep 25 06:50:16 PDT 2011,160,47,9.636,21513.64,522839826,-948228336,153.2,21 -Sun Sep 25 06:50:17 PDT 2011,161,97,10.086,21523.72,522839508,-948229751,153.0,21 -Sun Sep 25 06:50:18 PDT 2011,161,97,9.993,21533.72,522839171,-948231185,152.8,21 -Sun Sep 25 06:50:19 PDT 2011,162,98,10.11,21543.83,522838842,-948232593,152.8,21 -Sun Sep 25 06:50:20 PDT 2011,163,100,10.134,21553.96,522838543,-948233997,152.6,21 -Sun Sep 25 06:50:21 PDT 2011,163,101,10.23,21564.19,522838178,-948235458,152.4,21 -Sun Sep 25 06:50:22 PDT 2011,164,102,10.427,21574.62,522837857,-948236868,152.4,21 -Sun Sep 25 06:50:23 PDT 2011,165,94,10.529,21585.15,522837523,-948238361,152.2,21 -Sun Sep 25 06:50:24 PDT 2011,165,90,10.633,21595.78,522837153,-948239897,152.2,21 -Sun Sep 25 06:50:25 PDT 2011,165,90,10.649,21606.43,522836798,-948241411,152.0,21 -Sun Sep 25 06:50:26 PDT 2011,164,92,10.519,21616.98,522836433,-948242932,152.0,21 -Sun Sep 25 06:50:27 PDT 2011,164,92,10.782,21627.73,522836057,-948244469,152.0,21 -Sun Sep 25 06:50:28 PDT 2011,164,92,10.836,21638.57,522835711,-948245956,151.8,21 -Sun Sep 25 06:50:29 PDT 2011,163,92,10.891,21649.46,522835398,-948247469,151.8,21 -Sun Sep 25 06:50:30 PDT 2011,163,0,10.675,21660.13,522835056,-948248968,151.8,21 -Sun Sep 25 06:50:31 PDT 2011,162,99,10.571,21670.7,522834704,-948250444,151.8,21 -Sun Sep 25 06:50:32 PDT 2011,162,92,10.519,21681.22,522834311,-948251893,151.8,21 -Sun Sep 25 06:50:33 PDT 2011,161,91,10.519,21691.74,522833948,-948253323,151.6,21 -Sun Sep 25 06:50:34 PDT 2011,161,91,10.468,21702.21,522833567,-948254759,151.6,21 -Sun Sep 25 06:50:35 PDT 2011,160,91,10.323,21712.53,522833222,-948256153,151.6,21 -Sun Sep 25 06:50:36 PDT 2011,159,0,10.082,21722.62,522832856,-948257585,151.6,21 -Sun Sep 25 06:50:37 PDT 2011,158,0,9.965,21732.58,522832506,-948258969,151.6,21 -Sun Sep 25 06:50:38 PDT 2011,158,0,9.718,21742.3,522832173,-948260296,151.6,21 -Sun Sep 25 06:50:39 PDT 2011,157,0,9.483,21751.78,522831846,-948261582,151.6,21 -Sun Sep 25 06:50:40 PDT 2011,157,93,9.22,21761.0,522831548,-948262818,151.6,21 -Sun Sep 25 06:50:41 PDT 2011,157,93,9.34,21770.34,522831226,-948264112,151.4,21 -Sun Sep 25 06:50:42 PDT 2011,157,36,9.546,21779.89,522830916,-948265431,151.4,21 -Sun Sep 25 06:50:43 PDT 2011,157,91,9.38,21789.27,522830615,-948266733,151.4,21 -Sun Sep 25 06:50:44 PDT 2011,157,91,9.421,21798.69,522830320,-948268059,151.4,21 -Sun Sep 25 06:50:45 PDT 2011,156,31,9.299,21808.02,522830060,-948269343,151.4,21 -Sun Sep 25 06:50:46 PDT 2011,156,88,9.103,21817.09,522829805,-948270612,151.4,21 -Sun Sep 25 06:50:47 PDT 2011,156,88,9.065,21826.16,522829553,-948271862,151.4,21 -Sun Sep 25 06:50:48 PDT 2011,156,88,8.989,21835.15,522829293,-948273142,151.4,21 -Sun Sep 25 06:50:49 PDT 2011,156,0,8.806,21843.95,522829049,-948274366,151.4,21 -Sun Sep 25 06:50:50 PDT 2011,155,83,8.664,21852.62,522828795,-948275594,151.4,21 -Sun Sep 25 06:50:51 PDT 2011,154,94,8.664,21861.28,522828535,-948276818,151.4,21 -Sun Sep 25 06:50:52 PDT 2011,153,94,8.664,21869.95,522828273,-948278026,151.4,21 -Sun Sep 25 06:50:53 PDT 2011,153,96,8.735,21878.68,522828019,-948279239,151.4,21 -Sun Sep 25 06:50:54 PDT 2011,153,101,8.878,21887.56,522827736,-948280556,151.4,21 -Sun Sep 25 06:50:55 PDT 2011,153,104,9.22,21896.78,522827457,-948281866,151.4,21 -Sun Sep 25 06:50:56 PDT 2011,154,107,9.632,21906.41,522827181,-948283219,151.4,21 -Sun Sep 25 06:50:57 PDT 2011,156,109,9.807,21916.22,522826898,-948284659,151.4,21 -Sun Sep 25 06:50:58 PDT 2011,157,101,10.082,21926.3,522826599,-948286086,151.4,21 -Sun Sep 25 06:50:59 PDT 2011,159,101,10.235,21936.54,522826298,-948287554,151.4,21 -Sun Sep 25 06:51:00 PDT 2011,160,102,10.536,21947.07,522825995,-948289078,151.4,21 -Sun Sep 25 06:51:01 PDT 2011,162,96,10.484,21957.55,522825678,-948290629,151.4,21 -Sun Sep 25 06:51:02 PDT 2011,163,86,10.588,21968.14,522825375,-948292156,151.4,21 -Sun Sep 25 06:51:03 PDT 2011,163,86,10.588,21978.73,522825068,-948293680,151.4,21 -Sun Sep 25 06:51:04 PDT 2011,164,86,10.484,21989.25,522824747,-948295198,151.4,21 -Sun Sep 25 06:51:05 PDT 2011,164,0,10.333,21999.55,522824408,-948296660,151.4,21 -Sun Sep 25 06:51:06 PDT 2011,163,99,10.186,22009.73,522824075,-948298098,151.4,21 -Sun Sep 25 06:51:07 PDT 2011,163,101,10.21,22019.95,522823744,-948299584,151.4,21 -Sun Sep 25 06:51:08 PDT 2011,163,103,10.358,22030.3,522823420,-948301018,151.4,21 -Sun Sep 25 06:51:09 PDT 2011,163,104,10.591,22040.89,522823050,-948302498,151.4,21 -Sun Sep 25 06:51:10 PDT 2011,163,104,10.749,22051.64,522822659,-948303985,151.4,21 -Sun Sep 25 06:51:11 PDT 2011,163,94,10.912,22062.55,522822322,-948305471,151.4,21 -Sun Sep 25 06:51:12 PDT 2011,163,94,10.974,22073.53,522821946,-948307066,151.4,21 -Sun Sep 25 06:51:13 PDT 2011,162,91,11.195,22084.72,522821567,-948308635,151.4,21 -Sun Sep 25 06:51:14 PDT 2011,161,91,11.195,22095.92,522821193,-948310207,151.4,21 -Sun Sep 25 06:51:15 PDT 2011,161,95,11.253,22107.17,522820830,-948311765,151.4,21 -Sun Sep 25 06:51:16 PDT 2011,161,95,11.166,22118.34,522820462,-948313321,151.4,21 -Sun Sep 25 06:51:17 PDT 2011,161,95,11.195,22129.54,522820107,-948314863,151.4,21 -Sun Sep 25 06:51:18 PDT 2011,160,27,11.253,22140.79,522819756,-948316453,151.4,21 -Sun Sep 25 06:51:19 PDT 2011,160,94,11.195,22151.98,522819420,-948318060,151.4,21 -Sun Sep 25 06:51:20 PDT 2011,160,94,11.017,22163.0,522819073,-948319633,151.4,21 -Sun Sep 25 06:51:21 PDT 2011,159,94,10.989,22174.02,522818733,-948321178,151.4,21 -Sun Sep 25 06:51:22 PDT 2011,159,0,10.96,22184.95,522818394,-948322753,151.4,21 -Sun Sep 25 06:51:23 PDT 2011,158,0,10.85,22195.82,522818063,-948324269,151.4,21 -Sun Sep 25 06:51:24 PDT 2011,157,93,10.85,22206.65,522817704,-948325835,151.4,21 -Sun Sep 25 06:51:25 PDT 2011,158,94,10.905,22217.55,522817353,-948327394,151.4,21 -Sun Sep 25 06:51:26 PDT 2011,158,90,10.989,22228.54,522816993,-948328943,151.4,21 -Sun Sep 25 06:51:27 PDT 2011,159,55,11.073,22239.62,522816627,-948330521,151.4,21 -Sun Sep 25 06:51:28 PDT 2011,159,95,11.073,22250.69,522816269,-948332097,151.4,21 -Sun Sep 25 06:51:29 PDT 2011,159,90,11.189,22261.88,522815937,-948333677,151.4,21 -Sun Sep 25 06:51:30 PDT 2011,159,90,11.264,22273.14,522815584,-948335274,151.4,21 -Sun Sep 25 06:51:31 PDT 2011,159,90,11.293,22284.43,522815241,-948336880,151.4,21 -Sun Sep 25 06:51:32 PDT 2011,159,90,11.443,22295.88,522814892,-948338499,151.4,21 -Sun Sep 25 06:51:33 PDT 2011,159,27,11.323,22307.2,522814548,-948340125,151.4,21 -Sun Sep 25 06:51:34 PDT 2011,158,84,11.205,22318.4,522814215,-948341767,151.4,21 -Sun Sep 25 06:51:35 PDT 2011,158,84,11.264,22329.67,522813908,-948343337,151.4,21 -Sun Sep 25 06:51:36 PDT 2011,158,84,11.176,22340.84,522813599,-948344964,151.4,21 -Sun Sep 25 06:51:37 PDT 2011,157,22,10.976,22351.82,522813309,-948346549,151.4,21 -Sun Sep 25 06:51:38 PDT 2011,157,86,10.784,22362.6,522813029,-948348011,151.4,21 -Sun Sep 25 06:51:39 PDT 2011,157,91,10.741,22373.34,522812726,-948349552,151.4,21 -Sun Sep 25 06:51:40 PDT 2011,157,91,10.714,22384.06,522812468,-948351052,151.4,21 -Sun Sep 25 06:51:41 PDT 2011,156,91,10.795,22394.85,522812179,-948352537,151.4,21 -Sun Sep 25 06:51:42 PDT 2011,156,90,10.688,22405.56,522811875,-948354049,151.4,21 -Sun Sep 25 06:51:43 PDT 2011,157,90,10.531,22416.07,522811581,-948355554,151.4,21 -Sun Sep 25 06:51:44 PDT 2011,156,90,10.378,22426.45,522811297,-948357016,151.4,21 -Sun Sep 25 06:51:45 PDT 2011,156,19,10.328,22436.78,522811039,-948358519,151.4,21 -Sun Sep 25 06:51:46 PDT 2011,156,89,10.205,22446.98,522810760,-948359974,151.4,21 -Sun Sep 25 06:51:47 PDT 2011,155,91,10.403,22457.39,522810489,-948361430,151.4,21 -Sun Sep 25 06:51:48 PDT 2011,156,91,10.583,22467.97,522810195,-948362995,151.4,21 -Sun Sep 25 06:51:49 PDT 2011,156,92,10.661,22478.63,522809880,-948364548,151.4,21 -Sun Sep 25 06:51:50 PDT 2011,156,93,10.716,22489.35,522809570,-948366086,151.4,21 -Sun Sep 25 06:51:51 PDT 2011,156,96,10.851,22500.2,522809259,-948367688,151.4,21 -Sun Sep 25 06:51:52 PDT 2011,157,96,11.104,22511.3,522808920,-948369310,151.4,21 -Sun Sep 25 06:51:53 PDT 2011,158,97,11.162,22522.46,522808581,-948370871,151.4,21 -Sun Sep 25 06:51:54 PDT 2011,159,97,11.339,22533.8,522808171,-948372510,151.4,21 -Sun Sep 25 06:51:55 PDT 2011,159,23,11.191,22544.99,522807780,-948374110,151.4,21 -Sun Sep 25 06:51:56 PDT 2011,160,108,11.047,22556.04,522807389,-948375685,151.4,21 -Sun Sep 25 06:51:57 PDT 2011,160,97,11.104,22567.2,522806993,-948377293,151.4,21 -Sun Sep 25 06:51:58 PDT 2011,161,97,11.28,22580.28,522806538,-948379127,151.4,21 -Sun Sep 25 06:51:59 PDT 2011,161,97,11.4,22589.92,522806200,-948380499,151.4,21 -Sun Sep 25 06:52:00 PDT 2011,161,97,11.397,22601.43,522805825,-948382113,151.4,21 -Sun Sep 25 06:52:01 PDT 2011,160,26,11.247,22612.48,522805468,-948383670,151.4,21 -Sun Sep 25 06:52:02 PDT 2011,159,90,11.247,22623.7,522805121,-948385224,151.4,21 -Sun Sep 25 06:52:03 PDT 2011,158,91,11.247,22634.95,522804747,-948386822,151.4,21 -Sun Sep 25 06:52:04 PDT 2011,158,91,11.307,22646.25,522804367,-948388427,151.4,21 -Sun Sep 25 06:52:05 PDT 2011,157,91,11.247,22657.5,522803999,-948389975,151.4,21 -Sun Sep 25 06:52:06 PDT 2011,156,0,11.188,22668.69,522803634,-948391587,151.4,21 -Sun Sep 25 06:52:07 PDT 2011,154,0,11.101,22679.79,522803262,-948393168,151.4,21 -Sun Sep 25 06:52:08 PDT 2011,154,90,11.13,22690.92,522802906,-948394741,151.4,21 -Sun Sep 25 06:52:09 PDT 2011,153,90,11.188,22702.11,522802547,-948396345,151.4,21 -Sun Sep 25 06:52:10 PDT 2011,154,91,11.282,22713.39,522802200,-948397965,151.2,21 -Sun Sep 25 06:52:11 PDT 2011,154,92,11.433,22724.82,522801844,-948399565,151.0,21 -Sun Sep 25 06:52:12 PDT 2011,154,93,11.433,22736.26,522801476,-948401236,150.8,21 -Sun Sep 25 06:52:13 PDT 2011,154,93,11.557,22747.81,522801107,-948402893,150.6,21 -Sun Sep 25 06:52:14 PDT 2011,154,93,11.683,22759.5,522800747,-948404558,150.6,21 -Sun Sep 25 06:52:15 PDT 2011,153,0,11.526,22771.02,522800407,-948406194,150.4,21 -Sun Sep 25 06:52:16 PDT 2011,151,0,11.433,22782.46,522800056,-948407836,150.4,21 -Sun Sep 25 06:52:17 PDT 2011,151,91,11.342,22793.8,522799699,-948409428,150.2,21 -Sun Sep 25 06:52:18 PDT 2011,151,92,11.312,22805.11,522799308,-948411066,150.2,21 -Sun Sep 25 06:52:19 PDT 2011,151,92,11.526,22816.63,522798947,-948412671,150.0,21 -Sun Sep 25 06:52:20 PDT 2011,152,25,11.433,22828.08,522798569,-948414302,150.0,21 -Sun Sep 25 06:52:21 PDT 2011,153,89,11.136,22839.21,522798237,-948415906,150.0,21 -Sun Sep 25 06:52:22 PDT 2011,155,92,11.165,22850.37,522797908,-948417551,149.8,21 -Sun Sep 25 06:52:23 PDT 2011,156,94,11.433,22861.8,522797589,-948419244,149.8,21 -Sun Sep 25 06:52:24 PDT 2011,156,91,11.78,22873.58,522797237,-948420897,149.8,21 -Sun Sep 25 06:52:25 PDT 2011,158,48,11.878,22885.46,522796892,-948422596,149.8,21 -Sun Sep 25 06:52:26 PDT 2011,158,93,11.911,22897.37,522796529,-948424296,149.6,21 -Sun Sep 25 06:52:27 PDT 2011,159,93,11.878,22909.25,522796153,-948426007,149.6,21 -Sun Sep 25 06:52:28 PDT 2011,159,93,11.944,22921.19,522795765,-948427700,149.6,21 -Sun Sep 25 06:52:29 PDT 2011,159,0,11.841,22933.04,522795414,-948429355,149.6,21 -Sun Sep 25 06:52:30 PDT 2011,158,0,11.648,22944.68,522795073,-948431010,149.6,21 -Sun Sep 25 06:52:31 PDT 2011,157,0,11.43,22956.11,522794737,-948432638,149.6,21 -Sun Sep 25 06:52:32 PDT 2011,155,0,11.162,22967.28,522794416,-948434198,149.6,21 -Sun Sep 25 06:52:33 PDT 2011,155,0,10.824,22978.1,522794116,-948435717,149.6,21 -Sun Sep 25 06:52:34 PDT 2011,153,0,10.353,22988.45,522793848,-948437212,149.4,21 -Sun Sep 25 06:52:35 PDT 2011,152,0,10.353,22998.81,522793581,-948438642,149.4,21 -Sun Sep 25 06:52:36 PDT 2011,152,0,10.254,23009.06,522793324,-948440083,149.4,21 -Sun Sep 25 06:52:37 PDT 2011,150,0,10.181,23019.24,522793066,-948441485,149.4,21 -Sun Sep 25 06:52:38 PDT 2011,149,0,9.697,23028.94,522792814,-948442835,149.4,21 -Sun Sep 25 06:52:39 PDT 2011,148,0,9.496,23038.45,522792536,-948444215,149.2,21 -Sun Sep 25 06:52:40 PDT 2011,148,0,9.496,23047.93,522792263,-948445533,149.0,21 -Sun Sep 25 06:52:41 PDT 2011,148,0,9.056,23056.99,522792019,-948446799,148.8,21 -Sun Sep 25 06:52:42 PDT 2011,148,0,8.517,23065.51,522791811,-948447983,148.8,21 -Sun Sep 25 06:52:43 PDT 2011,148,0,7.949,23073.48,522791597,-948449122,148.6,21 -Sun Sep 25 06:52:44 PDT 2011,146,0,7.584,23081.04,522791409,-948450190,148.4,21 -Sun Sep 25 06:52:45 PDT 2011,144,0,7.275,23088.31,522791239,-948451166,148.4,21 -Sun Sep 25 06:52:46 PDT 2011,141,0,6.644,23094.96,522791077,-948452060,148.2,21 -Sun Sep 25 06:52:47 PDT 2011,138,0,6.149,23101.11,522790911,-948452879,148.2,21 -Sun Sep 25 06:52:48 PDT 2011,136,0,5.848,23106.96,522790748,-948453618,148.0,21 -Sun Sep 25 06:52:49 PDT 2011,135,0,5.11,23112.06,522790612,-948454266,148.0,21 -Sun Sep 25 06:52:50 PDT 2011,136,0,4.434,23116.5,522790533,-948454803,148.0,21 -Sun Sep 25 06:52:51 PDT 2011,136,0,3.631,23120.13,522790459,-948455224,147.8,21 -Sun Sep 25 06:52:52 PDT 2011,137,0,3.184,23123.31,522790426,-948455578,147.8,21 -Sun Sep 25 06:52:53 PDT 2011,137,0,2.82,23126.13,522790415,-948455891,147.8,22 -Sun Sep 25 06:52:54 PDT 2011,138,0,2.452,23128.58,522790385,-948456206,147.8,22 -Sun Sep 25 06:52:55 PDT 2011,139,0,2.666,23131.25,522790333,-948456556,147.6,22 -Sun Sep 25 06:52:56 PDT 2011,140,0,2.985,23134.23,522790267,-948456942,147.6,22 -Sun Sep 25 06:52:57 PDT 2011,142,0,3.156,23137.39,522790198,-948457446,147.6,22 -Sun Sep 25 06:52:58 PDT 2011,144,38,3.758,23141.15,522790088,-948458036,147.6,22 -Sun Sep 25 06:52:59 PDT 2011,147,38,4.462,23145.61,522789926,-948458746,147.6,22 -Sun Sep 25 06:53:00 PDT 2011,148,46,5.365,23150.97,522789686,-948459531,147.6,22 -Sun Sep 25 06:53:01 PDT 2011,150,53,5.8,23156.78,522789423,-948460424,147.6,22 -Sun Sep 25 06:53:02 PDT 2011,152,62,6.35,23163.13,522789115,-948461404,147.4,22 -Sun Sep 25 06:53:03 PDT 2011,154,62,7.106,23170.23,522788804,-948462369,147.4,22 -Sun Sep 25 06:53:04 PDT 2011,155,62,7.452,23177.68,522788500,-948463394,147.4,22 -Sun Sep 25 06:53:05 PDT 2011,156,27,7.275,23184.96,522788225,-948464429,147.4,22 -Sun Sep 25 06:53:06 PDT 2011,156,71,7.106,23192.06,522787940,-948465483,147.4,22 -Sun Sep 25 06:53:07 PDT 2011,156,72,7.202,23199.26,522787688,-948466539,147.4,22 -Sun Sep 25 06:53:08 PDT 2011,156,78,7.401,23206.66,522787423,-948467627,147.4,22 -Sun Sep 25 06:53:09 PDT 2011,156,88,7.748,23214.41,522787151,-948468778,147.4,22 -Sun Sep 25 06:53:10 PDT 2011,156,89,8.068,23222.48,522786857,-948469921,147.4,22 -Sun Sep 25 06:53:11 PDT 2011,157,91,8.192,23230.67,522786555,-948471120,147.4,22 -Sun Sep 25 06:53:12 PDT 2011,157,93,8.45,23239.12,522786252,-948472374,147.4,22 -Sun Sep 25 06:53:13 PDT 2011,157,95,8.45,23247.57,522785958,-948473633,147.4,22 -Sun Sep 25 06:53:14 PDT 2011,158,38,8.76,23256.33,522785679,-948474863,147.4,22 -Sun Sep 25 06:53:15 PDT 2011,157,95,8.869,23265.2,522785390,-948476120,147.4,22 -Sun Sep 25 06:53:16 PDT 2011,157,89,9.046,23274.26,522785065,-948477440,147.4,22 -Sun Sep 25 06:53:17 PDT 2011,157,90,9.046,23283.29,522784743,-948478720,147.2,22 -Sun Sep 25 06:53:18 PDT 2011,157,92,9.282,23292.57,522784393,-948480043,147.0,22 -Sun Sep 25 06:53:19 PDT 2011,158,94,9.489,23302.06,522784066,-948481408,146.8,22 -Sun Sep 25 06:53:20 PDT 2011,158,95,9.66,23311.72,522783777,-948482797,146.6,22 -Sun Sep 25 06:53:21 PDT 2011,158,96,9.749,23321.47,522783502,-948484230,146.4,22 -Sun Sep 25 06:53:22 PDT 2011,158,97,9.884,23331.35,522783225,-948485686,146.4,22 -Sun Sep 25 06:53:23 PDT 2011,158,97,9.93,23341.28,522782916,-948487132,146.2,22 -Sun Sep 25 06:53:24 PDT 2011,158,97,9.976,23351.26,522782586,-948488603,146.2,22 -Sun Sep 25 06:53:25 PDT 2011,157,20,9.749,23361.01,522782280,-948490004,146.0,22 -Sun Sep 25 06:53:26 PDT 2011,157,95,9.531,23370.54,522781976,-948491356,146.0,22 -Sun Sep 25 06:53:27 PDT 2011,156,99,9.159,23379.7,522781691,-948492715,145.8,22 -Sun Sep 25 06:53:28 PDT 2011,157,97,9.238,23388.94,522781419,-948494058,145.8,22 -Sun Sep 25 06:53:29 PDT 2011,157,97,9.12,23398.05,522781155,-948495326,145.8,22 -Sun Sep 25 06:53:30 PDT 2011,158,108,8.967,23407.02,522780933,-948496607,145.6,22 -Sun Sep 25 06:53:31 PDT 2011,158,108,8.967,23415.99,522780710,-948497889,145.6,22 -Sun Sep 25 06:53:32 PDT 2011,159,107,9.043,23425.03,522780475,-948499178,145.6,22 -Sun Sep 25 06:53:33 PDT 2011,160,106,8.967,23434.0,522780227,-948500445,145.8,22 -Sun Sep 25 06:53:34 PDT 2011,161,103,8.856,23442.85,522779995,-948501684,146.0,22 -Sun Sep 25 06:53:35 PDT 2011,162,102,8.642,23451.5,522779755,-948502905,146.2,22 -Sun Sep 25 06:53:36 PDT 2011,163,101,8.538,23460.03,522779520,-948504125,146.2,22 -Sun Sep 25 06:53:37 PDT 2011,164,101,8.437,23468.47,522779272,-948505341,146.4,22 -Sun Sep 25 06:53:38 PDT 2011,164,100,8.437,23476.91,522779032,-948506567,146.4,22 -Sun Sep 25 06:53:39 PDT 2011,165,99,8.372,23485.28,522778801,-948507729,146.6,22 -Sun Sep 25 06:53:40 PDT 2011,164,86,8.303,23493.58,522778578,-948508897,146.8,22 -Sun Sep 25 06:53:41 PDT 2011,165,84,8.053,23501.63,522778354,-948510014,147.2,22 -Sun Sep 25 06:53:42 PDT 2011,164,79,7.733,23509.37,522778146,-948511093,147.4,22 -Sun Sep 25 06:53:43 PDT 2011,164,78,7.542,23516.91,522777937,-948512101,147.6,22 -Sun Sep 25 06:53:44 PDT 2011,163,84,7.237,23524.15,522777715,-948513114,147.8,22 -Sun Sep 25 06:53:45 PDT 2011,163,83,7.116,23531.26,522777513,-948514093,148.0,22 -Sun Sep 25 06:53:46 PDT 2011,164,82,7.0,23538.26,522777308,-948515062,148.4,22 -Sun Sep 25 06:53:47 PDT 2011,164,83,6.8,23545.06,522777131,-948515998,148.6,22 -Sun Sep 25 06:53:48 PDT 2011,164,85,6.715,23551.78,522777283,-948517038,149.0,22 -Sun Sep 25 06:53:49 PDT 2011,164,87,7.069,23558.86,522777623,-948517846,149.2,22 -Sun Sep 25 06:53:50 PDT 2011,165,90,7.361,23566.21,522778256,-948518419,149.6,22 -Sun Sep 25 06:53:51 PDT 2011,165,97,7.361,23573.57,522779039,-948518849,149.8,22 -Sun Sep 25 06:53:52 PDT 2011,165,101,7.705,23581.27,522780015,-948519155,150.0,22 -Sun Sep 25 06:53:53 PDT 2011,166,110,8.335,23589.61,522781027,-948519267,150.2,22 -Sun Sep 25 06:53:54 PDT 2011,167,107,9.038,23598.65,522782077,-948519362,150.2,22 -Sun Sep 25 06:53:55 PDT 2011,168,101,9.478,23608.13,522783176,-948519473,150.4,22 -Sun Sep 25 06:53:56 PDT 2011,169,101,9.649,23617.77,522784261,-948519649,150.6,22 -Sun Sep 25 06:53:57 PDT 2011,170,36,9.917,23627.69,522785327,-948519881,150.6,22 -Sun Sep 25 06:53:58 PDT 2011,170,95,9.693,23637.38,522786435,-948520159,150.8,22 -Sun Sep 25 06:53:59 PDT 2011,171,95,9.849,23647.23,522787476,-948520428,150.8,22 -Sun Sep 25 06:54:00 PDT 2011,171,95,9.871,23657.11,522788497,-948520701,151.0,22 -Sun Sep 25 06:54:01 PDT 2011,171,0,9.917,23667.06,522789568,-948520951,151.0,22 -Sun Sep 25 06:54:02 PDT 2011,171,87,9.917,23677.1,522790660,-948521226,151.2,22 -Sun Sep 25 06:54:03 PDT 2011,171,88,10.299,23690.85,522792117,-948521587,151.2,22 -Sun Sep 25 06:54:04 PDT 2011,170,88,10.299,23697.64,522792840,-948521768,151.2,22 -Sun Sep 25 06:54:05 PDT 2011,170,30,10.464,23708.2,522793953,-948522027,151.2,22 -Sun Sep 25 06:54:06 PDT 2011,169,94,10.516,23718.51,522795102,-948522304,151.4,22 -Sun Sep 25 06:54:07 PDT 2011,169,94,10.78,23729.29,522796299,-948522591,151.4,22 -Sun Sep 25 06:54:08 PDT 2011,168,94,11.058,23740.35,522797477,-948522874,151.2,22 -Sun Sep 25 06:54:09 PDT 2011,167,94,11.32,23751.67,522798665,-948523165,151.0,22 -Sun Sep 25 06:54:10 PDT 2011,166,0,11.32,23762.99,522799898,-948523433,150.8,22 -Sun Sep 25 06:54:11 PDT 2011,165,0,11.502,23774.49,522801169,-948523698,150.8,22 -Sun Sep 25 06:54:12 PDT 2011,163,0,11.564,23786.05,522802431,-948523977,150.6,22 -Sun Sep 25 06:54:13 PDT 2011,162,0,11.659,23797.71,522803660,-948524258,150.4,22 -Sun Sep 25 06:54:14 PDT 2011,161,97,11.472,23809.19,522804904,-948524523,150.4,22 -Sun Sep 25 06:54:15 PDT 2011,161,101,11.361,23820.55,522806117,-948524765,150.4,22 -Sun Sep 25 06:54:16 PDT 2011,161,101,11.702,23832.25,522807403,-948525035,150.2,22 -Sun Sep 25 06:54:17 PDT 2011,161,102,11.863,23844.11,522808661,-948525305,150.2,22 -Sun Sep 25 06:54:18 PDT 2011,162,105,11.863,23855.97,522809921,-948525576,150.0,22 -Sun Sep 25 06:54:19 PDT 2011,163,105,12.166,23868.14,522811248,-948525869,149.8,22 -Sun Sep 25 06:54:20 PDT 2011,163,105,12.34,23880.48,522812553,-948526183,149.6,22 -Sun Sep 25 06:54:21 PDT 2011,164,102,12.34,23892.82,522813858,-948526504,149.4,22 -Sun Sep 25 06:54:22 PDT 2011,165,102,12.34,23905.17,522815219,-948526863,149.2,22 -Sun Sep 25 06:54:23 PDT 2011,165,102,12.131,23917.29,522816442,-948527205,149.0,22 -Sun Sep 25 06:54:24 PDT 2011,166,99,11.963,23929.25,522817738,-948527548,148.8,22 -Sun Sep 25 06:54:25 PDT 2011,165,99,11.703,23940.96,522818976,-948527882,148.6,22 -Sun Sep 25 06:54:26 PDT 2011,166,99,11.64,23952.6,522820190,-948528217,148.6,22 -Sun Sep 25 06:54:27 PDT 2011,166,25,11.515,23964.11,522821372,-948528536,148.4,22 -Sun Sep 25 06:54:28 PDT 2011,166,93,11.216,23975.33,522822516,-948528845,148.4,22 -Sun Sep 25 06:54:29 PDT 2011,165,91,10.931,23986.26,522823656,-948529150,148.2,22 -Sun Sep 25 06:54:30 PDT 2011,165,94,10.767,23997.03,522824778,-948529466,148.2,22 -Sun Sep 25 06:54:31 PDT 2011,164,93,10.556,24007.59,522825893,-948529784,148.0,22 -Sun Sep 25 06:54:32 PDT 2011,164,89,10.453,24018.04,522827034,-948530111,148.0,22 -Sun Sep 25 06:54:33 PDT 2011,163,89,10.453,24028.49,522828091,-948530404,148.0,22 -Sun Sep 25 06:54:34 PDT 2011,164,100,10.432,24038.92,522829174,-948530713,148.0,22 -Sun Sep 25 06:54:35 PDT 2011,164,102,10.432,24049.36,522830275,-948531009,147.8,22 -Sun Sep 25 06:54:36 PDT 2011,165,105,10.691,24060.05,522831381,-948531310,147.8,22 -Sun Sep 25 06:54:37 PDT 2011,165,106,10.962,24071.01,522832547,-948531633,147.8,22 -Sun Sep 25 06:54:38 PDT 2011,166,107,11.018,24082.03,522833658,-948531959,147.8,22 -Sun Sep 25 06:54:39 PDT 2011,167,108,11.16,24093.19,522834821,-948532289,147.8,22 -Sun Sep 25 06:54:40 PDT 2011,168,108,11.189,24104.38,522835998,-948532596,147.6,22 -Sun Sep 25 06:54:41 PDT 2011,168,108,11.132,24115.51,522837176,-948532881,147.8,22 -Sun Sep 25 06:54:42 PDT 2011,168,0,10.798,24126.31,522838266,-948533177,148.0,22 -Sun Sep 25 06:54:43 PDT 2011,168,103,10.333,24136.64,522839364,-948533466,148.2,22 -Sun Sep 25 06:54:44 PDT 2011,167,109,9.837,24146.48,522840423,-948533764,148.4,22 -Sun Sep 25 06:54:45 PDT 2011,168,110,9.974,24156.45,522841470,-948534096,148.4,22 -Sun Sep 25 06:54:46 PDT 2011,168,111,10.115,24166.57,522842528,-948534428,148.6,22 -Sun Sep 25 06:54:47 PDT 2011,168,112,10.259,24176.83,522843563,-948534740,148.6,22 -Sun Sep 25 06:54:48 PDT 2011,169,110,10.458,24187.34,522844659,-948535059,148.8,22 -Sun Sep 25 06:54:49 PDT 2011,170,112,10.283,24197.57,522845765,-948535359,148.8,22 -Sun Sep 25 06:54:50 PDT 2011,170,113,10.259,24207.83,522846833,-948535638,148.8,22 -Sun Sep 25 06:54:51 PDT 2011,171,114,10.408,24218.24,522847899,-948535926,149.0,22 -Sun Sep 25 06:54:52 PDT 2011,172,112,10.561,24228.8,522849053,-948536221,149.2,22 -Sun Sep 25 06:54:53 PDT 2011,173,112,10.561,24239.36,522850163,-948536526,149.4,22 -Sun Sep 25 06:54:54 PDT 2011,173,111,10.358,24249.72,522851257,-948536828,149.6,22 -Sun Sep 25 06:54:55 PDT 2011,174,106,10.298,24260.03,522852343,-948537129,149.8,22 -Sun Sep 25 06:54:56 PDT 2011,174,97,10.201,24270.22,522853414,-948537435,150.0,22 -Sun Sep 25 06:54:57 PDT 2011,175,96,10.153,24280.37,522854424,-948537705,150.2,22 -Sun Sep 25 06:54:58 PDT 2011,175,94,10.011,24290.38,522855467,-948537990,150.4,22 -Sun Sep 25 06:54:59 PDT 2011,175,95,9.828,24300.21,522856453,-948538285,150.4,22 -Sun Sep 25 06:55:00 PDT 2011,176,97,9.828,24310.04,522857489,-948538609,150.6,22 -Sun Sep 25 06:55:01 PDT 2011,176,96,9.965,24320.0,522858551,-948538925,150.8,22 -Sun Sep 25 06:55:02 PDT 2011,176,104,10.011,24330.01,522859609,-948539144,150.8,22 -Sun Sep 25 06:55:03 PDT 2011,176,107,10.011,24340.03,522860641,-948539445,150.8,22 -Sun Sep 25 06:55:04 PDT 2011,177,107,9.919,24349.95,522861705,-948539720,151.2,22 -Sun Sep 25 06:55:05 PDT 2011,177,108,9.919,24359.87,522862713,-948540022,151.4,22 -Sun Sep 25 06:55:06 PDT 2011,177,110,9.997,24369.86,522863773,-948540288,151.6,22 -Sun Sep 25 06:55:07 PDT 2011,178,111,9.973,24379.83,522864801,-948540559,151.8,22 -Sun Sep 25 06:55:08 PDT 2011,178,111,10.235,24390.07,522865854,-948540828,152.0,22 -Sun Sep 25 06:55:09 PDT 2011,178,110,10.284,24400.35,522866956,-948541104,152.2,22 -Sun Sep 25 06:55:10 PDT 2011,179,111,10.186,24410.54,522868066,-948541357,152.4,22 -Sun Sep 25 06:55:11 PDT 2011,179,108,10.186,24420.72,522869182,-948541591,152.4,22 -Sun Sep 25 06:55:12 PDT 2011,179,99,10.259,24430.98,522870290,-948541820,152.6,22 -Sun Sep 25 06:55:13 PDT 2011,180,100,10.333,24441.31,522871338,-948542040,152.8,22 -Sun Sep 25 06:55:14 PDT 2011,180,101,10.383,24451.7,522872481,-948542257,152.8,22 -Sun Sep 25 06:55:15 PDT 2011,180,101,10.433,24462.13,522873586,-948542483,153.0,22 -Sun Sep 25 06:55:16 PDT 2011,181,101,10.424,24472.55,522874658,-948542726,153.2,22 -Sun Sep 25 06:55:17 PDT 2011,181,100,10.374,24482.93,522875740,-948542986,153.4,22 -Sun Sep 25 06:55:18 PDT 2011,181,100,10.274,24493.2,522876859,-948543228,153.6,22 -Sun Sep 25 06:55:19 PDT 2011,181,99,10.274,24503.47,522878025,-948543468,153.8,22 -Sun Sep 25 06:55:20 PDT 2011,182,97,10.2,24513.67,522879034,-948543659,154.0,22 -Sun Sep 25 06:55:21 PDT 2011,182,95,10.033,24523.71,522880119,-948543893,154.2,22 -Sun Sep 25 06:55:22 PDT 2011,182,94,9.893,24533.6,522881154,-948544090,154.4,22 -Sun Sep 25 06:55:23 PDT 2011,181,93,9.67,24543.27,522882175,-948544314,154.6,22 -Sun Sep 25 06:55:24 PDT 2011,181,45,9.626,24552.9,522883147,-948544551,154.6,22 -Sun Sep 25 06:55:25 PDT 2011,181,101,9.211,24562.11,522884108,-948544757,154.8,22 -Sun Sep 25 06:55:26 PDT 2011,181,103,9.211,24571.32,522885132,-948544955,155.2,22 -Sun Sep 25 06:55:27 PDT 2011,181,103,9.414,24580.73,522886115,-948545160,155.4,22 -Sun Sep 25 06:55:28 PDT 2011,180,46,9.414,24590.14,522887099,-948545340,155.8,22 -Sun Sep 25 06:55:29 PDT 2011,180,98,9.172,24599.32,522888079,-948545529,156.0,22 -Sun Sep 25 06:55:30 PDT 2011,180,99,8.979,24608.3,522889011,-948545720,156.2,22 -Sun Sep 25 06:55:31 PDT 2011,180,99,9.132,24617.43,522889973,-948545939,156.4,22 -Sun Sep 25 06:55:32 PDT 2011,180,99,9.132,24626.56,522890965,-948546153,156.6,22 -Sun Sep 25 06:55:33 PDT 2011,180,101,9.055,24635.62,522891940,-948546380,156.8,22 -Sun Sep 25 06:55:34 PDT 2011,180,102,9.211,24644.83,522892926,-948546650,156.8,22 -Sun Sep 25 06:55:35 PDT 2011,180,109,9.332,24654.16,522893948,-948546921,157.0,22 -Sun Sep 25 06:55:36 PDT 2011,180,113,9.848,24664.01,522894998,-948547270,157.2,22 -Sun Sep 25 06:55:37 PDT 2011,180,115,10.249,24674.25,522896046,-948547572,157.2,22 -Sun Sep 25 06:55:38 PDT 2011,181,103,10.527,24684.78,522897113,-948547810,157.4,22 -Sun Sep 25 06:55:39 PDT 2011,181,106,10.569,24695.35,522898275,-948548017,157.4,22 -Sun Sep 25 06:55:40 PDT 2011,182,109,10.81,24706.16,522899408,-948548207,157.4,22 -Sun Sep 25 06:55:41 PDT 2011,183,109,10.977,24717.14,522900642,-948548408,157.6,22 -Sun Sep 25 06:55:42 PDT 2011,183,109,11.237,24728.37,522901901,-948548615,157.6,22 -Sun Sep 25 06:55:43 PDT 2011,184,109,11.237,24739.61,522903118,-948548829,157.6,22 -Sun Sep 25 06:55:44 PDT 2011,184,0,10.81,24750.46,522904263,-948549060,157.8,22 -Sun Sep 25 06:55:45 PDT 2011,184,0,10.701,24761.12,522905415,-948549319,157.8,22 -Sun Sep 25 06:55:46 PDT 2011,184,0,10.364,24771.48,522906512,-948549592,157.8,22 -Sun Sep 25 06:55:47 PDT 2011,183,0,10.166,24781.65,522907580,-948549826,157.8,22 -Sun Sep 25 06:55:48 PDT 2011,182,0,9.93,24791.58,522908628,-948550024,158.0,22 -Sun Sep 25 06:55:49 PDT 2011,181,0,9.761,24801.34,522909681,-948550184,158.0,22 -Sun Sep 25 06:55:50 PDT 2011,180,0,9.731,24811.07,522910692,-948550354,158.0,22 -Sun Sep 25 06:55:51 PDT 2011,180,88,9.54,24820.61,522911681,-948550510,158.0,22 -Sun Sep 25 06:55:52 PDT 2011,179,96,9.54,24830.15,522912734,-948550741,158.0,22 -Sun Sep 25 06:55:53 PDT 2011,178,99,9.738,24839.89,522913808,-948550979,158.0,22 -Sun Sep 25 06:55:54 PDT 2011,178,91,9.945,24849.83,522914894,-948551208,158.0,22 -Sun Sep 25 06:55:55 PDT 2011,178,90,10.136,24859.97,522915991,-948551453,158.0,22 -Sun Sep 25 06:55:56 PDT 2011,177,92,10.284,24870.25,522917114,-948551686,158.0,22 -Sun Sep 25 06:55:57 PDT 2011,176,92,10.542,24880.8,522918286,-948551898,158.0,22 -Sun Sep 25 06:55:58 PDT 2011,176,27,10.542,24891.34,522919429,-948552125,158.0,22 -Sun Sep 25 06:55:59 PDT 2011,176,93,10.583,24901.92,522920533,-948552392,158.2,22 -Sun Sep 25 06:56:00 PDT 2011,175,94,10.636,24912.56,522921697,-948552632,158.2,22 -Sun Sep 25 06:56:01 PDT 2011,175,94,10.854,24923.41,522922886,-948552867,158.2,22 -Sun Sep 25 06:56:02 PDT 2011,175,94,11.024,24934.44,522924070,-948553086,158.2,22 -Sun Sep 25 06:56:03 PDT 2011,175,0,10.91,24945.35,522925227,-948553315,158.2,22 -Sun Sep 25 06:56:04 PDT 2011,174,0,10.91,24956.26,522926411,-948553562,158.2,22 -Sun Sep 25 06:56:05 PDT 2011,174,0,10.91,24967.17,522927578,-948553842,158.2,22 -Sun Sep 25 06:56:06 PDT 2011,174,21,10.854,24978.12,522928752,-948554113,158.2,22 -Sun Sep 25 06:56:07 PDT 2011,173,94,10.854,24989.96,522930033,-948554403,158.2,22 -Sun Sep 25 06:56:08 PDT 2011,173,94,10.707,25003.82,522931551,-948554697,158.2,22 -Sun Sep 25 06:56:09 PDT 2011,173,94,10.707,25010.3,522932258,-948554838,158.2,22 -Sun Sep 25 06:56:10 PDT 2011,173,96,10.873,25021.3,522933461,-948555074,158.2,22 -Sun Sep 25 06:56:11 PDT 2011,173,97,11.015,25032.31,522934613,-948555319,158.2,22 -Sun Sep 25 06:56:12 PDT 2011,174,97,11.161,25043.35,522935775,-948555594,158.2,22 -Sun Sep 25 06:56:13 PDT 2011,174,97,11.044,25054.39,522936950,-948555838,158.2,22 -Sun Sep 25 06:56:14 PDT 2011,174,0,10.735,25065.13,522938114,-948556094,158.2,22 -Sun Sep 25 06:56:15 PDT 2011,174,0,10.468,25075.6,522939217,-948556310,158.2,22 -Sun Sep 25 06:56:16 PDT 2011,173,0,10.315,25085.91,522940328,-948556502,158.2,22 -Sun Sep 25 06:56:17 PDT 2011,172,97,10.24,25096.18,522941395,-948556678,158.2,22 -Sun Sep 25 06:56:18 PDT 2011,172,103,10.044,25106.2,522942490,-948556869,158.2,22 -Sun Sep 25 06:56:19 PDT 2011,171,104,10.376,25116.57,522943631,-948557048,158.2,22 -Sun Sep 25 06:56:20 PDT 2011,172,105,10.531,25127.11,522944748,-948557256,158.2,22 -Sun Sep 25 06:56:21 PDT 2011,172,106,10.638,25137.74,522945936,-948557460,158.2,22 -Sun Sep 25 06:56:22 PDT 2011,172,106,10.746,25148.49,522947134,-948557704,158.2,22 -Sun Sep 25 06:56:23 PDT 2011,172,106,10.719,25159.21,522948283,-948557960,158.2,22 -Sun Sep 25 06:56:24 PDT 2011,172,105,10.801,25170.01,522949437,-948558228,158.2,22 -Sun Sep 25 06:56:25 PDT 2011,173,105,10.746,25180.76,522950581,-948558497,158.2,22 -Sun Sep 25 06:56:26 PDT 2011,173,105,10.531,25191.29,522951673,-948558738,158.2,22 -Sun Sep 25 06:56:27 PDT 2011,172,0,10.126,25201.41,522952759,-948558984,158.2,22 -Sun Sep 25 06:56:28 PDT 2011,172,0,9.706,25211.12,522953838,-948559209,158.2,22 -Sun Sep 25 06:56:29 PDT 2011,171,98,9.361,25220.48,522954811,-948559440,158.2,22 -Sun Sep 25 06:56:30 PDT 2011,170,101,9.149,25229.63,522955805,-948559672,158.2,22 -Sun Sep 25 06:56:31 PDT 2011,171,99,9.11,25238.74,522956842,-948559873,158.2,22 -Sun Sep 25 06:56:32 PDT 2011,171,97,8.993,25247.73,522957746,-948560083,158.2,22 -Sun Sep 25 06:56:33 PDT 2011,172,96,8.917,25256.65,522958694,-948560293,158.2,22 -Sun Sep 25 06:56:34 PDT 2011,172,101,8.769,25265.42,522959674,-948560449,158.2,22 -Sun Sep 25 06:56:35 PDT 2011,172,104,8.556,25273.97,522960593,-948560647,158.2,22 -Sun Sep 25 06:56:36 PDT 2011,172,106,8.454,25282.43,522961454,-948560827,158.4,22 -Sun Sep 25 06:56:37 PDT 2011,173,109,8.591,25291.02,522962416,-948561025,158.6,22 -Sun Sep 25 06:56:38 PDT 2011,173,110,8.843,25299.86,522963380,-948561204,158.8,22 -Sun Sep 25 06:56:39 PDT 2011,174,109,9.07,25308.93,522964355,-948561361,159.0,22 -Sun Sep 25 06:56:40 PDT 2011,175,109,8.993,25317.93,522965324,-948561563,159.2,22 -Sun Sep 25 06:56:41 PDT 2011,175,108,8.955,25326.88,522966305,-948561749,159.4,22 -Sun Sep 25 06:56:42 PDT 2011,176,104,8.88,25335.76,522967261,-948561924,159.4,22 -Sun Sep 25 06:56:43 PDT 2011,176,103,8.697,25344.46,522968156,-948562110,159.8,22 -Sun Sep 25 06:56:44 PDT 2011,177,102,8.454,25352.91,522969084,-948562236,160.0,22 -Sun Sep 25 06:56:45 PDT 2011,177,100,8.42,25361.33,522969977,-948562387,160.4,22 -Sun Sep 25 06:56:46 PDT 2011,177,98,8.288,25369.62,522970831,-948562577,160.6,22 -Sun Sep 25 06:56:47 PDT 2011,178,97,8.097,25377.72,522971629,-948562877,160.8,22 -Sun Sep 25 06:56:48 PDT 2011,177,97,7.975,25385.69,522972495,-948563110,161.0,22 -Sun Sep 25 06:56:49 PDT 2011,177,97,7.77,25393.46,522973268,-948563345,161.2,22 -Sun Sep 25 06:56:50 PDT 2011,177,0,7.389,25400.87,522974088,-948563579,161.4,22 -Sun Sep 25 06:56:51 PDT 2011,176,0,7.164,25408.02,522974850,-948563754,161.4,22 -Sun Sep 25 06:56:52 PDT 2011,176,0,6.862,25414.88,522975593,-948563884,161.6,22 -Sun Sep 25 06:56:53 PDT 2011,174,0,6.667,25421.55,522976309,-948564009,161.8,22 -Sun Sep 25 06:56:54 PDT 2011,173,0,6.366,25427.91,522976960,-948564121,162.0,22 -Sun Sep 25 06:56:55 PDT 2011,172,0,6.179,25434.09,522977607,-948564248,162.4,22 -Sun Sep 25 06:56:56 PDT 2011,171,0,5.953,25440.04,522978214,-948564377,162.6,22 -Sun Sep 25 06:56:57 PDT 2011,170,0,5.712,25445.76,522978803,-948564507,162.8,22 -Sun Sep 25 06:56:58 PDT 2011,169,0,5.532,25451.29,522979347,-948564588,163.0,22 -Sun Sep 25 06:56:59 PDT 2011,168,0,5.105,25456.39,522979893,-948564706,163.2,22 -Sun Sep 25 06:57:00 PDT 2011,167,0,4.926,25461.32,522980399,-948564810,163.4,22 -Sun Sep 25 06:57:01 PDT 2011,166,0,4.749,25466.07,522980872,-948564949,163.4,22 -Sun Sep 25 06:57:02 PDT 2011,165,0,4.545,25470.61,522981334,-948565035,163.6,22 -Sun Sep 25 06:57:03 PDT 2011,164,0,4.357,25474.97,522981770,-948565153,163.8,22 -Sun Sep 25 06:57:04 PDT 2011,163,0,4.08,25479.05,522982165,-948565208,163.8,22 -Sun Sep 25 06:57:05 PDT 2011,163,0,3.815,25482.86,522982567,-948565254,164.0,22 -Sun Sep 25 06:57:06 PDT 2011,162,0,3.747,25486.62,522982969,-948565308,164.0,22 -Sun Sep 25 06:57:07 PDT 2011,161,0,3.701,25490.31,522983312,-948565348,164.2,22 -Sun Sep 25 06:57:08 PDT 2011,160,0,3.493,25493.8,522983654,-948565441,164.2,22 -Sun Sep 25 06:57:09 PDT 2011,157,0,3.187,25496.99,522983934,-948565443,164.2,22 -Sun Sep 25 06:57:10 PDT 2011,155,0,2.997,25499.99,522984271,-948565498,164.4,22 -Sun Sep 25 06:57:11 PDT 2011,154,0,2.915,25502.9,522984510,-948565514,164.4,22 -Sun Sep 25 06:57:12 PDT 2011,153,0,2.665,25505.57,522984754,-948565555,164.4,22 -Sun Sep 25 06:57:13 PDT 2011,153,0,2.217,25507.78,522984961,-948565573,164.4,22 -Sun Sep 25 06:57:14 PDT 2011,152,0,2.217,25510.0,522985137,-948565609,164.4,22 -Sun Sep 25 06:57:15 PDT 2011,152,0,2.028,25512.03,522985315,-948565631,164.6,22 -Sun Sep 25 06:57:16 PDT 2011,152,0,1.822,25513.85,522985388,-948565653,164.6,22 -Sun Sep 25 06:57:17 PDT 2011,152,0,1.41,25515.26,522985452,-948565664,164.6,22 -Sun Sep 25 06:57:21 PDT 2011,152,25,1.432,25515.26,522985986,-948565748,164.6,22 -Sun Sep 25 06:57:22 PDT 2011,153,25,2.152,25517.48,522986295,-948565776,164.6,22 -Sun Sep 25 06:57:23 PDT 2011,154,29,2.803,25520.2,522986617,-948565845,164.6,22 -Sun Sep 25 06:57:24 PDT 2011,156,46,3.323,25523.92,522987106,-948566003,164.8,22 -Sun Sep 25 06:57:25 PDT 2011,157,53,3.767,25527.23,522987551,-948566117,164.8,22 -Sun Sep 25 06:57:26 PDT 2011,158,59,4.477,25531.71,522988110,-948566248,164.8,22 -Sun Sep 25 06:57:27 PDT 2011,159,66,4.836,25536.55,522988672,-948566479,164.8,22 -Sun Sep 25 06:57:28 PDT 2011,160,37,5.35,25541.89,522989405,-948566657,164.8,22 -Sun Sep 25 06:57:29 PDT 2011,161,37,6.161,25548.05,522990033,-948566805,164.8,22 -Sun Sep 25 06:57:30 PDT 2011,162,37,6.216,25554.27,522990700,-948567012,164.8,22 -Sun Sep 25 06:57:31 PDT 2011,162,22,6.038,25560.31,522991333,-948567225,164.8,22 -Sun Sep 25 06:57:32 PDT 2011,161,75,5.681,25565.99,522991941,-948567449,164.8,22 -Sun Sep 25 06:57:33 PDT 2011,161,83,5.758,25571.75,522992556,-948567655,164.8,22 -Sun Sep 25 06:57:34 PDT 2011,161,85,6.038,25577.79,522993202,-948567831,164.8,22 -Sun Sep 25 06:57:35 PDT 2011,160,86,6.271,25584.06,522993878,-948567954,164.8,22 -Sun Sep 25 06:57:36 PDT 2011,161,91,6.503,25590.56,522994576,-948568128,164.8,22 -Sun Sep 25 06:57:37 PDT 2011,161,94,6.667,25597.23,522995289,-948568314,164.8,22 -Sun Sep 25 06:57:38 PDT 2011,161,100,7.021,25604.25,522996096,-948568520,164.8,22 -Sun Sep 25 06:57:39 PDT 2011,161,100,7.468,25611.72,522996912,-948568714,164.8,22 -Sun Sep 25 06:57:40 PDT 2011,161,94,7.63,25619.35,522997765,-948568922,164.8,22 -Sun Sep 25 06:57:41 PDT 2011,161,97,7.741,25627.09,522998620,-948569109,164.8,22 -Sun Sep 25 06:57:42 PDT 2011,161,97,7.886,25634.98,522999488,-948569313,164.8,22 -Sun Sep 25 06:57:43 PDT 2011,160,97,7.915,25642.89,523000345,-948569516,164.8,22 -Sun Sep 25 06:57:44 PDT 2011,160,0,7.468,25650.36,523001162,-948569751,164.8,22 -Sun Sep 25 06:57:45 PDT 2011,158,0,7.288,25657.65,523001942,-948569976,164.8,22 -Sun Sep 25 06:57:46 PDT 2011,158,89,7.213,25664.86,523002721,-948570201,164.8,22 -Sun Sep 25 06:57:47 PDT 2011,157,94,7.263,25672.12,523003454,-948570446,164.8,22 -Sun Sep 25 06:57:48 PDT 2011,158,95,7.548,25679.67,523004266,-948570673,164.8,22 -Sun Sep 25 06:57:49 PDT 2011,158,96,7.78,25687.45,523005063,-948570908,164.8,22 -Sun Sep 25 06:57:50 PDT 2011,159,96,7.867,25695.32,523005918,-948571131,164.8,22 -Sun Sep 25 06:57:51 PDT 2011,159,96,7.896,25703.22,523006795,-948571380,164.8,22 -Sun Sep 25 06:57:52 PDT 2011,160,96,7.78,25710.99,523007655,-948571604,164.8,22 -Sun Sep 25 06:57:53 PDT 2011,160,97,7.867,25718.86,523008511,-948571813,164.8,22 -Sun Sep 25 06:57:54 PDT 2011,160,100,7.926,25726.79,523009382,-948571990,164.8,22 -Sun Sep 25 06:57:55 PDT 2011,160,101,8.172,25734.96,523010269,-948572168,164.8,22 -Sun Sep 25 06:57:56 PDT 2011,161,94,8.3,25743.26,523011163,-948572344,164.8,22 -Sun Sep 25 06:57:57 PDT 2011,161,94,8.333,25751.59,523012073,-948572524,164.8,22 -Sun Sep 25 06:57:58 PDT 2011,160,31,8.203,25759.8,523012934,-948572731,164.8,22 -Sun Sep 25 06:57:59 PDT 2011,160,99,7.986,25767.78,523013800,-948572902,164.8,22 -Sun Sep 25 06:58:00 PDT 2011,160,101,8.047,25775.83,523014695,-948573067,164.8,22 -Sun Sep 25 06:58:01 PDT 2011,159,94,8.236,25784.06,523015574,-948573242,165.0,22 -Sun Sep 25 06:58:02 PDT 2011,160,92,8.3,25792.37,523016471,-948573424,165.2,22 -Sun Sep 25 06:58:03 PDT 2011,160,93,8.333,25800.7,523017377,-948573616,165.4,22 -Sun Sep 25 06:58:04 PDT 2011,160,94,8.467,25809.16,523018301,-948573807,165.6,22 -Sun Sep 25 06:58:05 PDT 2011,160,93,8.501,25817.67,523019205,-948574011,165.6,22 -Sun Sep 25 06:58:06 PDT 2011,161,93,8.467,25826.13,523020147,-948574227,165.8,22 -Sun Sep 25 06:58:07 PDT 2011,161,93,8.433,25834.57,523021074,-948574418,166.0,22 -Sun Sep 25 06:58:08 PDT 2011,160,32,8.4,25842.97,523021958,-948574593,166.0,22 -Sun Sep 25 06:58:09 PDT 2011,160,90,8.14,25851.11,523022830,-948574797,166.2,22 -Sun Sep 25 06:58:10 PDT 2011,160,97,8.109,25859.22,523023708,-948575013,166.2,22 -Sun Sep 25 06:58:11 PDT 2011,160,97,8.14,25867.36,523024559,-948575276,166.2,22 -Sun Sep 25 06:58:12 PDT 2011,160,22,8.047,25876.62,523025560,-948575573,166.4,22 -Sun Sep 25 06:58:13 PDT 2011,160,96,7.867,25883.4,523026261,-948575809,166.4,22 -Sun Sep 25 06:58:14 PDT 2011,160,107,7.53,25890.94,523027090,-948576020,166.4,22 -Sun Sep 25 06:58:15 PDT 2011,160,109,7.896,25898.72,523027952,-948576246,166.4,22 -Sun Sep 25 06:58:16 PDT 2011,160,101,8.14,25906.86,523028820,-948576433,166.6,22 -Sun Sep 25 06:58:17 PDT 2011,160,96,8.203,25915.07,523029670,-948576656,166.6,22 -Sun Sep 25 06:58:18 PDT 2011,160,96,8.268,25923.33,523030570,-948576874,166.6,22 -Sun Sep 25 06:58:19 PDT 2011,160,49,8.236,25931.57,523031437,-948577096,166.6,22 -Sun Sep 25 06:58:20 PDT 2011,161,89,8.047,25939.62,523032345,-948577330,166.6,22 -Sun Sep 25 06:58:21 PDT 2011,161,91,8.109,25947.73,523033208,-948577553,166.6,22 -Sun Sep 25 06:58:22 PDT 2011,161,90,8.236,25955.96,523034083,-948577784,166.8,22 -Sun Sep 25 06:58:23 PDT 2011,161,91,8.172,25964.13,523034944,-948577991,166.8,22 -Sun Sep 25 06:58:24 PDT 2011,161,91,8.268,25972.4,523035845,-948578211,166.8,22 -Sun Sep 25 06:58:25 PDT 2011,162,91,8.236,25980.64,523036740,-948578429,166.8,22 -Sun Sep 25 06:58:26 PDT 2011,161,90,8.14,25988.78,523037643,-948578662,166.8,22 -Sun Sep 25 06:58:27 PDT 2011,161,90,8.236,25997.02,523038522,-948578875,166.8,22 -Sun Sep 25 06:58:28 PDT 2011,161,28,8.239,26005.25,523039408,-948579080,166.8,22 -Sun Sep 25 06:58:29 PDT 2011,161,86,7.991,26013.24,523040244,-948579296,166.8,22 -Sun Sep 25 06:58:30 PDT 2011,160,87,7.872,26021.12,523041103,-948579487,166.8,22 -Sun Sep 25 06:58:31 PDT 2011,160,88,7.901,26029.02,523041944,-948579663,166.8,22 -Sun Sep 25 06:58:32 PDT 2011,160,89,7.931,26036.95,523042780,-948579847,166.8,22 -Sun Sep 25 06:58:33 PDT 2011,160,90,8.082,26045.03,523043650,-948580038,167.0,22 -Sun Sep 25 06:58:34 PDT 2011,160,90,8.144,26053.17,523044523,-948580214,167.2,22 -Sun Sep 25 06:58:35 PDT 2011,160,91,8.207,26061.38,523045390,-948580418,167.4,22 -Sun Sep 25 06:58:36 PDT 2011,160,92,8.304,26069.69,523046290,-948580647,167.6,22 -Sun Sep 25 06:58:37 PDT 2011,160,92,8.337,26078.02,523047186,-948580873,167.8,22 -Sun Sep 25 06:58:38 PDT 2011,160,92,8.37,26086.39,523048092,-948581112,167.8,22 -Sun Sep 25 06:58:39 PDT 2011,159,92,8.37,26094.76,523049003,-948581355,168.0,22 -Sun Sep 25 06:58:40 PDT 2011,160,92,8.37,26103.13,523049907,-948581563,168.0,22 -Sun Sep 25 06:58:41 PDT 2011,159,92,8.341,26111.47,523050799,-948581768,168.2,22 -Sun Sep 25 06:58:42 PDT 2011,160,92,8.341,26119.81,523051701,-948581980,168.2,22 -Sun Sep 25 06:58:43 PDT 2011,160,92,8.374,26128.19,523052581,-948582254,168.4,22 -Sun Sep 25 06:58:44 PDT 2011,160,91,8.374,26136.56,523053479,-948582487,168.4,22 -Sun Sep 25 06:58:45 PDT 2011,160,91,8.308,26144.9,523054375,-948582727,168.4,22 -Sun Sep 25 06:58:46 PDT 2011,161,91,8.308,26153.18,523055264,-948582944,168.6,22 -Sun Sep 25 06:58:47 PDT 2011,160,91,8.276,26161.45,523056139,-948583176,168.6,22 -Sun Sep 25 06:58:48 PDT 2011,161,92,8.276,26169.73,523057043,-948583401,168.6,22 -Sun Sep 25 06:58:49 PDT 2011,160,92,8.341,26178.07,523057930,-948583620,168.6,22 -Sun Sep 25 06:58:50 PDT 2011,160,92,8.407,26186.48,523058838,-948583833,168.6,22 -Sun Sep 25 06:58:51 PDT 2011,160,92,8.374,26194.85,523059730,-948584056,168.8,22 -Sun Sep 25 06:58:52 PDT 2011,159,92,8.308,26203.16,523060603,-948584276,168.8,22 -Sun Sep 25 06:58:53 PDT 2011,159,86,8.024,26211.18,523061395,-948584540,168.8,22 -Sun Sep 25 06:58:54 PDT 2011,159,98,7.33,26218.51,523062207,-948584783,168.8,22 -Sun Sep 25 06:58:55 PDT 2011,159,102,7.66,26226.17,523063054,-948585034,169.0,22 -Sun Sep 25 06:58:56 PDT 2011,160,104,8.304,26234.48,523063920,-948585308,169.2,22 -Sun Sep 25 06:58:57 PDT 2011,160,105,8.606,26243.08,523064789,-948585523,169.4,22 -Sun Sep 25 06:58:58 PDT 2011,161,104,8.641,26251.72,523065733,-948585736,169.6,22 -Sun Sep 25 06:58:59 PDT 2011,161,96,8.784,26260.51,523066690,-948585940,169.8,22 -Sun Sep 25 06:59:00 PDT 2011,162,44,8.784,26269.29,523067635,-948586139,169.8,22 -Sun Sep 25 06:59:01 PDT 2011,162,94,8.606,26277.9,523068580,-948586345,170.0,22 -Sun Sep 25 06:59:02 PDT 2011,163,93,8.641,26286.54,523069516,-948586564,170.0,22 -Sun Sep 25 06:59:03 PDT 2011,163,94,8.537,26295.07,523070437,-948586788,170.2,22 -Sun Sep 25 06:59:04 PDT 2011,162,95,8.571,26303.64,523071377,-948587001,170.2,22 -Sun Sep 25 06:59:05 PDT 2011,162,96,8.641,26312.29,523072281,-948587227,170.4,22 -Sun Sep 25 06:59:06 PDT 2011,163,97,8.822,26321.11,523073236,-948587449,170.4,22 -Sun Sep 25 06:59:07 PDT 2011,162,97,8.97,26330.08,523074181,-948587691,170.4,22 -Sun Sep 25 06:59:08 PDT 2011,163,98,8.859,26338.94,523075127,-948587920,170.6,22 -Sun Sep 25 06:59:09 PDT 2011,163,100,9.008,26347.95,523076098,-948588149,170.6,22 -Sun Sep 25 06:59:10 PDT 2011,163,101,9.124,26357.07,523077072,-948588395,170.6,22 -Sun Sep 25 06:59:11 PDT 2011,163,102,9.202,26366.27,523078048,-948588637,170.6,22 -Sun Sep 25 06:59:12 PDT 2011,163,103,9.323,26375.59,523079048,-948588918,170.8,22 -Sun Sep 25 06:59:13 PDT 2011,163,103,9.447,26385.04,523080043,-948589237,170.8,22 -Sun Sep 25 06:59:14 PDT 2011,164,103,9.447,26394.49,523081025,-948589614,170.8,22 -Sun Sep 25 06:59:15 PDT 2011,164,95,9.489,26403.97,523082023,-948589957,170.8,22 -Sun Sep 25 06:59:16 PDT 2011,165,91,9.405,26413.38,523082996,-948590299,170.8,22 -Sun Sep 25 06:59:17 PDT 2011,164,91,9.242,26422.62,523083977,-948590662,170.8,22 -Sun Sep 25 06:59:18 PDT 2011,164,93,9.323,26431.97,523084960,-948590988,170.8,22 -Sun Sep 25 06:59:19 PDT 2011,163,93,9.531,26441.47,523085978,-948591301,170.8,22 -Sun Sep 25 06:59:20 PDT 2011,163,93,9.574,26451.05,523086987,-948591541,171.0,22 -Sun Sep 25 06:59:21 PDT 2011,163,93,9.617,26460.67,523088000,-948591761,171.2,22 -Sun Sep 25 06:59:22 PDT 2011,163,0,9.66,26470.33,523089047,-948592000,171.4,22 -Sun Sep 25 06:59:23 PDT 2011,162,0,9.617,26479.94,523090062,-948592225,171.6,22 -Sun Sep 25 06:59:24 PDT 2011,161,0,9.704,26489.65,523091132,-948592450,171.6,22 -Sun Sep 25 06:59:25 PDT 2011,161,89,9.704,26499.35,523092223,-948592686,171.8,22 -Sun Sep 25 06:59:26 PDT 2011,161,91,10.094,26509.44,523093305,-948592933,172.0,22 -Sun Sep 25 06:59:27 PDT 2011,161,93,10.622,26520.06,523094469,-948593209,172.0,22 -Sun Sep 25 06:59:28 PDT 2011,161,97,10.948,26531.01,523095663,-948593496,172.2,22 -Sun Sep 25 06:59:29 PDT 2011,161,97,11.12,26542.13,523096851,-948593750,172.2,22 -Sun Sep 25 06:59:30 PDT 2011,161,97,11.417,26553.55,523098099,-948594017,172.4,22 -Sun Sep 25 06:59:31 PDT 2011,162,97,11.478,26565.03,523099338,-948594252,172.4,22 -Sun Sep 25 06:59:32 PDT 2011,161,0,11.417,26576.45,523100592,-948594510,172.2,22 -Sun Sep 25 06:59:33 PDT 2011,161,0,11.433,26587.88,523101817,-948594767,172.2,22 -Sun Sep 25 06:59:34 PDT 2011,161,0,11.194,26599.07,523103013,-948595030,172.0,22 -Sun Sep 25 06:59:35 PDT 2011,160,0,10.964,26610.04,523104181,-948595282,172.0,22 -Sun Sep 25 06:59:36 PDT 2011,159,97,10.717,26620.75,523105331,-948595594,171.8,22 -Sun Sep 25 06:59:37 PDT 2011,159,100,10.532,26631.29,523106422,-948595878,171.8,22 -Sun Sep 25 06:59:38 PDT 2011,158,98,10.304,26641.59,523107493,-948596148,171.8,22 -Sun Sep 25 06:59:39 PDT 2011,158,95,10.133,26651.72,523108556,-948596400,171.6,22 -Sun Sep 25 06:59:40 PDT 2011,158,94,9.853,26661.58,523109588,-948596601,171.6,22 -Sun Sep 25 06:59:41 PDT 2011,159,93,9.631,26671.21,523110607,-948596823,171.6,22 -Sun Sep 25 06:59:42 PDT 2011,159,92,9.631,26680.84,523111607,-948597042,171.6,22 -Sun Sep 25 06:59:43 PDT 2011,159,92,9.587,26690.43,523112628,-948597237,171.4,22 -Sun Sep 25 06:59:44 PDT 2011,159,105,9.496,26699.92,523113597,-948597451,171.4,22 -Sun Sep 25 06:59:45 PDT 2011,159,103,9.539,26709.46,523114652,-948597665,171.4,22 -Sun Sep 25 06:59:46 PDT 2011,159,103,9.624,26719.08,523115634,-948597881,171.4,22 -Sun Sep 25 06:59:47 PDT 2011,160,103,9.581,26728.66,523116626,-948598104,171.4,22 -Sun Sep 25 06:59:48 PDT 2011,160,103,9.331,26737.99,523117626,-948598326,171.4,22 -Sun Sep 25 06:59:49 PDT 2011,160,97,8.999,26746.99,523118575,-948598528,171.6,22 -Sun Sep 25 06:59:50 PDT 2011,160,98,8.967,26755.96,523119506,-948598752,171.6,22 -Sun Sep 25 06:59:51 PDT 2011,160,98,9.018,26764.98,523120469,-948598986,171.8,22 -Sun Sep 25 06:59:52 PDT 2011,160,100,9.056,26774.03,523121398,-948599192,172.0,22 -Sun Sep 25 06:59:53 PDT 2011,160,100,9.133,26783.17,523122339,-948599409,172.2,22 -Sun Sep 25 06:59:54 PDT 2011,160,101,9.211,26792.38,523123336,-948599632,172.2,22 -Sun Sep 25 06:59:55 PDT 2011,161,101,9.291,26801.67,523124319,-948599839,172.4,22 -Sun Sep 25 06:59:56 PDT 2011,161,101,9.327,26811.03,523125315,-948600057,172.4,22 -Sun Sep 25 06:59:57 PDT 2011,162,26,9.327,26820.32,523126267,-948600260,172.6,22 -Sun Sep 25 06:59:58 PDT 2011,162,101,9.128,26829.45,523127262,-948600467,172.6,22 -Sun Sep 25 06:59:59 PDT 2011,162,103,9.246,26838.7,523128229,-948600679,172.6,22 -Sun Sep 25 07:00:00 PDT 2011,162,103,9.534,26848.23,523129267,-948600944,172.8,22 -Sun Sep 25 07:00:01 PDT 2011,163,96,9.84,26858.07,523130311,-948601212,172.8,22 -Sun Sep 25 07:00:02 PDT 2011,163,96,9.978,26868.05,523131375,-948601444,172.8,22 -Sun Sep 25 07:00:03 PDT 2011,162,96,10.119,26878.17,523132467,-948601671,172.8,22 -Sun Sep 25 07:00:04 PDT 2011,161,0,9.978,26888.15,523133518,-948601923,173.0,22 -Sun Sep 25 07:00:05 PDT 2011,161,93,9.751,26897.9,523134565,-948602150,173.0,22 -Sun Sep 25 07:00:06 PDT 2011,160,93,9.663,26907.56,523135587,-948602389,173.0,22 -Sun Sep 25 07:00:07 PDT 2011,160,93,9.568,26917.13,523136615,-948602634,173.0,22 -Sun Sep 25 07:00:08 PDT 2011,160,93,9.568,26926.7,523137589,-948602865,173.0,22 -Sun Sep 25 07:00:09 PDT 2011,159,98,9.298,26936.0,523138571,-948603066,173.0,22 -Sun Sep 25 07:00:10 PDT 2011,159,99,9.12,26945.12,523139548,-948603270,173.0,22 -Sun Sep 25 07:00:11 PDT 2011,158,98,9.159,26954.27,523140488,-948603485,173.0,22 -Sun Sep 25 07:00:12 PDT 2011,158,98,9.081,26963.35,523141455,-948603684,173.2,22 -Sun Sep 25 07:00:13 PDT 2011,158,36,9.081,26972.43,523142404,-948603869,173.2,22 -Sun Sep 25 07:00:14 PDT 2011,158,98,9.005,26981.44,523143362,-948604034,173.2,22 -Sun Sep 25 07:00:15 PDT 2011,157,98,8.967,26990.41,523144324,-948604247,173.2,22 -Sun Sep 25 07:00:16 PDT 2011,157,98,8.93,27000.04,523145360,-948604497,173.2,22 -Sun Sep 25 07:00:17 PDT 2011,155,0,8.275,27010.73,523146487,-948604832,173.2,22 -Sun Sep 25 07:00:18 PDT 2011,154,0,8.275,27016.01,523147035,-948604952,173.2,22 -Sun Sep 25 07:00:19 PDT 2011,153,0,7.827,27023.81,523147815,-948605136,173.2,22 -Sun Sep 25 07:00:20 PDT 2011,152,0,7.447,27031.22,523148563,-948605289,173.2,22 -Sun Sep 25 07:00:21 PDT 2011,150,0,6.965,27038.18,523149254,-948605432,173.2,22 -Sun Sep 25 07:00:22 PDT 2011,150,75,6.643,27044.82,523149927,-948605600,173.2,22 -Sun Sep 25 07:00:23 PDT 2011,149,85,6.562,27051.39,523150567,-948605784,173.2,22 -Sun Sep 25 07:00:24 PDT 2011,150,85,6.79,27058.18,523151253,-948606043,173.2,22 -Sun Sep 25 07:00:25 PDT 2011,151,85,6.705,27064.88,523151902,-948606182,173.2,22 -Sun Sep 25 07:00:26 PDT 2011,151,0,6.238,27071.12,523152506,-948606328,173.2,22 -Sun Sep 25 07:00:27 PDT 2011,152,0,5.913,27077.03,523153087,-948606439,173.2,22 -Sun Sep 25 07:00:28 PDT 2011,152,66,4.994,27082.03,523153583,-948606519,173.2,22 -Sun Sep 25 07:00:29 PDT 2011,152,68,4.73,27086.76,523154080,-948606563,173.2,22 -Sun Sep 25 07:00:30 PDT 2011,152,70,4.762,27091.52,523154580,-948606619,173.2,22 -Sun Sep 25 07:00:31 PDT 2011,152,71,4.959,27096.48,523155064,-948606681,173.2,22 -Sun Sep 25 07:00:32 PDT 2011,153,66,4.982,27101.46,523155575,-948606754,173.2,22 -Sun Sep 25 07:00:33 PDT 2011,153,68,5.112,27106.57,523156118,-948606842,173.2,22 -Sun Sep 25 07:00:34 PDT 2011,154,70,5.1,27111.67,523156687,-948606893,173.2,22 -Sun Sep 25 07:00:35 PDT 2011,155,73,5.354,27117.02,523157246,-948606989,173.2,22 -Sun Sep 25 07:00:36 PDT 2011,155,75,5.619,27122.64,523157880,-948607150,173.2,22 -Sun Sep 25 07:00:37 PDT 2011,155,79,5.77,27128.41,523158489,-948607366,173.4,22 -Sun Sep 25 07:00:38 PDT 2011,156,82,5.973,27134.38,523159122,-948607572,173.6,22 -Sun Sep 25 07:00:39 PDT 2011,157,86,6.251,27140.64,523159803,-948607819,173.8,22 -Sun Sep 25 07:00:40 PDT 2011,157,89,6.496,27147.13,523160507,-948608000,174.0,22 -Sun Sep 25 07:00:41 PDT 2011,158,93,6.699,27153.83,523161231,-948608146,174.2,22 -Sun Sep 25 07:00:42 PDT 2011,158,95,6.936,27160.77,523162003,-948608275,174.2,22 -Sun Sep 25 07:00:43 PDT 2011,159,98,7.24,27168.01,523162787,-948608433,174.4,22 -Sun Sep 25 07:00:44 PDT 2011,160,101,7.364,27175.37,523163587,-948608627,174.4,22 -Sun Sep 25 07:00:45 PDT 2011,161,94,7.625,27183.0,523164427,-948608813,174.6,22 -Sun Sep 25 07:00:46 PDT 2011,161,96,7.848,27190.84,523165295,-948609009,174.6,22 -Sun Sep 25 07:00:47 PDT 2011,161,96,8.023,27198.87,523166133,-948609188,174.8,22 -Sun Sep 25 07:00:48 PDT 2011,162,96,8.023,27206.89,523167006,-948609417,174.8,22 -Sun Sep 25 07:00:49 PDT 2011,162,0,7.935,27214.83,523167852,-948609652,174.8,22 -Sun Sep 25 07:00:50 PDT 2011,161,0,7.791,27222.62,523168679,-948609862,175.0,22 -Sun Sep 25 07:00:51 PDT 2011,161,0,7.707,27230.32,523169467,-948610052,175.0,22 -Sun Sep 25 07:00:52 PDT 2011,160,0,7.571,27237.89,523170272,-948610243,175.0,22 -Sun Sep 25 07:00:53 PDT 2011,159,0,7.353,27245.25,523171048,-948610400,175.0,22 -Sun Sep 25 07:00:54 PDT 2011,159,0,7.278,27252.53,523171784,-948610556,175.2,22 -Sun Sep 25 07:00:55 PDT 2011,158,0,7.157,27259.68,523172525,-948610721,175.2,22 -Sun Sep 25 07:00:56 PDT 2011,158,0,7.278,27267.0,523173311,-948610913,175.2,22 -Sun Sep 25 07:00:57 PDT 2011,158,23,7.11,27274.07,523174055,-948611093,175.2,22 -Sun Sep 25 07:00:58 PDT 2011,157,23,7.017,27281.09,523174775,-948611265,175.2,22 -Sun Sep 25 07:00:59 PDT 2011,157,23,6.775,27287.86,523175469,-948611354,175.2,22 -Sun Sep 25 07:01:00 PDT 2011,156,76,6.355,27294.22,523176142,-948611491,175.4,22 -Sun Sep 25 07:01:01 PDT 2011,156,79,6.043,27300.26,523176769,-948611603,175.6,22 -Sun Sep 25 07:01:02 PDT 2011,156,47,6.001,27306.26,523177382,-948611732,175.8,22 -Sun Sep 25 07:01:03 PDT 2011,156,77,6.069,27312.33,523177998,-948611855,176.0,22 -Sun Sep 25 07:01:04 PDT 2011,156,77,5.918,27318.25,523178611,-948611979,176.2,22 -Sun Sep 25 07:01:05 PDT 2011,156,77,5.918,27324.17,523179208,-948612126,176.4,22 -Sun Sep 25 07:01:06 PDT 2011,155,33,5.902,27330.07,523179806,-948612261,176.4,22 -Sun Sep 25 07:01:07 PDT 2011,155,33,5.596,27335.67,523180397,-948612379,176.6,22 -Sun Sep 25 07:01:08 PDT 2011,155,33,5.51,27341.18,523180953,-948612501,176.6,22 -Sun Sep 25 07:01:09 PDT 2011,154,0,5.129,27346.3,523181448,-948612606,176.8,22 -Sun Sep 25 07:01:10 PDT 2011,154,0,4.739,27351.04,523181936,-948612693,176.8,22 -Sun Sep 25 07:01:11 PDT 2011,153,0,4.568,27355.61,523182404,-948612801,177.0,22 -Sun Sep 25 07:01:12 PDT 2011,153,29,4.54,27360.15,523182844,-948612911,177.0,22 -Sun Sep 25 07:01:13 PDT 2011,153,61,4.401,27364.55,523183274,-948613037,177.0,22 -Sun Sep 25 07:01:14 PDT 2011,152,61,4.455,27369.01,523183707,-948613193,177.0,22 -Sun Sep 25 07:01:15 PDT 2011,152,28,4.401,27373.41,523184139,-948613285,177.2,22 -Sun Sep 25 07:01:16 PDT 2011,151,28,4.261,27377.67,523184573,-948613367,177.2,22 -Sun Sep 25 07:01:17 PDT 2011,151,28,3.864,27381.53,523184942,-948613419,177.2,22 -Sun Sep 25 07:01:18 PDT 2011,150,0,3.661,27385.19,523185318,-948613437,177.2,22 -Sun Sep 25 07:01:19 PDT 2011,149,0,3.444,27388.63,523185690,-948613472,177.2,22 -Sun Sep 25 07:01:20 PDT 2011,149,55,3.39,27392.03,523186059,-948613517,177.4,22 -Sun Sep 25 07:01:21 PDT 2011,150,63,3.606,27395.63,523186489,-948613605,177.4,22 -Sun Sep 25 07:01:22 PDT 2011,150,71,4.578,27400.21,523186990,-948613670,177.4,22 -Sun Sep 25 07:01:23 PDT 2011,152,51,5.098,27405.31,523187547,-948613789,177.4,22 -Sun Sep 25 07:01:24 PDT 2011,153,89,5.86,27411.17,523188181,-948613990,177.4,22 -Sun Sep 25 07:01:25 PDT 2011,153,94,5.844,27417.01,523188872,-948614162,177.4,22 -Sun Sep 25 07:01:26 PDT 2011,155,99,6.534,27423.54,523189598,-948614339,177.4,22 -Sun Sep 25 07:01:27 PDT 2011,156,99,6.956,27430.5,523190342,-948614526,177.4,22 -Sun Sep 25 07:01:28 PDT 2011,157,92,6.934,27437.43,523191101,-948614688,177.4,22 -Sun Sep 25 07:01:29 PDT 2011,158,96,7.001,27444.43,523191875,-948614848,177.4,22 -Sun Sep 25 07:01:30 PDT 2011,158,97,7.164,27451.6,523192677,-948615054,177.4,22 -Sun Sep 25 07:01:31 PDT 2011,159,99,7.412,27459.01,523193491,-948615265,177.4,22 -Sun Sep 25 07:01:32 PDT 2011,160,101,7.49,27466.5,523194308,-948615470,177.8,22 -Sun Sep 25 07:01:33 PDT 2011,161,102,7.705,27474.21,523195117,-948615660,178.0,22 -Sun Sep 25 07:01:34 PDT 2011,161,107,7.818,27482.02,523195989,-948615868,178.2,22 -Sun Sep 25 07:01:35 PDT 2011,162,108,7.993,27490.02,523196860,-948616060,178.2,22 -Sun Sep 25 07:01:36 PDT 2011,162,99,8.207,27498.22,523197755,-948616284,178.4,22 -Sun Sep 25 07:01:37 PDT 2011,163,99,8.207,27506.43,523198636,-948616489,178.6,22 -Sun Sep 25 07:01:38 PDT 2011,164,99,8.053,27514.48,523199501,-948616689,178.6,22 -Sun Sep 25 07:01:39 PDT 2011,164,0,7.846,27522.33,523200339,-948616866,178.8,22 -Sun Sep 25 07:01:40 PDT 2011,164,0,7.678,27530.55,523201237,-948617024,178.8,22 -Sun Sep 25 07:01:41 PDT 2011,163,0,7.49,27538.04,523202029,-948617113,179.0,22 -Sun Sep 25 07:01:42 PDT 2011,163,85,7.286,27545.36,523202789,-948617149,179.0,22 -Sun Sep 25 07:01:43 PDT 2011,162,88,7.116,27552.53,523203567,-948617195,179.0,22 -Sun Sep 25 07:01:44 PDT 2011,162,88,7.188,27559.74,523204341,-948617262,179.2,22 -Sun Sep 25 07:01:45 PDT 2011,162,89,7.286,27567.0,523205103,-948617370,179.2,22 -Sun Sep 25 07:01:46 PDT 2011,162,89,7.49,27574.5,523205779,-948617556,179.2,22 -Sun Sep 25 07:01:47 PDT 2011,162,89,6.3,27580.8,523206273,-948617640,179.4,22 -Sun Sep 25 07:01:48 PDT 2011,161,0,4.528,27585.32,523206562,-948617736,179.4,22 -Sun Sep 25 07:01:49 PDT 2011,161,0,0.0,27585.32,523206790,-948617809,179.4,22 -Sun Sep 25 07:03:20 PDT 2011,133,36,0.0,27585.32,523207232,-948617690,181.8,22 -Sun Sep 25 07:03:21 PDT 2011,134,36,1.821,27587.18,523207590,-948617765,181.8,22 -Sun Sep 25 07:03:22 PDT 2011,135,47,1.821,27588.97,523208044,-948617906,181.8,22 -Sun Sep 25 07:03:23 PDT 2011,138,62,3.981,27593.43,523208622,-948618144,181.8,22 -Sun Sep 25 07:03:24 PDT 2011,139,62,4.879,27597.74,523209173,-948618375,181.8,22 -Sun Sep 25 07:03:25 PDT 2011,141,74,5.521,27603.24,523209812,-948618597,181.8,22 -Sun Sep 25 07:03:26 PDT 2011,143,74,5.95,27609.19,523210489,-948618802,181.8,22 -Sun Sep 25 07:03:27 PDT 2011,144,33,6.471,27615.66,523211166,-948619049,181.8,22 -Sun Sep 25 07:03:28 PDT 2011,146,33,6.551,27622.21,523211881,-948619256,181.8,22 -Sun Sep 25 07:03:29 PDT 2011,147,84,6.337,27628.55,523212592,-948619501,181.8,22 -Sun Sep 25 07:03:30 PDT 2011,147,89,6.337,27634.88,523213331,-948619764,181.8,22 -Sun Sep 25 07:03:31 PDT 2011,147,92,6.8,27641.68,523214072,-948620010,181.8,22 -Sun Sep 25 07:03:32 PDT 2011,146,91,6.932,27648.62,523214813,-948620252,181.8,22 -Sun Sep 25 07:03:33 PDT 2011,146,83,7.023,27655.64,523215551,-948620521,181.8,22 -Sun Sep 25 07:03:34 PDT 2011,146,84,6.91,27662.55,523216290,-948620777,181.8,22 -Sun Sep 25 07:03:35 PDT 2011,146,84,6.977,27669.53,523217024,-948621019,181.8,22 -Sun Sep 25 07:03:36 PDT 2011,146,86,7.046,27676.57,523217787,-948621297,181.8,22 -Sun Sep 25 07:03:37 PDT 2011,147,87,7.188,27683.76,523218547,-948621504,181.8,22 -Sun Sep 25 07:03:38 PDT 2011,148,89,7.311,27691.07,523219328,-948621706,181.8,22 -Sun Sep 25 07:03:39 PDT 2011,149,87,7.386,27698.46,523220071,-948621975,181.8,22 -Sun Sep 25 07:03:40 PDT 2011,150,87,7.314,27705.77,523220829,-948622227,181.8,22 -Sun Sep 25 07:03:41 PDT 2011,151,28,7.314,27713.1,523221586,-948622407,181.8,22 -Sun Sep 25 07:03:42 PDT 2011,151,84,7.004,27720.09,523222331,-948622574,181.8,22 -Sun Sep 25 07:03:43 PDT 2011,151,84,7.05,27727.16,523223123,-948622723,181.8,22 -Sun Sep 25 07:03:44 PDT 2011,152,84,7.389,27734.53,523223919,-948622767,181.8,22 -Sun Sep 25 07:03:45 PDT 2011,151,0,6.805,27741.33,523224622,-948622824,181.8,22 -Sun Sep 25 07:03:46 PDT 2011,150,0,6.269,27747.6,523225323,-948622853,181.8,22 -Sun Sep 25 07:03:47 PDT 2011,150,0,6.04,27753.64,523225958,-948622910,181.8,22 -Sun Sep 25 07:03:48 PDT 2011,149,0,5.673,27759.31,523226539,-948622978,181.8,22 -Sun Sep 25 07:03:49 PDT 2011,149,0,5.059,27764.37,523227032,-948623072,181.8,22 -Sun Sep 25 07:03:50 PDT 2011,148,0,4.489,27768.86,523227415,-948623206,181.8,22 -Sun Sep 25 07:03:51 PDT 2011,148,0,3.909,27772.77,523227648,-948623289,181.8,22 -Sun Sep 25 07:03:52 PDT 2011,147,0,0.0,27772.77,523227831,-948623345,181.8,22 -Sun Sep 25 07:03:53 PDT 2011,147,0,2.161,27774.93,523227921,-948623384,181.8,22 -Sun Sep 25 07:03:54 PDT 2011,147,0,1.539,27776.47,523227979,-948623380,181.8,22 -Sun Sep 25 07:04:05 PDT 2011,148,32,1.461,27776.47,523228719,-948623286,183.2,22 -Sun Sep 25 07:04:06 PDT 2011,148,32,2.334,27778.84,523229068,-948623381,183.2,22 -Sun Sep 25 07:04:07 PDT 2011,149,42,3.054,27781.84,523229463,-948623464,183.4,22 -Sun Sep 25 07:04:08 PDT 2011,149,51,3.752,27786.02,523229999,-948623607,183.4,22 -Sun Sep 25 07:04:09 PDT 2011,150,61,4.415,27789.94,523230493,-948623706,183.4,22 -Sun Sep 25 07:04:10 PDT 2011,150,65,5.047,27794.98,523231079,-948623875,183.4,22 -Sun Sep 25 07:04:11 PDT 2011,152,74,5.499,27800.48,523231718,-948624017,183.6,22 -Sun Sep 25 07:04:12 PDT 2011,152,76,5.891,27806.37,523232411,-948624167,183.6,22 -Sun Sep 25 07:04:13 PDT 2011,154,74,6.324,27812.7,523233181,-948624337,183.6,22 -Sun Sep 25 07:04:14 PDT 2011,155,71,6.805,27819.51,523233968,-948624502,183.6,22 -Sun Sep 25 07:04:15 PDT 2011,157,74,7.168,27826.67,523234576,-948624924,183.6,22 -Sun Sep 25 07:04:16 PDT 2011,158,76,7.44,27834.11,523235479,-948625007,183.6,22 -Sun Sep 25 07:04:17 PDT 2011,159,76,7.735,27841.84,523236292,-948625267,183.6,22 -Sun Sep 25 07:04:18 PDT 2011,161,38,7.935,27849.78,523237188,-948625592,183.8,22 -Sun Sep 25 07:04:19 PDT 2011,162,36,8.302,27858.08,523238072,-948625742,183.8,22 -Sun Sep 25 07:04:20 PDT 2011,163,75,7.905,27865.98,523238976,-948625799,183.8,22 -Sun Sep 25 07:04:21 PDT 2011,164,81,7.819,27873.83,523239876,-948625895,183.8,22 -Sun Sep 25 07:04:22 PDT 2011,164,85,7.763,27881.57,523240736,-948626092,183.8,22 -Sun Sep 25 07:04:23 PDT 2011,165,86,7.848,27889.41,523241582,-948626303,183.8,22 -Sun Sep 25 07:04:24 PDT 2011,165,87,7.994,27897.41,523242446,-948626602,183.8,22 -Sun Sep 25 07:04:25 PDT 2011,165,90,8.114,27905.52,523243303,-948626915,183.8,22 -Sun Sep 25 07:04:26 PDT 2011,165,92,8.27,27914.73,523244293,-948627213,183.8,22 -Sun Sep 25 07:04:27 PDT 2011,165,94,8.499,27922.27,523245118,-948627426,183.8,22 -Sun Sep 25 07:04:28 PDT 2011,165,94,8.601,27930.87,523246038,-948627602,183.8,22 -Sun Sep 25 07:04:29 PDT 2011,165,94,8.777,27939.64,523246971,-948627726,183.8,22 -Sun Sep 25 07:04:30 PDT 2011,165,84,8.741,27948.38,523247961,-948627915,183.8,22 -Sun Sep 25 07:04:31 PDT 2011,165,84,8.64,27957.08,523248854,-948628154,183.8,22 -Sun Sep 25 07:04:32 PDT 2011,165,84,8.71,27965.73,523249801,-948628390,183.8,22 -Sun Sep 25 07:04:33 PDT 2011,165,84,8.675,27974.41,523250719,-948628640,183.8,22 -Sun Sep 25 07:04:34 PDT 2011,166,85,8.675,27983.09,523251629,-948628804,183.8,22 -Sun Sep 25 07:04:35 PDT 2011,166,87,8.853,27991.94,523252567,-948628989,184.0,22 -Sun Sep 25 07:04:36 PDT 2011,166,87,8.964,28000.9,523253540,-948629138,184.2,22 -Sun Sep 25 07:04:37 PDT 2011,166,87,9.001,28009.91,523254480,-948629312,184.4,22 -Sun Sep 25 07:04:38 PDT 2011,166,87,9.039,28018.95,523255441,-948629519,184.6,22 -Sun Sep 25 07:04:39 PDT 2011,166,88,8.964,28027.91,523256391,-948629763,184.8,22 -Sun Sep 25 07:04:40 PDT 2011,166,93,8.781,28036.71,523257292,-948630025,184.8,22 -Sun Sep 25 07:04:41 PDT 2011,166,93,8.605,28045.3,523258192,-948630261,185.0,22 -Sun Sep 25 07:04:42 PDT 2011,167,94,8.64,28053.94,523259135,-948630517,185.0,22 -Sun Sep 25 07:04:43 PDT 2011,167,92,8.728,28062.67,523260041,-948630735,185.2,22 -Sun Sep 25 07:04:44 PDT 2011,167,91,8.658,28071.32,523260920,-948630970,185.2,22 -Sun Sep 25 07:04:45 PDT 2011,167,91,8.454,28079.78,523261805,-948631170,185.2,22 -Sun Sep 25 07:04:46 PDT 2011,167,91,8.454,28088.23,523262708,-948631373,185.4,22 -Sun Sep 25 07:04:47 PDT 2011,167,91,8.42,28096.66,523263608,-948631606,185.6,22 -Sun Sep 25 07:04:48 PDT 2011,167,91,8.388,28105.04,523264457,-948631830,185.8,22 -Sun Sep 25 07:04:49 PDT 2011,167,91,8.42,28113.46,523265370,-948632047,186.0,22 -Sun Sep 25 07:04:50 PDT 2011,168,91,8.388,28121.85,523266250,-948632222,186.2,22 -Sun Sep 25 07:04:51 PDT 2011,168,91,8.42,28130.27,523267137,-948632426,186.4,22 -Sun Sep 25 07:04:52 PDT 2011,168,91,8.388,28138.65,523268013,-948632616,186.6,22 -Sun Sep 25 07:04:53 PDT 2011,168,92,8.42,28147.07,523268893,-948632815,186.8,22 -Sun Sep 25 07:04:54 PDT 2011,169,94,8.555,28155.63,523269812,-948633039,186.8,22 -Sun Sep 25 07:04:55 PDT 2011,169,96,8.658,28164.29,523270739,-948633208,187.0,22 -Sun Sep 25 07:04:56 PDT 2011,169,97,8.828,28173.12,523271653,-948633373,187.0,22 -Sun Sep 25 07:04:57 PDT 2011,170,97,9.051,28182.17,523272629,-948633531,187.2,22 -Sun Sep 25 07:04:58 PDT 2011,170,88,8.976,28191.14,523273582,-948633693,187.2,22 -Sun Sep 25 07:04:59 PDT 2011,171,88,8.938,28200.1,523274503,-948633891,187.2,22 -Sun Sep 25 07:05:00 PDT 2011,171,88,8.65,28209.46,523275505,-948634114,187.4,22 -Sun Sep 25 07:05:01 PDT 2011,171,19,8.412,28218.24,523276428,-948634304,187.6,22 -Sun Sep 25 07:05:02 PDT 2011,171,88,8.156,28226.04,523277248,-948634491,187.8,22 -Sun Sep 25 07:05:03 PDT 2011,171,88,8.064,28234.05,523278086,-948634691,188.2,22 -Sun Sep 25 07:05:04 PDT 2011,171,88,7.945,28242.0,523278823,-948634856,188.4,22 -Sun Sep 25 07:05:05 PDT 2011,170,0,6.965,28248.95,523279467,-948634997,188.4,22 -Sun Sep 25 07:05:06 PDT 2011,170,0,5.861,28254.81,523279998,-948635084,188.6,22 -Sun Sep 25 07:05:07 PDT 2011,169,0,4.603,28259.38,523280323,-948635143,188.8,22 -Sun Sep 25 07:05:08 PDT 2011,168,0,2.963,28262.35,523280539,-948635207,189.0,22 -Sun Sep 25 07:05:09 PDT 2011,167,0,2.191,28264.54,523280650,-948635210,189.0,22 -Sun Sep 25 07:05:10 PDT 2011,166,0,2.191,28266.73,523280612,-948635208,189.2,22 -Sun Sep 25 07:05:11 PDT 2011,165,0,1.299,28268.03,523280545,-948635177,189.2,22 -Sun Sep 25 07:05:43 PDT 2011,138,0,0.0,28268.03,523280820,-948635195,190.0,22 -Sun Sep 25 07:05:44 PDT 2011,139,0,1.804,28269.87,523281052,-948635261,190.0,22 -Sun Sep 25 07:05:45 PDT 2011,141,24,2.189,28272.01,523281441,-948635358,190.2,22 -Sun Sep 25 07:05:46 PDT 2011,143,44,2.512,28274.86,523281893,-948635425,190.4,22 -Sun Sep 25 07:05:47 PDT 2011,146,56,3.698,28278.06,523282304,-948635518,190.6,22 -Sun Sep 25 07:05:48 PDT 2011,148,63,4.325,28282.39,523282812,-948635677,190.8,22 -Sun Sep 25 07:05:49 PDT 2011,151,69,4.92,28287.31,523283380,-948635798,191.0,22 -Sun Sep 25 07:05:50 PDT 2011,153,74,5.72,28293.03,523284013,-948636084,191.0,22 -Sun Sep 25 07:05:51 PDT 2011,155,80,6.164,28299.19,523284715,-948636381,191.2,22 -Sun Sep 25 07:05:52 PDT 2011,158,77,6.6,28305.79,523285406,-948636627,191.2,22 -Sun Sep 25 07:05:53 PDT 2011,158,74,6.683,28312.47,523286239,-948636851,191.4,22 -Sun Sep 25 07:05:54 PDT 2011,160,76,6.92,28319.39,523287025,-948637012,191.4,22 -Sun Sep 25 07:05:55 PDT 2011,161,76,7.08,28326.47,523287797,-948637119,191.4,22 -Sun Sep 25 07:05:56 PDT 2011,162,24,7.174,28333.66,523288523,-948637249,191.6,22 -Sun Sep 25 07:05:57 PDT 2011,163,76,6.6,28340.25,523289174,-948637426,191.6,22 -Sun Sep 25 07:05:58 PDT 2011,163,80,6.5,28346.75,523289872,-948637641,191.6,22 -Sun Sep 25 07:05:59 PDT 2011,164,82,6.725,28353.47,523290521,-948637844,191.6,22 -Sun Sep 25 07:06:00 PDT 2011,164,83,6.767,28360.24,523291202,-948638045,191.8,22 -Sun Sep 25 07:06:01 PDT 2011,164,85,6.965,28367.21,523291928,-948638249,191.8,22 -Sun Sep 25 07:06:02 PDT 2011,165,86,7.056,28374.26,523292668,-948638437,191.8,22 -Sun Sep 25 07:06:03 PDT 2011,165,86,7.198,28381.46,523293426,-948638599,191.8,22 -Sun Sep 25 07:06:04 PDT 2011,166,85,7.174,28388.63,523294183,-948638768,191.8,22 -Sun Sep 25 07:06:05 PDT 2011,166,85,7.127,28395.76,523294937,-948638883,191.8,22 -Sun Sep 25 07:06:06 PDT 2011,166,85,7.079,28402.84,523295724,-948639020,192.0,22 -Sun Sep 25 07:06:07 PDT 2011,166,85,7.103,28409.94,523296483,-948639168,192.2,22 -Sun Sep 25 07:06:08 PDT 2011,166,87,7.103,28417.05,523297267,-948639399,192.4,22 -Sun Sep 25 07:06:09 PDT 2011,167,88,7.103,28424.15,523298030,-948639573,192.6,22 -Sun Sep 25 07:06:10 PDT 2011,167,91,7.247,28431.4,523298850,-948639752,192.8,22 -Sun Sep 25 07:06:11 PDT 2011,167,92,7.424,28438.82,523299678,-948639919,193.0,22 -Sun Sep 25 07:06:12 PDT 2011,167,92,7.663,28446.48,523300515,-948640096,193.0,22 -Sun Sep 25 07:06:13 PDT 2011,167,92,7.691,28454.17,523301347,-948640288,193.2,22 -Sun Sep 25 07:06:14 PDT 2011,168,95,7.691,28461.87,523302164,-948640480,193.4,22 -Sun Sep 25 07:06:15 PDT 2011,168,97,7.803,28469.68,523303015,-948640708,193.4,22 -Sun Sep 25 07:06:16 PDT 2011,168,99,8.128,28477.8,523303869,-948640957,193.6,22 -Sun Sep 25 07:06:17 PDT 2011,169,101,8.255,28486.05,523304744,-948641209,193.6,22 -Sun Sep 25 07:06:18 PDT 2011,169,93,8.32,28494.37,523305611,-948641463,193.8,22 -Sun Sep 25 07:06:19 PDT 2011,169,93,8.385,28502.76,523306516,-948641705,193.8,22 -Sun Sep 25 07:06:20 PDT 2011,169,93,8.519,28511.28,523307449,-948641914,193.8,22 -Sun Sep 25 07:06:21 PDT 2011,169,93,8.553,28519.83,523308395,-948642092,193.8,22 -Sun Sep 25 07:06:22 PDT 2011,169,42,8.623,28528.45,523309338,-948642248,194.0,22 -Sun Sep 25 07:06:23 PDT 2011,168,92,8.485,28536.94,523310246,-948642412,194.0,22 -Sun Sep 25 07:06:24 PDT 2011,168,94,8.485,28545.42,523311158,-948642591,194.0,22 -Sun Sep 25 07:06:25 PDT 2011,168,95,8.519,28553.94,523312086,-948642772,194.0,22 -Sun Sep 25 07:06:26 PDT 2011,169,98,8.658,28562.6,523313019,-948642949,194.2,22 -Sun Sep 25 07:06:27 PDT 2011,169,101,8.874,28571.47,523313976,-948643119,194.2,22 -Sun Sep 25 07:06:28 PDT 2011,169,101,9.102,28580.57,523314945,-948643336,194.2,22 -Sun Sep 25 07:06:29 PDT 2011,168,102,9.22,28589.8,523315943,-948643572,194.2,22 -Sun Sep 25 07:06:30 PDT 2011,169,42,9.341,28599.14,523316961,-948643856,194.2,22 -Sun Sep 25 07:06:31 PDT 2011,169,91,9.282,28608.89,523318031,-948644070,194.2,22 -Sun Sep 25 07:06:32 PDT 2011,170,91,9.405,28622.17,523319479,-948644363,194.2,22 -Sun Sep 25 07:06:33 PDT 2011,170,91,9.405,28627.24,523320016,-948644486,194.2,22 -Sun Sep 25 07:06:34 PDT 2011,170,0,9.282,28636.62,523321012,-948644690,194.4,22 -Sun Sep 25 07:06:35 PDT 2011,170,0,8.97,28645.48,523321913,-948644918,194.6,22 -Sun Sep 25 07:06:36 PDT 2011,170,92,8.643,28654.12,523322865,-948645167,194.8,22 -Sun Sep 25 07:06:37 PDT 2011,169,93,8.609,28662.73,523323766,-948645392,195.0,22 -Sun Sep 25 07:06:38 PDT 2011,169,90,8.506,28671.24,523324635,-948645587,195.2,22 -Sun Sep 25 07:06:39 PDT 2011,168,92,8.275,28679.51,523325524,-948645790,195.2,22 -Sun Sep 25 07:06:40 PDT 2011,168,93,8.34,28687.85,523326413,-948645987,195.4,22 -Sun Sep 25 07:06:41 PDT 2011,168,93,8.609,28696.46,523327281,-948646228,195.6,22 -Sun Sep 25 07:06:42 PDT 2011,167,93,8.54,28705.0,523328198,-948646418,195.6,22 -Sun Sep 25 07:06:43 PDT 2011,167,93,8.484,28713.48,523329085,-948646600,195.6,22 -Sun Sep 25 07:06:44 PDT 2011,167,95,8.552,28722.04,523330007,-948646787,195.8,22 -Sun Sep 25 07:06:45 PDT 2011,167,94,8.744,28730.78,523330947,-948647004,196.0,22 -Sun Sep 25 07:06:46 PDT 2011,167,94,8.691,28739.47,523331892,-948647214,196.2,22 -Sun Sep 25 07:06:47 PDT 2011,167,96,8.656,28748.13,523332817,-948647401,196.4,22 -Sun Sep 25 07:06:48 PDT 2011,167,99,8.691,28756.82,523333789,-948647617,196.6,22 -Sun Sep 25 07:06:49 PDT 2011,168,100,9.021,28765.84,523334745,-948647839,196.8,22 -Sun Sep 25 07:06:50 PDT 2011,168,100,9.216,28775.06,523335732,-948648042,197.0,22 -Sun Sep 25 07:06:51 PDT 2011,168,37,9.137,28784.2,523336681,-948648255,197.2,22 -Sun Sep 25 07:06:52 PDT 2011,168,96,9.021,28793.22,523337637,-948648476,197.2,22 -Sun Sep 25 07:06:53 PDT 2011,168,95,8.871,28802.09,523338601,-948648676,197.4,22 -Sun Sep 25 07:06:54 PDT 2011,168,96,8.798,28810.89,523339549,-948648874,197.6,22 -Sun Sep 25 07:06:55 PDT 2011,167,97,8.777,28819.66,523340491,-948649063,197.6,22 -Sun Sep 25 07:06:56 PDT 2011,167,97,8.924,28828.59,523341408,-948649241,197.6,22 -Sun Sep 25 07:06:57 PDT 2011,167,99,8.962,28837.55,523342352,-948649415,197.8,22 -Sun Sep 25 07:06:58 PDT 2011,167,99,9.038,28846.59,523343325,-948649616,197.8,22 -Sun Sep 25 07:06:59 PDT 2011,167,103,9.076,28855.66,523344273,-948649794,197.8,22 -Sun Sep 25 07:07:00 PDT 2011,168,105,9.273,28864.94,523345274,-948650045,198.0,22 -Sun Sep 25 07:07:01 PDT 2011,168,103,9.629,28874.57,523346269,-948650303,198.0,22 -Sun Sep 25 07:07:02 PDT 2011,169,94,9.651,28884.22,523347256,-948650562,198.0,22 -Sun Sep 25 07:07:03 PDT 2011,169,93,9.651,28893.87,523348291,-948650811,198.0,22 -Sun Sep 25 07:07:04 PDT 2011,170,93,9.608,28903.47,523349298,-948651059,198.2,22 -Sun Sep 25 07:07:05 PDT 2011,170,93,9.396,28912.87,523350292,-948651286,198.2,22 -Sun Sep 25 07:07:06 PDT 2011,169,94,9.154,28922.03,523351271,-948651510,198.2,22 -Sun Sep 25 07:07:07 PDT 2011,169,98,8.88,28930.91,523352226,-948651753,198.4,22 -Sun Sep 25 07:07:08 PDT 2011,169,98,9.03,28939.94,523353164,-948651923,198.6,22 -Sun Sep 25 07:07:09 PDT 2011,169,98,9.03,28948.97,523354164,-948652086,198.8,22 -Sun Sep 25 07:07:10 PDT 2011,169,99,8.992,28957.96,523355130,-948652271,199.0,22 -Sun Sep 25 07:07:11 PDT 2011,169,100,9.03,28966.99,523356110,-948652460,199.2,22 -Sun Sep 25 07:07:12 PDT 2011,169,100,9.264,28976.25,523357110,-948652691,199.4,22 -Sun Sep 25 07:07:13 PDT 2011,170,88,9.224,28985.47,523358096,-948652941,199.4,22 -Sun Sep 25 07:07:14 PDT 2011,170,89,9.03,28994.5,523359033,-948653127,199.6,22 -Sun Sep 25 07:07:15 PDT 2011,170,89,9.185,29003.69,523360035,-948653341,199.6,22 -Sun Sep 25 07:07:16 PDT 2011,170,98,9.224,29012.91,523361005,-948653539,199.8,22 -Sun Sep 25 07:07:17 PDT 2011,170,97,9.107,29022.02,523361934,-948653749,199.8,22 -Sun Sep 25 07:07:18 PDT 2011,171,97,8.917,29030.94,523362973,-948654052,200.0,22 -Sun Sep 25 07:07:19 PDT 2011,171,98,8.904,29039.84,523363917,-948654310,200.0,22 -Sun Sep 25 07:07:20 PDT 2011,171,98,9.017,29048.86,523364890,-948654549,200.0,22 -Sun Sep 25 07:07:21 PDT 2011,171,97,9.055,29057.92,523365887,-948654762,200.4,22 -Sun Sep 25 07:07:22 PDT 2011,171,97,8.979,29066.89,523366851,-948654954,200.6,22 -Sun Sep 25 07:07:23 PDT 2011,170,97,8.904,29075.8,523367789,-948655149,200.8,22 -Sun Sep 25 07:07:24 PDT 2011,170,97,8.941,29084.74,523368752,-948655396,201.0,22 -Sun Sep 25 07:07:25 PDT 2011,170,96,8.941,29093.68,523369701,-948655620,201.2,22 -Sun Sep 25 07:07:26 PDT 2011,169,94,8.867,29102.55,523370636,-948655840,201.4,22 -Sun Sep 25 07:07:27 PDT 2011,169,94,8.794,29111.34,523371567,-948656077,201.4,22 -Sun Sep 25 07:07:28 PDT 2011,169,95,8.652,29120.0,523372494,-948656313,201.6,22 -Sun Sep 25 07:07:29 PDT 2011,169,96,8.758,29128.75,523373391,-948656556,201.6,22 -Sun Sep 25 07:07:30 PDT 2011,170,97,8.794,29137.55,523374350,-948656796,201.8,22 -Sun Sep 25 07:07:31 PDT 2011,170,98,8.925,29146.52,523375288,-948657003,201.8,22 -Sun Sep 25 07:07:32 PDT 2011,170,93,9.077,29155.55,523376241,-948657220,202.0,22 -Sun Sep 25 07:07:33 PDT 2011,170,58,9.0,29164.55,523377206,-948657448,202.0,22 -Sun Sep 25 07:07:34 PDT 2011,170,96,8.815,29173.36,523378162,-948657656,202.0,22 -Sun Sep 25 07:07:35 PDT 2011,171,93,8.815,29182.18,523379086,-948657856,202.2,22 -Sun Sep 25 07:07:36 PDT 2011,171,93,8.852,29191.03,523380027,-948658065,202.2,22 -Sun Sep 25 07:07:37 PDT 2011,171,36,8.5,29199.53,523380901,-948658242,202.4,22 -Sun Sep 25 07:07:38 PDT 2011,171,90,8.239,29207.77,523381778,-948658412,202.8,22 -Sun Sep 25 07:07:39 PDT 2011,171,92,8.145,29215.91,523382636,-948658595,203.0,22 -Sun Sep 25 07:07:40 PDT 2011,171,96,8.433,29224.35,523383533,-948658823,203.2,22 -Sun Sep 25 07:07:41 PDT 2011,171,106,8.708,29233.05,523384428,-948659056,203.2,22 -Sun Sep 25 07:07:42 PDT 2011,171,104,8.852,29241.9,523385360,-948659297,203.4,22 -Sun Sep 25 07:07:43 PDT 2011,171,96,8.852,29250.76,523386304,-948659529,203.6,22 -Sun Sep 25 07:07:44 PDT 2011,171,96,8.863,29259.62,523387273,-948659746,203.8,22 -Sun Sep 25 07:07:45 PDT 2011,172,96,8.863,29268.48,523388235,-948659919,203.8,22 -Sun Sep 25 07:07:46 PDT 2011,171,95,8.826,29277.31,523389159,-948660113,204.0,22 -Sun Sep 25 07:07:47 PDT 2011,172,94,8.79,29286.1,523390076,-948660290,204.0,22 -Sun Sep 25 07:07:48 PDT 2011,172,94,8.718,29294.82,523391028,-948660466,204.2,22 -Sun Sep 25 07:07:49 PDT 2011,172,94,8.683,29303.5,523391955,-948660637,204.2,22 -Sun Sep 25 07:07:50 PDT 2011,171,94,8.51,29312.01,523392831,-948660796,204.2,22 -Sun Sep 25 07:07:51 PDT 2011,171,0,8.344,29320.35,523393718,-948660980,204.4,22 -Sun Sep 25 07:07:52 PDT 2011,171,0,8.152,29328.51,523394537,-948661135,204.6,22 -Sun Sep 25 07:07:53 PDT 2011,170,97,7.94,29336.45,523395334,-948661332,204.8,22 -Sun Sep 25 07:07:54 PDT 2011,169,98,8.09,29344.54,523396190,-948661527,205.0,22 -Sun Sep 25 07:07:55 PDT 2011,169,99,8.152,29352.69,523397019,-948661689,205.2,22 -Sun Sep 25 07:07:56 PDT 2011,169,99,8.152,29360.84,523397914,-948661893,205.4,22 -Sun Sep 25 07:07:57 PDT 2011,169,101,8.243,29369.08,523398786,-948662077,205.6,22 -Sun Sep 25 07:07:58 PDT 2011,168,96,8.34,29377.42,523399716,-948662233,205.6,22 -Sun Sep 25 07:07:59 PDT 2011,168,91,8.405,29385.83,523400587,-948662386,205.8,22 -Sun Sep 25 07:08:00 PDT 2011,168,91,8.372,29394.2,523401520,-948662564,206.0,22 -Sun Sep 25 07:08:01 PDT 2011,167,91,8.34,29402.54,523402439,-948662725,206.0,22 -Sun Sep 25 07:08:02 PDT 2011,167,91,8.372,29410.91,523403333,-948662912,206.0,22 -Sun Sep 25 07:08:03 PDT 2011,167,90,8.372,29419.28,523404200,-948663129,206.2,22 -Sun Sep 25 07:08:04 PDT 2011,167,91,8.307,29427.6,523405100,-948663343,206.2,22 -Sun Sep 25 07:08:05 PDT 2011,167,91,8.34,29435.93,523405963,-948663557,206.4,22 -Sun Sep 25 07:08:06 PDT 2011,167,91,8.372,29444.3,523406841,-948663792,206.4,22 -Sun Sep 25 07:08:07 PDT 2011,168,92,8.372,29452.67,523407756,-948664011,206.4,22 -Sun Sep 25 07:08:08 PDT 2011,169,90,8.405,29461.07,523408646,-948664206,206.4,22 -Sun Sep 25 07:08:09 PDT 2011,169,89,8.372,29469.45,523409540,-948664392,206.6,22 -Sun Sep 25 07:08:10 PDT 2011,169,96,8.243,29477.69,523410408,-948664552,206.6,22 -Sun Sep 25 07:08:11 PDT 2011,169,96,8.149,29485.84,523411280,-948664683,206.6,22 -Sun Sep 25 07:08:12 PDT 2011,169,25,7.937,29493.77,523412137,-948664877,206.6,22 -Sun Sep 25 07:08:13 PDT 2011,170,91,7.737,29501.51,523412948,-948665094,206.6,22 -Sun Sep 25 07:08:14 PDT 2011,169,91,7.627,29509.14,523413754,-948665272,206.6,22 -Sun Sep 25 07:08:15 PDT 2011,169,91,7.6,29516.74,523414558,-948665443,206.8,22 -Sun Sep 25 07:08:16 PDT 2011,169,90,7.573,29524.31,523415362,-948665622,206.8,22 -Sun Sep 25 07:08:17 PDT 2011,168,90,7.573,29531.88,523416157,-948665769,206.8,22 -Sun Sep 25 07:08:18 PDT 2011,168,38,7.467,29539.35,523416954,-948665910,206.8,22 -Sun Sep 25 07:08:19 PDT 2011,167,90,7.265,29546.61,523417727,-948666070,206.8,22 -Sun Sep 25 07:08:20 PDT 2011,167,93,7.265,29553.88,523418513,-948666290,206.8,22 -Sun Sep 25 07:08:21 PDT 2011,168,97,7.681,29561.56,523419320,-948666501,206.8,22 -Sun Sep 25 07:08:22 PDT 2011,168,97,7.967,29569.53,523420124,-948666785,207.0,22 -Sun Sep 25 07:08:23 PDT 2011,169,99,8.087,29577.62,523420997,-948666915,207.2,22 -Sun Sep 25 07:08:24 PDT 2011,170,100,8.243,29585.86,523421865,-948667105,207.4,22 -Sun Sep 25 07:08:25 PDT 2011,171,101,8.307,29594.16,523422778,-948667301,207.6,22 -Sun Sep 25 07:08:26 PDT 2011,172,100,8.372,29602.54,523423681,-948667489,207.8,22 -Sun Sep 25 07:08:27 PDT 2011,173,99,8.372,29610.91,523424569,-948667693,207.8,22 -Sun Sep 25 07:08:28 PDT 2011,174,97,8.275,29619.18,523425477,-948667869,208.0,22 -Sun Sep 25 07:08:29 PDT 2011,174,95,8.149,29627.33,523426346,-948668054,208.0,22 -Sun Sep 25 07:08:30 PDT 2011,175,94,7.997,29635.33,523427220,-948668225,208.2,22 -Sun Sep 25 07:08:31 PDT 2011,176,90,7.822,29643.15,523428040,-948668433,208.2,22 -Sun Sep 25 07:08:32 PDT 2011,176,99,7.573,29650.72,523428837,-948668570,208.4,22 -Sun Sep 25 07:08:33 PDT 2011,177,100,7.52,29658.24,523429634,-948668744,208.4,22 -Sun Sep 25 07:08:34 PDT 2011,177,100,7.654,29665.89,523430446,-948668916,208.4,22 -Sun Sep 25 07:08:35 PDT 2011,178,97,7.654,29673.62,523431245,-948669111,208.4,22 -Sun Sep 25 07:08:36 PDT 2011,178,86,7.546,29682.02,523432115,-948669318,208.8,22 -Sun Sep 25 07:08:37 PDT 2011,179,88,7.441,29688.65,523432843,-948669471,209.0,22 -Sun Sep 25 07:08:38 PDT 2011,179,81,7.511,29696.06,523433620,-948669677,209.2,22 -Sun Sep 25 07:08:39 PDT 2011,180,81,7.7,29703.76,523434401,-948669849,209.4,22 -Sun Sep 25 07:08:40 PDT 2011,180,83,7.485,29711.24,523435255,-948670086,209.6,22 -Sun Sep 25 07:08:41 PDT 2011,181,84,7.591,29718.83,523436063,-948670274,209.8,22 -Sun Sep 25 07:08:42 PDT 2011,181,84,7.783,29726.62,523436884,-948670450,210.0,22 -Sun Sep 25 07:08:43 PDT 2011,182,83,7.755,29734.37,523437692,-948670632,210.2,22 -Sun Sep 25 07:08:44 PDT 2011,182,82,7.645,29742.02,523438511,-948670837,210.2,22 -Sun Sep 25 07:08:45 PDT 2011,183,81,7.591,29749.61,523439285,-948671004,210.4,22 -Sun Sep 25 07:08:46 PDT 2011,183,80,7.459,29757.07,523440061,-948671219,210.8,22 -Sun Sep 25 07:08:47 PDT 2011,183,80,7.408,29764.48,523440839,-948671452,211.0,22 -Sun Sep 25 07:08:48 PDT 2011,184,89,7.408,29771.88,523441672,-948671650,211.4,22 -Sun Sep 25 07:08:49 PDT 2011,184,89,7.433,29779.32,523442479,-948671782,211.6,22 -Sun Sep 25 07:08:50 PDT 2011,184,91,7.511,29786.83,523443283,-948671956,211.8,22 -Sun Sep 25 07:08:51 PDT 2011,184,91,7.459,29794.29,523444078,-948672124,212.2,22 -Sun Sep 25 07:08:52 PDT 2011,185,86,7.591,29801.88,523444784,-948672301,212.6,22 -Sun Sep 25 07:08:53 PDT 2011,184,89,7.379,29809.26,523445571,-948672491,212.8,22 -Sun Sep 25 07:08:54 PDT 2011,185,90,7.279,29816.54,523446327,-948672668,213.2,22 -Sun Sep 25 07:08:55 PDT 2011,185,91,7.405,29823.94,523447122,-948672935,213.4,22 -Sun Sep 25 07:08:56 PDT 2011,185,92,7.616,29831.56,523447888,-948673161,213.8,22 -Sun Sep 25 07:08:57 PDT 2011,184,100,7.67,29839.23,523448693,-948673369,214.2,22 -Sun Sep 25 07:08:58 PDT 2011,184,103,7.496,29846.72,523449487,-948673615,214.6,22 -Sun Sep 25 07:08:59 PDT 2011,185,105,7.698,29854.42,523450305,-948673872,215.0,22 -Sun Sep 25 07:09:00 PDT 2011,185,104,7.985,29862.41,523451142,-948674111,215.4,22 -Sun Sep 25 07:09:01 PDT 2011,185,105,7.985,29870.39,523451980,-948674351,216.0,22 -Sun Sep 25 07:09:02 PDT 2011,185,106,7.839,29878.23,523452830,-948674530,216.4,22 -Sun Sep 25 07:09:03 PDT 2011,186,105,8.045,29886.28,523453681,-948674737,216.8,22 -Sun Sep 25 07:09:04 PDT 2011,186,107,8.045,29894.32,523454526,-948674929,217.0,22 -Sun Sep 25 07:09:05 PDT 2011,186,106,8.106,29902.43,523455388,-948675129,217.4,22 -Sun Sep 25 07:09:06 PDT 2011,186,105,8.137,29910.56,523456235,-948675366,217.8,22 -Sun Sep 25 07:09:07 PDT 2011,186,105,8.01,29918.57,523457067,-948675634,218.4,22 -Sun Sep 25 07:09:08 PDT 2011,185,107,7.951,29926.53,523457922,-948675863,218.6,22 -Sun Sep 25 07:09:09 PDT 2011,185,106,8.102,29934.63,523458773,-948676110,219.0,22 -Sun Sep 25 07:09:10 PDT 2011,185,45,8.071,29942.7,523459641,-948676328,219.4,22 -Sun Sep 25 07:09:11 PDT 2011,185,98,7.834,29950.53,523460445,-948676475,219.6,22 -Sun Sep 25 07:09:12 PDT 2011,185,90,7.556,29958.09,523461265,-948676632,220.0,22 -Sun Sep 25 07:09:13 PDT 2011,185,92,7.424,29965.51,523462083,-948676788,220.2,22 -Sun Sep 25 07:09:14 PDT 2011,184,92,7.503,29973.02,523462882,-948676999,220.6,22 -Sun Sep 25 07:09:15 PDT 2011,184,94,7.61,29980.63,523463720,-948677177,221.0,22 -Sun Sep 25 07:09:16 PDT 2011,184,99,7.692,29988.32,523464561,-948677378,221.2,22 -Sun Sep 25 07:09:17 PDT 2011,183,102,8.071,29996.39,523465482,-948677560,221.6,22 -Sun Sep 25 07:09:18 PDT 2011,183,102,8.422,30004.81,523466367,-948677776,221.8,22 -Sun Sep 25 07:09:19 PDT 2011,183,105,8.456,30013.26,523467243,-948678024,222.0,22 -Sun Sep 25 07:09:20 PDT 2011,183,108,8.672,30021.94,523468199,-948678273,222.4,22 -Sun Sep 25 07:09:21 PDT 2011,183,109,8.925,30030.86,523469118,-948678520,222.6,22 -Sun Sep 25 07:09:22 PDT 2011,183,103,9.038,30039.9,523470096,-948678796,222.6,22 -Sun Sep 25 07:09:23 PDT 2011,182,104,9.194,30049.09,523471090,-948679061,222.8,22 -Sun Sep 25 07:09:24 PDT 2011,183,106,9.395,30058.49,523472119,-948679349,223.0,22 -Sun Sep 25 07:09:25 PDT 2011,182,106,9.781,30068.27,523473176,-948679587,223.2,22 -Sun Sep 25 07:09:26 PDT 2011,182,106,9.759,30078.03,523474194,-948679829,223.2,22 -Sun Sep 25 07:09:27 PDT 2011,183,0,9.693,30087.72,523475230,-948680056,223.4,22 -Sun Sep 25 07:09:28 PDT 2011,183,0,9.606,30097.33,523476244,-948680324,223.4,22 -Sun Sep 25 07:09:29 PDT 2011,182,0,9.563,30106.89,523477239,-948680564,223.6,22 -Sun Sep 25 07:09:30 PDT 2011,182,0,9.437,30116.33,523478235,-948680810,223.6,22 -Sun Sep 25 07:09:31 PDT 2011,181,101,9.395,30125.72,523479236,-948681054,223.6,22 -Sun Sep 25 07:09:32 PDT 2011,181,89,9.364,30135.08,523480257,-948681279,223.8,22 -Sun Sep 25 07:09:33 PDT 2011,181,43,9.405,30144.49,523481211,-948681505,223.8,22 -Sun Sep 25 07:09:34 PDT 2011,180,91,9.364,30153.85,523482219,-948681737,223.8,22 -Sun Sep 25 07:09:35 PDT 2011,179,92,9.323,30163.17,523483171,-948681968,223.8,22 -Sun Sep 25 07:09:36 PDT 2011,179,93,9.405,30172.58,523484184,-948682229,224.0,22 -Sun Sep 25 07:09:37 PDT 2011,179,51,9.531,30182.11,523485192,-948682479,224.0,22 -Sun Sep 25 07:09:38 PDT 2011,179,51,9.531,30191.64,523486218,-948682695,224.0,22 -Sun Sep 25 07:09:39 PDT 2011,179,96,9.574,30201.22,523487272,-948682919,224.0,22 -Sun Sep 25 07:09:40 PDT 2011,179,97,9.574,30210.79,523488344,-948683112,224.0,22 -Sun Sep 25 07:09:41 PDT 2011,179,97,9.884,30220.67,523489412,-948683341,224.0,22 -Sun Sep 25 07:09:42 PDT 2011,179,96,9.93,30230.6,523490465,-948683597,224.2,22 -Sun Sep 25 07:09:43 PDT 2011,179,95,9.848,30240.45,523491497,-948683855,224.2,22 -Sun Sep 25 07:09:44 PDT 2011,178,41,9.758,30250.21,523492523,-948684117,224.2,22 -Sun Sep 25 07:09:45 PDT 2011,178,95,9.54,30259.75,523493499,-948684387,224.2,22 -Sun Sep 25 07:09:46 PDT 2011,177,103,9.414,30269.16,523494500,-948684657,224.2,22 -Sun Sep 25 07:09:47 PDT 2011,177,104,9.456,30278.62,523495515,-948684900,224.2,22 -Sun Sep 25 07:09:48 PDT 2011,177,106,9.54,30288.16,523496511,-948685115,224.2,22 -Sun Sep 25 07:09:49 PDT 2011,178,105,9.626,30297.78,523497566,-948685308,224.2,22 -Sun Sep 25 07:09:50 PDT 2011,178,105,9.67,30307.45,523498601,-948685521,224.2,22 -Sun Sep 25 07:09:51 PDT 2011,178,105,9.583,30317.04,523499629,-948685716,224.2,22 -Sun Sep 25 07:09:52 PDT 2011,179,104,9.67,30326.71,523500677,-948685974,224.2,22 -Sun Sep 25 07:09:53 PDT 2011,179,102,9.758,30336.46,523501704,-948686256,224.2,22 -Sun Sep 25 07:09:54 PDT 2011,179,100,9.583,30346.05,523502668,-948686546,224.2,22 -Sun Sep 25 07:09:55 PDT 2011,180,99,9.278,30355.32,523503651,-948686833,224.2,22 -Sun Sep 25 07:09:56 PDT 2011,179,100,9.139,30364.46,523504630,-948687098,224.2,22 -Sun Sep 25 07:09:57 PDT 2011,179,100,9.158,30373.62,523505616,-948687347,224.2,22 -Sun Sep 25 07:09:58 PDT 2011,179,99,9.198,30382.82,523506574,-948687546,224.4,22 -Sun Sep 25 07:09:59 PDT 2011,179,87,9.178,30391.99,523507532,-948687754,224.6,22 -Sun Sep 25 07:10:00 PDT 2011,179,52,8.966,30400.96,523508457,-948687938,224.8,22 -Sun Sep 25 07:10:01 PDT 2011,179,96,8.57,30409.53,523509412,-948688155,225.0,22 -Sun Sep 25 07:10:02 PDT 2011,179,96,8.818,30418.35,523510363,-948688408,225.2,22 -Sun Sep 25 07:10:03 PDT 2011,178,95,8.854,30427.2,523511250,-948688650,225.2,22 -Sun Sep 25 07:10:04 PDT 2011,178,95,8.745,30435.95,523512156,-948688930,225.4,22 -Sun Sep 25 07:10:05 PDT 2011,179,95,8.745,30444.69,523513049,-948689207,225.4,22 -Sun Sep 25 07:10:06 PDT 2011,179,95,8.745,30453.44,523513990,-948689448,225.6,22 -Sun Sep 25 07:10:07 PDT 2011,179,95,8.741,30462.18,523514903,-948689660,225.6,22 -Sun Sep 25 07:10:08 PDT 2011,178,97,8.706,30470.88,523515818,-948689875,226.0,22 -Sun Sep 25 07:10:09 PDT 2011,179,97,8.814,30479.7,523516790,-948690013,226.2,22 -Sun Sep 25 07:10:10 PDT 2011,179,98,8.924,30488.62,523517732,-948690266,226.4,22 -Sun Sep 25 07:10:11 PDT 2011,179,99,8.962,30497.58,523518682,-948690512,226.6,22 -Sun Sep 25 07:10:12 PDT 2011,178,101,9.038,30506.62,523519649,-948690738,226.8,22 -Sun Sep 25 07:10:13 PDT 2011,179,101,9.154,30515.77,523520644,-948691016,227.0,22 -Sun Sep 25 07:10:14 PDT 2011,179,103,9.233,30525.01,523521647,-948691255,227.0,22 -Sun Sep 25 07:10:15 PDT 2011,179,104,9.355,30534.36,523522589,-948691472,227.2,22 -Sun Sep 25 07:10:16 PDT 2011,180,103,9.564,30543.93,523523640,-948691689,227.4,22 -Sun Sep 25 07:10:17 PDT 2011,180,105,9.438,30553.36,523524658,-948691919,227.4,22 -Sun Sep 25 07:10:18 PDT 2011,180,107,9.608,30562.97,523525722,-948692194,227.6,22 -Sun Sep 25 07:10:19 PDT 2011,181,107,9.829,30572.8,523526790,-948692438,227.6,22 -Sun Sep 25 07:10:20 PDT 2011,181,107,9.829,30582.63,523527836,-948692671,227.8,22 -Sun Sep 25 07:10:21 PDT 2011,181,104,9.852,30592.48,523528929,-948692880,228.0,22 -Sun Sep 25 07:10:22 PDT 2011,182,96,9.949,30602.43,523530001,-948693086,228.2,22 -Sun Sep 25 07:10:23 PDT 2011,182,96,9.903,30612.33,523531052,-948693316,228.6,22 -Sun Sep 25 07:10:24 PDT 2011,183,98,9.903,30622.23,523532099,-948693589,228.8,22 -Sun Sep 25 07:10:25 PDT 2011,183,100,10.09,30632.32,523533210,-948693868,229.0,22 -Sun Sep 25 07:10:26 PDT 2011,183,102,10.235,30642.56,523534284,-948694176,229.0,22 -Sun Sep 25 07:10:27 PDT 2011,184,101,10.434,30652.99,523535383,-948694497,229.4,22 -Sun Sep 25 07:10:28 PDT 2011,184,93,10.434,30663.42,523536474,-948694800,229.8,22 -Sun Sep 25 07:10:29 PDT 2011,184,96,10.138,30673.56,523537561,-948695026,230.0,22 -Sun Sep 25 07:10:30 PDT 2011,184,104,9.972,30683.54,523538610,-948695312,230.4,22 -Sun Sep 25 07:10:31 PDT 2011,184,105,9.812,30693.35,523539636,-948695572,230.6,22 -Sun Sep 25 07:10:32 PDT 2011,184,104,9.635,30702.98,523540610,-948695820,230.8,22 -Sun Sep 25 07:10:33 PDT 2011,185,105,9.592,30712.57,523541603,-948696073,231.0,22 -Sun Sep 25 07:10:34 PDT 2011,184,106,9.635,30722.21,523542614,-948696359,231.2,22 -Sun Sep 25 07:10:35 PDT 2011,184,106,9.767,30731.98,523543600,-948696593,231.2,22 -Sun Sep 25 07:10:36 PDT 2011,184,106,9.767,30741.74,523544612,-948696823,231.4,22 -Sun Sep 25 07:10:37 PDT 2011,184,107,9.723,30751.47,523545654,-948697054,231.6,22 -Sun Sep 25 07:10:38 PDT 2011,183,106,9.767,30761.23,523546675,-948697286,231.8,22 -Sun Sep 25 07:10:39 PDT 2011,183,106,9.767,30771.08,523547719,-948697497,232.2,22 -Sun Sep 25 07:10:40 PDT 2011,183,106,9.723,30780.76,523548740,-948697729,232.4,22 -Sun Sep 25 07:10:41 PDT 2011,183,98,8.987,30792.17,523549964,-948698030,232.6,22 -Sun Sep 25 07:10:42 PDT 2011,182,98,8.987,30798.7,523550666,-948698180,232.8,22 -Sun Sep 25 07:10:43 PDT 2011,182,97,9.064,30807.77,523551611,-948698382,233.0,22 -Sun Sep 25 07:10:44 PDT 2011,182,99,8.916,30816.68,523552576,-948698596,233.2,22 -Sun Sep 25 07:10:45 PDT 2011,181,100,8.991,30825.67,523553505,-948698865,233.4,22 -Sun Sep 25 07:10:46 PDT 2011,181,102,9.106,30834.78,523554480,-948699098,233.6,22 -Sun Sep 25 07:10:47 PDT 2011,181,102,9.185,30843.96,523555522,-948699344,233.6,22 -Sun Sep 25 07:10:48 PDT 2011,181,104,9.305,30853.27,523556510,-948699623,233.8,22 -Sun Sep 25 07:10:49 PDT 2011,180,105,9.47,30862.74,523557551,-948699860,233.8,22 -Sun Sep 25 07:10:50 PDT 2011,180,105,9.598,30872.34,523558571,-948700077,234.0,22 -Sun Sep 25 07:10:51 PDT 2011,180,105,9.598,30881.93,523559648,-948700284,234.0,22 -Sun Sep 25 07:10:52 PDT 2011,179,105,9.534,30891.47,523560667,-948700476,234.2,22 -Sun Sep 25 07:10:53 PDT 2011,178,0,9.387,30900.85,523561644,-948700670,234.2,22 -Sun Sep 25 07:10:54 PDT 2011,177,102,9.224,30910.08,523562680,-948700881,234.2,22 -Sun Sep 25 07:10:55 PDT 2011,177,103,9.305,30919.38,523563666,-948701086,234.4,22 -Sun Sep 25 07:10:56 PDT 2011,176,45,9.511,30928.89,523564670,-948701305,234.4,22 -Sun Sep 25 07:10:57 PDT 2011,176,107,9.597,30938.49,523565689,-948701517,234.4,22 -Sun Sep 25 07:10:58 PDT 2011,175,107,9.64,30948.13,523566721,-948701744,234.4,22 -Sun Sep 25 07:10:59 PDT 2011,175,107,9.862,30957.99,523567762,-948701934,234.4,22 -Sun Sep 25 07:11:00 PDT 2011,175,110,10.047,30968.04,523568839,-948702140,234.6,22 -Sun Sep 25 07:11:01 PDT 2011,175,103,10.0,30978.04,523569919,-948702380,234.6,22 -Sun Sep 25 07:11:02 PDT 2011,175,103,10.289,30988.33,523571023,-948702697,234.6,22 -Sun Sep 25 07:11:03 PDT 2011,174,94,10.49,30998.82,523572171,-948702974,234.6,22 -Sun Sep 25 07:11:04 PDT 2011,174,96,10.836,31009.66,523573319,-948703275,234.6,22 -Sun Sep 25 07:11:05 PDT 2011,174,97,11.088,31020.79,523574513,-948703547,234.6,22 -Sun Sep 25 07:11:06 PDT 2011,174,83,11.166,31031.91,523575742,-948703808,234.6,22 -Sun Sep 25 07:11:07 PDT 2011,174,99,11.285,31043.2,523576978,-948704094,234.6,22 -Sun Sep 25 07:11:08 PDT 2011,174,99,11.376,31054.57,523578198,-948704371,234.6,22 -Sun Sep 25 07:11:09 PDT 2011,174,26,11.468,31066.04,523579428,-948704728,234.6,22 -Sun Sep 25 07:11:10 PDT 2011,174,100,11.499,31077.54,523580656,-948705041,234.6,22 -Sun Sep 25 07:11:11 PDT 2011,173,101,11.531,31089.07,523581897,-948705375,234.6,22 -Sun Sep 25 07:11:12 PDT 2011,174,103,11.689,31100.76,523583200,-948705681,234.8,22 -Sun Sep 25 07:11:13 PDT 2011,174,93,11.853,31112.61,523584478,-948705945,234.8,22 -Sun Sep 25 07:11:14 PDT 2011,175,93,11.987,31124.6,523585764,-948706224,234.8,22 -Sun Sep 25 07:11:15 PDT 2011,175,29,11.82,31136.42,523587053,-948706505,234.8,22 -Sun Sep 25 07:11:16 PDT 2011,175,104,11.75,31148.17,523588251,-948706891,234.8,22 -Sun Sep 25 07:11:17 PDT 2011,175,104,11.558,31159.73,523589522,-948707259,234.8,22 -Sun Sep 25 07:11:18 PDT 2011,175,104,11.496,31171.22,523590705,-948707603,234.8,22 -Sun Sep 25 07:11:19 PDT 2011,175,0,11.313,31182.54,523591857,-948707958,234.8,22 -Sun Sep 25 07:11:20 PDT 2011,174,108,11.223,31193.76,523593036,-948708225,234.8,22 -Sun Sep 25 07:11:21 PDT 2011,174,107,11.048,31204.81,523594235,-948708454,234.8,22 -Sun Sep 25 07:11:22 PDT 2011,173,106,11.106,31215.91,523595393,-948708668,234.8,22 -Sun Sep 25 07:11:23 PDT 2011,173,107,10.796,31226.71,523596548,-948708910,234.8,22 -Sun Sep 25 07:11:24 PDT 2011,173,105,10.906,31237.62,523597682,-948709136,234.8,22 -Sun Sep 25 07:11:25 PDT 2011,173,95,11.01,31248.63,523598833,-948709377,234.8,22 -Sun Sep 25 07:11:26 PDT 2011,173,95,10.898,31259.53,523599967,-948709622,234.8,22 -Sun Sep 25 07:11:27 PDT 2011,174,106,11.01,31270.54,523601128,-948709888,234.8,22 -Sun Sep 25 07:11:28 PDT 2011,174,108,11.125,31281.66,523602327,-948710165,234.8,22 -Sun Sep 25 07:11:29 PDT 2011,174,110,11.067,31292.73,523603474,-948710434,234.8,22 -Sun Sep 25 07:11:30 PDT 2011,175,109,11.183,31303.91,523604688,-948710723,234.8,22 -Sun Sep 25 07:11:31 PDT 2011,175,109,11.301,31315.21,523605824,-948711029,234.8,22 -Sun Sep 25 07:11:32 PDT 2011,176,110,11.242,31326.45,523607023,-948711360,234.8,22 -Sun Sep 25 07:11:33 PDT 2011,176,81,11.331,31337.78,523608194,-948711678,234.8,22 -Sun Sep 25 07:11:34 PDT 2011,177,81,11.242,31349.03,523609392,-948711981,234.8,22 -Sun Sep 25 07:11:35 PDT 2011,177,81,11.067,31360.09,523610573,-948712243,234.8,22 -Sun Sep 25 07:11:36 PDT 2011,177,103,10.842,31370.93,523611723,-948712487,234.8,22 -Sun Sep 25 07:11:37 PDT 2011,177,103,10.574,31381.51,523612850,-948712719,234.8,22 -Sun Sep 25 07:11:38 PDT 2011,177,106,10.574,31392.08,523614012,-948712968,234.8,22 -Sun Sep 25 07:11:39 PDT 2011,177,106,10.815,31402.9,523615174,-948713209,234.8,22 -Sun Sep 25 07:11:40 PDT 2011,177,106,10.926,31413.82,523616320,-948713447,235.0,22 -Sun Sep 25 07:11:41 PDT 2011,178,108,10.788,31424.61,523617486,-948713681,235.2,22 -Sun Sep 25 07:11:42 PDT 2011,178,111,11.183,31435.79,523618735,-948713933,235.4,22 -Sun Sep 25 07:11:43 PDT 2011,178,112,11.183,31446.98,523619891,-948714141,235.6,22 -Sun Sep 25 07:11:44 PDT 2011,179,112,11.453,31458.43,523621128,-948714347,235.6,22 -Sun Sep 25 07:11:45 PDT 2011,179,112,11.636,31470.93,523622466,-948714600,235.8,22 -Sun Sep 25 07:11:46 PDT 2011,179,110,11.511,31482.44,523623681,-948714897,236.0,22 -Sun Sep 25 07:11:47 PDT 2011,180,110,11.389,31493.88,523624888,-948715291,236.0,22 -Sun Sep 25 07:11:48 PDT 2011,180,110,11.269,31505.08,523626066,-948715624,236.2,22 -Sun Sep 25 07:11:49 PDT 2011,180,91,11.037,31516.12,523627196,-948715902,236.2,22 -Sun Sep 25 07:11:50 PDT 2011,179,91,10.496,31526.66,523628333,-948716146,236.6,22 -Sun Sep 25 07:11:51 PDT 2011,179,89,10.599,31537.37,523629397,-948716403,236.8,22 -Sun Sep 25 07:11:52 PDT 2011,180,89,10.496,31547.82,523630498,-948716622,237.0,22 -Sun Sep 25 07:11:53 PDT 2011,179,94,10.196,31558.03,523631502,-948716821,237.2,22 -Sun Sep 25 07:11:54 PDT 2011,178,109,9.912,31567.95,523632542,-948717088,237.4,22 -Sun Sep 25 07:11:55 PDT 2011,178,111,9.958,31577.94,523633573,-948717319,237.6,22 -Sun Sep 25 07:11:56 PDT 2011,178,112,10.142,31588.05,523634629,-948717575,237.8,22 -Sun Sep 25 07:11:57 PDT 2011,178,112,10.24,31598.29,523635731,-948717837,238.0,22 -Sun Sep 25 07:11:58 PDT 2011,178,101,10.289,31608.51,523636796,-948718083,238.0,22 -Sun Sep 25 07:11:59 PDT 2011,179,102,10.289,31618.81,523637925,-948718292,238.2,22 -Sun Sep 25 07:12:00 PDT 2011,179,102,10.389,31629.17,523639048,-948718499,238.2,22 -Sun Sep 25 07:12:01 PDT 2011,179,102,10.49,31639.62,523640172,-948718702,238.4,22 -Sun Sep 25 07:12:02 PDT 2011,179,91,10.49,31650.1,523641292,-948718961,238.4,22 -Sun Sep 25 07:12:03 PDT 2011,179,98,10.389,31660.47,523642397,-948719191,238.8,22 -Sun Sep 25 07:12:04 PDT 2011,179,98,10.142,31670.63,523643439,-948719437,239.0,22 -Sun Sep 25 07:12:05 PDT 2011,179,98,10.047,31680.67,523644486,-948719717,239.2,22 -Sun Sep 25 07:12:06 PDT 2011,179,98,10.028,31690.74,523645570,-948719964,239.4,22 -Sun Sep 25 07:12:07 PDT 2011,179,99,10.099,31700.85,523646610,-948720208,239.6,22 -Sun Sep 25 07:12:08 PDT 2011,178,99,10.123,31711.01,523647669,-948720459,239.8,22 -Sun Sep 25 07:12:09 PDT 2011,178,98,10.123,31721.1,523648797,-948720736,240.0,22 -Sun Sep 25 07:12:10 PDT 2011,178,98,10.075,31731.23,523649830,-948721023,240.2,22 -Sun Sep 25 07:12:11 PDT 2011,178,98,10.052,31741.29,523650952,-948721301,240.2,22 -Sun Sep 25 07:12:12 PDT 2011,178,23,10.075,31751.37,523651991,-948721567,240.4,22 -Sun Sep 25 07:12:13 PDT 2011,178,101,9.889,31761.27,523653032,-948721821,240.4,22 -Sun Sep 25 07:12:14 PDT 2011,177,109,9.753,31770.97,523654114,-948722038,240.6,22 -Sun Sep 25 07:12:15 PDT 2011,177,100,9.889,31780.86,523655190,-948722248,240.6,22 -Sun Sep 25 07:12:16 PDT 2011,177,102,10.075,31790.93,523656224,-948722451,240.6,22 -Sun Sep 25 07:12:17 PDT 2011,176,104,10.414,31801.34,523657380,-948722707,240.8,22 -Sun Sep 25 07:12:18 PDT 2011,175,106,10.517,31811.86,523658528,-948722965,240.8,22 -Sun Sep 25 07:12:19 PDT 2011,175,109,10.837,31822.67,523659710,-948723256,240.8,22 -Sun Sep 25 07:12:20 PDT 2011,175,106,11.062,31832.88,523660803,-948723546,241.0,22 -Sun Sep 25 07:12:21 PDT 2011,175,97,11.237,31844.12,523662005,-948723834,241.0,22 -Sun Sep 25 07:12:22 PDT 2011,174,106,11.296,31855.42,523663216,-948724127,241.0,22 -Sun Sep 25 07:12:23 PDT 2011,175,112,11.237,31866.65,523664445,-948724452,241.0,22 -Sun Sep 25 07:12:24 PDT 2011,175,116,11.417,31878.07,523665657,-948724820,241.0,22 -Sun Sep 25 07:12:25 PDT 2011,175,120,11.478,31889.55,523666913,-948725181,241.0,22 -Sun Sep 25 07:12:26 PDT 2011,176,120,11.927,31901.48,523668191,-948725573,241.2,22 -Sun Sep 25 07:12:27 PDT 2011,177,109,12.365,31913.87,523669518,-948725968,241.2,22 -Sun Sep 25 07:12:28 PDT 2011,178,111,12.584,31926.43,523670864,-948726330,241.2,22 -Sun Sep 25 07:12:29 PDT 2011,178,111,12.851,31939.28,523672272,-948726625,241.2,22 -Sun Sep 25 07:12:30 PDT 2011,179,111,12.735,31952.01,523673662,-948726933,241.2,22 -Sun Sep 25 07:12:31 PDT 2011,180,0,12.659,31964.67,523675081,-948727193,241.2,22 -Sun Sep 25 07:12:32 PDT 2011,180,105,12.437,31977.11,523676421,-948727460,241.2,22 -Sun Sep 25 07:12:33 PDT 2011,180,105,12.153,31989.26,523677703,-948727736,241.2,22 -Sun Sep 25 07:12:34 PDT 2011,180,107,12.153,32001.41,523679048,-948728008,241.2,22 -Sun Sep 25 07:12:35 PDT 2011,181,108,12.293,32013.71,523680369,-948728292,241.2,22 -Sun Sep 25 07:12:36 PDT 2011,181,110,12.534,32026.24,523681753,-948728580,241.2,22 -Sun Sep 25 07:12:37 PDT 2011,181,110,12.837,32039.08,523683069,-948728940,241.2,22 -Sun Sep 25 07:12:38 PDT 2011,182,110,12.798,32051.88,523684465,-948729274,241.2,22 -Sun Sep 25 07:12:39 PDT 2011,182,107,12.837,32064.72,523685839,-948729605,241.2,22 -Sun Sep 25 07:12:40 PDT 2011,182,105,12.684,32077.4,523687142,-948729937,241.2,22 -Sun Sep 25 07:12:41 PDT 2011,183,102,12.317,32089.72,523688468,-948730246,241.4,22 -Sun Sep 25 07:12:42 PDT 2011,183,105,12.005,32101.72,523689750,-948730555,241.4,22 -Sun Sep 25 07:12:43 PDT 2011,183,113,11.805,32113.53,523691009,-948730850,241.4,22 -Sun Sep 25 07:12:44 PDT 2011,183,115,11.581,32125.2,523692262,-948731167,241.6,22 -Sun Sep 25 07:12:45 PDT 2011,184,101,11.681,32136.79,523693481,-948731467,241.8,22 -Sun Sep 25 07:12:46 PDT 2011,184,105,11.94,32150.34,523694874,-948731816,242.0,22 -Sun Sep 25 07:12:47 PDT 2011,184,107,12.143,32160.84,523695998,-948732143,242.2,22 -Sun Sep 25 07:12:48 PDT 2011,184,109,12.569,32173.56,523697367,-948732519,242.2,22 -Sun Sep 25 07:12:49 PDT 2011,185,108,12.793,32186.2,523698690,-948732846,242.4,22 -Sun Sep 25 07:12:50 PDT 2011,186,110,12.718,32198.92,523700041,-948733078,242.6,22 -Sun Sep 25 07:12:51 PDT 2011,186,111,12.87,32211.79,523701454,-948733393,242.6,22 -Sun Sep 25 07:12:52 PDT 2011,186,112,12.87,32224.66,523702815,-948733711,242.8,22 -Sun Sep 25 07:12:53 PDT 2011,187,113,13.105,32237.77,523704204,-948733995,242.8,22 -Sun Sep 25 07:12:54 PDT 2011,187,113,13.148,32250.91,523705636,-948734304,242.8,22 -Sun Sep 25 07:12:55 PDT 2011,188,113,13.229,32264.14,523707036,-948734640,243.0,22 -Sun Sep 25 07:12:56 PDT 2011,188,115,13.27,32277.41,523708442,-948734945,243.0,22 -Sun Sep 25 07:12:57 PDT 2011,188,115,13.395,32290.81,523709865,-948735252,243.0,22 -Sun Sep 25 07:12:58 PDT 2011,188,116,13.479,32304.29,523711239,-948735556,243.2,22 -Sun Sep 25 07:12:59 PDT 2011,189,110,13.521,32317.81,523712688,-948735877,243.2,22 -Sun Sep 25 07:13:00 PDT 2011,189,110,13.479,32331.29,523714135,-948736216,243.2,22 -Sun Sep 25 07:13:01 PDT 2011,189,111,13.782,32345.07,523715594,-948736570,243.2,22 -Sun Sep 25 07:13:02 PDT 2011,189,111,13.686,32358.75,523717089,-948736905,243.4,22 -Sun Sep 25 07:13:03 PDT 2011,188,111,13.863,32372.62,523718558,-948737200,243.4,22 -Sun Sep 25 07:13:04 PDT 2011,189,0,13.774,32386.39,523720034,-948737522,243.4,22 -Sun Sep 25 07:13:05 PDT 2011,188,0,13.642,32400.03,523721482,-948737822,243.4,22 -Sun Sep 25 07:13:06 PDT 2011,188,0,13.512,32413.54,523722907,-948738121,243.4,22 -Sun Sep 25 07:13:07 PDT 2011,188,0,13.427,32426.97,523724326,-948738474,243.4,22 -Sun Sep 25 07:13:08 PDT 2011,187,0,13.138,32440.11,523725745,-948738800,243.4,22 -Sun Sep 25 07:13:09 PDT 2011,186,0,12.9,32453.01,523727105,-948739102,243.4,21 -Sun Sep 25 07:13:10 PDT 2011,186,103,12.783,32465.79,523728437,-948739384,243.4,21 -Sun Sep 25 07:13:11 PDT 2011,185,104,12.783,32478.58,523729772,-948739644,243.6,21 -Sun Sep 25 07:13:12 PDT 2011,184,105,12.859,32491.44,523731176,-948739910,243.6,21 -Sun Sep 25 07:13:13 PDT 2011,184,105,13.095,32504.53,523732557,-948740191,243.6,21 -Sun Sep 25 07:13:14 PDT 2011,184,106,13.217,32517.75,523733939,-948740554,243.6,21 -Sun Sep 25 07:13:15 PDT 2011,183,106,13.136,32530.88,523735344,-948740866,243.6,21 -Sun Sep 25 07:13:16 PDT 2011,183,106,13.217,32544.1,523736746,-948741199,243.6,21 -Sun Sep 25 07:13:17 PDT 2011,183,0,13.056,32557.16,523738114,-948741551,243.6,21 -Sun Sep 25 07:13:18 PDT 2011,182,0,12.821,32569.98,523739492,-948741885,243.6,21 -Sun Sep 25 07:13:19 PDT 2011,182,0,12.449,32582.43,523740793,-948742157,243.6,21 -Sun Sep 25 07:13:20 PDT 2011,181,0,12.305,32594.73,523742089,-948742438,243.6,21 -Sun Sep 25 07:13:21 PDT 2011,180,102,12.096,32606.83,523743353,-948742728,243.6,21 -Sun Sep 25 07:13:22 PDT 2011,180,103,11.926,32618.75,523744610,-948742984,243.6,21 -Sun Sep 25 07:13:23 PDT 2011,179,104,12.027,32630.78,523745869,-948743219,243.6,21 -Sun Sep 25 07:13:24 PDT 2011,179,105,11.96,32642.74,523747166,-948743481,243.6,21 -Sun Sep 25 07:13:25 PDT 2011,179,107,12.096,32654.84,523748469,-948743809,243.6,21 -Sun Sep 25 07:13:26 PDT 2011,179,108,12.377,32667.22,523749777,-948744057,243.6,21 -Sun Sep 25 07:13:27 PDT 2011,180,108,12.597,32679.81,523751135,-948744329,243.6,21 -Sun Sep 25 07:13:28 PDT 2011,180,108,12.534,32692.35,523752471,-948744634,243.6,21 -Sun Sep 25 07:13:29 PDT 2011,180,101,12.609,32704.96,523753827,-948744953,243.6,21 -Sun Sep 25 07:13:30 PDT 2011,180,101,12.461,32717.42,523755150,-948745262,243.6,21 -Sun Sep 25 07:13:31 PDT 2011,180,101,12.534,32729.95,523756518,-948745572,243.6,21 -Sun Sep 25 07:13:32 PDT 2011,180,101,12.461,32742.41,523757862,-948745818,243.6,21 -Sun Sep 25 07:13:33 PDT 2011,181,101,12.609,32755.02,523759200,-948746071,243.6,21 -Sun Sep 25 07:13:34 PDT 2011,181,25,12.389,32767.41,523760496,-948746328,243.6,21 -Sun Sep 25 07:13:35 PDT 2011,180,105,12.142,32779.55,523761790,-948746582,243.6,21 -Sun Sep 25 07:13:36 PDT 2011,181,105,12.107,32791.66,523763098,-948746834,243.6,21 -Sun Sep 25 07:13:37 PDT 2011,180,103,12.341,32804.0,523764371,-948747086,243.6,21 -Sun Sep 25 07:13:38 PDT 2011,180,103,12.028,32816.02,523765656,-948747325,243.6,21 -Sun Sep 25 07:13:39 PDT 2011,180,100,12.028,32828.05,523766921,-948747601,243.6,21 -Sun Sep 25 07:13:40 PDT 2011,180,100,11.795,32839.85,523768208,-948747867,243.6,21 -Sun Sep 25 07:13:41 PDT 2011,180,101,11.666,32851.51,523769463,-948748093,243.6,21 -Sun Sep 25 07:13:42 PDT 2011,180,102,11.73,32863.24,523770732,-948748332,243.6,21 -Sun Sep 25 07:13:43 PDT 2011,180,102,11.861,32875.1,523771983,-948748552,243.6,21 -Sun Sep 25 07:13:44 PDT 2011,180,103,11.795,32886.9,523773261,-948748776,243.6,21 -Sun Sep 25 07:13:45 PDT 2011,181,103,11.795,32898.7,523774532,-948749023,243.6,21 -Sun Sep 25 07:13:46 PDT 2011,180,103,11.832,32910.53,523775789,-948749337,243.6,21 -Sun Sep 25 07:13:47 PDT 2011,180,23,11.638,32922.16,523777009,-948749624,243.8,21 -Sun Sep 25 07:13:48 PDT 2011,180,107,11.329,32933.49,523778221,-948749882,244.0,21 -Sun Sep 25 07:13:49 PDT 2011,180,107,11.064,32944.55,523779373,-948750127,244.2,21 -Sun Sep 25 07:13:50 PDT 2011,180,107,10.978,32955.53,523780567,-948750370,244.4,21 -Sun Sep 25 07:13:51 PDT 2011,180,106,11.035,32966.57,523781731,-948750627,244.4,21 -Sun Sep 25 07:13:52 PDT 2011,180,104,10.922,32977.49,523782884,-948750845,244.6,21 -Sun Sep 25 07:13:53 PDT 2011,181,106,10.757,32988.25,523784017,-948751084,244.8,21 -Sun Sep 25 07:13:54 PDT 2011,180,107,10.73,32998.98,523785160,-948751352,244.8,21 -Sun Sep 25 07:13:55 PDT 2011,181,106,10.894,33009.87,523786345,-948751617,245.2,21 -Sun Sep 25 07:13:56 PDT 2011,181,105,10.985,33020.86,523787503,-948751859,245.4,21 -Sun Sep 25 07:13:57 PDT 2011,181,104,10.874,33031.73,523788677,-948752109,245.6,21 -Sun Sep 25 07:13:58 PDT 2011,181,105,10.711,33042.44,523789866,-948752339,245.8,21 -Sun Sep 25 07:13:59 PDT 2011,182,106,10.764,33053.21,523791000,-948752549,246.0,21 -Sun Sep 25 07:14:00 PDT 2011,181,107,10.929,33064.14,523792229,-948752765,246.2,21 -Sun Sep 25 07:14:01 PDT 2011,182,107,11.042,33075.18,523793382,-948753031,246.4,21 -Sun Sep 25 07:14:02 PDT 2011,182,107,10.985,33086.16,523794549,-948753313,246.8,21 -Sun Sep 25 07:14:03 PDT 2011,182,108,11.042,33097.21,523795743,-948753581,247.0,21 -Sun Sep 25 07:14:04 PDT 2011,182,108,11.042,33108.25,523796937,-948753851,247.4,21 -Sun Sep 25 07:14:05 PDT 2011,182,109,11.128,33119.38,523798084,-948754120,247.6,21 -Sun Sep 25 07:14:06 PDT 2011,182,111,11.202,33130.58,523799308,-948754394,247.8,21 -Sun Sep 25 07:14:07 PDT 2011,182,112,11.29,33141.87,523800524,-948754613,248.0,21 -Sun Sep 25 07:14:08 PDT 2011,183,114,11.472,33153.34,523801751,-948754752,248.2,21 -Sun Sep 25 07:14:09 PDT 2011,183,115,11.659,33165.0,523803028,-948754939,248.4,21 -Sun Sep 25 07:14:10 PDT 2011,183,116,11.787,33176.79,523804263,-948755082,248.6,21 -Sun Sep 25 07:14:11 PDT 2011,183,112,11.984,33188.77,523805517,-948755173,248.6,21 -Sun Sep 25 07:14:12 PDT 2011,183,103,11.984,33200.76,523806823,-948755193,248.8,21 -Sun Sep 25 07:14:13 PDT 2011,183,103,12.12,33212.88,523808121,-948755187,248.8,21 -Sun Sep 25 07:14:14 PDT 2011,183,103,12.086,33224.97,523809427,-948755133,249.0,21 -Sun Sep 25 07:14:15 PDT 2011,183,104,12.052,33237.02,523810758,-948755044,249.0,21 -Sun Sep 25 07:14:16 PDT 2011,182,104,12.12,33249.14,523812037,-948754929,249.2,21 -Sun Sep 25 07:14:17 PDT 2011,183,105,12.189,33261.36,523813342,-948754746,249.2,21 -Sun Sep 25 07:14:18 PDT 2011,182,106,12.12,33273.45,523814670,-948754533,249.2,21 -Sun Sep 25 07:14:19 PDT 2011,182,122,12.4,33285.84,523815990,-948754267,249.4,21 -Sun Sep 25 07:14:20 PDT 2011,183,123,12.472,33298.32,523817332,-948753939,249.4,21 -Sun Sep 25 07:14:21 PDT 2011,183,123,12.731,33311.05,523818628,-948753534,249.4,21 -Sun Sep 25 07:14:22 PDT 2011,183,25,12.619,33323.66,523819943,-948753135,249.4,21 -Sun Sep 25 07:14:23 PDT 2011,183,118,12.364,33336.03,523821224,-948752780,249.6,21 -Sun Sep 25 07:14:24 PDT 2011,183,108,12.189,33348.22,523822489,-948752438,249.8,21 -Sun Sep 25 07:14:25 PDT 2011,182,108,12.189,33361.44,523823900,-948752080,250.0,21 -Sun Sep 25 07:14:26 PDT 2011,182,108,11.984,33373.34,523825141,-948751788,250.2,21 -Sun Sep 25 07:14:27 PDT 2011,182,0,11.787,33385.1,523826381,-948751529,250.4,21 -Sun Sep 25 07:14:28 PDT 2011,182,101,11.659,33396.79,523827594,-948751270,250.6,21 -Sun Sep 25 07:14:29 PDT 2011,181,102,11.627,33408.42,523828801,-948751017,250.6,21 -Sun Sep 25 07:14:30 PDT 2011,181,104,11.846,33419.33,523829993,-948750793,250.8,21 -Sun Sep 25 07:14:31 PDT 2011,181,106,12.046,33431.38,523831279,-948750549,251.0,21 -Sun Sep 25 07:14:32 PDT 2011,181,106,12.394,33443.77,523832600,-948750299,251.0,21 -Sun Sep 25 07:14:33 PDT 2011,181,106,12.394,33456.17,523833909,-948750005,251.2,21 -Sun Sep 25 07:14:34 PDT 2011,181,106,12.394,33468.56,523835287,-948749709,251.2,21 -Sun Sep 25 07:14:35 PDT 2011,181,112,12.252,33480.82,523836545,-948749428,251.4,21 -Sun Sep 25 07:14:36 PDT 2011,180,118,12.114,33492.93,523837846,-948749152,251.4,21 -Sun Sep 25 07:14:37 PDT 2011,180,118,12.114,33505.04,523839162,-948748864,251.4,21 -Sun Sep 25 07:14:38 PDT 2011,181,105,12.288,33517.33,523840419,-948748576,251.6,21 -Sun Sep 25 07:14:39 PDT 2011,181,106,12.412,33529.74,523841719,-948748276,251.6,21 -Sun Sep 25 07:14:40 PDT 2011,181,106,12.34,33542.08,523843050,-948747970,251.6,21 -Sun Sep 25 07:14:41 PDT 2011,181,106,12.412,33554.49,523844316,-948747670,251.6,21 -Sun Sep 25 07:14:42 PDT 2011,181,106,12.412,33566.9,523845668,-948747355,251.6,21 -Sun Sep 25 07:14:43 PDT 2011,181,106,12.376,33579.28,523846949,-948747087,251.8,21 -Sun Sep 25 07:14:44 PDT 2011,181,106,12.2,33591.48,523848251,-948746832,251.8,21 -Sun Sep 25 07:14:45 PDT 2011,180,0,12.063,33603.54,523849520,-948746601,251.8,21 -Sun Sep 25 07:14:46 PDT 2011,180,0,11.929,33615.47,523850820,-948746368,251.8,21 -Sun Sep 25 07:14:47 PDT 2011,180,100,11.734,33627.2,523852059,-948746157,251.8,21 -Sun Sep 25 07:14:48 PDT 2011,180,101,11.778,33638.98,523853326,-948745953,251.8,21 -Sun Sep 25 07:14:49 PDT 2011,179,102,11.778,33650.86,523854593,-948745864,251.8,21 -Sun Sep 25 07:14:50 PDT 2011,180,103,11.975,33667.0,523856317,-948745786,251.8,21 -Sun Sep 25 07:14:51 PDT 2011,179,102,11.975,33674.74,523857159,-948745748,251.8,21 -Sun Sep 25 07:14:52 PDT 2011,179,102,12.109,33686.97,523858490,-948745790,251.8,21 -Sun Sep 25 07:14:53 PDT 2011,179,102,12.178,33699.16,523859782,-948745834,252.0,21 -Sun Sep 25 07:14:54 PDT 2011,178,23,12.042,33711.47,523861071,-948745915,252.0,21 -Sun Sep 25 07:14:55 PDT 2011,178,23,11.843,33722.89,523862324,-948746004,252.0,21 -Sun Sep 25 07:14:56 PDT 2011,177,23,11.908,33734.79,523863608,-948746177,252.0,21 -Sun Sep 25 07:14:57 PDT 2011,176,110,11.843,33746.64,523864847,-948746374,252.0,21 -Sun Sep 25 07:14:58 PDT 2011,176,103,11.843,33758.48,523866115,-948746584,252.0,21 -Sun Sep 25 07:14:59 PDT 2011,176,103,11.975,33770.46,523867376,-948746834,252.0,21 -Sun Sep 25 07:15:00 PDT 2011,176,103,12.212,33782.67,523868683,-948747108,252.0,21 -Sun Sep 25 07:15:01 PDT 2011,176,99,12.317,33794.98,523869976,-948747428,252.0,21 -Sun Sep 25 07:15:02 PDT 2011,176,101,12.388,33807.37,523871278,-948747772,252.0,21 -Sun Sep 25 07:15:03 PDT 2011,176,103,12.532,33819.9,523872619,-948748125,252.0,21 -Sun Sep 25 07:15:04 PDT 2011,176,105,12.83,33832.73,523873999,-948748550,252.0,21 -Sun Sep 25 07:15:05 PDT 2011,176,107,13.143,33845.88,523875338,-948748918,252.0,21 -Sun Sep 25 07:15:06 PDT 2011,176,103,13.305,33859.18,523876764,-948749345,252.0,21 -Sun Sep 25 07:15:07 PDT 2011,176,103,13.599,33872.78,523878242,-948749732,252.0,21 -Sun Sep 25 07:15:08 PDT 2011,175,103,13.906,33886.68,523879697,-948750180,251.8,21 -Sun Sep 25 07:15:09 PDT 2011,175,0,13.996,33900.68,523881210,-948750595,251.6,21 -Sun Sep 25 07:15:10 PDT 2011,174,0,14.088,33914.77,523882699,-948751005,251.4,21 -Sun Sep 25 07:15:11 PDT 2011,174,0,14.322,33929.09,523884184,-948751399,251.2,21 -Sun Sep 25 07:15:12 PDT 2011,172,0,14.247,33943.34,523885737,-948751844,251.2,21 -Sun Sep 25 07:15:13 PDT 2011,170,103,14.39,33957.73,523887243,-948752230,250.8,21 -Sun Sep 25 07:15:14 PDT 2011,170,103,14.636,33972.36,523888757,-948752668,250.4,21 -Sun Sep 25 07:15:15 PDT 2011,170,97,14.89,33987.25,523890423,-948753224,250.2,21 -Sun Sep 25 07:15:16 PDT 2011,170,97,15.207,34002.46,523892062,-948753731,249.8,21 -Sun Sep 25 07:15:17 PDT 2011,170,97,15.316,34017.78,523893659,-948754168,249.6,21 -Sun Sep 25 07:15:18 PDT 2011,169,0,15.481,34033.26,523895322,-948754633,249.2,21 -Sun Sep 25 07:15:19 PDT 2011,169,0,15.526,34048.79,523896957,-948755020,248.8,21 -Sun Sep 25 07:15:20 PDT 2011,169,0,15.639,34064.43,523898630,-948755485,248.4,21 -Sun Sep 25 07:15:21 PDT 2011,169,0,15.696,34080.12,523900301,-948755927,248.0,21 -Sun Sep 25 07:15:22 PDT 2011,168,0,15.753,34095.88,523901941,-948756388,247.4,21 -Sun Sep 25 07:15:23 PDT 2011,167,0,15.928,34111.8,523903644,-948756848,247.0,21 -Sun Sep 25 07:15:24 PDT 2011,166,0,16.047,34127.85,523905364,-948757311,246.6,21 -Sun Sep 25 07:15:25 PDT 2011,165,0,16.107,34143.96,523907083,-948757783,246.0,21 -Sun Sep 25 07:15:26 PDT 2011,165,0,16.229,34160.19,523908796,-948758274,245.4,21 -Sun Sep 25 07:15:27 PDT 2011,164,0,16.243,34176.43,523910516,-948758782,244.8,21 -Sun Sep 25 07:15:28 PDT 2011,163,0,16.368,34192.86,523912264,-948759270,244.4,21 -Sun Sep 25 07:15:29 PDT 2011,163,0,16.243,34209.04,523913921,-948759702,243.8,21 -Sun Sep 25 07:15:30 PDT 2011,161,0,16.122,34225.16,523915660,-948760201,243.2,21 -Sun Sep 25 07:15:31 PDT 2011,161,0,16.003,34241.17,523917307,-948760661,242.6,21 -Sun Sep 25 07:15:32 PDT 2011,159,0,15.711,34256.88,523918955,-948761143,242.2,21 -Sun Sep 25 07:15:33 PDT 2011,158,0,15.597,34272.48,523920597,-948761655,241.8,21 -Sun Sep 25 07:15:34 PDT 2011,157,0,15.429,34287.91,523922210,-948762146,241.4,21 -Sun Sep 25 07:15:35 PDT 2011,157,0,15.158,34303.06,523923774,-948762594,241.0,21 -Sun Sep 25 07:15:36 PDT 2011,157,0,15.104,34318.17,523925388,-948763061,240.8,21 -Sun Sep 25 07:15:37 PDT 2011,157,0,14.895,34333.06,523926919,-948763492,240.4,21 -Sun Sep 25 07:15:38 PDT 2011,157,0,14.543,34347.61,523928464,-948763938,240.0,21 -Sun Sep 25 07:15:39 PDT 2011,157,0,14.445,34362.05,523929937,-948764333,239.6,21 -Sun Sep 25 07:15:40 PDT 2011,156,0,14.068,34376.12,523931367,-948764762,239.2,21 -Sun Sep 25 07:15:41 PDT 2011,156,94,13.992,34390.11,523932775,-948765157,238.8,21 -Sun Sep 25 07:15:42 PDT 2011,156,94,13.902,34404.01,523934284,-948765605,238.6,21 -Sun Sep 25 07:15:43 PDT 2011,157,93,13.902,34417.91,523935695,-948765990,238.2,21 -Sun Sep 25 07:15:44 PDT 2011,157,93,13.858,34431.77,523937109,-948766415,238.0,21 -Sun Sep 25 07:15:45 PDT 2011,157,93,13.726,34445.5,523938557,-948766802,237.8,21 -Sun Sep 25 07:15:46 PDT 2011,157,93,13.814,34459.31,523939984,-948767202,237.6,21 -Sun Sep 25 07:15:47 PDT 2011,158,93,13.814,34473.43,523941418,-948767621,237.4,21 -Sun Sep 25 07:15:48 PDT 2011,158,95,13.726,34486.86,523942847,-948768017,237.2,21 -Sun Sep 25 07:15:49 PDT 2011,159,104,13.612,34500.47,523944263,-948768473,237.2,21 -Sun Sep 25 07:15:50 PDT 2011,160,105,13.612,34514.08,523945721,-948768932,237.0,21 -Sun Sep 25 07:15:51 PDT 2011,161,106,14.194,34528.28,523947185,-948769387,236.8,21 -Sun Sep 25 07:15:52 PDT 2011,162,96,14.383,34542.66,523948697,-948769838,236.8,21 -Sun Sep 25 07:15:53 PDT 2011,163,96,14.383,34557.04,523950169,-948770324,236.6,21 -Sun Sep 25 07:15:54 PDT 2011,164,96,14.194,34571.24,523951648,-948770726,236.6,21 -Sun Sep 25 07:15:55 PDT 2011,164,96,13.83,34585.07,523953117,-948771130,236.6,21 -Sun Sep 25 07:15:56 PDT 2011,164,0,13.612,34598.68,523954556,-948771499,236.4,21 -Sun Sep 25 07:15:57 PDT 2011,163,0,13.318,34612.0,523955927,-948771930,236.4,21 -Sun Sep 25 07:15:58 PDT 2011,163,0,12.919,34624.91,523957287,-948772332,236.4,21 -Sun Sep 25 07:15:59 PDT 2011,163,0,12.617,34637.53,523958569,-948772688,236.2,21 -Sun Sep 25 07:16:00 PDT 2011,162,0,12.471,34650.0,523959858,-948773058,236.2,21 -Sun Sep 25 07:16:01 PDT 2011,162,0,12.224,34662.25,523961086,-948773430,236.2,21 -Sun Sep 25 07:16:02 PDT 2011,161,93,11.789,34674.02,523962303,-948773754,236.2,21 -Sun Sep 25 07:16:03 PDT 2011,161,100,11.631,34685.71,523963498,-948774081,236.2,21 -Sun Sep 25 07:16:04 PDT 2011,161,100,11.662,34697.31,523964707,-948774426,236.0,21 -Sun Sep 25 07:16:05 PDT 2011,162,100,11.725,34709.04,523965903,-948774753,236.0,21 -Sun Sep 25 07:16:06 PDT 2011,162,99,11.725,34720.77,523967098,-948775058,236.0,21 -Sun Sep 25 07:16:07 PDT 2011,162,99,11.725,34732.49,523968316,-948775382,236.0,21 -Sun Sep 25 07:16:08 PDT 2011,162,99,11.647,34744.14,523969543,-948775708,236.0,21 -Sun Sep 25 07:16:09 PDT 2011,163,99,11.679,34755.82,523970755,-948776060,236.0,21 -Sun Sep 25 07:16:10 PDT 2011,163,100,11.679,34767.5,523971960,-948776395,236.0,21 -Sun Sep 25 07:16:11 PDT 2011,163,99,11.742,34779.24,523973163,-948776706,236.0,21 -Sun Sep 25 07:16:12 PDT 2011,163,100,11.742,34790.98,523974377,-948776997,236.0,21 -Sun Sep 25 07:16:13 PDT 2011,164,100,11.679,34802.66,523975618,-948777297,236.0,21 -Sun Sep 25 07:16:14 PDT 2011,164,102,11.806,34814.47,523976846,-948777611,236.0,21 -Sun Sep 25 07:16:15 PDT 2011,165,105,11.871,34826.34,523978108,-948777970,236.0,21 -Sun Sep 25 07:16:16 PDT 2011,166,106,12.241,34838.58,523979400,-948778351,235.8,21 -Sun Sep 25 07:16:17 PDT 2011,166,106,12.489,34851.07,523980691,-948778715,235.8,21 -Sun Sep 25 07:16:18 PDT 2011,167,106,12.489,34863.56,523981992,-948779088,235.8,21 -Sun Sep 25 07:16:19 PDT 2011,168,106,12.346,34875.91,523983278,-948779438,235.8,21 -Sun Sep 25 07:16:20 PDT 2011,168,0,12.104,34888.01,523984541,-948779777,235.8,21 -Sun Sep 25 07:16:21 PDT 2011,169,0,11.871,34899.88,523985766,-948780093,235.8,21 -Sun Sep 25 07:16:22 PDT 2011,168,0,11.616,34911.55,523986979,-948780418,235.8,21 -Sun Sep 25 07:16:23 PDT 2011,168,0,11.312,34922.81,523988126,-948780718,235.8,21 -Sun Sep 25 07:16:24 PDT 2011,168,0,11.023,34933.84,523989257,-948781024,235.8,21 -Sun Sep 25 07:16:25 PDT 2011,168,103,10.749,34944.59,523990367,-948781329,235.8,21 -Sun Sep 25 07:16:26 PDT 2011,168,103,10.643,34955.23,523991466,-948781662,235.8,21 -Sun Sep 25 07:16:27 PDT 2011,168,102,10.696,34965.93,523992552,-948781989,235.8,21 -Sun Sep 25 07:16:28 PDT 2011,168,93,10.653,34976.58,523993628,-948782302,235.8,21 -Sun Sep 25 07:16:29 PDT 2011,169,93,10.601,34987.18,523994731,-948782608,235.8,21 -Sun Sep 25 07:16:30 PDT 2011,169,93,10.447,34997.63,523995799,-948782880,235.8,21 -Sun Sep 25 07:16:31 PDT 2011,168,20,10.249,35007.88,523996866,-948783149,235.8,21 -Sun Sep 25 07:16:32 PDT 2011,168,100,10.106,35017.98,523997939,-948783427,235.8,21 -Sun Sep 25 07:16:33 PDT 2011,168,101,10.347,35028.33,523999025,-948783685,235.8,21 -Sun Sep 25 07:16:34 PDT 2011,167,101,10.498,35038.82,524000090,-948783950,235.8,21 -Sun Sep 25 07:16:35 PDT 2011,167,101,10.498,35049.32,524001167,-948784225,235.8,21 -Sun Sep 25 07:16:36 PDT 2011,167,101,10.422,35059.74,524002234,-948784485,235.8,21 -Sun Sep 25 07:16:37 PDT 2011,167,19,10.249,35070.0,524003328,-948784744,235.8,21 -Sun Sep 25 07:16:38 PDT 2011,166,97,10.115,35080.11,524004376,-948785010,235.8,21 -Sun Sep 25 07:16:39 PDT 2011,166,97,10.139,35090.25,524005429,-948785298,235.8,21 -Sun Sep 25 07:16:40 PDT 2011,165,97,10.139,35100.39,524006483,-948785598,235.8,21 -Sun Sep 25 07:16:41 PDT 2011,164,0,9.975,35110.4,524007509,-948785920,235.8,21 -Sun Sep 25 07:16:42 PDT 2011,164,0,9.839,35120.2,524008513,-948786241,235.8,21 -Sun Sep 25 07:16:43 PDT 2011,164,92,9.664,35129.87,524009497,-948786526,236.0,21 -Sun Sep 25 07:16:44 PDT 2011,163,95,9.578,35139.45,524010511,-948786797,236.2,21 -Sun Sep 25 07:16:45 PDT 2011,163,95,9.795,35149.24,524011545,-948787052,236.4,21 -Sun Sep 25 07:16:46 PDT 2011,163,95,9.884,35159.13,524012586,-948787296,236.6,21 -Sun Sep 25 07:16:47 PDT 2011,163,95,9.884,35169.01,524013595,-948787513,236.6,21 -Sun Sep 25 07:16:48 PDT 2011,163,95,9.884,35178.89,524014604,-948787770,236.8,21 -Sun Sep 25 07:16:49 PDT 2011,163,21,9.693,35188.58,524015621,-948788046,237.0,21 -Sun Sep 25 07:16:50 PDT 2011,162,103,9.439,35198.02,524016616,-948788329,237.0,21 -Sun Sep 25 07:16:51 PDT 2011,162,105,9.522,35207.54,524017630,-948788632,237.2,21 -Sun Sep 25 07:16:52 PDT 2011,162,106,9.607,35217.15,524018630,-948788936,237.2,21 -Sun Sep 25 07:16:53 PDT 2011,163,109,9.781,35226.93,524019651,-948789232,237.2,21 -Sun Sep 25 07:16:54 PDT 2011,163,105,10.054,35236.98,524020706,-948789531,237.4,21 -Sun Sep 25 07:16:55 PDT 2011,164,98,10.196,35250.05,524022113,-948789868,237.4,21 -Sun Sep 25 07:16:56 PDT 2011,164,99,10.196,35257.49,524022894,-948790057,237.4,21 -Sun Sep 25 07:16:57 PDT 2011,164,98,10.293,35267.77,524023963,-948790300,237.4,21 -Sun Sep 25 07:16:58 PDT 2011,164,98,10.293,35278.11,524025053,-948790558,237.6,21 -Sun Sep 25 07:16:59 PDT 2011,164,98,10.196,35288.16,524026107,-948790807,237.6,21 -Sun Sep 25 07:17:00 PDT 2011,164,98,10.148,35298.35,524027162,-948791059,237.6,21 -Sun Sep 25 07:17:01 PDT 2011,164,98,10.259,35308.57,524028234,-948791344,237.6,21 -Sun Sep 25 07:17:02 PDT 2011,164,97,10.211,35318.78,524029282,-948791649,237.6,21 -Sun Sep 25 07:17:03 PDT 2011,164,109,10.021,35328.8,524030328,-948791972,237.6,21 -Sun Sep 25 07:17:04 PDT 2011,164,96,10.115,35338.91,524031394,-948792246,237.8,21 -Sun Sep 25 07:17:05 PDT 2011,164,96,10.115,35349.02,524032464,-948792517,237.8,21 -Sun Sep 25 07:17:06 PDT 2011,163,97,9.975,35359.0,524033496,-948792797,237.8,21 -Sun Sep 25 07:17:07 PDT 2011,163,105,10.068,35369.07,524034573,-948793073,237.8,21 -Sun Sep 25 07:17:08 PDT 2011,163,110,10.163,35379.23,524035638,-948793368,237.8,21 -Sun Sep 25 07:17:09 PDT 2011,163,109,10.259,35389.49,524036719,-948793655,237.8,21 -Sun Sep 25 07:17:10 PDT 2011,164,97,10.308,35399.8,524037814,-948793914,237.8,21 -Sun Sep 25 07:17:11 PDT 2011,164,96,10.235,35410.03,524038912,-948794153,237.8,21 -Sun Sep 25 07:17:12 PDT 2011,164,94,9.929,35419.96,524039941,-948794388,238.0,21 -Sun Sep 25 07:17:13 PDT 2011,164,103,9.839,35429.8,524040985,-948794634,238.2,21 -Sun Sep 25 07:17:14 PDT 2011,164,102,9.707,35439.51,524041997,-948794873,238.4,21 -Sun Sep 25 07:17:15 PDT 2011,165,99,9.452,35448.96,524042977,-948795086,238.6,21 -Sun Sep 25 07:17:16 PDT 2011,165,98,9.536,35458.5,524043914,-948795326,238.8,21 -Sun Sep 25 07:17:17 PDT 2011,166,97,9.172,35467.67,524044840,-948795594,238.8,21 -Sun Sep 25 07:17:18 PDT 2011,166,106,8.982,35476.65,524045737,-948795881,239.0,21 -Sun Sep 25 07:17:19 PDT 2011,166,105,8.945,35485.62,524046647,-948796140,239.2,21 -Sun Sep 25 07:17:20 PDT 2011,166,105,8.871,35494.47,524047545,-948796397,239.4,21 -Sun Sep 25 07:17:21 PDT 2011,167,105,8.945,35503.41,524048430,-948796648,239.8,21 -Sun Sep 25 07:17:22 PDT 2011,167,105,8.871,35512.28,524049346,-948796886,240.0,21 -Sun Sep 25 07:17:23 PDT 2011,167,105,8.799,35521.08,524050266,-948797142,240.2,21 -Sun Sep 25 07:17:24 PDT 2011,168,103,8.789,35529.87,524051179,-948797400,240.4,21 -Sun Sep 25 07:17:25 PDT 2011,168,103,8.718,35538.59,524052071,-948797663,240.6,21 -Sun Sep 25 07:17:26 PDT 2011,169,94,8.683,35547.27,524052972,-948797902,240.8,21 -Sun Sep 25 07:17:27 PDT 2011,169,96,8.718,35555.99,524053861,-948798155,241.2,21 -Sun Sep 25 07:17:28 PDT 2011,169,96,8.825,35564.82,524054792,-948798426,241.6,21 -Sun Sep 25 07:17:29 PDT 2011,170,97,8.935,35573.75,524055705,-948798683,241.8,21 -Sun Sep 25 07:17:30 PDT 2011,170,98,8.972,35582.72,524056636,-948798913,242.2,21 -Sun Sep 25 07:17:31 PDT 2011,171,99,9.124,35591.85,524057601,-948799168,242.4,21 -Sun Sep 25 07:17:32 PDT 2011,171,99,9.124,35600.97,524058568,-948799430,242.6,21 -Sun Sep 25 07:17:33 PDT 2011,171,99,9.01,35609.98,524059513,-948799667,242.8,21 -Sun Sep 25 07:17:34 PDT 2011,170,0,8.825,35618.81,524060459,-948799917,243.0,21 -Sun Sep 25 07:17:35 PDT 2011,170,94,8.683,35627.49,524061370,-948800174,243.0,21 -Sun Sep 25 07:17:36 PDT 2011,170,90,8.726,35636.22,524062297,-948800409,243.2,21 -Sun Sep 25 07:17:37 PDT 2011,170,90,8.762,35644.98,524063198,-948800642,243.4,21 -Sun Sep 25 07:17:38 PDT 2011,170,90,8.656,35653.66,524064107,-948800902,243.4,21 -Sun Sep 25 07:17:39 PDT 2011,169,0,8.587,35662.23,524064996,-948801150,243.6,21 -Sun Sep 25 07:17:40 PDT 2011,168,0,8.354,35670.58,524065891,-948801390,243.6,21 -Sun Sep 25 07:17:41 PDT 2011,167,0,7.924,35678.51,524066695,-948801547,243.8,21 -Sun Sep 25 07:17:42 PDT 2011,166,0,7.838,35686.35,524067520,-948801727,243.8,21 -Sun Sep 25 07:17:43 PDT 2011,165,0,7.781,35694.13,524068322,-948801905,243.8,21 -Sun Sep 25 07:17:44 PDT 2011,164,0,7.589,35701.72,524069075,-948802071,244.0,21 -Sun Sep 25 07:17:45 PDT 2011,163,0,7.282,35709.0,524069815,-948802229,244.0,21 -Sun Sep 25 07:17:46 PDT 2011,162,0,7.09,35716.09,524070537,-948802427,244.0,21 -Sun Sep 25 07:17:47 PDT 2011,161,0,6.953,35723.04,524071247,-948802634,244.2,21 -Sun Sep 25 07:17:48 PDT 2011,159,0,6.975,35730.02,524071924,-948802920,244.2,21 -Sun Sep 25 07:17:49 PDT 2011,158,0,6.953,35736.97,524072615,-948803226,244.2,21 -Sun Sep 25 07:17:50 PDT 2011,158,0,6.953,35743.93,524073260,-948803430,244.2,21 -Sun Sep 25 07:17:51 PDT 2011,157,0,6.415,35750.34,524073908,-948803670,244.2,21 -Sun Sep 25 07:17:52 PDT 2011,157,0,6.453,35756.79,524074597,-948803850,244.2,21 -Sun Sep 25 07:17:53 PDT 2011,157,0,6.864,35763.66,524075276,-948804043,244.2,21 -Sun Sep 25 07:17:54 PDT 2011,156,0,6.694,35770.35,524075959,-948804237,244.4,21 -Sun Sep 25 07:17:55 PDT 2011,156,0,6.551,35776.9,524076617,-948804463,244.4,21 -Sun Sep 25 07:17:56 PDT 2011,155,0,6.396,35783.3,524077304,-948804604,244.4,21 -Sun Sep 25 07:17:57 PDT 2011,155,0,6.321,35789.64,524077967,-948804713,244.4,21 -Sun Sep 25 07:17:58 PDT 2011,154,0,6.247,35795.86,524078576,-948804864,244.4,21 -Sun Sep 25 07:17:59 PDT 2011,154,0,5.987,35801.85,524079181,-948805060,244.4,21 -Sun Sep 25 07:18:00 PDT 2011,153,0,5.921,35807.77,524079804,-948805139,244.4,21 -Sun Sep 25 07:18:01 PDT 2011,153,0,5.889,35813.66,524080397,-948805274,244.4,21 -Sun Sep 25 07:18:02 PDT 2011,152,0,5.889,35819.55,524081038,-948805445,244.4,21 -Sun Sep 25 07:18:03 PDT 2011,151,0,5.873,35825.43,524081669,-948805609,244.4,21 -Sun Sep 25 07:18:04 PDT 2011,150,0,5.921,35831.35,524082321,-948805783,244.4,21 -Sun Sep 25 07:18:05 PDT 2011,149,0,5.987,35837.34,524082945,-948805955,244.4,21 -Sun Sep 25 07:18:06 PDT 2011,148,0,5.748,35843.08,524083547,-948806107,244.4,21 -Sun Sep 25 07:18:07 PDT 2011,147,0,5.732,35848.81,524084125,-948806257,244.4,21 -Sun Sep 25 07:18:08 PDT 2011,147,0,5.47,35854.28,524084697,-948806392,244.4,21 -Sun Sep 25 07:18:09 PDT 2011,147,0,5.231,35859.51,524085204,-948806520,244.4,21 -Sun Sep 25 07:18:10 PDT 2011,146,0,4.5,35864.01,524085626,-948806619,244.4,21 -Sun Sep 25 07:18:11 PDT 2011,146,0,4.067,35868.08,524085989,-948806701,244.4,21 -Sun Sep 25 07:18:12 PDT 2011,146,0,3.336,35871.41,524086300,-948806742,244.4,21 -Sun Sep 25 07:18:13 PDT 2011,145,0,3.04,35874.45,524086559,-948806808,244.4,21 -Sun Sep 25 07:18:14 PDT 2011,145,0,2.843,35877.3,524086775,-948806870,244.4,21 -Sun Sep 25 07:18:15 PDT 2011,145,0,2.512,35879.81,524086978,-948806936,244.4,21 -Sun Sep 25 07:18:16 PDT 2011,145,0,2.403,35882.22,524087120,-948806932,244.4,21 -Sun Sep 25 07:18:17 PDT 2011,145,0,1.782,35883.99,524087266,-948806975,244.4,21 -Sun Sep 25 07:18:18 PDT 2011,146,0,1.782,35885.77,524087363,-948806985,244.4,21 -Sun Sep 25 07:18:19 PDT 2011,146,0,1.407,35887.18,524087367,-948806958,244.4,21 -Sun Sep 25 07:18:56 PDT 2011,145,0,1.301,35887.18,524087838,-948806819,244.6,21 -Sun Sep 25 07:18:57 PDT 2011,146,26,1.889,35889.11,524088223,-948806770,244.6,21 -Sun Sep 25 07:18:58 PDT 2011,147,39,1.889,35890.96,524088617,-948806618,244.6,21 -Sun Sep 25 07:18:59 PDT 2011,148,39,3.94,35896.15,524089166,-948806307,244.6,21 -Sun Sep 25 07:19:00 PDT 2011,148,39,3.94,35898.88,524089419,-948806121,244.6,21 -Sun Sep 25 07:19:01 PDT 2011,149,0,3.984,35902.85,524089847,-948806101,244.6,21 -Sun Sep 25 07:19:02 PDT 2011,150,0,3.678,35906.53,524090126,-948806257,244.6,21 -Sun Sep 25 07:19:03 PDT 2011,150,40,3.183,35909.69,524090477,-948806462,244.6,21 -Sun Sep 25 07:19:04 PDT 2011,151,49,3.58,35913.27,524090857,-948806889,244.6,21 -Sun Sep 25 07:19:05 PDT 2011,152,57,4.399,35917.66,524091323,-948807363,244.6,21 -Sun Sep 25 07:19:06 PDT 2011,153,63,5.132,35922.8,524091901,-948807681,244.6,21 -Sun Sep 25 07:19:07 PDT 2011,153,67,5.702,35928.5,524092478,-948808078,244.6,21 -Sun Sep 25 07:19:08 PDT 2011,153,74,6.141,35934.64,524093169,-948808475,244.6,21 -Sun Sep 25 07:19:09 PDT 2011,154,85,6.799,35941.44,524093962,-948808815,244.6,21 -Sun Sep 25 07:19:10 PDT 2011,155,89,7.866,35949.31,524094885,-948809091,244.6,21 -Sun Sep 25 07:19:11 PDT 2011,156,89,8.258,35957.57,524095767,-948809411,244.6,21 -Sun Sep 25 07:19:12 PDT 2011,157,89,8.691,35966.26,524096725,-948809693,244.6,21 -Sun Sep 25 07:19:13 PDT 2011,157,0,8.486,35974.75,524097660,-948809931,244.6,21 -Sun Sep 25 07:19:14 PDT 2011,158,0,8.486,35983.23,524098585,-948810211,244.6,21 -Sun Sep 25 07:19:15 PDT 2011,158,0,8.553,35991.79,524099488,-948810534,244.6,21 -Sun Sep 25 07:19:16 PDT 2011,158,86,8.553,36000.34,524100391,-948810876,244.6,21 -Sun Sep 25 07:19:17 PDT 2011,159,86,8.762,36009.1,524101319,-948811240,244.6,21 -Sun Sep 25 07:19:18 PDT 2011,159,86,9.056,36018.16,524102244,-948811589,244.6,21 -Sun Sep 25 07:19:19 PDT 2011,159,0,9.095,36027.25,524103209,-948811919,244.6,21 -Sun Sep 25 07:19:20 PDT 2011,159,0,9.133,36036.38,524104193,-948812203,244.2,21 -Sun Sep 25 07:19:21 PDT 2011,159,0,9.116,36045.5,524105149,-948812516,244.0,21 -Sun Sep 25 07:19:22 PDT 2011,158,0,9.001,36054.5,524106144,-948812789,243.8,21 -Sun Sep 25 07:19:23 PDT 2011,158,0,9.001,36063.5,524107107,-948813050,243.8,21 -Sun Sep 25 07:19:24 PDT 2011,158,0,8.964,36072.47,524108077,-948813266,243.6,21 -Sun Sep 25 07:19:25 PDT 2011,158,0,8.871,36081.34,524109000,-948813496,243.4,21 -Sun Sep 25 07:19:26 PDT 2011,157,0,8.64,36089.98,524109916,-948813716,243.4,21 -Sun Sep 25 07:19:27 PDT 2011,155,0,8.274,36098.25,524110794,-948813942,243.2,21 -Sun Sep 25 07:19:28 PDT 2011,154,85,8.274,36106.52,524111667,-948814186,243.0,21 -Sun Sep 25 07:19:29 PDT 2011,154,87,8.571,36115.09,524112563,-948814429,243.0,21 -Sun Sep 25 07:19:30 PDT 2011,154,83,8.927,36124.02,524113547,-948814706,243.0,21 -Sun Sep 25 07:19:31 PDT 2011,154,83,9.233,36133.25,524114534,-948814934,242.8,21 -Sun Sep 25 07:19:32 PDT 2011,154,83,9.604,36142.87,524115573,-948815193,242.6,21 -Sun Sep 25 07:19:33 PDT 2011,154,0,9.575,36152.43,524116603,-948815495,242.2,21 -Sun Sep 25 07:19:34 PDT 2011,154,0,9.748,36162.18,524117610,-948815750,242.0,21 -Sun Sep 25 07:19:35 PDT 2011,154,0,9.883,36172.1,524118665,-948816026,241.8,21 -Sun Sep 25 07:19:36 PDT 2011,154,89,10.162,36182.22,524119752,-948816339,241.6,21 -Sun Sep 25 07:19:37 PDT 2011,154,89,10.665,36192.89,524120871,-948816677,241.2,21 -Sun Sep 25 07:19:38 PDT 2011,154,23,10.881,36203.77,524122053,-948816979,241.0,21 -Sun Sep 25 07:19:39 PDT 2011,155,94,11.163,36214.93,524123258,-948817289,240.6,21 -Sun Sep 25 07:19:40 PDT 2011,155,94,11.46,36226.39,524124547,-948817588,240.4,21 -Sun Sep 25 07:19:41 PDT 2011,155,94,11.837,36238.23,524125819,-948817951,240.2,21 -Sun Sep 25 07:19:42 PDT 2011,155,0,12.07,36250.3,524127157,-948818279,239.6,21 -Sun Sep 25 07:19:43 PDT 2011,154,0,12.125,36262.43,524128427,-948818624,239.2,21 -Sun Sep 25 07:19:44 PDT 2011,153,0,12.023,36274.45,524129754,-948818969,239.0,21 -Sun Sep 25 07:19:45 PDT 2011,152,0,12.023,36286.47,524131062,-948819269,238.6,21 -Sun Sep 25 07:19:46 PDT 2011,151,0,12.023,36298.5,524132368,-948819602,238.4,21 -Sun Sep 25 07:19:47 PDT 2011,151,0,11.956,36310.45,524133622,-948819934,238.0,21 -Sun Sep 25 07:19:48 PDT 2011,150,0,11.889,36322.34,524134905,-948820295,237.8,21 -Sun Sep 25 07:19:49 PDT 2011,149,0,11.889,36334.23,524136174,-948820656,237.6,21 -Sun Sep 25 07:19:50 PDT 2011,148,0,11.631,36345.87,524137389,-948820992,237.2,21 -Sun Sep 25 07:19:51 PDT 2011,147,0,11.383,36357.26,524138595,-948821279,236.8,21 -Sun Sep 25 07:19:52 PDT 2011,147,0,11.205,36368.46,524139768,-948821531,236.6,21 -Sun Sep 25 07:19:53 PDT 2011,147,0,10.981,36379.44,524140851,-948821863,236.2,21 -Sun Sep 25 07:19:54 PDT 2011,146,0,10.551,36389.99,524141952,-948822161,236.0,21 -Sun Sep 25 07:19:55 PDT 2011,146,0,9.965,36399.95,524142959,-948822424,235.8,21 -Sun Sep 25 07:19:56 PDT 2011,146,0,9.609,36409.56,524143953,-948822675,235.6,21 -Sun Sep 25 07:19:57 PDT 2011,146,0,9.566,36419.13,524144921,-948822936,235.4,21 -Sun Sep 25 07:19:58 PDT 2011,146,0,9.609,36428.74,524145878,-948823160,235.2,21 -Sun Sep 25 07:19:59 PDT 2011,146,0,9.488,36438.23,524146860,-948823409,235.0,21 -Sun Sep 25 07:20:00 PDT 2011,146,77,9.198,36447.43,524147821,-948823636,235.0,21 -Sun Sep 25 07:20:01 PDT 2011,146,81,9.159,36456.59,524148795,-948823859,234.8,21 -Sun Sep 25 07:20:02 PDT 2011,147,83,9.399,36465.98,524149799,-948824086,234.6,21 -Sun Sep 25 07:20:03 PDT 2011,148,84,9.652,36475.64,524150832,-948824339,234.6,21 -Sun Sep 25 07:20:04 PDT 2011,149,84,9.868,36485.5,524151856,-948824617,234.4,21 -Sun Sep 25 07:20:05 PDT 2011,150,84,9.868,36495.37,524152896,-948824858,234.4,21 -Sun Sep 25 07:20:06 PDT 2011,151,0,9.779,36505.15,524153926,-948825102,234.4,21 -Sun Sep 25 07:20:07 PDT 2011,151,0,9.96,36515.11,524155011,-948825363,234.0,21 -Sun Sep 25 07:20:08 PDT 2011,152,0,10.148,36525.27,524156081,-948825697,233.8,21 -Sun Sep 25 07:20:09 PDT 2011,152,0,10.343,36535.6,524157136,-948825991,233.6,21 -Sun Sep 25 07:20:10 PDT 2011,151,0,10.52,36546.12,524158213,-948826319,233.4,21 -Sun Sep 25 07:20:11 PDT 2011,150,0,10.703,36556.82,524159321,-948826647,233.2,21 -Sun Sep 25 07:20:12 PDT 2011,149,0,10.92,36567.74,524160493,-948826964,233.0,21 -Sun Sep 25 07:20:13 PDT 2011,148,0,10.865,36578.61,524161630,-948827269,232.8,21 -Sun Sep 25 07:20:14 PDT 2011,147,0,10.865,36589.47,524162750,-948827644,232.6,21 -Sun Sep 25 07:20:15 PDT 2011,146,0,10.721,36600.19,524163834,-948828021,232.6,21 -Sun Sep 25 07:20:16 PDT 2011,146,102,10.667,36610.86,524164961,-948828411,232.2,21 -Sun Sep 25 07:20:17 PDT 2011,147,102,10.721,36621.58,524166084,-948828746,232.0,21 -Sun Sep 25 07:20:18 PDT 2011,147,102,10.829,36632.41,524167273,-948829064,231.6,21 -Sun Sep 25 07:20:19 PDT 2011,148,24,10.667,36643.08,524168420,-948829306,231.4,21 -Sun Sep 25 07:20:20 PDT 2011,148,96,10.459,36653.54,524169548,-948829567,231.2,21 -Sun Sep 25 07:20:21 PDT 2011,149,96,10.511,36664.05,524170657,-948829819,231.0,21 -Sun Sep 25 07:20:22 PDT 2011,150,96,10.358,36674.41,524171735,-948830073,230.8,21 -Sun Sep 25 07:20:23 PDT 2011,151,0,10.019,36684.43,524172763,-948830338,230.8,21 -Sun Sep 25 07:20:24 PDT 2011,151,0,9.791,36694.22,524173811,-948830595,230.6,21 -Sun Sep 25 07:20:25 PDT 2011,151,0,9.622,36703.84,524174796,-948830845,230.4,21 -Sun Sep 25 07:20:26 PDT 2011,151,0,9.291,36713.13,524175723,-948831089,230.4,21 -Sun Sep 25 07:20:27 PDT 2011,149,0,8.981,36722.11,524176610,-948831313,230.2,21 -Sun Sep 25 07:20:28 PDT 2011,147,0,8.42,36730.53,524177471,-948831515,230.2,21 -Sun Sep 25 07:20:29 PDT 2011,146,79,7.983,36738.52,524178275,-948831693,230.2,21 -Sun Sep 25 07:20:30 PDT 2011,145,83,7.67,36746.19,524179101,-948831828,230.0,21 -Sun Sep 25 07:20:31 PDT 2011,146,88,7.563,36753.75,524179862,-948832016,230.0,21 -Sun Sep 25 07:20:32 PDT 2011,146,87,7.563,36761.31,524180601,-948832207,230.0,21 -Sun Sep 25 07:20:33 PDT 2011,147,88,7.282,36768.59,524181361,-948832408,229.8,21 -Sun Sep 25 07:20:34 PDT 2011,148,88,7.282,36775.88,524182135,-948832608,230.0,21 -Sun Sep 25 07:20:35 PDT 2011,150,91,7.432,36783.31,524182897,-948832819,230.2,21 -Sun Sep 25 07:20:36 PDT 2011,151,98,7.306,36790.61,524183687,-948833036,230.2,21 -Sun Sep 25 07:20:37 PDT 2011,153,97,7.983,36798.6,524184545,-948833286,230.4,21 -Sun Sep 25 07:20:38 PDT 2011,155,97,8.134,36806.73,524185403,-948833468,230.4,21 -Sun Sep 25 07:20:39 PDT 2011,156,28,7.953,36814.68,524186225,-948833691,230.6,21 -Sun Sep 25 07:20:40 PDT 2011,157,87,7.353,36822.04,524187002,-948833913,230.6,21 -Sun Sep 25 07:20:41 PDT 2011,159,90,7.23,36829.27,524187801,-948834152,230.8,21 -Sun Sep 25 07:20:42 PDT 2011,160,90,7.456,36836.72,524188561,-948834376,231.0,21 -Sun Sep 25 07:20:43 PDT 2011,161,91,7.508,36844.23,524189296,-948834571,231.2,21 -Sun Sep 25 07:20:44 PDT 2011,163,92,7.508,36851.74,524190063,-948834790,231.4,21 -Sun Sep 25 07:20:45 PDT 2011,164,95,7.669,36859.41,524190840,-948835004,231.6,21 -Sun Sep 25 07:20:46 PDT 2011,165,94,7.923,36867.33,524191695,-948835229,231.8,21 -Sun Sep 25 07:20:47 PDT 2011,166,83,7.923,36875.25,524192528,-948835438,232.0,21 -Sun Sep 25 07:20:48 PDT 2011,167,90,7.865,36883.11,524193375,-948835657,232.2,21 -Sun Sep 25 07:20:49 PDT 2011,168,90,7.614,36890.73,524194177,-948835872,232.2,21 -Sun Sep 25 07:20:50 PDT 2011,169,91,7.481,36898.21,524194991,-948836100,232.4,21 -Sun Sep 25 07:20:51 PDT 2011,169,93,7.587,36905.79,524195773,-948836334,232.8,21 -Sun Sep 25 07:20:52 PDT 2011,170,93,7.78,36913.57,524196570,-948836578,233.0,21 -Sun Sep 25 07:20:53 PDT 2011,170,93,7.575,36921.15,524197305,-948836798,233.2,21 -Sun Sep 25 07:20:54 PDT 2011,169,0,7.195,36928.34,524198070,-948837007,233.4,21 -Sun Sep 25 07:20:55 PDT 2011,168,92,7.03,36935.38,524198838,-948837189,233.8,21 -Sun Sep 25 07:20:56 PDT 2011,167,93,6.962,36942.34,524199594,-948837379,233.8,21 -Sun Sep 25 07:20:57 PDT 2011,166,97,7.147,36949.48,524200356,-948837564,234.0,21 -Sun Sep 25 07:20:58 PDT 2011,166,98,7.342,36956.83,524201132,-948837753,234.2,21 -Sun Sep 25 07:20:59 PDT 2011,166,99,7.47,36964.3,524201920,-948837945,234.4,21 -Sun Sep 25 07:21:00 PDT 2011,166,91,7.496,36971.79,524202744,-948838157,234.4,21 -Sun Sep 25 07:21:01 PDT 2011,165,91,7.602,36979.39,524203555,-948838355,234.6,21 -Sun Sep 25 07:21:02 PDT 2011,165,38,7.656,36987.05,524204377,-948838553,234.8,21 -Sun Sep 25 07:21:03 PDT 2011,165,38,7.393,36994.87,524205205,-948838761,234.8,21 -Sun Sep 25 07:21:04 PDT 2011,164,84,7.077,37005.56,524206362,-948839051,234.8,21 -Sun Sep 25 07:21:05 PDT 2011,163,86,7.077,37008.68,524206688,-948839138,235.0,21 -Sun Sep 25 07:21:06 PDT 2011,164,87,7.1,37015.71,524207439,-948839339,235.0,21 -Sun Sep 25 07:21:07 PDT 2011,164,89,7.268,37022.98,524208194,-948839535,235.0,21 -Sun Sep 25 07:21:08 PDT 2011,164,89,7.488,37032.04,524209137,-948839781,235.2,21 -Sun Sep 25 07:21:09 PDT 2011,164,89,7.488,37037.95,524209759,-948839947,235.4,21 -Sun Sep 25 07:21:10 PDT 2011,164,90,7.514,37045.55,524210552,-948840162,235.6,21 -Sun Sep 25 07:21:11 PDT 2011,165,92,7.514,37052.98,524211349,-948840395,235.8,21 -Sun Sep 25 07:21:12 PDT 2011,166,81,7.647,37060.64,524212162,-948840646,236.0,21 -Sun Sep 25 07:21:13 PDT 2011,166,44,7.514,37069.99,524213168,-948840953,236.2,21 -Sun Sep 25 07:21:14 PDT 2011,166,89,7.514,37075.66,524213757,-948841121,236.4,21 -Sun Sep 25 07:21:15 PDT 2011,166,89,7.488,37083.14,524214548,-948841359,236.4,21 -Sun Sep 25 07:21:16 PDT 2011,166,29,7.36,37090.54,524215311,-948841581,236.6,21 -Sun Sep 25 07:21:17 PDT 2011,165,90,7.047,37097.55,524216028,-948841771,236.6,21 -Sun Sep 25 07:21:18 PDT 2011,164,83,6.979,37104.54,524216768,-948841958,236.8,21 -Sun Sep 25 07:21:19 PDT 2011,164,83,6.979,37111.52,524217484,-948842128,236.8,21 -Sun Sep 25 07:21:20 PDT 2011,163,83,7.024,37118.54,524218189,-948842293,237.0,21 -Sun Sep 25 07:21:21 PDT 2011,163,80,6.912,37125.45,524218869,-948842451,237.0,21 -Sun Sep 25 07:21:22 PDT 2011,163,80,6.656,37132.11,524219570,-948842617,237.0,21 -Sun Sep 25 07:21:23 PDT 2011,162,40,6.76,37138.87,524220249,-948842788,237.2,21 -Sun Sep 25 07:21:24 PDT 2011,162,82,6.656,37145.52,524220931,-948843005,237.2,21 -Sun Sep 25 07:21:25 PDT 2011,161,84,6.697,37152.22,524221645,-948843208,237.2,21 -Sun Sep 25 07:21:26 PDT 2011,162,88,7.001,37159.22,524222390,-948843397,237.2,21 -Sun Sep 25 07:21:27 PDT 2011,162,89,7.335,37166.55,524223169,-948843602,237.4,21 -Sun Sep 25 07:21:28 PDT 2011,162,92,7.41,37173.97,524223971,-948843784,237.4,21 -Sun Sep 25 07:21:29 PDT 2011,163,94,7.593,37181.56,524224781,-948844023,237.4,21 -Sun Sep 25 07:21:30 PDT 2011,164,98,7.87,37189.43,524225645,-948844263,237.6,21 -Sun Sep 25 07:21:31 PDT 2011,165,96,8.137,37197.57,524226510,-948844506,237.8,21 -Sun Sep 25 07:21:32 PDT 2011,166,96,8.137,37205.7,524227372,-948844764,238.0,21 -Sun Sep 25 07:21:33 PDT 2011,167,87,8.107,37213.81,524228227,-948845025,238.2,21 -Sun Sep 25 07:21:34 PDT 2011,168,87,8.107,37221.91,524229095,-948845294,238.4,21 -Sun Sep 25 07:21:35 PDT 2011,168,90,8.045,37229.96,524229937,-948845548,238.4,21 -Sun Sep 25 07:21:36 PDT 2011,169,91,8.168,37238.13,524230822,-948845842,238.6,21 -Sun Sep 25 07:21:37 PDT 2011,170,91,8.424,37246.55,524231698,-948846120,238.6,21 -Sun Sep 25 07:21:38 PDT 2011,170,91,8.44,37255.0,524232571,-948846417,238.8,21 -Sun Sep 25 07:21:39 PDT 2011,170,91,8.408,37263.4,524233440,-948846688,238.8,21 -Sun Sep 25 07:21:40 PDT 2011,169,0,8.121,37271.52,524234298,-948846953,239.0,21 -Sun Sep 25 07:21:41 PDT 2011,168,0,7.972,37279.5,524235125,-948847161,239.0,21 -Sun Sep 25 07:21:42 PDT 2011,168,0,7.798,37287.29,524235959,-948847342,239.0,21 -Sun Sep 25 07:21:43 PDT 2011,167,0,7.526,37294.82,524236753,-948847546,239.2,21 -Sun Sep 25 07:21:44 PDT 2011,167,0,7.346,37302.17,524237490,-948847755,239.2,21 -Sun Sep 25 07:21:45 PDT 2011,166,77,7.034,37309.2,524238204,-948847977,239.2,21 -Sun Sep 25 07:21:46 PDT 2011,165,86,6.965,37316.17,524238928,-948848189,239.2,21 -Sun Sep 25 07:21:47 PDT 2011,165,87,7.103,37323.27,524239643,-948848404,239.6,21 -Sun Sep 25 07:21:48 PDT 2011,164,90,7.247,37330.52,524240404,-948848610,239.8,21 -Sun Sep 25 07:21:49 PDT 2011,164,91,7.422,37337.94,524241184,-948848822,240.0,21 -Sun Sep 25 07:21:50 PDT 2011,164,94,7.579,37345.52,524241993,-948849033,240.2,21 -Sun Sep 25 07:21:51 PDT 2011,164,95,7.798,37353.31,524242830,-948849246,240.2,21 -Sun Sep 25 07:21:52 PDT 2011,165,96,7.994,37361.3,524243681,-948849460,240.4,21 -Sun Sep 25 07:21:53 PDT 2011,165,98,8.024,37369.33,524244503,-948849695,240.6,21 -Sun Sep 25 07:21:54 PDT 2011,165,98,8.145,37377.47,524245377,-948849949,240.6,21 -Sun Sep 25 07:21:55 PDT 2011,165,102,8.238,37385.71,524246255,-948850206,240.8,21 -Sun Sep 25 07:21:56 PDT 2011,165,103,8.399,37394.11,524247154,-948850477,240.8,21 -Sun Sep 25 07:21:57 PDT 2011,166,104,8.634,37402.74,524248066,-948850726,241.0,21 -Sun Sep 25 07:21:58 PDT 2011,166,97,8.739,37411.48,524249013,-948850952,241.0,21 -Sun Sep 25 07:21:59 PDT 2011,166,91,8.919,37420.4,524249971,-948851161,241.0,21 -Sun Sep 25 07:22:00 PDT 2011,167,91,9.031,37429.43,524250935,-948851385,241.2,21 -Sun Sep 25 07:22:01 PDT 2011,167,91,8.956,37438.39,524251874,-948851614,241.2,21 -Sun Sep 25 07:22:02 PDT 2011,168,0,8.956,37447.34,524252795,-948851870,241.2,21 -Sun Sep 25 07:22:03 PDT 2011,167,0,8.634,37456.01,524253729,-948852111,241.2,21 -Sun Sep 25 07:22:04 PDT 2011,167,92,8.498,37464.48,524254630,-948852318,241.4,21 -Sun Sep 25 07:22:05 PDT 2011,166,93,8.553,37473.03,524255526,-948852524,241.4,21 -Sun Sep 25 07:22:06 PDT 2011,166,93,8.622,37481.65,524256428,-948852741,241.4,21 -Sun Sep 25 07:22:07 PDT 2011,166,84,8.726,37490.38,524257322,-948852993,241.4,21 -Sun Sep 25 07:22:08 PDT 2011,166,85,8.798,37499.18,524258240,-948853260,241.4,21 -Sun Sep 25 07:22:09 PDT 2011,166,85,8.834,37508.01,524259157,-948853561,241.4,21 -Sun Sep 25 07:22:10 PDT 2011,166,20,8.834,37516.85,524260090,-948853886,241.4,21 -Sun Sep 25 07:22:11 PDT 2011,166,20,8.834,37525.68,524261007,-948854188,241.6,21 -Sun Sep 25 07:22:12 PDT 2011,165,20,9.018,37534.7,524261967,-948854483,241.6,21 -Sun Sep 25 07:22:13 PDT 2011,165,0,9.056,37543.76,524262921,-948854749,241.6,21 -Sun Sep 25 07:22:14 PDT 2011,164,0,9.095,37552.85,524263883,-948855028,241.6,21 -Sun Sep 25 07:22:15 PDT 2011,163,93,9.251,37562.1,524264851,-948855316,241.6,21 -Sun Sep 25 07:22:16 PDT 2011,163,97,9.537,37571.64,524265870,-948855633,241.6,21 -Sun Sep 25 07:22:17 PDT 2011,163,91,9.936,37581.57,524266889,-948855946,241.6,21 -Sun Sep 25 07:22:18 PDT 2011,163,91,10.124,37591.7,524267974,-948856280,241.6,21 -Sun Sep 25 07:22:19 PDT 2011,163,91,10.368,37602.07,524269095,-948856612,241.6,21 -Sun Sep 25 07:22:20 PDT 2011,163,0,10.572,37612.64,524270212,-948856953,241.6,21 -Sun Sep 25 07:22:21 PDT 2011,162,0,10.418,37623.05,524271337,-948857265,241.6,21 -Sun Sep 25 07:22:22 PDT 2011,162,0,10.418,37633.47,524272456,-948857590,241.6,21 -Sun Sep 25 07:22:23 PDT 2011,161,0,10.418,37643.89,524273558,-948857927,241.6,21 -Sun Sep 25 07:22:24 PDT 2011,159,0,10.418,37654.31,524274663,-948858231,241.6,21 -Sun Sep 25 07:22:25 PDT 2011,159,0,10.368,37664.68,524275760,-948858521,241.6,21 -Sun Sep 25 07:22:26 PDT 2011,157,0,10.269,37674.95,524276838,-948858752,241.6,21 -Sun Sep 25 07:22:27 PDT 2011,156,91,10.269,37685.22,524277916,-948858984,241.6,21 -Sun Sep 25 07:22:28 PDT 2011,156,99,10.157,37695.37,524278994,-948859226,241.6,21 -Sun Sep 25 07:22:29 PDT 2011,156,100,10.303,37705.68,524280058,-948859436,241.6,21 -Sun Sep 25 07:22:30 PDT 2011,157,101,10.328,37716.0,524281173,-948859649,241.6,21 -Sun Sep 25 07:22:31 PDT 2011,158,101,10.403,37726.41,524282255,-948859894,241.6,21 -Sun Sep 25 07:22:32 PDT 2011,158,101,10.453,37736.86,524283365,-948860124,241.6,21 -Sun Sep 25 07:22:33 PDT 2011,159,101,10.157,37747.02,524284417,-948860349,241.6,21 -Sun Sep 25 07:22:34 PDT 2011,159,0,9.7,37756.72,524285444,-948860565,241.6,21 -Sun Sep 25 07:22:35 PDT 2011,158,0,9.202,37765.92,524286384,-948860765,241.6,21 -Sun Sep 25 07:22:36 PDT 2011,158,0,8.753,37774.67,524287291,-948860951,241.6,21 -Sun Sep 25 07:22:37 PDT 2011,158,0,8.346,37783.02,524288143,-948861138,241.6,21 -Sun Sep 25 07:22:38 PDT 2011,157,0,8.035,37791.05,524288915,-948861332,241.6,21 -Sun Sep 25 07:22:39 PDT 2011,157,22,7.627,37798.68,524289636,-948861579,241.6,21 -Sun Sep 25 07:22:40 PDT 2011,157,85,7.171,37805.86,524290376,-948861777,241.6,21 -Sun Sep 25 07:22:41 PDT 2011,157,88,7.6,37813.46,524291180,-948862038,241.6,21 -Sun Sep 25 07:22:42 PDT 2011,158,94,8.083,37821.54,524291981,-948862319,241.6,21 -Sun Sep 25 07:22:43 PDT 2011,158,96,8.498,37830.04,524292911,-948862559,241.6,21 -Sun Sep 25 07:22:44 PDT 2011,160,99,8.883,37838.92,524293869,-948862813,241.6,21 -Sun Sep 25 07:22:45 PDT 2011,162,89,9.426,37848.35,524294838,-948863046,241.6,21 -Sun Sep 25 07:22:46 PDT 2011,163,93,9.107,37857.45,524295802,-948863258,241.6,21 -Sun Sep 25 07:22:47 PDT 2011,165,92,8.774,37866.23,524296738,-948863473,241.6,21 -Sun Sep 25 07:22:48 PDT 2011,166,91,8.565,37874.79,524297659,-948863726,242.0,21 -Sun Sep 25 07:22:49 PDT 2011,167,90,8.498,37883.29,524298529,-948863981,242.2,21 -Sun Sep 25 07:22:50 PDT 2011,168,90,8.432,37891.72,524299379,-948864242,242.2,21 -Sun Sep 25 07:22:51 PDT 2011,169,90,8.334,37900.06,524300254,-948864505,242.4,21 -Sun Sep 25 07:22:52 PDT 2011,169,90,8.35,37908.41,524301116,-948864774,242.6,21 -Sun Sep 25 07:22:53 PDT 2011,168,90,8.318,37916.73,524301982,-948865046,242.8,21 -Sun Sep 25 07:22:54 PDT 2011,168,90,8.254,37924.98,524302819,-948865281,242.8,21 -Sun Sep 25 07:22:55 PDT 2011,168,0,7.891,37932.87,524303652,-948865464,243.0,21 -Sun Sep 25 07:22:56 PDT 2011,168,85,7.403,37940.27,524304471,-948865341,243.0,21 -Sun Sep 25 07:22:57 PDT 2011,168,88,7.834,37948.11,524305260,-948864994,243.2,21 -Sun Sep 25 07:22:58 PDT 2011,168,90,8.099,37956.21,524305855,-948864205,243.2,21 -Sun Sep 25 07:22:59 PDT 2011,168,90,8.223,37964.43,524306299,-948863203,243.2,21 -Sun Sep 25 07:23:00 PDT 2011,168,90,8.549,37972.98,524306584,-948861902,243.4,21 -Sun Sep 25 07:23:01 PDT 2011,169,31,8.383,37981.36,524306912,-948860612,243.4,21 -Sun Sep 25 07:23:02 PDT 2011,170,88,8.099,37989.46,524307120,-948859291,243.4,21 -Sun Sep 25 07:23:03 PDT 2011,170,93,7.95,37997.41,524307351,-948857992,243.6,21 -Sun Sep 25 07:23:04 PDT 2011,171,98,8.482,38005.89,524307501,-948856654,243.6,21 -Sun Sep 25 07:23:05 PDT 2011,172,100,8.977,38014.87,524307801,-948855391,243.6,21 -Sun Sep 25 07:23:06 PDT 2011,173,101,9.168,38024.04,524308129,-948854061,243.6,21 -Sun Sep 25 07:23:07 PDT 2011,174,103,9.367,38033.4,524308446,-948852650,243.6,21 -Sun Sep 25 07:23:08 PDT 2011,175,102,9.491,38042.89,524308816,-948851256,243.6,21 -Sun Sep 25 07:23:09 PDT 2011,176,107,9.533,38052.43,524309253,-948849936,243.8,21 -Sun Sep 25 07:23:10 PDT 2011,177,109,9.704,38062.13,524309699,-948848490,243.8,21 -Sun Sep 25 07:23:12 PDT 2011,179,109,10.02,38080.3,524310481,-948846002,243.8,21 -Sun Sep 25 07:23:12 PDT 2011,179,109,10.02,38082.94,524310594,-948845645,243.8,21 -Sun Sep 25 07:23:13 PDT 2011,180,110,10.162,38093.06,524310981,-948844250,243.8,21 -Sun Sep 25 07:23:14 PDT 2011,180,112,10.115,38103.23,524311371,-948842811,244.0,21 -Sun Sep 25 07:23:15 PDT 2011,181,112,10.259,38113.5,524311783,-948841395,244.2,21 -Sun Sep 25 07:23:16 PDT 2011,181,103,10.458,38123.97,524312185,-948839891,244.4,21 -Sun Sep 25 07:23:17 PDT 2011,181,105,10.509,38134.62,524312582,-948838410,244.6,21 -Sun Sep 25 07:23:18 PDT 2011,181,105,10.772,38147.7,524313069,-948836568,244.8,21 -Sun Sep 25 07:23:19 PDT 2011,181,106,10.772,38156.25,524313386,-948835376,245.0,21 -Sun Sep 25 07:23:20 PDT 2011,181,108,10.936,38167.03,524313809,-948833860,245.2,21 -Sun Sep 25 07:23:21 PDT 2011,181,110,11.064,38178.09,524314277,-948832340,245.2,21 -Sun Sep 25 07:23:22 PDT 2011,182,110,11.237,38189.51,524314752,-948830749,245.2,21 -Sun Sep 25 07:23:23 PDT 2011,181,110,11.476,38204.28,524315280,-948828660,245.0,21 -Sun Sep 25 07:23:24 PDT 2011,181,111,11.476,38212.27,524315550,-948827542,244.8,21 -Sun Sep 25 07:23:25 PDT 2011,182,96,11.445,38223.63,524315895,-948825925,244.8,21 -Sun Sep 25 07:23:26 PDT 2011,182,96,11.476,38235.09,524316296,-948824279,244.6,21 -Sun Sep 25 07:23:27 PDT 2011,181,96,11.537,38246.63,524316663,-948822653,244.6,21 -Sun Sep 25 07:23:28 PDT 2011,181,0,11.296,38257.96,524317012,-948821033,244.6,21 -Sun Sep 25 07:23:29 PDT 2011,181,0,11.121,38268.98,524317364,-948819481,244.4,21 -Sun Sep 25 07:23:30 PDT 2011,180,0,10.787,38279.75,524317709,-948818009,244.4,21 -Sun Sep 25 07:23:31 PDT 2011,180,0,10.319,38290.08,524318051,-948816570,244.4,21 -Sun Sep 25 07:23:32 PDT 2011,179,0,10.123,38300.25,524318393,-948815174,244.4,21 -Sun Sep 25 07:23:33 PDT 2011,179,85,9.889,38310.14,524318706,-948813794,244.2,21 -Sun Sep 25 07:23:34 PDT 2011,178,85,9.889,38320.04,524319012,-948812428,244.2,21 -Sun Sep 25 07:23:35 PDT 2011,177,85,9.935,38329.99,524319300,-948811007,244.2,21 -Sun Sep 25 07:23:36 PDT 2011,177,22,9.753,38339.79,524319566,-948809632,244.2,21 -Sun Sep 25 07:23:37 PDT 2011,176,91,9.798,38349.6,524319871,-948808236,244.2,21 -Sun Sep 25 07:23:38 PDT 2011,175,91,9.709,38359.3,524320158,-948806857,244.2,21 -Sun Sep 25 07:23:39 PDT 2011,175,99,9.578,38368.89,524320438,-948805512,244.2,21 -Sun Sep 25 07:23:40 PDT 2011,175,102,9.327,38378.26,524320759,-948804219,244.0,21 -Sun Sep 25 07:23:41 PDT 2011,174,45,9.327,38387.55,524321093,-948802884,244.0,21 -Sun Sep 25 07:23:42 PDT 2011,174,104,9.478,38397.0,524321429,-948801570,244.0,21 -Sun Sep 25 07:23:43 PDT 2011,174,101,9.395,38406.35,524321761,-948800250,244.0,21 -Sun Sep 25 07:23:44 PDT 2011,174,95,9.606,38416.02,524322067,-948798895,244.0,21 -Sun Sep 25 07:23:45 PDT 2011,173,97,9.826,38425.73,524322370,-948797516,244.0,21 -Sun Sep 25 07:23:46 PDT 2011,174,99,9.871,38435.57,524322694,-948796109,244.0,21 -Sun Sep 25 07:23:47 PDT 2011,173,100,10.104,38445.69,524323004,-948794681,244.0,21 -Sun Sep 25 07:23:48 PDT 2011,174,101,10.299,38456.03,524323333,-948793183,244.0,21 -Sun Sep 25 07:23:49 PDT 2011,174,101,10.348,38466.33,524323730,-948791695,244.0,21 -Sun Sep 25 07:23:50 PDT 2011,174,101,10.399,38476.73,524324094,-948790227,244.0,21 -Sun Sep 25 07:23:51 PDT 2011,173,0,10.274,38487.0,524324465,-948788780,244.0,21 -Sun Sep 25 07:23:52 PDT 2011,173,0,10.152,38497.24,524324780,-948787286,244.0,21 -Sun Sep 25 07:23:53 PDT 2011,172,96,9.911,38507.16,524325123,-948785926,244.0,21 -Sun Sep 25 07:23:54 PDT 2011,172,97,9.865,38517.04,524325454,-948784512,244.0,21 -Sun Sep 25 07:23:55 PDT 2011,171,97,9.865,38526.92,524325745,-948783096,244.0,21 -Sun Sep 25 07:23:56 PDT 2011,171,97,9.957,38536.93,524326056,-948781637,244.0,21 -Sun Sep 25 07:23:57 PDT 2011,171,98,9.911,38546.8,524326337,-948780234,244.0,21 -Sun Sep 25 07:23:58 PDT 2011,171,98,10.027,38556.81,524326621,-948778740,244.0,21 -Sun Sep 25 07:23:59 PDT 2011,171,37,10.099,38566.9,524326898,-948777303,244.0,21 -Sun Sep 25 07:24:00 PDT 2011,171,97,10.051,38577.02,524327187,-948775855,244.0,21 -Sun Sep 25 07:24:01 PDT 2011,171,97,9.865,38586.8,524327483,-948774438,244.0,21 -Sun Sep 25 07:24:02 PDT 2011,170,42,9.934,38596.64,524327763,-948773029,244.0,21 -Sun Sep 25 07:24:03 PDT 2011,169,95,9.774,38606.42,524328051,-948771624,244.0,21 -Sun Sep 25 07:24:04 PDT 2011,169,30,9.784,38616.24,524328331,-948770223,244.0,21 -Sun Sep 25 07:24:05 PDT 2011,168,96,9.739,38625.94,524328648,-948768916,244.0,21 -Sun Sep 25 07:24:06 PDT 2011,168,96,9.479,38635.41,524328982,-948767542,244.0,21 -Sun Sep 25 07:24:07 PDT 2011,168,102,9.501,38644.92,524329267,-948766149,244.0,21 -Sun Sep 25 07:24:08 PDT 2011,168,102,9.314,38654.28,524329545,-948764793,244.0,21 -Sun Sep 25 07:24:09 PDT 2011,168,30,9.314,38663.55,524329868,-948763503,244.0,21 -Sun Sep 25 07:24:10 PDT 2011,168,104,9.038,38672.63,524330143,-948762216,244.0,21 -Sun Sep 25 07:24:11 PDT 2011,168,102,9.273,38681.95,524330418,-948760888,244.0,21 -Sun Sep 25 07:24:12 PDT 2011,168,95,9.784,38691.79,524330751,-948759490,244.0,21 -Sun Sep 25 07:24:13 PDT 2011,168,95,9.739,38701.5,524331050,-948758116,244.0,21 -Sun Sep 25 07:24:14 PDT 2011,168,95,9.739,38711.24,524331342,-948756705,244.0,21 -Sun Sep 25 07:24:15 PDT 2011,168,95,9.656,38720.89,524331627,-948755369,244.0,21 -Sun Sep 25 07:24:16 PDT 2011,168,0,9.484,38730.42,524331953,-948753986,244.0,21 -Sun Sep 25 07:24:17 PDT 2011,167,89,9.238,38739.62,524332277,-948752723,244.0,21 -Sun Sep 25 07:24:18 PDT 2011,167,89,9.119,38748.7,524332543,-948751392,244.0,21 -Sun Sep 25 07:24:19 PDT 2011,168,90,9.158,38757.83,524332855,-948750099,244.0,21 -Sun Sep 25 07:24:20 PDT 2011,168,91,9.278,38767.13,524333135,-948748777,244.0,21 -Sun Sep 25 07:24:21 PDT 2011,168,92,9.318,38776.37,524333396,-948747463,244.0,21 -Sun Sep 25 07:24:22 PDT 2011,168,93,9.359,38785.72,524333706,-948746092,244.0,21 -Sun Sep 25 07:24:23 PDT 2011,167,94,9.612,38795.33,524334003,-948744711,244.0,21 -Sun Sep 25 07:24:24 PDT 2011,167,94,9.656,38805.04,524334315,-948743320,244.0,21 -Sun Sep 25 07:24:25 PDT 2011,167,27,9.656,38814.64,524334625,-948741912,244.0,21 -Sun Sep 25 07:24:26 PDT 2011,167,95,9.7,38824.34,524334936,-948740504,244.0,21 -Sun Sep 25 07:24:27 PDT 2011,166,96,9.679,38834.07,524335249,-948739061,244.0,21 -Sun Sep 25 07:24:28 PDT 2011,166,96,9.903,38844.03,524335528,-948737636,244.0,21 -Sun Sep 25 07:24:29 PDT 2011,165,96,9.835,38853.82,524335827,-948736294,244.0,21 -Sun Sep 25 07:24:30 PDT 2011,165,92,9.723,38863.6,524336139,-948734886,244.0,21 -Sun Sep 25 07:24:31 PDT 2011,165,94,9.635,38873.24,524336416,-948733509,244.0,21 -Sun Sep 25 07:24:32 PDT 2011,165,94,9.635,38882.93,524336702,-948732131,244.0,21 -Sun Sep 25 07:24:33 PDT 2011,165,94,9.592,38892.47,524336981,-948730787,244.0,21 -Sun Sep 25 07:24:34 PDT 2011,164,0,9.465,38901.94,524337262,-948729421,244.0,21 -Sun Sep 25 07:24:35 PDT 2011,164,93,9.341,38911.23,524337551,-948728095,244.0,21 -Sun Sep 25 07:24:36 PDT 2011,164,94,9.423,38920.69,524337868,-948726754,244.0,21 -Sun Sep 25 07:24:37 PDT 2011,163,94,9.635,38930.27,524338160,-948725373,244.0,21 -Sun Sep 25 07:24:38 PDT 2011,163,26,9.812,38940.08,524338488,-948723973,244.0,21 -Sun Sep 25 07:24:39 PDT 2011,163,97,9.812,38949.88,524338815,-948722610,243.6,21 -Sun Sep 25 07:24:40 PDT 2011,163,97,9.926,38959.8,524339160,-948721124,243.4,21 -Sun Sep 25 07:24:41 PDT 2011,163,97,10.09,38969.86,524339486,-948719678,243.2,21 -Sun Sep 25 07:24:42 PDT 2011,163,0,10.186,38980.03,524339833,-948718211,243.2,21 -Sun Sep 25 07:24:43 PDT 2011,162,94,9.949,38990.04,524340154,-948716870,243.0,21 -Sun Sep 25 07:24:44 PDT 2011,162,95,9.679,38999.8,524340496,-948715419,242.8,21 -Sun Sep 25 07:24:45 PDT 2011,163,95,9.995,39009.73,524340810,-948714054,242.8,21 -Sun Sep 25 07:24:46 PDT 2011,163,95,9.995,39019.73,524341111,-948712661,242.6,21 -Sun Sep 25 07:24:47 PDT 2011,163,0,9.857,39029.57,524341398,-948711259,242.6,21 -Sun Sep 25 07:24:48 PDT 2011,163,97,9.812,39039.48,524341714,-948709804,242.4,21 -Sun Sep 25 07:24:49 PDT 2011,163,97,9.803,39049.25,524341979,-948708368,242.4,21 -Sun Sep 25 07:24:50 PDT 2011,163,92,9.67,39058.93,524342285,-948706966,242.2,21 -Sun Sep 25 07:24:51 PDT 2011,163,92,9.414,39068.3,524342569,-948705646,242.0,21 -Sun Sep 25 07:24:52 PDT 2011,162,92,9.456,39077.78,524342903,-948704323,241.8,21 -Sun Sep 25 07:24:53 PDT 2011,162,35,9.414,39087.16,524343166,-948703035,241.6,21 -Sun Sep 25 07:24:54 PDT 2011,161,96,9.152,39096.31,524343510,-948701750,241.4,21 -Sun Sep 25 07:24:55 PDT 2011,161,98,9.055,39105.36,524343792,-948700472,241.2,21 -Sun Sep 25 07:24:56 PDT 2011,161,98,9.172,39114.58,524344087,-948699160,241.0,21 -Sun Sep 25 07:24:57 PDT 2011,161,99,9.017,39123.55,524344335,-948697916,240.8,21 -Sun Sep 25 07:24:58 PDT 2011,162,101,9.017,39132.57,524344613,-948696576,240.6,21 -Sun Sep 25 07:24:59 PDT 2011,163,101,9.211,39141.73,524344844,-948695282,240.6,21 -Sun Sep 25 07:25:00 PDT 2011,164,100,9.291,39151.11,524345110,-948693990,240.4,21 -Sun Sep 25 07:25:01 PDT 2011,165,101,9.119,39160.2,524345371,-948692665,240.4,21 -Sun Sep 25 07:25:02 PDT 2011,166,102,9.198,39169.39,524345669,-948691320,240.2,21 -Sun Sep 25 07:25:03 PDT 2011,166,103,9.318,39178.7,524345981,-948689984,240.2,21 -Sun Sep 25 07:25:04 PDT 2011,167,101,9.442,39188.18,524346364,-948688634,240.2,21 -Sun Sep 25 07:25:05 PDT 2011,168,100,9.278,39197.43,524346632,-948687314,240.0,21 -Sun Sep 25 07:25:06 PDT 2011,169,100,9.158,39206.57,524346897,-948686015,240.0,21 -Sun Sep 25 07:25:07 PDT 2011,170,99,9.198,39215.77,524347164,-948684694,240.0,21 -Sun Sep 25 07:25:08 PDT 2011,170,98,9.119,39224.92,524347426,-948683416,239.8,21 -Sun Sep 25 07:25:09 PDT 2011,171,97,9.119,39233.99,524347669,-948682101,240.0,21 -Sun Sep 25 07:25:10 PDT 2011,172,99,8.966,39242.98,524347926,-948680833,240.2,21 -Sun Sep 25 07:25:11 PDT 2011,172,102,8.966,39251.95,524348207,-948679567,240.4,21 -Sun Sep 25 07:25:12 PDT 2011,173,104,9.238,39261.23,524348510,-948678222,240.6,21 -Sun Sep 25 07:25:13 PDT 2011,173,94,9.479,39270.66,524348824,-948676867,240.6,21 -Sun Sep 25 07:25:14 PDT 2011,174,94,9.586,39280.24,524349141,-948675527,240.8,21 -Sun Sep 25 07:25:15 PDT 2011,174,31,9.608,39289.84,524349454,-948674098,241.0,21 -Sun Sep 25 07:25:16 PDT 2011,174,97,9.739,39299.7,524349757,-948672628,241.0,21 -Sun Sep 25 07:25:17 PDT 2011,175,102,9.829,39309.46,524350073,-948671177,241.0,21 -Sun Sep 25 07:25:18 PDT 2011,174,110,10.205,39319.63,524350398,-948669636,241.2,21 -Sun Sep 25 07:25:19 PDT 2011,175,103,10.827,39330.45,524350746,-948668009,241.2,21 -Sun Sep 25 07:25:20 PDT 2011,175,103,11.655,39342.13,524351118,-948666304,241.4,21 -Sun Sep 25 07:25:21 PDT 2011,174,103,11.849,39353.98,524351499,-948664562,241.4,21 -Sun Sep 25 07:25:22 PDT 2011,174,0,12.119,39366.07,524351936,-948662784,241.2,21 -Sun Sep 25 07:25:23 PDT 2011,173,0,12.282,39378.34,524352311,-948661020,241.0,21 -Sun Sep 25 07:25:24 PDT 2011,173,0,12.534,39390.84,524352732,-948659176,240.8,21 -Sun Sep 25 07:25:25 PDT 2011,173,0,12.608,39403.47,524353176,-948657335,240.8,21 -Sun Sep 25 07:25:26 PDT 2011,173,0,12.608,39416.11,524353585,-948655548,240.4,21 -Sun Sep 25 07:25:27 PDT 2011,172,0,11.872,39430.14,524354040,-948653468,240.0,21 -Sun Sep 25 07:25:28 PDT 2011,172,110,11.583,39444.1,524354522,-948651425,239.8,21 -Sun Sep 25 07:25:29 PDT 2011,172,112,11.583,39451.26,524354765,-948650399,239.6,21 -Sun Sep 25 07:25:30 PDT 2011,171,111,11.614,39462.95,524355133,-948648776,239.4,21 -Sun Sep 25 07:25:31 PDT 2011,171,111,11.247,39475.34,524355409,-948646996,239.2,21 -Sun Sep 25 07:25:32 PDT 2011,171,109,11.416,39488.1,524355725,-948645182,239.0,21 -Sun Sep 25 07:25:33 PDT 2011,171,107,11.416,39497.0,524355972,-948643925,238.8,21 -Sun Sep 25 07:25:34 PDT 2011,172,109,11.266,39508.36,524356288,-948642358,238.6,21 -Sun Sep 25 07:25:35 PDT 2011,173,117,11.006,39519.23,524356608,-948640807,238.6,21 -Sun Sep 25 07:25:36 PDT 2011,174,115,10.95,39530.16,524356995,-948639285,238.4,21 -Sun Sep 25 07:25:37 PDT 2011,174,113,10.785,39540.89,524357354,-948637771,238.6,21 -Sun Sep 25 07:25:38 PDT 2011,175,113,10.572,39551.46,524357734,-948636291,238.6,21 -Sun Sep 25 07:25:39 PDT 2011,176,112,10.469,39561.94,524358102,-948634824,238.8,21 -Sun Sep 25 07:25:40 PDT 2011,177,111,10.418,39572.36,524358407,-948633395,239.0,21 -Sun Sep 25 07:25:41 PDT 2011,178,111,10.318,39582.6,524358778,-948631980,239.0,21 -Sun Sep 25 07:25:42 PDT 2011,178,110,10.269,39593.11,524359083,-948630507,239.0,21 -Sun Sep 25 07:25:43 PDT 2011,179,111,10.264,39603.14,524359418,-948629064,239.4,21 -Sun Sep 25 07:25:44 PDT 2011,179,111,10.313,39613.48,524359769,-948627643,239.6,21 -Sun Sep 25 07:25:45 PDT 2011,179,27,10.119,39623.55,524360110,-948626245,239.8,21 -Sun Sep 25 07:25:46 PDT 2011,180,107,9.887,39633.51,524360429,-948624864,240.0,21 -Sun Sep 25 07:25:47 PDT 2011,180,108,9.842,39643.34,524360749,-948623519,240.2,21 -Sun Sep 25 07:25:48 PDT 2011,180,108,9.979,39653.33,524361070,-948622098,240.4,21 -Sun Sep 25 07:25:49 PDT 2011,180,108,10.119,39663.51,524361439,-948620754,240.6,21 -Sun Sep 25 07:25:50 PDT 2011,180,105,9.842,39673.36,524361715,-948619344,240.6,21 -Sun Sep 25 07:25:51 PDT 2011,179,108,9.666,39683.02,524362027,-948617999,240.8,21 -Sun Sep 25 07:25:52 PDT 2011,179,113,9.797,39692.84,524362355,-948616551,241.0,21 -Sun Sep 25 07:25:53 PDT 2011,180,114,10.143,39702.96,524362691,-948615114,241.0,21 -Sun Sep 25 07:25:54 PDT 2011,179,114,10.613,39713.58,524363019,-948613593,241.0,21 -Sun Sep 25 07:25:55 PDT 2011,179,102,10.509,39724.07,524363363,-948612062,241.2,21 -Sun Sep 25 07:25:56 PDT 2011,179,101,10.561,39734.59,524363658,-948610592,241.2,21 -Sun Sep 25 07:25:57 PDT 2011,179,101,10.509,39745.28,524363968,-948609067,241.4,21 -Sun Sep 25 07:25:58 PDT 2011,179,100,10.484,39755.52,524364283,-948607594,241.4,21 -Sun Sep 25 07:25:59 PDT 2011,179,101,10.408,39765.92,524364622,-948606135,241.4,21 -Sun Sep 25 07:26:00 PDT 2011,179,102,10.408,39776.32,524364935,-948604675,241.4,21 -Sun Sep 25 07:26:01 PDT 2011,179,100,10.408,39786.73,524365264,-948603159,241.6,21 -Sun Sep 25 07:26:02 PDT 2011,180,100,10.665,39797.39,524365564,-948601653,241.6,21 -Sun Sep 25 07:26:03 PDT 2011,180,100,10.458,39807.85,524365844,-948600195,241.6,21 -Sun Sep 25 07:26:04 PDT 2011,180,103,10.458,39818.32,524366117,-948598661,241.6,21 -Sun Sep 25 07:26:05 PDT 2011,181,105,10.529,39828.95,524366384,-948597109,241.6,21 -Sun Sep 25 07:26:06 PDT 2011,181,106,10.847,39839.78,524366682,-948595529,241.6,21 -Sun Sep 25 07:26:07 PDT 2011,181,105,10.957,39850.72,524366991,-948593986,241.6,21 -Sun Sep 25 07:26:08 PDT 2011,181,105,10.847,39861.53,524367355,-948592452,241.8,21 -Sun Sep 25 07:26:09 PDT 2011,181,105,10.739,39872.3,524367703,-948590919,241.8,21 -Sun Sep 25 07:26:10 PDT 2011,181,0,10.581,39882.9,524368053,-948589498,241.8,21 -Sun Sep 25 07:26:11 PDT 2011,181,0,10.581,39893.5,524368327,-948588281,241.8,21 -Sun Sep 25 07:26:12 PDT 2011,181,0,8.207,39901.7,524368563,-948587209,241.8,21 -Sun Sep 25 07:26:13 PDT 2011,181,0,7.392,39909.09,524368773,-948586301,241.8,21 -Sun Sep 25 07:26:14 PDT 2011,181,0,6.581,39915.62,524368923,-948585688,241.8,21 -Sun Sep 25 07:26:15 PDT 2011,180,0,4.469,39920.08,524368998,-948585309,241.8,21 -Sun Sep 25 07:26:16 PDT 2011,179,0,3.142,39923.22,524368997,-948584951,241.8,21 -Sun Sep 25 07:26:17 PDT 2011,178,0,2.781,39926.0,524368977,-948584745,241.8,21 -Sun Sep 25 07:26:18 PDT 2011,177,0,2.289,39928.28,524368917,-948584549,241.8,21 -Sun Sep 25 07:26:19 PDT 2011,176,0,2.023,39930.3,524368871,-948584430,241.8,21 -Sun Sep 25 07:26:20 PDT 2011,175,0,2.023,39932.33,524368833,-948584336,241.8,21 -Sun Sep 25 07:26:21 PDT 2011,174,0,1.444,39933.77,524368815,-948584248,241.8,21 -Sun Sep 25 07:27:09 PDT 2011,146,0,0.0,39933.77,524368761,-948583762,241.8,21 -Sun Sep 25 07:27:10 PDT 2011,147,25,2.333,39936.16,524368744,-948583340,241.8,21 -Sun Sep 25 07:27:11 PDT 2011,149,25,2.582,39938.68,524368779,-948582768,241.8,21 -Sun Sep 25 07:27:12 PDT 2011,150,35,3.76,39943.25,524368800,-948582001,241.8,21 -Sun Sep 25 07:27:13 PDT 2011,152,43,3.76,39946.21,524368869,-948581556,241.8,21 -Sun Sep 25 07:27:14 PDT 2011,153,51,4.487,39950.7,524369068,-948580883,241.8,22 -Sun Sep 25 07:27:15 PDT 2011,155,57,5.031,39955.73,524369330,-948580138,241.8,22 -Sun Sep 25 07:27:16 PDT 2011,156,57,5.818,39961.56,524369637,-948579427,241.8,22 -Sun Sep 25 07:27:17 PDT 2011,157,57,6.063,39967.61,524369923,-948578445,241.8,22 -Sun Sep 25 07:27:18 PDT 2011,159,21,6.462,39974.07,524370197,-948577610,241.8,22 -Sun Sep 25 07:27:19 PDT 2011,159,61,5.979,39980.05,524370491,-948576766,241.8,22 -Sun Sep 25 07:27:20 PDT 2011,160,65,6.097,39986.14,524370769,-948575832,241.8,22 -Sun Sep 25 07:27:21 PDT 2011,160,69,6.703,39992.85,524371041,-948574838,241.8,22 -Sun Sep 25 07:27:22 PDT 2011,161,73,7.243,40000.09,524371244,-948573821,241.8,22 -Sun Sep 25 07:27:23 PDT 2011,162,81,7.654,40007.74,524371235,-948572589,241.8,22 -Sun Sep 25 07:27:24 PDT 2011,163,85,8.054,40015.8,524371405,-948571387,241.8,22 -Sun Sep 25 07:27:25 PDT 2011,164,91,8.739,40024.54,524371607,-948570052,241.8,22 -Sun Sep 25 07:27:26 PDT 2011,165,93,9.264,40033.8,524372131,-948568721,241.8,22 -Sun Sep 25 07:27:27 PDT 2011,167,98,9.723,40043.52,524372472,-948567227,241.8,22 -Sun Sep 25 07:27:28 PDT 2011,168,101,9.993,40053.52,524372865,-948565681,241.8,22 -Sun Sep 25 07:27:29 PDT 2011,169,100,10.427,40063.94,524373275,-948564076,241.8,22 -Sun Sep 25 07:27:30 PDT 2011,170,100,10.377,40074.32,524373659,-948562527,241.8,22 -Sun Sep 25 07:27:31 PDT 2011,171,99,10.377,40084.7,524374058,-948561040,241.8,22 -Sun Sep 25 07:27:32 PDT 2011,172,98,10.328,40095.03,524374515,-948559652,241.8,22 -Sun Sep 25 07:27:33 PDT 2011,173,93,10.23,40105.26,524374896,-948558210,241.8,22 -Sun Sep 25 07:27:34 PDT 2011,174,93,10.134,40115.39,524375262,-948556807,241.8,22 -Sun Sep 25 07:27:35 PDT 2011,175,93,9.993,40125.38,524375643,-948555466,241.8,22 -Sun Sep 25 07:27:36 PDT 2011,174,0,9.723,40135.11,524376000,-948554072,241.8,22 -Sun Sep 25 07:27:37 PDT 2011,174,0,9.324,40147.8,524376422,-948552282,241.8,22 -Sun Sep 25 07:27:38 PDT 2011,173,0,9.324,40153.84,524376613,-948551446,241.8,22 -Sun Sep 25 07:27:39 PDT 2011,172,0,9.272,40163.03,524376933,-948550219,241.8,22 -Sun Sep 25 07:27:40 PDT 2011,171,83,8.61,40171.64,524377225,-948549064,241.8,22 -Sun Sep 25 07:27:41 PDT 2011,170,93,8.509,40180.14,524377475,-948547878,241.8,22 -Sun Sep 25 07:27:42 PDT 2011,169,96,8.679,40188.82,524377768,-948546666,241.8,22 -Sun Sep 25 07:27:43 PDT 2011,169,97,8.929,40197.75,524378062,-948545421,241.8,22 -Sun Sep 25 07:27:44 PDT 2011,168,97,9.078,40206.83,524378335,-948544170,241.8,22 -Sun Sep 25 07:27:45 PDT 2011,168,97,9.117,40215.95,524378606,-948542877,241.8,22 -Sun Sep 25 07:27:46 PDT 2011,168,96,9.041,40224.99,524378876,-948541594,241.8,22 -Sun Sep 25 07:27:47 PDT 2011,168,96,8.929,40233.92,524379164,-948540303,241.8,22 -Sun Sep 25 07:27:48 PDT 2011,167,96,8.966,40242.88,524379441,-948539019,241.8,22 -Sun Sep 25 07:27:49 PDT 2011,167,97,8.892,40251.79,524379711,-948537793,241.8,22 -Sun Sep 25 07:27:50 PDT 2011,166,99,8.892,40260.67,524380019,-948536501,241.8,22 -Sun Sep 25 07:27:51 PDT 2011,167,100,9.133,40269.8,524380324,-948535241,241.8,22 -Sun Sep 25 07:27:52 PDT 2011,166,101,9.251,40279.05,524380640,-948533956,241.8,22 -Sun Sep 25 07:27:53 PDT 2011,166,99,9.452,40288.5,524380942,-948532612,241.8,22 -Sun Sep 25 07:27:54 PDT 2011,166,91,9.494,40298.0,524381228,-948531294,241.8,22 -Sun Sep 25 07:27:55 PDT 2011,166,91,9.452,40307.45,524381547,-948529899,241.8,22 -Sun Sep 25 07:27:56 PDT 2011,166,93,9.536,40316.98,524381840,-948528542,241.8,22 -Sun Sep 25 07:27:57 PDT 2011,166,97,9.578,40326.56,524382126,-948527116,241.8,22 -Sun Sep 25 07:27:58 PDT 2011,167,100,9.929,40336.49,524382402,-948525671,241.8,22 -Sun Sep 25 07:27:59 PDT 2011,167,94,10.211,40346.7,524382729,-948524226,241.8,22 -Sun Sep 25 07:28:00 PDT 2011,168,94,10.663,40357.37,524383096,-948522640,241.8,22 -Sun Sep 25 07:28:01 PDT 2011,168,94,11.101,40368.47,524383432,-948521038,241.8,22 -Sun Sep 25 07:28:02 PDT 2011,169,0,11.129,40379.6,524383901,-948519494,241.8,22 -Sun Sep 25 07:28:03 PDT 2011,169,0,11.296,40390.89,524384255,-948517833,241.6,22 -Sun Sep 25 07:28:04 PDT 2011,169,0,11.599,40402.49,524384632,-948516142,241.4,22 -Sun Sep 25 07:28:05 PDT 2011,168,0,11.986,40414.48,524385003,-948514455,241.2,22 -Sun Sep 25 07:28:06 PDT 2011,168,0,11.953,40426.43,524385391,-948512748,240.8,22 -Sun Sep 25 07:28:07 PDT 2011,167,0,11.789,40438.22,524385751,-948511108,240.6,22 -Sun Sep 25 07:28:08 PDT 2011,166,108,11.568,40449.79,524386139,-948509464,240.2,22 -Sun Sep 25 07:28:09 PDT 2011,166,105,11.355,40461.14,524386500,-948507844,240.0,22 -Sun Sep 25 07:28:10 PDT 2011,166,101,11.121,40472.26,524386841,-948506322,239.6,22 -Sun Sep 25 07:28:11 PDT 2011,166,98,10.681,40482.94,524387143,-948504823,239.4,22 -Sun Sep 25 07:28:12 PDT 2011,166,104,10.372,40493.31,524387431,-948503376,239.2,22 -Sun Sep 25 07:28:13 PDT 2011,167,104,9.988,40503.3,524387729,-948501986,239.0,22 -Sun Sep 25 07:28:14 PDT 2011,166,104,9.401,40512.7,524387983,-948500703,239.0,22 -Sun Sep 25 07:28:15 PDT 2011,166,93,8.77,40521.47,524388224,-948499538,238.8,22 -Sun Sep 25 07:28:16 PDT 2011,165,95,8.77,40530.24,524388476,-948498338,238.6,22 -Sun Sep 25 07:28:17 PDT 2011,165,98,8.77,40539.01,524388476,-948498338,238.6,22 -Sun Sep 25 07:28:18 PDT 2011,165,59,8.203,40547.22,524388861,-948496231,238.6,22 -Sun Sep 25 07:28:19 PDT 2011,165,94,8.298,40555.51,524389163,-948495188,238.8,22 -Sun Sep 25 07:28:20 PDT 2011,166,97,7.932,40563.45,524389424,-948494100,238.8,22 -Sun Sep 25 07:28:21 PDT 2011,166,101,8.111,40571.55,524389676,-948492996,238.8,22 -Sun Sep 25 07:28:22 PDT 2011,167,105,8.33,40579.9,524389982,-948491784,239.0,22 -Sun Sep 25 07:28:23 PDT 2011,168,105,8.561,40588.45,524390244,-948490588,239.0,22 -Sun Sep 25 07:28:24 PDT 2011,169,102,8.842,40597.29,524390521,-948489383,239.0,22 -Sun Sep 25 07:28:25 PDT 2011,170,102,8.77,40606.06,524390779,-948488139,239.0,22 -Sun Sep 25 07:28:26 PDT 2011,171,36,8.699,40614.76,524391053,-948486919,239.4,22 -Sun Sep 25 07:28:27 PDT 2011,171,92,8.494,40623.25,524391320,-948485658,239.6,22 -Sun Sep 25 07:28:28 PDT 2011,172,94,8.494,40631.74,524391554,-948484426,239.8,22 -Sun Sep 25 07:28:29 PDT 2011,172,94,8.63,40640.37,524391783,-948483205,240.0,22 -Sun Sep 25 07:28:30 PDT 2011,172,64,8.77,40649.14,524392053,-948481955,240.2,22 -Sun Sep 25 07:28:31 PDT 2011,172,93,8.699,40657.84,524392305,-948480771,240.2,22 -Sun Sep 25 07:28:32 PDT 2011,173,92,8.595,40666.43,524392592,-948479552,240.4,22 -Sun Sep 25 07:28:33 PDT 2011,173,57,8.561,40675.0,524392872,-948478332,240.6,22 -Sun Sep 25 07:28:34 PDT 2011,172,91,8.33,40683.32,524393160,-948477166,240.6,22 -Sun Sep 25 07:28:35 PDT 2011,173,92,8.395,40691.72,524393469,-948475995,240.8,22 -Sun Sep 25 07:28:36 PDT 2011,173,97,8.494,40700.21,524393812,-948474768,240.8,22 -Sun Sep 25 07:28:37 PDT 2011,173,94,8.878,40709.09,524394141,-948473430,240.8,22 -Sun Sep 25 07:28:38 PDT 2011,173,96,9.027,40718.12,524394376,-948472184,241.0,22 -Sun Sep 25 07:28:39 PDT 2011,173,93,8.842,40726.96,524394669,-948470941,241.0,22 -Sun Sep 25 07:28:40 PDT 2011,174,93,8.699,40735.66,524394922,-948469678,241.0,22 -Sun Sep 25 07:28:41 PDT 2011,174,94,8.561,40744.22,524395177,-948468448,241.2,22 -Sun Sep 25 07:28:42 PDT 2011,173,95,8.716,40752.94,524395447,-948467224,241.2,22 -Sun Sep 25 07:28:43 PDT 2011,174,96,8.895,40761.83,524395756,-948465985,241.2,22 -Sun Sep 25 07:28:44 PDT 2011,174,96,8.932,40770.77,524395998,-948464672,241.2,22 -Sun Sep 25 07:28:45 PDT 2011,173,97,8.895,40779.66,524396269,-948463423,241.2,22 -Sun Sep 25 07:28:46 PDT 2011,173,97,9.006,40788.67,524396551,-948462144,241.4,22 -Sun Sep 25 07:28:47 PDT 2011,173,97,8.932,40797.6,524396830,-948460896,241.4,22 -Sun Sep 25 07:28:48 PDT 2011,173,27,9.006,40806.61,524397123,-948459594,241.4,22 -Sun Sep 25 07:28:49 PDT 2011,173,95,8.859,40815.47,524397431,-948458373,241.4,22 -Sun Sep 25 07:28:50 PDT 2011,173,96,8.787,40824.25,524397725,-948457145,241.4,22 -Sun Sep 25 07:28:51 PDT 2011,173,98,8.969,40833.22,524398013,-948455846,241.4,22 -Sun Sep 25 07:28:52 PDT 2011,173,98,9.006,40842.23,524398308,-948454586,241.4,22 -Sun Sep 25 07:28:53 PDT 2011,173,99,9.159,40851.39,524398588,-948453319,241.4,22 -Sun Sep 25 07:28:54 PDT 2011,173,99,9.168,40860.56,524398890,-948452036,241.4,22 -Sun Sep 25 07:28:55 PDT 2011,174,100,9.207,40869.79,524399180,-948450742,241.4,22 -Sun Sep 25 07:28:56 PDT 2011,174,100,9.246,40879.01,524399506,-948449462,241.4,22 -Sun Sep 25 07:28:57 PDT 2011,175,103,9.326,40888.34,524399804,-948448154,241.4,22 -Sun Sep 25 07:28:58 PDT 2011,175,103,9.407,40897.74,524400115,-948446813,241.4,22 -Sun Sep 25 07:28:59 PDT 2011,176,106,9.573,40907.32,524400413,-948445477,241.6,22 -Sun Sep 25 07:29:00 PDT 2011,176,107,9.835,40917.15,524400721,-948444086,241.6,22 -Sun Sep 25 07:29:01 PDT 2011,177,109,10.158,40927.31,524401031,-948442707,241.6,22 -Sun Sep 25 07:29:02 PDT 2011,177,105,10.063,40937.37,524401392,-948441244,241.6,22 -Sun Sep 25 07:29:03 PDT 2011,178,99,10.182,40947.55,524401746,-948439853,241.6,22 -Sun Sep 25 07:29:04 PDT 2011,178,100,10.158,40957.71,524402132,-948438401,241.6,22 -Sun Sep 25 07:29:05 PDT 2011,179,100,10.352,40968.06,524402473,-948436888,241.6,22 -Sun Sep 25 07:29:06 PDT 2011,179,101,10.423,40978.48,524402838,-948435379,241.6,22 -Sun Sep 25 07:29:07 PDT 2011,179,102,10.473,40988.96,524403150,-948433870,241.6,22 -Sun Sep 25 07:29:08 PDT 2011,180,102,10.524,40999.48,524403465,-948432344,241.6,22 -Sun Sep 25 07:29:09 PDT 2011,180,102,10.628,41010.11,524403810,-948430771,241.6,22 -Sun Sep 25 07:29:10 PDT 2011,181,102,10.576,41020.68,524404144,-948429255,241.6,22 -Sun Sep 25 07:29:11 PDT 2011,181,101,10.681,41031.36,524404462,-948427783,241.6,22 -Sun Sep 25 07:29:12 PDT 2011,181,101,10.576,41041.94,524404787,-948426267,241.6,22 -Sun Sep 25 07:29:13 PDT 2011,182,111,10.524,41052.46,524405100,-948424739,241.6,22 -Sun Sep 25 07:29:14 PDT 2011,182,113,10.473,41062.93,524405387,-948423229,241.6,22 -Sun Sep 25 07:29:15 PDT 2011,183,110,10.499,41073.43,524405664,-948421772,241.6,22 -Sun Sep 25 07:29:16 PDT 2011,183,100,10.417,41083.85,524405964,-948420323,241.6,22 -Sun Sep 25 07:29:17 PDT 2011,184,100,10.293,41094.14,524406264,-948418904,241.6,22 -Sun Sep 25 07:29:18 PDT 2011,184,100,10.392,41104.54,524406573,-948417427,241.6,22 -Sun Sep 25 07:29:19 PDT 2011,184,100,10.392,41114.93,524406888,-948415983,241.6,22 -Sun Sep 25 07:29:20 PDT 2011,184,98,10.392,41125.32,524407217,-948414544,241.6,22 -Sun Sep 25 07:29:21 PDT 2011,185,98,10.196,41135.51,524407545,-948413093,241.6,22 -Sun Sep 25 07:29:22 PDT 2011,185,98,10.172,41145.68,524407875,-948411657,241.6,22 -Sun Sep 25 07:29:23 PDT 2011,184,96,10.148,41155.83,524408220,-948410274,241.6,22 -Sun Sep 25 07:29:24 PDT 2011,185,93,10.054,41165.89,524408566,-948408851,241.6,22 -Sun Sep 25 07:29:25 PDT 2011,185,104,9.825,41175.71,524408898,-948407442,241.6,22 -Sun Sep 25 07:29:26 PDT 2011,185,104,9.693,41185.4,524409216,-948406109,241.6,22 -Sun Sep 25 07:29:27 PDT 2011,185,104,9.589,41194.99,524409540,-948404743,241.6,22 -Sun Sep 25 07:29:28 PDT 2011,185,104,9.632,41204.63,524409828,-948403409,241.6,22 -Sun Sep 25 07:29:29 PDT 2011,185,104,9.632,41214.25,524410036,-948402038,241.6,22 -Sun Sep 25 07:29:30 PDT 2011,185,105,9.632,41223.89,524410302,-948400685,241.6,22 -Sun Sep 25 07:29:31 PDT 2011,185,105,9.675,41233.56,524410571,-948399321,241.6,22 -Sun Sep 25 07:29:32 PDT 2011,184,105,9.762,41243.32,524410822,-948397930,241.6,22 -Sun Sep 25 07:29:33 PDT 2011,184,106,9.807,41253.13,524411139,-948396530,241.6,22 -Sun Sep 25 07:29:34 PDT 2011,183,102,9.851,41262.98,524411488,-948395147,241.6,22 -Sun Sep 25 07:29:35 PDT 2011,183,94,9.807,41272.79,524411809,-948393787,241.6,22 -Sun Sep 25 07:29:36 PDT 2011,184,95,9.762,41282.55,524412159,-948392363,241.6,22 -Sun Sep 25 07:29:37 PDT 2011,183,95,9.942,41292.5,524412505,-948390962,241.6,22 -Sun Sep 25 07:29:38 PDT 2011,183,96,9.897,41302.39,524412819,-948389584,241.6,22 -Sun Sep 25 07:29:39 PDT 2011,183,95,9.897,41312.34,524413148,-948388167,241.6,22 -Sun Sep 25 07:29:40 PDT 2011,183,104,9.942,41322.23,524413473,-948386796,241.6,22 -Sun Sep 25 07:29:41 PDT 2011,183,102,9.807,41332.2,524413792,-948385444,241.6,22 -Sun Sep 25 07:29:42 PDT 2011,184,96,9.181,41344.95,524414178,-948383635,241.6,22 -Sun Sep 25 07:29:43 PDT 2011,183,96,9.181,41350.41,524414339,-948382870,241.6,22 -Sun Sep 25 07:29:44 PDT 2011,183,100,8.952,41359.36,524414608,-948381572,241.6,22 -Sun Sep 25 07:29:45 PDT 2011,183,102,8.915,41368.28,524414882,-948380317,241.6,22 -Sun Sep 25 07:29:46 PDT 2011,184,101,8.561,41377.44,524415162,-948379030,241.6,22 -Sun Sep 25 07:29:47 PDT 2011,183,102,8.594,41389.25,524415515,-948377403,241.6,22 -Sun Sep 25 07:29:48 PDT 2011,183,102,8.594,41394.11,524415660,-948376715,241.6,22 -Sun Sep 25 07:29:49 PDT 2011,183,36,8.628,41402.65,524415916,-948375561,241.6,22 -Sun Sep 25 07:29:50 PDT 2011,183,101,8.329,41410.98,524416179,-948374412,241.6,22 -Sun Sep 25 07:29:51 PDT 2011,183,107,8.297,41419.28,524416478,-948373185,241.6,22 -Sun Sep 25 07:29:52 PDT 2011,183,107,8.732,41428.01,524416797,-948371939,241.6,22 -Sun Sep 25 07:29:53 PDT 2011,183,108,8.986,41436.99,524417124,-948370690,241.6,22 -Sun Sep 25 07:29:54 PDT 2011,183,109,9.099,41446.09,524417464,-948369425,241.6,22 -Sun Sep 25 07:29:55 PDT 2011,183,98,9.024,41455.11,524417790,-948368152,241.6,22 -Sun Sep 25 07:29:56 PDT 2011,183,99,9.216,41464.33,524418092,-948366872,241.6,22 -Sun Sep 25 07:29:57 PDT 2011,183,99,9.498,41473.82,524418400,-948365569,241.6,22 -Sun Sep 25 07:29:58 PDT 2011,184,99,9.255,41483.12,524418687,-948364298,241.6,22 -Sun Sep 25 07:29:59 PDT 2011,184,99,9.216,41492.3,524418952,-948363062,241.6,22 -Sun Sep 25 07:30:00 PDT 2011,184,103,9.129,41501.43,524419214,-948361760,241.6,22 -Sun Sep 25 07:30:01 PDT 2011,185,105,9.071,41510.5,524419472,-948360508,241.6,22 -Sun Sep 25 07:30:02 PDT 2011,185,100,8.866,41519.36,524419694,-948359282,241.6,22 -Sun Sep 25 07:30:03 PDT 2011,185,101,8.687,41528.05,524419929,-948358039,241.6,22 -Sun Sep 25 07:30:04 PDT 2011,185,105,8.416,41536.46,524420144,-948356880,241.6,22 -Sun Sep 25 07:30:05 PDT 2011,186,105,8.758,41545.22,524420383,-948355611,241.6,22 -Sun Sep 25 07:30:06 PDT 2011,186,105,8.793,41554.01,524420615,-948354329,241.6,22 -Sun Sep 25 07:30:07 PDT 2011,186,95,9.326,41563.34,524420877,-948353105,241.6,22 -Sun Sep 25 07:30:08 PDT 2011,186,103,8.687,41572.02,524421169,-948351851,241.6,22 -Sun Sep 25 07:30:09 PDT 2011,186,106,9.246,41581.27,524421502,-948350519,241.6,22 -Sun Sep 25 07:30:10 PDT 2011,186,98,9.748,41591.02,524421841,-948349115,241.6,22 -Sun Sep 25 07:30:11 PDT 2011,186,101,10.067,41601.08,524422156,-948347700,241.6,22 -Sun Sep 25 07:30:12 PDT 2011,186,101,10.205,41611.29,524422495,-948346225,241.6,22 -Sun Sep 25 07:30:13 PDT 2011,185,101,10.354,41621.64,524422844,-948344734,241.6,22 -Sun Sep 25 07:30:14 PDT 2011,185,101,10.43,41632.07,524423181,-948343235,241.6,22 -Sun Sep 25 07:30:15 PDT 2011,185,100,10.354,41642.43,524423528,-948341730,241.6,22 -Sun Sep 25 07:30:16 PDT 2011,184,99,10.304,41652.73,524423869,-948340239,241.6,22 -Sun Sep 25 07:30:17 PDT 2011,184,97,10.108,41662.92,524424210,-948338731,241.6,22 -Sun Sep 25 07:30:18 PDT 2011,184,97,10.157,41672.99,524424557,-948337278,241.6,22 -Sun Sep 25 07:30:19 PDT 2011,184,107,9.92,41682.91,524424869,-948335841,241.6,22 -Sun Sep 25 07:30:20 PDT 2011,184,107,9.92,41692.84,524425171,-948334444,241.6,22 -Sun Sep 25 07:30:21 PDT 2011,183,107,9.829,41702.66,524425511,-948333015,241.6,22 -Sun Sep 25 07:30:22 PDT 2011,184,106,9.822,41712.48,524425823,-948331620,241.6,22 -Sun Sep 25 07:30:23 PDT 2011,184,106,9.821,41722.3,524426130,-948330245,241.6,22 -Sun Sep 25 07:30:24 PDT 2011,184,107,9.777,41732.08,524426425,-948328854,241.6,22 -Sun Sep 25 07:30:25 PDT 2011,184,107,9.912,41741.99,524426712,-948327497,241.6,22 -Sun Sep 25 07:30:26 PDT 2011,184,107,9.867,41751.86,524426966,-948326081,241.6,22 -Sun Sep 25 07:30:27 PDT 2011,184,105,9.867,41761.73,524427223,-948324663,241.6,22 -Sun Sep 25 07:30:28 PDT 2011,185,96,9.912,41771.64,524427496,-948323262,241.6,22 -Sun Sep 25 07:30:29 PDT 2011,185,92,9.867,41781.5,524427792,-948321869,241.6,22 -Sun Sep 25 07:30:30 PDT 2011,184,93,9.958,41791.46,524428131,-948320439,241.6,22 -Sun Sep 25 07:30:31 PDT 2011,184,91,9.601,41801.06,524428470,-948319076,241.6,22 -Sun Sep 25 07:30:32 PDT 2011,184,99,9.432,41810.5,524428795,-948317736,241.6,22 -Sun Sep 25 07:30:33 PDT 2011,184,96,9.169,41819.66,524429089,-948316429,241.6,22 -Sun Sep 25 07:30:34 PDT 2011,184,95,8.941,41828.61,524429352,-948315169,241.6,22 -Sun Sep 25 07:30:35 PDT 2011,184,96,8.722,41837.33,524429610,-948313930,241.6,22 -Sun Sep 25 07:30:36 PDT 2011,184,93,8.83,41846.2,524429886,-948312688,241.6,22 -Sun Sep 25 07:30:37 PDT 2011,184,98,8.687,41854.85,524430194,-948311486,241.6,22 -Sun Sep 25 07:30:38 PDT 2011,184,98,8.582,41863.43,524430485,-948310266,241.6,22 -Sun Sep 25 07:30:39 PDT 2011,183,102,8.652,41872.08,524430750,-948309027,241.6,22 -Sun Sep 25 07:30:40 PDT 2011,183,102,8.413,41880.5,524430967,-948307812,241.6,22 -Sun Sep 25 07:30:41 PDT 2011,183,102,8.48,41888.98,524431208,-948306608,241.6,22 -Sun Sep 25 07:30:42 PDT 2011,182,0,8.125,41897.1,524431403,-948305501,241.6,22 -Sun Sep 25 07:30:43 PDT 2011,182,0,7.659,41904.76,524431638,-948304415,241.6,22 -Sun Sep 25 07:30:44 PDT 2011,181,0,7.293,41912.05,524431856,-948303438,241.6,22 -Sun Sep 25 07:30:45 PDT 2011,180,0,6.456,41918.51,524432042,-948302573,241.6,22 -Sun Sep 25 07:30:46 PDT 2011,180,0,5.855,41924.37,524432163,-948301947,241.6,22 -Sun Sep 25 07:30:47 PDT 2011,179,0,4.424,41928.79,524432256,-948301531,241.6,22 -Sun Sep 25 07:30:48 PDT 2011,179,0,2.774,41931.57,524432363,-948301257,241.6,22 -Sun Sep 25 07:30:49 PDT 2011,178,0,2.173,41933.74,524432407,-948301096,241.6,22 -Sun Sep 25 07:30:50 PDT 2011,178,0,2.173,41935.92,524432423,-948301084,241.6,22 -Sun Sep 25 07:30:51 PDT 2011,178,0,1.41,41937.32,524432445,-948301015,241.6,22 -Sun Sep 25 07:30:59 PDT 2011,174,0,1.304,41937.32,524432283,-948302370,241.6,22 -Sun Sep 25 07:31:00 PDT 2011,174,0,1.741,41939.09,524432252,-948302143,241.6,22 -Sun Sep 25 07:31:01 PDT 2011,173,0,2.012,41941.07,524432303,-948302082,241.6,22 -Sun Sep 25 07:31:02 PDT 2011,172,0,1.841,41943.12,524432216,-948301996,241.6,22 -Sun Sep 25 07:31:03 PDT 2011,172,0,1.841,41944.76,524432235,-948301881,241.6,22 -Sun Sep 25 07:31:04 PDT 2011,171,0,0.0,41944.76,524432289,-948301848,241.6,22 -Sun Sep 25 07:31:13 PDT 2011,170,0,1.501,41944.76,524432465,-948301168,242.4,22 -Sun Sep 25 07:31:14 PDT 2011,170,36,2.043,41946.85,524432457,-948300676,242.6,22 -Sun Sep 25 07:31:15 PDT 2011,171,49,2.043,41948.85,524432458,-948300015,242.6,22 -Sun Sep 25 07:31:16 PDT 2011,171,57,4.803,41954.64,524432558,-948299011,242.8,22 -Sun Sep 25 07:31:17 PDT 2011,172,65,4.803,41958.45,524432678,-948298400,242.8,22 -Sun Sep 25 07:31:18 PDT 2011,172,71,5.408,41963.86,524432913,-948297491,243.0,22 -Sun Sep 25 07:31:19 PDT 2011,173,71,6.031,41969.89,524433127,-948296529,243.0,22 -Sun Sep 25 07:31:20 PDT 2011,173,78,6.448,41976.34,524433395,-948295637,243.2,22 -Sun Sep 25 07:31:21 PDT 2011,174,85,6.17,41982.51,524433708,-948294645,243.2,22 -Sun Sep 25 07:31:22 PDT 2011,174,99,6.994,41989.5,524433960,-948293569,243.2,22 -Sun Sep 25 07:31:23 PDT 2011,174,104,7.752,41997.27,524434266,-948292377,243.4,22 -Sun Sep 25 07:31:24 PDT 2011,175,89,8.589,42005.84,524434552,-948291141,243.4,22 -Sun Sep 25 07:31:25 PDT 2011,176,93,9.176,42015.01,524434801,-948289811,243.4,22 -Sun Sep 25 07:31:26 PDT 2011,176,96,9.418,42024.43,524435082,-948288399,243.4,22 -Sun Sep 25 07:31:27 PDT 2011,177,96,9.782,42034.21,524435315,-948286835,243.6,22 -Sun Sep 25 07:31:28 PDT 2011,178,97,10.323,42044.54,524435531,-948285391,243.6,22 -Sun Sep 25 07:31:29 PDT 2011,178,96,9.895,42054.43,524435775,-948283933,243.6,22 -Sun Sep 25 07:31:30 PDT 2011,179,96,9.895,42064.33,524436049,-948282438,243.6,22 -Sun Sep 25 07:31:31 PDT 2011,179,94,9.895,42074.22,524436314,-948281010,243.6,22 -Sun Sep 25 07:31:32 PDT 2011,180,94,9.76,42083.98,524436561,-948279583,243.6,22 -Sun Sep 25 07:31:33 PDT 2011,180,100,9.782,42093.81,524436789,-948278157,243.6,22 -Sun Sep 25 07:31:34 PDT 2011,179,100,9.543,42103.31,524436999,-948276748,243.8,22 -Sun Sep 25 07:31:35 PDT 2011,180,94,9.805,42113.11,524437128,-948275321,243.8,22 -Sun Sep 25 07:31:36 PDT 2011,179,94,9.672,42122.79,524437234,-948273883,243.8,22 -Sun Sep 25 07:31:37 PDT 2011,179,94,9.672,42132.46,524437320,-948272457,243.8,22 -Sun Sep 25 07:31:38 PDT 2011,178,0,9.295,42141.76,524437352,-948271097,243.8,22 -Sun Sep 25 07:31:39 PDT 2011,178,87,8.947,42150.7,524437391,-948269737,243.8,22 -Sun Sep 25 07:31:40 PDT 2011,177,94,8.728,42159.43,524437483,-948268419,243.8,22 -Sun Sep 25 07:31:41 PDT 2011,176,90,8.728,42168.15,524437603,-948267112,243.8,22 -Sun Sep 25 07:31:42 PDT 2011,176,90,8.764,42176.92,524437726,-948265832,243.8,22 -Sun Sep 25 07:31:43 PDT 2011,175,90,8.693,42185.61,524437849,-948264562,243.8,22 -Sun Sep 25 07:31:44 PDT 2011,174,0,8.589,42194.2,524437960,-948263297,243.8,22 -Sun Sep 25 07:31:45 PDT 2011,173,0,8.454,42202.65,524438047,-948262071,243.8,22 -Sun Sep 25 07:31:46 PDT 2011,172,83,8.29,42210.94,524438120,-948260818,243.8,22 -Sun Sep 25 07:31:47 PDT 2011,172,83,8.521,42219.46,524438196,-948259571,243.8,22 -Sun Sep 25 07:31:48 PDT 2011,171,83,8.658,42228.12,524438272,-948258291,243.8,22 -Sun Sep 25 07:31:49 PDT 2011,171,0,8.658,42236.77,524438358,-948257018,243.8,22 -Sun Sep 25 07:31:50 PDT 2011,170,0,8.658,42245.57,524438454,-948255725,243.8,22 -Sun Sep 25 07:31:51 PDT 2011,169,80,8.298,42255.28,524438574,-948254267,243.8,22 -Sun Sep 25 07:31:52 PDT 2011,168,80,8.33,42265.33,524438731,-948252796,243.8,22 -Sun Sep 25 07:31:53 PDT 2011,167,80,8.33,42270.52,524438818,-948252037,243.8,22 -Sun Sep 25 07:31:54 PDT 2011,167,81,8.298,42278.69,524438948,-948250864,243.8,22 -Sun Sep 25 07:31:55 PDT 2011,167,86,8.363,42287.05,524439051,-948249633,243.8,22 -Sun Sep 25 07:31:56 PDT 2011,167,95,8.495,42295.56,524438864,-948248402,243.8,22 -Sun Sep 25 07:31:57 PDT 2011,167,98,8.462,42304.01,524438269,-948247606,243.8,22 -Sun Sep 25 07:31:58 PDT 2011,167,110,8.396,42312.4,524437527,-948246984,243.6,22 -Sun Sep 25 07:31:59 PDT 2011,167,67,8.881,42321.29,524436556,-948246454,243.4,22 -Sun Sep 25 07:32:00 PDT 2011,168,106,9.904,42331.19,524435435,-948246214,243.2,22 -Sun Sep 25 07:32:01 PDT 2011,169,102,9.681,42340.87,524434251,-948245924,243.2,22 -Sun Sep 25 07:32:02 PDT 2011,170,102,10.043,42350.91,524433016,-948245576,243.0,22 -Sun Sep 25 07:32:03 PDT 2011,170,102,10.383,42361.29,524431881,-948245145,242.8,22 -Sun Sep 25 07:32:04 PDT 2011,170,0,10.484,42371.78,524430742,-948244673,242.8,22 -Sun Sep 25 07:32:05 PDT 2011,169,0,10.484,42382.26,524429636,-948244198,242.6,22 -Sun Sep 25 07:32:06 PDT 2011,169,96,10.484,42392.75,524428514,-948243762,242.4,22 -Sun Sep 25 07:32:07 PDT 2011,169,96,10.693,42403.44,524427358,-948243304,242.2,22 -Sun Sep 25 07:32:08 PDT 2011,169,97,11.022,42414.46,524426181,-948242817,241.8,22 -Sun Sep 25 07:32:09 PDT 2011,169,96,11.253,42425.72,524424992,-948242311,241.6,22 -Sun Sep 25 07:32:10 PDT 2011,170,96,11.253,42436.97,524423805,-948241767,241.2,22 -Sun Sep 25 07:32:11 PDT 2011,170,96,11.253,42448.26,524422663,-948241206,240.8,22 -Sun Sep 25 07:32:12 PDT 2011,169,0,10.8,42459.02,524421527,-948240737,240.4,22 -Sun Sep 25 07:32:13 PDT 2011,169,0,10.64,42469.67,524420430,-948240241,240.2,22 -Sun Sep 25 07:32:14 PDT 2011,169,0,10.333,42480.0,524419385,-948239762,239.8,22 -Sun Sep 25 07:32:15 PDT 2011,168,83,10.115,42490.11,524418411,-948239335,239.6,22 -Sun Sep 25 07:32:16 PDT 2011,167,83,10.021,42500.13,524417433,-948238880,239.4,22 -Sun Sep 25 07:32:17 PDT 2011,167,83,9.751,42509.88,524416482,-948238433,239.2,22 -Sun Sep 25 07:32:18 PDT 2011,167,95,9.884,42519.76,524415533,-948237998,239.0,22 -Sun Sep 25 07:32:19 PDT 2011,166,95,9.839,42529.6,524414553,-948237589,238.8,22 -Sun Sep 25 07:32:20 PDT 2011,166,96,9.929,42539.53,524413546,-948237177,238.8,22 -Sun Sep 25 07:32:21 PDT 2011,166,96,9.929,42549.46,524412539,-948236760,238.6,22 -Sun Sep 25 07:32:22 PDT 2011,166,96,9.929,42559.39,524411522,-948236369,238.4,22 -Sun Sep 25 07:32:23 PDT 2011,165,0,9.795,42569.19,524410509,-948235905,238.4,22 -Sun Sep 25 07:32:24 PDT 2011,164,93,9.664,42578.85,524409527,-948235436,238.2,22 -Sun Sep 25 07:32:25 PDT 2011,163,96,9.651,42588.51,524408562,-948234807,238.2,22 -Sun Sep 25 07:32:26 PDT 2011,163,89,9.828,42598.33,524407615,-948234022,238.0,22 -Sun Sep 25 07:32:27 PDT 2011,162,86,9.965,42608.3,524406716,-948233185,238.0,22 -Sun Sep 25 07:32:28 PDT 2011,162,86,10.105,42618.4,524405855,-948232192,238.0,22 -Sun Sep 25 07:32:29 PDT 2011,161,86,10.058,42628.46,524405128,-948231192,237.8,22 -Sun Sep 25 07:32:30 PDT 2011,160,0,9.695,42638.18,524404389,-948230104,237.8,22 -Sun Sep 25 07:32:31 PDT 2011,159,0,9.399,42647.56,524403817,-948229001,237.8,22 -Sun Sep 25 07:32:32 PDT 2011,158,0,9.277,42656.83,524403270,-948227807,237.8,22 -Sun Sep 25 07:32:33 PDT 2011,158,0,9.043,42665.88,524402887,-948226711,237.8,22 -Sun Sep 25 07:32:34 PDT 2011,157,91,8.894,42674.77,524402472,-948225456,237.4,22 -Sun Sep 25 07:32:35 PDT 2011,158,94,8.679,42683.45,524402050,-948224225,237.2,22 -Sun Sep 25 07:32:36 PDT 2011,158,94,8.749,42692.2,524401718,-948223100,237.0,22 -Sun Sep 25 07:32:37 PDT 2011,159,95,8.749,42700.95,524401339,-948221937,236.8,22 -Sun Sep 25 07:32:38 PDT 2011,160,97,8.749,42709.7,524400939,-948220767,236.8,22 -Sun Sep 25 07:32:39 PDT 2011,161,97,8.968,42718.67,524400538,-948219609,236.6,22 -Sun Sep 25 07:32:40 PDT 2011,161,98,8.968,42727.64,524400116,-948218470,236.4,22 -Sun Sep 25 07:32:41 PDT 2011,162,98,9.024,42736.66,524399695,-948217328,236.4,22 -Sun Sep 25 07:32:42 PDT 2011,162,99,9.082,42745.74,524399280,-948216159,236.2,22 -Sun Sep 25 07:32:43 PDT 2011,162,98,9.12,42754.86,524398912,-948214840,236.2,22 -Sun Sep 25 07:32:44 PDT 2011,163,97,9.082,42763.95,524398690,-948213555,236.0,22 -Sun Sep 25 07:32:45 PDT 2011,163,97,8.968,42772.92,524398419,-948212277,236.0,22 -Sun Sep 25 07:32:46 PDT 2011,163,99,9.043,42781.96,524398215,-948210951,235.8,22 -Sun Sep 25 07:32:47 PDT 2011,163,101,9.043,42791.0,524398149,-948209622,235.8,22 -Sun Sep 25 07:32:48 PDT 2011,164,105,9.358,42800.36,524398112,-948208171,235.8,22 -Sun Sep 25 07:32:49 PDT 2011,165,105,9.652,42810.02,524398146,-948206732,235.8,22 -Sun Sep 25 07:32:50 PDT 2011,165,105,9.695,42819.7,524398254,-948205298,235.6,22 -Sun Sep 25 07:32:51 PDT 2011,165,107,9.695,42829.4,524398476,-948203838,235.6,22 -Sun Sep 25 07:32:52 PDT 2011,166,104,9.806,42839.2,524398773,-948202384,235.6,22 -Sun Sep 25 07:32:53 PDT 2011,167,95,9.965,42849.17,524399111,-948200917,235.6,22 -Sun Sep 25 07:32:54 PDT 2011,167,94,0.0,42849.17,524399461,-948199528,235.6,22 -Sun Sep 25 07:32:55 PDT 2011,167,94,9.828,42859.0,524399841,-948198124,235.6,22 -Sun Sep 25 07:32:56 PDT 2011,168,93,9.828,42868.83,524400217,-948196776,235.4,22 -Sun Sep 25 07:32:57 PDT 2011,167,93,9.652,42878.48,524400564,-948195418,235.4,22 -Sun Sep 25 07:32:58 PDT 2011,167,93,9.695,42888.17,524400879,-948194057,235.4,22 -Sun Sep 25 07:32:59 PDT 2011,167,25,9.652,42897.83,524401125,-948192723,235.4,22 -Sun Sep 25 07:33:00 PDT 2011,166,93,9.358,42907.19,524401380,-948191373,235.4,22 -Sun Sep 25 07:33:01 PDT 2011,166,100,9.159,42916.35,524401642,-948190058,235.6,22 -Sun Sep 25 07:33:02 PDT 2011,165,99,9.277,42925.62,524401923,-948188745,235.8,22 -Sun Sep 25 07:33:03 PDT 2011,164,98,9.198,42934.82,524402199,-948187473,236.0,22 -Sun Sep 25 07:33:04 PDT 2011,164,98,9.082,42943.9,524402496,-948186188,236.0,22 -Sun Sep 25 07:33:05 PDT 2011,164,98,9.082,42952.99,524402806,-948184939,236.2,22 -Sun Sep 25 07:33:06 PDT 2011,164,101,9.052,42962.04,524403126,-948183651,236.2,22 -Sun Sep 25 07:33:07 PDT 2011,164,102,9.071,42971.11,524403434,-948182333,236.4,22 -Sun Sep 25 07:33:08 PDT 2011,165,101,9.491,42980.61,524403708,-948181029,236.4,22 -Sun Sep 25 07:33:09 PDT 2011,165,101,9.449,42990.05,524403977,-948179709,236.6,22 -Sun Sep 25 07:33:10 PDT 2011,166,101,9.326,42999.37,524404295,-948178331,236.6,22 -Sun Sep 25 07:33:11 PDT 2011,166,98,9.286,43008.66,524404580,-948177081,236.6,22 -Sun Sep 25 07:33:12 PDT 2011,167,99,9.052,43017.71,524404876,-948175765,236.8,22 -Sun Sep 25 07:33:13 PDT 2011,167,100,9.129,43026.84,524405177,-948174453,236.8,22 -Sun Sep 25 07:33:14 PDT 2011,168,100,9.246,43036.08,524405496,-948173133,236.8,22 -Sun Sep 25 07:33:15 PDT 2011,168,97,9.246,43045.33,524405747,-948171866,236.8,22 -Sun Sep 25 07:33:16 PDT 2011,169,100,9.09,43054.42,524405850,-948170525,237.0,22 -Sun Sep 25 07:33:17 PDT 2011,169,102,8.583,43063.0,524405862,-948169188,237.0,22 -Sun Sep 25 07:33:18 PDT 2011,170,103,9.408,43072.45,524405781,-948167745,237.0,22 -Sun Sep 25 07:33:19 PDT 2011,170,103,9.491,43081.9,524405673,-948166361,237.0,22 -Sun Sep 25 07:33:20 PDT 2011,171,105,9.704,43091.6,524405466,-948165032,237.0,22 -Sun Sep 25 07:33:21 PDT 2011,171,107,9.052,43100.65,524405165,-948163678,237.0,22 -Sun Sep 25 07:33:22 PDT 2011,172,106,8.939,43109.59,524404888,-948162397,237.0,22 -Sun Sep 25 07:33:23 PDT 2011,173,106,8.939,43118.53,524404484,-948161179,237.4,22 -Sun Sep 25 07:33:24 PDT 2011,173,106,8.902,43127.43,524404061,-948159949,237.6,22 -Sun Sep 25 07:33:25 PDT 2011,173,99,8.866,43136.3,524403574,-948158811,237.8,22 -Sun Sep 25 07:33:26 PDT 2011,173,95,8.829,43145.13,524403040,-948157745,237.8,22 -Sun Sep 25 07:33:27 PDT 2011,173,94,8.829,43153.96,524402463,-948156761,238.0,22 -Sun Sep 25 07:33:28 PDT 2011,174,94,8.758,43162.71,524401828,-948155750,238.2,22 -Sun Sep 25 07:33:29 PDT 2011,173,96,8.652,43171.36,524401164,-948154887,238.2,22 -Sun Sep 25 07:33:30 PDT 2011,173,97,8.866,43180.23,524400440,-948154042,238.4,22 -Sun Sep 25 07:33:31 PDT 2011,173,97,8.939,43189.17,524399666,-948153304,238.4,22 -Sun Sep 25 07:33:32 PDT 2011,173,97,9.014,43198.19,524398808,-948152634,238.6,22 -Sun Sep 25 07:33:33 PDT 2011,173,33,9.014,43207.2,524397939,-948151951,238.6,22 -Sun Sep 25 07:33:34 PDT 2011,173,95,8.977,43216.18,524397045,-948151460,238.6,22 -Sun Sep 25 07:33:35 PDT 2011,173,101,8.829,43225.01,524396114,-948151058,238.8,22 -Sun Sep 25 07:33:36 PDT 2011,172,97,8.902,43233.91,524395162,-948150622,238.8,22 -Sun Sep 25 07:33:37 PDT 2011,172,98,8.939,43242.85,524394200,-948150393,238.8,22 -Sun Sep 25 07:33:38 PDT 2011,171,98,9.071,43251.92,524393230,-948150134,239.0,22 -Sun Sep 25 07:33:39 PDT 2011,171,98,8.866,43260.78,524392283,-948149881,239.0,22 -Sun Sep 25 07:33:40 PDT 2011,170,0,8.515,43269.3,524391381,-948149616,239.0,22 -Sun Sep 25 07:33:41 PDT 2011,170,95,8.383,43277.68,524390490,-948149371,239.0,22 -Sun Sep 25 07:33:42 PDT 2011,169,104,8.35,43286.03,524389625,-948149155,239.0,22 -Sun Sep 25 07:33:43 PDT 2011,169,105,8.617,43294.65,524388681,-948148975,239.0,22 -Sun Sep 25 07:33:44 PDT 2011,169,106,8.793,43303.44,524387753,-948148796,239.2,22 -Sun Sep 25 07:33:45 PDT 2011,170,108,8.829,43312.27,524386810,-948148688,239.2,22 -Sun Sep 25 07:33:46 PDT 2011,170,97,8.977,43321.25,524385846,-948148560,239.2,22 -Sun Sep 25 07:33:47 PDT 2011,170,97,9.052,43330.3,524384881,-948148414,239.2,22 -Sun Sep 25 07:33:48 PDT 2011,169,94,8.977,43339.27,524383909,-948148266,239.2,22 -Sun Sep 25 07:33:49 PDT 2011,169,95,8.722,43348.0,524382977,-948148137,239.2,22 -Sun Sep 25 07:33:50 PDT 2011,169,97,8.758,43356.76,524382024,-948147970,239.2,22 -Sun Sep 25 07:33:51 PDT 2011,169,97,8.977,43365.75,524381055,-948147787,239.2,22 -Sun Sep 25 07:33:52 PDT 2011,170,99,9.014,43374.75,524380131,-948147625,239.2,22 -Sun Sep 25 07:33:53 PDT 2011,169,100,9.109,43383.86,524379195,-948147487,239.2,22 -Sun Sep 25 07:33:54 PDT 2011,169,100,9.286,43393.14,524378166,-948147329,239.2,22 -Sun Sep 25 07:33:55 PDT 2011,169,26,9.449,43402.67,524377169,-948147176,239.2,22 -Sun Sep 25 07:33:56 PDT 2011,168,108,9.793,43414.71,524375891,-948146953,239.2,22 -Sun Sep 25 07:33:57 PDT 2011,168,107,9.793,43422.29,524375079,-948146823,239.0,22 -Sun Sep 25 07:33:58 PDT 2011,168,100,10.167,43432.34,524373962,-948146589,238.8,22 -Sun Sep 25 07:33:59 PDT 2011,168,100,10.363,43442.7,524372864,-948146364,238.8,22 -Sun Sep 25 07:34:00 PDT 2011,167,103,10.413,43453.48,524371656,-948146117,238.6,22 -Sun Sep 25 07:34:01 PDT 2011,167,103,10.726,43467.53,524370122,-948145869,238.4,22 -Sun Sep 25 07:34:02 PDT 2011,167,103,10.726,43474.59,524369366,-948145730,238.4,22 -Sun Sep 25 07:34:03 PDT 2011,167,99,10.516,43485.2,524368251,-948145556,238.2,22 -Sun Sep 25 07:34:04 PDT 2011,167,98,10.289,43495.36,524367147,-948145373,238.2,22 -Sun Sep 25 07:34:05 PDT 2011,167,94,10.215,43505.58,524366099,-948145202,238.0,22 -Sun Sep 25 07:34:06 PDT 2011,167,92,9.931,43515.51,524365063,-948145007,238.0,22 -Sun Sep 25 07:34:07 PDT 2011,167,99,9.45,43524.95,524364066,-948144815,237.8,22 -Sun Sep 25 07:34:08 PDT 2011,166,99,9.207,43534.16,524363075,-948144634,237.8,22 -Sun Sep 25 07:34:09 PDT 2011,166,101,9.295,43543.46,524362123,-948144464,237.8,22 -Sun Sep 25 07:34:10 PDT 2011,166,101,9.176,43552.63,524361170,-948144294,237.8,22 -Sun Sep 25 07:34:11 PDT 2011,166,102,9.335,43561.97,524360193,-948144055,237.6,22 -Sun Sep 25 07:34:12 PDT 2011,166,94,9.5,43571.47,524359174,-948143866,237.6,22 -Sun Sep 25 07:34:13 PDT 2011,166,94,9.458,43580.93,524358172,-948143660,237.6,22 -Sun Sep 25 07:34:14 PDT 2011,165,94,9.137,43590.06,524357206,-948143458,237.6,22 -Sun Sep 25 07:34:15 PDT 2011,164,0,8.557,43598.62,524356311,-948143302,237.6,22 -Sun Sep 25 07:34:16 PDT 2011,163,0,8.262,43606.88,524355447,-948143129,237.6,22 -Sun Sep 25 07:34:17 PDT 2011,163,86,7.928,43614.81,524354615,-948142965,237.4,22 -Sun Sep 25 07:34:18 PDT 2011,162,84,8.168,43622.98,524353855,-948142507,237.4,22 -Sun Sep 25 07:34:19 PDT 2011,162,94,7.813,43630.79,524353293,-948141805,237.4,22 -Sun Sep 25 07:34:20 PDT 2011,163,96,7.647,43638.44,524352972,-948140806,237.4,22 -Sun Sep 25 07:34:21 PDT 2011,162,105,8.137,43646.58,524352958,-948139603,237.4,22 -Sun Sep 25 07:34:22 PDT 2011,163,114,8.045,43654.63,524353007,-948138304,237.4,22 -Sun Sep 25 07:34:23 PDT 2011,163,111,8.766,43663.39,524353127,-948136815,237.4,22 -Sun Sep 25 07:34:24 PDT 2011,164,107,8.911,43672.3,524353235,-948135366,237.4,22 -Sun Sep 25 07:34:25 PDT 2011,164,102,8.985,43681.29,524353152,-948134016,237.4,22 -Sun Sep 25 07:34:26 PDT 2011,165,96,9.061,43690.35,524353105,-948132628,237.4,22 -Sun Sep 25 07:34:27 PDT 2011,165,94,8.874,43699.22,524353022,-948131290,237.4,22 -Sun Sep 25 07:34:28 PDT 2011,166,95,8.802,43708.02,524352993,-948129984,237.4,22 -Sun Sep 25 07:34:29 PDT 2011,166,95,8.695,43716.72,524352966,-948128693,237.4,22 -Sun Sep 25 07:34:30 PDT 2011,167,95,8.766,43725.49,524352943,-948127392,237.4,22 -Sun Sep 25 07:34:31 PDT 2011,167,96,8.802,43734.29,524352957,-948126114,237.4,22 -Sun Sep 25 07:34:32 PDT 2011,168,97,8.874,43743.16,524352886,-948124781,237.4,22 -Sun Sep 25 07:34:33 PDT 2011,169,100,8.948,43752.11,524352813,-948123440,237.4,22 -Sun Sep 25 07:34:34 PDT 2011,169,101,9.137,43761.25,524352782,-948122083,237.2,22 -Sun Sep 25 07:34:35 PDT 2011,168,106,9.348,43770.6,524352781,-948120679,237.2,22 -Sun Sep 25 07:34:36 PDT 2011,169,98,9.725,43780.32,524352865,-948119166,237.2,22 -Sun Sep 25 07:34:37 PDT 2011,169,99,10.134,43790.45,524352950,-948117690,237.2,22 -Sun Sep 25 07:34:38 PDT 2011,169,89,10.278,43800.73,524353089,-948116146,237.2,22 -Sun Sep 25 07:34:39 PDT 2011,169,91,10.477,43811.21,524353347,-948114572,237.2,22 -Sun Sep 25 07:34:40 PDT 2011,169,91,10.683,43821.89,524353580,-948113024,237.2,22 -Sun Sep 25 07:34:41 PDT 2011,169,91,10.844,43832.74,524353885,-948111532,237.2,22 -Sun Sep 25 07:34:42 PDT 2011,169,0,10.134,43842.87,524354171,-948110085,237.2,22 -Sun Sep 25 07:34:43 PDT 2011,168,0,10.04,43852.91,524354485,-948108655,237.2,22 -Sun Sep 25 07:34:44 PDT 2011,167,0,9.725,43862.63,524354786,-948107332,237.2,22 -Sun Sep 25 07:34:45 PDT 2011,166,0,8.999,43871.63,524355082,-948106117,237.2,22 -Sun Sep 25 07:34:46 PDT 2011,165,89,8.439,43880.07,524355371,-948104919,237.2,22 -Sun Sep 25 07:34:47 PDT 2011,164,93,8.341,43888.41,524355222,-948103855,237.2,22 -Sun Sep 25 07:34:48 PDT 2011,164,96,8.341,43896.75,524354666,-948103143,237.2,22 -Sun Sep 25 07:34:49 PDT 2011,165,103,7.745,43904.5,524353953,-948102488,237.2,22 -Sun Sep 25 07:34:50 PDT 2011,166,106,8.439,43912.94,524353106,-948101877,237.2,22 -Sun Sep 25 07:34:51 PDT 2011,166,106,8.962,43921.9,524352063,-948101278,237.2,22 -Sun Sep 25 07:34:52 PDT 2011,167,28,8.816,43930.71,524351176,-948100631,237.2,22 -Sun Sep 25 07:34:53 PDT 2011,168,101,8.64,43939.35,524350406,-948099850,237.2,22 -Sun Sep 25 07:34:54 PDT 2011,169,101,8.538,43947.89,524349665,-948098946,237.2,22 -Sun Sep 25 07:34:55 PDT 2011,169,103,8.505,43956.4,524349055,-948098020,237.2,22 -Sun Sep 25 07:34:56 PDT 2011,170,103,8.675,43965.07,524348434,-948096994,237.2,22 -Sun Sep 25 07:34:57 PDT 2011,170,101,8.64,43973.71,524347962,-948095985,237.2,22 -Sun Sep 25 07:34:58 PDT 2011,170,105,8.538,43982.25,524347438,-948094983,237.2,22 -Sun Sep 25 07:34:59 PDT 2011,170,106,8.71,43990.96,524346909,-948093871,237.2,22 -Sun Sep 25 07:35:00 PDT 2011,170,106,8.925,43999.89,524346372,-948092737,237.2,22 -Sun Sep 25 07:35:01 PDT 2011,170,98,9.074,44008.96,524345902,-948091764,237.2,22 -Sun Sep 25 07:35:02 PDT 2011,171,98,9.189,44018.15,524345387,-948090592,237.2,22 -Sun Sep 25 07:35:03 PDT 2011,171,98,9.209,44027.36,524344841,-948089432,237.2,22 -Sun Sep 25 07:35:04 PDT 2011,171,97,9.074,44036.44,524344277,-948088323,237.2,22 -Sun Sep 25 07:35:05 PDT 2011,171,97,9.112,44045.55,524343771,-948087181,237.2,22 -Sun Sep 25 07:35:06 PDT 2011,171,97,9.074,44054.62,524343240,-948085964,237.2,22 -Sun Sep 25 07:35:07 PDT 2011,171,96,9.074,44063.7,524342697,-948084818,237.2,22 -Sun Sep 25 07:35:08 PDT 2011,171,96,8.999,44072.7,524342157,-948083750,237.2,22 -Sun Sep 25 07:35:09 PDT 2011,171,97,8.888,44081.58,524341559,-948082722,237.2,22 -Sun Sep 25 07:35:10 PDT 2011,172,97,8.999,44090.58,524340956,-948081736,237.2,22 -Sun Sep 25 07:35:11 PDT 2011,172,98,9.07,44099.65,524340306,-948080903,237.2,22 -Sun Sep 25 07:35:12 PDT 2011,172,99,9.108,44108.76,524339606,-948079951,237.2,22 -Sun Sep 25 07:35:13 PDT 2011,172,99,9.224,44117.99,524338887,-948079085,237.2,22 -Sun Sep 25 07:35:14 PDT 2011,172,100,9.264,44127.25,524338046,-948078195,237.2,22 -Sun Sep 25 07:35:15 PDT 2011,172,97,9.344,44136.6,524337150,-948077572,237.2,22 -Sun Sep 25 07:35:16 PDT 2011,172,93,9.344,44145.94,524336261,-948076839,237.2,22 -Sun Sep 25 07:35:17 PDT 2011,172,99,9.224,44155.16,524335303,-948076277,237.2,22 -Sun Sep 25 07:35:18 PDT 2011,172,99,9.185,44164.35,524334431,-948075855,237.2,22 -Sun Sep 25 07:35:19 PDT 2011,173,99,9.264,44173.61,524333450,-948075431,237.2,22 -Sun Sep 25 07:35:20 PDT 2011,173,99,9.264,44182.88,524332455,-948075095,237.2,22 -Sun Sep 25 07:35:21 PDT 2011,173,102,9.303,44192.18,524331490,-948074867,237.2,22 -Sun Sep 25 07:35:22 PDT 2011,174,104,9.384,44201.56,524330456,-948074538,237.2,22 -Sun Sep 25 07:35:23 PDT 2011,174,106,9.592,44211.16,524329465,-948074189,237.2,22 -Sun Sep 25 07:35:24 PDT 2011,174,106,9.898,44221.06,524328435,-948073808,237.2,22 -Sun Sep 25 07:35:25 PDT 2011,174,21,9.853,44230.91,524327422,-948073398,237.2,22 -Sun Sep 25 07:35:26 PDT 2011,174,109,9.303,44240.21,524326481,-948073053,237.2,22 -Sun Sep 25 07:35:27 PDT 2011,174,109,9.146,44249.36,524325473,-948072575,237.2,22 -Sun Sep 25 07:35:28 PDT 2011,174,107,9.185,44258.54,524324544,-948072199,237.2,22 -Sun Sep 25 07:35:29 PDT 2011,174,100,9.224,44267.76,524323604,-948071816,237.2,22 -Sun Sep 25 07:35:30 PDT 2011,174,101,9.264,44277.03,524322642,-948071402,237.2,22 -Sun Sep 25 07:35:31 PDT 2011,174,101,9.384,44286.41,524321728,-948071031,237.2,22 -Sun Sep 25 07:35:32 PDT 2011,174,100,9.402,44295.81,524320794,-948070635,237.2,22 -Sun Sep 25 07:35:33 PDT 2011,174,101,9.443,44305.26,524319804,-948070211,237.2,22 -Sun Sep 25 07:35:34 PDT 2011,173,100,9.402,44314.66,524318880,-948069826,237.2,22 -Sun Sep 25 07:35:35 PDT 2011,173,99,9.443,44324.1,524317929,-948069446,237.2,22 -Sun Sep 25 07:35:36 PDT 2011,173,98,9.321,44333.42,524317007,-948069057,237.2,22 -Sun Sep 25 07:35:37 PDT 2011,173,97,9.125,44342.54,524316068,-948068634,237.2,22 -Sun Sep 25 07:35:38 PDT 2011,173,96,9.049,44351.6,524315146,-948068217,237.2,22 -Sun Sep 25 07:35:39 PDT 2011,173,96,9.049,44360.65,524314224,-948067812,237.2,22 -Sun Sep 25 07:35:40 PDT 2011,173,97,9.125,44369.77,524313298,-948067463,237.2,22 -Sun Sep 25 07:35:41 PDT 2011,173,99,9.049,44378.82,524312308,-948067029,237.2,22 -Sun Sep 25 07:35:42 PDT 2011,173,98,9.164,44387.99,524311338,-948066592,237.2,22 -Sun Sep 25 07:35:43 PDT 2011,174,97,9.242,44397.23,524310392,-948066259,237.2,22 -Sun Sep 25 07:35:44 PDT 2011,174,96,9.189,44406.42,524309436,-948065838,237.2,22 -Sun Sep 25 07:35:45 PDT 2011,174,96,8.999,44415.42,524308496,-948065450,237.2,22 -Sun Sep 25 07:35:46 PDT 2011,174,97,8.962,44424.38,524307603,-948065107,237.2,22 -Sun Sep 25 07:35:47 PDT 2011,174,98,9.036,44433.41,524306677,-948064745,237.2,22 -Sun Sep 25 07:35:48 PDT 2011,174,98,9.112,44442.52,524305756,-948064366,237.2,22 -Sun Sep 25 07:35:49 PDT 2011,175,98,9.151,44451.68,524304783,-948063986,237.2,22 -Sun Sep 25 07:35:50 PDT 2011,175,98,9.074,44460.75,524303885,-948063602,237.2,22 -Sun Sep 25 07:35:51 PDT 2011,175,98,9.229,44469.98,524302947,-948063214,237.2,22 -Sun Sep 25 07:35:52 PDT 2011,175,0,9.074,44479.06,524302028,-948062843,237.2,22 -Sun Sep 25 07:35:53 PDT 2011,175,0,8.888,44487.94,524301139,-948062495,237.2,22 -Sun Sep 25 07:35:54 PDT 2011,174,0,8.64,44496.58,524300278,-948062167,237.2,22 -Sun Sep 25 07:35:55 PDT 2011,174,0,8.373,44504.95,524299505,-948061580,237.2,22 -Sun Sep 25 07:35:56 PDT 2011,173,93,8.031,44512.99,524299064,-948060672,237.2,22 -Sun Sep 25 07:35:57 PDT 2011,172,96,7.915,44520.9,524298928,-948059646,237.2,22 -Sun Sep 25 07:35:58 PDT 2011,172,101,7.886,44528.79,524299071,-948058473,237.2,22 -Sun Sep 25 07:35:59 PDT 2011,171,103,8.309,44537.1,524299383,-948057175,237.2,22 -Sun Sep 25 07:36:00 PDT 2011,171,106,8.64,44545.74,524299833,-948055707,237.2,22 -Sun Sep 25 07:36:01 PDT 2011,171,101,8.78,44554.52,524300334,-948054389,237.2,22 -Sun Sep 25 07:36:02 PDT 2011,172,105,9.151,44563.67,524300810,-948052971,237.2,22 -Sun Sep 25 07:36:03 PDT 2011,172,108,9.596,44573.27,524301186,-948051549,237.2,22 -Sun Sep 25 07:36:04 PDT 2011,172,102,9.858,44583.26,524301511,-948050087,237.2,22 -Sun Sep 25 07:36:05 PDT 2011,172,97,10.327,44595.53,524301877,-948048311,237.2,22 -Sun Sep 25 07:36:06 PDT 2011,173,106,10.182,44607.57,524302225,-948046585,237.2,22 -Sun Sep 25 07:36:07 PDT 2011,172,108,10.182,44613.91,524302410,-948045681,237.2,22 -Sun Sep 25 07:36:08 PDT 2011,173,108,10.158,44624.08,524302741,-948044236,237.2,22 -Sun Sep 25 07:36:09 PDT 2011,173,96,10.134,44634.2,524303110,-948042871,237.2,22 -Sun Sep 25 07:36:10 PDT 2011,174,94,9.994,44645.24,524303545,-948041291,237.2,22 -Sun Sep 25 07:36:11 PDT 2011,174,97,10.04,44654.22,524303869,-948040095,237.2,22 -Sun Sep 25 07:36:12 PDT 2011,175,103,9.936,44664.1,524304190,-948038761,237.2,22 -Sun Sep 25 07:36:13 PDT 2011,176,103,9.714,44673.81,524304487,-948037332,237.2,22 -Sun Sep 25 07:36:14 PDT 2011,177,103,9.981,44683.79,524304790,-948035970,237.2,22 -Sun Sep 25 07:36:15 PDT 2011,177,103,9.628,44693.42,524305098,-948034626,237.2,22 -Sun Sep 25 07:36:16 PDT 2011,178,101,9.628,44703.05,524305432,-948033293,237.2,22 -Sun Sep 25 07:36:17 PDT 2011,178,102,9.585,44712.64,524305758,-948031963,237.2,22 -Sun Sep 25 07:36:18 PDT 2011,179,100,9.585,44722.22,524306082,-948030646,237.2,22 -Sun Sep 25 07:36:19 PDT 2011,179,97,9.46,44731.73,524306370,-948029331,237.2,22 -Sun Sep 25 07:36:20 PDT 2011,180,97,9.22,44740.91,524306680,-948028048,237.2,22 -Sun Sep 25 07:36:21 PDT 2011,180,97,9.066,44749.97,524306939,-948026769,237.2,22 -Sun Sep 25 07:36:22 PDT 2011,180,102,8.991,44758.97,524307081,-948025449,237.2,22 -Sun Sep 25 07:36:23 PDT 2011,180,105,9.339,44768.31,524306850,-948024201,237.2,22 -Sun Sep 25 07:36:24 PDT 2011,180,105,9.757,44778.06,524306212,-948023178,237.2,22 -Sun Sep 25 07:36:25 PDT 2011,180,108,9.801,44787.86,524305389,-948022294,237.2,22 -Sun Sep 25 07:36:26 PDT 2011,180,110,10.05,44797.92,524304402,-948021488,237.2,22 -Sun Sep 25 07:36:27 PDT 2011,181,98,10.168,44808.08,524303252,-948020628,237.2,22 -Sun Sep 25 07:36:28 PDT 2011,181,98,10.312,44818.4,524302209,-948019873,237.2,22 -Sun Sep 25 07:36:29 PDT 2011,181,98,10.264,44828.7,524301229,-948019044,237.2,22 -Sun Sep 25 07:36:30 PDT 2011,180,98,10.312,44838.97,524300319,-948018139,237.2,22 -Sun Sep 25 07:36:31 PDT 2011,180,99,10.264,44849.24,524299441,-948017162,237.2,22 -Sun Sep 25 07:36:32 PDT 2011,180,98,10.284,44859.52,524298601,-948016133,237.2,22 -Sun Sep 25 07:36:33 PDT 2011,180,98,10.264,44869.79,524297784,-948015109,237.2,22 -Sun Sep 25 07:36:34 PDT 2011,180,97,10.288,44880.08,524296986,-948014027,237.2,22 -Sun Sep 25 07:36:35 PDT 2011,181,96,10.215,44890.29,524296168,-948012969,237.2,22 -Sun Sep 25 07:36:36 PDT 2011,181,96,10.168,44900.46,524295409,-948011966,237.2,22 -Sun Sep 25 07:36:37 PDT 2011,181,96,10.074,44910.53,524294598,-948010965,237.2,22 -Sun Sep 25 07:36:38 PDT 2011,181,96,10.12,44920.65,524293844,-948010036,237.2,22 -Sun Sep 25 07:36:39 PDT 2011,181,96,10.074,44930.73,524293026,-948009080,237.2,22 -Sun Sep 25 07:36:40 PDT 2011,181,96,10.074,44940.8,524292273,-948008159,237.2,22 -Sun Sep 25 07:36:41 PDT 2011,181,96,10.074,44950.88,524291503,-948007184,237.2,22 -Sun Sep 25 07:36:42 PDT 2011,181,34,10.074,44960.95,524290743,-948006181,237.2,22 -Sun Sep 25 07:36:43 PDT 2011,181,103,9.671,44970.62,524290111,-948005128,237.2,22 -Sun Sep 25 07:36:44 PDT 2011,181,50,9.714,44980.34,524289335,-948004093,237.2,22 -Sun Sep 25 07:36:45 PDT 2011,181,100,9.543,44989.88,524288635,-948003064,237.2,22 -Sun Sep 25 07:36:46 PDT 2011,181,101,9.299,44999.18,524287934,-948002035,237.2,22 -Sun Sep 25 07:36:47 PDT 2011,181,102,9.46,45008.64,524287245,-948001036,237.2,22 -Sun Sep 25 07:36:48 PDT 2011,180,102,9.543,45018.19,524286477,-947999912,237.2,22 -Sun Sep 25 07:36:49 PDT 2011,180,103,9.628,45027.81,524285850,-947998911,237.2,22 -Sun Sep 25 07:36:50 PDT 2011,180,105,9.671,45037.49,524285114,-947997799,237.2,22 -Sun Sep 25 07:36:51 PDT 2011,180,104,9.846,45047.33,524284502,-947996695,237.0,22 -Sun Sep 25 07:36:52 PDT 2011,180,104,9.757,45057.1,524283885,-947995584,236.8,22 -Sun Sep 25 07:36:53 PDT 2011,180,91,9.736,45066.83,524283232,-947994404,236.6,22 -Sun Sep 25 07:36:54 PDT 2011,181,91,9.543,45076.37,524282634,-947993366,236.6,22 -Sun Sep 25 07:36:55 PDT 2011,180,89,9.481,45085.85,524282139,-947992162,236.4,22 -Sun Sep 25 07:36:56 PDT 2011,180,99,9.185,45095.03,524281540,-947991026,236.2,22 -Sun Sep 25 07:36:57 PDT 2011,180,103,9.344,45104.38,524280904,-947989866,236.2,22 -Sun Sep 25 07:36:58 PDT 2011,180,105,9.677,45114.05,524280279,-947988613,236.0,22 -Sun Sep 25 07:36:59 PDT 2011,180,105,9.764,45123.82,524279733,-947987452,236.0,22 -Sun Sep 25 07:37:00 PDT 2011,180,104,9.898,45133.72,524279096,-947986242,235.8,22 -Sun Sep 25 07:37:01 PDT 2011,180,104,9.876,45143.59,524278570,-947985179,235.8,22 -Sun Sep 25 07:37:02 PDT 2011,180,105,9.721,45153.31,524277998,-947983987,235.8,22 -Sun Sep 25 07:37:03 PDT 2011,180,105,9.764,45163.08,524277430,-947982887,235.6,22 -Sun Sep 25 07:37:04 PDT 2011,180,105,9.764,45172.85,524276815,-947981691,235.6,22 -Sun Sep 25 07:37:05 PDT 2011,180,105,9.786,45182.63,524276190,-947980554,235.6,22 -Sun Sep 25 07:37:06 PDT 2011,180,105,9.809,45192.44,524275482,-947979371,235.6,22 -Sun Sep 25 07:37:07 PDT 2011,181,0,9.344,45201.78,524274612,-947978615,235.6,22 -Sun Sep 25 07:37:08 PDT 2011,180,0,9.146,45210.93,524273855,-947977925,235.4,22 -Sun Sep 25 07:37:09 PDT 2011,179,0,8.435,45219.36,524273024,-947977450,235.4,22 -Sun Sep 25 07:37:10 PDT 2011,179,0,7.882,45227.24,524272254,-947977157,235.4,22 -Sun Sep 25 07:37:11 PDT 2011,178,0,7.527,45234.77,524271528,-947976948,235.4,22 -Sun Sep 25 07:37:12 PDT 2011,178,0,6.529,45241.3,524271159,-947976929,235.4,22 -Sun Sep 25 07:37:13 PDT 2011,177,0,0.0,45241.3,524270922,-947976865,235.4,22 -Sun Sep 25 07:37:14 PDT 2011,177,0,0.0,45241.3,524270762,-947976742,235.4,22 -Sun Sep 25 07:37:15 PDT 2011,176,0,1.963,45243.17,524270770,-947976724,235.4,22 -Sun Sep 25 07:37:16 PDT 2011,175,0,1.247,45244.69,524270921,-947976700,235.2,22 -Sun Sep 25 07:37:17 PDT 2011,175,0,1.247,45245.67,524270917,-947976696,235.2,22 -Sun Sep 25 07:37:24 PDT 2011,173,0,0.0,45245.67,524270803,-947976377,235.2,22 -Sun Sep 25 07:37:25 PDT 2011,173,0,1.752,45247.45,524270629,-947976050,235.2,22 -Sun Sep 25 07:37:26 PDT 2011,173,31,2.174,45249.58,524270483,-947975636,235.2,22 -Sun Sep 25 07:37:27 PDT 2011,172,43,4.059,45254.46,524270298,-947974846,235.2,22 -Sun Sep 25 07:37:28 PDT 2011,172,57,4.059,45257.7,524270266,-947974325,235.2,22 -Sun Sep 25 07:37:29 PDT 2011,172,57,5.186,45262.89,524270273,-947973487,235.2,22 -Sun Sep 25 07:37:30 PDT 2011,172,72,6.055,45268.94,524270377,-947972546,235.2,22 -Sun Sep 25 07:37:31 PDT 2011,173,81,6.193,45275.13,524270651,-947971593,235.2,22 -Sun Sep 25 07:37:32 PDT 2011,174,86,7.154,45282.29,524270969,-947970358,235.2,22 -Sun Sep 25 07:37:33 PDT 2011,174,95,8.088,45290.38,524271283,-947969068,235.2,22 -Sun Sep 25 07:37:34 PDT 2011,175,90,8.706,45299.08,524271510,-947967672,235.2,22 -Sun Sep 25 07:37:35 PDT 2011,175,91,9.108,45308.19,524271817,-947966286,235.2,22 -Sun Sep 25 07:37:36 PDT 2011,176,95,9.507,45317.7,524272091,-947964890,235.2,22 -Sun Sep 25 07:37:37 PDT 2011,177,96,9.809,45327.51,524272399,-947963418,235.2,22 -Sun Sep 25 07:37:38 PDT 2011,178,97,10.082,45337.59,524272745,-947961996,235.2,22 -Sun Sep 25 07:37:39 PDT 2011,179,99,9.989,45347.58,524273032,-947960522,235.2,22 -Sun Sep 25 07:37:40 PDT 2011,179,102,10.273,45357.85,524273424,-947959099,235.2,22 -Sun Sep 25 07:37:41 PDT 2011,180,103,10.372,45368.22,524273671,-947957512,235.2,22 -Sun Sep 25 07:37:42 PDT 2011,181,103,10.731,45378.95,524273887,-947955848,235.2,22 -Sun Sep 25 07:37:43 PDT 2011,182,103,10.839,45389.79,524274142,-947954216,235.2,22 -Sun Sep 25 07:37:44 PDT 2011,182,96,10.422,45400.22,524274404,-947952735,235.2,22 -Sun Sep 25 07:37:45 PDT 2011,183,95,10.012,45410.23,524274684,-947951244,235.2,22 -Sun Sep 25 07:37:46 PDT 2011,183,95,9.809,45420.04,524274960,-947949821,235.2,22 -Sun Sep 25 07:37:47 PDT 2011,184,95,9.677,45429.71,524275228,-947948486,235.2,22 -Sun Sep 25 07:37:48 PDT 2011,184,0,9.146,45438.86,524275502,-947947261,235.2,22 -Sun Sep 25 07:37:49 PDT 2011,184,0,8.337,45447.19,524275729,-947946097,235.2,22 -Sun Sep 25 07:37:50 PDT 2011,183,0,8.028,45455.22,524275914,-947944993,235.2,22 -Sun Sep 25 07:37:51 PDT 2011,183,73,7.687,45462.91,524276094,-947943918,235.2,22 -Sun Sep 25 07:37:52 PDT 2011,182,73,7.566,45470.47,524276259,-947942880,235.2,22 -Sun Sep 25 07:37:53 PDT 2011,181,73,7.633,45478.11,524276441,-947941806,235.2,22 -Sun Sep 25 07:37:54 PDT 2011,181,73,7.606,45485.71,524276625,-947940772,235.2,22 -Sun Sep 25 07:37:55 PDT 2011,180,73,7.501,45493.21,524276839,-947939728,235.4,22 -Sun Sep 25 07:37:56 PDT 2011,180,74,7.553,45500.77,524277060,-947938660,235.6,22 -Sun Sep 25 07:37:57 PDT 2011,180,82,7.754,45508.52,524277265,-947937584,235.8,22 -Sun Sep 25 07:37:58 PDT 2011,179,82,7.727,45516.3,524277427,-947936470,235.8,22 -Sun Sep 25 07:37:59 PDT 2011,179,82,7.619,45523.87,524277658,-947935457,236.0,22 -Sun Sep 25 07:38:00 PDT 2011,179,0,7.312,45531.18,524277870,-947934401,236.2,22 -Sun Sep 25 07:38:01 PDT 2011,179,83,7.121,45538.3,524277913,-947933389,236.2,22 -Sun Sep 25 07:38:02 PDT 2011,179,85,6.852,45545.15,524277672,-947932434,236.4,22 -Sun Sep 25 07:38:03 PDT 2011,178,87,7.191,45552.35,524277112,-947931886,236.4,22 -Sun Sep 25 07:38:04 PDT 2011,178,89,7.312,45559.66,524276427,-947931405,236.6,22 -Sun Sep 25 07:38:05 PDT 2011,178,87,7.488,45567.15,524275513,-947931251,236.6,22 -Sun Sep 25 07:38:06 PDT 2011,178,84,7.386,45574.53,524274669,-947931154,236.6,22 -Sun Sep 25 07:38:07 PDT 2011,178,84,7.052,45581.58,524273761,-947931079,236.8,22 -Sun Sep 25 07:38:08 PDT 2011,178,84,6.543,45588.13,524273025,-947931054,236.8,22 -Sun Sep 25 07:38:09 PDT 2011,178,0,5.921,45594.05,524272386,-947930967,236.8,22 -Sun Sep 25 07:38:10 PDT 2011,177,0,5.544,45599.59,524271850,-947930911,236.8,22 -Sun Sep 25 07:38:11 PDT 2011,176,0,4.747,45604.34,524271398,-947930860,237.0,22 -Sun Sep 25 07:38:12 PDT 2011,176,0,4.411,45608.76,524271038,-947931033,237.0,22 -Sun Sep 25 07:38:13 PDT 2011,175,49,4.323,45613.12,524270610,-947931121,237.0,22 -Sun Sep 25 07:38:14 PDT 2011,174,52,3.99,45617.11,524270195,-947931506,237.0,22 -Sun Sep 25 07:38:15 PDT 2011,173,52,4.587,45622.93,524269661,-947931923,237.0,22 -Sun Sep 25 07:38:16 PDT 2011,172,52,4.587,45626.27,524269316,-947932108,237.0,22 -Sun Sep 25 07:38:17 PDT 2011,172,23,4.686,45630.99,524268870,-947932335,237.0,22 -Sun Sep 25 07:38:18 PDT 2011,171,49,4.231,45635.15,524268414,-947932489,237.0,22 -Sun Sep 25 07:38:19 PDT 2011,170,49,4.182,45639.34,524267957,-947932605,237.2,22 -Sun Sep 25 07:38:20 PDT 2011,170,49,4.214,45643.55,524267513,-947932668,237.2,22 -Sun Sep 25 07:38:21 PDT 2011,170,49,4.142,45647.69,524267073,-947932680,237.2,22 -Sun Sep 25 07:38:22 PDT 2011,169,0,4.15,45651.85,524266631,-947932669,237.2,22 -Sun Sep 25 07:38:23 PDT 2011,169,0,3.919,45655.76,524266217,-947932636,237.2,22 -Sun Sep 25 07:38:24 PDT 2011,168,0,3.829,45659.59,524265870,-947932706,237.2,22 -Sun Sep 25 07:38:25 PDT 2011,168,0,3.431,45663.02,524265513,-947932743,237.2,22 -Sun Sep 25 07:38:26 PDT 2011,167,0,3.48,45666.5,524265165,-947932689,237.2,22 -Sun Sep 25 07:38:27 PDT 2011,166,0,3.153,45669.65,524264928,-947933018,237.4,22 -Sun Sep 25 07:38:28 PDT 2011,165,0,3.09,45672.79,524264821,-947933421,237.6,22 -Sun Sep 25 07:38:29 PDT 2011,163,0,3.213,45675.95,524264791,-947933827,237.8,22 -Sun Sep 25 07:38:30 PDT 2011,161,0,3.148,45679.1,524264866,-947934370,238.0,22 -Sun Sep 25 07:38:31 PDT 2011,160,0,3.069,45682.17,524264934,-947934894,238.0,22 -Sun Sep 25 07:38:32 PDT 2011,160,0,3.153,45685.32,524264786,-947935378,238.2,22 -Sun Sep 25 07:38:33 PDT 2011,158,0,3.286,45688.61,524264579,-947935456,238.2,22 -Sun Sep 25 07:38:34 PDT 2011,157,0,3.437,45692.04,524264401,-947935284,238.4,22 -Sun Sep 25 07:38:35 PDT 2011,156,0,3.437,45695.48,524264236,-947935130,238.4,22 -Sun Sep 25 07:38:36 PDT 2011,156,0,2.987,45698.47,524263994,-947934782,238.6,22 -Sun Sep 25 07:38:37 PDT 2011,157,0,2.657,45701.13,524263944,-947934672,238.6,22 -Sun Sep 25 07:38:38 PDT 2011,156,0,2.456,45703.58,524263894,-947934513,238.8,22 -Sun Sep 25 07:38:39 PDT 2011,156,0,1.569,45705.15,524263875,-947934499,238.8,22 -Sun Sep 25 07:39:11 PDT 2011,143,0,0.0,45705.15,524264020,-947935477,239.2,23 -Sun Sep 25 07:56:10 PDT 2011,115,115,0.0,45705.15,524265264,-947934564,241.4,22 -Sun Sep 25 07:56:11 PDT 2011,115,115,5.032,45710.3,524265252,-947934577,241.4,22 -Sun Sep 25 07:56:12 PDT 2011,116,115,11.529,45721.68,524265245,-947934598,241.4,22 -Sun Sep 25 07:56:13 PDT 2011,117,0,11.715,45735.71,524265232,-947934643,241.4,22 -Sun Sep 25 07:56:14 PDT 2011,118,0,11.715,45745.0,524265220,-947934636,241.4,22 -Sun Sep 25 07:56:15 PDT 2011,119,0,0.0,45745.0,524265205,-947934654,241.4,22 -Sun Sep 25 07:58:38 PDT 2011,130,0,0.0,45745.0,524265446,-947934953,241.4,22 -Sun Sep 25 07:58:39 PDT 2011,130,31,11.59,45756.85,524265495,-947934792,241.4,22 -Sun Sep 25 07:58:40 PDT 2011,131,31,0.0,45756.85,524265711,-947934695,241.4,22 -Sun Sep 25 07:58:41 PDT 2011,131,39,3.286,45760.82,524266095,-947934650,241.4,22 -Sun Sep 25 07:58:42 PDT 2011,131,42,3.286,45763.44,524266355,-947934632,241.4,22 -Sun Sep 25 07:58:43 PDT 2011,132,42,3.548,45766.97,524266580,-947934899,241.4,22 -Sun Sep 25 07:58:44 PDT 2011,133,42,3.601,45770.57,524266548,-947935112,241.4,22 -Sun Sep 25 07:58:45 PDT 2011,133,0,3.983,45774.55,524265983,-947935850,241.4,22 -Sun Sep 25 07:58:46 PDT 2011,133,0,4.465,45779.02,524265246,-947935448,241.4,22 -Sun Sep 25 07:58:47 PDT 2011,133,0,4.223,45783.24,524265915,-947934891,241.4,22 -Sun Sep 25 07:58:48 PDT 2011,133,0,3.458,45786.7,524265650,-947934852,241.4,22 -Sun Sep 25 07:58:49 PDT 2011,133,0,2.859,45789.56,524265364,-947934752,241.4,22 -Sun Sep 25 07:58:50 PDT 2011,133,0,2.097,45791.65,524265234,-947934441,241.4,22 -Sun Sep 25 07:58:51 PDT 2011,135,32,2.32,45793.97,524265220,-947934193,241.4,22 -Sun Sep 25 07:58:52 PDT 2011,136,44,2.6,45796.58,524265250,-947933938,241.4,22 -Sun Sep 25 07:58:53 PDT 2011,137,44,2.615,45799.19,524265369,-947933693,241.4,22 -Sun Sep 25 07:58:54 PDT 2011,137,44,2.619,45801.81,524265496,-947933424,241.4,22 -Sun Sep 25 07:58:55 PDT 2011,137,31,2.504,45804.31,524265600,-947933050,241.4,22 -Sun Sep 25 07:58:56 PDT 2011,137,34,2.481,45806.79,524265778,-947932761,241.4,22 -Sun Sep 25 07:58:57 PDT 2011,137,34,2.49,45809.3,524265963,-947932422,241.4,22 -Sun Sep 25 07:58:58 PDT 2011,137,53,3.005,45812.28,524266252,-947932183,241.4,22 -Sun Sep 25 07:58:59 PDT 2011,137,56,3.213,45815.49,524266472,-947931967,241.4,22 -Sun Sep 25 07:59:00 PDT 2011,138,53,3.326,45818.82,524266725,-947931826,241.4,22 -Sun Sep 25 07:59:01 PDT 2011,138,35,3.009,45821.83,524266931,-947931788,241.4,22 -Sun Sep 25 07:59:02 PDT 2011,138,35,2.786,45824.61,524267132,-947931847,241.4,22 -Sun Sep 25 07:59:03 PDT 2011,138,43,2.761,45827.37,524267257,-947932136,241.4,22 -Sun Sep 25 07:59:04 PDT 2011,139,43,3.069,45830.44,524267249,-947932488,241.4,22 -Sun Sep 25 07:59:05 PDT 2011,139,36,3.242,45833.69,524267134,-947932791,241.4,22 -Sun Sep 25 07:59:06 PDT 2011,140,36,3.362,45837.05,524266942,-947933089,241.4,22 -Sun Sep 25 07:59:07 PDT 2011,140,24,3.394,45840.44,524266668,-947933279,241.4,22 -Sun Sep 25 07:59:08 PDT 2011,140,24,3.321,45843.76,524266336,-947933562,241.4,22 -Sun Sep 25 07:59:09 PDT 2011,141,37,3.347,45847.11,524265965,-947933822,241.4,22 -Sun Sep 25 07:59:10 PDT 2011,141,37,3.41,45851.83,524265485,-947934164,241.4,22 -Sun Sep 25 07:59:11 PDT 2011,140,37,3.41,45853.97,524265351,-947934370,241.4,22 -Sun Sep 25 07:59:12 PDT 2011,140,0,3.051,45857.06,524265080,-947934553,241.4,22 -Sun Sep 25 07:59:13 PDT 2011,140,0,2.644,45859.67,524264866,-947934801,241.4,22 -Sun Sep 25 07:59:14 PDT 2011,140,0,2.363,45862.59,524264639,-947935102,241.4,22 -Sun Sep 25 07:59:15 PDT 2011,139,0,2.363,45864.4,524264508,-947935265,241.4,22 -Sun Sep 25 07:59:16 PDT 2011,139,0,2.335,45866.7,524264321,-947935478,241.4,22 -Sun Sep 25 07:59:17 PDT 2011,138,34,2.225,45868.93,524264143,-947935756,241.4,22 -Sun Sep 25 07:59:18 PDT 2011,137,34,2.353,45871.28,524264067,-947936101,241.4,22 -Sun Sep 25 07:59:19 PDT 2011,135,34,2.557,45873.84,524264188,-947936365,241.4,22 -Sun Sep 25 07:59:20 PDT 2011,134,34,2.563,45876.4,524264259,-947936463,241.4,22 -Sun Sep 25 07:59:21 PDT 2011,133,0,2.313,45878.71,524264382,-947936558,241.4,22 -Sun Sep 25 07:59:22 PDT 2011,133,0,2.194,45880.91,524264520,-947936558,241.4,22 -Sun Sep 25 07:59:23 PDT 2011,133,0,2.015,45882.92,524264666,-947936489,241.4,22 -Sun Sep 25 07:59:24 PDT 2011,134,0,2.015,45884.94,524264818,-947936315,241.4,22 -Sun Sep 25 07:59:25 PDT 2011,134,0,1.838,45886.78,524264942,-947936056,241.4,22 -Sun Sep 25 07:59:26 PDT 2011,135,0,2.115,45888.89,524265030,-947935784,241.4,22 -Sun Sep 25 07:59:27 PDT 2011,135,0,2.279,45891.19,524265019,-947935514,241.4,22 -Sun Sep 25 07:59:28 PDT 2011,135,0,1.942,45893.11,524265025,-947935194,241.4,22 -Sun Sep 25 07:59:29 PDT 2011,135,0,1.821,45894.94,524264906,-947934912,241.4,22 -Sun Sep 25 07:59:30 PDT 2011,135,0,1.896,45896.83,524264819,-947934704,241.4,22 -Sun Sep 25 07:59:31 PDT 2011,134,0,1.896,45898.72,524264695,-947934488,241.4,22 -Sun Sep 25 07:59:32 PDT 2011,135,0,1.406,45900.14,524264573,-947934324,241.4,22 -Sun Sep 25 07:59:35 PDT 2011,137,21,1.71,45900.14,524264412,-947933706,241.4,22 -Sun Sep 25 07:59:36 PDT 2011,138,29,1.71,45901.56,524264539,-947933527,241.4,22 -Sun Sep 25 07:59:37 PDT 2011,138,29,2.036,45903.56,524264718,-947933415,241.4,22 -Sun Sep 25 07:59:38 PDT 2011,138,27,2.507,45906.59,524264934,-947933291,241.4,22 -Sun Sep 25 07:59:39 PDT 2011,138,27,2.507,45908.58,524265085,-947933429,241.4,22 -Sun Sep 25 07:59:40 PDT 2011,137,27,2.507,45911.08,524265296,-947933578,241.4,22 -Sun Sep 25 07:59:41 PDT 2011,137,0,2.804,45913.89,524265486,-947933700,241.4,22 -Sun Sep 25 07:59:42 PDT 2011,136,0,2.166,45916.05,524265643,-947933819,241.4,22 -Sun Sep 25 07:59:43 PDT 2011,136,0,2.166,45918.22,524265733,-947933910,241.4,22 -Sun Sep 25 07:59:44 PDT 2011,136,0,0.0,45918.22,524265805,-947934096,241.4,22 -Sun Sep 25 08:00:33 PDT 2011,127,0,1.471,45918.22,524265737,-947933284,241.4,22 -Sun Sep 25 08:00:34 PDT 2011,128,0,2.032,45920.28,524265707,-947933027,241.4,22 -Sun Sep 25 08:00:35 PDT 2011,129,0,1.854,45922.11,524265705,-947932777,241.4,22 -Sun Sep 25 08:00:36 PDT 2011,130,0,1.973,45924.67,524265688,-947932349,241.4,22 -Sun Sep 25 08:00:37 PDT 2011,130,0,1.973,45926.05,524265679,-947932159,241.4,22 -Sun Sep 25 08:00:38 PDT 2011,131,0,1.86,45927.91,524265651,-947931887,241.4,22 -Sun Sep 25 08:00:39 PDT 2011,133,0,1.608,45929.52,524265648,-947931550,241.4,22 -Sun Sep 25 08:00:40 PDT 2011,134,34,2.262,45931.78,524265686,-947931182,241.4,22 -Sun Sep 25 08:00:41 PDT 2011,135,34,2.594,45934.38,524265685,-947930787,241.4,22 -Sun Sep 25 08:00:42 PDT 2011,135,34,2.867,45937.24,524265719,-947930396,241.4,22 -Sun Sep 25 08:00:43 PDT 2011,135,0,2.615,45939.86,524265715,-947929975,241.4,22 -Sun Sep 25 08:00:44 PDT 2011,135,0,2.527,45942.38,524265758,-947929492,241.4,22 -Sun Sep 25 08:00:45 PDT 2011,136,41,2.811,45945.2,524265787,-947929012,241.4,22 -Sun Sep 25 08:00:46 PDT 2011,137,49,3.352,45948.55,524265811,-947928482,241.4,22 -Sun Sep 25 08:00:47 PDT 2011,138,58,3.724,45952.27,524265844,-947927945,241.4,22 -Sun Sep 25 08:00:48 PDT 2011,139,63,4.332,45956.6,524265892,-947927336,241.4,22 -Sun Sep 25 08:00:49 PDT 2011,141,73,5.115,45961.72,524265912,-947926656,241.4,22 -Sun Sep 25 08:00:50 PDT 2011,142,73,5.573,45967.29,524265965,-947925951,241.4,22 -Sun Sep 25 08:00:51 PDT 2011,142,73,6.261,45973.55,524266029,-947925072,241.4,22 -Sun Sep 25 08:00:52 PDT 2011,145,0,7.144,45980.7,524266117,-947924248,241.4,22 -Sun Sep 25 08:00:53 PDT 2011,146,0,6.316,45987.01,524266132,-947923313,241.4,22 -Sun Sep 25 08:00:54 PDT 2011,148,0,6.19,45993.2,524266204,-947921145,241.4,22 -Sun Sep 25 08:00:55 PDT 2011,148,72,5.689,45998.89,524266085,-947920245,241.4,22 -Sun Sep 25 08:00:56 PDT 2011,149,76,5.986,46004.88,524265977,-947919275,241.4,22 -Sun Sep 25 08:00:57 PDT 2011,149,77,6.297,46011.17,524265812,-947918319,241.4,22 -Sun Sep 25 08:00:58 PDT 2011,149,79,6.485,46017.66,524265667,-947917343,241.4,22 -Sun Sep 25 08:00:59 PDT 2011,150,82,6.684,46024.34,524265531,-947916281,241.4,22 -Sun Sep 25 08:01:00 PDT 2011,150,83,6.917,46031.26,524265454,-947915288,241.4,22 -Sun Sep 25 08:01:01 PDT 2011,151,84,7.052,46038.31,524265292,-947914257,241.4,22 -Sun Sep 25 08:01:02 PDT 2011,152,84,7.052,46045.36,524265118,-947913219,241.4,22 -Sun Sep 25 08:01:03 PDT 2011,152,83,7.121,46052.48,524264982,-947912182,241.4,22 -Sun Sep 25 08:01:04 PDT 2011,152,84,7.052,46059.53,524264849,-947911245,241.4,22 -Sun Sep 25 08:01:05 PDT 2011,153,84,7.144,46066.68,524264721,-947910194,241.4,22 -Sun Sep 25 08:01:06 PDT 2011,153,85,7.144,46073.82,524264543,-947909223,241.4,22 -Sun Sep 25 08:01:07 PDT 2011,153,84,7.215,46081.04,524264265,-947908217,241.4,22 -Sun Sep 25 08:01:08 PDT 2011,153,79,7.312,46088.35,524264061,-947907193,241.4,22 -Sun Sep 25 08:01:09 PDT 2011,153,80,7.361,46095.71,524263869,-947906169,241.4,22 -Sun Sep 25 08:01:10 PDT 2011,153,83,7.488,46103.2,524263658,-947905127,241.4,22 -Sun Sep 25 08:01:11 PDT 2011,154,83,7.645,46110.86,524263448,-947904112,241.4,22 -Sun Sep 25 08:01:12 PDT 2011,154,35,8.01,46118.85,524263204,-947903012,241.4,22 -Sun Sep 25 08:01:13 PDT 2011,154,81,7.754,46126.61,524263074,-947901922,241.4,22 -Sun Sep 25 08:01:14 PDT 2011,155,88,7.566,46134.17,524262842,-947900826,241.4,22 -Sun Sep 25 08:01:15 PDT 2011,155,95,7.782,46141.95,524262612,-947899709,241.4,22 -Sun Sep 25 08:01:16 PDT 2011,156,98,7.981,46149.94,524262363,-947898527,241.6,22 -Sun Sep 25 08:01:17 PDT 2011,156,99,8.222,46158.26,524262195,-947897469,241.8,22 -Sun Sep 25 08:01:18 PDT 2011,157,97,8.446,46166.73,524261896,-947896364,242.0,22 -Sun Sep 25 08:01:19 PDT 2011,158,89,8.317,46178.2,524261650,-947894688,242.0,22 -Sun Sep 25 08:01:20 PDT 2011,158,88,8.317,46183.24,524261556,-947893990,242.2,22 -Sun Sep 25 08:01:21 PDT 2011,158,88,8.285,46191.52,524261329,-947892762,242.4,22 -Sun Sep 25 08:01:22 PDT 2011,159,87,8.254,46199.86,524261154,-947891482,242.4,22 -Sun Sep 25 08:01:23 PDT 2011,158,88,8.254,46208.03,524261091,-947890271,242.6,22 -Sun Sep 25 08:01:24 PDT 2011,158,88,8.222,46216.25,524260979,-947889032,242.6,22 -Sun Sep 25 08:01:25 PDT 2011,158,88,8.285,46224.54,524260914,-947887792,242.8,22 -Sun Sep 25 08:01:26 PDT 2011,158,88,8.285,46232.82,524260843,-947886613,242.8,22 -Sun Sep 25 08:01:27 PDT 2011,158,86,8.285,46241.17,524260811,-947885383,243.0,22 -Sun Sep 25 08:01:28 PDT 2011,158,86,8.222,46249.33,524260789,-947884220,243.0,22 -Sun Sep 25 08:01:29 PDT 2011,158,86,8.1,46257.43,524260720,-947883071,243.0,22 -Sun Sep 25 08:01:30 PDT 2011,158,86,7.838,46265.27,524260661,-947881885,243.0,22 -Sun Sep 25 08:01:31 PDT 2011,158,78,7.54,46272.81,524260596,-947880785,243.2,22 -Sun Sep 25 08:01:32 PDT 2011,157,78,7.336,46280.15,524260605,-947879672,243.2,22 -Sun Sep 25 08:01:33 PDT 2011,156,78,7.287,46287.43,524260629,-947878673,243.2,22 -Sun Sep 25 08:01:34 PDT 2011,156,74,7.144,46294.58,524260663,-947877680,243.2,22 -Sun Sep 25 08:01:35 PDT 2011,155,81,6.788,46301.36,524260684,-947876776,243.2,22 -Sun Sep 25 08:01:36 PDT 2011,155,81,6.83,46308.19,524260545,-947875769,243.2,22 -Sun Sep 25 08:01:37 PDT 2011,155,83,6.874,46315.07,524260449,-947874864,243.4,22 -Sun Sep 25 08:01:38 PDT 2011,155,82,7.006,46322.08,524260241,-947873927,243.4,22 -Sun Sep 25 08:01:39 PDT 2011,155,79,7.006,46329.08,524260095,-947872945,243.4,22 -Sun Sep 25 08:01:40 PDT 2011,154,73,6.939,46336.02,524259993,-947872002,243.4,22 -Sun Sep 25 08:01:41 PDT 2011,154,73,6.809,46342.83,524259945,-947871026,243.4,22 -Sun Sep 25 08:01:42 PDT 2011,153,76,6.603,46349.53,524259864,-947870075,243.4,22 -Sun Sep 25 08:01:43 PDT 2011,152,76,6.427,46355.86,524259824,-947869100,243.6,22 -Sun Sep 25 08:01:44 PDT 2011,152,76,6.485,46362.39,524259775,-947868243,243.8,22 -Sun Sep 25 08:01:45 PDT 2011,152,75,6.524,46368.87,524259744,-947867346,244.0,22 -Sun Sep 25 08:01:46 PDT 2011,151,75,6.446,46375.32,524259707,-947866410,244.2,22 -Sun Sep 25 08:01:47 PDT 2011,151,75,6.352,46381.67,524259666,-947865488,244.2,22 -Sun Sep 25 08:01:48 PDT 2011,151,21,6.173,46387.84,524259645,-947864589,244.4,22 -Sun Sep 25 08:01:49 PDT 2011,150,66,6.086,46393.93,524259614,-947863757,244.6,22 -Sun Sep 25 08:01:50 PDT 2011,150,62,6.036,46399.97,524259655,-947862874,244.6,22 -Sun Sep 25 08:01:51 PDT 2011,150,61,5.889,46405.85,524259604,-947862049,244.8,22 -Sun Sep 25 08:01:52 PDT 2011,149,60,5.842,46411.7,524259632,-947861205,244.8,22 -Sun Sep 25 08:01:53 PDT 2011,149,67,5.719,46417.42,524259667,-947860331,244.8,22 -Sun Sep 25 08:01:54 PDT 2011,148,69,5.659,46423.08,524259736,-947859424,245.0,22 -Sun Sep 25 08:01:55 PDT 2011,148,71,5.749,46428.83,524259668,-947858550,245.0,22 -Sun Sep 25 08:01:56 PDT 2011,148,79,6.002,46434.83,524259622,-947857656,245.0,22 -Sun Sep 25 08:01:57 PDT 2011,148,83,6.086,46440.92,524259525,-947856751,245.0,22 -Sun Sep 25 08:01:58 PDT 2011,148,83,6.279,46447.19,524259438,-947855798,245.2,22 -Sun Sep 25 08:01:59 PDT 2011,148,83,6.446,46453.67,524259300,-947854859,245.2,22 -Sun Sep 25 08:02:00 PDT 2011,148,81,6.456,46460.09,524259254,-947853885,245.2,22 -Sun Sep 25 08:02:01 PDT 2011,149,81,6.504,46466.6,524259213,-947852880,245.2,22 -Sun Sep 25 08:02:02 PDT 2011,149,81,6.485,46473.08,524259193,-947851942,245.2,22 -Sun Sep 25 08:02:03 PDT 2011,149,0,6.409,46479.49,524259052,-947851043,245.4,22 -Sun Sep 25 08:02:04 PDT 2011,149,0,6.243,46485.73,524258968,-947850119,245.4,22 -Sun Sep 25 08:02:05 PDT 2011,149,67,5.842,46491.58,524258892,-947849321,245.4,22 -Sun Sep 25 08:02:06 PDT 2011,149,44,5.616,46497.19,524258867,-947848464,245.4,22 -Sun Sep 25 08:02:07 PDT 2011,150,69,5.616,46502.81,524258756,-947847636,245.4,22 -Sun Sep 25 08:02:08 PDT 2011,150,69,5.734,46508.54,524258733,-947846744,245.4,22 -Sun Sep 25 08:02:09 PDT 2011,150,69,6.208,46514.75,524258748,-947845890,245.4,22 -Sun Sep 25 08:02:10 PDT 2011,150,27,5.905,46520.66,524258727,-947845003,245.4,22 -Sun Sep 25 08:02:11 PDT 2011,150,70,5.734,46526.39,524258718,-947844140,245.4,22 -Sun Sep 25 08:02:12 PDT 2011,149,70,5.889,46532.31,524258676,-947843238,245.4,22 -Sun Sep 25 08:02:13 PDT 2011,148,70,5.97,46538.25,524258607,-947842305,245.4,22 -Sun Sep 25 08:02:14 PDT 2011,145,73,5.857,46544.11,524258538,-947841489,245.4,22 -Sun Sep 25 08:02:15 PDT 2011,144,71,5.795,46549.9,524258495,-947840593,245.4,22 -Sun Sep 25 08:02:16 PDT 2011,142,65,5.873,46555.77,524258491,-947839726,245.4,22 -Sun Sep 25 08:02:17 PDT 2011,141,72,5.544,46561.32,524258496,-947838905,245.4,22 -Sun Sep 25 08:02:18 PDT 2011,140,77,5.587,46566.93,524258533,-947838063,245.4,22 -Sun Sep 25 08:02:19 PDT 2011,140,81,5.937,46572.84,524258527,-947837119,245.4,22 -Sun Sep 25 08:02:20 PDT 2011,140,75,6.208,46579.05,524258493,-947836257,245.4,22 -Sun Sep 25 08:02:21 PDT 2011,139,71,6.279,46585.33,524258457,-947835392,245.6,22 -Sun Sep 25 08:02:22 PDT 2011,138,70,6.019,46591.35,524258407,-947834500,245.6,22 -Sun Sep 25 08:02:23 PDT 2011,138,71,5.953,46597.31,524258364,-947833592,245.6,22 -Sun Sep 25 08:02:24 PDT 2011,137,73,5.953,46603.25,524258319,-947832715,245.6,22 -Sun Sep 25 08:02:25 PDT 2011,137,78,6.103,46609.35,524258319,-947831728,245.6,22 -Sun Sep 25 08:02:26 PDT 2011,138,75,6.261,46615.61,524258293,-947830812,245.6,22 -Sun Sep 25 08:02:27 PDT 2011,138,75,6.371,46621.99,524258251,-947829884,245.6,22 -Sun Sep 25 08:02:29 PDT 2011,138,76,6.39,46633.83,524258164,-947828118,245.6,22 -Sun Sep 25 08:02:29 PDT 2011,138,76,6.39,46634.76,524258161,-947827976,245.6,22 -Sun Sep 25 08:02:30 PDT 2011,138,69,6.427,46641.19,524258159,-947826990,245.6,22 -Sun Sep 25 08:02:31 PDT 2011,139,71,6.485,46647.67,524258122,-947826042,245.6,22 -Sun Sep 25 08:02:32 PDT 2011,140,72,6.563,46654.24,524258230,-947825080,245.6,22 -Sun Sep 25 08:02:33 PDT 2011,141,72,6.767,46661.0,524258268,-947824020,245.6,22 -Sun Sep 25 08:02:34 PDT 2011,142,38,6.704,46667.7,524258346,-947823014,245.6,22 -Sun Sep 25 08:02:35 PDT 2011,143,76,7.052,46674.76,524258461,-947821983,245.6,22 -Sun Sep 25 08:02:36 PDT 2011,145,76,7.239,46681.99,524258610,-947820925,245.6,22 -Sun Sep 25 08:02:37 PDT 2011,146,27,7.215,46689.24,524258779,-947819898,245.6,22 -Sun Sep 25 08:02:38 PDT 2011,147,80,7.361,46696.57,524258937,-947818793,245.6,22 -Sun Sep 25 08:02:39 PDT 2011,148,81,7.386,46703.95,524259107,-947817745,245.6,22 -Sun Sep 25 08:02:40 PDT 2011,149,81,7.566,46711.52,524259261,-947816687,245.6,22 -Sun Sep 25 08:02:41 PDT 2011,149,83,7.645,46719.17,524259467,-947815531,245.6,22 -Sun Sep 25 08:02:42 PDT 2011,149,84,7.672,46726.84,524259652,-947814467,245.6,22 -Sun Sep 25 08:02:43 PDT 2011,148,85,7.81,46734.65,524259835,-947813289,245.6,22 -Sun Sep 25 08:02:44 PDT 2011,148,86,7.895,46742.54,524260063,-947812146,245.6,22 -Sun Sep 25 08:02:45 PDT 2011,147,86,8.04,46750.58,524260311,-947811002,245.6,22 -Sun Sep 25 08:02:46 PDT 2011,147,85,8.1,46758.68,524260549,-947809880,245.6,22 -Sun Sep 25 08:02:47 PDT 2011,147,83,8.01,46766.69,524260786,-947808787,245.6,22 -Sun Sep 25 08:02:48 PDT 2011,147,82,7.866,46774.56,524261022,-947807706,245.6,22 -Sun Sep 25 08:02:49 PDT 2011,147,87,7.754,46782.31,524261256,-947806581,245.6,22 -Sun Sep 25 08:02:50 PDT 2011,148,90,7.727,46790.04,524261495,-947805515,245.6,22 -Sun Sep 25 08:02:51 PDT 2011,148,87,7.699,46797.74,524261716,-947804479,245.6,22 -Sun Sep 25 08:02:52 PDT 2011,149,79,7.566,46805.31,524261924,-947803379,245.6,23 -Sun Sep 25 08:02:53 PDT 2011,149,34,7.43,46812.74,524262118,-947802434,245.6,23 -Sun Sep 25 08:02:54 PDT 2011,149,34,7.184,46819.92,524262316,-947801348,245.2,23 -Sun Sep 25 08:02:55 PDT 2011,149,75,7.068,46826.99,524262489,-947800395,245.0,23 -Sun Sep 25 08:02:56 PDT 2011,149,74,7.068,46834.08,524262700,-947799387,244.8,23 -Sun Sep 25 08:02:57 PDT 2011,148,74,6.977,46841.03,524262898,-947798458,244.6,23 -Sun Sep 25 08:02:58 PDT 2011,148,74,6.933,46847.97,524263098,-947797532,244.6,23 -Sun Sep 25 08:02:59 PDT 2011,147,74,6.889,46854.86,524263298,-947796568,244.4,23 -Sun Sep 25 08:03:00 PDT 2011,146,0,6.698,46861.56,524263467,-947795591,244.2,23 -Sun Sep 25 08:03:01 PDT 2011,144,71,6.637,46868.19,524263632,-947794696,244.2,23 -Sun Sep 25 08:03:02 PDT 2011,143,71,6.637,46874.83,524263839,-947793762,244.0,23 -Sun Sep 25 08:03:03 PDT 2011,143,40,6.698,46881.53,524264084,-947792853,244.0,23 -Sun Sep 25 08:03:04 PDT 2011,142,71,6.719,46888.25,524264314,-947791932,243.8,23 -Sun Sep 25 08:03:05 PDT 2011,141,70,6.657,46894.9,524264568,-947791095,244.0,23 -Sun Sep 25 08:03:06 PDT 2011,141,70,6.617,46901.52,524264783,-947790140,244.0,23 -Sun Sep 25 08:03:07 PDT 2011,141,78,6.557,46908.08,524264956,-947789240,244.2,23 -Sun Sep 25 08:03:08 PDT 2011,142,72,6.597,46914.68,524265130,-947788323,244.2,23 -Sun Sep 25 08:03:09 PDT 2011,142,72,6.643,46921.32,524265313,-947787377,244.4,23 -Sun Sep 25 08:03:10 PDT 2011,141,72,6.725,46928.05,524265526,-947786408,244.4,23 -Sun Sep 25 08:03:11 PDT 2011,139,0,6.623,46934.67,524265724,-947785499,244.4,23 -Sun Sep 25 08:03:12 PDT 2011,137,0,6.504,46941.17,524265920,-947784614,244.6,23 -Sun Sep 25 08:03:13 PDT 2011,134,76,6.39,46947.56,524266105,-947783725,244.6,23 -Sun Sep 25 08:03:14 PDT 2011,134,80,6.427,46953.99,524266287,-947782781,244.6,23 -Sun Sep 25 08:03:15 PDT 2011,134,82,6.725,46960.74,524266423,-947781811,244.6,23 -Sun Sep 25 08:03:16 PDT 2011,134,75,6.961,46967.68,524266614,-947780860,244.8,23 -Sun Sep 25 08:03:17 PDT 2011,135,75,7.006,46974.69,524266876,-947779884,244.8,23 -Sun Sep 25 08:03:18 PDT 2011,135,75,7.074,46981.76,524267119,-947778921,244.8,23 -Sun Sep 25 08:03:19 PDT 2011,136,20,6.917,46988.68,524267374,-947777940,244.8,23 -Sun Sep 25 08:03:20 PDT 2011,136,74,6.874,46995.55,524267636,-947776939,244.8,23 -Sun Sep 25 08:03:21 PDT 2011,137,73,6.917,47002.54,524267869,-947776021,244.8,23 -Sun Sep 25 08:03:22 PDT 2011,137,73,6.917,47009.54,524268096,-947775005,244.8,23 -Sun Sep 25 08:03:23 PDT 2011,136,73,6.725,47017.88,524268329,-947773817,245.0,23 -Sun Sep 25 08:03:24 PDT 2011,135,0,6.725,47022.91,524268492,-947773121,245.0,23 -Sun Sep 25 08:03:25 PDT 2011,134,71,6.663,47029.51,524268667,-947772293,245.0,23 -Sun Sep 25 08:03:26 PDT 2011,133,75,6.353,47035.86,524268858,-947771388,245.0,23 -Sun Sep 25 08:03:27 PDT 2011,134,74,6.467,47042.33,524269032,-947770518,245.0,23 -Sun Sep 25 08:03:28 PDT 2011,134,74,6.298,47048.62,524269238,-947769618,245.0,23 -Sun Sep 25 08:03:29 PDT 2011,134,79,6.244,47054.86,524269427,-947768766,245.0,23 -Sun Sep 25 08:03:30 PDT 2011,134,83,6.28,47061.15,524269649,-947767838,245.0,23 -Sun Sep 25 08:03:31 PDT 2011,136,82,6.409,47067.56,524269805,-947766941,245.0,23 -Sun Sep 25 08:03:32 PDT 2011,137,80,6.335,47073.89,524269972,-947766040,245.0,23 -Sun Sep 25 08:03:33 PDT 2011,138,77,6.208,47080.1,524270129,-947765196,245.0,23 -Sun Sep 25 08:03:34 PDT 2011,138,74,6.035,47086.15,524270293,-947764378,245.0,23 -Sun Sep 25 08:03:35 PDT 2011,138,73,5.688,47091.83,524270445,-947763561,245.0,23 -Sun Sep 25 08:03:36 PDT 2011,139,74,5.543,47097.37,524270606,-947762766,245.0,23 -Sun Sep 25 08:03:37 PDT 2011,140,73,5.703,47103.14,524270776,-947761971,245.0,23 -Sun Sep 25 08:03:38 PDT 2011,141,72,5.688,47108.76,524270966,-947761197,245.0,23 -Sun Sep 25 08:03:39 PDT 2011,142,74,5.629,47114.39,524271130,-947760441,245.0,23 -Sun Sep 25 08:03:40 PDT 2011,143,75,5.6,47119.99,524271287,-947759646,245.2,23 -Sun Sep 25 08:03:41 PDT 2011,144,75,5.733,47125.72,524271448,-947758823,245.4,23 -Sun Sep 25 08:03:42 PDT 2011,145,75,5.809,47131.53,524271605,-947758030,245.6,23 -Sun Sep 25 08:03:43 PDT 2011,146,75,5.779,47137.31,524271798,-947757235,245.8,23 -Sun Sep 25 08:03:44 PDT 2011,146,77,5.827,47143.14,524271992,-947756432,246.0,23 -Sun Sep 25 08:03:45 PDT 2011,146,78,5.843,47149.01,524272176,-947755635,246.2,23 -Sun Sep 25 08:03:46 PDT 2011,145,81,6.021,47155.0,524272377,-947754838,246.2,23 -Sun Sep 25 08:03:47 PDT 2011,145,81,6.176,47161.18,524272587,-947753987,246.4,23 -Sun Sep 25 08:03:48 PDT 2011,145,81,6.247,47167.42,524272781,-947753103,246.4,23 -Sun Sep 25 08:03:49 PDT 2011,146,80,6.229,47173.65,524272964,-947752171,246.6,23 -Sun Sep 25 08:03:50 PDT 2011,147,80,6.193,47179.85,524273127,-947751316,246.6,23 -Sun Sep 25 08:03:51 PDT 2011,147,81,6.211,47186.06,524273313,-947750421,246.6,23 -Sun Sep 25 08:03:52 PDT 2011,148,84,6.265,47192.36,524273502,-947749490,246.8,23 -Sun Sep 25 08:03:53 PDT 2011,148,85,6.432,47198.77,524273718,-947748585,246.8,23 -Sun Sep 25 08:03:54 PDT 2011,148,80,6.67,47205.42,524273982,-947747645,246.8,23 -Sun Sep 25 08:03:55 PDT 2011,148,80,6.817,47212.24,524274247,-947746703,247.0,23 -Sun Sep 25 08:03:56 PDT 2011,146,80,6.838,47219.08,524274524,-947745749,247.0,23 -Sun Sep 25 08:03:57 PDT 2011,145,0,6.774,47225.85,524274820,-947744812,247.0,23 -Sun Sep 25 08:03:58 PDT 2011,143,0,6.732,47232.58,524275081,-947743927,247.0,23 -Sun Sep 25 08:03:59 PDT 2011,141,0,6.69,47239.27,524275303,-947743003,247.0,23 -Sun Sep 25 08:04:00 PDT 2011,140,0,6.67,47245.94,524275524,-947742121,247.0,23 -Sun Sep 25 08:04:01 PDT 2011,139,0,6.514,47252.46,524275729,-947741263,247.2,23 -Sun Sep 25 08:04:02 PDT 2011,139,0,6.533,47258.99,524275933,-947740411,247.2,23 -Sun Sep 25 08:04:03 PDT 2011,138,0,6.533,47265.52,524276188,-947739496,247.2,23 -Sun Sep 25 08:04:04 PDT 2011,137,0,6.417,47271.94,524276400,-947738653,247.2,23 -Sun Sep 25 08:04:05 PDT 2011,136,0,6.305,47278.24,524276615,-947737847,247.2,23 -Sun Sep 25 08:04:06 PDT 2011,134,0,6.268,47284.51,524276815,-947736891,247.2,23 -Sun Sep 25 08:04:07 PDT 2011,133,77,6.196,47290.71,524276997,-947735986,247.2,23 -Sun Sep 25 08:04:08 PDT 2011,132,78,6.455,47297.16,524277212,-947735139,247.2,23 -Sun Sep 25 08:04:09 PDT 2011,132,78,6.494,47303.65,524277417,-947734172,247.2,23 -Sun Sep 25 08:04:10 PDT 2011,133,35,6.593,47310.25,524277642,-947733245,247.2,23 -Sun Sep 25 08:04:11 PDT 2011,133,77,6.475,47316.72,524277880,-947732305,247.2,23 -Sun Sep 25 08:04:12 PDT 2011,134,33,6.553,47323.29,524278101,-947731417,247.2,23 -Sun Sep 25 08:04:13 PDT 2011,134,74,6.455,47329.73,524278324,-947730523,247.2,23 -Sun Sep 25 08:04:14 PDT 2011,134,74,6.286,47336.02,524278537,-947729643,247.2,23 -Sun Sep 25 08:04:15 PDT 2011,134,74,6.232,47342.25,524278727,-947728778,247.2,23 -Sun Sep 25 08:04:16 PDT 2011,133,19,6.109,47348.36,524278879,-947727993,247.2,23 -Sun Sep 25 08:04:17 PDT 2011,133,71,5.845,47354.2,524279037,-947727207,247.2,23 -Sun Sep 25 08:04:18 PDT 2011,133,74,5.884,47360.11,524279261,-947726297,247.4,23 -Sun Sep 25 08:04:19 PDT 2011,133,75,6.277,47366.36,524279372,-947725578,247.4,23 -Sun Sep 25 08:04:20 PDT 2011,134,75,6.268,47372.63,524279602,-947724645,247.4,23 -Sun Sep 25 08:04:21 PDT 2011,134,76,6.296,47378.92,524279861,-947723791,247.4,23 -Sun Sep 25 08:04:22 PDT 2011,135,76,6.296,47385.22,524280111,-947722878,247.4,23 -Sun Sep 25 08:04:23 PDT 2011,136,74,6.351,47391.57,524280332,-947721936,247.4,23 -Sun Sep 25 08:04:24 PDT 2011,135,73,6.314,47397.88,524280535,-947721015,247.4,23 -Sun Sep 25 08:04:25 PDT 2011,135,72,6.259,47404.14,524280752,-947720153,247.4,23 -Sun Sep 25 08:04:26 PDT 2011,136,71,5.982,47410.12,524280983,-947719329,247.4,23 -Sun Sep 25 08:04:27 PDT 2011,136,70,5.965,47416.09,524281169,-947718470,247.4,23 -Sun Sep 25 08:04:28 PDT 2011,137,70,5.916,47422.0,524281405,-947717697,247.4,23 -Sun Sep 25 08:04:29 PDT 2011,137,71,5.933,47427.94,524281647,-947716875,247.4,23 -Sun Sep 25 08:04:30 PDT 2011,138,73,5.933,47433.87,524281865,-947716040,247.4,23 -Sun Sep 25 08:04:31 PDT 2011,139,76,6.083,47439.96,524282037,-947715095,247.4,23 -Sun Sep 25 08:04:32 PDT 2011,139,77,6.389,47446.34,524282215,-947714128,247.4,23 -Sun Sep 25 08:04:33 PDT 2011,140,78,6.465,47452.8,524282334,-947713265,247.4,23 -Sun Sep 25 08:04:34 PDT 2011,140,79,6.485,47459.29,524282474,-947712334,247.4,23 -Sun Sep 25 08:04:35 PDT 2011,140,79,6.564,47465.85,524282629,-947711396,247.4,23 -Sun Sep 25 08:04:36 PDT 2011,141,79,6.632,47472.48,524282811,-947710456,247.4,23 -Sun Sep 25 08:04:37 PDT 2011,140,79,6.632,47479.11,524282987,-947709529,247.4,23 -Sun Sep 25 08:04:38 PDT 2011,140,72,6.612,47485.73,524283247,-947708618,247.4,23 -Sun Sep 25 08:04:39 PDT 2011,138,73,6.473,47492.2,524283481,-947707697,247.4,23 -Sun Sep 25 08:04:40 PDT 2011,138,73,6.673,47498.87,524283705,-947706717,247.4,23 -Sun Sep 25 08:04:41 PDT 2011,137,34,6.757,47505.63,524283923,-947705782,247.4,23 -Sun Sep 25 08:04:42 PDT 2011,137,74,6.736,47512.36,524284181,-947704890,247.4,23 -Sun Sep 25 08:04:43 PDT 2011,137,74,6.908,47519.27,524284430,-947703861,247.4,23 -Sun Sep 25 08:04:44 PDT 2011,136,74,6.908,47526.18,524284732,-947702940,247.4,23 -Sun Sep 25 08:04:45 PDT 2011,136,74,6.908,47533.08,524285025,-947701916,247.4,23 -Sun Sep 25 08:04:46 PDT 2011,136,0,6.886,47539.97,524285281,-947700951,247.4,23 -Sun Sep 25 08:04:47 PDT 2011,135,75,6.842,47546.81,524285522,-947699955,247.4,23 -Sun Sep 25 08:04:48 PDT 2011,136,75,6.93,47553.74,524285688,-947698889,247.4,23 -Sun Sep 25 08:04:49 PDT 2011,136,75,6.964,47560.71,524285911,-947697862,247.4,23 -Sun Sep 25 08:04:50 PDT 2011,136,75,6.975,47567.7,524286116,-947696885,247.4,23 -Sun Sep 25 08:04:51 PDT 2011,136,22,6.842,47574.55,524286344,-947695924,247.4,23 -Sun Sep 25 08:04:52 PDT 2011,135,74,6.531,47581.06,524286587,-947695035,247.4,23 -Sun Sep 25 08:04:53 PDT 2011,136,74,6.377,47587.44,524286830,-947694095,247.4,23 -Sun Sep 25 08:04:54 PDT 2011,136,30,6.339,47593.77,524287058,-947693240,247.4,23 -Sun Sep 25 08:04:55 PDT 2011,136,76,6.123,47599.9,524287249,-947692408,247.4,23 -Sun Sep 25 08:04:56 PDT 2011,137,80,5.889,47605.79,524287437,-947691541,247.4,23 -Sun Sep 25 08:04:57 PDT 2011,138,79,5.97,47611.76,524287648,-947690694,247.4,23 -Sun Sep 25 08:04:58 PDT 2011,138,88,6.071,47619.1,524287903,-947689713,247.4,23 -Sun Sep 25 08:04:59 PDT 2011,140,88,6.211,47625.25,524288109,-947688842,247.4,23 -Sun Sep 25 08:05:00 PDT 2011,140,90,6.211,47630.22,524288270,-947688136,247.4,23 -Sun Sep 25 08:05:01 PDT 2011,141,89,6.302,47636.52,524288462,-947687226,247.4,23 -Sun Sep 25 08:05:02 PDT 2011,142,84,6.434,47642.96,524288667,-947686334,247.4,23 -Sun Sep 25 08:05:03 PDT 2011,144,85,6.434,47649.39,524288881,-947685391,247.4,23 -Sun Sep 25 08:05:04 PDT 2011,144,79,6.512,47655.9,524289103,-947684473,247.4,23 -Sun Sep 25 08:05:05 PDT 2011,143,79,6.622,47662.52,524289312,-947683513,247.4,23 -Sun Sep 25 08:05:06 PDT 2011,142,36,6.715,47669.24,524289552,-947682563,247.4,23 -Sun Sep 25 08:05:07 PDT 2011,141,80,6.61,47675.85,524289761,-947681576,247.4,23 -Sun Sep 25 08:05:08 PDT 2011,141,78,6.692,47682.54,524289950,-947680618,247.6,23 -Sun Sep 25 08:05:09 PDT 2011,141,76,6.671,47689.22,524290125,-947679706,247.8,23 -Sun Sep 25 08:05:10 PDT 2011,141,75,6.356,47695.57,524290306,-947678773,248.0,23 -Sun Sep 25 08:05:11 PDT 2011,141,78,6.281,47701.85,524290489,-947677903,248.0,23 -Sun Sep 25 08:05:12 PDT 2011,141,80,6.155,47708.01,524290692,-947677007,248.2,23 -Sun Sep 25 08:05:13 PDT 2011,141,46,6.12,47714.13,524290914,-947676183,248.4,23 -Sun Sep 25 08:05:14 PDT 2011,141,80,5.713,47719.89,524291139,-947675394,248.4,23 -Sun Sep 25 08:05:15 PDT 2011,141,82,5.683,47725.52,524291346,-947674590,248.6,23 -Sun Sep 25 08:05:16 PDT 2011,141,80,5.853,47731.38,524291577,-947673788,248.6,23 -Sun Sep 25 08:05:17 PDT 2011,141,79,5.744,47737.16,524291816,-947672962,248.6,23 -Sun Sep 25 08:05:18 PDT 2011,140,80,5.594,47742.72,524292028,-947672228,248.8,23 -Sun Sep 25 08:05:19 PDT 2011,140,80,5.565,47748.28,524292286,-947671429,248.8,23 -Sun Sep 25 08:05:20 PDT 2011,141,80,5.653,47753.94,524292469,-947670616,248.8,23 -Sun Sep 25 08:05:21 PDT 2011,141,34,5.638,47759.57,524292700,-947669842,249.0,23 -Sun Sep 25 08:05:22 PDT 2011,140,80,5.508,47765.08,524292891,-947669084,249.0,23 -Sun Sep 25 08:05:23 PDT 2011,140,81,5.551,47770.63,524293088,-947668319,249.0,23 -Sun Sep 25 08:05:24 PDT 2011,140,82,5.653,47776.29,524293252,-947667478,249.0,23 -Sun Sep 25 08:05:25 PDT 2011,140,82,5.79,47782.09,524293413,-947666648,249.2,23 -Sun Sep 25 08:05:26 PDT 2011,140,82,5.918,47788.65,524293588,-947665685,249.2,23 -Sun Sep 25 08:05:27 PDT 2011,141,33,5.918,47794.02,524293763,-947664934,249.2,23 -Sun Sep 25 08:05:28 PDT 2011,141,80,5.885,47799.81,524293940,-947664098,249.2,23 -Sun Sep 25 08:05:29 PDT 2011,141,74,6.103,47805.9,524294134,-947663194,249.2,23 -Sun Sep 25 08:05:30 PDT 2011,141,68,6.412,47812.31,524294324,-947662253,249.2,23 -Sun Sep 25 08:05:31 PDT 2011,141,68,6.713,47819.02,524294514,-947661257,249.2,23 -Sun Sep 25 08:05:32 PDT 2011,140,68,7.185,47826.2,524294711,-947660197,249.2,23 -Sun Sep 25 08:05:33 PDT 2011,140,0,7.459,47833.67,524294912,-947659097,249.2,23 -Sun Sep 25 08:05:34 PDT 2011,140,0,7.727,47841.39,524295140,-947657916,249.4,23 -Sun Sep 25 08:05:35 PDT 2011,140,0,8.168,47849.56,524295399,-947656706,249.4,23 -Sun Sep 25 08:05:36 PDT 2011,139,0,8.491,47858.05,524295818,-947655535,249.4,23 -Sun Sep 25 08:05:37 PDT 2011,138,0,8.359,47866.41,524296223,-947654499,249.4,23 -Sun Sep 25 08:05:38 PDT 2011,138,0,8.168,47874.58,524296785,-947653433,249.4,23 -Sun Sep 25 08:05:39 PDT 2011,139,87,8.458,47883.04,524297427,-947652489,249.4,23 -Sun Sep 25 08:05:40 PDT 2011,139,82,8.951,47891.99,524298153,-947651522,249.2,23 -Sun Sep 25 08:05:41 PDT 2011,140,82,9.26,47901.25,524298926,-947650660,248.8,23 -Sun Sep 25 08:05:42 PDT 2011,140,82,9.765,47911.01,524299847,-947649836,248.6,23 -Sun Sep 25 08:05:43 PDT 2011,139,0,9.765,47920.78,524300806,-947649087,248.4,23 -Sun Sep 25 08:05:44 PDT 2011,136,0,9.992,47930.77,524301840,-947648424,248.4,23 -Sun Sep 25 08:05:45 PDT 2011,134,0,10.181,47940.95,524302873,-947647833,248.2,23 -Sun Sep 25 08:05:46 PDT 2011,130,0,10.133,47951.08,524303918,-947647325,247.8,23 -Sun Sep 25 08:05:47 PDT 2011,128,0,9.9,47961.12,524304856,-947646835,247.6,23 -Sun Sep 25 08:05:48 PDT 2011,126,0,9.422,47970.41,524305765,-947646343,247.2,23 -Sun Sep 25 08:05:49 PDT 2011,125,0,8.768,47979.18,524306580,-947645893,247.0,23 -Sun Sep 25 08:05:50 PDT 2011,125,0,8.326,47987.51,524307329,-947645413,246.8,23 -Sun Sep 25 08:05:51 PDT 2011,127,70,7.898,47995.4,524308051,-947644998,246.6,23 -Sun Sep 25 08:05:52 PDT 2011,130,72,8.137,48003.54,524308871,-947644517,246.4,23 -Sun Sep 25 08:05:53 PDT 2011,133,72,8.392,48011.93,524309552,-947643918,246.2,23 -Sun Sep 25 08:05:54 PDT 2011,135,72,9.026,48020.96,524310345,-947643278,246.2,23 -Sun Sep 25 08:05:55 PDT 2011,136,0,8.392,48029.35,524311094,-947642680,246.0,23 -Sun Sep 25 08:05:56 PDT 2011,138,0,7.869,48037.22,524311785,-947642052,245.8,23 -Sun Sep 25 08:05:57 PDT 2011,139,0,8.016,48045.25,524312521,-947641367,245.8,23 -Sun Sep 25 08:05:58 PDT 2011,139,0,8.199,48053.43,524313301,-947640777,245.6,23 -Sun Sep 25 08:05:59 PDT 2011,138,0,8.458,48061.89,524314102,-947640214,245.6,23 -Sun Sep 25 08:06:00 PDT 2011,136,0,8.593,48070.48,524314900,-947639598,245.4,23 -Sun Sep 25 08:06:01 PDT 2011,135,0,8.804,48079.29,524315699,-947638927,245.4,23 -Sun Sep 25 08:06:02 PDT 2011,135,0,8.951,48088.24,524316506,-947638218,245.2,23 -Sun Sep 25 08:06:03 PDT 2011,134,0,8.84,48097.08,524317310,-947637499,244.8,23 -Sun Sep 25 08:06:04 PDT 2011,134,0,8.84,48105.92,524318141,-947636825,244.6,23 -Sun Sep 25 08:06:05 PDT 2011,134,0,8.877,48114.79,524318995,-947636155,244.4,23 -Sun Sep 25 08:06:06 PDT 2011,135,0,8.877,48123.67,524319799,-947635533,244.2,23 -Sun Sep 25 08:06:07 PDT 2011,136,0,8.997,48132.67,524320629,-947634997,244.2,23 -Sun Sep 25 08:06:08 PDT 2011,137,0,8.849,48141.52,524321432,-947634579,244.0,23 -Sun Sep 25 08:06:09 PDT 2011,138,0,8.795,48150.31,524322192,-947634140,243.8,23 -Sun Sep 25 08:06:10 PDT 2011,138,0,8.706,48159.02,524323066,-947633763,243.8,23 -Sun Sep 25 08:06:11 PDT 2011,136,0,8.67,48167.69,524323917,-947633425,243.6,23 -Sun Sep 25 08:06:12 PDT 2011,134,80,8.533,48176.22,524324811,-947633131,243.6,23 -Sun Sep 25 08:06:13 PDT 2011,133,80,8.466,48184.69,524325737,-947632779,243.4,23 -Sun Sep 25 08:06:14 PDT 2011,132,80,8.4,48193.09,524326587,-947632555,243.4,23 -Sun Sep 25 08:06:15 PDT 2011,131,0,8.302,48201.39,524327517,-947632266,243.2,23 -Sun Sep 25 08:06:16 PDT 2011,130,82,8.27,48209.66,524328354,-947632113,243.2,23 -Sun Sep 25 08:06:17 PDT 2011,131,83,8.367,48218.02,524329199,-947631973,243.2,23 -Sun Sep 25 08:06:18 PDT 2011,132,83,8.466,48226.49,524330147,-947631961,243.2,23 -Sun Sep 25 08:06:19 PDT 2011,132,83,8.636,48235.13,524331075,-947631895,243.0,23 -Sun Sep 25 08:06:20 PDT 2011,132,83,8.636,48243.76,524331981,-947631877,243.0,23 -Sun Sep 25 08:06:21 PDT 2011,132,0,8.567,48252.33,524332889,-947631877,243.0,23 -Sun Sep 25 08:06:22 PDT 2011,132,0,8.432,48260.81,524333807,-947631799,243.0,23 -Sun Sep 25 08:06:23 PDT 2011,132,0,8.367,48269.13,524334634,-947631736,243.0,23 -Sun Sep 25 08:06:24 PDT 2011,132,0,8.145,48277.27,524335482,-947631665,243.0,23 -Sun Sep 25 08:06:25 PDT 2011,131,0,8.053,48285.33,524336310,-947631612,242.8,23 -Sun Sep 25 08:06:26 PDT 2011,130,0,7.876,48293.2,524337159,-947631511,242.8,23 -Sun Sep 25 08:06:27 PDT 2011,128,0,7.707,48300.91,524337973,-947631460,242.8,23 -Sun Sep 25 08:06:28 PDT 2011,128,0,7.492,48308.4,524338765,-947631439,242.8,23 -Sun Sep 25 08:06:29 PDT 2011,128,80,7.24,48315.64,524339503,-947631418,242.8,23 -Sun Sep 25 08:06:30 PDT 2011,130,85,7.191,48322.84,524340269,-947631360,242.8,23 -Sun Sep 25 08:06:31 PDT 2011,131,89,7.144,48329.98,524340994,-947631231,242.8,23 -Sun Sep 25 08:06:32 PDT 2011,134,87,7.264,48337.24,524341759,-947630864,242.8,23 -Sun Sep 25 08:06:33 PDT 2011,136,90,7.44,48344.69,524342430,-947630200,242.8,23 -Sun Sep 25 08:06:34 PDT 2011,139,84,7.545,48352.23,524342991,-947629443,242.8,23 -Sun Sep 25 08:06:35 PDT 2011,141,84,7.571,48359.8,524343538,-947628624,242.8,23 -Sun Sep 25 08:06:36 PDT 2011,144,38,7.073,48366.88,524343849,-947627667,242.8,23 -Sun Sep 25 08:06:37 PDT 2011,146,68,6.144,48373.02,524344050,-947626818,242.8,23 -Sun Sep 25 08:06:38 PDT 2011,149,65,5.673,48378.69,524344243,-947625941,242.8,23 -Sun Sep 25 08:06:39 PDT 2011,150,62,5.57,48384.26,524344259,-947625107,242.8,23 -Sun Sep 25 08:06:40 PDT 2011,152,60,5.309,48389.57,524344390,-947624379,242.8,23 -Sun Sep 25 08:06:41 PDT 2011,153,61,5.132,48394.7,524344509,-947623675,242.8,23 -Sun Sep 25 08:06:42 PDT 2011,154,62,4.966,48399.67,524344686,-947622916,242.6,23 -Sun Sep 25 08:06:43 PDT 2011,155,65,5.283,48404.95,524344907,-947622269,242.6,23 -Sun Sep 25 08:06:44 PDT 2011,156,61,5.095,48410.04,524345094,-947621571,243.0,23 -Sun Sep 25 08:06:45 PDT 2011,156,64,4.854,48414.9,524345257,-947620906,243.2,23 -Sun Sep 25 08:06:46 PDT 2011,157,65,4.527,48419.43,524345386,-947620220,243.4,23 -Sun Sep 25 08:06:47 PDT 2011,157,67,4.594,48424.02,524345534,-947619536,243.6,23 -Sun Sep 25 08:06:48 PDT 2011,157,65,4.654,48428.67,524345647,-947618804,243.6,23 -Sun Sep 25 08:06:49 PDT 2011,158,62,4.624,48433.3,524345754,-947618145,244.0,23 -Sun Sep 25 08:06:50 PDT 2011,158,62,4.397,48437.7,524345868,-947617500,244.4,23 -Sun Sep 25 08:06:51 PDT 2011,158,62,4.275,48441.97,524345977,-947616931,244.6,23 -Sun Sep 25 08:06:52 PDT 2011,158,0,3.982,48445.95,524346079,-947616550,244.8,23 -Sun Sep 25 08:06:53 PDT 2011,158,0,3.402,48449.35,524346148,-947616186,245.0,23 -Sun Sep 25 08:06:54 PDT 2011,157,0,2.497,48451.85,524346192,-947615882,245.4,23 -Sun Sep 25 08:06:55 PDT 2011,157,0,2.102,48453.95,524346241,-947615722,245.4,23 -Sun Sep 25 08:06:56 PDT 2011,156,0,1.787,48455.74,524346266,-947615551,245.6,23 -Sun Sep 25 08:06:57 PDT 2011,157,0,1.787,48457.52,524346313,-947615327,245.8,23 -Sun Sep 25 08:06:58 PDT 2011,157,0,1.381,48458.9,524346340,-947615181,246.0,23 -Sun Sep 25 08:07:02 PDT 2011,157,0,1.608,48458.9,524346716,-947614400,246.4,23 -Sun Sep 25 08:07:03 PDT 2011,157,0,1.753,48460.69,524346795,-947614253,246.4,23 -Sun Sep 25 08:07:04 PDT 2011,158,0,1.312,48461.98,524346887,-947614116,246.6,23 -Sun Sep 25 08:07:11 PDT 2011,155,31,1.38,48461.98,524347744,-947613443,246.8,23 -Sun Sep 25 08:07:12 PDT 2011,154,31,1.694,48463.75,524347958,-947613198,246.8,23 -Sun Sep 25 08:07:13 PDT 2011,155,31,2.432,48466.07,524348302,-947612955,247.0,23 -Sun Sep 25 08:07:14 PDT 2011,155,59,3.766,48470.63,524348859,-947612882,247.0,23 -Sun Sep 25 08:07:15 PDT 2011,155,59,3.766,48473.61,524349226,-947612879,247.0,23 -Sun Sep 25 08:07:16 PDT 2011,156,65,4.335,48477.94,524349743,-947612978,247.0,23 -Sun Sep 25 08:07:17 PDT 2011,155,72,4.634,48482.58,524350311,-947613102,247.0,23 -Sun Sep 25 08:07:18 PDT 2011,155,75,4.898,48487.47,524350820,-947613405,247.0,23 -Sun Sep 25 08:07:19 PDT 2011,154,75,5.283,48492.76,524351449,-947613643,247.0,23 -Sun Sep 25 08:07:20 PDT 2011,153,78,5.629,48498.38,524352026,-947613926,247.0,23 -Sun Sep 25 08:07:21 PDT 2011,152,76,6.006,48504.39,524352707,-947614190,247.0,23 -Sun Sep 25 08:07:22 PDT 2011,152,73,6.269,48510.66,524353359,-947614462,247.0,23 -Sun Sep 25 08:07:23 PDT 2011,151,73,6.516,48517.18,524354059,-947614736,247.0,23 -Sun Sep 25 08:07:24 PDT 2011,149,73,6.72,48523.9,524354816,-947615023,247.0,23 -Sun Sep 25 08:07:25 PDT 2011,148,73,6.914,48530.81,524355528,-947615312,247.0,23 -Sun Sep 25 08:07:26 PDT 2011,145,0,7.004,48537.81,524356279,-947615615,247.2,23 -Sun Sep 25 08:07:27 PDT 2011,142,0,7.073,48544.89,524357031,-947615913,247.2,23 -Sun Sep 25 08:07:28 PDT 2011,141,83,7.492,48554.66,524358008,-947616444,247.2,23 -Sun Sep 25 08:07:29 PDT 2011,141,85,7.492,48559.97,524358540,-947616740,247.2,23 -Sun Sep 25 08:07:30 PDT 2011,142,90,7.707,48567.58,524359305,-947617221,247.2,23 -Sun Sep 25 08:07:31 PDT 2011,143,90,8.145,48575.72,524360119,-947617760,247.2,23 -Sun Sep 25 08:07:32 PDT 2011,144,90,8.4,48584.12,524360917,-947618313,247.2,23 -Sun Sep 25 08:07:33 PDT 2011,145,94,8.432,48592.55,524361738,-947618878,247.2,23 -Sun Sep 25 08:07:34 PDT 2011,145,98,8.567,48601.12,524362552,-947619611,247.2,23 -Sun Sep 25 08:07:35 PDT 2011,146,95,8.922,48610.04,524363414,-947620295,247.2,23 -Sun Sep 25 08:07:36 PDT 2011,147,90,9.111,48619.15,524364252,-947621061,247.2,23 -Sun Sep 25 08:07:37 PDT 2011,148,90,9.309,48628.46,524365099,-947621843,247.2,23 -Sun Sep 25 08:07:38 PDT 2011,148,90,9.39,48637.85,524365903,-947622805,247.2,23 -Sun Sep 25 08:07:39 PDT 2011,148,0,9.39,48647.24,524366721,-947623703,247.2,23 -Sun Sep 25 08:07:40 PDT 2011,148,0,9.309,48656.55,524367504,-947624546,247.2,23 -Sun Sep 25 08:07:41 PDT 2011,147,0,9.111,48665.66,524368264,-947625495,247.2,23 -Sun Sep 25 08:07:42 PDT 2011,146,95,9.073,48674.73,524368981,-947626396,247.2,23 -Sun Sep 25 08:07:43 PDT 2011,146,102,9.15,48683.88,524369710,-947627328,247.0,23 -Sun Sep 25 08:07:44 PDT 2011,147,96,9.309,48693.19,524370410,-947628359,246.8,23 -Sun Sep 25 08:07:45 PDT 2011,147,88,9.557,48702.75,524371106,-947629447,246.6,23 -Sun Sep 25 08:07:46 PDT 2011,148,88,9.643,48712.39,524371761,-947630601,246.4,23 -Sun Sep 25 08:07:47 PDT 2011,148,88,9.819,48722.21,524372440,-947631749,246.2,23 -Sun Sep 25 08:07:48 PDT 2011,148,0,9.73,48731.94,524373129,-947632894,246.2,23 -Sun Sep 25 08:07:49 PDT 2011,148,0,9.557,48741.5,524373807,-947634025,246.0,23 -Sun Sep 25 08:07:50 PDT 2011,147,88,9.515,48751.02,524374487,-947635054,246.0,23 -Sun Sep 25 08:07:51 PDT 2011,145,74,9.557,48760.58,524375171,-947636171,245.8,23 -Sun Sep 25 08:07:52 PDT 2011,144,74,9.73,48770.31,524375873,-947637271,245.8,23 -Sun Sep 25 08:07:53 PDT 2011,141,27,9.819,48780.13,524376554,-947638355,245.8,23 -Sun Sep 25 08:07:54 PDT 2011,138,27,9.73,48789.86,524377233,-947639432,245.6,23 -Sun Sep 25 08:07:55 PDT 2011,138,40,9.819,48799.68,524377937,-947640537,245.6,23 -Sun Sep 25 08:07:56 PDT 2011,138,87,9.819,48809.5,524378665,-947641660,245.6,23 -Sun Sep 25 08:07:57 PDT 2011,139,88,10.025,48819.58,524379390,-947642780,245.4,23 -Sun Sep 25 08:07:58 PDT 2011,140,88,10.24,48829.76,524380129,-947643898,245.4,23 -Sun Sep 25 08:07:59 PDT 2011,142,25,10.388,48840.15,524380869,-947645027,245.4,23 -Sun Sep 25 08:08:00 PDT 2011,143,88,10.254,48850.4,524381624,-947646191,245.4,23 -Sun Sep 25 08:08:01 PDT 2011,144,88,10.205,48860.61,524382390,-947647355,245.4,23 -Sun Sep 25 08:08:02 PDT 2011,145,26,10.404,48871.13,524383152,-947648500,245.4,23 -Sun Sep 25 08:08:03 PDT 2011,144,88,10.254,48881.27,524383879,-947649608,245.2,23 -Sun Sep 25 08:08:04 PDT 2011,145,83,10.238,48891.51,524384648,-947650761,245.2,23 -Sun Sep 25 08:08:05 PDT 2011,145,84,10.404,48901.91,524385415,-947651893,245.2,23 -Sun Sep 25 08:08:06 PDT 2011,146,84,10.454,48912.36,524386238,-947653009,245.2,23 -Sun Sep 25 08:08:07 PDT 2011,146,84,10.506,48922.87,524387082,-947654066,245.2,23 -Sun Sep 25 08:08:08 PDT 2011,146,84,10.506,48933.38,524387925,-947655096,245.2,23 -Sun Sep 25 08:08:09 PDT 2011,146,84,10.557,48943.94,524388808,-947656065,245.2,23 -Sun Sep 25 08:08:10 PDT 2011,144,21,10.454,48954.39,524389736,-947656958,245.0,23 -Sun Sep 25 08:08:11 PDT 2011,143,88,10.353,48964.74,524390661,-947657854,244.8,23 -Sun Sep 25 08:08:12 PDT 2011,144,88,10.454,48975.19,524391617,-947658709,244.6,23 -Sun Sep 25 08:08:13 PDT 2011,145,88,10.557,48985.75,524392588,-947659498,244.4,23 -Sun Sep 25 08:08:14 PDT 2011,145,0,10.506,48996.26,524393578,-947660242,244.4,23 -Sun Sep 25 08:08:15 PDT 2011,146,0,10.454,49006.71,524394592,-947660948,244.2,23 -Sun Sep 25 08:08:16 PDT 2011,146,91,10.404,49017.11,524395595,-947661595,244.0,23 -Sun Sep 25 08:08:17 PDT 2011,147,91,10.506,49027.62,524396664,-947662232,244.0,23 -Sun Sep 25 08:08:18 PDT 2011,147,92,10.662,49038.28,524397716,-947662764,243.8,23 -Sun Sep 25 08:08:19 PDT 2011,146,92,10.77,49049.05,524398806,-947663296,243.8,23 -Sun Sep 25 08:08:20 PDT 2011,146,92,10.879,49059.93,524399914,-947663800,243.8,23 -Sun Sep 25 08:08:21 PDT 2011,146,92,10.879,49070.81,524401039,-947664240,243.6,23 -Sun Sep 25 08:08:22 PDT 2011,145,0,10.824,49081.63,524402161,-947664653,243.6,23 -Sun Sep 25 08:08:23 PDT 2011,144,0,10.61,49092.24,524403285,-947665028,243.6,23 -Sun Sep 25 08:08:24 PDT 2011,143,0,10.557,49102.8,524404380,-947665343,243.4,23 -Sun Sep 25 08:08:25 PDT 2011,142,0,10.304,49113.11,524405485,-947665522,243.4,23 -Sun Sep 25 08:08:26 PDT 2011,141,79,10.157,49123.26,524406544,-947665720,243.4,23 -Sun Sep 25 08:08:27 PDT 2011,141,79,10.015,49133.28,524407615,-947665926,243.4,23 -Sun Sep 25 08:08:28 PDT 2011,142,79,9.876,49143.15,524408674,-947666148,243.4,23 -Sun Sep 25 08:08:29 PDT 2011,143,79,9.831,49158.16,524410244,-947666481,243.4,23 -Sun Sep 25 08:08:30 PDT 2011,143,78,9.831,49162.82,524410739,-947666600,243.2,23 -Sun Sep 25 08:08:31 PDT 2011,144,78,9.831,49172.65,524411738,-947666865,243.2,23 -Sun Sep 25 08:08:32 PDT 2011,145,80,9.831,49182.48,524412794,-947667102,243.2,23 -Sun Sep 25 08:08:33 PDT 2011,146,84,9.831,49192.31,524413825,-947667343,243.2,23 -Sun Sep 25 08:08:34 PDT 2011,147,84,9.831,49202.15,524414859,-947667595,243.2,23 -Sun Sep 25 08:08:35 PDT 2011,147,84,9.831,49211.98,524415875,-947667846,243.2,23 -Sun Sep 25 08:08:36 PDT 2011,148,84,9.786,49221.76,524416916,-947668118,243.2,23 -Sun Sep 25 08:08:37 PDT 2011,148,85,9.831,49231.6,524417966,-947668375,243.2,23 -Sun Sep 25 08:08:38 PDT 2011,149,85,9.981,49241.58,524419017,-947668593,243.2,23 -Sun Sep 25 08:08:39 PDT 2011,150,82,9.981,49251.56,524420099,-947668770,243.2,23 -Sun Sep 25 08:08:40 PDT 2011,150,82,9.935,49261.49,524421129,-947668997,243.2,23 -Sun Sep 25 08:08:41 PDT 2011,150,25,9.843,49271.33,524422151,-947669227,243.2,23 -Sun Sep 25 08:08:42 PDT 2011,150,83,9.621,49280.95,524423194,-947669464,243.2,23 -Sun Sep 25 08:08:43 PDT 2011,150,83,9.621,49290.58,524424209,-947669712,243.2,23 -Sun Sep 25 08:08:44 PDT 2011,151,83,9.665,49300.24,524425207,-947669964,243.0,23 -Sun Sep 25 08:08:45 PDT 2011,151,21,9.536,49309.77,524426188,-947670175,243.0,23 -Sun Sep 25 08:08:46 PDT 2011,151,77,9.089,49318.86,524427151,-947670356,243.0,23 -Sun Sep 25 08:08:47 PDT 2011,152,77,8.826,49327.69,524428078,-947670518,243.0,23 -Sun Sep 25 08:08:48 PDT 2011,153,77,9.012,49336.7,524429023,-947670660,243.0,23 -Sun Sep 25 08:08:49 PDT 2011,153,83,8.984,49345.69,524429951,-947670818,243.0,23 -Sun Sep 25 08:08:50 PDT 2011,153,85,8.764,49354.45,524430892,-947670998,243.0,23 -Sun Sep 25 08:08:51 PDT 2011,153,85,8.836,49363.29,524431841,-947671195,243.0,23 -Sun Sep 25 08:08:52 PDT 2011,153,31,8.873,49372.16,524432762,-947671405,243.0,23 -Sun Sep 25 08:08:53 PDT 2011,152,83,8.623,49380.78,524433630,-947671617,243.0,23 -Sun Sep 25 08:08:54 PDT 2011,151,83,8.589,49389.37,524434555,-947671814,243.0,23 -Sun Sep 25 08:08:55 PDT 2011,149,26,8.487,49397.86,524435444,-947671982,243.0,23 -Sun Sep 25 08:08:56 PDT 2011,146,81,8.258,49406.11,524436325,-947672186,243.0,23 -Sun Sep 25 08:08:57 PDT 2011,145,81,8.42,49414.54,524437197,-947672418,243.0,23 -Sun Sep 25 08:08:58 PDT 2011,144,27,8.487,49423.02,524438077,-947672634,243.0,23 -Sun Sep 25 08:08:59 PDT 2011,143,80,8.227,49431.25,524438939,-947672854,243.0,23 -Sun Sep 25 08:09:00 PDT 2011,142,80,8.258,49439.51,524439819,-947673024,243.0,23 -Sun Sep 25 08:09:01 PDT 2011,142,81,8.227,49447.74,524440691,-947673184,243.0,23 -Sun Sep 25 08:09:02 PDT 2011,143,83,8.255,49455.99,524441580,-947673359,243.0,23 -Sun Sep 25 08:09:03 PDT 2011,143,84,8.45,49464.44,524442486,-947673539,243.0,23 -Sun Sep 25 08:09:04 PDT 2011,144,85,8.654,49473.09,524443427,-947673743,243.0,23 -Sun Sep 25 08:09:05 PDT 2011,146,85,8.796,49481.89,524444335,-947673960,243.0,23 -Sun Sep 25 08:09:06 PDT 2011,147,85,8.796,49490.69,524445294,-947674187,243.0,23 -Sun Sep 25 08:09:07 PDT 2011,147,85,8.905,49499.59,524446256,-947674384,243.0,23 -Sun Sep 25 08:09:08 PDT 2011,148,87,8.796,49508.39,524447192,-947674552,243.0,23 -Sun Sep 25 08:09:09 PDT 2011,148,88,8.869,49517.26,524448149,-947674735,243.2,23 -Sun Sep 25 08:09:10 PDT 2011,150,88,9.075,49526.33,524449112,-947674941,243.4,23 -Sun Sep 25 08:09:11 PDT 2011,150,88,9.133,49535.46,524450088,-947675175,243.6,23 -Sun Sep 25 08:09:12 PDT 2011,151,21,9.133,49544.6,524451032,-947675443,243.8,23 -Sun Sep 25 08:09:13 PDT 2011,151,87,9.018,49553.61,524451958,-947675713,243.8,23 -Sun Sep 25 08:09:14 PDT 2011,151,87,8.987,49562.6,524452941,-947675971,244.0,23 -Sun Sep 25 08:09:15 PDT 2011,151,78,8.987,49571.59,524453888,-947676224,244.2,23 -Sun Sep 25 08:09:16 PDT 2011,151,78,9.064,49580.65,524454838,-947676466,244.2,23 -Sun Sep 25 08:09:17 PDT 2011,152,79,9.18,49589.83,524455799,-947676708,244.2,23 -Sun Sep 25 08:09:18 PDT 2011,152,79,9.22,49599.05,524456775,-947676974,244.4,23 -Sun Sep 25 08:09:19 PDT 2011,152,80,9.18,49608.23,524457765,-947677223,244.4,23 -Sun Sep 25 08:09:20 PDT 2011,152,80,9.28,49617.51,524458744,-947677465,244.4,23 -Sun Sep 25 08:09:21 PDT 2011,151,80,9.341,49626.85,524459731,-947677711,244.6,23 -Sun Sep 25 08:09:22 PDT 2011,150,89,9.3,49636.15,524460713,-947677928,244.6,23 -Sun Sep 25 08:09:23 PDT 2011,149,91,9.18,49645.33,524461695,-947678128,244.6,23 -Sun Sep 25 08:09:24 PDT 2011,149,90,9.3,49654.63,524462701,-947678351,244.6,23 -Sun Sep 25 08:09:25 PDT 2011,150,90,9.423,49664.06,524463694,-947678554,244.8,23 -Sun Sep 25 08:09:26 PDT 2011,150,90,9.45,49673.51,524464703,-947678768,244.8,23 -Sun Sep 25 08:09:27 PDT 2011,149,21,9.409,49682.92,524465694,-947679002,244.8,23 -Sun Sep 25 08:09:28 PDT 2011,149,92,9.327,49692.24,524466689,-947679283,244.8,23 -Sun Sep 25 08:09:29 PDT 2011,149,47,9.492,49701.74,524467705,-947679518,244.8,23 -Sun Sep 25 08:09:30 PDT 2011,148,91,9.45,49711.19,524468728,-947679725,244.8,23 -Sun Sep 25 08:09:31 PDT 2011,148,92,9.409,49720.6,524469723,-947679859,244.8,23 -Sun Sep 25 08:09:32 PDT 2011,149,92,9.409,49730.12,524470739,-947680050,245.0,23 -Sun Sep 25 08:09:33 PDT 2011,149,83,9.663,49742.75,524472164,-947680220,245.0,23 -Sun Sep 25 08:09:34 PDT 2011,149,83,9.663,49749.33,524472865,-947680379,245.0,23 -Sun Sep 25 08:09:35 PDT 2011,150,83,9.751,49759.16,524473866,-947680585,245.0,23 -Sun Sep 25 08:09:36 PDT 2011,150,83,9.795,49768.87,524474910,-947680786,245.0,23 -Sun Sep 25 08:09:37 PDT 2011,150,24,9.45,49779.99,524476195,-947680932,245.0,23 -Sun Sep 25 08:09:38 PDT 2011,150,24,9.45,49787.77,524477026,-947681089,245.0,23 -Sun Sep 25 08:09:39 PDT 2011,150,80,9.409,49797.18,524478047,-947681280,245.0,23 -Sun Sep 25 08:09:40 PDT 2011,150,88,9.246,49806.43,524479069,-947681425,245.0,23 -Sun Sep 25 08:09:41 PDT 2011,150,94,9.409,49815.84,524480094,-947681558,245.0,23 -Sun Sep 25 08:09:42 PDT 2011,151,93,9.751,49825.59,524481151,-947681694,245.0,23 -Sun Sep 25 08:09:43 PDT 2011,152,93,9.62,49835.21,524482201,-947681786,245.0,23 -Sun Sep 25 08:09:44 PDT 2011,152,93,9.577,49844.79,524483213,-947681865,245.0,23 -Sun Sep 25 08:09:45 PDT 2011,153,92,9.663,49854.45,524484232,-947681965,245.0,23 -Sun Sep 25 08:09:46 PDT 2011,154,90,9.577,49864.03,524485266,-947682113,245.0,23 -Sun Sep 25 08:09:47 PDT 2011,155,89,9.45,49873.48,524486262,-947682243,245.0,23 -Sun Sep 25 08:09:48 PDT 2011,156,91,9.09,49882.57,524487266,-947682348,245.0,23 -Sun Sep 25 08:09:49 PDT 2011,158,89,9.577,49892.15,524488302,-947682531,245.0,23 -Sun Sep 25 08:09:50 PDT 2011,158,80,9.409,49901.56,524489312,-947682706,245.0,23 -Sun Sep 25 08:09:51 PDT 2011,158,80,9.368,49910.92,524490307,-947682939,245.0,23 -Sun Sep 25 08:09:52 PDT 2011,158,88,9.207,49920.18,524491268,-947683152,245.0,23 -Sun Sep 25 08:09:53 PDT 2011,158,88,9.09,49929.22,524492224,-947683380,245.0,23 -Sun Sep 25 08:09:54 PDT 2011,158,87,8.976,49938.2,524493169,-947683574,245.0,23 -Sun Sep 25 08:09:55 PDT 2011,157,87,8.976,49947.17,524494071,-947683762,245.0,23 -Sun Sep 25 08:09:56 PDT 2011,157,88,8.976,49956.15,524495000,-947683956,245.0,23 -Sun Sep 25 08:09:57 PDT 2011,157,88,9.013,49965.25,524495930,-947684211,245.0,23 -Sun Sep 25 08:09:58 PDT 2011,158,87,9.06,49974.22,524496867,-947684448,245.0,23 -Sun Sep 25 08:09:59 PDT 2011,158,87,9.06,49983.28,524497787,-947684713,245.0,23 -Sun Sep 25 08:10:00 PDT 2011,158,88,8.984,49992.26,524498746,-947684983,245.0,23 -Sun Sep 25 08:10:01 PDT 2011,158,89,9.022,50001.29,524499698,-947685224,245.0,23 -Sun Sep 25 08:10:02 PDT 2011,158,90,9.137,50010.42,524500671,-947685460,245.0,23 -Sun Sep 25 08:10:03 PDT 2011,159,90,9.255,50019.68,524501649,-947685688,245.0,23 -Sun Sep 25 08:10:04 PDT 2011,159,89,9.295,50028.97,524502664,-947685904,245.0,23 -Sun Sep 25 08:10:05 PDT 2011,159,89,9.255,50038.23,524503636,-947686141,245.0,23 -Sun Sep 25 08:10:06 PDT 2011,160,89,9.176,50049.19,524504802,-947686501,245.0,23 -Sun Sep 25 08:10:07 PDT 2011,161,89,9.176,50056.58,524505582,-947686722,245.0,23 -Sun Sep 25 08:10:08 PDT 2011,162,35,9.216,50065.79,524506532,-947687002,245.0,23 -Sun Sep 25 08:10:09 PDT 2011,162,87,9.098,50074.89,524507498,-947687272,245.0,23 -Sun Sep 25 08:10:10 PDT 2011,163,87,8.914,50083.81,524508406,-947687534,245.0,23 -Sun Sep 25 08:10:11 PDT 2011,163,87,8.988,50092.79,524509359,-947687774,245.0,23 -Sun Sep 25 08:10:12 PDT 2011,163,87,8.988,50101.78,524510332,-947688016,245.0,23 -Sun Sep 25 08:10:13 PDT 2011,163,86,8.988,50110.77,524511208,-947688304,245.0,23 -Sun Sep 25 08:10:14 PDT 2011,163,49,8.97,50119.74,524512187,-947688583,245.0,23 -Sun Sep 25 08:10:15 PDT 2011,163,85,8.768,50128.51,524513100,-947688825,245.0,23 -Sun Sep 25 08:10:16 PDT 2011,162,85,8.84,50139.23,524514275,-947689084,245.0,23 -Sun Sep 25 08:10:17 PDT 2011,162,85,8.84,50146.21,524515016,-947689250,245.0,23 -Sun Sep 25 08:10:18 PDT 2011,162,86,8.84,50155.03,524515933,-947689450,245.0,23 -Sun Sep 25 08:10:19 PDT 2011,161,87,8.877,50163.91,524516855,-947689677,245.0,23 -Sun Sep 25 08:10:20 PDT 2011,162,88,8.914,50172.83,524517764,-947689879,245.0,23 -Sun Sep 25 08:10:21 PDT 2011,162,83,9.068,50183.52,524518887,-947690174,245.0,23 -Sun Sep 25 08:10:22 PDT 2011,161,79,9.068,50190.96,524519665,-947690373,245.0,23 -Sun Sep 25 08:10:23 PDT 2011,161,79,9.107,50200.07,524520661,-947690600,245.0,23 -Sun Sep 25 08:10:24 PDT 2011,161,80,9.185,50209.25,524521638,-947690836,245.0,23 -Sun Sep 25 08:10:25 PDT 2011,161,81,9.305,50218.56,524522648,-947691060,245.0,23 -Sun Sep 25 08:10:26 PDT 2011,160,81,9.428,50227.99,524523657,-947691303,245.0,23 -Sun Sep 25 08:10:27 PDT 2011,160,81,9.554,50237.54,524524672,-947691536,245.0,23 -Sun Sep 25 08:10:28 PDT 2011,158,0,9.428,50246.97,524525668,-947691789,245.0,23 -Sun Sep 25 08:10:29 PDT 2011,155,0,9.345,50256.31,524526660,-947692029,245.0,23 -Sun Sep 25 08:10:30 PDT 2011,153,0,9.305,50265.62,524527681,-947692291,245.0,23 -Sun Sep 25 08:10:31 PDT 2011,152,0,9.345,50274.96,524528642,-947692554,245.0,23 -Sun Sep 25 08:10:32 PDT 2011,151,86,9.305,50284.27,524529623,-947692805,245.0,23 -Sun Sep 25 08:10:33 PDT 2011,151,80,9.305,50293.57,524530630,-947693046,245.0,23 -Sun Sep 25 08:10:34 PDT 2011,151,80,9.336,50302.91,524531604,-947693264,245.0,23 -Sun Sep 25 08:10:35 PDT 2011,150,80,9.336,50312.24,524532631,-947693466,245.0,23 -Sun Sep 25 08:10:36 PDT 2011,150,80,9.216,50323.13,524533830,-947693677,245.0,23 -Sun Sep 25 08:10:37 PDT 2011,150,80,8.908,50332.31,524534810,-947693888,245.0,23 -Sun Sep 25 08:10:38 PDT 2011,151,0,8.908,50339.33,524535524,-947694053,245.0,23 -Sun Sep 25 08:10:39 PDT 2011,151,84,8.656,50347.99,524536445,-947694263,245.0,23 -Sun Sep 25 08:10:40 PDT 2011,151,84,8.691,50356.68,524537343,-947694456,245.0,23 -Sun Sep 25 08:10:41 PDT 2011,152,82,8.621,50365.3,524538287,-947694586,245.0,23 -Sun Sep 25 08:10:42 PDT 2011,153,81,8.586,50373.88,524539174,-947694811,245.0,23 -Sun Sep 25 08:10:43 PDT 2011,153,80,8.352,50382.24,524540044,-947694994,245.0,23 -Sun Sep 25 08:10:44 PDT 2011,154,87,8.223,50390.46,524540958,-947695148,245.0,23 -Sun Sep 25 08:10:45 PDT 2011,154,86,8.038,50400.06,524541985,-947695310,245.0,23 -Sun Sep 25 08:10:46 PDT 2011,155,85,8.038,50406.53,524542676,-947695427,245.0,23 -Sun Sep 25 08:10:47 PDT 2011,155,84,7.861,50414.39,524543431,-947695582,245.0,23 -Sun Sep 25 08:10:48 PDT 2011,155,85,7.833,50422.22,524544286,-947695753,245.0,23 -Sun Sep 25 08:10:49 PDT 2011,156,91,7.833,50430.06,524545102,-947695892,245.2,23 -Sun Sep 25 08:10:50 PDT 2011,157,92,7.804,50437.86,524545941,-947696005,245.6,23 -Sun Sep 25 08:10:51 PDT 2011,157,91,7.72,50445.58,524546729,-947696122,245.6,23 -Sun Sep 25 08:10:52 PDT 2011,157,91,7.611,50453.19,524547560,-947696239,245.8,23 -Sun Sep 25 08:10:53 PDT 2011,158,91,7.638,50460.83,524548356,-947696374,246.0,23 -Sun Sep 25 08:10:54 PDT 2011,158,90,7.665,50468.49,524549173,-947696515,246.2,23 -Sun Sep 25 08:10:55 PDT 2011,158,90,7.53,50476.02,524549931,-947696646,246.2,23 -Sun Sep 25 08:10:56 PDT 2011,158,83,7.401,50483.42,524550696,-947696786,246.4,23 -Sun Sep 25 08:10:57 PDT 2011,159,82,6.991,50490.49,524551415,-947696933,246.4,23 -Sun Sep 25 08:10:58 PDT 2011,159,81,6.901,50497.31,524552119,-947697080,246.6,23 -Sun Sep 25 08:10:59 PDT 2011,159,83,6.792,50504.11,524552825,-947697247,246.8,23 -Sun Sep 25 08:11:00 PDT 2011,160,82,6.857,50510.96,524553528,-947697437,247.2,23 -Sun Sep 25 08:11:01 PDT 2011,160,82,6.923,50517.88,524554253,-947697630,247.4,23 -Sun Sep 25 08:11:02 PDT 2011,161,79,6.879,50524.76,524554968,-947697802,247.6,23 -Sun Sep 25 08:11:03 PDT 2011,161,78,6.728,50531.49,524555664,-947697987,247.8,23 -Sun Sep 25 08:11:04 PDT 2011,161,79,6.583,50538.07,524556333,-947698182,248.0,23 -Sun Sep 25 08:11:05 PDT 2011,162,97,6.523,50544.6,524557074,-947698181,248.2,23 -Sun Sep 25 08:11:06 PDT 2011,162,103,6.945,50551.54,524557864,-947697749,248.2,23 -Sun Sep 25 08:11:07 PDT 2011,163,106,7.72,50559.26,524558366,-947696862,248.4,23 -Sun Sep 25 08:11:08 PDT 2011,163,102,8.099,50567.36,524558756,-947695837,248.6,23 -Sun Sep 25 08:11:09 PDT 2011,164,97,8.192,50575.55,524558985,-947694553,248.6,23 -Sun Sep 25 08:11:10 PDT 2011,165,97,8.16,50583.74,524559213,-947693195,248.8,23 -Sun Sep 25 08:11:11 PDT 2011,166,97,8.008,50591.72,524559333,-947691856,248.8,23 -Sun Sep 25 08:11:12 PDT 2011,166,89,7.665,50599.38,524559421,-947690670,248.8,23 -Sun Sep 25 08:11:13 PDT 2011,167,89,7.401,50606.78,524559611,-947689560,249.0,23 -Sun Sep 25 08:11:14 PDT 2011,167,89,7.426,50614.21,524559829,-947688487,249.0,23 -Sun Sep 25 08:11:15 PDT 2011,167,89,7.401,50621.61,524560029,-947687469,249.0,23 -Sun Sep 25 08:11:16 PDT 2011,167,0,7.202,50628.81,524560192,-947686450,249.2,23 -Sun Sep 25 08:11:17 PDT 2011,166,92,7.106,50636.0,524560397,-947685379,249.2,23 -Sun Sep 25 08:11:18 PDT 2011,166,93,7.452,50643.37,524560609,-947684307,249.2,23 -Sun Sep 25 08:11:19 PDT 2011,166,95,7.72,50651.09,524560844,-947683201,249.2,23 -Sun Sep 25 08:11:20 PDT 2011,166,95,7.89,50658.98,524561084,-947682084,249.2,23 -Sun Sep 25 08:11:21 PDT 2011,166,95,7.919,50666.9,524561330,-947680922,249.2,23 -Sun Sep 25 08:11:22 PDT 2011,166,97,7.949,50674.85,524561590,-947679733,249.4,23 -Sun Sep 25 08:11:23 PDT 2011,166,98,7.949,50682.79,524561833,-947678585,249.4,23 -Sun Sep 25 08:11:24 PDT 2011,166,100,8.16,50690.95,524562093,-947677377,249.4,23 -Sun Sep 25 08:11:25 PDT 2011,166,100,8.258,50699.21,524562355,-947676192,249.4,23 -Sun Sep 25 08:11:26 PDT 2011,167,100,8.355,50708.32,524562681,-947674844,249.6,23 -Sun Sep 25 08:11:27 PDT 2011,167,101,8.322,50715.89,524562936,-947673773,249.8,23 -Sun Sep 25 08:11:28 PDT 2011,168,103,8.322,50724.21,524563229,-947672584,250.0,23 -Sun Sep 25 08:11:29 PDT 2011,169,105,8.487,50732.7,524563491,-947671406,250.2,23 -Sun Sep 25 08:11:30 PDT 2011,169,107,8.728,50741.43,524563795,-947670129,250.4,23 -Sun Sep 25 08:11:31 PDT 2011,169,109,8.91,50750.34,524564088,-947668900,250.6,23 -Sun Sep 25 08:11:32 PDT 2011,170,109,9.06,50759.51,524564427,-947667583,250.6,23 -Sun Sep 25 08:11:33 PDT 2011,171,106,9.06,50768.46,524564736,-947666301,250.8,23 -Sun Sep 25 08:11:34 PDT 2011,171,106,9.137,50777.6,524565058,-947665002,250.8,23 -Sun Sep 25 08:11:35 PDT 2011,172,106,8.984,50786.58,524565384,-947663776,251.0,23 -Sun Sep 25 08:11:36 PDT 2011,172,0,8.521,50795.1,524565672,-947662534,251.0,23 -Sun Sep 25 08:11:37 PDT 2011,171,87,8.319,50803.42,524565940,-947661352,251.2,23 -Sun Sep 25 08:11:38 PDT 2011,171,102,8.099,50815.42,524566292,-947659668,251.2,23 -Sun Sep 25 08:11:39 PDT 2011,170,105,8.099,50819.63,524566424,-947659057,251.2,23 -Sun Sep 25 08:11:40 PDT 2011,170,102,8.517,50828.26,524566731,-947657818,251.4,23 -Sun Sep 25 08:11:41 PDT 2011,170,97,8.924,50837.06,524567004,-947656631,251.4,23 -Sun Sep 25 08:11:42 PDT 2011,171,102,9.251,50849.46,524567375,-947654845,251.4,23 -Sun Sep 25 08:11:43 PDT 2011,171,102,9.251,50855.72,524567559,-947653931,251.4,23 -Sun Sep 25 08:11:44 PDT 2011,171,100,9.455,50865.06,524567845,-947652568,251.4,23 -Sun Sep 25 08:11:45 PDT 2011,171,101,9.172,50874.18,524568128,-947651225,251.6,23 -Sun Sep 25 08:11:46 PDT 2011,172,101,9.251,50883.43,524568438,-947649886,251.6,23 -Sun Sep 25 08:11:47 PDT 2011,172,101,9.191,50892.62,524568715,-947648579,251.6,23 -Sun Sep 25 08:11:48 PDT 2011,173,97,9.056,50901.68,524569017,-947647282,251.6,23 -Sun Sep 25 08:11:49 PDT 2011,173,99,8.869,50910.54,524569275,-947646019,251.6,23 -Sun Sep 25 08:11:50 PDT 2011,173,104,9.086,50919.63,524569541,-947644693,251.6,23 -Sun Sep 25 08:11:51 PDT 2011,173,105,9.528,50929.16,524569817,-947643300,251.6,23 -Sun Sep 25 08:11:52 PDT 2011,173,93,9.7,50938.86,524570092,-947641929,251.6,23 -Sun Sep 25 08:11:53 PDT 2011,173,93,9.878,50948.74,524570369,-947640519,251.6,23 -Sun Sep 25 08:11:54 PDT 2011,173,30,9.788,50959.38,524570664,-947638908,251.6,23 -Sun Sep 25 08:11:55 PDT 2011,173,93,9.7,50969.06,524570930,-947637507,251.6,23 -Sun Sep 25 08:11:56 PDT 2011,172,93,9.613,50978.64,524571201,-947636127,251.8,23 -Sun Sep 25 08:11:57 PDT 2011,172,94,9.7,50988.35,524571488,-947634751,251.8,23 -Sun Sep 25 08:11:58 PDT 2011,172,95,9.7,50997.25,524571770,-947633487,251.8,23 -Sun Sep 25 08:11:59 PDT 2011,172,98,9.833,51007.08,524572050,-947632127,251.8,23 -Sun Sep 25 08:12:00 PDT 2011,172,98,10.167,51018.06,524572369,-947630540,251.8,23 -Sun Sep 25 08:12:01 PDT 2011,172,99,10.167,51027.42,524572638,-947629209,251.8,23 -Sun Sep 25 08:12:02 PDT 2011,172,101,10.167,51037.58,524572937,-947627798,251.8,23 -Sun Sep 25 08:12:03 PDT 2011,172,101,10.363,51047.95,524573263,-947626288,251.8,23 -Sun Sep 25 08:12:04 PDT 2011,172,101,10.313,51059.28,524573608,-947624645,251.8,23 -Sun Sep 25 08:12:05 PDT 2011,173,0,10.215,51069.42,524573923,-947623168,251.8,23 -Sun Sep 25 08:12:06 PDT 2011,172,99,10.119,51079.54,524574226,-947621704,251.8,23 -Sun Sep 25 08:12:07 PDT 2011,172,100,10.119,51088.73,524574491,-947620383,251.8,23 -Sun Sep 25 08:12:08 PDT 2011,172,101,10.363,51099.1,524574774,-947618971,251.8,23 -Sun Sep 25 08:12:09 PDT 2011,172,100,10.363,51109.46,524575075,-947617472,251.8,23 -Sun Sep 25 08:12:10 PDT 2011,172,91,10.593,51120.05,524575396,-947615990,251.8,23 -Sun Sep 25 08:12:11 PDT 2011,172,92,10.673,51130.72,524575693,-947614430,251.8,23 -Sun Sep 25 08:12:12 PDT 2011,172,92,10.726,51141.45,524576003,-947612873,251.8,23 -Sun Sep 25 08:12:13 PDT 2011,172,92,10.62,51153.11,524576355,-947611118,251.8,23 -Sun Sep 25 08:12:14 PDT 2011,172,0,10.62,51162.69,524576638,-947609763,251.8,23 -Sun Sep 25 08:12:15 PDT 2011,172,0,10.439,51173.13,524576905,-947608334,251.6,23 -Sun Sep 25 08:12:16 PDT 2011,172,98,10.167,51183.29,524577182,-947606853,251.4,23 -Sun Sep 25 08:12:17 PDT 2011,172,101,10.071,51193.36,524577464,-947605390,251.2,23 -Sun Sep 25 08:12:18 PDT 2011,172,101,10.264,51203.63,524577745,-947603905,251.0,23 -Sun Sep 25 08:12:19 PDT 2011,171,100,10.313,51214.92,524578089,-947602262,251.0,23 -Sun Sep 25 08:12:20 PDT 2011,172,100,10.313,51224.26,524578378,-947600931,250.8,23 -Sun Sep 25 08:12:21 PDT 2011,172,82,10.358,51234.61,524578700,-947599469,250.6,23 -Sun Sep 25 08:12:22 PDT 2011,171,86,10.358,51244.97,524578999,-947597989,250.6,23 -Sun Sep 25 08:12:23 PDT 2011,171,88,10.383,51255.36,524579270,-947596534,250.6,23 -Sun Sep 25 08:12:24 PDT 2011,171,87,10.333,51265.69,524579582,-947595063,250.4,23 -Sun Sep 25 08:12:25 PDT 2011,171,86,10.186,51275.88,524579883,-947593583,250.4,23 -Sun Sep 25 08:12:26 PDT 2011,170,96,10.138,51286.01,524580165,-947592158,250.2,23 -Sun Sep 25 08:12:27 PDT 2011,170,99,10.043,51296.06,524580492,-947590744,250.2,23 -Sun Sep 25 08:12:28 PDT 2011,170,48,10.259,51306.31,524580819,-947589292,250.2,23 -Sun Sep 25 08:12:29 PDT 2011,170,97,10.186,51316.5,524581156,-947587891,250.2,23 -Sun Sep 25 08:12:30 PDT 2011,170,98,10.186,51326.69,524581479,-947586463,250.0,23 -Sun Sep 25 08:12:31 PDT 2011,170,98,10.043,51336.73,524581479,-947586463,250.0,23 -Sun Sep 25 08:12:32 PDT 2011,170,98,10.114,51346.85,524582165,-947583605,250.0,23 -Sun Sep 25 08:12:33 PDT 2011,170,28,10.138,51356.98,524582448,-947582172,250.0,23 -Sun Sep 25 08:12:34 PDT 2011,169,100,10.09,51367.07,524582722,-947580735,250.0,23 -Sun Sep 25 08:12:35 PDT 2011,169,102,10.043,51377.11,524583020,-947579248,250.0,23 -Sun Sep 25 08:12:36 PDT 2011,168,103,10.383,51387.5,524583305,-947577729,249.8,23 -Sun Sep 25 08:12:37 PDT 2011,169,103,10.72,51398.22,524583612,-947576205,249.8,23 -Sun Sep 25 08:12:38 PDT 2011,169,103,10.536,51408.75,524583894,-947574702,249.8,23 -Sun Sep 25 08:12:39 PDT 2011,169,0,10.433,51419.19,524584223,-947573227,249.8,23 -Sun Sep 25 08:12:40 PDT 2011,170,0,10.235,51429.42,524584545,-947571743,249.8,23 -Sun Sep 25 08:12:41 PDT 2011,170,0,10.235,51439.65,524584908,-947570338,249.8,23 -Sun Sep 25 08:12:42 PDT 2011,169,0,10.09,51449.81,524585241,-947568897,249.8,23 -Sun Sep 25 08:12:43 PDT 2011,169,95,9.859,51459.61,524585514,-947567502,249.8,23 -Sun Sep 25 08:12:44 PDT 2011,168,96,9.856,51469.46,524585798,-947566112,249.8,23 -Sun Sep 25 08:12:45 PDT 2011,168,96,9.901,51479.36,524586091,-947564693,249.8,23 -Sun Sep 25 08:12:46 PDT 2011,169,96,9.993,51489.36,524586373,-947563303,249.8,23 -Sun Sep 25 08:12:47 PDT 2011,169,96,9.993,51499.35,524586661,-947561887,249.8,23 -Sun Sep 25 08:12:48 PDT 2011,168,96,9.947,51509.29,524586960,-947560459,249.8,23 -Sun Sep 25 08:12:49 PDT 2011,168,30,9.993,51519.29,524587260,-947559065,249.8,23 -Sun Sep 25 08:12:50 PDT 2011,167,92,9.723,51529.01,524587566,-947557728,249.8,23 -Sun Sep 25 08:12:51 PDT 2011,167,91,9.593,51538.6,524587861,-947556360,249.8,23 -Sun Sep 25 08:12:52 PDT 2011,166,55,9.509,51548.11,524588133,-947555062,249.8,23 -Sun Sep 25 08:12:53 PDT 2011,166,91,9.304,51557.42,524588398,-947553759,249.8,23 -Sun Sep 25 08:12:54 PDT 2011,165,95,9.385,51566.8,524588672,-947552406,249.8,23 -Sun Sep 25 08:12:55 PDT 2011,165,97,9.679,51576.48,524588997,-947551039,249.8,23 -Sun Sep 25 08:12:56 PDT 2011,166,98,10.025,51586.51,524589306,-947549588,249.8,23 -Sun Sep 25 08:12:57 PDT 2011,167,98,10.167,51596.67,524589612,-947548157,249.8,23 -Sun Sep 25 08:12:58 PDT 2011,167,98,9.979,51606.65,524589897,-947546698,249.8,23 -Sun Sep 25 08:12:59 PDT 2011,167,94,9.775,51616.43,524590184,-947545322,249.8,23 -Sun Sep 25 08:13:00 PDT 2011,168,102,9.622,51626.05,524590495,-947543896,249.8,23 -Sun Sep 25 08:13:01 PDT 2011,168,93,9.644,51635.69,524590781,-947542485,249.8,23 -Sun Sep 25 08:13:02 PDT 2011,168,94,9.709,51645.4,524591086,-947541130,249.8,23 -Sun Sep 25 08:13:03 PDT 2011,168,95,9.709,51655.11,524591405,-947539740,249.8,23 -Sun Sep 25 08:13:04 PDT 2011,168,94,9.797,51664.91,524591715,-947538324,249.8,23 -Sun Sep 25 08:13:05 PDT 2011,168,94,9.797,51674.75,524592012,-947536946,249.6,23 -Sun Sep 25 08:13:06 PDT 2011,168,93,9.753,51684.46,524592296,-947535576,249.6,23 -Sun Sep 25 08:13:07 PDT 2011,168,39,9.609,51694.07,524592567,-947534202,249.6,23 -Sun Sep 25 08:13:08 PDT 2011,168,90,9.524,51703.6,524592823,-947532869,249.6,23 -Sun Sep 25 08:13:09 PDT 2011,167,88,9.277,51712.87,524593101,-947531517,249.6,23 -Sun Sep 25 08:13:10 PDT 2011,166,53,9.198,51722.07,524593347,-947530274,249.6,23 -Sun Sep 25 08:13:11 PDT 2011,166,92,8.931,51731.0,524593579,-947529068,249.6,23 -Sun Sep 25 08:13:12 PDT 2011,166,91,8.644,51739.65,524593848,-947527847,249.6,23 -Sun Sep 25 08:13:13 PDT 2011,166,89,8.507,51748.15,524594103,-947526688,249.6,23 -Sun Sep 25 08:13:14 PDT 2011,166,90,8.342,51756.5,524594326,-947525539,249.6,23 -Sun Sep 25 08:13:15 PDT 2011,167,104,8.278,51764.77,524594548,-947524364,249.6,23 -Sun Sep 25 08:13:16 PDT 2011,167,109,8.44,51773.22,524594819,-947523160,249.6,23 -Sun Sep 25 08:13:17 PDT 2011,168,109,8.894,51782.11,524595098,-947521910,249.6,23 -Sun Sep 25 08:13:18 PDT 2011,169,112,9.277,51791.39,524595390,-947520591,249.6,23 -Sun Sep 25 08:13:19 PDT 2011,169,115,9.277,51800.67,524595686,-947519242,249.6,23 -Sun Sep 25 08:13:20 PDT 2011,170,113,9.445,51810.11,524595977,-947517845,249.6,23 -Sun Sep 25 08:13:21 PDT 2011,172,113,9.878,51819.99,524596271,-947516421,249.6,23 -Sun Sep 25 08:13:22 PDT 2011,173,113,9.788,51829.78,524596561,-947515045,249.6,23 -Sun Sep 25 08:13:23 PDT 2011,173,0,9.282,51839.06,524596811,-947513765,249.6,23 -Sun Sep 25 08:13:24 PDT 2011,174,0,8.825,51847.88,524597079,-947512471,249.6,23 -Sun Sep 25 08:13:25 PDT 2011,173,0,8.444,51856.33,524597325,-947511253,249.6,23 -Sun Sep 25 08:13:26 PDT 2011,173,90,8.187,51864.52,524597557,-947510138,249.6,23 -Sun Sep 25 08:13:27 PDT 2011,172,96,7.946,51872.46,524597790,-947509034,249.6,23 -Sun Sep 25 08:13:28 PDT 2011,172,96,8.005,51880.47,524598022,-947507944,249.6,23 -Sun Sep 25 08:13:29 PDT 2011,172,98,8.095,51889.27,524598279,-947506719,249.6,23 -Sun Sep 25 08:13:30 PDT 2011,172,99,8.282,51897.53,524598530,-947505567,249.6,23 -Sun Sep 25 08:13:31 PDT 2011,171,100,8.282,51905.11,524598759,-947504488,250.0,23 -Sun Sep 25 08:13:32 PDT 2011,171,102,8.314,51913.42,524599025,-947503330,250.2,23 -Sun Sep 25 08:13:33 PDT 2011,171,104,8.495,51921.92,524599292,-947502117,250.2,23 -Sun Sep 25 08:13:34 PDT 2011,171,105,8.529,51930.45,524599523,-947500878,250.4,23 -Sun Sep 25 08:13:35 PDT 2011,171,51,8.808,51939.26,524599796,-947499601,250.6,23 -Sun Sep 25 08:13:36 PDT 2011,172,104,8.772,51948.03,524600054,-947498387,250.8,23 -Sun Sep 25 08:13:37 PDT 2011,172,105,8.597,51956.63,524600324,-947497115,250.8,23 -Sun Sep 25 08:13:38 PDT 2011,173,105,8.772,51965.41,524600589,-947495846,251.0,23 -Sun Sep 25 08:13:39 PDT 2011,173,104,8.737,51974.13,524600854,-947494612,251.0,23 -Sun Sep 25 08:13:40 PDT 2011,174,106,8.737,51982.87,524601112,-947493374,251.0,23 -Sun Sep 25 08:13:41 PDT 2011,174,110,8.772,51991.65,524601380,-947492126,251.2,23 -Sun Sep 25 08:13:42 PDT 2011,174,112,9.03,52000.68,524601654,-947490802,251.2,23 -Sun Sep 25 08:13:43 PDT 2011,175,117,9.264,52009.94,524601931,-947489469,251.4,23 -Sun Sep 25 08:13:44 PDT 2011,175,124,9.973,52020.77,524602256,-947487876,251.4,23 -Sun Sep 25 08:13:45 PDT 2011,176,118,10.459,52031.32,524602574,-947486381,251.4,23 -Sun Sep 25 08:13:46 PDT 2011,176,118,10.459,52042.13,524602912,-947484816,251.4,23 -Sun Sep 25 08:13:47 PDT 2011,177,118,10.308,52055.85,524603322,-947482848,251.4,23 -Sun Sep 25 08:13:48 PDT 2011,178,0,10.308,52061.47,524603489,-947482049,251.6,23 -Sun Sep 25 08:13:49 PDT 2011,178,0,10.21,52071.64,524603787,-947480556,251.6,24 -Sun Sep 25 08:13:50 PDT 2011,178,107,10.114,52081.76,524604074,-947479104,251.6,24 -Sun Sep 25 08:13:51 PDT 2011,178,101,10.162,52091.92,524604383,-947477652,251.6,24 -Sun Sep 25 08:13:52 PDT 2011,178,101,10.358,52102.27,524604711,-947476202,251.6,24 -Sun Sep 25 08:13:53 PDT 2011,178,101,10.409,52112.69,524605038,-947474753,251.6,24 -Sun Sep 25 08:13:54 PDT 2011,177,21,10.409,52123.1,524605372,-947473255,251.6,24 -Sun Sep 25 08:13:55 PDT 2011,176,103,10.304,52133.4,524605684,-947471763,251.6,24 -Sun Sep 25 08:13:56 PDT 2011,176,106,10.404,52143.8,524606001,-947470255,251.8,24 -Sun Sep 25 08:13:57 PDT 2011,175,103,10.77,52154.57,524606302,-947468676,251.8,24 -Sun Sep 25 08:13:58 PDT 2011,175,103,11.104,52165.68,524606653,-947467115,251.8,24 -Sun Sep 25 08:13:59 PDT 2011,175,103,11.047,52176.72,524606978,-947465589,251.8,24 -Sun Sep 25 08:14:00 PDT 2011,175,0,10.716,52187.44,524607294,-947464025,251.8,24 -Sun Sep 25 08:14:01 PDT 2011,174,0,10.506,52197.95,524607599,-947462485,251.8,24 -Sun Sep 25 08:14:02 PDT 2011,173,0,10.378,52208.33,524607901,-947460974,251.8,24 -Sun Sep 25 08:14:03 PDT 2011,172,0,10.404,52218.73,524608199,-947459496,251.8,24 -Sun Sep 25 08:14:04 PDT 2011,172,0,10.109,52228.84,524608508,-947458049,251.8,24 -Sun Sep 25 08:14:05 PDT 2011,171,0,10.205,52239.04,524608836,-947456633,251.8,24 -Sun Sep 25 08:14:06 PDT 2011,171,0,10.115,52249.15,524609175,-947455201,251.8,24 -Sun Sep 25 08:14:07 PDT 2011,170,97,9.928,52259.08,524609486,-947453813,251.8,24 -Sun Sep 25 08:14:08 PDT 2011,169,99,9.793,52268.88,524609785,-947452387,251.8,24 -Sun Sep 25 08:14:09 PDT 2011,169,100,10.067,52278.94,524610075,-947450958,251.8,24 -Sun Sep 25 08:14:10 PDT 2011,169,102,10.509,52290.46,524610437,-947449350,251.6,24 -Sun Sep 25 08:14:11 PDT 2011,169,103,10.509,52299.97,524610746,-947447998,251.4,24 -Sun Sep 25 08:14:12 PDT 2011,169,103,10.692,52310.65,524611050,-947446520,251.2,24 -Sun Sep 25 08:14:13 PDT 2011,169,103,10.613,52321.27,524611362,-947445018,251.0,24 -Sun Sep 25 08:14:14 PDT 2011,169,0,10.235,52331.5,524611658,-947443558,251.0,24 -Sun Sep 25 08:14:15 PDT 2011,168,0,10.02,52341.52,524611938,-947442113,250.8,24 -Sun Sep 25 08:14:16 PDT 2011,168,97,9.928,52351.45,524612233,-947440683,250.6,24 -Sun Sep 25 08:14:17 PDT 2011,168,98,10.119,52361.57,524612532,-947439276,250.6,24 -Sun Sep 25 08:14:18 PDT 2011,168,101,10.215,52372.64,524612900,-947437677,250.4,24 -Sun Sep 25 08:14:19 PDT 2011,168,101,10.463,52383.1,524613252,-947436214,250.4,24 -Sun Sep 25 08:14:20 PDT 2011,168,101,10.413,52393.55,524613609,-947434739,250.4,24 -Sun Sep 25 08:14:21 PDT 2011,168,101,10.514,52404.17,524613968,-947433245,250.2,24 -Sun Sep 25 08:14:22 PDT 2011,169,101,10.514,52413.66,524614277,-947431911,250.2,24 -Sun Sep 25 08:14:23 PDT 2011,169,101,10.413,52425.11,524614642,-947430269,250.2,24 -Sun Sep 25 08:14:24 PDT 2011,169,103,10.566,52435.58,524614969,-947428771,250.0,24 -Sun Sep 25 08:14:25 PDT 2011,169,106,10.723,52446.4,524615311,-947427270,250.0,24 -Sun Sep 25 08:14:26 PDT 2011,169,109,11.173,52457.37,524615686,-947425711,250.0,24 -Sun Sep 25 08:14:27 PDT 2011,170,96,11.173,52468.54,524616078,-947424143,250.0,24 -Sun Sep 25 08:14:28 PDT 2011,170,96,11.173,52478.81,524616427,-947422691,250.0,24 -Sun Sep 25 08:14:29 PDT 2011,170,96,11.173,52489.99,524616783,-947421138,249.8,24 -Sun Sep 25 08:14:30 PDT 2011,171,0,10.78,52500.77,524617071,-947419605,249.8,24 -Sun Sep 25 08:14:31 PDT 2011,171,87,10.413,52511.18,524617366,-947418093,249.8,24 -Sun Sep 25 08:14:32 PDT 2011,170,86,10.264,52521.45,524617651,-947416640,249.8,24 -Sun Sep 25 08:14:33 PDT 2011,170,86,10.024,52532.43,524617914,-947415081,249.8,24 -Sun Sep 25 08:14:34 PDT 2011,170,86,10.024,52541.49,524618152,-947413788,249.8,24 -Sun Sep 25 08:14:35 PDT 2011,169,0,9.751,52551.24,524618423,-947412470,249.8,24 -Sun Sep 25 08:14:36 PDT 2011,168,0,9.45,52560.69,524618679,-947411147,249.8,24 -Sun Sep 25 08:14:37 PDT 2011,167,0,9.167,52569.86,524618919,-947409841,249.8,24 -Sun Sep 25 08:14:38 PDT 2011,166,0,8.897,52578.76,524619170,-947408620,249.8,24 -Sun Sep 25 08:14:39 PDT 2011,165,81,8.542,52587.3,524619417,-947407462,249.8,24 -Sun Sep 25 08:14:40 PDT 2011,164,91,8.311,52595.61,524619558,-947406268,249.6,24 -Sun Sep 25 08:14:41 PDT 2011,164,91,8.376,52603.99,524619383,-947405043,249.6,24 -Sun Sep 25 08:14:42 PDT 2011,165,103,8.408,52612.4,524618939,-947404059,249.6,24 -Sun Sep 25 08:14:43 PDT 2011,165,105,8.441,52620.84,524618062,-947403423,249.6,24 -Sun Sep 25 08:14:44 PDT 2011,166,107,8.577,52629.42,524617150,-947403028,249.6,24 -Sun Sep 25 08:14:45 PDT 2011,167,107,8.787,52638.2,524616089,-947402755,249.6,24 -Sun Sep 25 08:14:46 PDT 2011,167,100,8.934,52647.13,524614936,-947402666,249.6,24 -Sun Sep 25 08:14:47 PDT 2011,168,101,9.163,52656.3,524613814,-947402611,249.6,24 -Sun Sep 25 08:14:48 PDT 2011,169,101,9.242,52665.54,524612762,-947402561,249.6,24 -Sun Sep 25 08:14:49 PDT 2011,170,101,9.282,52674.82,524611730,-947402405,249.6,24 -Sun Sep 25 08:14:50 PDT 2011,169,27,9.322,52684.14,524610739,-947402204,249.6,24 -Sun Sep 25 08:14:51 PDT 2011,168,103,9.163,52693.31,524609741,-947401907,249.6,24 -Sun Sep 25 08:14:52 PDT 2011,168,100,9.384,52702.69,524608709,-947401619,249.6,24 -Sun Sep 25 08:14:53 PDT 2011,168,58,9.615,52712.3,524607691,-947401391,249.6,24 -Sun Sep 25 08:14:54 PDT 2011,168,99,9.791,52722.09,524606639,-947401127,249.6,24 -Sun Sep 25 08:14:55 PDT 2011,168,100,10.019,52732.11,524605554,-947400821,249.6,24 -Sun Sep 25 08:14:56 PDT 2011,169,101,10.308,52742.45,524604446,-947400422,249.6,24 -Sun Sep 25 08:14:57 PDT 2011,170,104,10.383,52752.85,524603305,-947400303,249.6,24 -Sun Sep 25 08:14:58 PDT 2011,170,107,10.459,52763.26,524602124,-947400020,249.4,24 -Sun Sep 25 08:14:59 PDT 2011,171,108,10.94,52774.2,524600982,-947399852,249.2,24 -Sun Sep 25 08:15:00 PDT 2011,172,110,11.168,52785.37,524599693,-947399615,249.0,24 -Sun Sep 25 08:15:01 PDT 2011,174,110,11.285,52796.65,524598462,-947399387,248.8,24 -Sun Sep 25 08:15:02 PDT 2011,175,110,11.559,52808.21,524597246,-947399071,248.6,24 -Sun Sep 25 08:15:03 PDT 2011,176,110,11.345,52819.56,524596042,-947398792,248.4,24 -Sun Sep 25 08:15:04 PDT 2011,177,110,11.285,52830.84,524594805,-947398527,248.4,24 -Sun Sep 25 08:15:05 PDT 2011,178,108,11.345,52842.19,524593569,-947398255,248.2,24 -Sun Sep 25 08:15:06 PDT 2011,179,117,11.345,52853.53,524592420,-947398001,248.2,24 -Sun Sep 25 08:15:07 PDT 2011,180,115,10.996,52864.52,524591317,-947397674,248.0,24 -Sun Sep 25 08:15:08 PDT 2011,181,99,10.748,52875.27,524590157,-947397390,248.0,24 -Sun Sep 25 08:15:09 PDT 2011,181,103,10.358,52885.63,524589105,-947397138,247.8,24 -Sun Sep 25 08:15:10 PDT 2011,182,102,9.746,52895.38,524588094,-947396899,247.8,24 -Sun Sep 25 08:15:11 PDT 2011,182,102,9.53,52904.91,524587149,-947396665,248.0,24 -Sun Sep 25 08:15:12 PDT 2011,182,101,9.322,52915.16,524586091,-947396463,248.2,24 -Sun Sep 25 08:15:13 PDT 2011,181,99,9.163,52924.33,524585140,-947396242,248.4,24 -Sun Sep 25 08:15:14 PDT 2011,182,52,9.163,52932.57,524584276,-947396033,248.4,24 -Sun Sep 25 08:15:15 PDT 2011,182,98,8.99,52941.56,524583342,-947395796,248.6,24 -Sun Sep 25 08:15:16 PDT 2011,181,101,8.971,52950.57,524582325,-947395552,248.8,24 -Sun Sep 25 08:15:17 PDT 2011,181,101,9.242,52959.77,524581368,-947395302,248.8,24 -Sun Sep 25 08:15:18 PDT 2011,181,102,9.363,52970.01,524580239,-947395040,249.0,24 -Sun Sep 25 08:15:19 PDT 2011,181,101,9.363,52978.5,524579329,-947394831,249.0,24 -Sun Sep 25 08:15:20 PDT 2011,181,101,9.404,52987.9,524578382,-947394615,249.0,24 -Sun Sep 25 08:15:21 PDT 2011,181,101,9.363,52997.26,524577365,-947394405,249.2,24 -Sun Sep 25 08:15:22 PDT 2011,180,101,9.363,53006.63,524576391,-947394223,249.2,24 -Sun Sep 25 08:15:23 PDT 2011,180,100,9.282,53015.91,524575419,-947394067,249.2,24 -Sun Sep 25 08:15:24 PDT 2011,180,101,9.242,53025.15,524574429,-947393906,249.2,24 -Sun Sep 25 08:15:25 PDT 2011,180,102,9.202,53034.35,524573433,-947393762,249.4,24 -Sun Sep 25 08:15:26 PDT 2011,180,98,9.404,53043.76,524572380,-947393464,249.4,24 -Sun Sep 25 08:15:27 PDT 2011,180,97,9.242,53053.0,524571452,-947393178,249.4,24 -Sun Sep 25 08:15:28 PDT 2011,180,96,9.009,53062.01,524570508,-947392902,249.6,24 -Sun Sep 25 08:15:29 PDT 2011,180,107,8.86,53070.86,524569557,-947392611,250.0,24 -Sun Sep 25 08:15:30 PDT 2011,180,107,8.86,53079.72,524568609,-947392363,250.2,24 -Sun Sep 25 08:15:31 PDT 2011,180,108,8.897,53088.62,524567653,-947392124,250.4,24 -Sun Sep 25 08:15:32 PDT 2011,180,107,9.005,53097.63,524566718,-947391908,250.4,24 -Sun Sep 25 08:15:33 PDT 2011,181,109,9.005,53106.63,524565779,-947391670,250.6,24 -Sun Sep 25 08:15:34 PDT 2011,181,114,8.93,53115.56,524564806,-947391409,250.8,24 -Sun Sep 25 08:15:35 PDT 2011,181,116,9.198,53124.79,524563799,-947391152,251.0,24 -Sun Sep 25 08:15:36 PDT 2011,182,119,9.61,53134.36,524562731,-947390894,251.0,24 -Sun Sep 25 08:15:37 PDT 2011,182,109,9.922,53144.29,524561728,-947390654,251.2,24 -Sun Sep 25 08:15:38 PDT 2011,183,110,9.831,53154.12,524560727,-947390465,251.2,24 -Sun Sep 25 08:15:39 PDT 2011,183,112,10.062,53164.18,524559607,-947390262,251.4,24 -Sun Sep 25 08:15:40 PDT 2011,183,107,10.254,53174.44,524558538,-947390021,251.4,24 -Sun Sep 25 08:15:41 PDT 2011,184,43,10.304,53184.74,524557488,-947389721,251.4,24 -Sun Sep 25 08:15:42 PDT 2011,184,101,10.23,53194.97,524556404,-947389507,251.6,24 -Sun Sep 25 08:15:43 PDT 2011,183,107,10.095,53205.06,524555262,-947389215,251.6,24 -Sun Sep 25 08:15:44 PDT 2011,184,108,10.594,53215.66,524554055,-947388978,251.6,24 -Sun Sep 25 08:15:45 PDT 2011,184,108,11.117,53226.77,524552874,-947388726,251.6,24 -Sun Sep 25 08:15:46 PDT 2011,185,107,11.146,53237.92,524551689,-947388401,251.8,24 -Sun Sep 25 08:15:47 PDT 2011,185,119,10.863,53248.78,524550527,-947388126,251.8,24 -Sun Sep 25 08:15:48 PDT 2011,185,118,10.947,53260.77,524549270,-947387781,251.8,24 -Sun Sep 25 08:15:49 PDT 2011,185,115,10.781,53271.74,524548124,-947387492,251.8,24 -Sun Sep 25 08:15:50 PDT 2011,185,113,10.542,53282.31,524547005,-947387223,251.8,24 -Sun Sep 25 08:15:51 PDT 2011,186,100,10.363,53294.29,524545730,-947386919,251.8,24 -Sun Sep 25 08:15:52 PDT 2011,186,98,10.338,53302.99,524544808,-947386685,251.8,24 -Sun Sep 25 08:15:53 PDT 2011,186,96,10.338,53312.17,524543854,-947386444,251.8,24 -Sun Sep 25 08:15:54 PDT 2011,185,105,9.973,53322.18,524542834,-947386151,252.0,24 -Sun Sep 25 08:15:55 PDT 2011,186,103,9.746,53331.88,524541814,-947385906,252.0,24 -Sun Sep 25 08:15:56 PDT 2011,185,102,9.572,53341.45,524540835,-947385706,252.0,24 -Sun Sep 25 08:15:57 PDT 2011,185,102,9.53,53350.99,524539831,-947385468,252.0,24 -Sun Sep 25 08:15:58 PDT 2011,185,102,9.487,53360.47,524538816,-947385216,252.0,24 -Sun Sep 25 08:15:59 PDT 2011,185,102,9.322,53369.79,524537867,-947384985,252.2,24 -Sun Sep 25 08:16:00 PDT 2011,185,103,9.404,53379.2,524536875,-947384731,252.4,24 -Sun Sep 25 08:16:01 PDT 2011,185,102,9.425,53388.62,524535874,-947384474,252.6,24 -Sun Sep 25 08:16:02 PDT 2011,184,101,9.404,53398.02,524534898,-947384203,252.8,24 -Sun Sep 25 08:16:03 PDT 2011,184,32,9.322,53407.35,524533916,-947384020,253.0,24 -Sun Sep 25 08:16:04 PDT 2011,184,98,9.202,53416.55,524532976,-947383821,253.2,24 -Sun Sep 25 08:16:05 PDT 2011,184,99,8.881,53425.43,524532032,-947383599,253.2,24 -Sun Sep 25 08:16:06 PDT 2011,184,99,9.185,53434.61,524531048,-947383385,253.4,24 -Sun Sep 25 08:16:07 PDT 2011,184,99,9.224,53443.84,524530103,-947383146,253.6,24 -Sun Sep 25 08:16:08 PDT 2011,184,99,9.304,53453.14,524529164,-947382900,253.6,24 -Sun Sep 25 08:16:09 PDT 2011,184,99,9.146,53462.29,524528242,-947382659,253.6,24 -Sun Sep 25 08:16:10 PDT 2011,183,96,8.943,53471.23,524527317,-947382417,254.0,24 -Sun Sep 25 08:16:11 PDT 2011,182,96,8.808,53480.04,524526397,-947382215,254.2,24 -Sun Sep 25 08:16:12 PDT 2011,182,34,8.955,53488.99,524525422,-947382018,254.4,24 -Sun Sep 25 08:16:13 PDT 2011,181,100,9.146,53498.96,524524363,-947381787,254.6,24 -Sun Sep 25 08:16:14 PDT 2011,181,94,9.146,53507.28,524523469,-947381575,254.8,24 -Sun Sep 25 08:16:15 PDT 2011,181,96,9.769,53517.97,524522331,-947381346,255.0,24 -Sun Sep 25 08:16:16 PDT 2011,180,101,9.769,53526.82,524521373,-947381126,255.2,24 -Sun Sep 25 08:16:17 PDT 2011,180,101,10.133,53536.95,524520269,-947380910,255.4,24 -Sun Sep 25 08:16:18 PDT 2011,179,101,10.532,53547.49,524519112,-947380679,255.4,24 -Sun Sep 25 08:16:19 PDT 2011,179,108,10.853,53559.34,524517800,-947380377,255.6,24 -Sun Sep 25 08:16:20 PDT 2011,179,109,10.853,53569.19,524516740,-947380114,255.4,24 -Sun Sep 25 08:16:21 PDT 2011,179,109,11.194,53580.39,524515535,-947379849,255.4,24 -Sun Sep 25 08:16:22 PDT 2011,179,108,11.312,53591.7,524514334,-947379562,255.2,24 -Sun Sep 25 08:16:23 PDT 2011,179,108,11.078,53602.78,524513133,-947379286,255.2,24 -Sun Sep 25 08:16:24 PDT 2011,178,108,10.964,53613.74,524511948,-947379059,255.0,24 -Sun Sep 25 08:16:25 PDT 2011,179,19,10.798,53624.54,524510817,-947378823,255.0,24 -Sun Sep 25 08:16:26 PDT 2011,179,101,10.429,53634.97,524509714,-947378580,254.8,24 -Sun Sep 25 08:16:27 PDT 2011,178,102,10.359,53645.33,524508586,-947378318,254.8,24 -Sun Sep 25 08:16:28 PDT 2011,179,103,10.511,53655.84,524507480,-947378032,254.8,24 -Sun Sep 25 08:16:29 PDT 2011,179,102,10.616,53666.46,524506372,-947377729,254.8,24 -Sun Sep 25 08:16:30 PDT 2011,178,102,10.511,53676.97,524505246,-947377406,254.6,24 -Sun Sep 25 08:16:31 PDT 2011,178,102,10.384,53687.35,524504153,-947377085,254.6,24 -Sun Sep 25 08:16:32 PDT 2011,178,0,10.09,53697.47,524503059,-947376783,254.6,24 -Sun Sep 25 08:16:33 PDT 2011,177,101,10.09,53707.53,524501981,-947376520,254.6,24 -Sun Sep 25 08:16:34 PDT 2011,176,95,10.333,53717.86,524500880,-947376204,254.6,24 -Sun Sep 25 08:16:35 PDT 2011,176,92,10.434,53728.3,524499758,-947375958,254.6,24 -Sun Sep 25 08:16:36 PDT 2011,175,92,10.858,53740.15,524498489,-947375783,254.4,24 -Sun Sep 25 08:16:37 PDT 2011,175,92,10.858,53750.01,524497429,-947375577,254.4,24 -Sun Sep 25 08:16:38 PDT 2011,174,0,10.94,53760.95,524496271,-947375372,254.4,24 -Sun Sep 25 08:16:39 PDT 2011,173,0,11.197,53773.26,524494925,-947375058,254.4,24 -Sun Sep 25 08:16:40 PDT 2011,171,0,11.345,53784.5,524493716,-947374750,254.2,24 -Sun Sep 25 08:16:41 PDT 2011,171,101,11.345,53794.83,524492612,-947374487,254.0,24 -Sun Sep 25 08:16:42 PDT 2011,171,101,11.59,53806.42,524491376,-947374177,253.8,24 -Sun Sep 25 08:16:43 PDT 2011,171,101,12.114,53818.53,524490079,-947373849,253.6,24 -Sun Sep 25 08:16:44 PDT 2011,171,101,12.114,53830.64,524488805,-947373552,253.4,24 -Sun Sep 25 08:16:45 PDT 2011,170,0,12.046,53843.87,524487357,-947373259,253.0,24 -Sun Sep 25 08:16:46 PDT 2011,170,0,12.046,53854.74,524486217,-947373037,252.6,24 -Sun Sep 25 08:16:47 PDT 2011,170,0,11.77,53866.51,524484966,-947372779,252.4,24 -Sun Sep 25 08:16:48 PDT 2011,169,102,11.394,53877.9,524483779,-947372542,252.2,24 -Sun Sep 25 08:16:49 PDT 2011,169,102,11.042,53888.94,524482679,-947372272,251.8,24 -Sun Sep 25 08:16:50 PDT 2011,169,96,10.631,53899.58,524481581,-947371996,251.6,24 -Sun Sep 25 08:16:51 PDT 2011,169,97,9.917,53910.52,524480434,-947371694,251.4,24 -Sun Sep 25 08:16:52 PDT 2011,170,97,9.917,53919.41,524479489,-947371473,251.2,24 -Sun Sep 25 08:16:53 PDT 2011,170,97,9.917,53929.33,524478455,-947371186,251.2,24 -Sun Sep 25 08:16:54 PDT 2011,170,98,10.033,53939.36,524477383,-947370953,251.2,24 -Sun Sep 25 08:16:55 PDT 2011,171,98,10.01,53949.37,524476341,-947370768,251.2,24 -Sun Sep 25 08:16:56 PDT 2011,172,98,10.104,53960.44,524475147,-947370512,251.2,24 -Sun Sep 25 08:16:57 PDT 2011,172,99,10.157,53970.55,524474067,-947370290,251.4,24 -Sun Sep 25 08:16:58 PDT 2011,173,102,10.157,53979.79,524473079,-947370094,251.4,24 -Sun Sep 25 08:16:59 PDT 2011,173,95,10.583,53991.31,524471878,-947369818,251.4,24 -Sun Sep 25 08:17:00 PDT 2011,174,95,10.583,54000.95,524470837,-947369595,251.4,24 -Sun Sep 25 08:17:01 PDT 2011,174,95,10.989,54012.91,524469562,-947369223,251.4,24 -Sun Sep 25 08:17:02 PDT 2011,174,0,11.366,54024.26,524468339,-947368898,251.6,24 -Sun Sep 25 08:17:03 PDT 2011,173,0,12.001,54036.24,524467062,-947368598,251.6,24 -Sun Sep 25 08:17:04 PDT 2011,173,0,12.637,54048.97,524465702,-947368310,251.6,24 -Sun Sep 25 08:17:05 PDT 2011,173,115,13.683,54062.52,524464266,-947367937,251.4,24 -Sun Sep 25 08:17:06 PDT 2011,173,99,14.714,54077.19,524462674,-947367230,251.2,24 -Sun Sep 25 08:17:07 PDT 2011,172,100,15.624,54092.85,524461158,-947366247,250.8,24 -Sun Sep 25 08:17:08 PDT 2011,173,103,16.399,54109.22,524459702,-947364922,250.2,24 -Sun Sep 25 08:17:09 PDT 2011,173,103,16.849,54126.13,524458333,-947363324,249.6,24 -Sun Sep 25 08:17:10 PDT 2011,173,103,17.118,54143.27,524456988,-947361530,249.0,24 -Sun Sep 25 08:17:11 PDT 2011,172,0,17.186,54160.56,524455665,-947359698,248.0,24 -Sun Sep 25 08:17:12 PDT 2011,171,0,17.186,54177.81,524454363,-947357922,247.2,24 -Sun Sep 25 08:17:13 PDT 2011,171,0,16.784,54195.94,524452940,-947356078,246.4,24 -Sun Sep 25 08:17:14 PDT 2011,170,0,16.784,54209.79,524451861,-947354709,245.6,24 -Sun Sep 25 08:17:15 PDT 2011,169,0,16.275,54226.06,524450569,-947353280,244.8,24 -Sun Sep 25 08:17:16 PDT 2011,168,0,15.4,54241.46,524449246,-947352168,244.0,24 -Sun Sep 25 08:17:17 PDT 2011,167,0,13.771,54257.74,524447336,-947352262,243.4,24 -Sun Sep 25 08:17:18 PDT 2011,166,94,13.771,54269.0,524446097,-947352243,243.0,24 -Sun Sep 25 08:17:19 PDT 2011,166,107,13.597,54282.6,524444794,-947353088,242.4,24 -Sun Sep 25 08:17:20 PDT 2011,166,121,13.385,54298.65,524443500,-947354531,242.0,24 -Sun Sep 25 08:17:21 PDT 2011,167,105,12.98,54311.64,524442327,-947355256,241.6,24 -Sun Sep 25 08:17:22 PDT 2011,168,103,12.103,54323.66,524441448,-947356772,241.2,24 -Sun Sep 25 08:17:23 PDT 2011,169,101,12.103,54333.42,524440715,-947357813,240.8,24 -Sun Sep 25 08:17:24 PDT 2011,170,96,11.55,54347.57,524439810,-947359476,240.8,24 -Sun Sep 25 08:17:25 PDT 2011,172,93,11.017,54357.0,524439070,-947360400,240.8,24 -Sun Sep 25 08:17:26 PDT 2011,174,95,10.688,54367.79,524438135,-947361182,240.8,24 -Sun Sep 25 08:17:27 PDT 2011,175,95,10.286,54378.06,524437140,-947361736,241.0,24 -Sun Sep 25 08:17:28 PDT 2011,176,93,10.286,54387.44,524436180,-947362189,241.2,24 -Sun Sep 25 08:17:29 PDT 2011,178,93,9.633,54398.01,524435060,-947362107,241.4,24 -Sun Sep 25 08:17:30 PDT 2011,179,93,9.59,54407.52,524433999,-947362019,241.8,24 -Sun Sep 25 08:17:31 PDT 2011,180,95,9.59,54416.25,524433079,-947362049,242.2,24 -Sun Sep 25 08:17:32 PDT 2011,181,100,9.832,54426.08,524432027,-947361858,242.6,24 -Sun Sep 25 08:17:33 PDT 2011,182,104,10.086,54436.17,524430886,-947361589,242.8,24 -Sun Sep 25 08:17:34 PDT 2011,183,111,10.905,54447.08,524429668,-947361317,243.2,24 -Sun Sep 25 08:17:35 PDT 2011,184,115,11.55,54458.63,524428441,-947361041,243.4,24 -Sun Sep 25 08:17:36 PDT 2011,184,111,11.55,54470.18,524427144,-947360554,243.6,24 -Sun Sep 25 08:17:37 PDT 2011,185,105,11.902,54482.08,524425821,-947360249,243.8,24 -Sun Sep 25 08:17:38 PDT 2011,185,106,12.137,54494.22,524424452,-947359912,244.0,24 -Sun Sep 25 08:17:39 PDT 2011,186,108,12.6,54506.82,524423024,-947359647,244.2,24 -Sun Sep 25 08:17:40 PDT 2011,186,110,12.6,54519.42,524421673,-947359404,244.4,24 -Sun Sep 25 08:17:41 PDT 2011,186,111,12.864,54533.51,524420088,-947359116,244.4,24 -Sun Sep 25 08:17:42 PDT 2011,186,115,13.02,54546.61,524418668,-947358828,244.6,24 -Sun Sep 25 08:17:43 PDT 2011,186,116,13.554,54560.05,524417232,-947358491,244.8,24 -Sun Sep 25 08:17:44 PDT 2011,186,113,13.683,54573.8,524415775,-947358150,244.8,24 -Sun Sep 25 08:17:45 PDT 2011,186,113,13.518,54587.63,524414295,-947357848,244.8,24 -Sun Sep 25 08:17:46 PDT 2011,187,113,13.186,54600.45,524412892,-947357574,245.0,24 -Sun Sep 25 08:17:47 PDT 2011,186,0,13.186,54613.69,524411470,-947357316,245.0,24 -Sun Sep 25 08:17:48 PDT 2011,187,0,13.026,54626.74,524410090,-947357081,245.2,24 -Sun Sep 25 08:17:49 PDT 2011,186,0,12.793,54639.37,524408738,-947356850,245.2,24 -Sun Sep 25 08:17:50 PDT 2011,185,106,12.496,54651.98,524407424,-947356705,245.0,24 -Sun Sep 25 08:17:51 PDT 2011,185,105,12.282,54664.16,524406127,-947356557,244.8,24 -Sun Sep 25 08:17:52 PDT 2011,184,103,12.282,54675.36,524404937,-947356372,244.8,24 -Sun Sep 25 08:17:53 PDT 2011,184,49,11.809,54688.45,524403619,-947356245,244.6,24 -Sun Sep 25 08:17:54 PDT 2011,184,111,11.432,54699.95,524402382,-947356025,244.6,24 -Sun Sep 25 08:17:55 PDT 2011,183,111,11.555,54711.86,524401135,-947355765,244.4,24 -Sun Sep 25 08:17:56 PDT 2011,183,103,11.555,54721.74,524400091,-947355589,244.4,24 -Sun Sep 25 08:17:57 PDT 2011,183,99,11.463,54733.21,524398905,-947355325,244.4,24 -Sun Sep 25 08:17:58 PDT 2011,182,99,11.555,54744.76,524397697,-947355017,244.2,24 -Sun Sep 25 08:17:59 PDT 2011,182,101,11.555,54756.32,524396489,-947354627,244.2,24 -Sun Sep 25 08:18:00 PDT 2011,182,102,11.875,54769.3,524395093,-947354227,244.2,24 -Sun Sep 25 08:18:01 PDT 2011,182,106,12.143,54781.56,524393802,-947353906,244.2,24 -Sun Sep 25 08:18:02 PDT 2011,182,111,12.718,54794.04,524392466,-947353619,244.0,24 -Sun Sep 25 08:18:03 PDT 2011,183,114,13.267,54806.19,524391222,-947353381,244.0,24 -Sun Sep 25 08:18:04 PDT 2011,183,114,13.267,54819.46,524389814,-947353046,244.0,24 -Sun Sep 25 08:18:05 PDT 2011,183,114,13.186,54833.78,524388220,-947352772,244.0,24 -Sun Sep 25 08:18:06 PDT 2011,183,115,13.475,54847.39,524386780,-947352440,244.0,24 -Sun Sep 25 08:18:07 PDT 2011,183,115,13.56,54860.68,524385339,-947352094,244.0,24 -Sun Sep 25 08:18:08 PDT 2011,184,115,13.56,54873.21,524384011,-947351775,243.8,24 -Sun Sep 25 08:18:09 PDT 2011,184,0,13.395,54886.6,524382600,-947351425,243.8,24 -Sun Sep 25 08:18:10 PDT 2011,184,0,13.27,54901.15,524381037,-947351087,243.8,24 -Sun Sep 25 08:18:11 PDT 2011,184,0,13.27,54913.14,524379769,-947350832,243.8,24 -Sun Sep 25 08:18:12 PDT 2011,184,0,12.989,54927.15,524378243,-947350545,243.8,24 -Sun Sep 25 08:18:13 PDT 2011,183,0,12.833,54940.24,524376870,-947350274,243.8,24 -Sun Sep 25 08:18:14 PDT 2011,183,124,12.681,54952.9,524375503,-947349968,243.8,24 -Sun Sep 25 08:18:15 PDT 2011,182,111,12.757,54965.88,524374123,-947349633,243.8,24 -Sun Sep 25 08:18:16 PDT 2011,182,113,13.117,54978.76,524372798,-947349318,243.8,24 -Sun Sep 25 08:18:17 PDT 2011,182,113,13.157,54991.79,524371414,-947348992,243.8,24 -Sun Sep 25 08:18:18 PDT 2011,182,113,13.198,55005.11,524370018,-947348677,243.8,24 -Sun Sep 25 08:18:19 PDT 2011,182,110,12.958,55018.15,524368611,-947348385,243.8,24 -Sun Sep 25 08:18:20 PDT 2011,181,111,12.88,55030.92,524367208,-947348105,243.8,24 -Sun Sep 25 08:18:21 PDT 2011,181,111,12.919,55043.88,524365822,-947347809,243.8,24 -Sun Sep 25 08:18:22 PDT 2011,181,112,12.919,55055.55,524364581,-947347536,243.8,24 -Sun Sep 25 08:18:23 PDT 2011,181,114,13.037,55069.83,524363055,-947347089,243.8,24 -Sun Sep 25 08:18:24 PDT 2011,180,116,13.447,55083.29,524361634,-947346739,243.8,24 -Sun Sep 25 08:18:25 PDT 2011,181,118,13.575,55096.88,524360154,-947346427,243.8,24 -Sun Sep 25 08:18:26 PDT 2011,181,119,13.883,55110.52,524358655,-947346096,243.8,24 -Sun Sep 25 08:18:27 PDT 2011,181,119,13.883,55123.3,524357299,-947345729,243.8,24 -Sun Sep 25 08:18:28 PDT 2011,181,121,14.02,55137.32,524355824,-947345409,243.8,24 -Sun Sep 25 08:18:29 PDT 2011,182,121,14.159,55152.86,524354167,-947344885,243.8,24 -Sun Sep 25 08:18:30 PDT 2011,182,121,14.254,55166.96,524352686,-947344443,243.8,24 -Sun Sep 25 08:18:31 PDT 2011,183,121,14.254,55181.2,524351198,-947344031,243.8,24 -Sun Sep 25 08:18:32 PDT 2011,183,0,14.159,55195.54,524349716,-947343636,243.4,24 -Sun Sep 25 08:18:33 PDT 2011,183,0,14.066,55209.47,524348220,-947343290,243.2,24 -Sun Sep 25 08:18:34 PDT 2011,182,0,13.974,55223.56,524346731,-947342939,243.0,24 -Sun Sep 25 08:18:35 PDT 2011,181,0,13.883,55237.19,524345235,-947342562,243.0,24 -Sun Sep 25 08:18:36 PDT 2011,181,0,13.572,55250.95,524343829,-947342219,242.8,24 -Sun Sep 25 08:18:37 PDT 2011,180,0,13.402,55264.2,524342449,-947341903,242.4,24 -Sun Sep 25 08:18:38 PDT 2011,180,105,13.486,55277.86,524341100,-947341574,242.0,24 -Sun Sep 25 08:18:39 PDT 2011,179,105,13.703,55291.47,524339731,-947341234,241.8,24 -Sun Sep 25 08:18:40 PDT 2011,179,32,13.703,55303.97,524338424,-947340837,241.4,24 -Sun Sep 25 08:18:41 PDT 2011,179,102,13.659,55318.81,524336864,-947340571,241.2,24 -Sun Sep 25 08:18:42 PDT 2011,179,102,13.748,55332.52,524335375,-947340174,241.0,24 -Sun Sep 25 08:18:43 PDT 2011,178,102,13.748,55346.45,524333914,-947339818,240.6,24 -Sun Sep 25 08:18:44 PDT 2011,178,0,13.748,55358.86,524332605,-947339510,240.2,24 -Sun Sep 25 08:18:45 PDT 2011,177,0,13.812,55374.05,524331018,-947339113,239.8,24 -Sun Sep 25 08:18:46 PDT 2011,177,0,13.812,55386.48,524329708,-947338764,239.6,24 -Sun Sep 25 08:18:47 PDT 2011,176,104,13.812,55401.52,524328123,-947338300,239.2,24 -Sun Sep 25 08:18:48 PDT 2011,175,101,14.039,55415.54,524326639,-947337847,239.0,24 -Sun Sep 25 08:18:49 PDT 2011,174,97,14.226,55430.86,524325064,-947337358,238.6,24 -Sun Sep 25 08:18:50 PDT 2011,174,97,14.132,55445.27,524323501,-947336875,238.2,24 -Sun Sep 25 08:18:51 PDT 2011,174,20,13.947,55459.05,524322004,-947336452,237.8,24 -Sun Sep 25 08:18:52 PDT 2011,174,20,13.947,55470.6,524320800,-947336136,237.4,24 -Sun Sep 25 08:18:53 PDT 2011,173,20,13.499,55486.62,524319051,-947335646,236.8,24 -Sun Sep 25 08:18:54 PDT 2011,173,21,13.207,55499.88,524317638,-947335291,236.4,24 -Sun Sep 25 08:18:55 PDT 2011,173,96,13.006,55512.7,524316251,-947334927,236.0,24 -Sun Sep 25 08:18:56 PDT 2011,173,96,13.006,55523.42,524315112,-947334637,235.6,24 -Sun Sep 25 08:18:57 PDT 2011,173,95,12.772,55538.63,524313505,-947334211,235.2,24 -Sun Sep 25 08:18:58 PDT 2011,173,102,12.696,55551.32,524312162,-947333839,234.8,24 -Sun Sep 25 08:18:59 PDT 2011,173,103,12.81,55564.01,524310820,-947333470,234.6,24 -Sun Sep 25 08:19:00 PDT 2011,174,112,12.867,55577.02,524309468,-947333123,234.2,24 -Sun Sep 25 08:19:01 PDT 2011,174,108,12.676,55589.69,524308112,-947332772,233.6,24 -Sun Sep 25 08:19:02 PDT 2011,175,108,12.565,55602.26,524306763,-947332426,233.4,24 -Sun Sep 25 08:19:03 PDT 2011,175,109,12.639,55614.83,524305407,-947332095,233.0,24 -Sun Sep 25 08:19:04 PDT 2011,176,109,12.714,55628.06,524304008,-947331770,232.6,24 -Sun Sep 25 08:19:05 PDT 2011,176,108,12.602,55640.14,524302730,-947331482,232.4,24 -Sun Sep 25 08:19:06 PDT 2011,177,108,12.602,55650.4,524301642,-947331232,232.2,24 -Sun Sep 25 08:19:07 PDT 2011,177,107,12.602,55665.33,524300069,-947330868,232.0,24 -Sun Sep 25 08:19:08 PDT 2011,178,107,12.491,55677.79,524298744,-947330537,231.8,24 -Sun Sep 25 08:19:09 PDT 2011,178,106,12.509,55689.06,524297548,-947330235,231.6,24 -Sun Sep 25 08:19:10 PDT 2011,178,99,12.364,55701.42,524296218,-947329904,231.4,24 -Sun Sep 25 08:19:11 PDT 2011,178,99,12.293,55713.7,524294934,-947329590,231.2,24 -Sun Sep 25 08:19:12 PDT 2011,178,99,12.051,55725.79,524293655,-947329271,231.0,24 -Sun Sep 25 08:19:13 PDT 2011,178,22,11.753,55737.61,524292393,-947328960,231.0,24 -Sun Sep 25 08:19:14 PDT 2011,178,92,11.562,55749.15,524291154,-947328646,230.8,24 -Sun Sep 25 08:19:15 PDT 2011,178,98,11.562,55760.63,524289936,-947328350,230.8,24 -Sun Sep 25 08:19:16 PDT 2011,178,101,11.562,55771.24,524288810,-947328077,230.6,24 -Sun Sep 25 08:19:17 PDT 2011,178,104,11.657,55782.9,524287585,-947327815,230.6,24 -Sun Sep 25 08:19:18 PDT 2011,178,104,12.055,55796.1,524286178,-947327551,230.8,24 -Sun Sep 25 08:19:19 PDT 2011,178,104,12.09,55808.09,524284873,-947327258,230.8,24 -Sun Sep 25 08:19:20 PDT 2011,179,103,12.021,55820.13,524283593,-947326934,231.0,24 -Sun Sep 25 08:19:21 PDT 2011,179,103,12.021,55831.08,524282425,-947326638,231.0,24 -Sun Sep 25 08:19:22 PDT 2011,179,103,11.999,55843.08,524281194,-947326147,231.2,24 -Sun Sep 25 08:19:23 PDT 2011,179,34,11.887,55854.97,524279938,-947325795,231.2,24 -Sun Sep 25 08:19:24 PDT 2011,179,100,11.627,55866.6,524278720,-947325417,231.4,24 -Sun Sep 25 08:19:25 PDT 2011,180,101,11.564,55878.16,524277487,-947325077,231.4,24 -Sun Sep 25 08:19:26 PDT 2011,180,103,11.92,55891.2,524276103,-947324674,231.4,24 -Sun Sep 25 08:19:27 PDT 2011,180,103,11.92,55902.0,524274943,-947324343,231.4,24 -Sun Sep 25 08:19:28 PDT 2011,180,38,12.021,55914.02,524273797,-947323928,231.6,24 -Sun Sep 25 08:19:29 PDT 2011,180,100,11.575,55926.57,524272419,-947323561,231.6,24 -Sun Sep 25 08:19:30 PDT 2011,180,110,11.544,55938.1,524271204,-947323244,231.6,24 -Sun Sep 25 08:19:31 PDT 2011,181,110,11.544,55948.69,524270098,-947322967,231.6,24 -Sun Sep 25 08:19:32 PDT 2011,181,105,9.952,55959.53,524268854,-947322790,231.6,24 -Sun Sep 25 08:19:33 PDT 2011,181,108,9.906,55969.38,524267782,-947322619,231.8,24 -Sun Sep 25 08:19:34 PDT 2011,181,109,9.906,55978.45,524266816,-947322429,231.8,24 -Sun Sep 25 08:19:35 PDT 2011,180,111,10.118,55989.6,524265695,-947322215,231.8,24 -Sun Sep 25 08:19:36 PDT 2011,180,111,10.191,55999.64,524264628,-947321990,231.8,24 -Sun Sep 25 08:19:37 PDT 2011,180,100,10.24,56009.99,524263550,-947321762,231.8,24 -Sun Sep 25 08:19:38 PDT 2011,180,102,10.304,56020.22,524262449,-947321546,231.8,24 -Sun Sep 25 08:19:39 PDT 2011,179,103,10.455,56030.72,524261346,-947321331,231.8,24 -Sun Sep 25 08:19:40 PDT 2011,179,105,10.718,56041.44,524260230,-947321086,231.8,24 -Sun Sep 25 08:19:41 PDT 2011,179,106,10.772,56052.18,524259082,-947320825,231.8,24 -Sun Sep 25 08:19:42 PDT 2011,180,107,10.772,56061.96,524258029,-947320586,231.8,24 -Sun Sep 25 08:19:43 PDT 2011,180,108,10.938,56072.9,524256880,-947320432,231.8,24 -Sun Sep 25 08:19:44 PDT 2011,180,109,11.109,56085.02,524255587,-947320287,231.8,24 -Sun Sep 25 08:19:45 PDT 2011,180,107,11.167,56096.19,524254394,-947320127,232.0,24 -Sun Sep 25 08:19:46 PDT 2011,181,100,11.406,56107.6,524253183,-947319941,232.0,24 -Sun Sep 25 08:19:47 PDT 2011,182,100,11.592,56119.18,524251949,-947319707,232.0,24 -Sun Sep 25 08:19:48 PDT 2011,182,30,11.592,56129.72,524250820,-947319485,232.0,24 -Sun Sep 25 08:19:49 PDT 2011,182,99,11.529,56141.25,524249608,-947319158,232.0,24 -Sun Sep 25 08:19:50 PDT 2011,181,100,11.592,56153.89,524248231,-947318845,232.0,24 -Sun Sep 25 08:19:51 PDT 2011,182,101,11.655,56165.58,524246973,-947318553,232.0,24 -Sun Sep 25 08:19:52 PDT 2011,181,100,11.719,56177.32,524245717,-947318262,232.0,24 -Sun Sep 25 08:19:53 PDT 2011,181,100,11.529,56188.83,524244462,-947317966,232.0,24 -Sun Sep 25 08:19:54 PDT 2011,181,100,11.226,56200.1,524243223,-947317658,232.0,24 -Sun Sep 25 08:19:55 PDT 2011,181,95,10.938,56211.02,524242026,-947317372,232.0,24 -Sun Sep 25 08:19:56 PDT 2011,181,108,10.994,56224.86,524240548,-947317050,232.0,24 -Sun Sep 25 08:19:57 PDT 2011,181,109,11.167,56233.22,524239676,-947316865,232.0,24 -Sun Sep 25 08:19:58 PDT 2011,181,109,11.188,56244.43,524238490,-947316614,232.0,24 -Sun Sep 25 08:19:59 PDT 2011,181,109,11.13,56255.42,524237318,-947316363,232.0,24 -Sun Sep 25 08:20:00 PDT 2011,181,109,11.13,56265.52,524236237,-947316127,232.0,24 -Sun Sep 25 08:20:01 PDT 2011,181,111,11.13,56277.65,524234923,-947315794,232.0,24 -Sun Sep 25 08:20:02 PDT 2011,181,111,11.551,56289.22,524233707,-947315525,232.0,24 -Sun Sep 25 08:20:03 PDT 2011,181,100,11.489,56300.7,524232474,-947315272,232.0,24 -Sun Sep 25 08:20:04 PDT 2011,182,100,11.489,56311.15,524231365,-947315049,232.0,24 -Sun Sep 25 08:20:05 PDT 2011,182,100,11.13,56323.26,524230054,-947314769,232.0,24 -Sun Sep 25 08:20:06 PDT 2011,181,0,10.959,56334.2,524228873,-947314515,232.0,24 -Sun Sep 25 08:20:07 PDT 2011,181,97,11.015,56345.22,524227704,-947314252,232.0,24 -Sun Sep 25 08:20:08 PDT 2011,181,99,11.439,56356.62,524226518,-947313996,232.0,24 -Sun Sep 25 08:20:09 PDT 2011,181,99,11.439,56367.11,524225397,-947313785,232.0,24 -Sun Sep 25 08:20:10 PDT 2011,181,100,11.562,56378.67,524224190,-947313682,232.0,24 -Sun Sep 25 08:20:11 PDT 2011,181,100,11.625,56391.24,524222791,-947313532,232.0,24 -Sun Sep 25 08:20:12 PDT 2011,181,111,11.657,56402.95,524221524,-947313460,232.0,24 -Sun Sep 25 08:20:13 PDT 2011,180,117,11.884,56414.92,524220234,-947313438,232.0,24 -Sun Sep 25 08:20:14 PDT 2011,180,104,11.983,56426.84,524218944,-947313508,232.0,24 -Sun Sep 25 08:20:15 PDT 2011,181,105,12.154,56439.07,524217644,-947313673,232.0,24 -Sun Sep 25 08:20:16 PDT 2011,181,106,12.258,56451.35,524216329,-947313919,232.0,24 -Sun Sep 25 08:20:17 PDT 2011,181,106,12.436,56463.63,524214993,-947314201,232.0,24 -Sun Sep 25 08:20:18 PDT 2011,181,107,12.473,56476.24,524213655,-947314489,232.0,24 -Sun Sep 25 08:20:19 PDT 2011,181,107,12.509,56488.59,524212273,-947314767,232.0,24 -Sun Sep 25 08:20:20 PDT 2011,181,107,12.293,56500.98,524210964,-947315011,232.0,24 -Sun Sep 25 08:20:21 PDT 2011,181,0,12.017,56512.87,524209646,-947315240,232.0,24 -Sun Sep 25 08:20:22 PDT 2011,181,0,11.721,56524.73,524208391,-947315402,232.0,24 -Sun Sep 25 08:20:23 PDT 2011,180,0,11.439,56536.14,524207154,-947315477,232.0,24 -Sun Sep 25 08:20:24 PDT 2011,179,0,11.141,56547.33,524205956,-947315452,232.0,24 -Sun Sep 25 08:20:25 PDT 2011,178,0,10.839,56558.1,524204798,-947315341,232.0,24 -Sun Sep 25 08:20:26 PDT 2011,177,0,10.839,56568.0,524203745,-947315228,232.0,24 -Sun Sep 25 08:20:27 PDT 2011,177,0,10.572,56578.57,524202696,-947315001,232.0,24 -Sun Sep 25 08:20:28 PDT 2011,176,0,10.076,56588.65,524201675,-947314747,232.0,24 -Sun Sep 25 08:20:29 PDT 2011,175,0,9.624,56598.27,524200702,-947314447,232.0,24 -Sun Sep 25 08:20:30 PDT 2011,175,0,9.251,56608.24,524199673,-947314119,231.8,24 -Sun Sep 25 08:20:31 PDT 2011,174,0,8.832,56617.99,524198686,-947313886,231.6,24 -Sun Sep 25 08:20:32 PDT 2011,173,0,8.689,56625.82,524197847,-947313860,231.4,24 -Sun Sep 25 08:20:33 PDT 2011,172,76,8.517,56634.43,524196991,-947314138,231.2,24 -Sun Sep 25 08:20:34 PDT 2011,172,79,8.517,56642.15,524196267,-947314749,231.2,24 -Sun Sep 25 08:20:35 PDT 2011,172,85,9.624,56652.54,524195517,-947315923,231.0,24 -Sun Sep 25 08:20:36 PDT 2011,173,85,10.029,56662.68,524194904,-947317302,231.0,24 -Sun Sep 25 08:20:37 PDT 2011,173,35,10.318,56672.99,524194323,-947318764,230.8,24 -Sun Sep 25 08:20:38 PDT 2011,174,98,10.076,56682.97,524193744,-947320192,230.8,24 -Sun Sep 25 08:20:39 PDT 2011,175,99,10.269,56693.29,524193163,-947321535,230.6,24 -Sun Sep 25 08:20:40 PDT 2011,175,102,10.343,56703.58,524192549,-947322838,230.6,24 -Sun Sep 25 08:20:41 PDT 2011,175,105,10.704,56714.39,524191919,-947324119,230.6,24 -Sun Sep 25 08:20:42 PDT 2011,175,100,10.894,56725.29,524191281,-947325430,230.4,24 -Sun Sep 25 08:20:43 PDT 2011,175,95,10.894,56735.2,524190680,-947326646,230.4,24 -Sun Sep 25 08:20:44 PDT 2011,175,95,11.063,56746.26,524189998,-947327997,230.2,24 -Sun Sep 25 08:20:45 PDT 2011,175,95,11.178,56758.52,524189198,-947329541,229.8,24 -Sun Sep 25 08:20:46 PDT 2011,174,0,11.178,56768.63,524188563,-947330754,229.6,24 -Sun Sep 25 08:20:47 PDT 2011,173,0,10.586,56780.15,524187805,-947332168,229.4,24 -Sun Sep 25 08:20:48 PDT 2011,172,0,10.333,56790.47,524187156,-947333388,229.4,24 -Sun Sep 25 08:20:49 PDT 2011,171,0,10.186,56800.65,524186524,-947334581,229.2,24 -Sun Sep 25 08:20:50 PDT 2011,170,0,10.139,56810.78,524185909,-947335729,229.0,24 -Sun Sep 25 08:20:51 PDT 2011,170,0,10.139,56820.04,524185358,-947336744,228.8,24 -Sun Sep 25 08:20:52 PDT 2011,169,0,7.768,56828.58,524184815,-947337720,228.8,24 -Sun Sep 25 08:20:53 PDT 2011,168,0,6.665,56835.37,524184378,-947338492,228.6,24 -Sun Sep 25 08:20:54 PDT 2011,167,0,5.933,56841.12,524184041,-947339094,228.6,24 -Sun Sep 25 08:20:55 PDT 2011,166,0,5.154,56846.29,524183767,-947339614,228.4,24 -Sun Sep 25 08:20:56 PDT 2011,165,0,4.09,56850.34,524183546,-947340014,228.4,24 -Sun Sep 25 08:20:57 PDT 2011,163,0,2.946,56853.3,524183376,-947340307,228.4,24 -Sun Sep 25 08:20:58 PDT 2011,162,0,2.946,56855.99,524183247,-947340517,228.2,24 -Sun Sep 25 08:20:59 PDT 2011,162,0,2.07,56858.24,524183150,-947340654,228.2,24 -Sun Sep 25 08:21:00 PDT 2011,162,0,1.819,56860.06,524183057,-947340752,228.2,24 -Sun Sep 25 08:21:01 PDT 2011,161,0,1.819,56861.89,524182974,-947340842,228.2,24 -Sun Sep 25 08:21:02 PDT 2011,162,0,1.444,56863.33,524182913,-947340940,228.0,24 -Sun Sep 25 08:21:03 PDT 2011,162,0,1.444,56864.77,524182882,-947340994,228.0,24 -Sun Sep 25 08:21:11 PDT 2011,163,0,1.966,56864.77,524182777,-947341235,227.8,24 -Sun Sep 25 08:21:12 PDT 2011,163,0,2.086,56866.93,524182587,-947341568,227.8,24 -Sun Sep 25 08:21:13 PDT 2011,164,34,2.086,56868.97,524182305,-947341909,227.8,24 -Sun Sep 25 08:21:14 PDT 2011,164,53,4.336,56873.79,524181815,-947342268,227.8,24 -Sun Sep 25 08:21:15 PDT 2011,165,63,5.293,56877.98,524181352,-947342453,227.6,24 -Sun Sep 25 08:21:16 PDT 2011,166,70,6.17,56884.1,524180658,-947342473,227.4,24 -Sun Sep 25 08:21:17 PDT 2011,166,77,6.921,56890.95,524179865,-947342300,227.2,24 -Sun Sep 25 08:21:18 PDT 2011,167,88,7.768,56898.79,524179024,-947341937,227.0,24 -Sun Sep 25 08:21:19 PDT 2011,168,88,8.536,56907.28,524178132,-947341430,227.0,24 -Sun Sep 25 08:21:20 PDT 2011,168,96,8.961,56916.36,524177232,-947340872,226.8,24 -Sun Sep 25 08:21:21 PDT 2011,169,99,9.036,56925.31,524176281,-947340375,226.6,24 -Sun Sep 25 08:21:22 PDT 2011,170,104,9.513,56934.79,524175270,-947339939,226.6,24 -Sun Sep 25 08:21:23 PDT 2011,170,101,10.091,56944.81,524174187,-947339608,226.6,24 -Sun Sep 25 08:21:24 PDT 2011,171,101,10.534,56955.49,524173042,-947339329,226.2,24 -Sun Sep 25 08:21:25 PDT 2011,171,101,10.962,56966.48,524171850,-947339060,226.0,24 -Sun Sep 25 08:21:26 PDT 2011,171,101,10.907,56977.26,524170666,-947338781,225.8,24 -Sun Sep 25 08:21:27 PDT 2011,170,0,10.638,56988.01,524169505,-947338497,225.4,24 -Sun Sep 25 08:21:28 PDT 2011,170,97,10.638,56997.7,524168498,-947338226,225.4,24 -Sun Sep 25 08:21:29 PDT 2011,169,100,10.382,57008.92,524167284,-947337900,225.0,24 -Sun Sep 25 08:21:30 PDT 2011,170,102,10.458,57019.34,524166188,-947337616,224.6,24 -Sun Sep 25 08:21:31 PDT 2011,170,104,10.612,57030.19,524165085,-947337337,224.2,24 -Sun Sep 25 08:21:32 PDT 2011,170,104,10.798,57040.83,524163967,-947337015,224.0,24 -Sun Sep 25 08:21:33 PDT 2011,170,106,10.952,57051.81,524162831,-947336659,223.8,24 -Sun Sep 25 08:21:34 PDT 2011,171,101,11.008,57062.89,524161677,-947336323,223.4,24 -Sun Sep 25 08:21:35 PDT 2011,171,101,11.179,57073.98,524160494,-947335994,223.2,24 -Sun Sep 25 08:21:36 PDT 2011,170,30,11.179,57084.2,524159418,-947335702,223.0,24 -Sun Sep 25 08:21:37 PDT 2011,170,30,11.789,57097.05,524158051,-947335362,223.0,24 -Sun Sep 25 08:21:38 PDT 2011,169,30,12.189,57109.2,524156736,-947334974,222.8,24 -Sun Sep 25 08:21:39 PDT 2011,168,0,12.471,57121.6,524155431,-947334617,222.6,24 -Sun Sep 25 08:21:40 PDT 2011,168,0,12.507,57134.1,524154092,-947334273,222.4,24 -Sun Sep 25 08:21:41 PDT 2011,167,102,12.507,57147.78,524152634,-947333902,222.0,24 -Sun Sep 25 08:21:42 PDT 2011,167,102,12.471,57159.04,524151403,-947333631,221.8,24 -Sun Sep 25 08:21:43 PDT 2011,166,98,12.305,57171.35,524150100,-947333373,221.4,24 -Sun Sep 25 08:21:44 PDT 2011,166,100,12.305,57183.74,524148804,-947333111,221.2,24 -Sun Sep 25 08:21:45 PDT 2011,167,103,12.742,57196.47,524147494,-947332896,221.0,24 -Sun Sep 25 08:21:46 PDT 2011,167,105,13.13,57209.72,524146150,-947332644,220.8,24 -Sun Sep 25 08:21:47 PDT 2011,167,105,13.459,57223.3,524144746,-947332320,220.8,24 -Sun Sep 25 08:21:48 PDT 2011,167,105,13.629,57236.81,524143322,-947331984,220.6,24 -Sun Sep 25 08:21:49 PDT 2011,167,0,13.716,57250.54,524141870,-947331570,220.2,24 -Sun Sep 25 08:21:50 PDT 2011,166,104,13.716,57264.28,524140415,-947331152,220.0,24 -Sun Sep 25 08:21:51 PDT 2011,166,101,14.127,57278.38,524138944,-947330746,219.6,24 -Sun Sep 25 08:21:52 PDT 2011,166,100,14.558,57292.94,524137431,-947330345,219.4,24 -Sun Sep 25 08:21:53 PDT 2011,166,100,14.912,57307.92,524135830,-947329961,219.0,24 -Sun Sep 25 08:21:54 PDT 2011,167,100,14.963,57322.84,524134288,-947329489,218.6,24 -Sun Sep 25 08:21:55 PDT 2011,166,0,15.122,57337.98,524132695,-947329027,218.2,24 -Sun Sep 25 08:21:56 PDT 2011,166,0,15.229,57353.16,524131069,-947328595,217.8,24 -Sun Sep 25 08:21:57 PDT 2011,166,0,15.229,57368.39,524129444,-947328195,217.4,24 -Sun Sep 25 08:21:58 PDT 2011,165,0,15.229,57382.2,524127989,-947327832,216.8,24 -Sun Sep 25 08:21:59 PDT 2011,163,0,15.33,57398.79,524126191,-947327512,216.4,24 -Sun Sep 25 08:22:00 PDT 2011,162,0,15.061,57416.22,524124395,-947327001,216.0,24 -Sun Sep 25 08:22:01 PDT 2011,161,0,14.956,57428.84,524123009,-947326605,215.4,24 -Sun Sep 25 08:22:02 PDT 2011,159,0,14.879,57443.64,524121432,-947326147,214.8,24 -Sun Sep 25 08:22:03 PDT 2011,158,102,14.853,57458.67,524119813,-947325779,214.4,24 -Sun Sep 25 08:22:04 PDT 2011,157,102,15.009,57473.83,524118171,-947325328,214.0,24 -Sun Sep 25 08:22:05 PDT 2011,157,102,15.114,57488.58,524116604,-947324893,213.2,24 -Sun Sep 25 08:22:06 PDT 2011,156,102,14.992,57503.58,524115020,-947324448,212.6,24 -Sun Sep 25 08:22:07 PDT 2011,156,0,14.94,57518.62,524113444,-947324005,212.2,24 -Sun Sep 25 08:22:08 PDT 2011,155,0,14.837,57533.23,524111826,-947323587,211.6,24 -Sun Sep 25 08:22:09 PDT 2011,155,93,14.837,57549.48,524110097,-947323161,211.2,24 -Sun Sep 25 08:22:10 PDT 2011,155,93,14.888,57563.16,524108657,-947322731,210.8,24 -Sun Sep 25 08:22:11 PDT 2011,155,93,14.786,57577.92,524107102,-947322308,210.6,24 -Sun Sep 25 08:22:12 PDT 2011,155,0,14.536,57592.51,524105642,-947321952,210.2,24 -Sun Sep 25 08:22:13 PDT 2011,155,90,14.342,57606.81,524104164,-947321555,210.0,24 -Sun Sep 25 08:22:14 PDT 2011,155,90,14.404,57621.19,524102637,-947321151,209.6,24 -Sun Sep 25 08:22:15 PDT 2011,156,100,14.648,57635.78,524101087,-947320806,209.4,24 -Sun Sep 25 08:22:16 PDT 2011,157,99,14.648,57650.54,524099588,-947320433,209.2,24 -Sun Sep 25 08:22:17 PDT 2011,158,99,14.5,57664.97,524098038,-947320060,209.0,24 -Sun Sep 25 08:22:18 PDT 2011,158,99,14.308,57679.45,524096504,-947319695,209.0,24 -Sun Sep 25 08:22:19 PDT 2011,158,87,14.121,57693.67,524095040,-947319443,208.8,24 -Sun Sep 25 08:22:20 PDT 2011,158,86,14.03,57707.45,524093643,-947319216,208.6,24 -Sun Sep 25 08:22:21 PDT 2011,158,86,13.984,57721.61,524092259,-947318970,208.6,24 -Sun Sep 25 08:22:22 PDT 2011,158,86,13.984,57734.31,524090942,-947318607,208.4,24 -Sun Sep 25 08:22:23 PDT 2011,158,0,13.205,57750.34,524089312,-947318259,208.4,24 -Sun Sep 25 08:22:24 PDT 2011,157,90,13.164,57761.83,524088065,-947317890,208.2,24 -Sun Sep 25 08:22:25 PDT 2011,157,90,13.205,57774.95,524086653,-947317512,208.0,24 -Sun Sep 25 08:22:26 PDT 2011,157,90,13.164,57788.23,524085248,-947317168,207.6,24 -Sun Sep 25 08:22:27 PDT 2011,157,90,12.888,57801.14,524083865,-947316847,207.4,24 -Sun Sep 25 08:22:28 PDT 2011,156,0,12.812,57814.98,524082403,-947316516,207.2,24 -Sun Sep 25 08:22:29 PDT 2011,155,94,12.774,57827.92,524081039,-947316211,207.0,24 -Sun Sep 25 08:22:30 PDT 2011,155,94,12.824,57839.45,524079819,-947315931,206.8,24 -Sun Sep 25 08:22:31 PDT 2011,155,94,12.824,57852.35,524078486,-947315618,206.8,24 -Sun Sep 25 08:22:32 PDT 2011,155,94,12.71,57865.3,524077100,-947315275,206.6,24 -Sun Sep 25 08:22:33 PDT 2011,155,0,12.562,57877.59,524075786,-947314933,206.4,24 -Sun Sep 25 08:22:34 PDT 2011,154,0,12.562,57889.07,524074579,-947314629,206.4,24 -Sun Sep 25 08:22:35 PDT 2011,154,90,12.172,57902.46,524073160,-947314210,206.2,24 -Sun Sep 25 08:22:36 PDT 2011,154,91,12.206,57914.54,524071869,-947313860,206.2,24 -Sun Sep 25 08:22:37 PDT 2011,154,93,12.489,57926.98,524070569,-947313506,206.0,24 -Sun Sep 25 08:22:38 PDT 2011,155,103,12.599,57939.58,524069239,-947313133,205.8,24 -Sun Sep 25 08:22:39 PDT 2011,156,102,12.754,57952.33,524067885,-947312747,205.6,24 -Sun Sep 25 08:22:40 PDT 2011,157,102,12.83,57965.2,524066525,-947312356,205.4,24 -Sun Sep 25 08:22:41 PDT 2011,158,102,12.679,57977.8,524065164,-947311988,205.2,24 -Sun Sep 25 08:22:42 PDT 2011,159,0,12.459,57990.4,524063828,-947311662,205.0,24 -Sun Sep 25 08:22:43 PDT 2011,159,0,12.317,58002.59,524062504,-947311349,204.8,24 -Sun Sep 25 08:22:44 PDT 2011,158,0,12.247,58014.95,524061210,-947311042,204.6,24 -Sun Sep 25 08:22:45 PDT 2011,158,98,12.282,58027.15,524059913,-947310725,204.4,24 -Sun Sep 25 08:22:46 PDT 2011,158,99,12.317,58039.47,524058621,-947310388,204.4,24 -Sun Sep 25 08:22:47 PDT 2011,158,99,12.459,58052.03,524057323,-947310040,204.2,24 -Sun Sep 25 08:22:48 PDT 2011,158,100,12.46,58064.29,524056015,-947309690,204.2,24 -Sun Sep 25 08:22:49 PDT 2011,159,102,12.569,58076.96,524054707,-947309367,204.0,24 -Sun Sep 25 08:22:50 PDT 2011,160,103,12.793,58089.76,524053384,-947309065,204.0,24 -Sun Sep 25 08:22:51 PDT 2011,160,105,13.105,58102.84,524052019,-947308732,203.8,24 -Sun Sep 25 08:22:52 PDT 2011,161,107,13.35,58116.19,524050618,-947308372,203.4,24 -Sun Sep 25 08:22:53 PDT 2011,161,101,13.433,58129.53,524049192,-947307996,203.2,24 -Sun Sep 25 08:22:54 PDT 2011,162,101,13.35,58142.94,524047768,-947307608,203.0,24 -Sun Sep 25 08:22:55 PDT 2011,162,101,13.267,58156.18,524046348,-947307223,202.8,24 -Sun Sep 25 08:22:56 PDT 2011,161,0,13.105,58169.28,524044949,-947306865,202.8,24 -Sun Sep 25 08:22:57 PDT 2011,160,0,13.121,58182.34,524043535,-947306510,202.6,24 -Sun Sep 25 08:22:58 PDT 2011,159,0,13.068,58195.58,524042170,-947306173,202.4,24 -Sun Sep 25 08:22:59 PDT 2011,158,0,13.068,58208.52,524040797,-947305839,202.4,24 -Sun Sep 25 08:23:00 PDT 2011,158,0,13.189,58221.85,524039418,-947305493,202.2,24 -Sun Sep 25 08:23:01 PDT 2011,158,0,13.229,58234.89,524038033,-947305137,202.2,24 -Sun Sep 25 08:23:02 PDT 2011,157,0,13.229,58248.1,524036621,-947304768,202.0,24 -Sun Sep 25 08:23:03 PDT 2011,156,0,13.312,58262.72,524035105,-947304420,201.8,24 -Sun Sep 25 08:23:04 PDT 2011,156,0,13.437,58276.83,524033640,-947304071,201.4,24 -Sun Sep 25 08:23:05 PDT 2011,155,0,13.521,58288.38,524032393,-947303794,201.2,24 -Sun Sep 25 08:23:06 PDT 2011,154,0,13.551,58301.92,524030923,-947303446,201.0,24 -Sun Sep 25 08:23:07 PDT 2011,153,0,13.509,58315.75,524029458,-947303081,200.6,24 -Sun Sep 25 08:23:08 PDT 2011,152,0,13.551,58329.03,524028057,-947302708,200.2,24 -Sun Sep 25 08:23:09 PDT 2011,150,0,13.551,58342.66,524026625,-947302308,200.0,24 -Sun Sep 25 08:23:10 PDT 2011,149,101,13.725,58356.4,524025181,-947301930,199.6,24 -Sun Sep 25 08:23:11 PDT 2011,148,101,13.858,58370.19,524023714,-947301563,199.4,24 -Sun Sep 25 08:23:12 PDT 2011,148,28,13.814,58384.07,524022257,-947301249,199.0,24 -Sun Sep 25 08:23:13 PDT 2011,148,94,13.725,58397.81,524020817,-947300945,198.6,24 -Sun Sep 25 08:23:14 PDT 2011,149,94,13.758,58411.52,524019373,-947300655,198.2,24 -Sun Sep 25 08:23:15 PDT 2011,150,94,13.584,58425.0,524017957,-947300354,197.8,24 -Sun Sep 25 08:23:16 PDT 2011,150,0,13.331,58438.43,524016536,-947300031,197.6,24 -Sun Sep 25 08:23:17 PDT 2011,150,0,13.289,58451.61,524015101,-947299677,197.2,24 -Sun Sep 25 08:23:18 PDT 2011,151,0,13.194,58466.03,524013616,-947299330,197.0,24 -Sun Sep 25 08:23:19 PDT 2011,150,94,12.89,58479.0,524012238,-947299016,196.8,24 -Sun Sep 25 08:23:20 PDT 2011,150,93,12.7,58491.85,524010891,-947298741,196.6,24 -Sun Sep 25 08:23:21 PDT 2011,150,98,12.514,58504.42,524009583,-947298466,196.4,24 -Sun Sep 25 08:23:22 PDT 2011,151,99,12.514,58514.54,524008546,-947298232,196.2,24 -Sun Sep 25 08:23:23 PDT 2011,152,105,12.276,58527.71,524007161,-947297844,196.2,24 -Sun Sep 25 08:23:24 PDT 2011,154,107,12.276,58540.22,524005884,-947297448,196.0,24 -Sun Sep 25 08:23:25 PDT 2011,155,108,12.563,58552.78,524004579,-947297019,195.8,24 -Sun Sep 25 08:23:26 PDT 2011,157,97,12.674,58565.51,524003249,-947296615,195.8,24 -Sun Sep 25 08:23:27 PDT 2011,158,97,12.526,58577.92,524001914,-947296276,195.6,24 -Sun Sep 25 08:23:28 PDT 2011,160,97,12.137,58590.19,524000608,-947295950,195.6,24 -Sun Sep 25 08:23:29 PDT 2011,160,0,11.739,58601.77,523999317,-947295601,195.6,24 -Sun Sep 25 08:23:30 PDT 2011,161,110,11.427,58613.11,523998098,-947295245,195.4,24 -Sun Sep 25 08:23:31 PDT 2011,161,108,11.427,58623.66,523997001,-947294926,195.4,24 -Sun Sep 25 08:23:32 PDT 2011,162,106,11.084,58635.71,523995746,-947294586,195.4,24 -Sun Sep 25 08:23:33 PDT 2011,163,117,10.86,58646.52,523994600,-947294291,195.2,24 -Sun Sep 25 08:23:34 PDT 2011,164,113,10.86,58656.48,523993555,-947294007,195.2,24 -Sun Sep 25 08:23:35 PDT 2011,165,110,10.338,58667.58,523992386,-947293709,195.2,24 -Sun Sep 25 08:23:36 PDT 2011,165,109,10.119,58677.82,523991326,-947293385,195.4,24 -Sun Sep 25 08:23:37 PDT 2011,167,108,9.955,58687.92,523990278,-947293067,195.6,24 -Sun Sep 25 08:23:38 PDT 2011,168,106,9.909,58697.58,523989309,-947292771,195.8,24 -Sun Sep 25 08:23:39 PDT 2011,169,103,9.787,58707.36,523988332,-947292504,195.8,24 -Sun Sep 25 08:23:40 PDT 2011,170,111,9.39,58716.85,523987352,-947292226,196.0,24 -Sun Sep 25 08:23:42 PDT 2011,172,113,9.268,58732.11,523985744,-947291802,196.2,24 -Sun Sep 25 08:23:42 PDT 2011,172,113,9.268,58734.6,523985478,-947291732,196.4,24 -Sun Sep 25 08:23:43 PDT 2011,173,113,9.576,58745.12,523984365,-947291458,196.8,24 -Sun Sep 25 08:23:44 PDT 2011,174,113,9.576,58753.75,523983490,-947291242,197.0,24 -Sun Sep 25 08:23:45 PDT 2011,175,114,9.493,58764.13,523982388,-947290960,197.6,24 -Sun Sep 25 08:23:46 PDT 2011,176,115,9.619,58773.67,523981388,-947290735,198.0,24 -Sun Sep 25 08:23:47 PDT 2011,177,115,9.748,58783.36,523980375,-947290543,198.4,24 -Sun Sep 25 08:23:48 PDT 2011,177,114,9.748,58792.34,523979438,-947290341,198.6,24 -Sun Sep 25 08:23:49 PDT 2011,178,113,9.576,58802.68,523978354,-947290185,199.2,24 -Sun Sep 25 08:23:50 PDT 2011,179,101,9.493,58812.24,523977371,-947289981,199.6,24 -Sun Sep 25 08:23:51 PDT 2011,179,102,9.493,58821.67,523976375,-947289773,200.0,24 -Sun Sep 25 08:23:52 PDT 2011,180,103,9.555,58831.19,523975413,-947289539,200.4,24 -Sun Sep 25 08:23:53 PDT 2011,180,107,9.792,58840.95,523974428,-947289252,200.8,24 -Sun Sep 25 08:23:54 PDT 2011,181,111,9.927,58850.87,523973402,-947288950,201.2,24 -Sun Sep 25 08:23:55 PDT 2011,181,104,10.162,58861.04,523972327,-947288670,201.4,24 -Sun Sep 25 08:23:56 PDT 2011,181,104,10.667,58871.7,523971208,-947288415,201.6,24 -Sun Sep 25 08:23:57 PDT 2011,181,104,10.94,58882.65,523970015,-947288124,201.8,24 -Sun Sep 25 08:23:58 PDT 2011,181,0,10.94,58892.81,523968893,-947287883,202.0,24 -Sun Sep 25 08:23:59 PDT 2011,181,0,12.08,58905.85,523967466,-947287516,202.2,24 -Sun Sep 25 08:24:00 PDT 2011,181,122,12.539,58918.54,523966127,-947287183,202.4,24 -Sun Sep 25 08:24:01 PDT 2011,180,104,13.277,58931.78,523964700,-947286830,202.6,24 -Sun Sep 25 08:24:02 PDT 2011,180,94,13.789,58945.49,523963242,-947286474,202.4,24 -Sun Sep 25 08:24:03 PDT 2011,180,94,14.199,58959.77,523961661,-947286073,202.2,24 -Sun Sep 25 08:24:04 PDT 2011,179,94,14.199,58972.68,523960269,-947285739,202.0,24 -Sun Sep 25 08:24:05 PDT 2011,178,0,14.999,58992.47,523958117,-947285229,201.6,24 -Sun Sep 25 08:24:06 PDT 2011,177,0,15.213,59004.36,523956793,-947284932,201.4,24 -Sun Sep 25 08:24:07 PDT 2011,176,0,14.999,59019.2,523955219,-947284538,200.8,24 -Sun Sep 25 08:24:08 PDT 2011,175,0,14.946,59034.15,523953616,-947284059,200.4,24 -Sun Sep 25 08:24:09 PDT 2011,175,0,15.159,59050.48,523951851,-947283526,199.8,24 -Sun Sep 25 08:24:10 PDT 2011,174,0,15.467,59069.08,523949902,-947282994,199.2,24 -Sun Sep 25 08:24:11 PDT 2011,173,0,15.301,59080.1,523948726,-947282704,198.6,24 -Sun Sep 25 08:24:12 PDT 2011,172,0,14.98,59096.34,523946983,-947282278,198.2,24 -Sun Sep 25 08:24:13 PDT 2011,172,0,15.033,59111.42,523945395,-947281872,197.4,24 -Sun Sep 25 08:24:14 PDT 2011,171,103,15.247,59125.14,523943913,-947281500,196.8,24 -Sun Sep 25 08:24:15 PDT 2011,170,103,15.411,59140.74,523942282,-947281056,196.2,24 -Sun Sep 25 08:24:16 PDT 2011,169,103,15.411,59156.01,523940656,-947280614,195.8,24 -Sun Sep 25 08:24:17 PDT 2011,169,0,14.773,59170.93,523939061,-947280205,195.2,24 -Sun Sep 25 08:24:18 PDT 2011,168,0,15.085,59185.86,523937431,-947279792,194.6,24 -Sun Sep 25 08:24:19 PDT 2011,167,0,15.085,59200.87,523935833,-947279385,194.0,24 -Sun Sep 25 08:24:20 PDT 2011,166,0,15.033,59215.88,523934247,-947278986,193.6,24 -Sun Sep 25 08:24:21 PDT 2011,165,0,15.085,59231.1,523932691,-947278581,192.8,24 -Sun Sep 25 08:24:22 PDT 2011,165,0,14.98,59246.1,523931080,-947278164,192.2,24 -Sun Sep 25 08:24:23 PDT 2011,164,20,14.773,59260.79,523929521,-947277779,191.8,24 -Sun Sep 25 08:24:24 PDT 2011,164,92,14.773,59275.58,523927980,-947277409,191.2,24 -Sun Sep 25 08:24:25 PDT 2011,164,92,14.723,59290.32,523926432,-947277037,190.6,24 -Sun Sep 25 08:24:26 PDT 2011,163,92,14.707,59305.01,523924879,-947276686,190.0,24 -Sun Sep 25 08:24:27 PDT 2011,163,0,14.558,59319.56,523923340,-947276299,189.4,24 -Sun Sep 25 08:24:28 PDT 2011,163,0,14.315,59333.81,523921786,-947275917,189.0,24 -Sun Sep 25 08:24:29 PDT 2011,163,0,13.943,59347.8,523920292,-947275525,188.6,24 -Sun Sep 25 08:24:30 PDT 2011,163,0,13.72,59362.81,523918702,-947275088,188.2,24 -Sun Sep 25 08:24:31 PDT 2011,163,93,13.505,59374.96,523917399,-947274743,187.8,24 -Sun Sep 25 08:24:32 PDT 2011,162,93,13.633,59388.66,523915971,-947274374,187.6,24 -Sun Sep 25 08:24:33 PDT 2011,162,94,13.677,59402.36,523914541,-947274014,187.2,24 -Sun Sep 25 08:24:34 PDT 2011,162,92,13.734,59416.06,523913097,-947273673,187.0,24 -Sun Sep 25 08:24:35 PDT 2011,161,92,13.69,59429.76,523911662,-947273333,186.8,24 -Sun Sep 25 08:24:36 PDT 2011,161,28,13.433,59443.26,523910246,-947272974,186.6,24 -Sun Sep 25 08:24:37 PDT 2011,162,100,13.433,59456.64,523908799,-947272602,186.4,24 -Sun Sep 25 08:24:38 PDT 2011,162,101,13.603,59470.24,523907397,-947272248,186.2,24 -Sun Sep 25 08:24:39 PDT 2011,162,101,13.69,59483.97,523905959,-947271893,186.0,24 -Sun Sep 25 08:24:40 PDT 2011,162,101,13.69,59497.7,523904531,-947271558,186.0,24 -Sun Sep 25 08:24:41 PDT 2011,162,101,13.475,59511.08,523903087,-947271219,185.8,24 -Sun Sep 25 08:24:42 PDT 2011,162,99,13.35,59525.7,523901531,-947270848,185.8,24 -Sun Sep 25 08:24:43 PDT 2011,162,99,13.391,59537.8,523900234,-947270528,185.6,24 -Sun Sep 25 08:24:44 PDT 2011,162,100,13.433,59551.36,523898835,-947270183,185.6,24 -Sun Sep 25 08:24:45 PDT 2011,162,101,13.518,59564.74,523897391,-947269827,185.4,24 -Sun Sep 25 08:24:46 PDT 2011,162,101,13.603,59578.33,523895940,-947269489,185.4,24 -Sun Sep 25 08:24:47 PDT 2011,162,101,13.518,59591.94,523894518,-947269166,185.4,24 -Sun Sep 25 08:24:48 PDT 2011,162,0,13.433,59605.42,523893065,-947268826,185.2,24 -Sun Sep 25 08:24:49 PDT 2011,161,98,13.267,59618.64,523891661,-947268494,185.2,24 -Sun Sep 25 08:24:50 PDT 2011,161,98,13.312,59631.89,523890229,-947268143,185.2,24 -Sun Sep 25 08:24:51 PDT 2011,161,31,13.23,59645.17,523888866,-947267800,185.2,24 -Sun Sep 25 08:24:52 PDT 2011,161,97,13.23,59658.45,523887479,-947267451,185.0,24 -Sun Sep 25 08:24:53 PDT 2011,161,99,13.312,59671.67,523886084,-947267111,185.0,24 -Sun Sep 25 08:24:54 PDT 2011,161,99,13.478,59685.11,523884671,-947266761,184.8,24 -Sun Sep 25 08:24:55 PDT 2011,162,99,13.478,59698.64,523883255,-947266420,184.6,24 -Sun Sep 25 08:24:56 PDT 2011,162,99,13.312,59711.91,523881854,-947266073,184.4,24 -Sun Sep 25 08:24:57 PDT 2011,162,0,13.149,59726.27,523880355,-947265702,184.2,24 -Sun Sep 25 08:24:58 PDT 2011,161,96,13.069,59738.45,523879051,-947265373,184.2,24 -Sun Sep 25 08:24:59 PDT 2011,162,97,13.047,59751.22,523877699,-947265043,184.0,24 -Sun Sep 25 08:25:00 PDT 2011,162,97,13.127,59764.34,523876328,-947264725,183.8,24 -Sun Sep 25 08:25:01 PDT 2011,162,97,13.047,59777.4,523874948,-947264411,183.8,24 -Sun Sep 25 08:25:02 PDT 2011,163,0,12.89,59790.26,523873558,-947264081,183.6,24 -Sun Sep 25 08:25:03 PDT 2011,164,96,12.775,59803.11,523872239,-947263764,183.6,24 -Sun Sep 25 08:25:04 PDT 2011,165,96,12.968,59816.18,523870875,-947263425,183.4,24 -Sun Sep 25 08:25:05 PDT 2011,165,98,13.087,59829.15,523869502,-947263079,183.2,24 -Sun Sep 25 08:25:06 PDT 2011,166,100,13.414,59842.6,523868131,-947262726,183.0,24 -Sun Sep 25 08:25:07 PDT 2011,166,100,13.399,59856.0,523866708,-947262357,182.8,24 -Sun Sep 25 08:25:08 PDT 2011,166,100,13.399,59869.35,523865274,-947261998,182.6,24 -Sun Sep 25 08:25:09 PDT 2011,166,100,13.441,59882.73,523863852,-947261643,182.4,24 -Sun Sep 25 08:25:10 PDT 2011,166,34,13.232,59897.21,523862307,-947261256,182.2,24 -Sun Sep 25 08:25:11 PDT 2011,166,99,13.273,59909.27,523860982,-947260938,182.0,24 -Sun Sep 25 08:25:12 PDT 2011,166,99,13.191,59922.48,523859583,-947260628,182.0,24 -Sun Sep 25 08:25:13 PDT 2011,165,99,13.15,59935.54,523858165,-947260321,181.8,24 -Sun Sep 25 08:25:14 PDT 2011,164,99,13.191,59948.73,523856744,-947260022,181.6,24 -Sun Sep 25 08:25:15 PDT 2011,163,99,13.191,59961.99,523855359,-947259729,181.6,24 -Sun Sep 25 08:25:16 PDT 2011,162,0,13.198,59975.13,523853937,-947259413,181.6,24 -Sun Sep 25 08:25:17 PDT 2011,161,0,13.157,59988.26,523852550,-947259077,181.4,24 -Sun Sep 25 08:25:18 PDT 2011,160,98,13.077,60001.47,523851163,-947258730,181.4,24 -Sun Sep 25 08:25:19 PDT 2011,159,98,13.198,60014.61,523849763,-947258392,181.2,24 -Sun Sep 25 08:25:20 PDT 2011,158,98,13.117,60027.69,523848392,-947258063,181.2,24 -Sun Sep 25 08:25:21 PDT 2011,158,99,13.198,60040.97,523846993,-947257714,181.2,24 -Sun Sep 25 08:25:22 PDT 2011,158,100,13.363,60055.48,523845503,-947257320,181.2,24 -Sun Sep 25 08:25:23 PDT 2011,159,100,13.447,60067.78,523844182,-947256972,181.0,24 -Sun Sep 25 08:25:24 PDT 2011,159,35,13.492,60081.22,523842753,-947256582,180.8,24 -Sun Sep 25 08:25:25 PDT 2011,160,35,13.324,60094.54,523841353,-947256199,180.6,24 -Sun Sep 25 08:25:26 PDT 2011,160,35,13.324,60107.9,523839939,-947255831,180.4,24 -Sun Sep 25 08:25:27 PDT 2011,160,0,13.12,60121.06,523838559,-947255491,180.2,24 -Sun Sep 25 08:25:28 PDT 2011,159,0,12.693,60133.71,523837187,-947255174,180.2,24 -Sun Sep 25 08:25:29 PDT 2011,159,0,12.223,60145.91,523835894,-947254877,180.0,24 -Sun Sep 25 08:25:30 PDT 2011,158,0,11.984,60157.88,523834605,-947254574,179.8,24 -Sun Sep 25 08:25:31 PDT 2011,157,0,11.852,60169.69,523833337,-947254265,179.8,24 -Sun Sep 25 08:25:32 PDT 2011,157,0,11.722,60181.45,523832117,-947253953,179.6,24 -Sun Sep 25 08:25:33 PDT 2011,156,91,11.583,60193.03,523830891,-947253621,179.6,24 -Sun Sep 25 08:25:34 PDT 2011,157,103,11.837,60204.92,523829659,-947253279,179.4,24 -Sun Sep 25 08:25:35 PDT 2011,158,106,12.311,60217.13,523828395,-947252944,179.4,24 -Sun Sep 25 08:25:36 PDT 2011,159,106,12.526,60229.65,523827108,-947252635,179.4,24 -Sun Sep 25 08:25:37 PDT 2011,160,106,12.453,60243.41,523825659,-947252312,179.2,24 -Sun Sep 25 08:25:38 PDT 2011,161,0,12.276,60254.52,523824463,-947252041,179.2,24 -Sun Sep 25 08:25:39 PDT 2011,161,0,12.07,60266.59,523823176,-947251746,179.2,24 -Sun Sep 25 08:25:40 PDT 2011,162,0,11.903,60278.49,523821901,-947251441,179.2,24 -Sun Sep 25 08:25:41 PDT 2011,163,0,11.794,60290.26,523820662,-947251144,179.0,24 -Sun Sep 25 08:25:42 PDT 2011,163,93,11.709,60302.05,523819407,-947250863,179.0,24 -Sun Sep 25 08:25:43 PDT 2011,163,94,11.692,60313.61,523818183,-947250612,179.0,24 -Sun Sep 25 08:25:44 PDT 2011,162,94,11.821,60325.5,523816918,-947250344,179.0,24 -Sun Sep 25 08:25:45 PDT 2011,163,95,11.886,60337.4,523815660,-947250087,179.0,24 -Sun Sep 25 08:25:46 PDT 2011,163,96,12.019,60349.35,523814389,-947249783,179.0,24 -Sun Sep 25 08:25:47 PDT 2011,163,100,12.364,60361.69,523813141,-947249518,179.0,24 -Sun Sep 25 08:25:48 PDT 2011,164,100,12.73,60374.43,523811832,-947249228,178.8,24 -Sun Sep 25 08:25:49 PDT 2011,165,97,12.655,60387.04,523810499,-947248930,178.8,24 -Sun Sep 25 08:25:50 PDT 2011,166,104,12.224,60399.29,523809195,-947248627,178.8,24 -Sun Sep 25 08:25:51 PDT 2011,168,104,12.189,60411.46,523807871,-947248322,178.8,24 -Sun Sep 25 08:25:52 PDT 2011,169,104,11.821,60423.45,523806616,-947247996,178.8,25 -Sun Sep 25 08:25:53 PDT 2011,169,0,11.455,60434.74,523805401,-947247694,178.8,25 -Sun Sep 25 08:25:54 PDT 2011,170,96,11.274,60447.17,523804114,-947247369,178.8,25 -Sun Sep 25 08:25:55 PDT 2011,171,96,11.334,60457.37,523803071,-947247106,178.8,25 -Sun Sep 25 08:25:56 PDT 2011,171,96,11.157,60468.58,523801894,-947246824,178.8,25 -Sun Sep 25 08:25:57 PDT 2011,171,96,11.215,60479.82,523800713,-947246538,178.8,25 -Sun Sep 25 08:25:58 PDT 2011,172,98,11.304,60491.38,523799477,-947246265,178.8,25 -Sun Sep 25 08:25:59 PDT 2011,172,102,11.579,60502.64,523798262,-947246026,178.8,25 -Sun Sep 25 08:26:00 PDT 2011,172,105,12.001,60514.65,523796993,-947245770,178.8,25 -Sun Sep 25 08:26:01 PDT 2011,172,107,12.382,60527.06,523795683,-947245502,178.8,25 -Sun Sep 25 08:26:02 PDT 2011,173,110,12.77,60540.13,523794287,-947245207,178.8,25 -Sun Sep 25 08:26:03 PDT 2011,173,110,12.925,60552.74,523792945,-947244883,178.8,25 -Sun Sep 25 08:26:04 PDT 2011,174,110,12.925,60565.67,523791560,-947244548,178.8,25 -Sun Sep 25 08:26:05 PDT 2011,174,20,12.509,60578.12,523790181,-947244231,178.8,25 -Sun Sep 25 08:26:06 PDT 2011,175,107,12.436,60590.62,523788833,-947243913,178.8,25 -Sun Sep 25 08:26:07 PDT 2011,176,107,12.436,60604.22,523787380,-947243550,178.8,25 -Sun Sep 25 08:26:08 PDT 2011,176,108,12.583,60615.51,523786221,-947243247,178.8,25 -Sun Sep 25 08:26:09 PDT 2011,176,109,12.509,60628.02,523784904,-947242897,178.8,25 -Sun Sep 25 08:26:10 PDT 2011,177,108,12.809,60641.06,523783587,-947242551,178.8,25 -Sun Sep 25 08:26:11 PDT 2011,177,104,12.601,60653.49,523782241,-947242214,178.8,25 -Sun Sep 25 08:26:12 PDT 2011,177,100,12.454,60666.02,523780902,-947241916,178.8,25 -Sun Sep 25 08:26:13 PDT 2011,178,100,12.276,60678.35,523779602,-947241662,178.8,25 -Sun Sep 25 08:26:14 PDT 2011,178,100,11.967,60692.17,523778133,-947241406,178.8,25 -Sun Sep 25 08:26:15 PDT 2011,177,0,11.77,60702.15,523777067,-947241230,178.8,25 -Sun Sep 25 08:26:16 PDT 2011,177,0,11.674,60713.7,523775856,-947241054,178.8,25 -Sun Sep 25 08:26:17 PDT 2011,176,94,11.334,60725.05,523774630,-947240862,178.8,25 -Sun Sep 25 08:26:18 PDT 2011,175,102,11.215,60736.25,523773419,-947240629,178.8,25 -Sun Sep 25 08:26:19 PDT 2011,175,102,11.334,60747.56,523772243,-947240337,178.8,25 -Sun Sep 25 08:26:20 PDT 2011,175,102,11.21,60759.78,523770973,-947239985,178.8,25 -Sun Sep 25 08:26:21 PDT 2011,174,0,10.814,60769.58,523769920,-947239660,178.8,25 -Sun Sep 25 08:26:22 PDT 2011,173,0,10.626,60780.38,523768799,-947239326,178.8,25 -Sun Sep 25 08:26:23 PDT 2011,172,102,10.521,60790.75,523767661,-947239025,178.8,25 -Sun Sep 25 08:26:24 PDT 2011,172,102,10.496,60801.24,523766575,-947238768,178.8,25 -Sun Sep 25 08:26:25 PDT 2011,171,102,10.521,60811.72,523765449,-947238507,178.8,25 -Sun Sep 25 08:26:26 PDT 2011,171,102,10.444,60822.18,523764329,-947238250,178.6,25 -Sun Sep 25 08:26:27 PDT 2011,171,0,10.244,60832.49,523763232,-947238005,178.4,25 -Sun Sep 25 08:26:28 PDT 2011,171,0,9.958,60842.44,523762150,-947237767,178.2,25 -Sun Sep 25 08:26:29 PDT 2011,170,107,9.777,60852.2,523761106,-947237543,178.0,25 -Sun Sep 25 08:26:30 PDT 2011,170,108,9.867,60862.06,523760078,-947237330,177.8,25 -Sun Sep 25 08:26:31 PDT 2011,170,109,10.029,60872.1,523759033,-947237115,177.8,25 -Sun Sep 25 08:26:32 PDT 2011,170,99,10.076,60883.17,523757867,-947236858,177.6,25 -Sun Sep 25 08:26:33 PDT 2011,170,100,10.244,60892.46,523756907,-947236636,177.6,25 -Sun Sep 25 08:26:34 PDT 2011,170,101,10.368,60902.84,523755806,-947236362,177.4,25 -Sun Sep 25 08:26:35 PDT 2011,171,101,10.269,60913.04,523754722,-947236084,177.4,25 -Sun Sep 25 08:26:36 PDT 2011,171,101,9.936,60922.99,523753675,-947235829,177.2,25 -Sun Sep 25 08:26:37 PDT 2011,171,0,9.668,60932.65,523752659,-947235586,177.2,25 -Sun Sep 25 08:26:38 PDT 2011,170,0,9.094,60941.74,523751683,-947235331,177.2,25 -Sun Sep 25 08:26:39 PDT 2011,169,96,8.832,60950.57,523750758,-947235104,177.0,25 -Sun Sep 25 08:26:40 PDT 2011,167,96,8.869,60959.42,523749838,-947234888,177.0,25 -Sun Sep 25 08:26:41 PDT 2011,166,37,8.832,60968.29,523748936,-947234678,177.0,25 -Sun Sep 25 08:26:42 PDT 2011,165,97,8.873,60977.24,523747982,-947234462,177.0,25 -Sun Sep 25 08:26:43 PDT 2011,164,97,8.947,60986.94,523746965,-947234238,177.0,25 -Sun Sep 25 08:26:44 PDT 2011,164,97,8.947,60995.07,523746091,-947234038,176.8,25 -Sun Sep 25 08:26:45 PDT 2011,164,97,8.728,61003.77,523745137,-947233820,176.8,25 -Sun Sep 25 08:26:46 PDT 2011,162,0,8.555,61012.33,523744223,-947233638,176.8,25 -Sun Sep 25 08:26:47 PDT 2011,161,0,8.355,61020.67,523743324,-947233467,176.8,25 -Sun Sep 25 08:26:48 PDT 2011,160,0,8.227,61028.88,523742468,-947233301,176.8,25 -Sun Sep 25 08:26:49 PDT 2011,159,0,7.752,61036.64,523741651,-947233144,176.8,25 -Sun Sep 25 08:26:50 PDT 2011,159,0,7.379,61044.05,523740897,-947232998,176.8,25 -Sun Sep 25 08:26:51 PDT 2011,159,0,7.157,61051.19,523740136,-947232834,176.8,25 -Sun Sep 25 08:26:52 PDT 2011,159,0,7.508,61058.82,523739388,-947232671,176.8,25 -Sun Sep 25 08:26:53 PDT 2011,159,0,7.157,61065.87,523738637,-947232506,176.8,25 -Sun Sep 25 08:26:54 PDT 2011,160,86,7.063,61073.6,523737820,-947232317,176.8,25 -Sun Sep 25 08:26:55 PDT 2011,160,91,7.404,61080.31,523737113,-947232148,176.8,25 -Sun Sep 25 08:26:56 PDT 2011,161,92,7.659,61087.96,523736334,-947231967,176.6,25 -Sun Sep 25 08:26:57 PDT 2011,161,93,7.687,61095.65,523735542,-947231765,176.6,25 -Sun Sep 25 08:26:58 PDT 2011,161,92,7.742,61103.46,523734707,-947231543,176.6,25 -Sun Sep 25 08:26:59 PDT 2011,160,93,7.77,61111.16,523733871,-947231340,176.6,25 -Sun Sep 25 08:27:00 PDT 2011,160,93,7.798,61119.02,523733037,-947231130,176.6,25 -Sun Sep 25 08:27:01 PDT 2011,160,93,7.798,61126.78,523732196,-947230898,176.6,25 -Sun Sep 25 08:27:02 PDT 2011,160,94,7.798,61134.57,523731372,-947230689,176.6,25 -Sun Sep 25 08:27:03 PDT 2011,161,95,7.942,61142.49,523730545,-947230467,176.6,25 -Sun Sep 25 08:27:04 PDT 2011,161,97,8.061,61150.57,523729723,-947230259,176.6,25 -Sun Sep 25 08:27:05 PDT 2011,161,100,8.246,61158.81,523728860,-947230050,176.6,25 -Sun Sep 25 08:27:06 PDT 2011,162,108,8.474,61168.08,523727891,-947229800,176.6,25 -Sun Sep 25 08:27:07 PDT 2011,163,111,9.082,61176.31,523727039,-947229561,176.6,25 -Sun Sep 25 08:27:08 PDT 2011,164,106,9.44,61185.71,523726065,-947229286,176.6,25 -Sun Sep 25 08:27:09 PDT 2011,164,95,9.652,61195.36,523725017,-947229000,176.6,25 -Sun Sep 25 08:27:10 PDT 2011,165,98,10.043,61205.42,523723956,-947228725,176.6,25 -Sun Sep 25 08:27:11 PDT 2011,166,102,10.235,61215.63,523722847,-947228436,176.6,25 -Sun Sep 25 08:27:12 PDT 2011,167,103,10.588,61226.29,523721712,-947228149,176.6,25 -Sun Sep 25 08:27:13 PDT 2011,167,107,10.8,61237.08,523720557,-947227858,176.6,25 -Sun Sep 25 08:27:14 PDT 2011,168,108,11.079,61248.15,523719382,-947227551,176.6,25 -Sun Sep 25 08:27:15 PDT 2011,169,114,11.402,61259.55,523718157,-947227242,176.6,25 -Sun Sep 25 08:27:16 PDT 2011,171,112,11.809,61271.52,523716889,-947226926,176.6,25 -Sun Sep 25 08:27:17 PDT 2011,171,106,12.143,61283.58,523715577,-947226598,176.6,25 -Sun Sep 25 08:27:18 PDT 2011,172,107,12.424,61295.97,523714243,-947226246,176.6,25 -Sun Sep 25 08:27:19 PDT 2011,173,107,12.606,61308.6,523712929,-947225885,176.6,25 -Sun Sep 25 08:27:20 PDT 2011,174,107,12.424,61322.13,523711463,-947225496,176.6,25 -Sun Sep 25 08:27:21 PDT 2011,175,0,12.108,61333.14,523710294,-947225199,176.6,25 -Sun Sep 25 08:27:22 PDT 2011,175,0,12.108,61345.18,523708987,-947224900,176.6,25 -Sun Sep 25 08:27:23 PDT 2011,175,0,12.006,61357.23,523707715,-947224634,176.6,25 -Sun Sep 25 08:27:24 PDT 2011,175,0,11.841,61369.05,523706439,-947224366,176.6,25 -Sun Sep 25 08:27:25 PDT 2011,175,0,11.679,61380.63,523705197,-947224077,176.6,25 -Sun Sep 25 08:27:26 PDT 2011,174,0,11.585,61392.28,523703981,-947223772,176.6,25 -Sun Sep 25 08:27:27 PDT 2011,173,0,11.4,61403.52,523702769,-947223457,176.6,25 -Sun Sep 25 08:27:28 PDT 2011,172,0,11.339,61414.96,523701587,-947223162,176.6,25 -Sun Sep 25 08:27:29 PDT 2011,171,0,11.136,61426.09,523700425,-947222870,176.6,25 -Sun Sep 25 08:27:30 PDT 2011,170,98,10.666,61437.97,523699210,-947222548,176.6,25 -Sun Sep 25 08:27:31 PDT 2011,170,107,10.746,61447.6,523698187,-947222280,176.6,25 -Sun Sep 25 08:27:32 PDT 2011,170,97,11.253,61458.93,523697026,-947221980,176.6,25 -Sun Sep 25 08:27:33 PDT 2011,169,97,11.432,61470.35,523695858,-947221697,176.4,25 -Sun Sep 25 08:27:34 PDT 2011,169,98,11.524,61481.94,523694632,-947221412,176.2,25 -Sun Sep 25 08:27:35 PDT 2011,168,98,11.618,61493.49,523693391,-947221137,176.0,25 -Sun Sep 25 08:27:36 PDT 2011,167,98,11.524,61504.97,523692175,-947220866,175.8,25 -Sun Sep 25 08:27:37 PDT 2011,166,0,11.136,61516.1,523690964,-947220593,175.8,25 -Sun Sep 25 08:27:38 PDT 2011,165,96,11.136,61527.31,523689735,-947220328,175.6,25 -Sun Sep 25 08:27:39 PDT 2011,165,99,11.285,61538.6,523688554,-947220080,175.4,25 -Sun Sep 25 08:27:40 PDT 2011,165,104,11.781,61551.42,523687228,-947219819,175.4,25 -Sun Sep 25 08:27:41 PDT 2011,165,107,12.252,61562.41,523686039,-947219577,175.2,25 -Sun Sep 25 08:27:42 PDT 2011,166,109,12.65,61575.11,523684693,-947219282,175.2,25 -Sun Sep 25 08:27:43 PDT 2011,167,110,12.725,61587.79,523683364,-947218959,174.8,25 -Sun Sep 25 08:27:44 PDT 2011,168,111,12.878,61600.7,523681974,-947218597,174.6,25 -Sun Sep 25 08:27:45 PDT 2011,169,112,13.034,61613.71,523680587,-947218233,174.4,25 -Sun Sep 25 08:27:46 PDT 2011,170,113,13.154,61626.92,523679166,-947217869,174.0,25 -Sun Sep 25 08:27:47 PDT 2011,172,113,13.154,61640.36,523677760,-947217506,173.8,25 -Sun Sep 25 08:27:48 PDT 2011,173,111,13.154,61653.19,523676374,-947217161,173.6,25 -Sun Sep 25 08:27:49 PDT 2011,174,101,12.904,61666.21,523674998,-947216833,173.2,25 -Sun Sep 25 08:27:50 PDT 2011,175,97,13.062,61680.55,523673455,-947216465,173.0,25 -Sun Sep 25 08:27:51 PDT 2011,175,97,12.943,61692.2,523672246,-947216154,172.6,25 -Sun Sep 25 08:27:52 PDT 2011,175,98,13.142,61705.34,523670851,-947215778,172.4,25 -Sun Sep 25 08:27:53 PDT 2011,176,98,13.182,61718.54,523669478,-947215390,172.0,25 -Sun Sep 25 08:27:54 PDT 2011,176,28,12.943,61731.53,523668104,-947215009,171.8,25 -Sun Sep 25 08:27:55 PDT 2011,176,104,12.789,61744.19,523666741,-947214665,171.6,25 -Sun Sep 25 08:27:56 PDT 2011,176,105,13.022,61757.28,523665365,-947214364,171.4,25 -Sun Sep 25 08:27:57 PDT 2011,175,106,13.331,61771.13,523663914,-947214052,171.2,25 -Sun Sep 25 08:27:58 PDT 2011,176,106,13.248,61783.97,523662567,-947213766,171.2,25 -Sun Sep 25 08:27:59 PDT 2011,176,56,13.208,61796.99,523661127,-947213434,170.8,25 -Sun Sep 25 08:28:00 PDT 2011,176,106,13.127,61810.13,523659741,-947213076,170.4,25 -Sun Sep 25 08:28:01 PDT 2011,176,107,13.248,61824.69,523658194,-947212668,170.0,25 -Sun Sep 25 08:28:02 PDT 2011,176,108,13.498,61836.8,523656929,-947212342,169.8,25 -Sun Sep 25 08:28:03 PDT 2011,176,108,13.584,61850.4,523655510,-947211996,169.6,25 -Sun Sep 25 08:28:04 PDT 2011,177,110,13.758,61864.14,523654069,-947211650,169.4,25 -Sun Sep 25 08:28:05 PDT 2011,177,110,13.758,61877.92,523652607,-947211265,169.2,25 -Sun Sep 25 08:28:06 PDT 2011,178,110,13.84,61891.81,523651118,-947210849,169.0,25 -Sun Sep 25 08:28:07 PDT 2011,178,110,13.664,61905.46,523649670,-947210442,168.8,25 -Sun Sep 25 08:28:08 PDT 2011,179,0,13.408,61918.86,523648256,-947210056,168.6,25 -Sun Sep 25 08:28:09 PDT 2011,179,108,13.283,61932.21,523646824,-947209701,168.4,25 -Sun Sep 25 08:28:10 PDT 2011,179,110,13.707,61945.99,523645442,-947209352,168.4,25 -Sun Sep 25 08:28:11 PDT 2011,179,111,13.84,61959.8,523643968,-947208996,168.0,25 -Sun Sep 25 08:28:12 PDT 2011,180,110,13.751,61974.94,523642359,-947208623,167.8,25 -Sun Sep 25 08:28:13 PDT 2011,180,109,13.751,61987.2,523641027,-947208330,167.6,25 -Sun Sep 25 08:28:14 PDT 2011,180,109,13.67,62000.87,523639582,-947208017,167.4,25 -Sun Sep 25 08:28:15 PDT 2011,180,108,13.67,62014.51,523638116,-947207722,166.8,25 -Sun Sep 25 08:28:16 PDT 2011,181,109,13.758,62028.6,523636664,-947207390,166.6,25 -Sun Sep 25 08:28:17 PDT 2011,181,109,13.67,62042.14,523635223,-947207033,166.2,25 -Sun Sep 25 08:28:18 PDT 2011,181,109,13.627,62055.82,523633759,-947206641,165.8,25 -Sun Sep 25 08:28:19 PDT 2011,181,108,13.555,62069.1,523632348,-947206255,165.6,25 -Sun Sep 25 08:28:20 PDT 2011,181,107,13.498,62082.61,523630899,-947205843,165.4,25 -Sun Sep 25 08:28:21 PDT 2011,182,107,13.584,62096.19,523629497,-947205483,165.2,25 -Sun Sep 25 08:28:22 PDT 2011,182,106,13.343,62109.74,523628096,-947205139,165.0,25 -Sun Sep 25 08:28:23 PDT 2011,182,111,13.18,62122.77,523626686,-947204782,164.8,25 -Sun Sep 25 08:28:24 PDT 2011,182,109,13.099,62137.68,523625118,-947204362,164.6,25 -Sun Sep 25 08:28:25 PDT 2011,182,108,12.825,62148.72,523623946,-947204036,164.2,25 -Sun Sep 25 08:28:26 PDT 2011,182,109,12.637,62161.36,523622632,-947203672,164.0,25 -Sun Sep 25 08:28:27 PDT 2011,182,109,12.787,62174.11,523621325,-947203302,163.6,25 -Sun Sep 25 08:28:28 PDT 2011,183,111,12.825,62187.01,523619964,-947202937,163.4,25 -Sun Sep 25 08:28:29 PDT 2011,183,112,13.02,62200.08,523618627,-947202575,163.4,25 -Sun Sep 25 08:28:30 PDT 2011,183,114,13.18,62213.25,523617230,-947202207,163.2,25 -Sun Sep 25 08:28:31 PDT 2011,183,115,13.286,62226.44,523615830,-947201858,163.2,25 -Sun Sep 25 08:28:32 PDT 2011,184,115,13.538,62240.01,523614410,-947201524,163.2,25 -Sun Sep 25 08:28:33 PDT 2011,184,115,13.327,62253.34,523612986,-947201175,163.2,25 -Sun Sep 25 08:28:34 PDT 2011,184,107,13.327,62267.98,523611417,-947200769,163.2,25 -Sun Sep 25 08:28:35 PDT 2011,184,105,13.538,62280.14,523610112,-947200412,163.2,25 -Sun Sep 25 08:28:36 PDT 2011,185,100,13.538,62293.73,523608694,-947200005,163.2,25 -Sun Sep 25 08:28:37 PDT 2011,185,100,13.327,62306.98,523607307,-947199592,163.2,25 -Sun Sep 25 08:28:38 PDT 2011,185,100,12.964,62319.94,523605906,-947199173,163.2,25 -Sun Sep 25 08:28:39 PDT 2011,185,0,12.466,62332.48,523604563,-947198785,163.2,25 -Sun Sep 25 08:28:40 PDT 2011,184,0,12.183,62344.68,523603253,-947198425,163.2,25 -Sun Sep 25 08:28:41 PDT 2011,184,90,12.08,62356.76,523602004,-947198110,163.2,25 -Sun Sep 25 08:28:42 PDT 2011,184,91,12.252,62368.97,523600738,-947197801,163.0,25 -Sun Sep 25 08:28:43 PDT 2011,184,91,12.114,62381.08,523599507,-947197512,163.0,25 -Sun Sep 25 08:28:44 PDT 2011,183,95,11.912,62394.67,523598049,-947197164,163.0,25 -Sun Sep 25 08:28:45 PDT 2011,183,96,11.979,62404.93,523596965,-947196900,163.0,25 -Sun Sep 25 08:28:46 PDT 2011,183,96,11.979,62416.79,523595712,-947196580,163.0,25 -Sun Sep 25 08:28:47 PDT 2011,182,99,12.217,62428.99,523594442,-947196240,163.0,25 -Sun Sep 25 08:28:48 PDT 2011,182,101,12.43,62441.43,523593142,-947195870,163.0,25 -Sun Sep 25 08:28:49 PDT 2011,182,103,12.631,62454.18,523591812,-947195484,163.0,25 -Sun Sep 25 08:28:50 PDT 2011,182,104,12.858,62467.11,523590493,-947195097,163.0,25 -Sun Sep 25 08:28:51 PDT 2011,182,106,13.173,62480.27,523589092,-947194664,163.0,25 -Sun Sep 25 08:28:52 PDT 2011,181,109,13.378,62493.69,523587727,-947194239,163.0,25 -Sun Sep 25 08:28:53 PDT 2011,182,112,13.72,62507.34,523586283,-947193792,163.0,25 -Sun Sep 25 08:28:54 PDT 2011,182,115,14.127,62521.5,523584804,-947193327,163.0,25 -Sun Sep 25 08:28:55 PDT 2011,182,115,14.411,62537.33,523583095,-947192729,163.0,25 -Sun Sep 25 08:28:56 PDT 2011,182,35,14.508,62550.42,523581723,-947192234,162.8,25 -Sun Sep 25 08:28:57 PDT 2011,182,116,14.267,62564.67,523580209,-947191739,162.6,25 -Sun Sep 25 08:28:58 PDT 2011,182,111,14.659,62579.35,523578675,-947191236,162.4,25 -Sun Sep 25 08:28:59 PDT 2011,182,111,14.968,62594.3,523577092,-947190708,162.2,25 -Sun Sep 25 08:29:00 PDT 2011,182,33,15.127,62609.33,523575494,-947190172,161.8,25 -Sun Sep 25 08:29:01 PDT 2011,183,108,15.235,62624.63,523573895,-947189632,161.4,25 -Sun Sep 25 08:29:02 PDT 2011,183,108,15.456,62640.15,523572269,-947189103,161.0,25 -Sun Sep 25 08:29:03 PDT 2011,183,108,15.626,62655.7,523570592,-947188585,160.8,25 -Sun Sep 25 08:29:04 PDT 2011,183,0,15.641,62671.45,523568980,-947188100,160.4,25 -Sun Sep 25 08:29:05 PDT 2011,183,0,15.815,62687.13,523567280,-947187592,160.0,25 -Sun Sep 25 08:29:06 PDT 2011,182,0,15.756,62704.48,523565472,-947187056,159.6,25 -Sun Sep 25 08:29:07 PDT 2011,182,0,15.584,62718.29,523563944,-947186639,159.2,25 -Sun Sep 25 08:29:08 PDT 2011,182,0,15.641,62733.95,523562280,-947186207,159.0,25 -Sun Sep 25 08:29:09 PDT 2011,180,0,15.584,62749.53,523560617,-947185800,158.6,25 -Sun Sep 25 08:29:10 PDT 2011,179,0,15.36,62765.12,523558975,-947185434,158.2,25 -Sun Sep 25 08:29:11 PDT 2011,178,0,15.294,62779.99,523557344,-947185077,157.8,25 -Sun Sep 25 08:29:12 PDT 2011,177,0,15.132,62795.23,523555720,-947184730,157.4,25 -Sun Sep 25 08:29:13 PDT 2011,176,0,14.973,62810.54,523554138,-947184383,157.0,25 -Sun Sep 25 08:29:14 PDT 2011,175,0,14.766,62825.19,523552558,-947184033,156.8,25 -Sun Sep 25 08:29:15 PDT 2011,175,0,14.18,62839.05,523551048,-947183690,156.4,25 -Sun Sep 25 08:29:16 PDT 2011,174,0,13.466,62852.66,523549612,-947183423,156.2,25 -Sun Sep 25 08:29:17 PDT 2011,173,0,12.448,62865.29,523548296,-947183201,156.0,25 -Sun Sep 25 08:29:18 PDT 2011,173,0,11.511,62877.9,523546913,-947182994,155.8,25 -Sun Sep 25 08:29:19 PDT 2011,173,0,11.28,62888.17,523545705,-947182794,155.6,25 -Sun Sep 25 08:29:20 PDT 2011,172,0,10.992,62899.1,523544552,-947182686,155.4,25 -Sun Sep 25 08:29:21 PDT 2011,171,0,10.718,62909.81,523543450,-947182597,155.2,25 -Sun Sep 25 08:29:22 PDT 2011,170,0,10.259,62920.14,523542373,-947182528,155.0,25 -Sun Sep 25 08:29:23 PDT 2011,170,72,10.02,62930.11,523541289,-947182467,155.0,25 -Sun Sep 25 08:29:24 PDT 2011,169,83,9.883,62939.97,523540259,-947182423,154.8,25 -Sun Sep 25 08:29:25 PDT 2011,169,94,9.928,62949.95,523539251,-947182393,154.8,25 -Sun Sep 25 08:29:26 PDT 2011,169,94,9.837,62959.81,523538239,-947182355,154.6,25 -Sun Sep 25 08:29:27 PDT 2011,169,94,9.266,62969.04,523537268,-947182304,154.6,25 -Sun Sep 25 08:29:28 PDT 2011,169,0,8.902,62978.06,523536321,-947182236,154.6,25 -Sun Sep 25 08:29:29 PDT 2011,169,0,8.254,62986.27,523535408,-947182147,154.4,25 -Sun Sep 25 08:29:30 PDT 2011,169,0,8.13,62995.1,523534461,-947182044,154.4,25 -Sun Sep 25 08:29:31 PDT 2011,169,0,8.031,63002.44,523533694,-947181981,154.4,25 -Sun Sep 25 08:29:32 PDT 2011,169,22,7.499,63009.91,523532923,-947181931,154.2,25 -Sun Sep 25 08:29:33 PDT 2011,169,77,7.271,63017.21,523532155,-947181889,154.2,25 -Sun Sep 25 08:29:34 PDT 2011,169,77,7.103,63024.25,523531423,-947181841,154.2,25 -Sun Sep 25 08:29:35 PDT 2011,169,53,7.057,63031.33,523530674,-947181805,154.2,25 -Sun Sep 25 08:29:36 PDT 2011,169,49,7.198,63038.5,523529902,-947181788,154.2,25 -Sun Sep 25 08:29:37 PDT 2011,169,82,7.321,63045.81,523529127,-947181780,154.2,25 -Sun Sep 25 08:29:38 PDT 2011,169,82,7.659,63053.47,523528321,-947181749,154.0,25 -Sun Sep 25 08:29:39 PDT 2011,170,82,7.827,63061.31,523527503,-947181693,154.0,25 -Sun Sep 25 08:29:40 PDT 2011,170,0,7.396,63069.46,523526652,-947181598,154.0,25 -Sun Sep 25 08:29:41 PDT 2011,171,0,7.222,63075.94,523525941,-947181489,154.0,25 -Sun Sep 25 08:29:42 PDT 2011,171,0,7.271,63083.47,523525160,-947181374,154.0,25 -Sun Sep 25 08:29:43 PDT 2011,171,0,7.034,63090.25,523524456,-947181278,154.0,25 -Sun Sep 25 08:29:44 PDT 2011,170,0,6.768,63097.1,523523741,-947181193,154.0,25 -Sun Sep 25 08:29:45 PDT 2011,169,0,6.542,63103.63,523523048,-947181118,154.0,25 -Sun Sep 25 08:29:46 PDT 2011,168,0,6.083,63109.7,523522390,-947181041,154.0,25 -Sun Sep 25 08:29:47 PDT 2011,167,0,5.741,63115.45,523521781,-947180958,154.0,25 -Sun Sep 25 08:29:48 PDT 2011,167,0,5.354,63120.78,523521214,-947180877,154.0,25 -Sun Sep 25 08:29:49 PDT 2011,167,0,5.076,63125.85,523520705,-947180807,154.0,25 -Sun Sep 25 08:29:50 PDT 2011,164,0,4.578,63130.83,523520188,-947180750,154.0,25 -Sun Sep 25 08:29:51 PDT 2011,163,0,4.252,63134.7,523519802,-947180722,154.0,25 -Sun Sep 25 08:29:52 PDT 2011,162,0,3.923,63138.66,523519420,-947180711,154.0,25 -Sun Sep 25 08:29:53 PDT 2011,161,0,3.474,63142.1,523519070,-947180680,154.0,25 -Sun Sep 25 08:29:54 PDT 2011,160,41,3.446,63145.54,523518720,-947180612,154.0,25 -Sun Sep 25 08:29:55 PDT 2011,160,41,3.983,63149.52,523518345,-947180530,154.0,25 -Sun Sep 25 08:29:56 PDT 2011,161,41,4.121,63153.64,523517951,-947180448,153.8,25 -Sun Sep 25 08:29:57 PDT 2011,161,0,3.689,63157.44,523517560,-947180387,153.8,25 -Sun Sep 25 08:29:58 PDT 2011,162,0,3.608,63160.95,523517185,-947180335,153.8,25 -Sun Sep 25 08:29:59 PDT 2011,162,0,3.324,63164.27,523516816,-947180328,153.8,25 -Sun Sep 25 08:30:00 PDT 2011,164,42,3.807,63168.45,523516385,-947180327,153.8,25 -Sun Sep 25 08:30:01 PDT 2011,164,48,4.081,63172.15,523516016,-947180281,153.8,25 -Sun Sep 25 08:30:02 PDT 2011,164,48,4.539,63176.72,523515533,-947180168,153.8,25 -Sun Sep 25 08:30:03 PDT 2011,164,52,4.771,63181.49,523515018,-947180013,153.8,25 -Sun Sep 25 08:30:04 PDT 2011,164,32,5.199,63186.7,523514484,-947179809,153.8,25 -Sun Sep 25 08:30:05 PDT 2011,164,58,5.137,63191.83,523513931,-947179585,153.8,25 -Sun Sep 25 08:30:06 PDT 2011,164,58,5.064,63196.88,523513384,-947179373,153.8,25 -Sun Sep 25 08:30:07 PDT 2011,163,58,5.088,63201.95,523512837,-947179164,153.8,25 -Sun Sep 25 08:30:08 PDT 2011,164,24,5.088,63207.05,523512299,-947178957,153.8,25 -Sun Sep 25 08:30:09 PDT 2011,163,64,5.328,63212.36,523511748,-947178762,153.8,25 -Sun Sep 25 08:30:10 PDT 2011,163,64,5.52,63217.89,523511201,-947178568,153.8,25 -Sun Sep 25 08:30:11 PDT 2011,163,70,5.534,63223.95,523510546,-947178342,153.8,25 -Sun Sep 25 08:30:12 PDT 2011,163,75,5.981,63229.33,523509980,-947178153,154.0,25 -Sun Sep 25 08:30:13 PDT 2011,164,80,6.353,63235.68,523509317,-947177937,154.2,25 -Sun Sep 25 08:30:14 PDT 2011,164,88,6.838,63242.52,523508585,-947177717,154.4,25 -Sun Sep 25 08:30:15 PDT 2011,164,91,7.379,63249.88,523507800,-947177506,154.6,25 -Sun Sep 25 08:30:16 PDT 2011,165,95,7.808,63257.71,523506992,-947177293,154.8,25 -Sun Sep 25 08:30:17 PDT 2011,166,95,7.953,63265.7,523506133,-947177062,154.8,25 -Sun Sep 25 08:30:18 PDT 2011,166,94,7.836,63273.53,523505273,-947176848,155.0,25 -Sun Sep 25 08:30:19 PDT 2011,167,97,8.012,63283.22,523504231,-947176613,155.0,25 -Sun Sep 25 08:30:20 PDT 2011,167,99,8.102,63289.67,523503544,-947176462,155.2,25 -Sun Sep 25 08:30:21 PDT 2011,168,101,8.355,63298.92,523502559,-947176246,155.2,25 -Sun Sep 25 08:30:22 PDT 2011,168,101,8.355,63307.15,523501694,-947176044,155.4,25 -Sun Sep 25 08:30:23 PDT 2011,168,103,8.388,63314.74,523500856,-947175829,155.4,25 -Sun Sep 25 08:30:24 PDT 2011,168,104,8.555,63323.27,523499950,-947175572,155.4,25 -Sun Sep 25 08:30:25 PDT 2011,168,106,8.8,63332.09,523499034,-947175288,155.4,25 -Sun Sep 25 08:30:26 PDT 2011,168,107,8.873,63340.93,523498113,-947175017,155.6,25 -Sun Sep 25 08:30:27 PDT 2011,169,97,8.984,63349.93,523497195,-947174743,155.6,25 -Sun Sep 25 08:30:28 PDT 2011,169,97,8.947,63358.85,523496234,-947174445,155.6,25 -Sun Sep 25 08:30:29 PDT 2011,169,98,8.984,63367.84,523495293,-947174176,155.6,25 -Sun Sep 25 08:30:30 PDT 2011,169,52,9.06,63376.94,523494324,-947173929,155.6,25 -Sun Sep 25 08:30:31 PDT 2011,169,97,8.91,63385.81,523493379,-947173680,155.8,25 -Sun Sep 25 08:30:32 PDT 2011,169,99,8.984,63395.65,523492325,-947173384,155.8,25 -Sun Sep 25 08:30:33 PDT 2011,169,99,9.159,63403.89,523491444,-947173120,155.8,25 -Sun Sep 25 08:30:34 PDT 2011,168,100,9.12,63413.07,523490494,-947172803,155.8,25 -Sun Sep 25 08:30:35 PDT 2011,168,102,9.278,63422.37,523489529,-947172490,155.8,25 -Sun Sep 25 08:30:36 PDT 2011,168,103,9.4,63431.74,523488555,-947172204,155.8,25 -Sun Sep 25 08:30:37 PDT 2011,169,102,9.525,63441.24,523487547,-947171941,155.8,25 -Sun Sep 25 08:30:38 PDT 2011,169,40,9.359,63450.62,523486569,-947171685,155.8,25 -Sun Sep 25 08:30:39 PDT 2011,168,100,9.238,63459.87,523485592,-947171438,155.8,25 -Sun Sep 25 08:30:40 PDT 2011,168,100,9.198,63469.04,523484607,-947171185,155.8,25 -Sun Sep 25 08:30:41 PDT 2011,168,100,9.278,63478.41,523483642,-947170936,155.8,25 -Sun Sep 25 08:30:42 PDT 2011,168,99,9.198,63488.38,523482579,-947170646,155.8,25 -Sun Sep 25 08:30:43 PDT 2011,168,100,9.139,63496.7,523481686,-947170413,156.0,25 -Sun Sep 25 08:30:44 PDT 2011,168,101,9.238,63505.95,523480685,-947170127,156.0,25 -Sun Sep 25 08:30:45 PDT 2011,169,101,9.363,63515.25,523479691,-947169844,156.0,25 -Sun Sep 25 08:30:46 PDT 2011,169,102,9.363,63524.62,523478712,-947169623,156.0,25 -Sun Sep 25 08:30:47 PDT 2011,170,107,9.615,63534.24,523477688,-947169396,156.0,25 -Sun Sep 25 08:30:48 PDT 2011,170,107,9.791,63544.02,523476635,-947169170,156.0,25 -Sun Sep 25 08:30:49 PDT 2011,171,103,9.973,63554.05,523475580,-947168937,156.0,25 -Sun Sep 25 08:30:50 PDT 2011,171,103,9.746,63563.77,523474528,-947168682,156.0,25 -Sun Sep 25 08:30:51 PDT 2011,171,103,9.53,63573.31,523473481,-947168407,156.2,25 -Sun Sep 25 08:30:52 PDT 2011,171,0,9.473,63583.66,523472366,-947168134,156.4,25 -Sun Sep 25 08:30:53 PDT 2011,170,90,9.572,63592.33,523471445,-947167925,156.6,25 -Sun Sep 25 08:30:54 PDT 2011,170,90,9.466,63601.79,523470447,-947167687,156.6,25 -Sun Sep 25 08:30:55 PDT 2011,169,100,9.242,63611.04,523469461,-947167413,156.8,25 -Sun Sep 25 08:30:56 PDT 2011,169,100,9.446,63620.46,523468450,-947167151,157.0,25 -Sun Sep 25 08:30:57 PDT 2011,169,89,9.663,63630.17,523467451,-947166897,157.0,25 -Sun Sep 25 08:30:58 PDT 2011,168,89,9.577,63639.72,523466430,-947166596,157.2,25 -Sun Sep 25 08:30:59 PDT 2011,168,95,9.663,63649.32,523465408,-947166320,157.2,25 -Sun Sep 25 08:31:00 PDT 2011,168,99,9.954,63659.36,523464368,-947166051,157.4,25 -Sun Sep 25 08:31:01 PDT 2011,168,100,10.215,63669.52,523463285,-947165789,157.4,25 -Sun Sep 25 08:31:02 PDT 2011,168,104,10.464,63681.04,523462081,-947165488,157.4,25 -Sun Sep 25 08:31:03 PDT 2011,168,106,10.807,63690.74,523461025,-947165263,157.6,25 -Sun Sep 25 08:31:04 PDT 2011,168,106,11.001,63701.81,523459852,-947165027,157.6,25 -Sun Sep 25 08:31:05 PDT 2011,169,106,11.001,63712.76,523458672,-947164786,157.6,25 -Sun Sep 25 08:31:06 PDT 2011,167,0,10.834,63723.62,523457499,-947164518,157.4,25 -Sun Sep 25 08:31:07 PDT 2011,166,0,10.726,63734.39,523456341,-947164248,157.4,25 -Sun Sep 25 08:31:08 PDT 2011,165,0,10.62,63745.07,523455208,-947163961,157.2,25 -Sun Sep 25 08:31:09 PDT 2011,165,0,10.464,63755.44,523454130,-947163684,157.0,25 -Sun Sep 25 08:31:10 PDT 2011,164,0,10.363,63765.82,523453046,-947163404,157.0,25 -Sun Sep 25 08:31:11 PDT 2011,163,0,10.363,63776.18,523451917,-947163119,156.8,25 -Sun Sep 25 08:31:12 PDT 2011,162,0,10.167,63786.33,523450840,-947162845,156.8,25 -Sun Sep 25 08:31:13 PDT 2011,162,0,10.119,63797.41,523449666,-947162534,156.6,25 -Sun Sep 25 08:31:14 PDT 2011,161,0,10.119,63806.57,523448703,-947162271,156.6,25 -Sun Sep 25 08:31:15 PDT 2011,161,0,10.071,63816.62,523447668,-947161976,156.6,25 -Sun Sep 25 08:31:16 PDT 2011,161,0,10.1,63826.72,523446613,-947161675,156.4,25 -Sun Sep 25 08:31:17 PDT 2011,159,0,9.96,63836.68,523445571,-947161369,156.4,25 -Sun Sep 25 08:31:18 PDT 2011,158,0,9.354,63846.04,523444563,-947161073,156.4,25 -Sun Sep 25 08:31:19 PDT 2011,157,0,9.039,63855.12,523443584,-947160795,156.4,25 -Sun Sep 25 08:31:20 PDT 2011,156,0,8.89,63863.95,523442660,-947160547,156.0,25 -Sun Sep 25 08:31:21 PDT 2011,154,0,8.057,63872.05,523441820,-947160329,155.8,25 -Sun Sep 25 08:31:22 PDT 2011,152,81,7.88,63879.94,523441009,-947160120,155.6,25 -Sun Sep 25 08:31:23 PDT 2011,151,81,8.088,63888.8,523440120,-947159874,155.4,25 -Sun Sep 25 08:31:24 PDT 2011,151,81,7.938,63896.01,523439388,-947159636,155.2,25 -Sun Sep 25 08:31:25 PDT 2011,149,0,7.738,63903.7,523438590,-947159364,155.2,25 -Sun Sep 25 08:31:26 PDT 2011,148,0,7.548,63911.25,523437810,-947159104,155.0,25 -Sun Sep 25 08:31:27 PDT 2011,147,0,7.522,63918.83,523437033,-947158858,154.8,25 -Sun Sep 25 08:31:28 PDT 2011,146,0,7.47,63926.26,523436267,-947158612,154.8,25 -Sun Sep 25 08:31:29 PDT 2011,145,84,7.522,63933.76,523435488,-947158373,154.6,25 -Sun Sep 25 08:31:30 PDT 2011,146,89,8.035,63941.79,523434673,-947158131,154.6,25 -Sun Sep 25 08:31:31 PDT 2011,148,94,8.646,63950.45,523433825,-947157869,154.4,25 -Sun Sep 25 08:31:32 PDT 2011,149,100,8.895,63959.35,523432900,-947157586,154.4,25 -Sun Sep 25 08:31:33 PDT 2011,152,102,9.317,63969.56,523431836,-947157266,154.4,25 -Sun Sep 25 08:31:34 PDT 2011,153,102,9.65,63978.24,523430930,-947156955,154.2,25 -Sun Sep 25 08:31:35 PDT 2011,156,92,9.781,63988.02,523429882,-947156630,154.2,25 -Sun Sep 25 08:31:36 PDT 2011,157,92,9.87,63997.89,523428826,-947156318,154.2,25 -Sun Sep 25 08:31:37 PDT 2011,158,92,9.737,64007.64,523427785,-947156009,154.2,25 -Sun Sep 25 08:31:38 PDT 2011,159,0,9.317,64016.99,523426799,-947155733,154.0,25 -Sun Sep 25 08:31:39 PDT 2011,159,0,8.932,64025.93,523425854,-947155497,153.8,25 -Sun Sep 25 08:31:40 PDT 2011,158,87,8.969,64034.97,523424939,-947155261,153.6,25 -Sun Sep 25 08:31:41 PDT 2011,158,87,9.065,64043.99,523424001,-947155015,153.4,25 -Sun Sep 25 08:31:42 PDT 2011,158,87,8.989,64053.0,523423081,-947154774,153.2,25 -Sun Sep 25 08:31:43 PDT 2011,158,87,8.952,64062.78,523422065,-947154501,153.2,25 -Sun Sep 25 08:31:44 PDT 2011,157,0,8.915,64070.88,523421198,-947154229,153.0,25 -Sun Sep 25 08:31:45 PDT 2011,156,86,8.915,64079.76,523420267,-947153936,152.8,25 -Sun Sep 25 08:31:46 PDT 2011,156,90,8.952,64088.63,523419328,-947153659,152.8,25 -Sun Sep 25 08:31:47 PDT 2011,156,98,9.027,64097.69,523418387,-947153405,152.6,25 -Sun Sep 25 08:31:48 PDT 2011,156,99,9.181,64106.85,523417438,-947153176,152.6,25 -Sun Sep 25 08:31:49 PDT 2011,157,101,9.2,64116.06,523416484,-947152937,152.4,25 -Sun Sep 25 08:31:50 PDT 2011,157,106,9.546,64125.6,523415500,-947152644,152.4,25 -Sun Sep 25 08:31:51 PDT 2011,158,107,9.807,64135.41,523414501,-947152296,152.4,25 -Sun Sep 25 08:31:52 PDT 2011,159,107,9.897,64145.36,523413454,-947151915,152.2,25 -Sun Sep 25 08:31:53 PDT 2011,160,107,9.923,64156.21,523412305,-947151496,152.2,25 -Sun Sep 25 08:31:54 PDT 2011,160,96,10.016,64165.24,523411357,-947151163,152.2,25 -Sun Sep 25 08:31:55 PDT 2011,162,96,9.969,64175.2,523410284,-947150781,152.2,25 -Sun Sep 25 08:31:56 PDT 2011,163,96,9.969,64185.27,523409240,-947150449,152.0,25 -Sun Sep 25 08:31:57 PDT 2011,163,21,9.613,64194.89,523408236,-947150142,152.0,25 -Sun Sep 25 08:31:58 PDT 2011,163,105,9.403,64204.29,523407269,-947149869,152.0,25 -Sun Sep 25 08:31:59 PDT 2011,162,107,9.788,64214.07,523406260,-947149577,152.0,25 -Sun Sep 25 08:32:00 PDT 2011,163,107,9.969,64224.04,523405257,-947149273,152.0,25 -Sun Sep 25 08:32:01 PDT 2011,163,107,9.788,64233.85,523404253,-947148980,152.0,25 -Sun Sep 25 08:32:02 PDT 2011,163,109,9.969,64243.78,523403192,-947148705,152.0,25 -Sun Sep 25 08:32:03 PDT 2011,163,109,10.062,64254.73,523402039,-947148406,151.8,25 -Sun Sep 25 08:32:04 PDT 2011,164,106,10.039,64263.85,523401088,-947148182,151.8,25 -Sun Sep 25 08:32:05 PDT 2011,165,105,9.755,64273.6,523400028,-947147911,151.8,25 -Sun Sep 25 08:32:06 PDT 2011,165,105,9.711,64283.29,523399008,-947147636,151.8,25 -Sun Sep 25 08:32:07 PDT 2011,165,104,9.689,64293.19,523397945,-947147373,151.8,25 -Sun Sep 25 08:32:08 PDT 2011,166,107,9.624,64302.6,523396978,-947147140,151.8,25 -Sun Sep 25 08:32:09 PDT 2011,166,107,9.434,64311.96,523396000,-947146910,151.8,25 -Sun Sep 25 08:32:10 PDT 2011,167,106,9.018,64321.01,523395060,-947146670,151.8,25 -Sun Sep 25 08:32:11 PDT 2011,167,106,8.905,64329.95,523394146,-947146416,151.8,25 -Sun Sep 25 08:32:12 PDT 2011,167,105,8.832,64339.04,523393195,-947146146,151.8,25 -Sun Sep 25 08:32:13 PDT 2011,168,105,8.869,64348.58,523392206,-947145879,151.8,25 -Sun Sep 25 08:32:14 PDT 2011,168,105,8.76,64356.48,523391372,-947145646,151.8,25 -Sun Sep 25 08:32:15 PDT 2011,169,54,8.724,64365.24,523390463,-947145407,151.8,25 -Sun Sep 25 08:32:16 PDT 2011,169,100,8.404,64373.62,523389575,-947145177,151.8,25 -Sun Sep 25 08:32:17 PDT 2011,169,103,8.437,64382.08,523388667,-947144922,152.0,25 -Sun Sep 25 08:32:18 PDT 2011,170,105,8.677,64390.72,523387790,-947144650,152.2,25 -Sun Sep 25 08:32:19 PDT 2011,170,104,8.642,64399.34,523386882,-947144365,152.4,25 -Sun Sep 25 08:32:20 PDT 2011,171,103,8.642,64408.04,523385975,-947144090,152.4,25 -Sun Sep 25 08:32:21 PDT 2011,171,103,8.642,64416.63,523385055,-947143811,152.6,25 -Sun Sep 25 08:32:22 PDT 2011,172,103,8.607,64425.22,523384163,-947143537,152.8,25 -Sun Sep 25 08:32:23 PDT 2011,173,101,8.538,64434.53,523383151,-947143234,152.8,25 -Sun Sep 25 08:32:25 PDT 2011,173,99,8.404,64445.87,523381976,-947142879,153.0,25 -Sun Sep 25 08:32:25 PDT 2011,174,99,8.275,64450.58,523381465,-947142719,153.0,25 -Sun Sep 25 08:32:26 PDT 2011,175,99,8.243,64458.85,523380608,-947142467,153.2,25 -Sun Sep 25 08:32:27 PDT 2011,175,100,8.275,64467.26,523379717,-947142212,153.2,25 -Sun Sep 25 08:32:28 PDT 2011,176,100,8.307,64475.31,523378878,-947141973,153.2,25 -Sun Sep 25 08:32:29 PDT 2011,176,100,8.412,64483.76,523378000,-947141720,153.6,25 -Sun Sep 25 08:32:30 PDT 2011,177,99,8.347,64492.11,523377135,-947141471,153.8,25 -Sun Sep 25 08:32:31 PDT 2011,177,100,8.315,64500.38,523376244,-947141206,154.0,25 -Sun Sep 25 08:32:32 PDT 2011,178,98,8.315,64508.92,523375368,-947140932,154.2,25 -Sun Sep 25 08:32:33 PDT 2011,178,99,8.219,64517.75,523374428,-947140643,154.4,25 -Sun Sep 25 08:32:34 PDT 2011,178,99,8.219,64525.19,523373638,-947140425,154.4,25 -Sun Sep 25 08:32:35 PDT 2011,178,100,8.315,64533.5,523372774,-947140214,154.6,25 -Sun Sep 25 08:32:36 PDT 2011,179,103,8.513,64542.04,523371875,-947140012,154.8,25 -Sun Sep 25 08:32:37 PDT 2011,179,104,8.65,64550.65,523370973,-947139813,154.8,25 -Sun Sep 25 08:32:38 PDT 2011,180,108,8.756,64559.41,523370061,-947139594,155.0,25 -Sun Sep 25 08:32:39 PDT 2011,180,104,9.167,64568.58,523369099,-947139342,155.0,25 -Sun Sep 25 08:32:40 PDT 2011,180,104,9.286,64577.88,523368149,-947139091,155.2,25 -Sun Sep 25 08:32:41 PDT 2011,180,107,8.976,64586.85,523367171,-947138848,155.4,25 -Sun Sep 25 08:32:42 PDT 2011,181,110,8.876,64595.96,523366187,-947138612,155.6,25 -Sun Sep 25 08:32:43 PDT 2011,181,107,9.083,64605.71,523365162,-947138363,156.0,25 -Sun Sep 25 08:32:44 PDT 2011,180,107,9.064,64613.85,523364289,-947138150,156.2,25 -Sun Sep 25 08:32:45 PDT 2011,181,107,8.876,64622.76,523363346,-947137927,156.4,25 -Sun Sep 25 08:32:46 PDT 2011,181,93,8.66,64631.35,523362394,-947137727,156.4,25 -Sun Sep 25 08:32:47 PDT 2011,180,95,8.625,64640.04,523361462,-947137547,156.6,25 -Sun Sep 25 08:32:48 PDT 2011,180,99,8.876,64648.9,523360527,-947137368,156.8,25 -Sun Sep 25 08:32:49 PDT 2011,179,100,9.22,64658.13,523359561,-947137171,157.0,25 -Sun Sep 25 08:32:50 PDT 2011,179,100,9.341,64667.39,523358568,-947136941,157.0,25 -Sun Sep 25 08:32:51 PDT 2011,179,23,9.141,64676.58,523357582,-947136686,157.2,25 -Sun Sep 25 08:32:52 PDT 2011,178,99,8.987,64685.51,523356587,-947136426,157.2,25 -Sun Sep 25 08:32:53 PDT 2011,178,95,9.18,64695.64,523355530,-947136163,157.2,25 -Sun Sep 25 08:32:54 PDT 2011,177,91,9.381,64704.05,523354632,-947135948,157.4,25 -Sun Sep 25 08:32:55 PDT 2011,177,93,9.464,64713.54,523353638,-947135724,157.4,25 -Sun Sep 25 08:32:56 PDT 2011,177,93,9.59,64723.19,523352638,-947135513,157.4,25 -Sun Sep 25 08:32:57 PDT 2011,176,93,9.721,64732.85,523351591,-947135302,157.6,25 -Sun Sep 25 08:32:58 PDT 2011,176,0,9.765,64742.69,523350579,-947135108,157.4,25 -Sun Sep 25 08:32:59 PDT 2011,175,0,9.721,64752.4,523349508,-947134887,157.2,25 -Sun Sep 25 08:33:00 PDT 2011,174,96,9.809,64762.22,523348468,-947134652,157.2,25 -Sun Sep 25 08:33:01 PDT 2011,174,99,9.992,64772.1,523347417,-947134407,157.0,25 -Sun Sep 25 08:33:02 PDT 2011,173,101,10.23,64782.63,523346319,-947134141,157.0,25 -Sun Sep 25 08:33:03 PDT 2011,173,93,10.531,64793.86,523345121,-947133874,156.8,25 -Sun Sep 25 08:33:04 PDT 2011,173,91,10.905,64803.83,523344104,-947133665,156.8,25 -Sun Sep 25 08:33:05 PDT 2011,173,91,11.199,64815.02,523342894,-947133426,156.6,25 -Sun Sep 25 08:33:06 PDT 2011,173,91,11.199,64826.23,523341703,-947133215,156.6,25 -Sun Sep 25 08:33:07 PDT 2011,173,0,11.318,64837.48,523340461,-947132998,156.2,25 -Sun Sep 25 08:33:08 PDT 2011,172,0,11.469,64848.92,523339236,-947132759,156.0,25 -Sun Sep 25 08:33:09 PDT 2011,171,94,11.753,64860.66,523337976,-947132507,155.6,25 -Sun Sep 25 08:33:10 PDT 2011,171,96,11.983,64872.71,523336725,-947132269,155.2,25 -Sun Sep 25 08:33:11 PDT 2011,170,95,12.4,64885.01,523335375,-947132014,154.8,25 -Sun Sep 25 08:33:12 PDT 2011,170,95,12.809,64898.0,523334022,-947131765,154.6,25 -Sun Sep 25 08:33:13 PDT 2011,169,0,12.964,64912.22,523332477,-947131462,154.2,25 -Sun Sep 25 08:33:14 PDT 2011,169,0,12.972,64923.92,523331209,-947131189,154.0,25 -Sun Sep 25 08:33:15 PDT 2011,168,0,13.337,64937.18,523329757,-947130836,153.4,25 -Sun Sep 25 08:33:16 PDT 2011,167,0,13.463,64950.62,523328321,-947130479,153.0,25 -Sun Sep 25 08:33:17 PDT 2011,166,0,13.592,64964.31,523326873,-947130115,152.4,25 -Sun Sep 25 08:33:18 PDT 2011,165,0,13.592,64977.98,523325381,-947129757,151.8,25 -Sun Sep 25 08:33:19 PDT 2011,164,0,13.421,64991.36,523323925,-947129425,151.4,25 -Sun Sep 25 08:33:20 PDT 2011,162,0,13.227,65004.56,523322489,-947129112,150.8,25 -Sun Sep 25 08:33:21 PDT 2011,161,0,13.254,65017.84,523321048,-947128804,150.2,25 -Sun Sep 25 08:33:22 PDT 2011,160,0,13.213,65031.24,523319611,-947128495,149.6,25 -Sun Sep 25 08:33:23 PDT 2011,158,0,13.049,65045.26,523318150,-947128185,149.0,25 -Sun Sep 25 08:33:24 PDT 2011,157,0,12.815,65056.86,523316900,-947127923,148.6,25 -Sun Sep 25 08:33:25 PDT 2011,156,0,12.589,65069.5,523315545,-947127658,148.0,25 -Sun Sep 25 08:33:26 PDT 2011,155,0,12.515,65081.97,523314228,-947127405,147.4,25 -Sun Sep 25 08:33:27 PDT 2011,154,97,12.16,65094.11,523312923,-947127142,146.8,25 -Sun Sep 25 08:33:28 PDT 2011,154,98,12.264,65106.33,523311613,-947126900,146.4,25 -Sun Sep 25 08:33:29 PDT 2011,155,97,12.194,65118.57,523310329,-947126662,146.0,25 -Sun Sep 25 08:33:30 PDT 2011,156,97,12.16,65130.62,523309026,-947126430,145.6,25 -Sun Sep 25 08:33:31 PDT 2011,156,97,12.177,65142.97,523307748,-947126166,145.2,25 -Sun Sep 25 08:33:32 PDT 2011,157,97,12.177,65155.1,523306443,-947125880,145.0,25 -Sun Sep 25 08:33:33 PDT 2011,159,97,12.177,65168.52,523305055,-947125554,144.8,25 -Sun Sep 25 08:33:34 PDT 2011,160,97,12.108,65179.34,523303893,-947125274,144.4,25 -Sun Sep 25 08:33:35 PDT 2011,161,97,12.247,65191.75,523302610,-947124954,144.2,25 -Sun Sep 25 08:33:37 PDT 2011,164,96,12.177,65210.66,523300604,-947124451,144.0,25 -Sun Sep 25 08:33:37 PDT 2011,164,96,11.973,65215.89,523300044,-947124310,143.8,25 -Sun Sep 25 08:33:38 PDT 2011,165,94,11.776,65227.77,523298793,-947123993,143.6,25 -Sun Sep 25 08:33:39 PDT 2011,165,96,11.973,65241.8,523297308,-947123622,143.6,25 -Sun Sep 25 08:33:40 PDT 2011,166,97,12.017,65251.73,523296300,-947123362,143.4,25 -Sun Sep 25 08:33:41 PDT 2011,167,99,12.223,65263.96,523294985,-947123007,143.2,25 -Sun Sep 25 08:33:42 PDT 2011,168,100,12.364,65277.59,523293544,-947122599,143.2,25 -Sun Sep 25 08:33:43 PDT 2011,169,102,12.657,65288.86,523292338,-947122253,143.0,25 -Sun Sep 25 08:33:44 PDT 2011,170,103,12.732,65301.63,523290984,-947121894,143.0,25 -Sun Sep 25 08:33:45 PDT 2011,170,103,12.732,65314.29,523289611,-947121569,143.0,25 -Sun Sep 25 08:33:46 PDT 2011,171,102,12.964,65327.27,523288238,-947121241,142.8,25 -Sun Sep 25 08:33:47 PDT 2011,172,102,12.657,65339.95,523286884,-947120921,142.8,25 -Sun Sep 25 08:33:48 PDT 2011,172,102,12.732,65352.65,523285505,-947120591,142.8,25 -Sun Sep 25 08:33:49 PDT 2011,173,103,12.911,65365.45,523284145,-947120273,142.6,25 -Sun Sep 25 08:33:50 PDT 2011,173,102,12.757,65378.39,523282794,-947119971,142.6,25 -Sun Sep 25 08:33:51 PDT 2011,173,102,12.757,65391.22,523281420,-947119649,142.6,25 -Sun Sep 25 08:33:52 PDT 2011,173,102,12.833,65405.38,523279956,-947119287,142.6,25 -Sun Sep 25 08:33:53 PDT 2011,173,102,12.46,65416.38,523278764,-947118975,142.6,25 -Sun Sep 25 08:33:54 PDT 2011,173,19,12.247,65428.72,523277474,-947118619,142.6,25 -Sun Sep 25 08:33:55 PDT 2011,173,19,12.317,65441.06,523276180,-947118274,142.4,25 -Sun Sep 25 08:33:56 PDT 2011,172,98,12.317,65453.38,523274888,-947117934,142.4,25 -Sun Sep 25 08:33:57 PDT 2011,173,98,12.247,65465.61,523273620,-947117570,142.4,25 -Sun Sep 25 08:33:58 PDT 2011,172,26,12.12,65477.72,523272334,-947117143,142.4,25 -Sun Sep 25 08:33:59 PDT 2011,172,95,11.787,65489.54,523271079,-947116748,142.4,25 -Sun Sep 25 08:34:00 PDT 2011,172,95,11.659,65501.1,523269857,-947116373,142.2,25 -Sun Sep 25 08:34:01 PDT 2011,171,95,11.29,65512.56,523268645,-947116023,142.0,25 -Sun Sep 25 08:34:02 PDT 2011,170,0,11.001,65524.66,523267391,-947115679,141.8,25 -Sun Sep 25 08:34:03 PDT 2011,169,93,10.78,65534.06,523266387,-947115426,141.6,25 -Sun Sep 25 08:34:04 PDT 2011,169,97,10.945,65545.12,523265253,-947115137,141.4,25 -Sun Sep 25 08:34:05 PDT 2011,169,98,11.29,65556.44,523264099,-947114862,141.4,25 -Sun Sep 25 08:34:06 PDT 2011,169,99,11.533,65567.99,523262896,-947114598,141.2,25 -Sun Sep 25 08:34:07 PDT 2011,170,99,11.627,65579.7,523261663,-947114302,141.0,25 -Sun Sep 25 08:34:08 PDT 2011,170,113,11.585,65591.22,523260399,-947114000,141.0,25 -Sun Sep 25 08:34:09 PDT 2011,172,114,11.679,65603.01,523259139,-947113727,141.0,25 -Sun Sep 25 08:34:10 PDT 2011,172,116,11.841,65614.81,523257867,-947113427,140.8,25 -Sun Sep 25 08:34:11 PDT 2011,173,118,11.973,65626.83,523256579,-947113102,140.8,25 -Sun Sep 25 08:34:12 PDT 2011,174,116,12.177,65640.02,523255180,-947112749,140.6,25 -Sun Sep 25 08:34:13 PDT 2011,176,116,12.177,65650.97,523254014,-947112443,140.6,25 -Sun Sep 25 08:34:14 PDT 2011,177,116,11.94,65663.04,523252748,-947112107,140.6,25 -Sun Sep 25 08:34:15 PDT 2011,177,0,11.585,65674.52,523251490,-947111781,140.6,25 -Sun Sep 25 08:34:16 PDT 2011,178,0,10.879,65685.47,523250322,-947111493,140.4,25 -Sun Sep 25 08:34:17 PDT 2011,178,106,10.767,65696.15,523249153,-947111231,140.4,25 -Sun Sep 25 08:34:18 PDT 2011,178,102,11.043,65707.18,523248016,-947110990,140.4,25 -Sun Sep 25 08:34:19 PDT 2011,178,102,10.931,65718.21,523246916,-947110781,140.4,25 -Sun Sep 25 08:34:20 PDT 2011,178,102,10.428,65728.64,523245817,-947110554,140.4,25 -Sun Sep 25 08:34:21 PDT 2011,177,0,9.969,65738.72,523244748,-947110302,140.4,25 -Sun Sep 25 08:34:22 PDT 2011,177,0,9.282,65748.94,523243694,-947110029,140.4,25 -Sun Sep 25 08:34:23 PDT 2011,177,0,8.718,65756.63,523242878,-947109814,140.2,25 -Sun Sep 25 08:34:24 PDT 2011,176,0,8.379,65765.09,523242043,-947109592,140.2,25 -Sun Sep 25 08:34:25 PDT 2011,175,0,7.946,65773.04,523241249,-947109382,140.2,25 -Sun Sep 25 08:34:26 PDT 2011,174,0,7.503,65780.51,523240488,-947109190,140.2,25 -Sun Sep 25 08:34:27 PDT 2011,173,0,7.037,65787.58,523239776,-947109005,140.2,25 -Sun Sep 25 08:34:28 PDT 2011,173,0,6.814,65794.49,523239089,-947108836,140.2,25 -Sun Sep 25 08:34:29 PDT 2011,172,0,6.352,65802.09,523238279,-947108665,140.2,25 -Sun Sep 25 08:34:30 PDT 2011,172,0,6.152,65807.04,523237775,-947108612,140.2,25 -Sun Sep 25 08:34:31 PDT 2011,171,0,5.742,65812.69,523237175,-947108589,140.2,25 -Sun Sep 25 08:34:32 PDT 2011,171,0,4.621,65817.78,523236602,-947108608,140.2,25 -Sun Sep 25 08:34:33 PDT 2011,170,0,3.601,65820.94,523236206,-947108644,140.2,25 -Sun Sep 25 08:34:34 PDT 2011,170,0,3.297,65824.28,523235870,-947108666,140.2,25 -Sun Sep 25 08:34:35 PDT 2011,169,0,2.582,65826.86,523235621,-947108661,140.2,25 -Sun Sep 25 08:34:36 PDT 2011,169,0,2.387,65829.26,523235418,-947108644,140.2,25 -Sun Sep 25 08:34:37 PDT 2011,168,0,2.387,65831.65,523235242,-947108615,140.2,25 -Sun Sep 25 08:34:38 PDT 2011,167,0,2.19,65833.82,523235123,-947108582,140.2,25 -Sun Sep 25 08:34:39 PDT 2011,165,0,1.155,65834.98,523235000,-947108614,140.2,25 -Sun Sep 25 08:34:42 PDT 2011,165,0,1.828,65834.98,523234363,-947108732,140.2,25 -Sun Sep 25 08:34:43 PDT 2011,164,0,1.959,65836.53,523234085,-947108658,140.2,25 -Sun Sep 25 08:34:44 PDT 2011,165,36,1.959,65838.41,523233710,-947108515,140.2,25 -Sun Sep 25 08:34:45 PDT 2011,166,65,4.376,65843.48,523233145,-947108271,140.2,25 -Sun Sep 25 08:34:46 PDT 2011,166,65,5.265,65847.97,523232672,-947108043,140.2,25 -Sun Sep 25 08:34:47 PDT 2011,167,73,6.1,65854.1,523232017,-947107729,140.2,25 -Sun Sep 25 08:34:48 PDT 2011,168,40,6.687,65860.74,523231354,-947107408,140.2,25 -Sun Sep 25 08:34:49 PDT 2011,169,83,6.466,65867.22,523230662,-947107067,140.2,25 -Sun Sep 25 08:34:50 PDT 2011,169,87,7.06,65874.22,523229937,-947106756,140.2,25 -Sun Sep 25 08:34:51 PDT 2011,170,94,7.451,65881.8,523229176,-947106491,140.2,25 -Sun Sep 25 08:34:52 PDT 2011,171,97,7.975,65890.58,523228282,-947106267,140.2,25 -Sun Sep 25 08:34:53 PDT 2011,172,99,8.219,65897.88,523227487,-947106101,140.2,25 -Sun Sep 25 08:34:54 PDT 2011,173,104,8.314,65906.19,523226598,-947105931,140.2,25 -Sun Sep 25 08:34:55 PDT 2011,174,107,8.648,65914.86,523225689,-947105710,140.2,25 -Sun Sep 25 08:34:56 PDT 2011,174,106,8.898,65923.63,523224752,-947105451,140.2,25 -Sun Sep 25 08:34:57 PDT 2011,175,98,9.048,65932.68,523223797,-947105180,140.2,25 -Sun Sep 25 08:34:58 PDT 2011,176,100,9.086,65941.89,523222820,-947104912,140.2,25 -Sun Sep 25 08:34:59 PDT 2011,176,100,9.302,65951.18,523221828,-947104671,140.2,25 -Sun Sep 25 08:35:00 PDT 2011,176,100,9.086,65960.26,523220840,-947104438,140.2,25 -Sun Sep 25 08:35:01 PDT 2011,177,95,8.683,65969.01,523219872,-947104186,140.2,25 -Sun Sep 25 08:35:02 PDT 2011,176,98,8.862,65978.72,523218848,-947103894,140.2,25 -Sun Sep 25 08:35:03 PDT 2011,176,99,9.086,65986.82,523218031,-947103613,140.2,25 -Sun Sep 25 08:35:04 PDT 2011,176,102,9.322,65996.24,523217105,-947103289,140.2,25 -Sun Sep 25 08:35:05 PDT 2011,177,103,9.57,66005.7,523216139,-947102970,140.2,25 -Sun Sep 25 08:35:06 PDT 2011,177,103,9.57,66015.26,523215142,-947102676,140.2,25 -Sun Sep 25 08:35:07 PDT 2011,177,104,9.613,66024.91,523214116,-947102397,140.2,25 -Sun Sep 25 08:35:08 PDT 2011,177,108,9.7,66034.63,523213074,-947102120,140.2,25 -Sun Sep 25 08:35:09 PDT 2011,177,110,10.062,66044.69,523212019,-947101826,140.4,25 -Sun Sep 25 08:35:10 PDT 2011,177,99,10.254,66055.0,523210971,-947101510,140.6,25 -Sun Sep 25 08:35:11 PDT 2011,177,99,10.157,66065.15,523209856,-947101177,140.8,25 -Sun Sep 25 08:35:12 PDT 2011,178,98,10.254,66076.5,523208684,-947100849,141.0,25 -Sun Sep 25 08:35:13 PDT 2011,178,98,10.157,66085.59,523207708,-947100584,141.0,25 -Sun Sep 25 08:35:14 PDT 2011,178,99,10.206,66095.75,523206629,-947100321,141.2,25 -Sun Sep 25 08:35:15 PDT 2011,178,100,10.254,66105.9,523205542,-947100051,141.4,25 -Sun Sep 25 08:35:16 PDT 2011,178,101,10.403,66116.44,523204476,-947099767,141.4,25 -Sun Sep 25 08:35:17 PDT 2011,178,101,10.403,66126.67,523203349,-947099476,141.6,25 -Sun Sep 25 08:35:18 PDT 2011,179,101,10.504,66137.25,523202240,-947099214,141.6,25 -Sun Sep 25 08:35:19 PDT 2011,179,101,10.504,66147.67,523201122,-947098966,141.8,25 -Sun Sep 25 08:35:20 PDT 2011,178,98,10.337,66158.15,523200035,-947098746,141.8,25 -Sun Sep 25 08:35:21 PDT 2011,178,99,10.215,66168.41,523198928,-947098504,141.8,25 -Sun Sep 25 08:35:22 PDT 2011,178,111,10.191,66179.67,523197772,-947098238,142.0,25 -Sun Sep 25 08:35:23 PDT 2011,177,114,10.488,66188.88,523196778,-947098013,142.0,25 -Sun Sep 25 08:35:24 PDT 2011,177,114,10.539,66199.48,523195678,-947097806,142.0,25 -Sun Sep 25 08:35:25 PDT 2011,177,30,10.337,66209.91,523194595,-947097622,142.0,25 -Sun Sep 25 08:35:26 PDT 2011,177,107,10.191,66219.99,523193484,-947097432,142.2,25 -Sun Sep 25 08:35:27 PDT 2011,177,99,10.215,66230.34,523192417,-947097239,142.2,25 -Sun Sep 25 08:35:28 PDT 2011,177,98,10.337,66240.67,523191361,-947097028,142.2,25 -Sun Sep 25 08:35:29 PDT 2011,176,98,10.24,66250.84,523190273,-947096773,142.2,25 -Sun Sep 25 08:35:30 PDT 2011,176,98,10.191,66261.15,523189207,-947096508,142.2,25 -Sun Sep 25 08:35:31 PDT 2011,176,21,10.002,66271.14,523188122,-947096214,142.2,25 -Sun Sep 25 08:35:32 PDT 2011,176,100,10.215,66282.34,523186970,-947095841,142.2,25 -Sun Sep 25 08:35:33 PDT 2011,175,102,10.488,66291.71,523185999,-947095515,142.4,25 -Sun Sep 25 08:35:34 PDT 2011,175,102,10.643,66302.46,523184931,-947095159,142.4,25 -Sun Sep 25 08:35:35 PDT 2011,175,102,10.591,66312.9,523183802,-947094803,142.4,25 -Sun Sep 25 08:35:36 PDT 2011,175,102,10.387,66323.3,523182704,-947094474,142.4,25 -Sun Sep 25 08:35:37 PDT 2011,175,0,10.096,66333.49,523181628,-947094168,142.4,25 -Sun Sep 25 08:35:38 PDT 2011,175,0,10.096,66343.44,523180573,-947093859,142.4,25 -Sun Sep 25 08:35:39 PDT 2011,175,0,9.865,66353.37,523179545,-947093555,142.4,25 -Sun Sep 25 08:35:40 PDT 2011,175,21,9.602,66362.9,523178525,-947093277,142.4,25 -Sun Sep 25 08:35:41 PDT 2011,175,103,9.518,66372.65,523177511,-947093022,142.4,25 -Sun Sep 25 08:35:42 PDT 2011,174,104,9.589,66383.08,523176395,-947092772,142.4,25 -Sun Sep 25 08:35:43 PDT 2011,174,105,9.632,66391.69,523175505,-947092591,142.4,25 -Sun Sep 25 08:35:44 PDT 2011,175,107,9.762,66401.35,523174493,-947092380,142.4,25 -Sun Sep 25 08:35:45 PDT 2011,174,111,10.105,66411.61,523173433,-947092157,142.4,25 -Sun Sep 25 08:35:46 PDT 2011,175,113,10.473,66422.07,523172344,-947091929,142.4,25 -Sun Sep 25 08:35:47 PDT 2011,175,112,10.423,66432.61,523171251,-947091673,142.4,25 -Sun Sep 25 08:35:48 PDT 2011,175,100,10.423,66442.95,523170135,-947091382,142.4,25 -Sun Sep 25 08:35:49 PDT 2011,174,101,10.423,66453.46,523169036,-947091088,142.4,25 -Sun Sep 25 08:35:50 PDT 2011,175,101,10.423,66463.78,523167942,-947090786,142.4,25 -Sun Sep 25 08:35:51 PDT 2011,175,101,10.473,66474.35,523166864,-947090490,142.4,25 -Sun Sep 25 08:35:52 PDT 2011,175,102,10.524,66485.87,523165669,-947090179,142.4,25 -Sun Sep 25 08:35:53 PDT 2011,175,103,10.63,66495.36,523164675,-947089908,142.4,25 -Sun Sep 25 08:35:54 PDT 2011,175,104,10.736,66506.09,523163560,-947089608,142.4,25 -Sun Sep 25 08:35:55 PDT 2011,175,102,10.683,66516.76,523162441,-947089294,142.4,25 -Sun Sep 25 08:35:56 PDT 2011,175,104,10.577,66527.32,523161314,-947088931,142.4,25 -Sun Sep 25 08:35:57 PDT 2011,175,106,10.736,66538.08,523160197,-947088535,142.4,25 -Sun Sep 25 08:35:58 PDT 2011,175,106,10.9,66549.03,523159104,-947088159,142.4,25 -Sun Sep 25 08:35:59 PDT 2011,175,106,11.011,66560.0,523157947,-947087805,142.4,25 -Sun Sep 25 08:36:00 PDT 2011,176,106,10.983,66570.96,523156797,-947087502,142.4,25 -Sun Sep 25 08:36:01 PDT 2011,175,106,10.79,66581.83,523155634,-947087206,142.4,25 -Sun Sep 25 08:36:02 PDT 2011,175,0,10.373,66593.37,523154397,-947086915,142.4,25 -Sun Sep 25 08:36:03 PDT 2011,175,104,10.081,66602.34,523153423,-947086708,142.4,25 -Sun Sep 25 08:36:04 PDT 2011,175,108,9.987,66612.35,523152373,-947086472,142.4,25 -Sun Sep 25 08:36:05 PDT 2011,174,108,10.081,66622.24,523151346,-947086228,142.4,25 -Sun Sep 25 08:36:06 PDT 2011,175,108,9.918,66632.39,523150336,-947085974,142.4,25 -Sun Sep 25 08:36:07 PDT 2011,175,0,9.501,66641.81,523149331,-947085695,142.4,25 -Sun Sep 25 08:36:08 PDT 2011,174,101,9.295,66651.01,523148347,-947085410,142.4,25 -Sun Sep 25 08:36:09 PDT 2011,174,102,9.336,66660.46,523147378,-947085158,142.4,25 -Sun Sep 25 08:36:10 PDT 2011,174,103,9.418,66669.83,523146401,-947084927,142.4,25 -Sun Sep 25 08:36:11 PDT 2011,173,103,9.501,66679.4,523145394,-947084652,142.4,25 -Sun Sep 25 08:36:12 PDT 2011,173,105,9.57,66689.86,523144294,-947084362,142.4,25 -Sun Sep 25 08:36:13 PDT 2011,173,106,9.7,66698.53,523143379,-947084130,142.4,25 -Sun Sep 25 08:36:14 PDT 2011,173,107,9.833,66708.39,523142343,-947083886,142.4,25 -Sun Sep 25 08:36:15 PDT 2011,174,107,9.833,66718.19,523141298,-947083649,142.4,25 -Sun Sep 25 08:36:16 PDT 2011,173,107,9.923,66728.19,523140263,-947083428,142.4,25 -Sun Sep 25 08:36:17 PDT 2011,174,107,9.901,66738.03,523139188,-947083188,142.4,25 -Sun Sep 25 08:36:18 PDT 2011,174,109,9.923,66747.95,523138115,-947082918,142.4,25 -Sun Sep 25 08:36:19 PDT 2011,174,114,10.303,66758.17,523137035,-947082629,142.4,25 -Sun Sep 25 08:36:20 PDT 2011,175,115,10.608,66768.88,523135934,-947082336,142.4,25 -Sun Sep 25 08:36:21 PDT 2011,176,113,10.608,66779.58,523134798,-947082033,142.4,25 -Sun Sep 25 08:36:22 PDT 2011,176,115,10.608,66791.23,523133568,-947081693,142.4,25 -Sun Sep 25 08:36:23 PDT 2011,177,115,10.588,66800.54,523132568,-947081423,142.4,25 -Sun Sep 25 08:36:24 PDT 2011,177,114,10.588,66811.21,523131455,-947081089,142.4,25 -Sun Sep 25 08:36:25 PDT 2011,178,112,10.484,66821.69,523130362,-947080742,142.4,25 -Sun Sep 25 08:36:26 PDT 2011,179,112,10.383,66832.16,523129274,-947080420,142.4,25 -Sun Sep 25 08:36:27 PDT 2011,179,112,10.383,66842.42,523128194,-947080133,142.4,25 -Sun Sep 25 08:36:28 PDT 2011,180,112,10.308,66852.83,523127126,-947079858,142.4,25 -Sun Sep 25 08:36:29 PDT 2011,181,100,10.308,66863.19,523126068,-947079587,142.4,25 -Sun Sep 25 08:36:30 PDT 2011,181,101,10.333,66873.51,523125016,-947079290,142.4,25 -Sun Sep 25 08:36:31 PDT 2011,182,101,10.383,66884.07,523123917,-947078963,142.4,25 -Sun Sep 25 08:36:32 PDT 2011,182,101,10.433,66895.44,523122742,-947078645,142.6,25 -Sun Sep 25 08:36:33 PDT 2011,182,99,10.358,66904.59,523121774,-947078389,142.8,25 -Sun Sep 25 08:36:34 PDT 2011,182,99,10.21,66914.91,523120707,-947078116,143.0,25 -Sun Sep 25 08:36:35 PDT 2011,182,99,9.927,66924.68,523119624,-947077813,143.2,25 -Sun Sep 25 08:36:36 PDT 2011,183,21,9.572,66934.29,523118621,-947077475,143.4,25 -Sun Sep 25 08:36:37 PDT 2011,182,97,9.242,66943.69,523117657,-947077143,143.6,25 -Sun Sep 25 08:36:38 PDT 2011,181,97,9.282,66952.81,523116719,-947076841,143.6,25 -Sun Sep 25 08:36:39 PDT 2011,181,23,8.897,66963.05,523115655,-947076523,143.8,25 -Sun Sep 25 08:36:40 PDT 2011,181,93,8.508,66970.15,523114893,-947076317,143.8,25 -Sun Sep 25 08:36:41 PDT 2011,181,103,8.475,66978.81,523113986,-947076082,144.2,25 -Sun Sep 25 08:36:42 PDT 2011,180,106,8.611,66987.46,523113078,-947075879,144.4,25 -Sun Sep 25 08:36:43 PDT 2011,180,107,8.897,66996.99,523112084,-947075674,144.6,25 -Sun Sep 25 08:36:44 PDT 2011,180,107,8.934,67006.51,523111115,-947075494,144.8,25 -Sun Sep 25 08:36:45 PDT 2011,180,106,8.934,67014.17,523110310,-947075347,145.0,25 -Sun Sep 25 08:36:46 PDT 2011,180,107,8.934,67023.24,523109371,-947075172,145.2,25 -Sun Sep 25 08:36:47 PDT 2011,180,107,8.934,67032.14,523108433,-947074986,145.4,25 -Sun Sep 25 08:36:48 PDT 2011,180,108,8.934,67041.0,523107491,-947074798,145.4,25 -Sun Sep 25 08:36:49 PDT 2011,179,105,9.047,67049.87,523106528,-947074603,145.6,25 -Sun Sep 25 08:36:50 PDT 2011,180,105,9.085,67059.0,523105569,-947074388,145.6,25 -Sun Sep 25 08:36:51 PDT 2011,179,29,8.681,67067.77,523104621,-947074168,145.8,25 -Sun Sep 25 08:36:52 PDT 2011,180,106,8.716,67076.43,523103675,-947073955,145.8,25 -Sun Sep 25 08:36:53 PDT 2011,179,108,8.971,67085.58,523102720,-947073748,146.0,25 -Sun Sep 25 08:36:54 PDT 2011,179,109,9.047,67094.53,523101751,-947073542,146.0,25 -Sun Sep 25 08:36:55 PDT 2011,180,110,9.047,67103.63,523100774,-947073328,146.2,25 -Sun Sep 25 08:36:56 PDT 2011,180,110,9.202,67113.76,523099695,-947073073,146.2,25 -Sun Sep 25 08:36:57 PDT 2011,180,110,8.979,67121.87,523098823,-947072848,146.2,25 -Sun Sep 25 08:36:58 PDT 2011,179,0,8.617,67130.47,523097902,-947072622,146.2,25 -Sun Sep 25 08:36:59 PDT 2011,179,0,8.315,67138.71,523096987,-947072407,146.4,25 -Sun Sep 25 08:37:00 PDT 2011,179,101,8.315,67147.11,523096087,-947072200,146.4,25 -Sun Sep 25 08:37:01 PDT 2011,178,102,8.48,67155.53,523095183,-947071977,146.4,25 -Sun Sep 25 08:37:02 PDT 2011,178,107,8.617,67164.15,523094256,-947071733,146.4,25 -Sun Sep 25 08:37:03 PDT 2011,178,107,8.83,67173.01,523093301,-947071471,146.4,25 -Sun Sep 25 08:37:04 PDT 2011,178,109,9.017,67182.07,523092345,-947071200,146.4,25 -Sun Sep 25 08:37:05 PDT 2011,178,112,9.093,67191.15,523091365,-947070921,146.4,25 -Sun Sep 25 08:37:06 PDT 2011,178,114,9.251,67201.22,523090269,-947070634,146.6,25 -Sun Sep 25 08:37:07 PDT 2011,178,117,9.54,67209.83,523089340,-947070458,146.6,25 -Sun Sep 25 08:37:08 PDT 2011,178,117,9.758,67219.56,523088280,-947070275,146.6,25 -Sun Sep 25 08:37:09 PDT 2011,178,115,9.665,67229.29,523087203,-947070092,146.6,25 -Sun Sep 25 08:37:10 PDT 2011,179,112,9.493,67238.86,523086157,-947069895,146.6,25 -Sun Sep 25 08:37:11 PDT 2011,179,104,9.536,67248.28,523085118,-947069673,146.6,25 -Sun Sep 25 08:37:12 PDT 2011,179,103,9.578,67257.79,523084116,-947069422,146.6,25 -Sun Sep 25 08:37:13 PDT 2011,180,102,9.327,67267.29,523083132,-947069156,146.6,25 -Sun Sep 25 08:37:14 PDT 2011,180,103,9.368,67276.61,523082154,-947068871,146.6,25 -Sun Sep 25 08:37:15 PDT 2011,180,104,9.493,67286.14,523081184,-947068567,146.6,25 -Sun Sep 25 08:37:16 PDT 2011,181,104,9.578,67296.4,523080088,-947068202,146.6,25 -Sun Sep 25 08:37:17 PDT 2011,181,104,9.472,67305.75,523079096,-947067861,146.8,25 -Sun Sep 25 08:37:18 PDT 2011,181,105,9.451,67315.6,523078072,-947067534,147.0,25 -Sun Sep 25 08:37:19 PDT 2011,181,105,9.6,67324.11,523077162,-947067273,147.2,25 -Sun Sep 25 08:37:20 PDT 2011,181,105,9.798,67334.06,523076155,-947066993,147.4,25 -Sun Sep 25 08:37:21 PDT 2011,180,107,9.493,67343.39,523075163,-947066697,147.4,25 -Sun Sep 25 08:37:22 PDT 2011,180,39,9.695,67353.2,523074169,-947066400,147.6,25 -Sun Sep 25 08:37:23 PDT 2011,180,106,9.564,67362.79,523073175,-947066096,147.8,25 -Sun Sep 25 08:37:24 PDT 2011,180,109,9.784,67372.55,523072146,-947065805,147.8,25 -Sun Sep 25 08:37:25 PDT 2011,180,113,10.014,67382.4,523071084,-947065560,148.0,25 -Sun Sep 25 08:37:26 PDT 2011,181,113,10.354,67392.92,523069992,-947065337,148.0,25 -Sun Sep 25 08:37:27 PDT 2011,180,113,10.455,67403.34,523068880,-947065094,148.0,25 -Sun Sep 25 08:37:28 PDT 2011,181,113,10.205,67414.36,523067665,-947064799,148.2,25 -Sun Sep 25 08:37:29 PDT 2011,181,0,9.92,67423.36,523066658,-947064549,148.2,25 -Sun Sep 25 08:37:30 PDT 2011,181,0,9.651,67433.21,523065600,-947064268,148.2,25 -Sun Sep 25 08:37:31 PDT 2011,180,102,9.314,67442.44,523064578,-947063994,148.2,25 -Sun Sep 25 08:37:32 PDT 2011,181,115,9.233,67451.73,523063571,-947063731,148.4,25 -Sun Sep 25 08:37:33 PDT 2011,180,118,9.728,67461.44,523062571,-947063475,148.4,25 -Sun Sep 25 08:37:34 PDT 2011,181,109,9.954,67471.4,523061573,-947063205,148.4,25 -Sun Sep 25 08:37:35 PDT 2011,181,108,9.862,67481.09,523060517,-947062893,148.4,25 -Sun Sep 25 08:37:36 PDT 2011,181,109,10.0,67491.19,523059464,-947062564,148.4,25 -Sun Sep 25 08:37:37 PDT 2011,181,110,10.047,67501.31,523058412,-947062239,148.4,25 -Sun Sep 25 08:37:38 PDT 2011,181,112,10.191,67511.53,523057311,-947061908,148.6,25 -Sun Sep 25 08:37:39 PDT 2011,181,116,10.289,67522.76,523056123,-947061566,148.6,25 -Sun Sep 25 08:37:40 PDT 2011,181,120,10.647,67532.36,523055117,-947061307,148.6,25 -Sun Sep 25 08:37:41 PDT 2011,182,117,11.031,67543.48,523053957,-947061018,148.6,25 -Sun Sep 25 08:37:42 PDT 2011,182,117,11.264,67554.65,523052766,-947060717,148.6,25 -Sun Sep 25 08:37:43 PDT 2011,182,117,11.204,67565.93,523051569,-947060408,148.6,25 -Sun Sep 25 08:37:44 PDT 2011,182,117,11.002,67576.85,523050387,-947060081,148.6,25 -Sun Sep 25 08:37:45 PDT 2011,182,0,10.697,67587.48,523049233,-947059744,148.6,25 -Sun Sep 25 08:37:46 PDT 2011,182,0,10.487,67598.11,523048121,-947059436,148.6,25 -Sun Sep 25 08:37:47 PDT 2011,182,0,10.284,67608.2,523047023,-947059164,148.6,25 -Sun Sep 25 08:37:48 PDT 2011,181,104,9.948,67618.27,523045938,-947058925,148.6,25 -Sun Sep 25 08:37:49 PDT 2011,181,50,10.089,67629.11,523044773,-947058687,148.6,25 -Sun Sep 25 08:37:50 PDT 2011,180,113,10.186,67639.3,523043694,-947058440,148.6,25 -Sun Sep 25 08:37:51 PDT 2011,180,114,10.384,67650.01,523042593,-947058166,148.6,25 -Sun Sep 25 08:37:52 PDT 2011,180,36,10.461,67659.15,523041615,-947057892,148.4,25 -Sun Sep 25 08:37:53 PDT 2011,179,101,10.284,67669.49,523040500,-947057569,148.2,25 -Sun Sep 25 08:37:54 PDT 2011,179,101,10.374,67679.77,523039386,-947057255,148.2,25 -Sun Sep 25 08:37:55 PDT 2011,179,101,10.176,67690.02,523038286,-947056962,148.0,25 -Sun Sep 25 08:37:56 PDT 2011,178,0,9.848,67699.76,523037223,-947056694,147.8,25 -Sun Sep 25 08:37:57 PDT 2011,178,0,9.803,67709.65,523036181,-947056444,147.8,25 -Sun Sep 25 08:37:58 PDT 2011,177,0,9.986,67719.95,523035150,-947056195,147.6,25 -Sun Sep 25 08:37:59 PDT 2011,177,0,9.803,67729.72,523034149,-947055967,147.6,25 -Sun Sep 25 08:38:00 PDT 2011,176,0,8.979,67738.52,523033207,-947055744,147.4,25 -Sun Sep 25 08:38:01 PDT 2011,176,0,7.915,67746.54,523032332,-947055553,147.4,25 -Sun Sep 25 08:38:02 PDT 2011,175,0,7.771,67754.29,523031565,-947055392,147.4,25 -Sun Sep 25 08:38:03 PDT 2011,174,0,6.471,67760.76,523030914,-947055275,147.2,25 -Sun Sep 25 08:38:04 PDT 2011,173,0,5.451,67766.19,523030360,-947055208,147.0,25 -Sun Sep 25 08:38:05 PDT 2011,172,0,5.356,67771.6,523029840,-947055140,146.8,25 -Sun Sep 25 08:38:06 PDT 2011,172,0,5.187,67777.11,523029321,-947055034,146.6,25 -Sun Sep 25 08:38:07 PDT 2011,171,0,4.918,67782.01,523028851,-947054980,146.4,25 -Sun Sep 25 08:38:08 PDT 2011,170,0,4.297,67786.4,523028416,-947054950,146.2,25 -Sun Sep 25 08:38:09 PDT 2011,169,0,3.544,67789.58,523028053,-947054972,146.0,25 -Sun Sep 25 08:38:10 PDT 2011,169,0,3.2,67792.72,523027705,-947055039,146.0,25 -Sun Sep 25 08:38:11 PDT 2011,169,0,2.825,67795.6,523027440,-947055117,145.8,25 -Sun Sep 25 08:38:12 PDT 2011,169,0,2.242,67797.85,523027261,-947055131,145.6,25 -Sun Sep 25 08:38:13 PDT 2011,168,0,1.598,67799.46,523027160,-947055131,145.6,25 -Sun Sep 25 08:38:35 PDT 2011,162,0,1.589,67799.46,523027035,-947054629,144.8,25 -Sun Sep 25 08:38:36 PDT 2011,161,0,1.99,67801.52,523026753,-947054558,144.8,25 -Sun Sep 25 08:38:37 PDT 2011,161,36,3.408,67804.89,523026392,-947054478,144.8,25 -Sun Sep 25 08:38:38 PDT 2011,162,36,4.467,67809.82,523025829,-947054369,144.6,25 -Sun Sep 25 08:38:39 PDT 2011,162,49,5.294,67814.29,523025312,-947054272,144.4,25 -Sun Sep 25 08:38:40 PDT 2011,163,64,6.04,67820.57,523024650,-947054095,144.2,25 -Sun Sep 25 08:38:41 PDT 2011,163,71,7.007,67827.54,523023899,-947053856,144.0,25 -Sun Sep 25 08:38:42 PDT 2011,164,77,7.74,67835.89,523022984,-947053467,143.8,25 -Sun Sep 25 08:38:43 PDT 2011,164,82,8.376,67844.2,523022019,-947053143,143.8,25 -Sun Sep 25 08:38:44 PDT 2011,165,46,8.971,67853.72,523020911,-947052831,143.6,25 -Sun Sep 25 08:38:45 PDT 2011,165,95,9.446,67861.88,523019960,-947052604,143.6,25 -Sun Sep 25 08:38:46 PDT 2011,166,97,9.836,67871.53,523018849,-947052398,143.2,25 -Sun Sep 25 08:38:47 PDT 2011,167,101,10.308,67881.8,523017735,-947052203,143.0,25 -Sun Sep 25 08:38:48 PDT 2011,167,101,10.511,67892.28,523016603,-947051966,142.8,25 -Sun Sep 25 08:38:49 PDT 2011,168,101,10.615,67902.87,523015452,-947051705,142.4,25 -Sun Sep 25 08:38:50 PDT 2011,168,21,10.667,67913.57,523014289,-947051430,142.4,25 -Sun Sep 25 08:38:51 PDT 2011,168,107,10.884,67924.31,523013114,-947051129,142.2,25 -Sun Sep 25 08:38:52 PDT 2011,169,110,11.11,67935.44,523011891,-947050657,142.0,25 -Sun Sep 25 08:38:53 PDT 2011,169,108,11.436,67946.87,523010625,-947050108,141.8,25 -Sun Sep 25 08:38:54 PDT 2011,169,101,11.781,67958.97,523009341,-947049610,141.6,25 -Sun Sep 25 08:38:55 PDT 2011,170,101,11.781,67970.57,523008044,-947049189,141.6,25 -Sun Sep 25 08:38:56 PDT 2011,170,101,11.653,67982.15,523006761,-947048843,141.2,25 -Sun Sep 25 08:38:57 PDT 2011,171,100,11.86,67994.22,523005511,-947048595,140.8,25 -Sun Sep 25 08:38:58 PDT 2011,171,100,11.827,68006.21,523004258,-947048336,140.4,25 -Sun Sep 25 08:38:59 PDT 2011,171,100,11.731,68017.87,523003020,-947048070,139.8,25 -Sun Sep 25 08:39:00 PDT 2011,171,0,11.636,68029.61,523001795,-947047810,139.4,25 -Sun Sep 25 08:39:01 PDT 2011,170,100,11.605,68041.11,523000582,-947047575,139.0,25 -Sun Sep 25 08:39:02 PDT 2011,170,100,11.86,68053.04,522999383,-947047337,138.6,25 -Sun Sep 25 08:39:03 PDT 2011,170,51,11.925,68065.07,522998150,-947047066,138.4,25 -Sun Sep 25 08:39:04 PDT 2011,169,103,12.014,68078.76,522996769,-947046709,138.2,25 -Sun Sep 25 08:39:05 PDT 2011,169,103,12.161,68089.11,522995697,-947046405,138.2,25 -Sun Sep 25 08:39:06 PDT 2011,169,104,12.195,68101.29,522994431,-947046020,138.0,25 -Sun Sep 25 08:39:07 PDT 2011,169,29,12.172,68113.36,522993161,-947045648,138.0,25 -Sun Sep 25 08:39:08 PDT 2011,169,105,12.206,68125.76,522991882,-947045303,138.0,25 -Sun Sep 25 08:39:09 PDT 2011,168,105,12.382,68138.15,522990599,-947044993,137.6,25 -Sun Sep 25 08:39:10 PDT 2011,168,105,12.382,68150.55,522989319,-947044668,137.4,25 -Sun Sep 25 08:39:11 PDT 2011,169,105,12.241,68162.62,522988037,-947044324,137.0,25 -Sun Sep 25 08:39:12 PDT 2011,168,0,11.87,68174.48,522986789,-947043974,136.8,25 -Sun Sep 25 08:39:13 PDT 2011,167,0,11.709,68186.36,522985558,-947043629,136.6,25 -Sun Sep 25 08:39:14 PDT 2011,166,0,11.773,68199.02,522984233,-947043276,136.4,25 -Sun Sep 25 08:39:15 PDT 2011,165,0,11.583,68210.85,522983017,-947042970,136.4,25 -Sun Sep 25 08:39:16 PDT 2011,165,0,11.557,68221.32,522981944,-947042696,136.2,25 -Sun Sep 25 08:39:17 PDT 2011,164,0,11.465,68232.61,522980741,-947042389,136.0,25 -Sun Sep 25 08:39:18 PDT 2011,163,0,11.496,68244.08,522979547,-947042099,136.0,25 -Sun Sep 25 08:39:19 PDT 2011,163,97,11.714,68255.86,522978342,-947041803,135.8,25 -Sun Sep 25 08:39:20 PDT 2011,163,97,11.941,68267.62,522977114,-947041486,135.6,25 -Sun Sep 25 08:39:21 PDT 2011,162,97,11.975,68279.8,522975868,-947041167,135.2,25 -Sun Sep 25 08:39:22 PDT 2011,162,0,11.651,68291.57,522974629,-947040862,135.0,25 -Sun Sep 25 08:39:23 PDT 2011,160,0,11.714,68303.22,522973392,-947040562,134.8,25 -Sun Sep 25 08:39:24 PDT 2011,160,96,11.811,68314.9,522972150,-947040277,134.6,25 -Sun Sep 25 08:39:25 PDT 2011,159,99,12.109,68327.17,522970879,-947039995,134.2,25 -Sun Sep 25 08:39:26 PDT 2011,160,103,12.605,68340.96,522969451,-947039651,133.8,25 -Sun Sep 25 08:39:27 PDT 2011,160,106,13.063,68352.6,522968228,-947039318,133.4,25 -Sun Sep 25 08:39:28 PDT 2011,161,108,13.43,68365.95,522966818,-947038915,133.2,25 -Sun Sep 25 08:39:29 PDT 2011,161,108,13.642,68379.81,522965374,-947038495,132.8,25 -Sun Sep 25 08:39:30 PDT 2011,161,106,13.472,68393.26,522963925,-947038108,132.2,25 -Sun Sep 25 08:39:31 PDT 2011,162,105,13.264,68406.51,522962482,-947037749,131.8,25 -Sun Sep 25 08:39:32 PDT 2011,163,105,13.264,68419.66,522961058,-947037434,131.4,25 -Sun Sep 25 08:39:33 PDT 2011,164,105,12.946,68432.67,522959680,-947037143,130.6,25 -Sun Sep 25 08:39:34 PDT 2011,164,103,12.642,68445.35,522958339,-947036854,130.0,25 -Sun Sep 25 08:39:35 PDT 2011,164,103,12.352,68457.64,522957054,-947036523,129.6,25 -Sun Sep 25 08:39:36 PDT 2011,164,103,11.651,68469.38,522955812,-947036153,129.0,25 -Sun Sep 25 08:39:37 PDT 2011,165,0,11.465,68481.86,522954503,-947035727,128.6,25 -Sun Sep 25 08:39:38 PDT 2011,165,93,11.053,68491.83,522953457,-947035398,128.2,25 -Sun Sep 25 08:39:39 PDT 2011,165,92,10.831,68502.84,522952329,-947035081,127.8,25 -Sun Sep 25 08:39:40 PDT 2011,165,92,10.831,68513.64,522951204,-947034810,127.6,25 -Sun Sep 25 08:39:41 PDT 2011,166,91,10.831,68524.38,522950089,-947034571,127.2,25 -Sun Sep 25 08:39:42 PDT 2011,166,90,10.777,68535.12,522948981,-947034293,127.0,25 -Sun Sep 25 08:39:43 PDT 2011,167,91,10.586,68545.72,522947889,-947033901,126.8,25 -Sun Sep 25 08:39:44 PDT 2011,167,91,10.744,68556.42,522946815,-947033402,126.6,25 -Sun Sep 25 08:39:45 PDT 2011,168,25,10.333,68566.66,522945773,-947032814,126.4,25 -Sun Sep 25 08:39:46 PDT 2011,168,87,9.998,68576.78,522944774,-947032164,126.2,25 -Sun Sep 25 08:39:47 PDT 2011,168,100,9.861,68586.82,522943794,-947031483,126.0,25 -Sun Sep 25 08:39:48 PDT 2011,168,104,10.586,68598.4,522942768,-947030699,126.0,25 -Sun Sep 25 08:39:49 PDT 2011,168,107,10.852,68607.99,522941904,-947030007,125.8,25 -Sun Sep 25 08:39:50 PDT 2011,169,109,11.248,68619.32,522940902,-947029142,125.8,25 -Sun Sep 25 08:39:51 PDT 2011,170,113,11.737,68630.84,522939884,-947028174,125.6,25 -Sun Sep 25 08:39:52 PDT 2011,171,112,11.487,68642.33,522938884,-947027121,125.6,25 -Sun Sep 25 08:39:53 PDT 2011,172,111,11.673,68654.04,522937910,-947025959,125.4,25 -Sun Sep 25 08:39:54 PDT 2011,173,112,11.61,68665.89,522936993,-947024732,125.4,25 -Sun Sep 25 08:39:55 PDT 2011,174,113,11.737,68677.65,522936119,-947023479,125.4,25 -Sun Sep 25 08:39:56 PDT 2011,175,100,11.801,68689.37,522935285,-947022191,125.2,25 -Sun Sep 25 08:39:57 PDT 2011,175,101,11.833,68701.16,522934470,-947020864,125.2,25 -Sun Sep 25 08:39:58 PDT 2011,176,101,11.866,68713.36,522933646,-947019462,125.4,25 -Sun Sep 25 08:39:59 PDT 2011,177,100,11.866,68724.96,522932913,-947018120,125.6,25 -Sun Sep 25 08:40:00 PDT 2011,177,113,11.737,68736.66,522932196,-947016691,125.6,25 -Sun Sep 25 08:40:01 PDT 2011,178,115,11.705,68749.35,522931476,-947015111,125.8,25 -Sun Sep 25 08:40:02 PDT 2011,178,115,11.931,68760.22,522930919,-947013752,125.8,25 -Sun Sep 25 08:40:03 PDT 2011,179,115,11.997,68772.04,522930354,-947012202,126.0,25 -Sun Sep 25 08:40:04 PDT 2011,179,113,11.801,68783.76,522929854,-947010585,126.0,25 -Sun Sep 25 08:40:05 PDT 2011,179,115,11.866,68795.69,522929439,-947008892,126.2,25 -Sun Sep 25 08:40:06 PDT 2011,180,115,11.931,68807.66,522929117,-947007152,126.2,25 -Sun Sep 25 08:40:07 PDT 2011,180,115,11.866,68819.49,522928855,-947005401,126.2,25 -Sun Sep 25 08:40:08 PDT 2011,180,115,11.61,68831.22,522928650,-947003681,126.4,25 -Sun Sep 25 08:40:09 PDT 2011,180,0,11.426,68842.72,522928461,-947001984,126.4,25 -Sun Sep 25 08:40:10 PDT 2011,180,0,11.306,68853.84,522928265,-947000349,126.4,25 -Sun Sep 25 08:40:11 PDT 2011,179,0,11.189,68865.3,522928041,-946998705,126.4,25 -Sun Sep 25 08:40:12 PDT 2011,179,0,11.074,68876.34,522927806,-946997116,126.4,25 -Sun Sep 25 08:40:13 PDT 2011,178,0,10.962,68887.3,522927558,-946995543,126.6,25 -Sun Sep 25 08:40:14 PDT 2011,178,0,10.691,68898.08,522927307,-946993991,126.6,25 -Sun Sep 25 08:40:15 PDT 2011,178,0,10.586,68908.67,522927086,-946992461,126.6,25 -Sun Sep 25 08:40:16 PDT 2011,177,95,10.534,68919.22,522926866,-946990941,126.6,25 -Sun Sep 25 08:40:17 PDT 2011,177,93,10.739,68930.61,522926634,-946989242,126.6,25 -Sun Sep 25 08:40:18 PDT 2011,176,95,11.126,68941.94,522926386,-946987623,126.6,25 -Sun Sep 25 08:40:19 PDT 2011,176,96,11.272,68952.01,522926144,-946986153,126.6,25 -Sun Sep 25 08:40:20 PDT 2011,176,96,11.361,68963.34,522925841,-946984510,126.6,25 -Sun Sep 25 08:40:21 PDT 2011,175,96,11.126,68974.47,522925489,-946982905,126.8,25 -Sun Sep 25 08:40:22 PDT 2011,175,96,11.069,68985.83,522925118,-946981381,126.8,25 -Sun Sep 25 08:40:23 PDT 2011,175,0,10.633,68996.15,522924738,-946979928,126.8,25 -Sun Sep 25 08:40:24 PDT 2011,174,0,10.377,69006.54,522924356,-946978564,126.8,25 -Sun Sep 25 08:40:25 PDT 2011,174,0,10.182,69016.84,522923956,-946977209,126.8,25 -Sun Sep 25 08:40:26 PDT 2011,174,0,10.23,69026.96,522923536,-946975850,126.8,25 -Sun Sep 25 08:40:27 PDT 2011,173,0,10.23,69037.18,522923074,-946974503,126.8,25 -Sun Sep 25 08:40:28 PDT 2011,172,29,10.134,69047.58,522922569,-946973150,126.8,25 -Sun Sep 25 08:40:29 PDT 2011,171,98,10.086,69057.54,522922070,-946971806,126.8,25 -Sun Sep 25 08:40:30 PDT 2011,170,99,10.23,69067.83,522921536,-946970474,126.8,25 -Sun Sep 25 08:40:31 PDT 2011,170,102,10.402,69078.18,522920966,-946969144,126.8,25 -Sun Sep 25 08:40:32 PDT 2011,170,94,10.581,69088.89,522920384,-946967811,126.8,25 -Sun Sep 25 08:40:33 PDT 2011,170,93,10.739,69099.53,522919764,-946966486,126.8,25 -Sun Sep 25 08:40:34 PDT 2011,169,95,11.069,69110.69,522919081,-946965137,126.6,25 -Sun Sep 25 08:40:35 PDT 2011,169,98,11.301,69123.06,522918312,-946963687,126.4,25 -Sun Sep 25 08:40:36 PDT 2011,170,99,11.574,69133.42,522917626,-946962479,126.2,25 -Sun Sep 25 08:40:37 PDT 2011,169,101,11.86,69145.28,522916812,-946961176,126.0,25 -Sun Sep 25 08:40:38 PDT 2011,170,101,11.893,69157.19,522915933,-946959849,125.8,25 -Sun Sep 25 08:40:39 PDT 2011,170,101,11.86,69170.72,522914971,-946958421,125.8,25 -Sun Sep 25 08:40:40 PDT 2011,169,0,11.574,69180.65,522914228,-946957347,125.6,25 -Sun Sep 25 08:40:41 PDT 2011,169,0,11.242,69191.9,522913395,-946956170,125.6,25 -Sun Sep 25 08:40:42 PDT 2011,169,0,10.847,69202.71,522912568,-946955061,125.4,25 -Sun Sep 25 08:40:43 PDT 2011,168,0,10.739,69213.69,522911694,-946954001,125.4,25 -Sun Sep 25 08:40:44 PDT 2011,168,0,10.686,69224.11,522910835,-946953086,125.2,25 -Sun Sep 25 08:40:45 PDT 2011,167,25,10.377,69234.62,522909940,-946952189,125.2,25 -Sun Sep 25 08:40:46 PDT 2011,166,89,10.529,69244.95,522909071,-946951316,125.2,25 -Sun Sep 25 08:40:47 PDT 2011,165,89,10.581,69255.63,522908182,-946950456,125.0,25 -Sun Sep 25 08:40:48 PDT 2011,164,33,10.633,69266.41,522907222,-946949605,125.0,25 -Sun Sep 25 08:40:49 PDT 2011,164,33,10.686,69277.9,522906168,-946948720,125.0,25 -Sun Sep 25 08:40:50 PDT 2011,164,33,10.633,69288.71,522905157,-946947871,124.8,25 -Sun Sep 25 08:40:51 PDT 2011,164,0,10.633,69298.26,522904218,-946947127,124.6,25 -Sun Sep 25 08:40:52 PDT 2011,163,0,10.686,69309.03,522903194,-946946333,124.2,25 -Sun Sep 25 08:40:53 PDT 2011,162,0,10.739,69319.75,522902173,-946945584,124.0,25 -Sun Sep 25 08:40:54 PDT 2011,161,0,10.686,69330.22,522901154,-946944855,124.0,25 -Sun Sep 25 08:40:55 PDT 2011,159,0,10.792,69341.11,522900119,-946944178,123.8,25 -Sun Sep 25 08:40:56 PDT 2011,158,0,10.739,69351.94,522899070,-946943539,123.6,25 -Sun Sep 25 08:40:57 PDT 2011,156,92,10.792,69362.61,522898004,-946942968,123.6,25 -Sun Sep 25 08:40:58 PDT 2011,154,93,10.901,69373.56,522896909,-946942442,123.4,25 -Sun Sep 25 08:40:59 PDT 2011,153,93,11.069,69384.6,522895797,-946941946,123.2,25 -Sun Sep 25 08:41:00 PDT 2011,153,93,10.985,69395.75,522894663,-946941451,123.2,25 -Sun Sep 25 08:41:01 PDT 2011,153,0,10.957,69406.74,522893504,-946940985,123.2,25 -Sun Sep 25 08:41:02 PDT 2011,152,0,10.957,69418.69,522892258,-946940556,123.0,25 -Sun Sep 25 08:41:03 PDT 2011,152,0,10.686,69428.13,522891227,-946940255,123.0,25 -Sun Sep 25 08:41:04 PDT 2011,153,0,10.581,69439.03,522890099,-946939955,123.0,25 -Sun Sep 25 08:41:05 PDT 2011,153,0,10.086,69448.9,522888994,-946939715,122.8,25 -Sun Sep 25 08:41:06 PDT 2011,154,0,9.767,69458.74,522887930,-946939490,122.8,25 -Sun Sep 25 08:41:07 PDT 2011,155,91,9.467,69468.13,522886908,-946939286,122.8,25 -Sun Sep 25 08:41:08 PDT 2011,155,91,9.426,69477.49,522885915,-946939100,122.8,25 -Sun Sep 25 08:41:09 PDT 2011,155,91,9.426,69487.09,522884933,-946938912,122.6,25 -Sun Sep 25 08:41:10 PDT 2011,155,0,9.031,69495.94,522883985,-946938706,122.6,25 -Sun Sep 25 08:41:11 PDT 2011,155,0,8.739,69504.85,522883060,-946938513,122.6,25 -Sun Sep 25 08:41:12 PDT 2011,154,0,8.238,69513.0,522882182,-946938326,122.6,25 -Sun Sep 25 08:41:13 PDT 2011,152,0,7.878,69520.88,522881351,-946938164,122.6,25 -Sun Sep 25 08:41:14 PDT 2011,150,0,7.469,69528.41,522880568,-946937999,122.6,25 -Sun Sep 25 08:41:15 PDT 2011,147,0,6.874,69535.9,522879804,-946937809,122.6,25 -Sun Sep 25 08:41:16 PDT 2011,146,0,6.681,69541.94,522879206,-946937696,122.6,25 -Sun Sep 25 08:41:17 PDT 2011,145,0,6.118,69547.99,522878584,-946937571,122.6,25 -Sun Sep 25 08:41:18 PDT 2011,145,0,6.0,69554.11,522877991,-946937444,122.4,25 -Sun Sep 25 08:41:19 PDT 2011,146,59,5.918,69560.04,522877387,-946937326,122.4,25 -Sun Sep 25 08:41:20 PDT 2011,147,63,6.482,69566.5,522876743,-946937196,122.4,25 -Sun Sep 25 08:41:21 PDT 2011,149,67,6.87,69573.39,522876055,-946937049,122.4,25 -Sun Sep 25 08:41:22 PDT 2011,150,70,7.26,69580.71,522875301,-946936946,122.4,25 -Sun Sep 25 08:41:23 PDT 2011,153,80,7.642,69588.17,522874494,-946936851,122.4,25 -Sun Sep 25 08:41:24 PDT 2011,155,84,7.806,69595.89,522873657,-946936741,122.4,25 -Sun Sep 25 08:41:25 PDT 2011,157,44,7.949,69603.94,522872794,-946936602,122.4,25 -Sun Sep 25 08:41:26 PDT 2011,159,86,8.281,69612.14,522871944,-946936413,122.4,25 -Sun Sep 25 08:41:27 PDT 2011,160,89,8.25,69620.42,522871091,-946936181,122.4,25 -Sun Sep 25 08:41:28 PDT 2011,162,92,8.474,69629.15,522870217,-946935944,122.4,25 -Sun Sep 25 08:41:29 PDT 2011,163,95,8.712,69637.71,522869335,-946935688,122.4,25 -Sun Sep 25 08:41:30 PDT 2011,164,95,8.963,69646.72,522868420,-946935429,122.4,25 -Sun Sep 25 08:41:31 PDT 2011,166,94,8.963,69656.51,522867390,-946935157,122.4,25 -Sun Sep 25 08:41:32 PDT 2011,167,101,8.853,69664.43,522866540,-946934914,122.4,25 -Sun Sep 25 08:41:33 PDT 2011,168,107,9.49,69673.99,522865587,-946934645,122.4,25 -Sun Sep 25 08:41:34 PDT 2011,169,107,9.075,69683.23,522864635,-946934372,122.4,25 -Sun Sep 25 08:41:35 PDT 2011,169,108,9.151,69692.19,522863678,-946934110,122.4,25 -Sun Sep 25 08:41:36 PDT 2011,170,108,9.19,69701.41,522862716,-946933868,122.4,25 -Sun Sep 25 08:41:37 PDT 2011,170,108,9.0,69710.22,522861767,-946933656,122.6,25 -Sun Sep 25 08:41:38 PDT 2011,171,25,8.574,69718.9,522860853,-946933465,122.8,25 -Sun Sep 25 08:41:39 PDT 2011,171,99,8.25,69727.18,522859976,-946933274,123.0,25 -Sun Sep 25 08:41:40 PDT 2011,171,98,8.377,69735.63,522859111,-946933072,123.2,25 -Sun Sep 25 08:41:41 PDT 2011,171,97,8.246,69743.77,522858271,-946932841,123.2,25 -Sun Sep 25 08:41:42 PDT 2011,171,97,7.745,69751.47,522857464,-946932589,123.4,25 -Sun Sep 25 08:41:43 PDT 2011,170,85,7.302,69758.84,522856682,-946932344,123.4,25 -Sun Sep 25 08:41:44 PDT 2011,170,87,7.229,69766.05,522855940,-946932126,123.8,25 -Sun Sep 25 08:41:45 PDT 2011,170,86,6.951,69772.94,522855236,-946931931,124.2,25 -Sun Sep 25 08:41:46 PDT 2011,171,92,6.592,69779.52,522854527,-946931772,124.4,25 -Sun Sep 25 08:41:47 PDT 2011,171,90,7.351,69787.05,522853794,-946931630,124.6,25 -Sun Sep 25 08:41:48 PDT 2011,171,85,7.134,69794.24,522853020,-946931513,124.8,25 -Sun Sep 25 08:41:49 PDT 2011,171,85,7.205,69801.97,522852229,-946931392,125.2,25 -Sun Sep 25 08:41:50 PDT 2011,172,86,7.205,69808.43,522851539,-946931283,125.2,25 -Sun Sep 25 08:41:51 PDT 2011,172,48,7.253,69815.77,522850820,-946931135,125.6,25 -Sun Sep 25 08:41:52 PDT 2011,173,81,6.863,69822.69,522850112,-946930954,126.0,25 -Sun Sep 25 08:41:53 PDT 2011,173,39,6.929,69829.6,522849410,-946930733,126.4,25 -Sun Sep 25 08:41:54 PDT 2011,174,78,6.863,69836.4,522848725,-946930540,126.6,25 -Sun Sep 25 08:41:55 PDT 2011,174,84,6.397,69842.83,522848047,-946930375,126.8,25 -Sun Sep 25 08:41:56 PDT 2011,175,88,6.474,69849.35,522847367,-946930205,127.0,25 -Sun Sep 25 08:41:57 PDT 2011,175,92,6.907,69856.19,522846668,-946930053,127.4,25 -Sun Sep 25 08:41:58 PDT 2011,176,94,7.253,69863.48,522845942,-946929911,127.8,25 -Sun Sep 25 08:41:59 PDT 2011,176,94,7.229,69870.66,522845192,-946929723,128.2,25 -Sun Sep 25 08:42:00 PDT 2011,176,102,7.302,69878.05,522844424,-946929536,128.4,25 -Sun Sep 25 08:42:01 PDT 2011,176,105,7.402,69885.53,522843636,-946929317,128.8,25 -Sun Sep 25 08:42:02 PDT 2011,177,105,7.453,69892.95,522842897,-946928981,129.0,25 -Sun Sep 25 08:42:03 PDT 2011,177,105,7.181,69900.81,522842147,-946928608,129.2,25 -Sun Sep 25 08:42:04 PDT 2011,177,93,6.756,69906.81,522841540,-946928311,129.4,25 -Sun Sep 25 08:42:05 PDT 2011,177,93,6.632,69913.41,522840872,-946928077,129.8,25 -Sun Sep 25 08:42:06 PDT 2011,177,93,6.612,69919.89,522840203,-946927929,130.2,25 -Sun Sep 25 08:42:07 PDT 2011,177,93,6.513,69926.65,522839516,-946927840,130.4,25 -Sun Sep 25 08:42:08 PDT 2011,176,56,6.378,69932.97,522838831,-946927721,130.8,25 -Sun Sep 25 08:42:09 PDT 2011,176,97,6.461,69939.42,522838127,-946927572,131.0,25 -Sun Sep 25 08:42:10 PDT 2011,176,97,6.885,69946.49,522837413,-946927394,131.2,25 -Sun Sep 25 08:42:11 PDT 2011,176,97,6.992,69953.28,522836670,-946927198,131.4,25 -Sun Sep 25 08:42:12 PDT 2011,176,97,7.06,69960.26,522835919,-946927015,131.6,25 -Sun Sep 25 08:42:13 PDT 2011,175,103,7.13,69967.36,522835170,-946926841,131.8,25 -Sun Sep 25 08:42:14 PDT 2011,174,93,7.399,69974.8,522834390,-946926670,132.0,25 -Sun Sep 25 08:42:15 PDT 2011,174,93,7.661,69982.38,522833582,-946926514,132.0,25 -Sun Sep 25 08:42:16 PDT 2011,173,93,7.607,69990.09,522832765,-946926375,132.2,25 -Sun Sep 25 08:42:17 PDT 2011,173,0,7.502,69997.65,522831946,-946926227,132.4,25 -Sun Sep 25 08:42:18 PDT 2011,172,0,7.178,70004.83,522831150,-946926086,132.4,25 -Sun Sep 25 08:42:19 PDT 2011,172,0,6.859,70011.74,522830399,-946925950,132.6,25 -Sun Sep 25 08:42:20 PDT 2011,171,0,6.689,70018.44,522829672,-946925834,132.6,25 -Sun Sep 25 08:42:21 PDT 2011,171,0,6.73,70025.02,522828967,-946925753,132.6,25 -Sun Sep 25 08:42:22 PDT 2011,171,0,6.752,70031.79,522828255,-946925680,132.8,25 -Sun Sep 25 08:42:23 PDT 2011,170,0,6.648,70038.45,522827558,-946925597,132.6,25 -Sun Sep 25 08:42:24 PDT 2011,169,0,5.919,70044.38,522826906,-946925489,132.4,25 -Sun Sep 25 08:42:25 PDT 2011,168,0,5.024,70049.47,522826329,-946925350,132.4,25 -Sun Sep 25 08:42:26 PDT 2011,167,0,4.418,70053.94,522825848,-946925205,132.2,25 -Sun Sep 25 08:42:27 PDT 2011,166,0,3.738,70057.54,522825464,-946925061,132.2,25 -Sun Sep 25 08:42:28 PDT 2011,164,0,3.293,70060.88,522825170,-946924934,132.0,25 -Sun Sep 25 08:42:29 PDT 2011,164,0,2.717,70063.56,522824936,-946924814,132.0,25 -Sun Sep 25 08:42:30 PDT 2011,162,0,2.363,70065.96,522824753,-946924702,132.0,25 -Sun Sep 25 08:42:31 PDT 2011,161,0,2.145,70068.08,522824606,-946924603,131.8,25 -Sun Sep 25 08:42:32 PDT 2011,160,0,1.712,70069.78,522824489,-946924521,131.8,25 -Sun Sep 25 08:42:33 PDT 2011,158,0,1.448,70071.25,522824393,-946924451,131.8,25 -Sun Sep 25 08:42:47 PDT 2011,157,0,1.56,70071.25,522824088,-946924341,131.4,25 -Sun Sep 25 08:42:48 PDT 2011,157,0,1.802,70073.08,522823921,-946924320,131.4,25 -Sun Sep 25 08:42:49 PDT 2011,156,0,1.802,70074.91,522823801,-946924311,131.4,25 -Sun Sep 25 08:42:50 PDT 2011,156,0,0.0,70074.91,522823735,-946924326,131.4,25 -Sun Sep 25 08:42:55 PDT 2011,157,0,1.37,70074.91,522823600,-946924178,130.6,25 -Sun Sep 25 08:42:56 PDT 2011,157,36,2.323,70077.36,522823256,-946924041,130.4,25 -Sun Sep 25 08:42:57 PDT 2011,156,36,2.323,70079.65,522822852,-946923878,130.2,25 -Sun Sep 25 08:42:58 PDT 2011,156,47,4.253,70084.5,522822296,-946923657,130.2,25 -Sun Sep 25 08:42:59 PDT 2011,156,58,4.921,70088.72,522821824,-946923458,130.0,25 -Sun Sep 25 08:43:00 PDT 2011,156,65,5.511,70094.22,522821244,-946923214,130.0,25 -Sun Sep 25 08:43:01 PDT 2011,156,76,6.138,70100.4,522820610,-946922946,129.8,25 -Sun Sep 25 08:43:02 PDT 2011,156,81,6.547,70106.97,522819905,-946922648,129.8,25 -Sun Sep 25 08:43:03 PDT 2011,156,86,7.202,70114.15,522819152,-946922324,129.8,25 -Sun Sep 25 08:43:04 PDT 2011,158,44,7.772,70121.88,522818351,-946921957,129.6,25 -Sun Sep 25 08:43:05 PDT 2011,159,96,7.772,70129.57,522817521,-946921571,129.6,25 -Sun Sep 25 08:43:06 PDT 2011,160,98,8.121,70137.76,522816667,-946921195,129.6,25 -Sun Sep 25 08:43:07 PDT 2011,161,99,8.278,70146.06,522815800,-946920823,129.6,25 -Sun Sep 25 08:43:08 PDT 2011,162,105,8.573,70154.62,522814915,-946920455,129.4,25 -Sun Sep 25 08:43:09 PDT 2011,163,107,8.965,70163.49,522814018,-946920068,129.4,25 -Sun Sep 25 08:43:10 PDT 2011,164,107,8.965,70172.51,522813104,-946919644,129.4,25 -Sun Sep 25 08:43:11 PDT 2011,165,107,9.078,70181.49,522812175,-946919162,129.4,25 -Sun Sep 25 08:43:12 PDT 2011,166,109,9.097,70190.64,522811239,-946918644,129.4,25 -Sun Sep 25 08:43:13 PDT 2011,167,112,9.273,70200.01,522810298,-946918084,129.4,25 -Sun Sep 25 08:43:14 PDT 2011,168,105,9.476,70209.48,522809363,-946917512,129.2,25 -Sun Sep 25 08:43:15 PDT 2011,169,101,9.435,70219.08,522808415,-946916911,129.4,25 -Sun Sep 25 08:43:16 PDT 2011,169,96,9.273,70229.05,522807454,-946916260,129.6,25 -Sun Sep 25 08:43:17 PDT 2011,170,96,8.891,70237.79,522806616,-946915669,129.8,26 -Sun Sep 25 08:43:18 PDT 2011,170,96,8.092,70245.95,522805846,-946915136,130.0,26 -Sun Sep 25 08:43:19 PDT 2011,170,0,7.744,70253.79,522805126,-946914639,130.0,26 -Sun Sep 25 08:43:20 PDT 2011,170,0,7.299,70260.19,522804526,-946914189,130.2,26 -Sun Sep 25 08:43:21 PDT 2011,170,80,6.969,70267.29,522803908,-946913710,130.4,26 -Sun Sep 25 08:43:22 PDT 2011,169,83,6.689,70274.17,522803314,-946913227,130.6,26 -Sun Sep 25 08:43:23 PDT 2011,169,88,6.587,70280.54,522802736,-946912747,130.8,26 -Sun Sep 25 08:43:24 PDT 2011,168,89,6.773,70287.44,522802145,-946912250,131.2,26 -Sun Sep 25 08:43:25 PDT 2011,168,88,6.773,70294.15,522801547,-946911743,131.4,26 -Sun Sep 25 08:43:26 PDT 2011,168,88,6.752,70300.9,522800941,-946911198,131.6,26 -Sun Sep 25 08:43:27 PDT 2011,168,90,6.837,70307.79,522800328,-946910619,131.8,26 -Sun Sep 25 08:43:28 PDT 2011,168,90,6.903,70314.8,522799710,-946910006,132.0,26 -Sun Sep 25 08:43:29 PDT 2011,168,95,6.969,70321.61,522799107,-946909374,132.0,26 -Sun Sep 25 08:43:30 PDT 2011,168,98,7.399,70328.85,522798491,-946908728,132.2,26 -Sun Sep 25 08:43:31 PDT 2011,168,99,7.554,70338.19,522797708,-946907921,132.2,26 -Sun Sep 25 08:43:32 PDT 2011,169,100,7.528,70343.94,522797197,-946907392,132.4,26 -Sun Sep 25 08:43:33 PDT 2011,169,100,7.744,70351.76,522796538,-946906719,132.4,26 -Sun Sep 25 08:43:34 PDT 2011,169,100,7.716,70359.58,522795888,-946906040,132.8,26 -Sun Sep 25 08:43:35 PDT 2011,170,102,7.772,70367.5,522795228,-946905306,133.0,26 -Sun Sep 25 08:43:36 PDT 2011,170,99,7.772,70375.74,522794570,-946904517,133.4,26 -Sun Sep 25 08:43:37 PDT 2011,171,98,7.607,70383.33,522793966,-946903769,133.6,26 -Sun Sep 25 08:43:38 PDT 2011,171,98,7.374,70390.62,522793384,-946903033,133.8,26 -Sun Sep 25 08:43:39 PDT 2011,171,98,7.06,70397.77,522792840,-946902333,134.0,26 -Sun Sep 25 08:43:40 PDT 2011,171,0,6.668,70404.3,522792337,-946901677,134.0,26 -Sun Sep 25 08:43:41 PDT 2011,171,0,6.244,70410.63,522791868,-946901062,134.2,26 -Sun Sep 25 08:43:42 PDT 2011,171,0,5.808,70416.56,522791442,-946900487,134.4,26 -Sun Sep 25 08:43:43 PDT 2011,170,71,5.568,70422.12,522791040,-946899919,134.4,26 -Sun Sep 25 08:43:44 PDT 2011,170,73,5.597,70427.97,522790629,-946899307,134.8,26 -Sun Sep 25 08:43:45 PDT 2011,169,75,5.731,70433.4,522790253,-946898721,135.0,26 -Sun Sep 25 08:43:46 PDT 2011,169,76,5.792,70439.19,522789850,-946898089,135.4,26 -Sun Sep 25 08:43:47 PDT 2011,168,76,5.641,70444.88,522789451,-946897474,135.6,26 -Sun Sep 25 08:43:48 PDT 2011,168,76,4.966,70449.4,522789115,-946896973,135.8,26 -Sun Sep 25 08:43:49 PDT 2011,167,0,3.783,70453.15,522788824,-946896530,136.0,26 -Sun Sep 25 08:43:50 PDT 2011,166,0,3.082,70456.26,522788616,-946896206,136.2,26 -Sun Sep 25 08:43:51 PDT 2011,165,0,2.575,70458.82,522788469,-946895925,136.2,26 -Sun Sep 25 08:43:52 PDT 2011,165,39,3.026,70461.83,522788315,-946895611,136.4,26 -Sun Sep 25 08:43:53 PDT 2011,165,56,4.244,70466.11,522788092,-946895187,136.6,26 -Sun Sep 25 08:43:54 PDT 2011,165,76,5.257,70471.36,522787781,-946894627,136.6,26 -Sun Sep 25 08:43:55 PDT 2011,165,81,5.952,70477.2,522787391,-946893924,136.8,26 -Sun Sep 25 08:43:56 PDT 2011,166,85,6.488,70483.75,522786952,-946893111,136.8,26 -Sun Sep 25 08:43:57 PDT 2011,167,93,6.837,70490.59,522786502,-946892207,136.8,26 -Sun Sep 25 08:43:58 PDT 2011,168,101,7.226,70497.86,522786024,-946891240,137.0,26 -Sun Sep 25 08:43:59 PDT 2011,169,103,8.374,70506.08,522785528,-946890246,137.0,26 -Sun Sep 25 08:44:00 PDT 2011,170,99,8.002,70514.22,522785025,-946889222,137.0,26 -Sun Sep 25 08:44:01 PDT 2011,171,96,8.002,70522.33,522784515,-946888197,137.2,26 -Sun Sep 25 08:44:02 PDT 2011,172,98,8.153,70530.33,522783988,-946887210,137.2,26 -Sun Sep 25 08:44:03 PDT 2011,173,100,8.31,70538.77,522783452,-946886214,137.2,26 -Sun Sep 25 08:44:04 PDT 2011,173,97,8.473,70547.15,522782907,-946885210,137.2,26 -Sun Sep 25 08:44:05 PDT 2011,174,97,8.473,70555.76,522782362,-946884206,137.2,26 -Sun Sep 25 08:44:06 PDT 2011,174,29,8.246,70563.97,522781829,-946883205,137.4,26 -Sun Sep 25 08:44:07 PDT 2011,174,97,8.184,70572.26,522781293,-946882185,137.4,26 -Sun Sep 25 08:44:08 PDT 2011,174,90,8.062,70580.88,522780752,-946881158,137.4,26 -Sun Sep 25 08:44:09 PDT 2011,174,90,7.972,70588.0,522780305,-946880301,137.4,26 -Sun Sep 25 08:44:10 PDT 2011,173,26,7.772,70595.86,522779826,-946879378,137.4,26 -Sun Sep 25 08:44:11 PDT 2011,173,93,7.689,70603.62,522779347,-946878442,137.4,26 -Sun Sep 25 08:44:12 PDT 2011,172,94,7.914,70611.44,522778868,-946877502,137.4,26 -Sun Sep 25 08:44:13 PDT 2011,172,94,7.972,70619.4,522778376,-946876561,137.4,26 -Sun Sep 25 08:44:14 PDT 2011,172,94,7.8,70627.2,522777878,-946875616,137.6,26 -Sun Sep 25 08:44:15 PDT 2011,171,96,7.8,70635.07,522777380,-946874657,137.8,26 -Sun Sep 25 08:44:16 PDT 2011,171,98,8.121,70643.22,522776884,-946873674,138.0,26 -Sun Sep 25 08:44:17 PDT 2011,170,103,8.473,70651.7,522776384,-946872648,138.2,26 -Sun Sep 25 08:44:18 PDT 2011,171,107,8.855,70660.6,522775872,-946871564,138.4,26 -Sun Sep 25 08:44:19 PDT 2011,171,110,9.002,70669.42,522775339,-946870442,138.4,26 -Sun Sep 25 08:44:20 PDT 2011,171,111,9.194,70678.72,522774801,-946869283,138.6,26 -Sun Sep 25 08:44:21 PDT 2011,171,112,9.313,70688.04,522774264,-946868108,138.8,26 -Sun Sep 25 08:44:22 PDT 2011,172,108,9.435,70697.57,522773705,-946866930,138.8,26 -Sun Sep 25 08:44:23 PDT 2011,172,101,9.435,70706.79,522773129,-946865764,138.8,26 -Sun Sep 25 08:44:24 PDT 2011,173,102,9.39,70716.29,522772541,-946864621,139.0,26 -Sun Sep 25 08:44:25 PDT 2011,173,102,9.515,70725.76,522771931,-946863486,139.0,26 -Sun Sep 25 08:44:26 PDT 2011,174,102,9.473,70735.27,522771306,-946862344,139.2,26 -Sun Sep 25 08:44:27 PDT 2011,174,101,9.452,70744.62,522770705,-946861208,139.2,26 -Sun Sep 25 08:44:28 PDT 2011,175,101,9.349,70754.22,522770109,-946860075,139.2,26 -Sun Sep 25 08:44:29 PDT 2011,175,101,9.111,70763.38,522769519,-946858950,139.2,26 -Sun Sep 25 08:44:30 PDT 2011,176,21,8.777,70772.68,522768947,-946857820,139.2,26 -Sun Sep 25 08:44:31 PDT 2011,176,104,8.567,70781.27,522768425,-946856801,139.4,26 -Sun Sep 25 08:44:32 PDT 2011,175,105,8.759,70790.01,522767899,-946855790,139.4,26 -Sun Sep 25 08:44:33 PDT 2011,176,105,8.741,70798.74,522767356,-946854779,139.4,26 -Sun Sep 25 08:44:34 PDT 2011,176,103,8.813,70807.6,522766787,-946853761,139.4,26 -Sun Sep 25 08:44:35 PDT 2011,175,97,8.922,70816.47,522766180,-946852742,139.4,26 -Sun Sep 25 08:44:36 PDT 2011,175,97,9.065,70825.62,522765561,-946851744,139.4,26 -Sun Sep 25 08:44:37 PDT 2011,175,98,8.952,70834.58,522764920,-946850769,139.4,26 -Sun Sep 25 08:44:38 PDT 2011,175,99,9.103,70843.69,522764256,-946849816,139.6,26 -Sun Sep 25 08:44:39 PDT 2011,175,99,9.299,70852.04,522763630,-946848962,139.6,26 -Sun Sep 25 08:44:40 PDT 2011,175,96,9.22,70861.41,522762921,-946848044,139.6,26 -Sun Sep 25 08:44:41 PDT 2011,175,100,9.142,70870.53,522762163,-946847134,139.6,26 -Sun Sep 25 08:44:42 PDT 2011,174,97,9.259,70879.75,522761377,-946846251,139.6,26 -Sun Sep 25 08:44:43 PDT 2011,174,49,9.38,70889.04,522760552,-946845410,139.6,26 -Sun Sep 25 08:44:44 PDT 2011,174,90,9.34,70898.48,522759715,-946844619,139.6,26 -Sun Sep 25 08:44:45 PDT 2011,173,61,9.421,70907.78,522758863,-946843845,139.6,26 -Sun Sep 25 08:44:46 PDT 2011,173,61,9.401,70917.44,522758003,-946843104,139.6,26 -Sun Sep 25 08:44:47 PDT 2011,172,61,9.259,70926.58,522757141,-946842377,139.6,26 -Sun Sep 25 08:44:48 PDT 2011,171,0,9.027,70935.65,522756311,-946841715,139.6,26 -Sun Sep 25 08:44:49 PDT 2011,171,0,8.806,70945.22,522755399,-946841060,139.6,26 -Sun Sep 25 08:44:50 PDT 2011,170,85,8.699,70953.04,522754628,-946840575,139.6,26 -Sun Sep 25 08:44:51 PDT 2011,169,85,8.915,70962.04,522753759,-946840054,139.6,26 -Sun Sep 25 08:44:52 PDT 2011,169,85,8.735,70970.94,522752893,-946839570,139.6,26 -Sun Sep 25 08:44:54 PDT 2011,169,93,8.428,70984.51,522751493,-946838812,139.6,26 -Sun Sep 25 08:44:54 PDT 2011,169,93,8.735,70987.85,522751139,-946838655,139.6,26 -Sun Sep 25 08:44:55 PDT 2011,168,96,8.77,70997.25,522750182,-946838209,139.6,26 -Sun Sep 25 08:44:56 PDT 2011,168,96,9.065,71006.44,522749265,-946837825,139.6,26 -Sun Sep 25 08:44:57 PDT 2011,168,35,9.027,71014.34,522748410,-946837485,139.6,26 -Sun Sep 25 08:44:58 PDT 2011,168,100,9.142,71023.56,522747457,-946837108,139.6,26 -Sun Sep 25 08:44:59 PDT 2011,168,102,9.421,71033.11,522746489,-946836729,139.6,26 -Sun Sep 25 08:45:00 PDT 2011,169,102,9.463,71042.58,522745514,-946836340,139.6,26 -Sun Sep 25 08:45:01 PDT 2011,169,55,9.421,71051.92,522744532,-946835936,139.6,26 -Sun Sep 25 08:45:02 PDT 2011,168,39,9.504,71061.49,522743557,-946835534,139.6,26 -Sun Sep 25 08:45:03 PDT 2011,168,97,9.421,71070.93,522742583,-946835121,139.6,26 -Sun Sep 25 08:45:04 PDT 2011,167,97,9.463,71080.32,522741616,-946834707,139.6,26 -Sun Sep 25 08:45:05 PDT 2011,167,97,9.259,71090.58,522740569,-946834253,139.6,26 -Sun Sep 25 08:45:06 PDT 2011,166,0,9.103,71098.64,522739717,-946833882,139.6,26 -Sun Sep 25 08:45:07 PDT 2011,164,0,9.044,71107.76,522738798,-946833487,139.6,26 -Sun Sep 25 08:45:08 PDT 2011,163,0,8.859,71116.64,522737886,-946833101,139.6,26 -Sun Sep 25 08:45:09 PDT 2011,162,0,8.477,71124.83,522737015,-946832732,139.6,26 -Sun Sep 25 08:45:10 PDT 2011,160,0,8.035,71133.12,522736180,-946832383,139.6,26 -Sun Sep 25 08:45:11 PDT 2011,159,0,7.775,71140.69,522735374,-946832067,139.6,26 -Sun Sep 25 08:45:12 PDT 2011,157,0,7.638,71148.38,522734604,-946831779,139.6,26 -Sun Sep 25 08:45:13 PDT 2011,156,0,7.402,71155.77,522733865,-946831499,139.6,26 -Sun Sep 25 08:45:14 PDT 2011,155,0,6.884,71162.85,522733175,-946831229,139.6,26 -Sun Sep 25 08:45:15 PDT 2011,154,0,5.673,71168.41,522732560,-946830972,139.6,26 -Sun Sep 25 08:45:16 PDT 2011,153,0,5.377,71173.99,522732012,-946830742,139.6,26 -Sun Sep 25 08:45:17 PDT 2011,152,0,5.221,71179.08,522731505,-946830543,139.6,26 -Sun Sep 25 08:45:18 PDT 2011,152,65,5.298,71184.34,522730995,-946830341,139.6,26 -Sun Sep 25 08:45:19 PDT 2011,152,74,5.858,71190.14,522730416,-946830127,139.6,26 -Sun Sep 25 08:45:20 PDT 2011,154,91,7.11,71197.39,522729730,-946829847,139.6,26 -Sun Sep 25 08:45:21 PDT 2011,155,97,8.346,71205.47,522728936,-946829502,139.6,26 -Sun Sep 25 08:45:22 PDT 2011,157,89,8.035,71213.79,522728091,-946829127,139.6,26 -Sun Sep 25 08:45:23 PDT 2011,159,89,8.121,71221.8,522727209,-946828757,139.6,26 -Sun Sep 25 08:45:24 PDT 2011,160,29,8.153,71229.88,522726327,-946828401,139.6,26 -Sun Sep 25 08:45:25 PDT 2011,161,89,8.121,71238.08,522725461,-946828074,139.6,26 -Sun Sep 25 08:45:26 PDT 2011,162,92,8.407,71246.56,522724602,-946827747,139.6,26 -Sun Sep 25 08:45:27 PDT 2011,163,92,8.573,71255.15,522723726,-946827388,139.6,26 -Sun Sep 25 08:45:28 PDT 2011,163,96,8.677,71263.75,522722832,-946827007,139.6,26 -Sun Sep 25 08:45:29 PDT 2011,163,96,9.002,71272.81,522721927,-946826608,139.6,26 -Sun Sep 25 08:45:30 PDT 2011,163,97,9.116,71281.86,522721004,-946826193,139.6,26 -Sun Sep 25 08:45:31 PDT 2011,163,96,9.233,71291.24,522720065,-946825772,139.6,26 -Sun Sep 25 08:45:32 PDT 2011,163,90,9.313,71300.54,522719112,-946825360,139.4,26 -Sun Sep 25 08:45:33 PDT 2011,163,89,9.313,71309.67,522718156,-946824955,139.2,26 -Sun Sep 25 08:45:34 PDT 2011,163,89,9.273,71318.97,522717193,-946824570,139.0,26 -Sun Sep 25 08:45:35 PDT 2011,163,89,9.34,71328.4,522716227,-946824211,138.8,26 -Sun Sep 25 08:45:36 PDT 2011,162,0,9.103,71337.33,522715276,-946823828,138.8,26 -Sun Sep 25 08:45:37 PDT 2011,160,0,9.181,71346.47,522714342,-946823422,138.6,26 -Sun Sep 25 08:45:38 PDT 2011,159,0,9.103,71355.58,522713418,-946822996,138.4,26 -Sun Sep 25 08:45:39 PDT 2011,158,0,9.103,71364.8,522712498,-946822579,138.4,26 -Sun Sep 25 08:45:40 PDT 2011,156,0,9.065,71374.09,522711577,-946822181,138.2,26 -Sun Sep 25 08:45:41 PDT 2011,155,0,9.142,71383.21,522710645,-946821796,138.2,26 -Sun Sep 25 08:45:42 PDT 2011,155,0,9.103,71392.03,522709710,-946821392,138.2,26 -Sun Sep 25 08:45:43 PDT 2011,153,0,9.027,71401.04,522708789,-946820977,138.0,26 -Sun Sep 25 08:45:44 PDT 2011,152,0,8.952,71410.11,522707874,-946820558,138.0,26 -Sun Sep 25 08:45:45 PDT 2011,151,0,8.561,71418.72,522706993,-946820149,138.0,26 -Sun Sep 25 08:45:46 PDT 2011,150,0,8.395,71427.13,522706136,-946819755,137.8,26 -Sun Sep 25 08:45:47 PDT 2011,150,0,8.362,71435.43,522705298,-946819378,137.8,26 -Sun Sep 25 08:45:48 PDT 2011,149,0,8.149,71443.61,522704466,-946819032,137.8,26 -Sun Sep 25 08:45:49 PDT 2011,149,0,8.118,71451.71,522703645,-946818699,137.6,26 -Sun Sep 25 08:45:50 PDT 2011,147,0,8.057,71459.61,522702831,-946818367,137.2,26 -Sun Sep 25 08:45:51 PDT 2011,147,0,7.881,71467.66,522702029,-946818053,137.0,26 -Sun Sep 25 08:45:52 PDT 2011,146,0,7.796,71475.47,522701239,-946817741,136.8,26 -Sun Sep 25 08:45:53 PDT 2011,145,0,7.32,71482.79,522700477,-946817407,136.8,26 -Sun Sep 25 08:45:54 PDT 2011,144,0,7.011,71489.81,522699749,-946817083,136.6,26 -Sun Sep 25 08:45:55 PDT 2011,143,0,6.877,71496.75,522699055,-946816771,136.4,26 -Sun Sep 25 08:45:56 PDT 2011,142,0,6.727,71503.4,522698393,-946816448,136.2,26 -Sun Sep 25 08:45:57 PDT 2011,142,0,6.427,71509.87,522697750,-946816109,136.2,26 -Sun Sep 25 08:45:58 PDT 2011,141,0,6.188,71516.18,522697131,-946815805,136.0,26 -Sun Sep 25 08:45:59 PDT 2011,141,0,5.728,71521.73,522696546,-946815531,136.0,26 -Sun Sep 25 08:46:00 PDT 2011,140,0,4.908,71526.64,522696038,-946815323,136.0,26 -Sun Sep 25 08:46:01 PDT 2011,140,0,3.863,71530.51,522695639,-946815177,135.8,26 -Sun Sep 25 08:46:02 PDT 2011,141,0,3.384,71533.91,522695366,-946815080,135.8,26 -Sun Sep 25 08:46:03 PDT 2011,140,0,2.499,71536.41,522695215,-946815012,135.8,26 -Sun Sep 25 08:46:04 PDT 2011,141,0,2.916,71539.32,522695153,-946814969,135.6,26 -Sun Sep 25 08:46:05 PDT 2011,141,0,2.916,71542.24,522695144,-946814938,135.6,26 -Sun Sep 25 08:46:06 PDT 2011,142,0,0.0,71542.24,522695155,-946814925,135.6,26 -Sun Sep 25 08:46:49 PDT 2011,141,0,0.0,71542.24,522695248,-946814825,133.2,26 -Sun Sep 25 08:46:50 PDT 2011,141,0,1.776,71544.65,522695000,-946814717,133.2,26 -Sun Sep 25 08:46:51 PDT 2011,141,36,2.201,71546.13,522694826,-946814600,133.2,26 -Sun Sep 25 08:46:52 PDT 2011,142,57,2.201,71548.65,522694354,-946814342,133.2,26 -Sun Sep 25 08:46:53 PDT 2011,143,67,5.241,71553.62,522693799,-946813976,133.2,26 -Sun Sep 25 08:46:54 PDT 2011,144,74,5.616,71559.25,522693128,-946813560,133.2,26 -Sun Sep 25 08:46:55 PDT 2011,146,86,6.117,71565.35,522692378,-946813174,133.2,26 -Sun Sep 25 08:46:56 PDT 2011,147,88,7.222,71572.47,522691579,-946812797,133.2,26 -Sun Sep 25 08:46:57 PDT 2011,149,96,7.658,71580.31,522690746,-946812459,133.2,26 -Sun Sep 25 08:46:58 PDT 2011,150,101,8.306,71588.58,522689876,-946812165,133.2,26 -Sun Sep 25 08:46:59 PDT 2011,151,102,8.569,71597.08,522688990,-946811837,133.2,26 -Sun Sep 25 08:47:00 PDT 2011,153,105,8.673,71605.63,522688077,-946811477,133.2,26 -Sun Sep 25 08:47:01 PDT 2011,154,105,8.924,71614.66,522687130,-946811108,133.2,26 -Sun Sep 25 08:47:02 PDT 2011,155,102,9.389,71624.03,522686145,-946810731,133.2,26 -Sun Sep 25 08:47:03 PDT 2011,156,98,9.684,71633.76,522685124,-946810343,133.2,26 -Sun Sep 25 08:47:04 PDT 2011,157,98,9.998,71643.74,522684049,-946809977,133.2,26 -Sun Sep 25 08:47:05 PDT 2011,158,100,10.235,71654.0,522682960,-946809602,133.2,26 -Sun Sep 25 08:47:06 PDT 2011,159,103,10.483,71664.58,522681855,-946809195,133.2,26 -Sun Sep 25 08:47:07 PDT 2011,160,107,10.798,71675.17,522680738,-946808691,133.2,26 -Sun Sep 25 08:47:08 PDT 2011,161,109,11.189,71686.61,522679630,-946808144,133.2,26 -Sun Sep 25 08:47:09 PDT 2011,162,95,11.426,71697.9,522678507,-946807511,133.2,26 -Sun Sep 25 08:47:10 PDT 2011,162,95,11.579,71709.31,522677368,-946806811,133.0,26 -Sun Sep 25 08:47:11 PDT 2011,163,95,11.61,71720.8,522676247,-946806067,132.8,26 -Sun Sep 25 08:47:12 PDT 2011,163,95,11.396,71732.37,522675154,-946805293,132.6,26 -Sun Sep 25 08:47:13 PDT 2011,162,0,11.248,71743.57,522674100,-946804490,132.4,26 -Sun Sep 25 08:47:14 PDT 2011,162,0,10.962,71754.58,522673088,-946803654,132.2,26 -Sun Sep 25 08:47:15 PDT 2011,161,0,10.907,71765.28,522672096,-946802798,132.2,26 -Sun Sep 25 08:47:16 PDT 2011,160,93,10.907,71776.16,522671113,-946801925,132.0,26 -Sun Sep 25 08:47:17 PDT 2011,160,94,11.018,71787.11,522670144,-946801018,132.0,26 -Sun Sep 25 08:47:18 PDT 2011,160,94,11.074,71798.31,522669202,-946800056,131.8,26 -Sun Sep 25 08:47:19 PDT 2011,160,94,11.018,71809.21,522668288,-946799032,131.8,26 -Sun Sep 25 08:47:20 PDT 2011,160,0,10.638,71820.04,522667407,-946797981,131.8,26 -Sun Sep 25 08:47:21 PDT 2011,160,0,10.235,71830.06,522666593,-946796923,131.6,26 -Sun Sep 25 08:47:22 PDT 2011,160,0,10.139,71840.24,522665785,-946795910,131.6,26 -Sun Sep 25 08:47:23 PDT 2011,159,95,9.861,71850.06,522664981,-946794957,131.6,26 -Sun Sep 25 08:47:24 PDT 2011,158,96,9.952,71860.15,522664179,-946794023,131.4,26 -Sun Sep 25 08:47:25 PDT 2011,158,95,10.044,71870.14,522663349,-946793136,131.4,26 -Sun Sep 25 08:47:26 PDT 2011,157,95,9.998,71880.29,522662518,-946792259,131.4,26 -Sun Sep 25 08:47:27 PDT 2011,157,95,9.513,71889.74,522661709,-946791399,131.4,26 -Sun Sep 25 08:47:28 PDT 2011,156,92,9.472,71899.62,522660891,-946790567,131.4,26 -Sun Sep 25 08:47:29 PDT 2011,156,92,9.513,71907.66,522660157,-946789859,131.4,26 -Sun Sep 25 08:47:30 PDT 2011,156,93,9.641,71917.64,522659350,-946789029,131.2,26 -Sun Sep 25 08:47:31 PDT 2011,156,94,9.739,71927.17,522658530,-946788163,131.0,26 -Sun Sep 25 08:47:32 PDT 2011,155,94,9.739,71937.09,522657727,-946787287,130.8,26 -Sun Sep 25 08:47:33 PDT 2011,155,94,9.399,71946.36,522656932,-946786404,130.6,26 -Sun Sep 25 08:47:34 PDT 2011,155,0,9.198,71955.44,522656162,-946785532,130.6,26 -Sun Sep 25 08:47:35 PDT 2011,154,0,8.894,71964.36,522655426,-946784682,130.4,26 -Sun Sep 25 08:47:36 PDT 2011,153,0,8.679,71973.26,522654703,-946783884,130.2,26 -Sun Sep 25 08:47:37 PDT 2011,153,83,8.575,71981.76,522653983,-946783111,130.2,26 -Sun Sep 25 08:47:38 PDT 2011,153,84,8.679,71990.4,522653270,-946782361,130.0,26 -Sun Sep 25 08:47:39 PDT 2011,153,84,8.44,71998.93,522652560,-946781618,130.0,26 -Sun Sep 25 08:47:40 PDT 2011,152,84,8.31,72007.37,522651866,-946780873,129.8,26 -Sun Sep 25 08:47:41 PDT 2011,152,82,8.215,72015.41,522651186,-946780099,129.8,26 -Sun Sep 25 08:47:42 PDT 2011,151,83,8.507,72024.02,522650513,-946779327,129.6,26 -Sun Sep 25 08:47:43 PDT 2011,151,84,8.644,72032.65,522649815,-946778537,129.6,26 -Sun Sep 25 08:47:44 PDT 2011,150,86,8.829,72041.36,522649105,-946777714,129.6,26 -Sun Sep 25 08:47:45 PDT 2011,150,91,9.014,72050.36,522648379,-946776841,129.4,26 -Sun Sep 25 08:47:46 PDT 2011,150,91,9.052,72059.54,522647652,-946775915,129.4,26 -Sun Sep 25 08:47:47 PDT 2011,150,91,8.793,72068.23,522646922,-946775021,129.4,26 -Sun Sep 25 08:47:48 PDT 2011,150,0,7.378,72076.49,522646177,-946774194,129.4,26 -Sun Sep 25 08:47:49 PDT 2011,149,0,6.69,72082.51,522645615,-946773607,129.4,26 -Sun Sep 25 08:47:50 PDT 2011,149,0,6.12,72088.58,522645084,-946773079,129.4,26 -Sun Sep 25 08:47:51 PDT 2011,149,0,5.73,72094.29,522644606,-946772579,129.2,26 -Sun Sep 25 08:47:52 PDT 2011,149,37,6.173,72100.55,522644127,-946772065,129.2,26 -Sun Sep 25 08:47:53 PDT 2011,149,37,6.173,72106.65,522643634,-946771536,129.2,26 -Sun Sep 25 08:47:54 PDT 2011,149,37,5.61,72112.3,522643189,-946771088,129.2,26 -Sun Sep 25 08:47:55 PDT 2011,149,0,3.664,72115.94,522642851,-946770707,129.2,26 -Sun Sep 25 08:47:56 PDT 2011,149,0,2.975,72118.9,522642590,-946770382,129.2,26 -Sun Sep 25 08:47:57 PDT 2011,149,32,3.324,72122.24,522642386,-946770067,129.2,26 -Sun Sep 25 08:47:58 PDT 2011,149,32,3.621,72125.91,522642153,-946769689,129.2,26 -Sun Sep 25 08:47:59 PDT 2011,150,36,4.809,72130.62,522641858,-946769282,129.2,26 -Sun Sep 25 08:48:00 PDT 2011,150,57,4.93,72135.54,522641470,-946768796,129.2,26 -Sun Sep 25 08:48:01 PDT 2011,151,65,6.018,72141.7,522640980,-946768267,129.2,26 -Sun Sep 25 08:48:02 PDT 2011,152,71,6.568,72148.19,522640409,-946767698,129.2,26 -Sun Sep 25 08:48:03 PDT 2011,153,79,7.11,72155.35,522639796,-946767064,129.0,26 -Sun Sep 25 08:48:04 PDT 2011,154,82,7.353,72162.78,522639144,-946766330,129.0,26 -Sun Sep 25 08:48:05 PDT 2011,155,82,7.92,72170.53,522638478,-946765554,129.0,26 -Sun Sep 25 08:48:06 PDT 2011,157,87,8.223,72178.74,522637821,-946764729,129.0,26 -Sun Sep 25 08:48:07 PDT 2011,158,91,8.16,72186.76,522637155,-946763864,129.0,26 -Sun Sep 25 08:48:08 PDT 2011,160,95,8.652,72195.79,522636460,-946762956,129.0,26 -Sun Sep 25 08:48:09 PDT 2011,161,97,9.052,72204.69,522635740,-946762058,129.0,26 -Sun Sep 25 08:48:10 PDT 2011,162,99,8.977,72213.74,522634998,-946761176,129.0,26 -Sun Sep 25 08:48:11 PDT 2011,163,101,9.207,72222.92,522634224,-946760307,129.0,26 -Sun Sep 25 08:48:12 PDT 2011,164,105,9.661,72232.56,522633424,-946759410,129.0,26 -Sun Sep 25 08:48:13 PDT 2011,164,106,9.883,72242.41,522632619,-946758478,129.0,26 -Sun Sep 25 08:48:14 PDT 2011,165,106,9.883,72252.25,522631807,-946757524,129.0,26 -Sun Sep 25 08:48:15 PDT 2011,166,102,9.661,72261.94,522630997,-946756586,129.0,26 -Sun Sep 25 08:48:16 PDT 2011,167,102,9.44,72271.29,522630183,-946755674,129.0,26 -Sun Sep 25 08:48:17 PDT 2011,167,102,9.159,72280.5,522629404,-946754823,129.0,26 -Sun Sep 25 08:48:18 PDT 2011,168,20,8.785,72289.29,522628657,-946754015,129.0,26 -Sun Sep 25 08:48:19 PDT 2011,167,92,8.474,72297.68,522627937,-946753207,129.0,26 -Sun Sep 25 08:48:20 PDT 2011,167,92,8.507,72306.27,522627253,-946752390,129.0,26 -Sun Sep 25 08:48:21 PDT 2011,167,103,8.541,72314.88,522626572,-946751564,129.2,26 -Sun Sep 25 08:48:22 PDT 2011,167,104,8.655,72323.45,522625874,-946750762,129.4,26 -Sun Sep 25 08:48:23 PDT 2011,167,104,8.644,72331.88,522625150,-946749989,129.6,26 -Sun Sep 25 08:48:24 PDT 2011,167,106,8.644,72340.81,522624409,-946749235,129.8,26 -Sun Sep 25 08:48:25 PDT 2011,167,106,8.931,72349.44,522623642,-946748482,129.8,26 -Sun Sep 25 08:48:26 PDT 2011,167,96,8.894,72358.76,522622874,-946747708,130.0,26 -Sun Sep 25 08:48:27 PDT 2011,167,98,8.894,72367.63,522622102,-946746913,130.2,26 -Sun Sep 25 08:48:28 PDT 2011,168,100,9.159,72376.52,522621315,-946746122,130.2,26 -Sun Sep 25 08:48:29 PDT 2011,168,101,9.358,72385.9,522620503,-946745339,130.4,26 -Sun Sep 25 08:48:30 PDT 2011,169,102,9.44,72395.4,522619669,-946744571,130.4,26 -Sun Sep 25 08:48:31 PDT 2011,169,102,9.44,72404.98,522618822,-946743817,130.4,26 -Sun Sep 25 08:48:32 PDT 2011,170,98,9.358,72414.25,522617963,-946743064,130.6,26 -Sun Sep 25 08:48:33 PDT 2011,170,43,9.44,72423.76,522617108,-946742314,130.6,26 -Sun Sep 25 08:48:34 PDT 2011,170,92,9.198,72432.97,522616248,-946741577,130.6,26 -Sun Sep 25 08:48:35 PDT 2011,170,101,9.358,72442.22,522615374,-946740873,130.6,26 -Sun Sep 25 08:48:36 PDT 2011,171,101,9.44,72451.54,522614484,-946740208,130.8,26 -Sun Sep 25 08:48:37 PDT 2011,171,101,9.12,72460.58,522613594,-946739560,130.8,26 -Sun Sep 25 08:48:38 PDT 2011,171,24,8.857,72469.32,522612728,-946738933,131.0,26 -Sun Sep 25 08:48:39 PDT 2011,171,24,8.894,72478.37,522611884,-946738323,131.2,26 -Sun Sep 25 08:48:40 PDT 2011,170,106,8.627,72486.95,522611065,-946737705,131.4,26 -Sun Sep 25 08:48:41 PDT 2011,170,101,9.082,72496.0,522610238,-946737083,131.6,26 -Sun Sep 25 08:48:42 PDT 2011,170,101,9.482,72505.41,522609379,-946736449,131.8,26 -Sun Sep 25 08:48:43 PDT 2011,170,101,9.277,72514.67,522608501,-946735796,131.8,26 -Sun Sep 25 08:48:44 PDT 2011,171,0,9.159,72524.08,522607610,-946735144,132.0,26 -Sun Sep 25 08:48:45 PDT 2011,170,0,9.12,72533.18,522606734,-946734522,132.2,26 -Sun Sep 25 08:48:46 PDT 2011,170,102,9.043,72542.48,522605867,-946733899,132.2,26 -Sun Sep 25 08:48:47 PDT 2011,169,102,9.44,72551.73,522604993,-946733279,132.4,26 -Sun Sep 25 08:48:48 PDT 2011,169,102,9.482,72561.29,522604115,-946732657,132.4,26 -Sun Sep 25 08:48:49 PDT 2011,169,0,9.273,72570.63,522603214,-946732037,132.4,26 -Sun Sep 25 08:48:50 PDT 2011,168,0,9.233,72579.58,522602314,-946731415,132.6,26 -Sun Sep 25 08:48:51 PDT 2011,168,0,9.194,72588.87,522601428,-946730801,132.6,26 -Sun Sep 25 08:48:52 PDT 2011,166,0,8.983,72597.83,522600567,-946730188,132.6,26 -Sun Sep 25 08:48:53 PDT 2011,165,0,8.891,72606.69,522599718,-946729566,132.8,26 -Sun Sep 25 08:48:54 PDT 2011,164,0,9.002,72618.18,522598657,-946728796,132.8,26 -Sun Sep 25 08:48:55 PDT 2011,163,0,8.855,72624.68,522598061,-946728385,132.8,26 -Sun Sep 25 08:48:56 PDT 2011,162,0,8.891,72633.61,522597225,-946727856,132.8,26 -Sun Sep 25 08:48:57 PDT 2011,161,0,8.928,72642.68,522596380,-946727347,132.8,26 -Sun Sep 25 08:48:58 PDT 2011,160,0,8.873,72651.31,522595539,-946726866,132.8,26 -Sun Sep 25 08:48:59 PDT 2011,159,0,8.928,72660.11,522594648,-946726369,133.0,26 -Sun Sep 25 08:49:00 PDT 2011,157,0,8.965,72669.28,522593720,-946725917,133.0,26 -Sun Sep 25 08:49:01 PDT 2011,156,90,9.116,72678.39,522592794,-946725492,132.8,26 -Sun Sep 25 08:49:02 PDT 2011,155,91,9.313,72687.54,522591847,-946725079,132.6,26 -Sun Sep 25 08:49:03 PDT 2011,156,93,9.602,72697.47,522590864,-946724712,132.4,26 -Sun Sep 25 08:49:04 PDT 2011,156,97,9.732,72707.15,522589844,-946724387,132.2,26 -Sun Sep 25 08:49:05 PDT 2011,156,100,10.143,72717.17,522588761,-946724063,132.2,26 -Sun Sep 25 08:49:06 PDT 2011,156,97,10.539,72727.76,522587634,-946723777,132.0,26 -Sun Sep 25 08:49:07 PDT 2011,156,97,10.696,72738.55,522586485,-946723510,132.0,26 -Sun Sep 25 08:49:08 PDT 2011,155,97,10.912,72749.47,522585315,-946723267,131.8,26 -Sun Sep 25 08:49:09 PDT 2011,154,0,10.995,72760.62,522584076,-946723073,131.8,26 -Sun Sep 25 08:49:10 PDT 2011,153,0,11.137,72771.59,522582925,-946722924,131.4,26 -Sun Sep 25 08:49:11 PDT 2011,152,0,11.253,72782.6,522581703,-946722838,131.2,26 -Sun Sep 25 08:49:12 PDT 2011,150,0,11.312,72793.88,522580468,-946722838,131.0,26 -Sun Sep 25 08:49:13 PDT 2011,149,0,11.679,72805.54,522579193,-946722940,130.6,26 -Sun Sep 25 08:49:14 PDT 2011,148,0,11.871,72817.51,522577903,-946723114,130.4,26 -Sun Sep 25 08:49:15 PDT 2011,148,0,11.585,72829.29,522576618,-946723334,130.0,26 -Sun Sep 25 08:49:16 PDT 2011,148,0,11.937,72841.12,522575362,-946723566,129.6,26 -Sun Sep 25 08:49:17 PDT 2011,148,0,11.554,72852.78,522574142,-946723809,129.2,26 -Sun Sep 25 08:49:18 PDT 2011,148,0,11.554,72864.21,522572929,-946724082,128.8,26 -Sun Sep 25 08:49:19 PDT 2011,148,0,11.904,72876.01,522571714,-946724424,128.2,26 -Sun Sep 25 08:49:20 PDT 2011,146,0,12.207,72888.29,522570481,-946724840,127.8,26 -Sun Sep 25 08:49:21 PDT 2011,144,0,11.742,72899.97,522569271,-946725289,127.4,26 -Sun Sep 25 08:49:22 PDT 2011,143,0,11.431,72911.67,522568061,-946725783,126.8,26 -Sun Sep 25 08:49:23 PDT 2011,142,0,10.967,72922.18,522566923,-946726287,126.4,26 -Sun Sep 25 08:49:24 PDT 2011,140,0,10.24,72932.6,522565851,-946726764,125.8,26 -Sun Sep 25 08:49:25 PDT 2011,138,0,9.821,72942.39,522564821,-946727178,125.4,26 -Sun Sep 25 08:49:26 PDT 2011,137,0,9.56,72952.11,522563811,-946727539,125.0,26 -Sun Sep 25 08:49:27 PDT 2011,137,0,9.476,72961.5,522562799,-946727874,124.6,26 -Sun Sep 25 08:49:28 PDT 2011,136,0,9.394,72971.05,522561771,-946728226,124.4,26 -Sun Sep 25 08:49:29 PDT 2011,136,0,9.313,72980.3,522560750,-946728632,123.8,26 -Sun Sep 25 08:49:30 PDT 2011,136,0,9.04,72989.28,522559776,-946729054,123.4,26 -Sun Sep 25 08:49:31 PDT 2011,137,85,8.965,72998.37,522558819,-946729450,123.0,26 -Sun Sep 25 08:49:32 PDT 2011,138,96,9.059,73007.4,522557895,-946729787,122.6,26 -Sun Sep 25 08:49:33 PDT 2011,139,101,9.37,73016.65,522556945,-946730102,122.2,26 -Sun Sep 25 08:49:34 PDT 2011,141,103,9.534,73026.25,522555980,-946730410,122.0,26 -Sun Sep 25 08:49:35 PDT 2011,144,103,9.662,73035.86,522554985,-946730748,121.8,26 -Sun Sep 25 08:49:36 PDT 2011,145,114,9.662,73045.67,522553992,-946731103,121.4,26 -Sun Sep 25 08:49:37 PDT 2011,148,115,9.619,73055.25,522552985,-946731461,121.2,26 -Sun Sep 25 08:49:38 PDT 2011,149,114,9.748,73064.84,522551983,-946731792,121.0,26 -Sun Sep 25 08:49:39 PDT 2011,152,113,9.576,73074.44,522550978,-946732068,120.8,26 -Sun Sep 25 08:49:40 PDT 2011,153,111,9.534,73083.87,522549982,-946732337,120.8,26 -Sun Sep 25 08:49:41 PDT 2011,156,101,9.411,73093.36,522548991,-946732609,120.6,26 -Sun Sep 25 08:49:42 PDT 2011,157,103,9.619,73102.89,522548008,-946732896,120.4,26 -Sun Sep 25 08:49:43 PDT 2011,159,106,9.792,73112.81,522547000,-946733237,120.4,26 -Sun Sep 25 08:49:44 PDT 2011,160,105,9.926,73122.67,522545989,-946733599,120.2,26 -Sun Sep 25 08:49:45 PDT 2011,161,106,9.817,73132.58,522544987,-946733959,120.2,26 -Sun Sep 25 08:49:46 PDT 2011,161,106,9.795,73142.2,522543988,-946734325,120.0,26 -Sun Sep 25 08:49:47 PDT 2011,162,106,9.536,73151.83,522542993,-946734673,120.0,26 -Sun Sep 25 08:49:48 PDT 2011,162,0,9.33,73161.4,522542038,-946734978,120.0,26 -Sun Sep 25 08:49:49 PDT 2011,162,0,9.133,73170.36,522541103,-946735323,119.8,26 -Sun Sep 25 08:49:50 PDT 2011,161,100,8.871,73179.19,522540194,-946735662,119.8,26 -Sun Sep 25 08:49:51 PDT 2011,161,106,8.982,73188.35,522539295,-946735986,119.8,26 -Sun Sep 25 08:49:52 PDT 2011,161,107,8.835,73197.27,522538391,-946736298,119.8,26 -Sun Sep 25 08:49:53 PDT 2011,161,109,8.945,73206.04,522537434,-946736547,119.6,26 -Sun Sep 25 08:49:54 PDT 2011,161,101,9.231,73215.33,522536484,-946736791,119.6,26 -Sun Sep 25 08:49:55 PDT 2011,161,40,9.172,73224.5,522535516,-946737069,119.6,26 -Sun Sep 25 08:49:56 PDT 2011,161,99,9.048,73233.54,522534554,-946737379,119.6,26 -Sun Sep 25 08:49:57 PDT 2011,161,98,9.163,73242.66,522533606,-946737701,119.6,26 -Sun Sep 25 08:49:58 PDT 2011,162,97,9.01,73251.81,522532669,-946738043,119.6,26 -Sun Sep 25 08:49:59 PDT 2011,162,95,8.935,73260.9,522531726,-946738378,119.6,26 -Sun Sep 25 08:50:00 PDT 2011,162,95,8.789,73270.27,522530794,-946738719,119.4,26 -Sun Sep 25 08:50:01 PDT 2011,163,100,8.843,73278.99,522529918,-946739040,119.4,26 -Sun Sep 25 08:50:02 PDT 2011,163,104,8.753,73287.83,522529043,-946739358,119.4,26 -Sun Sep 25 08:50:03 PDT 2011,163,103,8.695,73296.45,522528163,-946739669,119.4,26 -Sun Sep 25 08:50:04 PDT 2011,164,101,8.648,73305.69,522527255,-946739971,119.6,26 -Sun Sep 25 08:50:05 PDT 2011,164,100,8.511,73312.87,522526498,-946740212,119.8,26 -Sun Sep 25 08:50:06 PDT 2011,164,99,8.346,73321.26,522525637,-946740511,120.0,26 -Sun Sep 25 08:50:07 PDT 2011,164,112,8.282,73329.53,522524790,-946740827,120.2,26 -Sun Sep 25 08:50:08 PDT 2011,164,114,8.648,73338.11,522523919,-946741188,120.4,26 -Sun Sep 25 08:50:09 PDT 2011,164,101,8.718,73346.83,522523045,-946741524,120.4,26 -Sun Sep 25 08:50:10 PDT 2011,165,107,8.511,73355.21,522522169,-946741864,120.6,26 -Sun Sep 25 08:50:11 PDT 2011,165,107,8.156,73363.44,522521293,-946742167,120.6,26 -Sun Sep 25 08:50:12 PDT 2011,165,107,8.156,73371.54,522520425,-946742451,120.8,26 -Sun Sep 25 08:50:13 PDT 2011,165,105,8.126,73379.76,522519593,-946742740,120.8,26 -Sun Sep 25 08:50:14 PDT 2011,166,103,8.005,73387.6,522518780,-946743031,121.2,26 -Sun Sep 25 08:50:15 PDT 2011,166,98,7.774,73395.45,522517991,-946743346,121.4,26 -Sun Sep 25 08:50:16 PDT 2011,166,96,7.374,73402.91,522517230,-946743638,121.6,26 -Sun Sep 25 08:50:17 PDT 2011,167,97,7.4,73410.22,522516508,-946743904,121.8,26 -Sun Sep 25 08:50:18 PDT 2011,167,96,7.374,73417.65,522515793,-946744113,122.0,26 -Sun Sep 25 08:50:19 PDT 2011,168,91,7.275,73424.87,522515120,-946744376,122.4,26 -Sun Sep 25 08:50:20 PDT 2011,168,87,7.037,73432.13,522514465,-946744617,122.8,26 -Sun Sep 25 08:50:21 PDT 2011,168,88,7.275,73439.29,522513808,-946744834,123.2,26 -Sun Sep 25 08:50:22 PDT 2011,170,88,7.4,73446.65,522513103,-946745021,123.4,26 -Sun Sep 25 08:50:23 PDT 2011,171,88,7.349,73454.07,522512365,-946745178,123.8,26 -Sun Sep 25 08:50:24 PDT 2011,172,88,7.425,73461.33,522511587,-946745275,124.0,26 -Sun Sep 25 08:50:25 PDT 2011,172,89,7.529,73468.84,522510780,-946745421,124.4,26 -Sun Sep 25 08:50:26 PDT 2011,174,89,7.477,73476.39,522509965,-946745602,124.8,26 -Sun Sep 25 08:50:27 PDT 2011,175,91,7.636,73483.82,522509138,-946745792,125.2,26 -Sun Sep 25 08:50:28 PDT 2011,176,92,7.609,73491.46,522508322,-946745946,125.4,26 -Sun Sep 25 08:50:29 PDT 2011,176,92,7.746,73499.27,522507519,-946746045,126.0,26 -Sun Sep 25 08:50:30 PDT 2011,177,38,7.451,73506.87,522506699,-946746084,126.4,26 -Sun Sep 25 08:50:31 PDT 2011,177,85,7.107,73513.92,522505936,-946746143,126.8,26 -Sun Sep 25 08:50:32 PDT 2011,178,31,7.154,73521.06,522505251,-946746243,127.2,26 -Sun Sep 25 08:50:33 PDT 2011,178,85,6.902,73528.02,522504640,-946746369,127.8,26 -Sun Sep 25 08:50:34 PDT 2011,179,91,6.793,73534.76,522504056,-946746509,128.2,26 -Sun Sep 25 08:50:35 PDT 2011,179,94,7.202,73542.02,522503503,-946746666,128.6,26 -Sun Sep 25 08:50:36 PDT 2011,179,94,7.226,73549.19,522502883,-946746777,129.0,26 -Sun Sep 25 08:50:37 PDT 2011,179,94,7.192,73556.39,522502190,-946746899,129.4,26 -Sun Sep 25 08:50:38 PDT 2011,178,97,7.168,73563.47,522501424,-946747020,129.6,26 -Sun Sep 25 08:50:39 PDT 2011,178,97,7.39,73570.78,522500603,-946747086,130.0,26 -Sun Sep 25 08:50:40 PDT 2011,178,99,7.52,73578.65,522499725,-946747043,130.2,26 -Sun Sep 25 08:50:41 PDT 2011,178,102,7.627,73586.04,522498868,-946747121,130.4,26 -Sun Sep 25 08:50:42 PDT 2011,178,103,7.85,73593.86,522498004,-946747161,130.6,26 -Sun Sep 25 08:50:43 PDT 2011,178,97,7.879,73601.81,522497132,-946747087,131.0,26 -Sun Sep 25 08:50:44 PDT 2011,178,95,7.879,73609.53,522496294,-946746852,131.4,26 -Sun Sep 25 08:50:45 PDT 2011,178,96,7.908,73617.51,522495470,-946746597,131.6,26 -Sun Sep 25 08:50:46 PDT 2011,178,96,7.997,73625.54,522494613,-946746313,132.0,26 -Sun Sep 25 08:50:47 PDT 2011,177,97,8.027,73633.46,522493795,-946745997,132.2,26 -Sun Sep 25 08:50:48 PDT 2011,177,97,8.087,73641.54,522493054,-946745604,132.4,26 -Sun Sep 25 08:50:49 PDT 2011,177,98,8.18,73649.72,522492345,-946745139,132.6,26 -Sun Sep 25 08:50:50 PDT 2011,177,98,8.149,73657.93,522491262,-946745163,132.8,26 -Sun Sep 25 08:50:51 PDT 2011,177,98,8.18,73666.17,522490090,-946745351,133.0,26 -Sun Sep 25 08:50:52 PDT 2011,177,98,8.149,73674.2,522488936,-946745509,133.2,26 -Sun Sep 25 08:50:53 PDT 2011,177,98,8.149,73682.4,522487852,-946745546,133.4,26 -Sun Sep 25 08:50:54 PDT 2011,177,99,8.243,73690.71,522486894,-946745432,133.4,26 -Sun Sep 25 08:50:55 PDT 2011,177,99,8.243,73699.09,522486112,-946745096,133.6,26 -Sun Sep 25 08:50:56 PDT 2011,176,99,8.18,73707.2,522485271,-946744821,133.6,26 -Sun Sep 25 08:50:57 PDT 2011,176,0,7.908,73715.36,522484407,-946744617,133.8,26 -Sun Sep 25 08:50:58 PDT 2011,176,0,7.765,73723.85,522483466,-946744394,133.8,26 -Sun Sep 25 08:50:59 PDT 2011,175,0,7.688,73730.84,522482734,-946744142,133.8,26 -Sun Sep 25 08:51:00 PDT 2011,175,0,7.468,73738.28,522481931,-946743886,134.0,26 -Sun Sep 25 08:51:01 PDT 2011,174,0,7.243,73745.37,522481193,-946743662,134.0,26 -Sun Sep 25 08:51:02 PDT 2011,173,0,6.853,73752.33,522480472,-946743473,134.0,26 -Sun Sep 25 08:51:03 PDT 2011,173,0,6.602,73758.77,522479765,-946743327,134.2,26 -Sun Sep 25 08:51:04 PDT 2011,171,0,6.369,73765.19,522479086,-946743217,134.2,26 -Sun Sep 25 08:51:05 PDT 2011,170,0,6.187,73771.27,522478428,-946743084,134.2,26 -Sun Sep 25 08:51:06 PDT 2011,169,0,6.083,73777.4,522477797,-946742936,134.2,26 -Sun Sep 25 08:51:07 PDT 2011,167,0,5.806,73783.2,522477196,-946742767,134.2,26 -Sun Sep 25 08:51:08 PDT 2011,165,0,5.455,73788.71,522476630,-946742621,134.2,26 -Sun Sep 25 08:51:09 PDT 2011,164,0,5.168,73793.77,522476104,-946742519,134.4,26 -Sun Sep 25 08:51:10 PDT 2011,163,0,4.888,73798.62,522475606,-946742435,134.4,26 -Sun Sep 25 08:51:11 PDT 2011,162,0,4.791,73803.54,522475140,-946742337,134.6,26 -Sun Sep 25 08:51:12 PDT 2011,160,0,4.483,73808.01,522474694,-946742212,134.8,26 -Sun Sep 25 08:51:13 PDT 2011,159,0,4.34,73812.4,522474273,-946742058,135.0,26 -Sun Sep 25 08:51:14 PDT 2011,158,0,3.833,73816.11,522473885,-946741921,135.2,26 -Sun Sep 25 08:51:15 PDT 2011,156,0,3.394,73819.53,522473534,-946741806,135.2,26 -Sun Sep 25 08:51:16 PDT 2011,155,0,3.256,73822.75,522473201,-946741706,135.4,26 -Sun Sep 25 08:51:17 PDT 2011,154,0,3.256,73826.07,522472879,-946741630,135.6,26 -Sun Sep 25 08:51:18 PDT 2011,154,0,3.296,73829.45,522472575,-946741575,135.6,26 -Sun Sep 25 08:51:19 PDT 2011,154,0,2.86,73832.29,522472300,-946741547,135.8,26 -Sun Sep 25 08:51:20 PDT 2011,154,0,2.593,73834.86,522472049,-946741531,135.8,26 -Sun Sep 25 08:51:21 PDT 2011,154,0,2.438,73837.29,522471842,-946741535,136.0,26 -Sun Sep 25 08:51:22 PDT 2011,155,0,2.189,73839.54,522471666,-946741510,136.0,26 -Sun Sep 25 08:51:23 PDT 2011,155,0,1.831,73841.35,522471511,-946741480,136.0,26 -Sun Sep 25 08:51:24 PDT 2011,154,0,1.655,73842.98,522471362,-946741428,136.0,26 -Sun Sep 25 08:52:18 PDT 2011,138,0,0.0,73842.98,522470828,-946741208,136.6,26 -Sun Sep 25 08:52:19 PDT 2011,140,0,1.782,73844.9,522470567,-946741109,136.6,26 -Sun Sep 25 08:52:20 PDT 2011,141,46,1.97,73846.78,522470219,-946741003,136.6,26 -Sun Sep 25 08:52:21 PDT 2011,143,61,1.97,73848.98,522469696,-946740841,136.6,26 -Sun Sep 25 08:52:22 PDT 2011,144,47,4.857,73853.26,522469224,-946740686,136.6,26 -Sun Sep 25 08:52:23 PDT 2011,146,71,5.171,73858.42,522468621,-946740515,136.6,26 -Sun Sep 25 08:52:24 PDT 2011,147,73,5.858,73864.2,522467960,-946740326,136.6,26 -Sun Sep 25 08:52:25 PDT 2011,148,79,6.339,73870.56,522467239,-946740126,136.6,26 -Sun Sep 25 08:52:26 PDT 2011,149,91,7.075,73877.7,522466471,-946739909,136.6,26 -Sun Sep 25 08:52:27 PDT 2011,151,96,7.803,73885.44,522465625,-946739698,136.6,26 -Sun Sep 25 08:52:28 PDT 2011,152,101,8.612,73894.08,522464746,-946739479,136.6,26 -Sun Sep 25 08:52:29 PDT 2011,153,100,8.477,73902.36,522463841,-946739257,136.6,26 -Sun Sep 25 08:52:30 PDT 2011,156,100,8.378,73910.76,522462937,-946739050,136.6,26 -Sun Sep 25 08:52:31 PDT 2011,157,99,8.346,73919.34,522462051,-946738828,136.6,26 -Sun Sep 25 08:52:32 PDT 2011,159,101,8.378,73927.56,522461181,-946738613,136.6,26 -Sun Sep 25 08:52:33 PDT 2011,160,103,8.578,73936.07,522460285,-946738394,136.8,26 -Sun Sep 25 08:52:34 PDT 2011,161,104,8.716,73944.94,522459368,-946738184,137.0,26 -Sun Sep 25 08:52:35 PDT 2011,163,104,8.751,73953.66,522458456,-946737961,137.2,26 -Sun Sep 25 08:52:36 PDT 2011,164,104,8.747,73962.53,522457531,-946737753,137.4,26 -Sun Sep 25 08:52:37 PDT 2011,165,104,8.747,73971.11,522456601,-946737521,137.4,26 -Sun Sep 25 08:52:38 PDT 2011,165,105,8.783,73979.86,522455682,-946737283,137.6,26 -Sun Sep 25 08:52:39 PDT 2011,166,96,8.891,73988.68,522454747,-946737037,137.6,26 -Sun Sep 25 08:52:40 PDT 2011,166,99,8.965,73998.04,522453805,-946736761,137.8,26 -Sun Sep 25 08:52:41 PDT 2011,167,100,9.194,74006.89,522452825,-946736469,137.8,26 -Sun Sep 25 08:52:42 PDT 2011,167,103,9.435,74016.31,522451840,-946736143,138.0,26 -Sun Sep 25 08:52:43 PDT 2011,168,99,9.602,74025.94,522450825,-946735809,138.0,26 -Sun Sep 25 08:52:44 PDT 2011,168,95,9.776,74035.63,522449768,-946735433,138.0,26 -Sun Sep 25 08:52:45 PDT 2011,168,96,9.956,74045.58,522448708,-946735048,138.2,26 -Sun Sep 25 08:52:46 PDT 2011,169,96,10.096,74055.68,522447652,-946734646,138.2,26 -Sun Sep 25 08:52:47 PDT 2011,169,96,9.956,74065.69,522446593,-946734306,138.2,26 -Sun Sep 25 08:52:48 PDT 2011,168,21,9.607,74075.36,522445547,-946734004,138.2,26 -Sun Sep 25 08:52:49 PDT 2011,168,102,9.65,74084.89,522444523,-946733752,138.4,26 -Sun Sep 25 08:52:50 PDT 2011,167,105,9.87,74094.92,522443470,-946733496,138.4,26 -Sun Sep 25 08:52:51 PDT 2011,167,98,10.148,74104.96,522442381,-946733250,138.4,26 -Sun Sep 25 08:52:52 PDT 2011,167,100,10.244,74115.15,522441266,-946732909,138.4,26 -Sun Sep 25 08:52:53 PDT 2011,167,102,10.493,74125.69,522440136,-946732563,138.4,26 -Sun Sep 25 08:52:54 PDT 2011,167,104,10.701,74136.44,522438958,-946732221,138.4,26 -Sun Sep 25 08:52:55 PDT 2011,167,103,10.917,74147.26,522437768,-946731891,138.4,26 -Sun Sep 25 08:52:56 PDT 2011,167,94,12.282,74159.54,522436560,-946731573,138.2,26 -Sun Sep 25 08:52:57 PDT 2011,167,95,11.2,74170.86,522435352,-946731336,138.0,26 -Sun Sep 25 08:52:58 PDT 2011,167,98,11.322,74182.07,522434145,-946731077,137.8,26 -Sun Sep 25 08:52:59 PDT 2011,167,99,11.565,74193.81,522432946,-946730828,137.6,26 -Sun Sep 25 08:53:00 PDT 2011,167,100,11.69,74205.33,522431739,-946730577,137.4,26 -Sun Sep 25 08:53:01 PDT 2011,168,101,11.839,74217.43,522430540,-946730295,137.2,26 -Sun Sep 25 08:53:02 PDT 2011,168,103,12.014,74229.29,522429321,-946729948,137.0,26 -Sun Sep 25 08:53:03 PDT 2011,168,104,12.082,74243.28,522427909,-946729483,136.8,26 -Sun Sep 25 08:53:05 PDT 2011,168,105,12.218,74261.7,522426070,-946728784,136.4,26 -Sun Sep 25 08:53:05 PDT 2011,168,100,12.358,74266.08,522425614,-946728624,136.2,26 -Sun Sep 25 08:53:06 PDT 2011,168,98,12.358,74278.41,522424348,-946728140,136.0,26 -Sun Sep 25 08:53:07 PDT 2011,168,98,12.429,74290.93,522423057,-946727680,135.8,26 -Sun Sep 25 08:53:08 PDT 2011,168,98,12.288,74303.19,522421761,-946727212,135.6,26 -Sun Sep 25 08:53:09 PDT 2011,168,0,12.358,74315.45,522420480,-946726731,135.4,26 -Sun Sep 25 08:53:10 PDT 2011,168,0,12.082,74328.01,522419215,-946726252,135.0,26 -Sun Sep 25 08:53:11 PDT 2011,167,0,11.596,74339.0,522417991,-946725788,134.6,26 -Sun Sep 25 08:53:12 PDT 2011,167,0,11.09,74350.29,522416820,-946725318,134.2,26 -Sun Sep 25 08:53:13 PDT 2011,165,0,10.601,74360.97,522415707,-946724871,134.0,26 -Sun Sep 25 08:53:14 PDT 2011,164,0,10.201,74371.08,522414654,-946724461,133.8,26 -Sun Sep 25 08:53:15 PDT 2011,163,0,9.875,74381.03,522413661,-946724063,133.2,26 -Sun Sep 25 08:53:16 PDT 2011,162,0,9.527,74390.4,522412706,-946723669,132.8,26 -Sun Sep 25 08:53:17 PDT 2011,162,0,8.899,74399.45,522411809,-946723286,132.4,26 -Sun Sep 25 08:53:18 PDT 2011,162,0,8.192,74407.65,522410979,-946722923,132.0,26 -Sun Sep 25 08:53:19 PDT 2011,161,0,7.509,74415.07,522410219,-946722593,131.8,26 -Sun Sep 25 08:53:20 PDT 2011,160,0,7.161,74422.36,522409533,-946722316,131.4,26 -Sun Sep 25 08:53:21 PDT 2011,158,0,6.533,74428.76,522408913,-946722082,131.2,26 -Sun Sep 25 08:53:22 PDT 2011,156,0,5.845,74434.83,522408342,-946721901,131.0,26 -Sun Sep 25 08:53:23 PDT 2011,155,0,5.149,74439.85,522407845,-946721763,130.4,26 -Sun Sep 25 08:53:24 PDT 2011,153,0,4.562,74444.37,522407406,-946721641,130.2,26 -Sun Sep 25 08:53:25 PDT 2011,150,0,4.119,74448.57,522407024,-946721521,129.8,26 -Sun Sep 25 08:53:26 PDT 2011,148,0,3.896,74452.38,522406696,-946721391,129.4,26 -Sun Sep 25 08:53:27 PDT 2011,146,0,2.91,74455.35,522406440,-946721263,129.2,26 -Sun Sep 25 08:53:28 PDT 2011,144,0,2.91,74458.26,522406247,-946721152,128.8,26 -Sun Sep 25 08:53:29 PDT 2011,143,0,2.206,74460.44,522406101,-946721062,128.6,26 -Sun Sep 25 08:53:30 PDT 2011,143,0,1.727,74462.17,522405973,-946720989,128.4,26 -Sun Sep 25 08:53:31 PDT 2011,143,0,1.756,74463.91,522405828,-946720917,128.2,26 -Sun Sep 25 08:53:32 PDT 2011,142,0,1.777,74465.71,522405692,-946720830,128.0,26 -Sun Sep 25 08:53:33 PDT 2011,143,0,1.748,74467.46,522405578,-946720748,128.0,26 -Sun Sep 25 08:53:34 PDT 2011,144,0,1.49,74468.94,522405515,-946720698,127.8,26 -Sun Sep 25 08:54:00 PDT 2011,140,0,0.0,74468.94,522405413,-946720649,126.6,26 -Sun Sep 25 08:54:01 PDT 2011,141,0,1.987,74471.04,522405170,-946720524,126.6,26 -Sun Sep 25 08:54:02 PDT 2011,142,0,2.44,74473.4,522404864,-946720367,126.6,26 -Sun Sep 25 08:54:03 PDT 2011,143,53,2.44,74476.14,522404391,-946720140,126.6,26 -Sun Sep 25 08:54:04 PDT 2011,144,53,5.173,74480.69,522403946,-946719936,126.6,26 -Sun Sep 25 08:54:05 PDT 2011,145,63,5.721,74486.39,522403357,-946719697,126.6,26 -Sun Sep 25 08:54:06 PDT 2011,146,73,6.323,74492.73,522402675,-946719412,126.6,26 -Sun Sep 25 08:54:07 PDT 2011,147,74,6.887,74499.61,522401946,-946719113,126.6,26 -Sun Sep 25 08:54:08 PDT 2011,148,71,7.406,74506.94,522401235,-946718769,126.6,26 -Sun Sep 25 08:54:09 PDT 2011,149,71,7.669,74514.71,522400486,-946718473,126.6,26 -Sun Sep 25 08:54:10 PDT 2011,151,82,8.161,74522.79,522399700,-946718222,126.6,26 -Sun Sep 25 08:54:11 PDT 2011,151,91,8.099,74530.91,522398896,-946718035,126.6,26 -Sun Sep 25 08:54:12 PDT 2011,152,95,8.514,74539.52,522398017,-946717954,126.6,26 -Sun Sep 25 08:54:13 PDT 2011,154,102,9.125,74548.56,522397058,-946717992,126.6,26 -Sun Sep 25 08:54:14 PDT 2011,155,105,9.527,74558.08,522396055,-946718148,126.6,26 -Sun Sep 25 08:54:15 PDT 2011,156,107,9.83,74567.76,522394996,-946718447,126.6,26 -Sun Sep 25 08:54:16 PDT 2011,158,112,10.106,74577.86,522393876,-946718859,126.6,26 -Sun Sep 25 08:54:17 PDT 2011,159,115,10.653,74588.55,522392748,-946719309,126.6,26 -Sun Sep 25 08:54:18 PDT 2011,160,115,11.034,74599.45,522391577,-946719809,126.6,26 -Sun Sep 25 08:54:19 PDT 2011,161,115,11.147,74610.6,522390364,-946720291,126.6,26 -Sun Sep 25 08:54:20 PDT 2011,160,19,11.264,74621.86,522389220,-946720847,126.6,26 -Sun Sep 25 08:54:21 PDT 2011,160,98,11.382,74633.25,522388062,-946721517,126.6,26 -Sun Sep 25 08:54:22 PDT 2011,159,100,11.658,74644.97,522386901,-946722205,126.6,26 -Sun Sep 25 08:54:23 PDT 2011,159,105,11.948,74656.94,522385685,-946722854,126.6,26 -Sun Sep 25 08:54:24 PDT 2011,160,107,12.429,74669.35,522384375,-946723455,126.6,26 -Sun Sep 25 08:54:25 PDT 2011,160,107,12.647,74682.08,522382999,-946723961,126.4,26 -Sun Sep 25 08:54:26 PDT 2011,161,108,12.573,74695.08,522381621,-946724311,126.2,26 -Sun Sep 25 08:54:27 PDT 2011,161,110,12.873,74707.58,522380285,-946724633,126.0,26 -Sun Sep 25 08:54:28 PDT 2011,162,110,12.95,74721.04,522378939,-946724810,125.4,26 -Sun Sep 25 08:54:29 PDT 2011,162,110,12.911,74733.51,522377596,-946724754,125.0,26 -Sun Sep 25 08:54:30 PDT 2011,163,110,13.028,74746.84,522376198,-946724504,124.6,26 -Sun Sep 25 08:54:31 PDT 2011,165,110,13.028,74759.69,522374780,-946724168,124.4,26 -Sun Sep 25 08:54:32 PDT 2011,166,110,13.028,74772.76,522373365,-946723689,124.0,26 -Sun Sep 25 08:54:33 PDT 2011,167,108,12.873,74785.33,522371995,-946723143,123.8,26 -Sun Sep 25 08:54:34 PDT 2011,168,107,12.684,74798.35,522370672,-946722483,123.8,26 -Sun Sep 25 08:54:35 PDT 2011,170,107,12.573,74810.6,522369393,-946721693,123.8,26 -Sun Sep 25 08:54:36 PDT 2011,171,113,12.537,74823.08,522368165,-946720828,123.8,26 -Sun Sep 25 08:54:37 PDT 2011,172,117,12.288,74835.46,522366950,-946719959,123.8,26 -Sun Sep 25 08:54:38 PDT 2011,173,115,12.218,74847.83,522365760,-946719157,123.8,26 -Sun Sep 25 08:54:39 PDT 2011,174,113,11.882,74859.64,522364586,-946718408,123.8,26 -Sun Sep 25 08:54:40 PDT 2011,174,113,11.753,74871.36,522363431,-946717687,123.6,26 -Sun Sep 25 08:54:41 PDT 2011,175,111,11.596,74882.93,522362290,-946716973,123.6,26 -Sun Sep 25 08:54:42 PDT 2011,175,108,11.322,74894.25,522361168,-946716273,123.8,26 -Sun Sep 25 08:54:43 PDT 2011,176,108,11.205,74905.47,522360070,-946715585,124.0,26 -Sun Sep 25 08:54:44 PDT 2011,176,106,11.147,74916.51,522358987,-946714979,124.2,26 -Sun Sep 25 08:54:45 PDT 2011,177,105,11.034,74927.46,522357932,-946714386,124.4,26 -Sun Sep 25 08:54:46 PDT 2011,177,105,10.85,74938.29,522356876,-946713772,124.4,26 -Sun Sep 25 08:54:47 PDT 2011,177,106,10.933,74949.22,522355811,-946713162,124.6,26 -Sun Sep 25 08:54:48 PDT 2011,178,107,11.158,74960.54,522354716,-946712596,125.0,26 -Sun Sep 25 08:54:49 PDT 2011,178,107,10.988,74971.4,522353608,-946712057,125.2,26 -Sun Sep 25 08:54:50 PDT 2011,178,105,10.878,74982.49,522352488,-946711599,125.4,26 -Sun Sep 25 08:54:51 PDT 2011,178,105,11.044,74993.4,522351370,-946711226,125.8,26 -Sun Sep 25 08:54:52 PDT 2011,178,105,10.933,75004.55,522350247,-946710864,126.0,26 -Sun Sep 25 08:54:53 PDT 2011,178,25,10.611,75014.84,522349128,-946710521,126.2,26 -Sun Sep 25 08:54:54 PDT 2011,178,102,10.559,75025.58,522348025,-946710203,126.2,26 -Sun Sep 25 08:54:55 PDT 2011,178,102,10.508,75036.1,522346934,-946709923,126.4,26 -Sun Sep 25 08:54:56 PDT 2011,178,102,10.508,75046.49,522345843,-946709619,126.6,26 -Sun Sep 25 08:54:57 PDT 2011,177,28,10.357,75056.77,522344754,-946709380,126.6,26 -Sun Sep 25 08:54:58 PDT 2011,177,28,10.211,75066.98,522343705,-946709184,126.8,26 -Sun Sep 25 08:54:59 PDT 2011,177,99,10.163,75077.15,522342644,-946708998,127.0,26 -Sun Sep 25 08:55:00 PDT 2011,177,100,10.382,75087.53,522341566,-946708853,127.0,26 -Sun Sep 25 08:55:01 PDT 2011,176,102,10.457,75098.01,522340488,-946708717,127.0,26 -Sun Sep 25 08:55:02 PDT 2011,176,99,10.716,75108.7,522339349,-946708499,127.2,26 -Sun Sep 25 08:55:03 PDT 2011,176,93,10.878,75119.58,522338201,-946708282,127.2,26 -Sun Sep 25 08:55:04 PDT 2011,176,93,11.016,75130.59,522337105,-946707988,127.2,26 -Sun Sep 25 08:55:05 PDT 2011,176,93,10.905,75141.86,522335978,-946707628,127.4,26 -Sun Sep 25 08:55:06 PDT 2011,175,0,10.769,75152.96,522334866,-946707242,127.4,26 -Sun Sep 25 08:55:07 PDT 2011,175,0,10.407,75163.15,522333766,-946706858,127.4,26 -Sun Sep 25 08:55:08 PDT 2011,175,0,10.235,75174.87,522332519,-946706333,127.4,26 -Sun Sep 25 08:55:09 PDT 2011,174,0,10.068,75183.33,522331694,-946706011,127.4,26 -Sun Sep 25 08:55:10 PDT 2011,174,96,9.975,75193.36,522330718,-946705588,127.6,26 -Sun Sep 25 08:55:11 PDT 2011,173,98,10.068,75203.22,522329761,-946705101,127.6,26 -Sun Sep 25 08:55:12 PDT 2011,173,99,10.211,75213.29,522328801,-946704497,127.6,26 -Sun Sep 25 08:55:13 PDT 2011,173,100,10.357,75223.65,522327868,-946703815,127.6,26 -Sun Sep 25 08:55:14 PDT 2011,172,101,10.508,75234.2,522326919,-946703006,127.6,26 -Sun Sep 25 08:55:15 PDT 2011,172,101,10.559,75244.72,522325983,-946702103,127.6,26 -Sun Sep 25 08:55:16 PDT 2011,171,101,10.259,75254.97,522325100,-946701141,127.6,26 -Sun Sep 25 08:55:17 PDT 2011,171,106,10.115,75265.09,522324266,-946700122,127.6,26 -Sun Sep 25 08:55:18 PDT 2011,170,104,10.211,75275.3,522323480,-946699022,127.6,26 -Sun Sep 25 08:55:19 PDT 2011,169,101,10.457,75285.76,522322750,-946697852,127.8,26 -Sun Sep 25 08:55:20 PDT 2011,169,50,10.508,75296.5,522322051,-946696650,127.8,26 -Sun Sep 25 08:55:21 PDT 2011,169,99,10.457,75306.85,522321382,-946695383,127.8,26 -Sun Sep 25 08:55:22 PDT 2011,169,95,10.559,75317.52,522320773,-946694066,127.8,26 -Sun Sep 25 08:55:23 PDT 2011,169,95,10.508,75327.82,522320220,-946692701,127.8,26 -Sun Sep 25 08:55:24 PDT 2011,169,95,10.457,75338.24,522319712,-946691300,127.8,26 -Sun Sep 25 08:55:25 PDT 2011,169,0,10.308,75348.79,522319270,-946689883,127.8,26 -Sun Sep 25 08:55:26 PDT 2011,169,0,10.163,75358.73,522318846,-946688463,127.8,26 -Sun Sep 25 08:55:27 PDT 2011,168,0,10.021,75368.73,522318445,-946687085,127.8,26 -Sun Sep 25 08:55:28 PDT 2011,166,0,9.839,75378.69,522318064,-946685777,127.8,26 -Sun Sep 25 08:55:29 PDT 2011,165,0,9.795,75388.37,522317652,-946684469,127.8,26 -Sun Sep 25 08:55:30 PDT 2011,163,0,9.578,75397.95,522317223,-946683218,127.8,26 -Sun Sep 25 08:55:31 PDT 2011,162,0,9.411,75407.44,522316787,-946681992,127.8,26 -Sun Sep 25 08:55:32 PDT 2011,161,91,9.494,75416.86,522316352,-946680772,127.8,26 -Sun Sep 25 08:55:33 PDT 2011,160,91,9.452,75426.31,522315885,-946679550,127.8,26 -Sun Sep 25 08:55:34 PDT 2011,159,25,9.27,75435.61,522315396,-946678401,127.8,26 -Sun Sep 25 08:55:35 PDT 2011,157,89,9.251,75445.05,522314841,-946677285,127.8,26 -Sun Sep 25 08:55:36 PDT 2011,156,89,9.251,75454.23,522314229,-946676211,127.6,26 -Sun Sep 25 08:55:37 PDT 2011,155,27,9.057,75463.27,522313565,-946675215,127.4,26 -Sun Sep 25 08:55:38 PDT 2011,154,92,9.057,75472.33,522312864,-946674280,127.2,26 -Sun Sep 25 08:55:39 PDT 2011,154,89,9.133,75481.33,522312121,-946673358,127.0,26 -Sun Sep 25 08:55:40 PDT 2011,154,90,9.211,75490.54,522311355,-946672492,127.0,26 -Sun Sep 25 08:55:41 PDT 2011,153,92,9.452,75500.0,522310572,-946671682,126.8,26 -Sun Sep 25 08:55:42 PDT 2011,153,94,9.578,75509.69,522309719,-946670917,126.8,26 -Sun Sep 25 08:55:43 PDT 2011,154,97,9.907,75519.63,522308795,-946670226,126.6,26 -Sun Sep 25 08:55:44 PDT 2011,154,99,10.163,75529.64,522307770,-946669628,126.6,26 -Sun Sep 25 08:55:45 PDT 2011,155,101,10.716,75540.37,522306711,-946669143,126.4,26 -Sun Sep 25 08:55:46 PDT 2011,156,103,10.716,75551.07,522305596,-946668710,126.4,26 -Sun Sep 25 08:55:47 PDT 2011,157,103,10.716,75561.79,522304455,-946668273,126.4,26 -Sun Sep 25 08:55:48 PDT 2011,158,103,10.611,75572.4,522303345,-946667881,126.2,26 -Sun Sep 25 08:55:49 PDT 2011,158,0,10.357,75582.97,522302240,-946667468,126.2,26 -Sun Sep 25 08:55:50 PDT 2011,158,0,10.163,75593.0,522301174,-946667048,126.2,26 -Sun Sep 25 08:55:51 PDT 2011,157,97,10.021,75602.95,522300110,-946666634,126.2,26 -Sun Sep 25 08:55:52 PDT 2011,158,98,10.259,75613.21,522299046,-946666191,126.2,26 -Sun Sep 25 08:55:53 PDT 2011,158,94,10.211,75624.12,522297967,-946665718,126.0,26 -Sun Sep 25 08:55:54 PDT 2011,158,94,10.283,75634.75,522296921,-946665256,126.0,26 -Sun Sep 25 08:55:55 PDT 2011,157,94,10.115,75644.81,522295884,-946664803,126.0,26 -Sun Sep 25 08:55:56 PDT 2011,157,0,9.975,75655.01,522294859,-946664388,126.0,26 -Sun Sep 25 08:55:57 PDT 2011,156,0,9.884,75664.77,522293871,-946663993,126.0,26 -Sun Sep 25 08:55:58 PDT 2011,155,0,9.642,75674.48,522292897,-946663592,126.0,26 -Sun Sep 25 08:55:59 PDT 2011,154,89,9.621,75683.9,522291921,-946663202,126.0,26 -Sun Sep 25 08:56:00 PDT 2011,154,94,9.707,75693.47,522290962,-946662780,126.0,26 -Sun Sep 25 08:56:01 PDT 2011,154,89,9.884,75703.5,522290018,-946662274,125.8,26 -Sun Sep 25 08:56:02 PDT 2011,153,89,9.929,75713.9,522289059,-946661769,125.8,26 -Sun Sep 25 08:56:03 PDT 2011,154,89,9.975,75723.72,522288073,-946661321,125.8,26 -Sun Sep 25 08:56:04 PDT 2011,153,0,9.621,75733.97,522287031,-946660881,125.8,26 -Sun Sep 25 08:56:05 PDT 2011,153,0,9.515,75742.91,522286061,-946660499,125.8,26 -Sun Sep 25 08:56:06 PDT 2011,152,88,9.494,75752.25,522285057,-946660087,125.8,26 -Sun Sep 25 08:56:07 PDT 2011,151,88,9.494,75760.72,522284167,-946659704,125.8,26 -Sun Sep 25 08:56:08 PDT 2011,151,87,9.29,75770.3,522283229,-946659274,125.8,26 -Sun Sep 25 08:56:09 PDT 2011,151,81,9.251,75779.21,522282267,-946658821,125.8,26 -Sun Sep 25 08:56:10 PDT 2011,152,86,9.867,75789.22,522281295,-946658385,125.8,26 -Sun Sep 25 08:56:11 PDT 2011,152,86,10.052,75799.12,522280269,-946657947,125.8,26 -Sun Sep 25 08:56:12 PDT 2011,152,86,9.912,75809.04,522279257,-946657531,125.6,26 -Sun Sep 25 08:56:13 PDT 2011,153,86,9.958,75819.0,522278216,-946657107,125.4,26 -Sun Sep 25 08:56:14 PDT 2011,154,0,9.601,75828.68,522277222,-946656694,125.2,26 -Sun Sep 25 08:56:15 PDT 2011,154,0,9.474,75838.13,522276242,-946656277,125.2,26 -Sun Sep 25 08:56:16 PDT 2011,154,0,9.391,75847.79,522275281,-946655867,125.0,26 -Sun Sep 25 08:56:17 PDT 2011,153,90,9.391,75857.08,522274313,-946655478,124.8,26 -Sun Sep 25 08:56:18 PDT 2011,152,94,9.644,75866.69,522273374,-946655042,124.8,26 -Sun Sep 25 08:56:19 PDT 2011,152,94,9.777,75876.27,522272415,-946654606,124.6,26 -Sun Sep 25 08:56:20 PDT 2011,150,94,9.558,75885.83,522271438,-946654156,124.6,26 -Sun Sep 25 08:56:21 PDT 2011,149,0,9.666,75895.49,522270460,-946653722,124.4,26 -Sun Sep 25 08:56:22 PDT 2011,147,0,9.371,75905.04,522269504,-946653321,124.4,26 -Sun Sep 25 08:56:23 PDT 2011,147,0,9.133,75914.01,522268539,-946652923,124.4,26 -Sun Sep 25 08:56:24 PDT 2011,146,0,8.656,75922.65,522267660,-946652538,124.2,26 -Sun Sep 25 08:56:25 PDT 2011,144,0,8.29,75930.99,522266815,-946652163,124.0,26 -Sun Sep 25 08:56:26 PDT 2011,143,0,7.983,75938.93,522266016,-946651809,123.8,26 -Sun Sep 25 08:56:27 PDT 2011,141,0,7.161,75946.21,522265294,-946651464,123.6,26 -Sun Sep 25 08:56:28 PDT 2011,141,0,6.591,75952.69,522264645,-946651137,123.4,26 -Sun Sep 25 08:56:29 PDT 2011,140,0,5.825,75958.61,522264043,-946650872,123.2,26 -Sun Sep 25 08:56:30 PDT 2011,141,0,5.657,75964.19,522263477,-946650647,123.2,26 -Sun Sep 25 08:56:31 PDT 2011,142,0,5.569,75969.76,522262940,-946650449,123.0,26 -Sun Sep 25 08:56:32 PDT 2011,143,61,5.81,75975.55,522262385,-946650214,122.8,26 -Sun Sep 25 08:56:33 PDT 2011,144,78,6.089,75981.64,522261805,-946649937,122.8,26 -Sun Sep 25 08:56:34 PDT 2011,145,85,6.736,75988.37,522261174,-946649595,122.6,26 -Sun Sep 25 08:56:35 PDT 2011,147,87,7.257,75995.63,522260473,-946649232,122.6,26 -Sun Sep 25 08:56:36 PDT 2011,148,91,7.432,76003.06,522259710,-946648845,122.4,26 -Sun Sep 25 08:56:37 PDT 2011,149,97,7.809,76010.9,522258897,-946648593,122.2,26 -Sun Sep 25 08:56:38 PDT 2011,150,99,8.163,76019.04,522258065,-946648401,122.0,26 -Sun Sep 25 08:56:39 PDT 2011,152,106,8.519,76027.55,522257193,-946648218,121.8,26 -Sun Sep 25 08:56:40 PDT 2011,152,111,9.095,76036.65,522256340,-946647980,121.6,26 -Sun Sep 25 08:56:41 PDT 2011,154,111,9.412,76046.06,522255395,-946647677,121.4,26 -Sun Sep 25 08:56:42 PDT 2011,156,106,9.412,76055.65,522254382,-946647249,121.2,26 -Sun Sep 25 08:56:43 PDT 2011,156,92,9.91,76065.37,522253286,-946646841,121.0,26 -Sun Sep 25 08:56:44 PDT 2011,158,87,10.025,76075.56,522252163,-946646474,120.8,26 -Sun Sep 25 08:56:45 PDT 2011,159,98,10.215,76085.83,522251025,-946646135,120.8,26 -Sun Sep 25 08:56:46 PDT 2011,160,103,10.463,76096.57,522249911,-946645775,120.6,26 -Sun Sep 25 08:56:47 PDT 2011,161,106,10.831,76107.16,522248762,-946645376,120.6,26 -Sun Sep 25 08:56:48 PDT 2011,161,101,11.053,76118.22,522247636,-946644892,120.4,26 -Sun Sep 25 08:56:49 PDT 2011,162,95,11.226,76129.35,522246492,-946644380,120.4,26 -Sun Sep 25 08:56:50 PDT 2011,163,95,11.226,76140.37,522245324,-946643863,120.4,26 -Sun Sep 25 08:56:51 PDT 2011,163,96,11.226,76151.6,522244137,-946643404,120.2,26 -Sun Sep 25 08:56:52 PDT 2011,162,96,11.285,76162.88,522242915,-946642999,120.2,26 -Sun Sep 25 08:56:53 PDT 2011,162,96,11.344,76174.33,522241708,-946642636,120.2,26 -Sun Sep 25 08:56:54 PDT 2011,162,96,11.374,76185.73,522240522,-946642257,120.0,26 -Sun Sep 25 08:56:55 PDT 2011,162,96,11.053,76196.65,522239349,-946641884,120.0,26 -Sun Sep 25 08:56:56 PDT 2011,161,0,10.997,76207.65,522238221,-946641526,120.0,26 -Sun Sep 25 08:56:57 PDT 2011,161,93,10.886,76218.54,522237074,-946641209,120.0,26 -Sun Sep 25 08:56:58 PDT 2011,160,95,11.11,76229.72,522235916,-946640945,120.0,26 -Sun Sep 25 08:56:59 PDT 2011,160,97,11.344,76241.01,522234736,-946640692,120.0,26 -Sun Sep 25 08:57:00 PDT 2011,160,98,11.526,76252.51,522233538,-946640441,119.8,26 -Sun Sep 25 08:57:01 PDT 2011,161,101,11.651,76264.18,522232302,-946640197,119.8,26 -Sun Sep 25 08:57:02 PDT 2011,161,103,11.908,76276.19,522231065,-946639964,119.8,26 -Sun Sep 25 08:57:03 PDT 2011,160,103,12.167,76288.25,522229802,-946639757,119.8,26 -Sun Sep 25 08:57:04 PDT 2011,160,103,12.167,76300.4,522228501,-946639596,119.8,26 -Sun Sep 25 08:57:05 PDT 2011,160,0,12.032,76312.44,522227209,-946639496,119.8,26 -Sun Sep 25 08:57:06 PDT 2011,159,0,11.77,76324.21,522225907,-946639431,119.8,26 -Sun Sep 25 08:57:07 PDT 2011,158,0,11.581,76335.79,522224627,-946639395,119.8,26 -Sun Sep 25 08:57:08 PDT 2011,156,0,11.52,76347.31,522223384,-946639366,119.8,26 -Sun Sep 25 08:57:09 PDT 2011,155,102,11.459,76358.77,522222188,-946639325,119.8,26 -Sun Sep 25 08:57:10 PDT 2011,154,100,11.52,76370.32,522220985,-946639283,119.6,26 -Sun Sep 25 08:57:11 PDT 2011,153,102,11.899,76382.22,522219759,-946639263,119.4,26 -Sun Sep 25 08:57:12 PDT 2011,153,104,12.099,76394.57,522218481,-946639266,119.2,26 -Sun Sep 25 08:57:13 PDT 2011,153,105,12.305,76406.59,522217186,-946639319,119.0,26 -Sun Sep 25 08:57:14 PDT 2011,153,104,12.375,76418.97,522215841,-946639405,118.8,26 -Sun Sep 25 08:57:15 PDT 2011,153,104,12.446,76431.41,522214468,-946639509,118.8,26 -Sun Sep 25 08:57:16 PDT 2011,154,104,12.34,76443.79,522213157,-946639590,118.6,26 -Sun Sep 25 08:57:17 PDT 2011,154,0,12.099,76455.85,522211791,-946639670,118.6,26 -Sun Sep 25 08:57:18 PDT 2011,155,0,12.032,76467.88,522210512,-946639735,118.4,26 -Sun Sep 25 08:57:19 PDT 2011,155,0,11.998,76479.88,522209278,-946639817,118.4,26 -Sun Sep 25 08:57:20 PDT 2011,155,0,11.899,76491.78,522208037,-946639917,118.2,26 -Sun Sep 25 08:57:21 PDT 2011,154,0,11.843,76503.62,522206807,-946640026,118.2,26 -Sun Sep 25 08:57:22 PDT 2011,154,0,11.588,76515.21,522205582,-946640153,118.2,26 -Sun Sep 25 08:57:23 PDT 2011,153,0,11.62,76526.83,522204337,-946640267,118.0,26 -Sun Sep 25 08:57:24 PDT 2011,153,97,11.526,76538.35,522203114,-946640377,118.0,26 -Sun Sep 25 08:57:25 PDT 2011,153,99,11.588,76549.94,522201882,-946640474,118.0,26 -Sun Sep 25 08:57:26 PDT 2011,154,101,11.714,76561.65,522200622,-946640549,118.0,26 -Sun Sep 25 08:57:27 PDT 2011,154,102,11.908,76573.55,522199376,-946640620,118.0,26 -Sun Sep 25 08:57:28 PDT 2011,155,103,11.975,76585.53,522198127,-946640682,117.8,26 -Sun Sep 25 08:57:29 PDT 2011,156,103,12.109,76597.65,522196889,-946640689,117.8,26 -Sun Sep 25 08:57:30 PDT 2011,156,103,12.086,76609.72,522195582,-946640715,117.8,26 -Sun Sep 25 08:57:31 PDT 2011,157,101,12.086,76621.87,522194326,-946640753,117.6,26 -Sun Sep 25 08:57:32 PDT 2011,158,100,11.886,76633.7,522193003,-946640870,117.4,26 -Sun Sep 25 08:57:33 PDT 2011,159,100,11.756,76645.47,522191721,-946641045,117.2,26 -Sun Sep 25 08:57:34 PDT 2011,159,115,11.756,76657.21,522190409,-946641290,116.8,26 -Sun Sep 25 08:57:35 PDT 2011,160,108,12.019,76669.22,522189124,-946641551,116.4,26 -Sun Sep 25 08:57:36 PDT 2011,161,103,12.052,76681.28,522187848,-946641751,116.2,26 -Sun Sep 25 08:57:37 PDT 2011,162,103,12.154,76693.44,522186678,-946641847,116.0,26 -Sun Sep 25 08:57:38 PDT 2011,163,104,12.224,76705.66,522185435,-946641947,115.6,26 -Sun Sep 25 08:57:39 PDT 2011,163,104,12.293,76717.96,522184080,-946642190,115.4,26 -Sun Sep 25 08:57:40 PDT 2011,163,104,12.224,76730.19,522182373,-946642851,115.2,26 -Sun Sep 25 08:57:41 PDT 2011,164,20,12.154,76742.34,522180960,-946643046,115.0,26 -Sun Sep 25 08:57:42 PDT 2011,163,105,12.154,76754.5,522179664,-946643128,114.8,26 -Sun Sep 25 08:57:43 PDT 2011,163,95,12.364,76766.89,522178259,-946643216,114.8,26 -Sun Sep 25 08:57:44 PDT 2011,163,69,12.207,76779.07,522176763,-946643253,114.6,26 -Sun Sep 25 08:57:45 PDT 2011,163,37,12.104,76791.23,522175362,-946643230,114.6,26 -Sun Sep 25 08:57:46 PDT 2011,163,100,11.806,76803.11,522173910,-946643338,114.4,26 -Sun Sep 25 08:57:47 PDT 2011,163,109,11.839,76814.82,522172505,-946643380,114.2,26 -Sun Sep 25 08:57:48 PDT 2011,163,59,11.742,76826.56,522171206,-946643423,114.0,26 -Sun Sep 25 08:57:49 PDT 2011,164,110,11.431,76838.09,522170031,-946643403,113.6,26 -Sun Sep 25 08:57:50 PDT 2011,164,110,11.462,76849.54,522168845,-946643281,113.4,26 -Sun Sep 25 08:57:51 PDT 2011,164,110,11.137,76860.67,522167679,-946643089,113.2,26 -Sun Sep 25 08:57:52 PDT 2011,164,104,10.857,76871.67,522166527,-946642908,112.8,26 -Sun Sep 25 08:57:53 PDT 2011,164,105,10.857,76882.31,522165197,-946643024,112.6,26 -Sun Sep 25 08:57:54 PDT 2011,164,105,11.05,76893.36,522163879,-946643276,112.6,26 -Sun Sep 25 08:57:55 PDT 2011,164,106,11.05,76904.52,522162637,-946643513,112.4,26 -Sun Sep 25 08:57:56 PDT 2011,164,97,11.107,76915.61,522161501,-946643714,112.2,26 -Sun Sep 25 08:57:57 PDT 2011,164,94,11.164,76926.95,522160443,-946643836,112.0,26 -Sun Sep 25 08:57:58 PDT 2011,165,96,11.279,76938.37,522159477,-946643879,112.0,26 -Sun Sep 25 08:57:59 PDT 2011,165,96,11.427,76949.63,522158453,-946643926,111.8,26 -Sun Sep 25 08:58:00 PDT 2011,165,96,11.338,76960.73,522157413,-946643965,111.8,26 -Sun Sep 25 08:58:01 PDT 2011,166,29,11.107,76972.06,522156356,-946644028,111.6,26 -Sun Sep 25 08:58:02 PDT 2011,166,104,10.939,76982.78,522155299,-946644130,111.6,26 -Sun Sep 25 08:58:03 PDT 2011,166,104,10.885,76996.33,522153970,-946644306,111.6,26 -Sun Sep 25 08:58:04 PDT 2011,165,99,10.865,77004.57,522153172,-946644485,111.2,26 -Sun Sep 25 08:58:05 PDT 2011,165,93,10.92,77015.62,522152074,-946644720,111.0,26 -Sun Sep 25 08:58:06 PDT 2011,164,43,10.976,77026.79,522150976,-946644914,110.6,26 -Sun Sep 25 08:58:07 PDT 2011,163,94,11.032,77037.69,522149849,-946645106,110.4,26 -Sun Sep 25 08:58:08 PDT 2011,163,98,11.264,77048.9,522148707,-946645291,110.2,26 -Sun Sep 25 08:58:09 PDT 2011,163,100,11.504,77060.25,522147542,-946645490,110.0,26 -Sun Sep 25 08:58:10 PDT 2011,164,100,11.821,77072.06,522146348,-946645682,109.8,26 -Sun Sep 25 08:58:11 PDT 2011,164,100,12.052,77084.09,522145101,-946645842,109.8,26 -Sun Sep 25 08:58:12 PDT 2011,164,100,12.154,77096.25,522143812,-946645966,109.6,26 -Sun Sep 25 08:58:13 PDT 2011,163,0,12.224,77108.47,522142541,-946646081,109.2,26 -Sun Sep 25 08:58:14 PDT 2011,163,116,12.182,77120.65,522141230,-946646221,108.8,26 -Sun Sep 25 08:58:15 PDT 2011,162,116,12.652,77133.4,522139920,-946646388,108.6,26 -Sun Sep 25 08:58:16 PDT 2011,162,116,12.921,77146.51,522138539,-946646583,108.2,26 -Sun Sep 25 08:58:17 PDT 2011,162,22,12.921,77159.15,522137129,-946646773,108.0,26 -Sun Sep 25 08:58:18 PDT 2011,162,115,12.999,77172.15,522135707,-946646951,107.8,26 -Sun Sep 25 08:58:19 PDT 2011,163,94,13.408,77185.56,522134265,-946647107,107.4,26 -Sun Sep 25 08:58:20 PDT 2011,163,96,13.666,77199.44,522132808,-946647274,107.0,26 -Sun Sep 25 08:58:21 PDT 2011,164,97,14.026,77213.32,522131306,-946647440,106.6,26 -Sun Sep 25 08:58:22 PDT 2011,164,99,14.145,77227.66,522129767,-946647598,106.4,26 -Sun Sep 25 08:58:23 PDT 2011,164,101,14.433,77241.82,522128137,-946647707,106.2,26 -Sun Sep 25 08:58:24 PDT 2011,164,102,14.531,77256.35,522126563,-946647849,105.8,26 -Sun Sep 25 08:58:25 PDT 2011,165,102,15.045,77271.4,522124917,-946648035,105.4,26 -Sun Sep 25 08:58:26 PDT 2011,166,102,15.152,77286.54,522123291,-946648211,105.0,26 -Sun Sep 25 08:58:27 PDT 2011,166,0,15.206,77301.75,522121660,-946648339,104.6,26 -Sun Sep 25 08:58:28 PDT 2011,166,0,15.426,77317.18,522119951,-946648459,104.0,26 -Sun Sep 25 08:58:29 PDT 2011,167,0,15.152,77332.33,522118171,-946648605,103.4,26 -Sun Sep 25 08:58:30 PDT 2011,166,0,15.404,77347.73,522116553,-946648784,103.0,26 -Sun Sep 25 08:58:31 PDT 2011,166,0,15.459,77363.19,522114884,-946648967,102.4,26 -Sun Sep 25 08:58:32 PDT 2011,166,0,15.404,77378.69,522113187,-946649133,101.8,26 -Sun Sep 25 08:58:33 PDT 2011,165,0,15.459,77394.06,522111507,-946649243,101.2,26 -Sun Sep 25 08:58:34 PDT 2011,166,0,15.459,77409.79,522110034,-946649226,100.4,26 -Sun Sep 25 08:58:35 PDT 2011,165,107,15.515,77425.03,522108375,-946649241,99.8,26 -Sun Sep 25 08:58:36 PDT 2011,166,107,15.802,77440.88,522106639,-946649408,99.2,26 -Sun Sep 25 08:58:37 PDT 2011,166,107,15.741,77456.59,522104906,-946649526,98.4,26 -Sun Sep 25 08:58:38 PDT 2011,165,0,15.626,77472.2,522103156,-946649655,97.6,26 -Sun Sep 25 08:58:39 PDT 2011,165,0,15.683,77487.88,522101417,-946649708,96.6,26 -Sun Sep 25 08:58:40 PDT 2011,164,0,15.569,77503.45,522099763,-946649718,95.8,26 -Sun Sep 25 08:58:41 PDT 2011,164,0,15.569,77519.33,522098056,-946649685,94.8,26 -Sun Sep 25 08:58:42 PDT 2011,163,0,15.569,77534.59,522096332,-946649656,93.8,26 -Sun Sep 25 08:58:43 PDT 2011,162,0,15.512,77550.11,522094699,-946649648,93.0,26 -Sun Sep 25 08:58:44 PDT 2011,161,0,15.512,77565.62,522092962,-946649617,92.0,26 -Sun Sep 25 08:58:45 PDT 2011,160,107,15.512,77581.14,522091270,-946649631,91.0,26 -Sun Sep 25 08:58:46 PDT 2011,160,32,15.456,77596.69,522089636,-946649585,90.2,26 -Sun Sep 25 08:58:47 PDT 2011,161,106,15.4,77611.99,522087959,-946649557,89.6,26 -Sun Sep 25 08:58:48 PDT 2011,161,106,15.345,77627.33,522086309,-946649522,88.8,26 -Sun Sep 25 08:58:49 PDT 2011,161,27,15.127,77642.46,522084647,-946649501,88.0,26 -Sun Sep 25 08:58:50 PDT 2011,161,103,14.916,77657.37,522083035,-946649473,87.4,26 -Sun Sep 25 08:58:51 PDT 2011,160,103,14.916,77672.29,522081447,-946649450,86.8,26 -Sun Sep 25 08:58:52 PDT 2011,160,40,14.812,77687.1,522079837,-946649441,86.0,26 -Sun Sep 25 08:58:53 PDT 2011,161,40,14.315,77701.41,522078230,-946649448,85.2,26 -Sun Sep 25 08:58:54 PDT 2011,161,40,14.172,77715.58,522076743,-946649404,84.6,26 -Sun Sep 25 08:58:55 PDT 2011,161,100,13.895,77729.58,522075228,-946649375,84.0,26 -Sun Sep 25 08:58:56 PDT 2011,161,100,13.85,77743.43,522073750,-946649356,83.6,26 -Sun Sep 25 08:58:57 PDT 2011,160,36,13.136,77756.69,522072256,-946649337,83.0,26 -Sun Sep 25 08:58:58 PDT 2011,160,36,13.056,77770.28,522070875,-946649311,82.6,26 -Sun Sep 25 08:58:59 PDT 2011,159,25,12.821,77782.42,522069496,-946649286,82.4,26 -Sun Sep 25 08:59:00 PDT 2011,159,103,12.669,77795.04,522068154,-946649269,82.0,26 -Sun Sep 25 08:59:01 PDT 2011,159,105,12.745,77807.78,522066765,-946649314,81.6,26 -Sun Sep 25 08:59:02 PDT 2011,159,104,13.136,77820.91,522065388,-946649340,81.4,26 -Sun Sep 25 08:59:03 PDT 2011,160,109,12.976,77833.89,522063972,-946649353,81.2,26 -Sun Sep 25 08:59:04 PDT 2011,160,113,13.217,77847.28,522062580,-946649378,81.0,26 -Sun Sep 25 08:59:05 PDT 2011,161,113,13.217,77860.33,522061167,-946649401,80.6,26 -Sun Sep 25 08:59:06 PDT 2011,162,112,13.136,77873.57,522059768,-946649395,80.2,26 -Sun Sep 25 08:59:07 PDT 2011,163,112,12.898,77886.36,522058343,-946649425,79.8,26 -Sun Sep 25 08:59:08 PDT 2011,164,113,13.056,77899.42,522056893,-946649433,79.6,26 -Sun Sep 25 08:59:09 PDT 2011,165,111,12.976,77912.4,522055479,-946649415,79.2,26 -Sun Sep 25 08:59:10 PDT 2011,166,110,12.859,77925.36,522054094,-946649380,79.0,26 -Sun Sep 25 08:59:11 PDT 2011,168,110,12.558,77937.82,522052715,-946649365,78.8,26 -Sun Sep 25 08:59:12 PDT 2011,169,110,12.27,77950.09,522051386,-946649353,78.6,26 -Sun Sep 25 08:59:13 PDT 2011,169,0,11.895,77964.77,522049853,-946649342,78.4,26 -Sun Sep 25 08:59:14 PDT 2011,169,107,11.299,77973.56,522048894,-946649333,78.2,26 -Sun Sep 25 08:59:15 PDT 2011,170,110,11.21,77984.72,522047714,-946649304,78.0,26 -Sun Sep 25 08:59:16 PDT 2011,169,109,11.269,77996.26,522046515,-946649242,78.0,26 -Sun Sep 25 08:59:17 PDT 2011,170,109,11.152,78007.14,522045352,-946649180,77.8,26 -Sun Sep 25 08:59:18 PDT 2011,170,107,11.152,78018.38,522044181,-946649118,77.8,26 -Sun Sep 25 08:59:19 PDT 2011,170,105,10.924,78029.21,522043017,-946649067,77.6,26 -Sun Sep 25 08:59:20 PDT 2011,171,102,10.732,78039.87,522041867,-946649017,77.8,26 -Sun Sep 25 08:59:21 PDT 2011,171,101,10.521,78050.4,522040742,-946648974,78.0,26 -Sun Sep 25 08:59:22 PDT 2011,171,99,10.196,78060.65,522039634,-946648940,78.0,26 -Sun Sep 25 08:59:23 PDT 2011,171,99,9.912,78070.64,522038574,-946648913,78.2,26 -Sun Sep 25 08:59:24 PDT 2011,172,99,9.269,78079.79,522037556,-946648889,78.2,26 -Sun Sep 25 08:59:25 PDT 2011,172,0,8.773,78088.57,522036610,-946648860,78.4,26 -Sun Sep 25 08:59:26 PDT 2011,172,0,8.36,78096.93,522035694,-946648816,78.4,26 -Sun Sep 25 08:59:27 PDT 2011,171,0,7.896,78104.82,522034854,-946648758,78.4,26 -Sun Sep 25 08:59:28 PDT 2011,171,0,7.251,78112.07,522034071,-946648707,78.6,26 -Sun Sep 25 08:59:29 PDT 2011,170,0,6.811,78118.88,522033353,-946648675,78.8,26 -Sun Sep 25 08:59:30 PDT 2011,169,0,6.345,78125.22,522032706,-946648665,79.0,26 -Sun Sep 25 08:59:31 PDT 2011,168,0,5.777,78131.01,522032123,-946648676,79.2,26 -Sun Sep 25 08:59:32 PDT 2011,167,0,5.303,78136.39,522031587,-946648686,79.4,26 -Sun Sep 25 08:59:33 PDT 2011,167,0,4.946,78141.29,522031093,-946648695,79.6,26 -Sun Sep 25 08:59:34 PDT 2011,166,0,4.634,78146.03,522030650,-946648666,79.8,26 -Sun Sep 25 08:59:35 PDT 2011,166,0,3.727,78149.67,522030261,-946648638,79.8,26 -Sun Sep 25 08:59:36 PDT 2011,165,0,3.3,78153.03,522029952,-946648610,80.0,26 -Sun Sep 25 08:59:37 PDT 2011,165,0,2.794,78155.77,522029722,-946648591,80.2,26 -Sun Sep 25 08:59:38 PDT 2011,163,0,2.129,78157.89,522029581,-946648585,80.2,26 -Sun Sep 25 08:59:39 PDT 2011,162,0,1.42,78159.34,522029529,-946648600,80.4,26 -Sun Sep 25 09:00:02 PDT 2011,157,0,0.0,78159.34,522029445,-946648582,81.0,26 -Sun Sep 25 09:00:03 PDT 2011,157,0,1.766,78161.15,522029173,-946648589,81.0,26 -Sun Sep 25 09:00:04 PDT 2011,158,34,3.094,78164.16,522028795,-946648569,81.0,26 -Sun Sep 25 09:00:05 PDT 2011,159,52,4.155,78168.97,522028218,-946648551,81.0,26 -Sun Sep 25 09:00:06 PDT 2011,159,62,4.946,78173.14,522027715,-946648533,81.0,26 -Sun Sep 25 09:00:07 PDT 2011,160,66,5.452,78178.62,522027104,-946648546,81.0,26 -Sun Sep 25 09:00:08 PDT 2011,161,73,5.715,78184.38,522026450,-946648593,81.0,26 -Sun Sep 25 09:00:09 PDT 2011,162,77,6.073,78190.37,522025774,-946648656,81.0,26 -Sun Sep 25 09:00:10 PDT 2011,163,82,6.46,78196.92,522025068,-946648666,81.2,26 -Sun Sep 25 09:00:11 PDT 2011,163,83,6.855,78203.69,522024312,-946648607,81.2,26 -Sun Sep 25 09:00:12 PDT 2011,164,41,7.202,78210.89,522023563,-946648601,81.2,26 -Sun Sep 25 09:00:13 PDT 2011,164,87,6.519,78217.43,522022818,-946648554,81.2,26 -Sun Sep 25 09:00:14 PDT 2011,165,91,7.326,78224.73,522022037,-946648490,81.2,26 -Sun Sep 25 09:00:15 PDT 2011,165,97,7.724,78232.46,522021192,-946648471,81.2,26 -Sun Sep 25 09:00:16 PDT 2011,166,97,8.168,78240.69,522020285,-946648432,81.2,26 -Sun Sep 25 09:00:17 PDT 2011,167,27,8.231,78248.86,522019334,-946648361,81.4,26 -Sun Sep 25 09:00:18 PDT 2011,167,98,7.984,78257.01,522018411,-946648326,81.6,26 -Sun Sep 25 09:00:19 PDT 2011,168,104,8.36,78265.36,522017507,-946648278,81.8,26 -Sun Sep 25 09:00:20 PDT 2011,168,107,8.846,78274.03,522016598,-946648236,82.0,26 -Sun Sep 25 09:00:21 PDT 2011,169,101,9.11,78283.14,522015608,-946648237,82.0,26 -Sun Sep 25 09:00:22 PDT 2011,170,107,9.475,78292.61,522014576,-946648271,82.2,26 -Sun Sep 25 09:00:23 PDT 2011,170,111,9.87,78302.48,522013470,-946648305,82.4,26 -Sun Sep 25 09:00:24 PDT 2011,171,101,10.299,78312.78,522012301,-946648327,82.4,26 -Sun Sep 25 09:00:25 PDT 2011,171,102,10.299,78323.08,522011155,-946648308,82.6,26 -Sun Sep 25 09:00:26 PDT 2011,172,103,10.554,78333.63,522010009,-946648155,82.6,26 -Sun Sep 25 09:00:27 PDT 2011,172,104,10.554,78344.19,522008851,-946647970,82.8,26 -Sun Sep 25 09:00:28 PDT 2011,173,105,10.713,78354.9,522007713,-946647819,82.8,26 -Sun Sep 25 09:00:29 PDT 2011,173,105,10.767,78365.66,522006576,-946647707,82.8,26 -Sun Sep 25 09:00:30 PDT 2011,173,105,10.767,78376.43,522005390,-946647667,83.0,26 -Sun Sep 25 09:00:31 PDT 2011,174,104,10.794,78387.22,522004207,-946647693,83.0,26 -Sun Sep 25 09:00:32 PDT 2011,174,102,10.606,78397.97,522003052,-946647722,83.0,26 -Sun Sep 25 09:00:33 PDT 2011,174,102,10.399,78408.24,522001901,-946647708,83.0,26 -Sun Sep 25 09:00:34 PDT 2011,174,101,10.349,78418.6,522000760,-946647710,83.0,26 -Sun Sep 25 09:00:35 PDT 2011,174,101,10.349,78428.96,521999637,-946647735,83.2,26 -Sun Sep 25 09:00:36 PDT 2011,175,101,10.349,78439.29,521998505,-946647829,83.2,26 -Sun Sep 25 09:00:37 PDT 2011,175,100,10.349,78449.72,521997380,-946647992,83.2,26 -Sun Sep 25 09:00:38 PDT 2011,175,99,10.152,78459.77,521996289,-946648195,83.2,26 -Sun Sep 25 09:00:39 PDT 2011,176,99,9.87,78469.64,521995237,-946648399,83.2,26 -Sun Sep 25 09:00:40 PDT 2011,175,26,9.433,78479.07,521994222,-946648598,83.2,26 -Sun Sep 25 09:00:41 PDT 2011,175,102,9.309,78488.38,521993240,-946648800,83.2,26 -Sun Sep 25 09:00:42 PDT 2011,175,103,9.433,78497.81,521992272,-946649019,83.2,26 -Sun Sep 25 09:00:43 PDT 2011,175,96,9.475,78507.31,521991317,-946649252,83.4,26 -Sun Sep 25 09:00:44 PDT 2011,175,93,9.475,78516.76,521990328,-946649462,83.4,26 -Sun Sep 25 09:00:45 PDT 2011,175,93,9.517,78526.32,521989333,-946649657,83.4,26 -Sun Sep 25 09:00:46 PDT 2011,175,94,9.603,78535.87,521988309,-946649849,83.4,26 -Sun Sep 25 09:00:47 PDT 2011,175,94,9.56,78545.44,521987281,-946650048,83.4,26 -Sun Sep 25 09:00:48 PDT 2011,175,94,9.517,78554.95,521986290,-946650267,83.4,26 -Sun Sep 25 09:00:49 PDT 2011,174,0,9.517,78564.47,521985221,-946650585,83.4,26 -Sun Sep 25 09:00:50 PDT 2011,174,92,9.388,78573.86,521984208,-946650839,83.4,26 -Sun Sep 25 09:00:51 PDT 2011,173,95,9.6,78583.58,521983182,-946651092,83.4,26 -Sun Sep 25 09:00:52 PDT 2011,173,95,9.688,78593.15,521982123,-946651306,83.4,26 -Sun Sep 25 09:00:53 PDT 2011,173,97,9.777,78602.92,521981108,-946651476,83.4,26 -Sun Sep 25 09:00:54 PDT 2011,173,98,9.961,78612.94,521980050,-946651515,83.4,26 -Sun Sep 25 09:00:55 PDT 2011,172,100,10.079,78623.26,521978938,-946651510,83.4,26 -Sun Sep 25 09:00:56 PDT 2011,172,100,10.151,78633.11,521977829,-946651434,83.4,26 -Sun Sep 25 09:00:57 PDT 2011,172,100,10.249,78643.37,521976722,-946651364,83.4,26 -Sun Sep 25 09:00:58 PDT 2011,172,100,10.103,78653.81,521975595,-946651302,83.4,26 -Sun Sep 25 09:00:59 PDT 2011,172,0,10.008,78663.59,521974489,-946651274,83.4,26 -Sun Sep 25 09:01:00 PDT 2011,172,0,9.755,78673.24,521973430,-946651206,83.4,26 -Sun Sep 25 09:01:01 PDT 2011,170,0,9.557,78682.86,521972410,-946651077,83.4,26 -Sun Sep 25 09:01:02 PDT 2011,169,103,9.346,78692.15,521971399,-946650856,83.4,26 -Sun Sep 25 09:01:03 PDT 2011,168,104,9.472,78701.82,521970430,-946650592,83.4,26 -Sun Sep 25 09:01:04 PDT 2011,168,103,9.388,78711.16,521969455,-946650297,83.4,26 -Sun Sep 25 09:01:05 PDT 2011,168,104,9.514,78720.64,521968475,-946649969,83.4,26 -Sun Sep 25 09:01:06 PDT 2011,168,97,9.514,78730.33,521967479,-946649618,83.4,26 -Sun Sep 25 09:01:07 PDT 2011,168,92,9.429,78739.76,521966492,-946649259,83.4,26 -Sun Sep 25 09:01:08 PDT 2011,168,91,9.346,78749.19,521965514,-946648893,83.4,26 -Sun Sep 25 09:01:09 PDT 2011,168,92,9.429,78758.44,521964532,-946648512,83.4,26 -Sun Sep 25 09:01:10 PDT 2011,168,93,9.472,78768.38,521963506,-946648114,83.4,26 -Sun Sep 25 09:01:11 PDT 2011,169,91,9.429,78777.16,521962562,-946647728,83.4,26 -Sun Sep 25 09:01:12 PDT 2011,169,91,9.305,78786.68,521961570,-946647332,83.4,26 -Sun Sep 25 09:01:13 PDT 2011,168,91,9.224,78795.76,521960579,-946646975,83.4,26 -Sun Sep 25 09:01:14 PDT 2011,168,96,8.803,78804.49,521959586,-946646639,83.4,26 -Sun Sep 25 09:01:15 PDT 2011,168,100,9.106,78813.6,521958621,-946646279,83.4,26 -Sun Sep 25 09:01:16 PDT 2011,168,103,9.346,78822.98,521957669,-946645923,83.4,26 -Sun Sep 25 09:01:17 PDT 2011,168,103,9.388,78833.28,521956573,-946645547,83.4,26 -Sun Sep 25 09:01:18 PDT 2011,167,104,9.346,78844.44,521955372,-946645133,83.4,26 -Sun Sep 25 09:01:19 PDT 2011,167,105,9.491,78851.16,521954700,-946644870,83.4,26 -Sun Sep 25 09:01:20 PDT 2011,168,106,9.534,78860.65,521953714,-946644491,83.4,26 -Sun Sep 25 09:01:21 PDT 2011,168,106,9.753,78870.44,521952781,-946644115,83.4,26 -Sun Sep 25 09:01:22 PDT 2011,168,96,9.844,78880.28,521951835,-946643736,83.4,26 -Sun Sep 25 09:01:23 PDT 2011,168,96,9.753,78890.13,521950831,-946643426,83.4,26 -Sun Sep 25 09:01:24 PDT 2011,168,28,9.62,78899.62,521949777,-946643159,83.4,26 -Sun Sep 25 09:01:25 PDT 2011,168,96,9.799,78909.42,521948703,-946642929,83.4,26 -Sun Sep 25 09:01:26 PDT 2011,167,96,9.753,78919.27,521947606,-946642710,83.4,26 -Sun Sep 25 09:01:27 PDT 2011,167,96,9.664,78928.84,521946509,-946642526,83.4,26 -Sun Sep 25 09:01:28 PDT 2011,167,0,9.491,78938.38,521945424,-946642350,83.4,26 -Sun Sep 25 09:01:29 PDT 2011,166,93,9.534,78948.04,521944339,-946642143,83.4,26 -Sun Sep 25 09:01:30 PDT 2011,166,92,9.449,78957.31,521943314,-946641911,83.4,26 -Sun Sep 25 09:01:31 PDT 2011,166,92,9.449,78966.76,521942292,-946641663,83.4,26 -Sun Sep 25 09:01:32 PDT 2011,165,93,9.407,78976.16,521941269,-946641372,83.4,26 -Sun Sep 25 09:01:33 PDT 2011,166,93,9.491,78985.65,521940282,-946641091,83.4,26 -Sun Sep 25 09:01:34 PDT 2011,166,92,9.344,78995.11,521939254,-946640850,83.4,26 -Sun Sep 25 09:01:35 PDT 2011,166,94,9.577,79004.57,521938200,-946640619,83.4,26 -Sun Sep 25 09:01:36 PDT 2011,166,92,9.682,79014.25,521937195,-946640390,83.4,26 -Sun Sep 25 09:01:37 PDT 2011,167,92,9.531,79023.78,521936203,-946640125,83.4,26 -Sun Sep 25 09:01:38 PDT 2011,168,92,9.282,79033.06,521935205,-946639845,83.4,26 -Sun Sep 25 09:01:39 PDT 2011,167,92,9.282,79042.34,521934224,-946639558,83.4,26 -Sun Sep 25 09:01:40 PDT 2011,167,102,9.405,79051.75,521933230,-946639271,83.4,26 -Sun Sep 25 09:01:41 PDT 2011,166,102,9.405,79061.15,521932252,-946638997,83.4,26 -Sun Sep 25 09:01:42 PDT 2011,165,36,9.405,79070.56,521931282,-946638743,83.4,26 -Sun Sep 25 09:01:43 PDT 2011,164,36,9.202,79079.76,521930296,-946638482,83.4,26 -Sun Sep 25 09:01:44 PDT 2011,163,33,9.085,79088.85,521929373,-946638203,83.4,26 -Sun Sep 25 09:01:45 PDT 2011,163,99,9.046,79097.9,521928442,-946637888,83.4,26 -Sun Sep 25 09:01:46 PDT 2011,162,93,9.085,79106.98,521927539,-946637554,83.4,26 -Sun Sep 25 09:01:47 PDT 2011,162,93,9.008,79116.09,521926613,-946637242,83.4,26 -Sun Sep 25 09:01:48 PDT 2011,162,86,8.859,79124.85,521925647,-946636986,83.4,26 -Sun Sep 25 09:01:49 PDT 2011,161,86,8.859,79133.73,521924685,-946636803,83.4,26 -Sun Sep 25 09:01:50 PDT 2011,161,86,8.822,79142.9,521923715,-946636632,83.4,26 -Sun Sep 25 09:01:51 PDT 2011,161,86,8.822,79151.65,521922761,-946636446,83.4,26 -Sun Sep 25 09:01:52 PDT 2011,161,93,8.822,79160.34,521921823,-946636227,83.4,26 -Sun Sep 25 09:01:53 PDT 2011,161,97,8.859,79169.08,521920879,-946635978,83.4,26 -Sun Sep 25 09:01:54 PDT 2011,162,97,8.933,79177.97,521919959,-946635730,83.4,26 -Sun Sep 25 09:01:55 PDT 2011,162,87,8.896,79186.85,521919009,-946635476,83.4,26 -Sun Sep 25 09:01:56 PDT 2011,162,88,8.97,79195.82,521918051,-946635229,83.4,26 -Sun Sep 25 09:01:57 PDT 2011,162,89,9.163,79204.98,521917090,-946634995,83.4,26 -Sun Sep 25 09:01:58 PDT 2011,161,89,9.124,79214.11,521916106,-946634752,83.4,26 -Sun Sep 25 09:01:59 PDT 2011,162,90,9.202,79223.33,521915077,-946634485,83.4,26 -Sun Sep 25 09:02:00 PDT 2011,162,90,9.282,79232.59,521914105,-946634229,83.4,26 -Sun Sep 25 09:02:01 PDT 2011,162,91,9.323,79241.91,521913111,-946633983,83.4,26 -Sun Sep 25 09:02:02 PDT 2011,162,93,9.364,79251.28,521912159,-946633818,83.4,26 -Sun Sep 25 09:02:03 PDT 2011,163,102,9.268,79260.61,521911209,-946633672,83.4,26 -Sun Sep 25 09:02:04 PDT 2011,163,103,9.473,79270.33,521910247,-946633538,83.4,26 -Sun Sep 25 09:02:05 PDT 2011,164,97,9.6,79279.64,521909259,-946633338,83.4,26 -Sun Sep 25 09:02:06 PDT 2011,164,94,9.686,79289.3,521908247,-946633105,83.4,26 -Sun Sep 25 09:02:07 PDT 2011,164,94,9.774,79299.08,521907210,-946632848,83.4,26 -Sun Sep 25 09:02:08 PDT 2011,164,94,9.774,79308.96,521906179,-946632593,83.4,26 -Sun Sep 25 09:02:09 PDT 2011,164,0,9.73,79318.58,521905139,-946632334,83.4,26 -Sun Sep 25 09:02:10 PDT 2011,163,0,9.431,79328.14,521904110,-946632088,83.4,26 -Sun Sep 25 09:02:11 PDT 2011,162,0,9.15,79337.34,521903118,-946631821,83.4,26 -Sun Sep 25 09:02:12 PDT 2011,162,0,8.96,79346.13,521902143,-946631553,83.4,26 -Sun Sep 25 09:02:13 PDT 2011,161,91,8.813,79354.96,521901213,-946631300,83.4,26 -Sun Sep 25 09:02:14 PDT 2011,160,100,9.035,79364.08,521900264,-946631039,83.4,26 -Sun Sep 25 09:02:15 PDT 2011,160,106,9.543,79373.77,521899277,-946630789,83.4,26 -Sun Sep 25 09:02:16 PDT 2011,161,101,9.955,79383.64,521898247,-946630519,83.4,26 -Sun Sep 25 09:02:17 PDT 2011,161,97,10.048,79393.71,521897174,-946630204,83.4,26 -Sun Sep 25 09:02:18 PDT 2011,161,97,10.001,79403.58,521896089,-946629879,83.4,26 -Sun Sep 25 09:02:19 PDT 2011,162,97,10.001,79413.63,521894988,-946629571,83.4,26 -Sun Sep 25 09:02:20 PDT 2011,163,97,9.955,79423.47,521893899,-946629286,83.4,26 -Sun Sep 25 09:02:21 PDT 2011,163,108,10.001,79433.5,521892836,-946628985,83.4,26 -Sun Sep 25 09:02:22 PDT 2011,164,106,9.909,79443.38,521891762,-946628684,83.4,26 -Sun Sep 25 09:02:23 PDT 2011,165,105,9.774,79453.15,521890742,-946628393,83.4,26 -Sun Sep 25 09:02:24 PDT 2011,166,105,9.6,79462.76,521889711,-946628136,83.4,26 -Sun Sep 25 09:02:25 PDT 2011,166,107,9.73,79472.48,521888663,-946627901,83.4,26 -Sun Sep 25 09:02:26 PDT 2011,167,110,9.809,79482.29,521887618,-946627656,83.4,26 -Sun Sep 25 09:02:27 PDT 2011,167,112,9.505,79491.82,521886559,-946627460,83.4,26 -Sun Sep 25 09:02:28 PDT 2011,168,98,9.34,79501.14,521885540,-946627262,83.4,26 -Sun Sep 25 09:02:29 PDT 2011,168,96,9.064,79510.2,521884540,-946627035,83.4,26 -Sun Sep 25 09:02:30 PDT 2011,169,92,8.804,79519.01,521883620,-946626771,83.4,26 -Sun Sep 25 09:02:31 PDT 2011,170,98,8.458,79527.47,521882727,-946626523,83.6,26 -Sun Sep 25 09:02:32 PDT 2011,170,98,8.262,79535.73,521881873,-946626274,83.8,26 -Sun Sep 25 09:02:33 PDT 2011,170,100,8.392,79544.12,521881001,-946626046,84.0,26 -Sun Sep 25 09:02:34 PDT 2011,171,102,8.359,79552.48,521880103,-946625850,84.2,26 -Sun Sep 25 09:02:35 PDT 2011,171,102,8.525,79561.01,521879195,-946625693,84.4,26 -Sun Sep 25 09:02:36 PDT 2011,172,102,8.593,79569.6,521878284,-946625508,84.6,26 -Sun Sep 25 09:02:37 PDT 2011,172,102,8.559,79578.16,521877376,-946625284,84.6,26 -Sun Sep 25 09:02:38 PDT 2011,173,103,8.594,79586.76,521876500,-946625019,84.8,26 -Sun Sep 25 09:02:39 PDT 2011,173,105,8.628,79595.38,521875603,-946624727,84.8,26 -Sun Sep 25 09:02:40 PDT 2011,174,104,8.876,79604.26,521874700,-946624416,85.0,26 -Sun Sep 25 09:02:41 PDT 2011,174,97,9.061,79613.32,521873781,-946624126,85.0,26 -Sun Sep 25 09:02:42 PDT 2011,175,101,9.176,79622.5,521872829,-946623848,85.2,26 -Sun Sep 25 09:02:43 PDT 2011,175,104,9.457,79631.95,521871853,-946623581,85.2,26 -Sun Sep 25 09:02:44 PDT 2011,176,108,9.844,79641.79,521870856,-946623310,85.2,26 -Sun Sep 25 09:02:45 PDT 2011,176,106,10.12,79651.91,521869830,-946623043,85.4,26 -Sun Sep 25 09:02:46 PDT 2011,176,101,10.362,79662.27,521868728,-946622747,85.4,26 -Sun Sep 25 09:02:47 PDT 2011,176,97,10.721,79672.99,521867625,-946622430,85.4,26 -Sun Sep 25 09:02:48 PDT 2011,176,94,10.938,79683.93,521866495,-946622092,85.4,26 -Sun Sep 25 09:02:49 PDT 2011,176,95,11.017,79694.94,521865309,-946621716,85.4,26 -Sun Sep 25 09:02:50 PDT 2011,176,96,11.16,79706.1,521864111,-946621351,85.4,26 -Sun Sep 25 09:02:51 PDT 2011,176,96,11.189,79717.29,521862920,-946620995,85.6,26 -Sun Sep 25 09:02:52 PDT 2011,176,96,11.189,79728.47,521861744,-946620646,85.6,26 -Sun Sep 25 09:02:53 PDT 2011,175,96,11.045,79739.52,521860558,-946620324,85.6,26 -Sun Sep 25 09:02:54 PDT 2011,175,96,10.741,79750.26,521859429,-946620021,85.6,26 -Sun Sep 25 09:02:55 PDT 2011,175,0,10.428,79760.69,521858303,-946619708,85.6,26 -Sun Sep 25 09:02:56 PDT 2011,175,96,10.23,79770.92,521857233,-946619424,85.6,26 -Sun Sep 25 09:02:57 PDT 2011,175,100,10.378,79781.29,521856141,-946619148,85.6,26 -Sun Sep 25 09:02:58 PDT 2011,175,100,10.133,79791.43,521855088,-946618872,85.6,26 -Sun Sep 25 09:02:59 PDT 2011,174,21,9.765,79801.19,521854023,-946618578,85.6,26 -Sun Sep 25 09:03:00 PDT 2011,174,98,9.454,79810.65,521853001,-946618297,85.6,26 -Sun Sep 25 09:03:01 PDT 2011,174,100,9.412,79820.06,521852023,-946617995,85.6,26 -Sun Sep 25 09:03:02 PDT 2011,174,93,9.251,79829.31,521851085,-946617720,85.8,26 -Sun Sep 25 09:03:03 PDT 2011,173,93,9.095,79838.54,521850261,-946617472,85.8,26 -Sun Sep 25 09:03:04 PDT 2011,173,93,8.907,79847.32,521849485,-946617619,85.8,26 -Sun Sep 25 09:03:05 PDT 2011,173,0,8.29,79855.61,521848883,-946618229,85.8,26 -Sun Sep 25 09:03:06 PDT 2011,173,0,8.102,79863.71,521848580,-946619233,85.8,26 -Sun Sep 25 09:03:07 PDT 2011,172,0,7.458,79871.17,521848487,-946620492,85.8,26 -Sun Sep 25 09:03:08 PDT 2011,172,0,7.233,79878.4,521848508,-946621793,85.8,26 -Sun Sep 25 09:03:09 PDT 2011,172,0,6.864,79885.27,521848479,-946622877,85.8,26 -Sun Sep 25 09:03:10 PDT 2011,171,0,6.415,79891.69,521848235,-946623543,85.8,26 -Sun Sep 25 09:03:11 PDT 2011,171,0,5.457,79897.14,521847841,-946623592,85.8,26 -Sun Sep 25 09:03:12 PDT 2011,170,52,4.932,79902.07,521847469,-946623092,85.8,26 -Sun Sep 25 09:03:13 PDT 2011,170,59,5.415,79907.48,521847271,-946622184,85.8,26 -Sun Sep 25 09:03:14 PDT 2011,170,64,6.284,79913.76,521847322,-946621049,85.8,26 -Sun Sep 25 09:03:15 PDT 2011,170,64,6.715,79920.48,521847559,-946619870,85.8,26 -Sun Sep 25 09:03:16 PDT 2011,171,64,6.93,79927.41,521847903,-946618781,85.8,26 -Sun Sep 25 09:03:17 PDT 2011,171,0,6.632,79934.04,521848219,-946617853,85.8,26 -Sun Sep 25 09:03:18 PDT 2011,171,0,5.642,79939.69,521848360,-946617083,85.8,26 -Sun Sep 25 09:03:19 PDT 2011,171,0,4.768,79944.45,521848214,-946616505,85.8,26 -Sun Sep 25 09:03:20 PDT 2011,171,50,5.402,79949.85,521847780,-946616204,85.8,26 -Sun Sep 25 09:03:21 PDT 2011,172,74,5.598,79955.45,521847113,-946616061,85.8,26 -Sun Sep 25 09:03:22 PDT 2011,172,81,6.284,79962.54,521846236,-946615962,85.8,26 -Sun Sep 25 09:03:23 PDT 2011,173,88,7.233,79968.84,521845496,-946615915,85.8,26 -Sun Sep 25 09:03:24 PDT 2011,173,100,7.753,79976.6,521844629,-946615822,85.8,26 -Sun Sep 25 09:03:25 PDT 2011,174,104,8.519,79985.22,521843687,-946615676,85.8,26 -Sun Sep 25 09:03:26 PDT 2011,174,107,8.981,79994.12,521842698,-946615508,85.8,26 -Sun Sep 25 09:03:27 PDT 2011,174,107,9.018,80003.11,521841630,-946615333,85.8,26 -Sun Sep 25 09:03:28 PDT 2011,174,109,9.095,80012.2,521840578,-946615116,85.8,26 -Sun Sep 25 09:03:29 PDT 2011,175,109,9.095,80021.29,521839607,-946614874,85.8,26 -Sun Sep 25 09:03:30 PDT 2011,175,98,9.095,80030.39,521838610,-946614599,86.0,26 -Sun Sep 25 09:03:31 PDT 2011,176,99,9.095,80039.48,521837649,-946614321,86.2,26 -Sun Sep 25 09:03:32 PDT 2011,176,100,9.211,80048.69,521836670,-946614049,86.4,26 -Sun Sep 25 09:03:33 PDT 2011,177,100,9.251,80057.94,521835688,-946613793,86.4,26 -Sun Sep 25 09:03:34 PDT 2011,177,99,9.297,80067.24,521834699,-946613544,86.6,26 -Sun Sep 25 09:03:35 PDT 2011,177,99,9.198,80076.44,521833727,-946613358,86.8,26 -Sun Sep 25 09:03:36 PDT 2011,177,99,9.159,80085.59,521832743,-946613178,86.8,26 -Sun Sep 25 09:03:37 PDT 2011,177,99,9.198,80094.79,521831771,-946612997,87.0,26 -Sun Sep 25 09:03:38 PDT 2011,177,98,9.12,80103.9,521830808,-946612829,87.0,26 -Sun Sep 25 09:03:39 PDT 2011,177,96,9.082,80112.98,521829819,-946612627,87.2,26 -Sun Sep 25 09:03:40 PDT 2011,177,96,8.932,80121.91,521828850,-946612372,87.2,26 -Sun Sep 25 09:03:41 PDT 2011,177,95,8.859,80130.77,521827938,-946612089,87.2,26 -Sun Sep 25 09:03:42 PDT 2011,177,95,8.787,80139.56,521826998,-946611778,87.4,26 -Sun Sep 25 09:03:43 PDT 2011,177,94,8.823,80148.38,521826108,-946611474,87.4,26 -Sun Sep 25 09:03:44 PDT 2011,177,98,8.681,80157.06,521825220,-946611195,87.4,26 -Sun Sep 25 09:03:45 PDT 2011,176,101,8.51,80165.57,521824340,-946610921,87.4,26 -Sun Sep 25 09:03:46 PDT 2011,177,100,8.444,80174.01,521823462,-946610664,87.6,26 -Sun Sep 25 09:03:47 PDT 2011,176,94,8.46,80182.47,521822598,-946610387,87.6,26 -Sun Sep 25 09:03:48 PDT 2011,176,89,8.394,80190.86,521821722,-946610121,87.6,26 -Sun Sep 25 09:03:49 PDT 2011,176,89,8.266,80199.16,521820840,-946609877,87.6,26 -Sun Sep 25 09:03:50 PDT 2011,176,89,8.329,80207.46,521820008,-946609630,87.6,26 -Sun Sep 25 09:03:51 PDT 2011,176,87,8.266,80215.72,521819184,-946609320,87.6,26 -Sun Sep 25 09:03:52 PDT 2011,176,86,8.081,80223.8,521818381,-946609049,87.6,26 -Sun Sep 25 09:03:53 PDT 2011,175,85,7.904,80231.71,521817567,-946608791,87.6,26 -Sun Sep 25 09:03:54 PDT 2011,175,84,7.904,80239.61,521816751,-946608532,87.8,26 -Sun Sep 25 09:03:55 PDT 2011,175,84,7.762,80247.38,521815939,-946608191,87.8,26 -Sun Sep 25 09:03:56 PDT 2011,175,84,7.52,80254.9,521815165,-946607930,87.8,26 -Sun Sep 25 09:03:57 PDT 2011,174,0,7.195,80262.11,521814464,-946607838,87.8,26 -Sun Sep 25 09:03:58 PDT 2011,173,0,6.746,80268.85,521813825,-946607768,87.8,26 -Sun Sep 25 09:03:59 PDT 2011,172,0,6.332,80275.18,521813281,-946607615,87.8,26 -Sun Sep 25 09:04:00 PDT 2011,171,0,5.982,80281.16,521812750,-946607410,87.8,26 -Sun Sep 25 09:04:01 PDT 2011,171,0,5.699,80286.86,521812251,-946607192,87.8,26 -Sun Sep 25 09:04:02 PDT 2011,170,0,4.823,80291.68,521811744,-946606826,87.8,26 -Sun Sep 25 09:04:03 PDT 2011,169,0,4.263,80295.94,521811295,-946606551,87.8,26 -Sun Sep 25 09:04:04 PDT 2011,168,0,3.454,80299.4,521810924,-946606384,87.8,26 -Sun Sep 25 09:04:05 PDT 2011,168,0,2.741,80302.14,521810648,-946606269,87.8,26 -Sun Sep 25 09:04:06 PDT 2011,167,0,1.958,80304.1,521810488,-946606240,88.0,26 -Sun Sep 25 09:04:07 PDT 2011,167,0,1.958,80306.06,521810440,-946606311,88.2,26 -Sun Sep 25 09:04:08 PDT 2011,166,0,0.0,80306.06,521810469,-946606358,88.4,26 -Sun Sep 25 09:04:15 PDT 2011,163,0,0.0,80306.06,521810532,-946606343,89.2,26 -Sun Sep 25 09:04:16 PDT 2011,163,0,1.71,80307.88,521810390,-946606329,89.4,26 -Sun Sep 25 09:04:17 PDT 2011,163,0,3.86,80311.56,521810171,-946606279,89.4,26 -Sun Sep 25 09:04:18 PDT 2011,163,0,0.0,80311.56,521809825,-946606153,89.4,26 -Sun Sep 25 09:04:19 PDT 2011,163,20,3.213,80314.1,521809552,-946606057,89.6,26 -Sun Sep 25 09:04:20 PDT 2011,163,20,2.995,80317.09,521809171,-946605953,89.6,26 -Sun Sep 25 09:04:21 PDT 2011,162,38,3.504,80320.6,521808753,-946605834,89.6,26 -Sun Sep 25 09:04:22 PDT 2011,162,48,4.314,80324.93,521808285,-946605724,89.6,26 -Sun Sep 25 09:04:23 PDT 2011,162,55,4.708,80329.61,521807771,-946605587,89.6,26 -Sun Sep 25 09:04:24 PDT 2011,163,60,5.387,80335.01,521807181,-946605396,89.8,26 -Sun Sep 25 09:04:25 PDT 2011,164,66,6.066,80341.07,521806494,-946605176,89.8,26 -Sun Sep 25 09:04:26 PDT 2011,164,75,6.582,80347.65,521805751,-946604998,89.8,26 -Sun Sep 25 09:04:27 PDT 2011,165,78,7.008,80354.65,521804967,-946604807,89.8,26 -Sun Sep 25 09:04:28 PDT 2011,166,81,7.493,80362.15,521804157,-946604617,89.8,26 -Sun Sep 25 09:04:29 PDT 2011,167,88,7.846,80369.99,521803306,-946604397,89.8,26 -Sun Sep 25 09:04:30 PDT 2011,168,55,8.266,80378.26,521802454,-946604185,89.8,26 -Sun Sep 25 09:04:31 PDT 2011,168,89,8.768,80387.02,521801561,-946603976,89.8,26 -Sun Sep 25 09:04:32 PDT 2011,169,91,8.362,80395.38,521800668,-946603790,89.8,26 -Sun Sep 25 09:04:33 PDT 2011,170,91,8.46,80403.84,521799755,-946603610,90.0,26 -Sun Sep 25 09:04:34 PDT 2011,170,97,8.46,80412.38,521798860,-946603422,90.0,26 -Sun Sep 25 09:04:35 PDT 2011,171,100,8.427,80420.73,521797951,-946603203,90.0,26 -Sun Sep 25 09:04:36 PDT 2011,172,99,8.394,80429.12,521797065,-946602983,90.2,26 -Sun Sep 25 09:04:37 PDT 2011,172,99,8.35,80437.47,521796175,-946602778,90.4,26 -Sun Sep 25 09:04:38 PDT 2011,173,100,8.35,80445.83,521795251,-946602606,90.6,26 -Sun Sep 25 09:04:39 PDT 2011,173,101,8.415,80454.24,521794350,-946602433,90.6,26 -Sun Sep 25 09:04:40 PDT 2011,173,101,8.514,80462.76,521793434,-946602259,90.8,26 -Sun Sep 25 09:04:41 PDT 2011,174,105,8.481,80471.24,521792515,-946602062,91.0,26 -Sun Sep 25 09:04:42 PDT 2011,174,107,8.863,80480.1,521791584,-946601832,91.0,26 -Sun Sep 25 09:04:43 PDT 2011,174,115,9.402,80489.5,521790595,-946601589,91.2,26 -Sun Sep 25 09:04:44 PDT 2011,175,107,9.875,80499.37,521789558,-946601319,91.2,26 -Sun Sep 25 09:04:45 PDT 2011,175,110,10.106,80509.48,521788464,-946601019,91.4,26 -Sun Sep 25 09:04:46 PDT 2011,175,113,10.397,80519.88,521787342,-946600705,91.4,26 -Sun Sep 25 09:04:47 PDT 2011,175,100,10.601,80530.48,521786212,-946600380,91.4,26 -Sun Sep 25 09:04:48 PDT 2011,176,100,10.653,80541.14,521785065,-946600050,91.6,26 -Sun Sep 25 09:04:49 PDT 2011,176,100,10.519,80551.65,521783967,-946599765,91.6,26 -Sun Sep 25 09:04:50 PDT 2011,176,102,10.468,80562.12,521782842,-946599468,91.6,26 -Sun Sep 25 09:04:51 PDT 2011,176,103,10.675,80572.79,521781748,-946599182,91.8,26 -Sun Sep 25 09:04:52 PDT 2011,175,104,10.782,80583.58,521780645,-946598901,91.8,26 -Sun Sep 25 09:04:53 PDT 2011,175,106,10.891,80594.47,521779495,-946598583,91.8,26 -Sun Sep 25 09:04:54 PDT 2011,175,107,11.002,80605.47,521778333,-946598240,91.8,26 -Sun Sep 25 09:04:55 PDT 2011,176,107,11.059,80616.58,521777182,-946597888,91.8,26 -Sun Sep 25 09:04:56 PDT 2011,176,108,11.059,80627.58,521776006,-946597530,91.8,26 -Sun Sep 25 09:04:57 PDT 2011,176,109,11.261,80638.84,521774851,-946597148,92.0,26 -Sun Sep 25 09:04:58 PDT 2011,176,107,11.29,80650.23,521773687,-946596758,92.0,26 -Sun Sep 25 09:04:59 PDT 2011,176,108,11.152,80661.29,521772471,-946596376,92.0,26 -Sun Sep 25 09:05:00 PDT 2011,177,107,11.181,80672.47,521771310,-946596059,92.0,26 -Sun Sep 25 09:05:01 PDT 2011,177,108,10.87,80683.33,521770158,-946595783,92.0,26 -Sun Sep 25 09:05:02 PDT 2011,177,107,11.269,80694.6,521768962,-946595551,92.0,26 -Sun Sep 25 09:05:03 PDT 2011,177,105,11.038,80705.64,521767778,-946595358,92.0,26 -Sun Sep 25 09:05:04 PDT 2011,177,105,10.87,80716.51,521766653,-946595172,92.0,26 -Sun Sep 25 09:05:05 PDT 2011,177,105,10.87,80727.37,521765484,-946594927,92.0,26 -Sun Sep 25 09:05:06 PDT 2011,178,105,10.789,80738.16,521764354,-946594615,92.0,26 -Sun Sep 25 09:05:07 PDT 2011,178,104,10.843,80749.01,521763225,-946594252,92.0,26 -Sun Sep 25 09:05:08 PDT 2011,178,103,10.87,80759.87,521762112,-946593873,92.0,26 -Sun Sep 25 09:05:09 PDT 2011,179,103,10.551,80770.43,521761026,-946593528,92.0,26 -Sun Sep 25 09:05:10 PDT 2011,179,103,10.105,80780.53,521759991,-946593242,92.0,26 -Sun Sep 25 09:05:11 PDT 2011,179,0,9.739,80790.27,521758941,-946592988,92.0,26 -Sun Sep 25 09:05:12 PDT 2011,179,0,9.317,80799.59,521757960,-946592755,92.0,26 -Sun Sep 25 09:05:13 PDT 2011,178,0,8.821,80808.41,521757025,-946592524,92.0,26 -Sun Sep 25 09:05:14 PDT 2011,178,0,8.246,80816.65,521756174,-946592300,92.0,26 -Sun Sep 25 09:05:15 PDT 2011,177,0,7.526,80824.18,521755382,-946592080,92.0,26 -Sun Sep 25 09:05:16 PDT 2011,177,0,6.876,80831.05,521754666,-946591870,92.0,26 -Sun Sep 25 09:05:17 PDT 2011,176,0,6.203,80837.26,521754035,-946591682,92.0,26 -Sun Sep 25 09:05:18 PDT 2011,176,0,5.341,80842.6,521753504,-946591546,92.0,26 -Sun Sep 25 09:05:19 PDT 2011,175,0,4.609,80847.21,521753039,-946591454,92.0,26 -Sun Sep 25 09:05:20 PDT 2011,174,0,4.348,80851.56,521752650,-946591391,92.0,26 -Sun Sep 25 09:05:21 PDT 2011,174,0,3.769,80855.33,521752290,-946591333,92.0,26 -Sun Sep 25 09:05:22 PDT 2011,173,0,3.499,80858.83,521751973,-946591273,92.2,26 -Sun Sep 25 09:05:23 PDT 2011,172,0,3.389,80862.22,521751659,-946591201,92.2,26 -Sun Sep 25 09:05:24 PDT 2011,171,0,3.079,80865.29,521751380,-946591107,92.2,26 -Sun Sep 25 09:05:25 PDT 2011,170,0,2.756,80868.05,521751102,-946590971,92.2,26 -Sun Sep 25 09:05:26 PDT 2011,169,31,3.203,80871.26,521750822,-946590815,92.2,26 -Sun Sep 25 09:05:27 PDT 2011,168,31,3.331,80875.12,521750449,-946590640,92.2,26 -Sun Sep 25 09:05:28 PDT 2011,167,38,3.46,80879.26,521750037,-946590493,92.2,26 -Sun Sep 25 09:05:29 PDT 2011,167,38,3.488,80881.51,521749789,-946590438,92.2,26 -Sun Sep 25 09:05:30 PDT 2011,167,38,3.704,80885.22,521749417,-946590381,92.2,26 -Sun Sep 25 09:05:31 PDT 2011,167,0,3.035,80888.25,521749080,-946590341,92.2,26 -Sun Sep 25 09:05:32 PDT 2011,167,0,2.697,80890.94,521748795,-946590305,92.2,26 -Sun Sep 25 09:05:33 PDT 2011,166,0,2.321,80893.26,521748570,-946590267,92.2,26 -Sun Sep 25 09:05:34 PDT 2011,166,0,1.866,80895.13,521748394,-946590195,92.2,26 -Sun Sep 25 09:05:35 PDT 2011,165,0,2.063,80897.19,521748220,-946590108,92.2,26 -Sun Sep 25 09:05:36 PDT 2011,165,0,2.112,80899.3,521748064,-946590018,92.2,26 -Sun Sep 25 09:05:37 PDT 2011,164,0,2.112,80901.41,521747921,-946589939,92.2,26 -Sun Sep 25 09:05:38 PDT 2011,163,0,1.562,80902.97,521747825,-946589916,92.2,26 -Sun Sep 25 09:06:01 PDT 2011,152,0,1.178,80902.97,521747061,-946589491,94.0,26 -Sun Sep 25 09:06:02 PDT 2011,152,0,1.861,80904.86,521746842,-946589478,94.0,26 -Sun Sep 25 09:06:03 PDT 2011,153,35,2.471,80907.29,521746577,-946589468,94.0,26 -Sun Sep 25 09:06:04 PDT 2011,154,46,3.092,80910.74,521746194,-946589417,94.0,26 -Sun Sep 25 09:06:05 PDT 2011,155,46,3.666,80913.97,521745839,-946589349,94.0,26 -Sun Sep 25 09:06:07 PDT 2011,157,61,4.099,80922.65,521745839,-946589349,94.0,26 -Sun Sep 25 09:06:08 PDT 2011,158,61,4.679,80926.78,521744400,-946589066,94.0,26 -Sun Sep 25 09:06:09 PDT 2011,158,65,5.064,80931.84,521743868,-946588900,94.0,26 -Sun Sep 25 09:06:10 PDT 2011,159,68,5.04,80936.88,521743323,-946588709,94.0,26 -Sun Sep 25 09:06:11 PDT 2011,160,70,5.211,80942.11,521742779,-946588488,94.0,26 -Sun Sep 25 09:06:12 PDT 2011,160,72,5.519,80947.61,521742224,-946588276,94.0,26 -Sun Sep 25 09:06:13 PDT 2011,162,75,5.664,80953.28,521741608,-946588108,94.2,26 -Sun Sep 25 09:06:14 PDT 2011,163,78,5.929,80959.21,521740987,-946587964,94.4,26 -Sun Sep 25 09:06:15 PDT 2011,164,80,6.012,80965.22,521740284,-946587866,94.6,26 -Sun Sep 25 09:06:16 PDT 2011,165,84,6.257,80971.48,521739612,-946587800,94.8,26 -Sun Sep 25 09:06:17 PDT 2011,166,87,6.425,80977.9,521738958,-946587666,95.0,26 -Sun Sep 25 09:06:18 PDT 2011,166,88,6.79,80984.69,521738253,-946587483,95.0,26 -Sun Sep 25 09:06:19 PDT 2011,167,82,6.854,80991.54,521737530,-946587240,95.2,26 -Sun Sep 25 09:06:20 PDT 2011,167,83,6.898,80998.44,521736823,-946587001,95.4,26 -Sun Sep 25 09:06:21 PDT 2011,169,86,7.08,81005.52,521736074,-946586807,95.8,26 -Sun Sep 25 09:06:22 PDT 2011,170,89,7.296,81012.82,521735265,-946586651,96.0,26 -Sun Sep 25 09:06:23 PDT 2011,171,94,7.198,81020.01,521734490,-946586496,96.2,26 -Sun Sep 25 09:06:24 PDT 2011,172,94,7.222,81027.23,521733707,-946586333,96.4,26 -Sun Sep 25 09:06:25 PDT 2011,172,94,7.222,81034.45,521732915,-946586152,96.6,26 -Sun Sep 25 09:06:26 PDT 2011,173,94,7.198,81041.65,521732141,-946585963,96.8,26 -Sun Sep 25 09:06:27 PDT 2011,173,94,7.174,81048.82,521731371,-946585788,97.2,26 -Sun Sep 25 09:06:28 PDT 2011,174,93,7.127,81055.94,521730626,-946585653,97.6,26 -Sun Sep 25 09:06:29 PDT 2011,174,94,7.127,81063.07,521729852,-946585416,97.8,26 -Sun Sep 25 09:06:30 PDT 2011,174,88,7.198,81070.29,521729091,-946585190,98.2,26 -Sun Sep 25 09:06:31 PDT 2011,174,87,7.247,81077.51,521728325,-946584955,98.4,26 -Sun Sep 25 09:06:32 PDT 2011,174,87,7.321,81084.83,521727556,-946584720,98.6,26 -Sun Sep 25 09:06:33 PDT 2011,173,89,7.371,81092.2,521726777,-946584514,98.8,26 -Sun Sep 25 09:06:34 PDT 2011,174,92,7.579,81099.79,521725983,-946584330,99.0,26 -Sun Sep 25 09:06:35 PDT 2011,173,88,7.659,81107.44,521725152,-946584117,99.2,26 -Sun Sep 25 09:06:36 PDT 2011,173,86,7.855,81115.29,521724295,-946583901,99.2,26 -Sun Sep 25 09:06:37 PDT 2011,173,88,8.031,81123.32,521723435,-946583683,99.4,26 -Sun Sep 25 09:06:38 PDT 2011,173,89,8.184,81131.51,521722547,-946583453,99.6,26 -Sun Sep 25 09:06:39 PDT 2011,172,89,8.31,81139.82,521721680,-946583226,99.6,26 -Sun Sep 25 09:06:40 PDT 2011,172,89,8.31,81148.13,521720789,-946582968,99.6,26 -Sun Sep 25 09:06:41 PDT 2011,172,0,8.408,81156.54,521719890,-946582697,99.8,26 -Sun Sep 25 09:06:42 PDT 2011,172,92,8.609,81165.15,521718983,-946582416,99.8,26 -Sun Sep 25 09:06:43 PDT 2011,171,85,8.866,81174.01,521718052,-946582130,100.0,26 -Sun Sep 25 09:06:44 PDT 2011,170,86,9.168,81183.19,521717091,-946581851,100.0,26 -Sun Sep 25 09:06:45 PDT 2011,169,86,9.408,81192.59,521716098,-946581553,100.0,26 -Sun Sep 25 09:06:46 PDT 2011,169,86,9.77,81202.36,521715079,-946581222,100.0,26 -Sun Sep 25 09:06:47 PDT 2011,168,0,10.067,81212.44,521714025,-946580873,100.2,26 -Sun Sep 25 09:06:48 PDT 2011,168,0,10.408,81222.84,521712939,-946580506,100.2,26 -Sun Sep 25 09:06:49 PDT 2011,167,0,10.665,81233.55,521711786,-946580131,100.2,26 -Sun Sep 25 09:06:50 PDT 2011,167,0,10.936,81244.44,521710614,-946579774,100.0,26 -Sun Sep 25 09:06:51 PDT 2011,166,0,11.221,81255.66,521709387,-946579420,99.8,26 -Sun Sep 25 09:06:52 PDT 2011,165,0,11.583,81267.25,521708142,-946579078,99.6,26 -Sun Sep 25 09:06:53 PDT 2011,164,0,11.773,81279.02,521706868,-946578726,99.6,26 -Sun Sep 25 09:06:54 PDT 2011,161,0,12.001,81291.02,521705559,-946578280,99.2,26 -Sun Sep 25 09:06:55 PDT 2011,160,0,12.276,81303.29,521704239,-946577847,98.8,26 -Sun Sep 25 09:06:56 PDT 2011,159,0,12.418,81315.72,521702909,-946577438,98.4,26 -Sun Sep 25 09:06:57 PDT 2011,159,102,12.563,81328.28,521701543,-946577052,98.0,26 -Sun Sep 25 09:06:58 PDT 2011,159,103,12.941,81341.22,521700246,-946576702,97.6,26 -Sun Sep 25 09:06:59 PDT 2011,159,103,13.18,81354.4,521698839,-946576322,97.0,26 -Sun Sep 25 09:07:00 PDT 2011,160,103,13.099,81367.5,521697422,-946575903,96.6,26 -Sun Sep 25 09:07:01 PDT 2011,159,0,13.22,81380.72,521695995,-946575463,96.2,26 -Sun Sep 25 09:07:02 PDT 2011,158,0,13.1,81393.82,521694569,-946574985,95.6,26 -Sun Sep 25 09:07:03 PDT 2011,157,0,13.1,81406.92,521693134,-946574526,95.2,26 -Sun Sep 25 09:07:04 PDT 2011,155,0,13.141,81420.06,521691775,-946574126,94.8,26 -Sun Sep 25 09:07:05 PDT 2011,154,0,12.902,81432.96,521690350,-946573728,94.4,26 -Sun Sep 25 09:07:06 PDT 2011,153,0,13.02,81445.98,521688968,-946573379,94.0,26 -Sun Sep 25 09:07:07 PDT 2011,151,0,12.981,81458.97,521687587,-946573076,93.4,26 -Sun Sep 25 09:07:08 PDT 2011,151,0,12.981,81471.98,521686216,-946572774,93.0,26 -Sun Sep 25 09:07:09 PDT 2011,150,0,12.902,81484.85,521684856,-946572461,92.4,26 -Sun Sep 25 09:07:10 PDT 2011,149,0,12.672,81497.52,521683507,-946572137,92.0,26 -Sun Sep 25 09:07:11 PDT 2011,148,0,12.637,81510.16,521682155,-946571800,91.8,26 -Sun Sep 25 09:07:12 PDT 2011,146,0,12.526,81522.69,521680861,-946571468,91.4,26 -Sun Sep 25 09:07:13 PDT 2011,146,98,12.276,81534.96,521679540,-946571159,91.2,26 -Sun Sep 25 09:07:14 PDT 2011,146,101,12.418,81547.38,521678227,-946570865,90.8,26 -Sun Sep 25 09:07:15 PDT 2011,147,103,12.749,81560.13,521676903,-946570555,90.6,26 -Sun Sep 25 09:07:16 PDT 2011,148,105,13.02,81573.15,521675570,-946570212,90.4,26 -Sun Sep 25 09:07:17 PDT 2011,150,104,13.261,81586.41,521674198,-946569873,90.0,26 -Sun Sep 25 09:07:18 PDT 2011,152,104,13.554,81599.97,521672716,-946569478,89.6,26 -Sun Sep 25 09:07:19 PDT 2011,154,104,13.683,81613.65,521671257,-946569110,89.2,26 -Sun Sep 25 09:07:20 PDT 2011,155,104,13.787,81627.44,521669762,-946568768,89.0,26 -Sun Sep 25 09:07:21 PDT 2011,155,0,13.832,81641.26,521668238,-946568413,88.4,26 -Sun Sep 25 09:07:22 PDT 2011,155,0,13.787,81655.05,521666749,-946568040,88.0,26 -Sun Sep 25 09:07:23 PDT 2011,155,0,13.699,81668.75,521665269,-946567683,87.6,26 -Sun Sep 25 09:07:24 PDT 2011,154,0,13.568,81682.32,521663841,-946567297,87.2,26 -Sun Sep 25 09:07:25 PDT 2011,154,0,13.315,81695.63,521662492,-946566915,86.8,26 -Sun Sep 25 09:07:26 PDT 2011,154,103,13.031,81708.66,521661146,-946566537,86.2,26 -Sun Sep 25 09:07:27 PDT 2011,154,105,12.796,81721.5,521659859,-946566125,85.8,26 -Sun Sep 25 09:07:28 PDT 2011,155,105,12.436,81733.9,521658604,-946565703,85.4,26 -Sun Sep 25 09:07:29 PDT 2011,155,110,12.154,81746.05,521657349,-946565305,85.0,26 -Sun Sep 25 09:07:30 PDT 2011,157,111,11.851,81757.9,521656077,-946564919,84.6,26 -Sun Sep 25 09:07:31 PDT 2011,158,108,11.378,81769.44,521654888,-946564590,84.4,26 -Sun Sep 25 09:07:32 PDT 2011,158,112,11.141,81782.33,521653537,-946564246,84.2,26 -Sun Sep 25 09:07:33 PDT 2011,158,114,10.858,81791.38,521652610,-946564025,83.8,26 -Sun Sep 25 09:07:34 PDT 2011,159,112,10.485,81801.95,521651539,-946563752,83.6,26 -Sun Sep 25 09:07:35 PDT 2011,160,110,10.284,81812.11,521650476,-946563484,83.4,26 -Sun Sep 25 09:07:36 PDT 2011,161,109,10.09,81822.21,521649398,-946563215,83.6,26 -Sun Sep 25 09:07:37 PDT 2011,162,106,9.995,81832.2,521648344,-946562987,83.6,26 -Sun Sep 25 09:07:38 PDT 2011,163,105,9.826,81842.03,521647284,-946562767,83.6,26 -Sun Sep 25 09:07:39 PDT 2011,164,103,9.649,81851.68,521646259,-946562562,83.6,26 -Sun Sep 25 09:07:40 PDT 2011,165,102,9.478,81861.15,521645275,-946562352,83.8,26 -Sun Sep 25 09:07:41 PDT 2011,165,102,9.395,81870.55,521644290,-946562121,83.8,26 -Sun Sep 25 09:07:42 PDT 2011,166,100,9.293,81879.85,521643325,-946561866,83.8,26 -Sun Sep 25 09:07:43 PDT 2011,167,100,9.038,81888.89,521642380,-946561602,83.8,26 -Sun Sep 25 09:07:44 PDT 2011,167,100,8.743,81897.63,521641481,-946561347,84.0,26 -Sun Sep 25 09:07:45 PDT 2011,167,0,8.303,81905.94,521640587,-946561108,84.2,26 -Sun Sep 25 09:07:46 PDT 2011,167,0,7.789,81913.74,521639762,-946560892,84.4,26 -Sun Sep 25 09:07:47 PDT 2011,166,0,6.844,81920.57,521639024,-946560706,84.6,26 -Sun Sep 25 09:07:48 PDT 2011,166,0,5.917,81926.48,521638400,-946560565,84.8,26 -Sun Sep 25 09:07:49 PDT 2011,166,0,5.016,81931.5,521637920,-946560482,84.8,26 -Sun Sep 25 09:07:50 PDT 2011,166,0,3.46,81934.96,521637605,-946560449,85.0,26 -Sun Sep 25 09:07:51 PDT 2011,165,0,2.609,81937.57,521637412,-946560442,85.2,26 -Sun Sep 25 09:07:52 PDT 2011,165,0,2.108,81939.68,521637296,-946560432,85.2,26 -Sun Sep 25 09:07:53 PDT 2011,164,0,1.919,81941.6,521637202,-946560410,85.4,26 -Sun Sep 25 09:07:54 PDT 2011,163,0,1.827,81943.43,521637089,-946560369,85.4,26 -Sun Sep 25 09:07:55 PDT 2011,163,0,1.826,81945.26,521636919,-946560311,85.4,26 -Sun Sep 25 09:07:56 PDT 2011,162,36,1.826,81947.08,521636659,-946560227,85.6,26 -Sun Sep 25 09:07:57 PDT 2011,162,49,1.826,81948.91,521636297,-946560111,85.6,26 -Sun Sep 25 09:07:58 PDT 2011,163,49,4.686,81953.6,521635836,-946559981,85.6,26 -Sun Sep 25 09:07:59 PDT 2011,163,57,5.475,81959.08,521635248,-946559782,85.8,26 -Sun Sep 25 09:08:00 PDT 2011,163,68,5.816,81964.89,521634594,-946559539,85.8,26 -Sun Sep 25 09:08:01 PDT 2011,163,73,6.406,81971.29,521633884,-946559283,85.8,26 -Sun Sep 25 09:08:02 PDT 2011,163,79,7.106,81978.4,521633111,-946559023,85.8,26 -Sun Sep 25 09:08:03 PDT 2011,163,90,7.692,81986.1,521632289,-946558759,85.8,26 -Sun Sep 25 09:08:04 PDT 2011,164,96,8.384,81994.48,521631411,-946558524,85.6,26 -Sun Sep 25 09:08:05 PDT 2011,165,96,9.413,82003.91,521630416,-946558268,85.4,26 -Sun Sep 25 09:08:06 PDT 2011,166,96,9.539,82013.44,521629382,-946557975,85.2,26 -Sun Sep 25 09:08:07 PDT 2011,166,96,9.668,82023.11,521628337,-946557648,85.0,26 -Sun Sep 25 09:08:08 PDT 2011,166,23,9.711,82032.82,521627298,-946557314,85.0,26 -Sun Sep 25 09:08:09 PDT 2011,166,68,9.913,82042.73,521626277,-946556967,84.8,26 -Sun Sep 25 09:08:10 PDT 2011,166,68,9.755,82052.49,521625295,-946556656,84.6,26 -Sun Sep 25 09:08:11 PDT 2011,165,68,9.409,82061.9,521624282,-946556353,84.6,26 -Sun Sep 25 09:08:12 PDT 2011,165,0,9.051,82070.95,521623315,-946556069,84.4,26 -Sun Sep 25 09:08:13 PDT 2011,164,0,8.975,82079.93,521622356,-946555784,84.4,26 -Sun Sep 25 09:08:14 PDT 2011,163,88,8.9,82088.83,521621400,-946555502,84.4,26 -Sun Sep 25 09:08:15 PDT 2011,163,90,9.051,82097.88,521620454,-946555219,84.2,26 -Sun Sep 25 09:08:16 PDT 2011,164,90,9.287,82107.17,521619503,-946554945,84.2,26 -Sun Sep 25 09:08:17 PDT 2011,164,90,9.207,82116.37,521618509,-946554666,84.2,26 -Sun Sep 25 09:08:18 PDT 2011,164,25,9.128,82125.5,521617516,-946554376,84.0,26 -Sun Sep 25 09:08:19 PDT 2011,164,90,9.167,82134.66,521616536,-946554069,84.0,26 -Sun Sep 25 09:08:20 PDT 2011,165,90,9.207,82143.86,521615564,-946553771,84.0,26 -Sun Sep 25 09:08:21 PDT 2011,165,90,9.368,82153.23,521614564,-946553452,84.0,26 -Sun Sep 25 09:08:22 PDT 2011,165,91,9.247,82162.49,521613568,-946553163,84.0,26 -Sun Sep 25 09:08:23 PDT 2011,165,90,9.368,82171.85,521612564,-946552904,83.8,26 -Sun Sep 25 09:08:24 PDT 2011,166,90,9.368,82181.26,521611538,-946552656,83.8,26 -Sun Sep 25 09:08:25 PDT 2011,166,90,9.286,82190.51,521610540,-946552411,83.8,26 -Sun Sep 25 09:08:26 PDT 2011,166,90,9.286,82199.79,521609553,-946552152,83.8,26 -Sun Sep 25 09:08:27 PDT 2011,167,90,9.327,82209.12,521608572,-946551897,83.8,26 -Sun Sep 25 09:08:28 PDT 2011,167,90,9.09,82218.22,521607648,-946551653,83.6,26 -Sun Sep 25 09:08:29 PDT 2011,167,90,9.167,82227.38,521606640,-946551619,83.4,26 -Sun Sep 25 09:08:30 PDT 2011,167,0,9.246,82236.62,521605831,-946552106,83.2,26 -Sun Sep 25 09:08:31 PDT 2011,167,87,8.792,82245.41,521605242,-946553066,83.0,26 -Sun Sep 25 09:08:32 PDT 2011,168,91,9.207,82254.61,521604935,-946554452,82.8,26 -Sun Sep 25 09:08:33 PDT 2011,167,94,9.246,82263.86,521604797,-946556116,82.6,26 -Sun Sep 25 09:08:34 PDT 2011,168,87,9.886,82273.74,521604741,-946557846,82.6,26 -Sun Sep 25 09:08:35 PDT 2011,168,88,10.071,82283.81,521604603,-946559440,82.4,26 -Sun Sep 25 09:08:36 PDT 2011,167,92,10.313,82294.12,521604326,-946561046,82.4,26 -Sun Sep 25 09:08:37 PDT 2011,168,94,10.807,82304.93,521603920,-946562564,82.2,26 -Sun Sep 25 09:08:38 PDT 2011,168,93,10.889,82315.82,521603432,-946564056,82.2,26 -Sun Sep 25 09:08:39 PDT 2011,169,93,10.889,82326.71,521602896,-946565557,82.0,26 -Sun Sep 25 09:08:40 PDT 2011,169,94,11.001,82337.71,521602377,-946567005,82.0,26 -Sun Sep 25 09:08:41 PDT 2011,169,95,11.058,82348.76,521601874,-946568490,82.0,26 -Sun Sep 25 09:08:42 PDT 2011,170,96,11.115,82359.88,521601367,-946570003,82.0,26 -Sun Sep 25 09:08:43 PDT 2011,170,96,11.231,82371.12,521600871,-946571505,81.8,26 -Sun Sep 25 09:08:44 PDT 2011,169,97,11.173,82382.29,521600385,-946573044,81.6,26 -Sun Sep 25 09:08:45 PDT 2011,169,97,11.35,82393.64,521599888,-946574606,81.4,26 -Sun Sep 25 09:08:46 PDT 2011,168,97,11.472,82405.11,521599408,-946576167,81.2,26 -Sun Sep 25 09:08:47 PDT 2011,168,101,11.596,82416.7,521598912,-946577783,81.0,26 -Sun Sep 25 09:08:48 PDT 2011,167,101,11.754,82428.46,521598433,-946579412,80.8,26 -Sun Sep 25 09:08:49 PDT 2011,167,96,11.895,82440.36,521597948,-946581040,80.8,26 -Sun Sep 25 09:08:50 PDT 2011,167,96,12.235,82452.59,521597423,-946582698,80.6,26 -Sun Sep 25 09:08:51 PDT 2011,167,96,12.376,82464.97,521596873,-946584378,80.4,26 -Sun Sep 25 09:08:52 PDT 2011,167,0,12.235,82477.2,521596332,-946586032,80.4,26 -Sun Sep 25 09:08:53 PDT 2011,167,0,12.412,82489.61,521595754,-946587762,80.0,26 -Sun Sep 25 09:08:54 PDT 2011,166,0,12.305,82501.92,521595185,-946589485,79.8,26 -Sun Sep 25 09:08:55 PDT 2011,166,0,12.27,82514.19,521594645,-946591181,79.4,26 -Sun Sep 25 09:08:56 PDT 2011,166,100,12.376,82526.57,521594088,-946592905,79.2,26 -Sun Sep 25 09:08:57 PDT 2011,166,102,12.485,82539.05,521593536,-946594606,78.8,26 -Sun Sep 25 09:08:58 PDT 2011,166,102,12.806,82551.86,521592971,-946596363,78.4,26 -Sun Sep 25 09:08:59 PDT 2011,166,102,12.882,82564.74,521592399,-946598137,78.0,26 -Sun Sep 25 09:09:00 PDT 2011,167,102,13.038,82577.78,521591810,-946599955,77.6,26 -Sun Sep 25 09:09:01 PDT 2011,167,105,13.038,82590.82,521591238,-946601752,77.4,26 -Sun Sep 25 09:09:02 PDT 2011,167,106,13.198,82604.03,521590658,-946603599,77.0,26 -Sun Sep 25 09:09:03 PDT 2011,167,47,13.362,82617.38,521590092,-946605415,76.8,26 -Sun Sep 25 09:09:04 PDT 2011,167,100,13.362,82630.74,521589532,-946607212,76.6,26 -Sun Sep 25 09:09:05 PDT 2011,167,93,13.659,82644.4,521588939,-946609071,76.4,26 -Sun Sep 25 09:09:06 PDT 2011,167,94,13.659,82658.05,521588328,-946610943,76.0,26 -Sun Sep 25 09:09:07 PDT 2011,167,95,13.659,82671.71,521587709,-946612826,75.6,26 -Sun Sep 25 09:09:08 PDT 2011,167,95,13.99,82685.7,521587096,-946614716,75.2,26 -Sun Sep 25 09:09:09 PDT 2011,167,94,13.944,82699.65,521586490,-946616626,75.0,26 -Sun Sep 25 09:09:10 PDT 2011,167,94,13.855,82713.5,521585906,-946618492,74.6,26 -Sun Sep 25 09:09:11 PDT 2011,167,94,13.81,82727.31,521585320,-946620406,74.2,26 -Sun Sep 25 09:09:12 PDT 2011,167,93,13.766,82741.08,521584751,-946622269,73.8,26 -Sun Sep 25 09:09:13 PDT 2011,167,91,13.55,82754.62,521584185,-946624124,73.4,26 -Sun Sep 25 09:09:14 PDT 2011,166,90,13.299,82767.92,521583627,-946625926,73.0,26 -Sun Sep 25 09:09:15 PDT 2011,166,88,13.097,82781.01,521583074,-946627696,72.8,26 -Sun Sep 25 09:09:16 PDT 2011,166,87,12.848,82793.86,521582525,-946629431,72.4,26 -Sun Sep 25 09:09:17 PDT 2011,166,84,12.66,82806.52,521581994,-946631135,72.2,26 -Sun Sep 25 09:09:18 PDT 2011,166,90,12.477,82819.0,521581471,-946632834,72.0,26 -Sun Sep 25 09:09:19 PDT 2011,166,102,12.195,82831.19,521580967,-946634488,71.8,26 -Sun Sep 25 09:09:20 PDT 2011,166,101,11.958,82843.15,521580474,-946636093,71.4,26 -Sun Sep 25 09:09:21 PDT 2011,167,99,11.795,82854.96,521579979,-946637698,71.0,26 -Sun Sep 25 09:09:22 PDT 2011,168,96,11.543,82866.49,521579510,-946639226,70.6,26 -Sun Sep 25 09:09:23 PDT 2011,168,104,11.301,82877.79,521579036,-946640772,70.2,26 -Sun Sep 25 09:09:24 PDT 2011,168,105,11.069,82888.86,521578564,-946642297,70.0,26 -Sun Sep 25 09:09:25 PDT 2011,168,103,10.857,82899.72,521578103,-946643725,69.6,26 -Sun Sep 25 09:09:26 PDT 2011,168,101,10.643,82910.36,521577637,-946645155,69.4,26 -Sun Sep 25 09:09:27 PDT 2011,168,99,10.539,82920.9,521577176,-946646550,69.2,26 -Sun Sep 25 09:09:28 PDT 2011,168,98,10.337,82931.24,521576737,-946647872,69.0,26 -Sun Sep 25 09:09:29 PDT 2011,168,97,10.143,82941.38,521576282,-946649262,69.0,26 -Sun Sep 25 09:09:30 PDT 2011,169,96,10.049,82951.43,521575862,-946650598,69.0,26 -Sun Sep 25 09:09:31 PDT 2011,168,94,9.911,82961.34,521575433,-946651934,69.2,26 -Sun Sep 25 09:09:32 PDT 2011,168,94,9.776,82971.11,521575013,-946653212,69.2,26 -Sun Sep 25 09:09:33 PDT 2011,169,94,9.732,82980.85,521574591,-946654515,69.2,26 -Sun Sep 25 09:09:34 PDT 2011,169,94,9.821,82990.67,521574203,-946655831,69.2,26 -Sun Sep 25 09:09:35 PDT 2011,170,95,9.776,83000.44,521573851,-946657138,69.2,26 -Sun Sep 25 09:09:36 PDT 2011,170,95,9.851,83010.31,521573462,-946658421,69.2,26 -Sun Sep 25 09:09:37 PDT 2011,170,95,9.897,83021.93,521572982,-946659942,69.2,26 -Sun Sep 25 09:09:38 PDT 2011,170,95,9.807,83030.14,521572641,-946660999,69.2,26 -Sun Sep 25 09:09:39 PDT 2011,170,0,9.718,83039.9,521572264,-946662266,69.2,26 -Sun Sep 25 09:09:40 PDT 2011,169,0,9.504,83049.24,521571911,-946663542,69.2,26 -Sun Sep 25 09:09:41 PDT 2011,169,0,9.463,83058.7,521571588,-946664822,69.2,26 -Sun Sep 25 09:09:42 PDT 2011,169,0,9.463,83068.16,521571264,-946666092,69.4,26 -Sun Sep 25 09:09:43 PDT 2011,169,0,9.463,83077.62,521570906,-946667378,69.4,26 -Sun Sep 25 09:09:44 PDT 2011,168,0,9.504,83087.13,521570530,-946668647,69.4,26 -Sun Sep 25 09:09:45 PDT 2011,167,0,9.589,83096.72,521570144,-946669923,69.4,26 -Sun Sep 25 09:09:46 PDT 2011,166,0,9.22,83105.94,521569749,-946671214,69.4,26 -Sun Sep 25 09:09:47 PDT 2011,165,0,8.745,83114.68,521569382,-946672450,69.4,26 -Sun Sep 25 09:09:48 PDT 2011,165,0,8.306,83122.98,521569045,-946673627,69.4,26 -Sun Sep 25 09:09:49 PDT 2011,164,0,7.683,83130.66,521568736,-946674717,69.4,26 -Sun Sep 25 09:09:50 PDT 2011,163,0,7.077,83137.74,521568459,-946675694,69.4,26 -Sun Sep 25 09:09:51 PDT 2011,163,0,6.327,83144.07,521568204,-946676547,69.4,26 -Sun Sep 25 09:09:52 PDT 2011,162,0,5.943,83150.01,521567947,-946677330,69.2,26 -Sun Sep 25 09:09:53 PDT 2011,162,0,5.159,83155.17,521567722,-946678004,69.0,26 -Sun Sep 25 09:09:54 PDT 2011,161,0,4.626,83159.79,521567521,-946678586,68.8,26 -Sun Sep 25 09:09:55 PDT 2011,159,0,4.426,83164.22,521567316,-946679159,68.6,26 -Sun Sep 25 09:09:56 PDT 2011,159,0,5.474,83169.7,521567113,-946679775,68.6,26 -Sun Sep 25 09:09:57 PDT 2011,158,0,5.783,83175.48,521566884,-946680496,68.4,26 -Sun Sep 25 09:09:58 PDT 2011,158,0,6.254,83181.74,521566636,-946681325,68.2,26 -Sun Sep 25 09:09:59 PDT 2011,159,70,6.786,83188.53,521566365,-946682257,68.2,26 -Sun Sep 25 09:10:00 PDT 2011,159,73,7.367,83195.89,521566076,-946683255,68.0,26 -Sun Sep 25 09:10:01 PDT 2011,158,77,7.683,83203.57,521565752,-946684348,68.0,26 -Sun Sep 25 09:10:02 PDT 2011,156,80,8.18,83211.75,521565421,-946685473,67.6,26 -Sun Sep 25 09:10:03 PDT 2011,156,85,8.537,83220.29,521565051,-946686679,67.4,26 -Sun Sep 25 09:10:04 PDT 2011,155,91,8.832,83229.11,521564659,-946687931,67.2,26 -Sun Sep 25 09:10:05 PDT 2011,155,88,9.496,83238.61,521564239,-946689242,67.0,26 -Sun Sep 25 09:10:06 PDT 2011,155,89,10.029,83248.64,521563802,-946690587,66.6,26 -Sun Sep 25 09:10:07 PDT 2011,155,91,10.418,83259.06,521563328,-946692005,66.2,26 -Sun Sep 25 09:10:08 PDT 2011,154,95,10.785,83269.84,521562830,-946693487,65.8,26 -Sun Sep 25 09:10:09 PDT 2011,155,96,11.149,83280.99,521562314,-946694994,65.4,26 -Sun Sep 25 09:10:10 PDT 2011,155,98,11.416,83292.4,521561776,-946696534,64.8,26 -Sun Sep 25 09:10:11 PDT 2011,155,101,11.539,83303.94,521561219,-946698138,64.4,26 -Sun Sep 25 09:10:12 PDT 2011,156,101,11.76,83315.7,521560663,-946699705,64.0,26 -Sun Sep 25 09:10:13 PDT 2011,157,104,11.923,83328.28,521560048,-946701403,63.6,26 -Sun Sep 25 09:10:14 PDT 2011,158,105,12.2,83340.79,521559440,-946703103,63.2,26 -Sun Sep 25 09:10:15 PDT 2011,159,105,12.34,83353.13,521558842,-946704790,62.6,26 -Sun Sep 25 09:10:16 PDT 2011,160,104,12.305,83365.44,521558280,-946706457,62.2,26 -Sun Sep 25 09:10:17 PDT 2011,161,104,12.235,83377.67,521557767,-946708127,61.8,26 -Sun Sep 25 09:10:18 PDT 2011,161,101,12.063,83389.73,521557284,-946709830,61.4,26 -Sun Sep 25 09:10:19 PDT 2011,162,99,11.831,83401.56,521556835,-946711481,61.0,26 -Sun Sep 25 09:10:20 PDT 2011,162,98,11.607,83413.22,521556389,-946713109,60.8,26 -Sun Sep 25 09:10:21 PDT 2011,163,96,11.391,83424.61,521555941,-946714688,60.6,26 -Sun Sep 25 09:10:22 PDT 2011,163,95,11.301,83435.85,521555494,-946716226,60.2,26 -Sun Sep 25 09:10:23 PDT 2011,162,105,11.126,83446.99,521555042,-946717727,60.0,26 -Sun Sep 25 09:10:24 PDT 2011,162,104,10.845,83457.83,521554586,-946719219,59.8,26 -Sun Sep 25 09:10:25 PDT 2011,163,106,10.79,83468.61,521554130,-946720713,59.6,26 -Sun Sep 25 09:10:26 PDT 2011,163,107,11.011,83479.62,521553678,-946722171,59.6,26 -Sun Sep 25 09:10:27 PDT 2011,163,108,11.126,83490.75,521553226,-946723669,59.4,26 -Sun Sep 25 09:10:28 PDT 2011,164,107,11.126,83501.81,521552785,-946725173,59.2,26 -Sun Sep 25 09:10:29 PDT 2011,165,106,10.983,83512.79,521552374,-946726699,59.2,26 -Sun Sep 25 09:10:30 PDT 2011,165,106,10.983,83523.78,521551982,-946728236,59.0,26 -Sun Sep 25 09:10:31 PDT 2011,166,104,10.905,83534.72,521551585,-946729787,59.0,26 -Sun Sep 25 09:10:32 PDT 2011,167,102,10.583,83545.31,521551213,-946731269,58.8,26 -Sun Sep 25 09:10:33 PDT 2011,168,113,10.583,83555.91,521550875,-946732773,58.8,26 -Sun Sep 25 09:10:34 PDT 2011,169,112,10.428,83566.34,521550589,-946734198,58.8,26 -Sun Sep 25 09:10:35 PDT 2011,169,111,10.303,83576.65,521550302,-946735671,59.0,26 -Sun Sep 25 09:10:36 PDT 2011,170,111,10.133,83586.83,521550009,-946737133,59.2,26 -Sun Sep 25 09:10:37 PDT 2011,171,109,10.328,83597.16,521549739,-946738553,59.2,26 -Sun Sep 25 09:10:38 PDT 2011,172,108,10.086,83607.26,521549471,-946739971,59.4,26 -Sun Sep 25 09:10:39 PDT 2011,173,108,10.039,83617.3,521549197,-946741399,59.8,26 -Sun Sep 25 09:10:40 PDT 2011,174,108,10.086,83627.38,521548951,-946742773,60.2,26 -Sun Sep 25 09:10:41 PDT 2011,175,110,10.039,83637.35,521548705,-946744152,60.4,26 -Sun Sep 25 09:10:42 PDT 2011,176,110,10.086,83647.44,521548454,-946745563,60.8,26 -Sun Sep 25 09:10:43 PDT 2011,176,110,10.133,83657.57,521548190,-946747023,61.0,26 -Sun Sep 25 09:10:44 PDT 2011,177,108,10.181,83667.75,521547918,-946748468,61.4,26 -Sun Sep 25 09:10:45 PDT 2011,178,107,10.039,83677.74,521547632,-946749876,61.8,26 -Sun Sep 25 09:10:46 PDT 2011,178,107,9.9,83687.64,521547344,-946751308,62.2,26 -Sun Sep 25 09:10:47 PDT 2011,178,107,9.821,83697.45,521547069,-946752689,62.6,26 -Sun Sep 25 09:10:48 PDT 2011,179,106,9.821,83707.27,521546814,-946754105,62.8,26 -Sun Sep 25 09:10:49 PDT 2011,180,106,9.867,83717.15,521546814,-946754105,63.4,26 -Sun Sep 25 09:10:50 PDT 2011,180,104,9.732,83726.9,521546328,-946756850,63.8,26 -Sun Sep 25 09:10:51 PDT 2011,180,103,9.558,83736.47,521546082,-946758228,64.2,26 -Sun Sep 25 09:10:52 PDT 2011,180,100,9.37,83745.87,521545788,-946759572,64.6,26 -Sun Sep 25 09:10:53 PDT 2011,181,98,9.111,83755.01,521545499,-946760870,64.8,26 -Sun Sep 25 09:10:54 PDT 2011,181,99,9.111,83764.12,521545241,-946762115,65.4,26 -Sun Sep 25 09:10:55 PDT 2011,181,99,9.072,83773.22,521544981,-946763397,65.8,26 -Sun Sep 25 09:10:56 PDT 2011,181,98,9.15,83782.36,521544728,-946764730,66.2,26 -Sun Sep 25 09:10:57 PDT 2011,182,96,9.111,83791.47,521544482,-946766047,66.6,26 -Sun Sep 25 09:10:58 PDT 2011,182,95,8.921,83800.4,521544223,-946767354,67.0,26 -Sun Sep 25 09:10:59 PDT 2011,182,91,8.704,83809.1,521543959,-946768644,67.2,26 -Sun Sep 25 09:11:00 PDT 2011,182,89,8.496,83817.54,521543729,-946769864,67.8,26 -Sun Sep 25 09:11:01 PDT 2011,181,91,8.172,83825.69,521543518,-946771011,68.2,26 -Sun Sep 25 09:11:02 PDT 2011,181,93,7.843,83833.51,521543316,-946772103,68.6,26 -Sun Sep 25 09:11:03 PDT 2011,181,98,7.729,83841.22,521543111,-946773189,69.0,26 -Sun Sep 25 09:11:04 PDT 2011,181,99,7.614,83848.84,521542931,-946774220,69.2,26 -Sun Sep 25 09:11:05 PDT 2011,181,98,7.534,83856.38,521542742,-946775277,69.6,26 -Sun Sep 25 09:11:06 PDT 2011,181,97,7.43,83863.8,521542541,-946776259,70.0,26 -Sun Sep 25 09:11:07 PDT 2011,181,94,7.303,83871.11,521542327,-946777308,70.4,26 -Sun Sep 25 09:11:08 PDT 2011,181,91,7.157,83878.27,521542130,-946778281,70.8,26 -Sun Sep 25 09:11:09 PDT 2011,180,90,6.994,83885.26,521541918,-946779250,71.2,26 -Sun Sep 25 09:11:10 PDT 2011,180,98,6.86,83892.15,521541694,-946780207,71.6,26 -Sun Sep 25 09:11:11 PDT 2011,180,98,6.882,83899.05,521541454,-946781226,71.8,26 -Sun Sep 25 09:11:12 PDT 2011,180,95,6.882,83905.97,521541221,-946782182,72.4,26 -Sun Sep 25 09:11:13 PDT 2011,180,92,6.668,83912.65,521540989,-946783124,72.8,26 -Sun Sep 25 09:11:14 PDT 2011,180,91,6.546,83919.2,521540756,-946784025,73.2,26 -Sun Sep 25 09:11:15 PDT 2011,180,87,6.315,83925.51,521540633,-946784787,73.6,26 -Sun Sep 25 09:11:16 PDT 2011,179,87,6.152,83931.66,521540577,-946785422,73.8,26 -Sun Sep 25 09:11:17 PDT 2011,179,87,5.883,83937.53,521540484,-946786069,74.2,26 -Sun Sep 25 09:11:18 PDT 2011,179,87,5.25,83942.76,521540364,-946786687,74.4,26 -Sun Sep 25 09:11:19 PDT 2011,179,0,4.473,83947.19,521540234,-946787278,74.6,26 -Sun Sep 25 09:11:20 PDT 2011,178,0,3.991,83951.18,521540001,-946787827,74.8,26 -Sun Sep 25 09:11:21 PDT 2011,178,0,3.143,83954.32,521539785,-946788254,75.0,26 -Sun Sep 25 09:11:22 PDT 2011,178,44,2.674,83956.99,521539634,-946788550,75.2,26 -Sun Sep 25 09:11:23 PDT 2011,178,49,3.2,83960.2,521539450,-946788881,75.6,26 -Sun Sep 25 09:11:24 PDT 2011,178,49,3.491,83963.69,521539289,-946789257,76.0,26 -Sun Sep 25 09:11:25 PDT 2011,178,54,3.728,83967.41,521539158,-946789758,76.2,26 -Sun Sep 25 09:11:26 PDT 2011,178,59,4.121,83971.55,521539014,-946790341,76.6,26 -Sun Sep 25 09:11:27 PDT 2011,178,67,4.427,83975.98,521538877,-946790972,76.8,26 -Sun Sep 25 09:11:28 PDT 2011,178,73,4.793,83980.81,521538727,-946791661,77.0,26 -Sun Sep 25 09:11:29 PDT 2011,178,82,5.263,83986.08,521538587,-946792412,77.2,26 -Sun Sep 25 09:11:30 PDT 2011,178,88,6.17,83992.26,521538408,-946793226,77.4,26 -Sun Sep 25 09:11:31 PDT 2011,179,50,6.607,83998.86,521538220,-946794119,77.6,26 -Sun Sep 25 09:11:32 PDT 2011,179,89,6.353,84005.22,521537998,-946795088,77.8,26 -Sun Sep 25 09:11:33 PDT 2011,179,85,6.26,84011.47,521537748,-946796038,78.0,26 -Sun Sep 25 09:11:34 PDT 2011,179,90,6.526,84017.96,521537478,-946797028,78.0,26 -Sun Sep 25 09:11:35 PDT 2011,179,92,6.773,84024.73,521537104,-946797888,78.2,26 -Sun Sep 25 09:11:36 PDT 2011,180,96,7.11,84031.84,521536798,-946798859,78.2,26 -Sun Sep 25 09:11:37 PDT 2011,180,97,7.279,84039.11,521536559,-946799901,78.4,26 -Sun Sep 25 09:11:38 PDT 2011,180,101,7.456,84046.54,521536373,-946801057,78.4,26 -Sun Sep 25 09:11:39 PDT 2011,180,95,7.724,84054.25,521536196,-946802188,78.6,26 -Sun Sep 25 09:11:40 PDT 2011,180,95,7.808,84062.16,521536042,-946803387,78.6,26 -Sun Sep 25 09:11:41 PDT 2011,180,96,7.953,84070.05,521535903,-946804448,78.6,26 -Sun Sep 25 09:11:42 PDT 2011,181,97,7.982,84079.02,521535707,-946805733,78.6,26 -Sun Sep 25 09:11:43 PDT 2011,180,98,8.133,84086.17,521535538,-946806754,78.8,26 -Sun Sep 25 09:11:44 PDT 2011,180,97,8.102,84094.29,521535307,-946807976,79.0,26 -Sun Sep 25 09:11:45 PDT 2011,180,98,8.195,84102.55,521535034,-946809200,79.2,26 -Sun Sep 25 09:11:46 PDT 2011,180,89,8.227,84110.81,521534721,-946810440,79.4,26 -Sun Sep 25 09:11:47 PDT 2011,180,89,8.29,84118.98,521534432,-946811663,79.6,27 -Sun Sep 25 09:11:48 PDT 2011,180,50,8.29,84127.27,521534164,-946812863,79.8,27 -Sun Sep 25 09:11:49 PDT 2011,180,88,8.133,84135.41,521533916,-946814052,80.0,27 -Sun Sep 25 09:11:50 PDT 2011,179,90,8.216,84143.62,521533683,-946815206,80.0,27 -Sun Sep 25 09:11:51 PDT 2011,179,91,8.328,84151.91,521533458,-946816369,80.2,27 -Sun Sep 25 09:11:52 PDT 2011,179,91,8.442,84160.37,521533225,-946817543,80.2,27 -Sun Sep 25 09:11:53 PDT 2011,179,91,8.322,84168.67,521532982,-946818741,80.4,27 -Sun Sep 25 09:11:54 PDT 2011,179,37,8.227,84176.91,521532717,-946819932,80.4,27 -Sun Sep 25 09:11:55 PDT 2011,178,89,8.18,84185.1,521532460,-946821083,80.6,27 -Sun Sep 25 09:11:56 PDT 2011,178,90,8.265,84193.33,521532204,-946822222,80.6,27 -Sun Sep 25 09:11:57 PDT 2011,177,90,8.29,84201.61,521531942,-946823400,80.6,27 -Sun Sep 25 09:11:58 PDT 2011,177,91,8.29,84209.9,521531675,-946824613,80.8,27 -Sun Sep 25 09:11:59 PDT 2011,177,92,8.431,84218.38,521531413,-946825837,80.8,27 -Sun Sep 25 09:12:00 PDT 2011,176,93,8.504,84226.88,521531144,-946827077,80.8,27 -Sun Sep 25 09:12:01 PDT 2011,176,93,8.567,84235.46,521530871,-946828312,80.8,27 -Sun Sep 25 09:12:02 PDT 2011,176,93,8.567,84243.98,521530592,-946829586,80.8,27 -Sun Sep 25 09:12:03 PDT 2011,177,0,8.567,84252.53,521530317,-946830858,81.0,27 -Sun Sep 25 09:12:04 PDT 2011,176,0,8.567,84261.1,521530058,-946832092,81.0,27 -Sun Sep 25 09:12:05 PDT 2011,176,0,8.149,84269.88,521529805,-946833344,81.0,27 -Sun Sep 25 09:12:06 PDT 2011,176,0,8.028,84278.0,521529571,-946834502,81.0,27 -Sun Sep 25 09:12:07 PDT 2011,176,0,7.909,84286.16,521529346,-946835671,81.0,27 -Sun Sep 25 09:12:08 PDT 2011,175,0,7.699,84293.6,521529153,-946836738,81.0,27 -Sun Sep 25 09:12:09 PDT 2011,175,0,7.584,84301.32,521528947,-946837846,81.0,27 -Sun Sep 25 09:12:10 PDT 2011,174,0,7.476,84308.88,521528739,-946838926,81.0,27 -Sun Sep 25 09:12:11 PDT 2011,174,0,7.585,84316.51,521528525,-946840017,81.0,27 -Sun Sep 25 09:12:12 PDT 2011,173,0,7.682,84324.19,521528299,-946841110,81.2,27 -Sun Sep 25 09:12:13 PDT 2011,173,0,7.698,84331.54,521528096,-946842162,81.2,27 -Sun Sep 25 09:12:14 PDT 2011,172,0,7.965,84339.47,521527886,-946843300,81.2,27 -Sun Sep 25 09:12:15 PDT 2011,172,0,7.877,84347.25,521527687,-946844419,81.4,27 -Sun Sep 25 09:12:16 PDT 2011,171,0,7.872,84355.13,521527493,-946845556,81.6,27 -Sun Sep 25 09:12:17 PDT 2011,170,0,7.872,84363.26,521527292,-946846726,81.8,27 -Sun Sep 25 09:12:18 PDT 2011,169,0,7.902,84371.45,521527072,-946847900,81.8,27 -Sun Sep 25 09:12:19 PDT 2011,169,0,7.94,84379.35,521526844,-946849028,82.0,27 -Sun Sep 25 09:12:20 PDT 2011,168,0,8.049,84387.79,521526609,-946850234,82.2,27 -Sun Sep 25 09:12:21 PDT 2011,168,0,8.347,84395.66,521526380,-946851356,82.2,27 -Sun Sep 25 09:12:22 PDT 2011,168,0,8.377,84404.06,521526139,-946852554,82.4,27 -Sun Sep 25 09:12:23 PDT 2011,168,0,8.525,84412.62,521525898,-946853777,82.4,27 -Sun Sep 25 09:12:24 PDT 2011,167,0,8.562,84421.09,521525665,-946854989,82.6,27 -Sun Sep 25 09:12:25 PDT 2011,167,0,8.589,84429.85,521525427,-946856244,82.6,27 -Sun Sep 25 09:12:26 PDT 2011,167,94,8.62,84438.58,521525172,-946857487,82.6,27 -Sun Sep 25 09:12:27 PDT 2011,167,92,8.67,84447.26,521524914,-946858688,82.8,27 -Sun Sep 25 09:12:28 PDT 2011,166,92,8.567,84455.8,521524648,-946859906,82.8,27 -Sun Sep 25 09:12:29 PDT 2011,166,92,8.533,84464.34,521524365,-946861157,82.8,27 -Sun Sep 25 09:12:30 PDT 2011,165,94,8.636,84472.99,521524076,-946862331,82.8,27 -Sun Sep 25 09:12:31 PDT 2011,166,94,8.682,84481.65,521523786,-946863559,83.0,27 -Sun Sep 25 09:12:32 PDT 2011,166,94,8.67,84490.36,521523501,-946864766,83.0,27 -Sun Sep 25 09:12:33 PDT 2011,166,93,8.67,84499.03,521523219,-946866004,83.0,27 -Sun Sep 25 09:12:34 PDT 2011,167,93,8.624,84507.66,521522945,-946867229,83.2,27 -Sun Sep 25 09:12:35 PDT 2011,167,92,8.624,84516.27,521522670,-946868435,83.4,27 -Sun Sep 25 09:12:36 PDT 2011,166,92,8.477,84524.74,521522392,-946869609,83.6,27 -Sun Sep 25 09:12:37 PDT 2011,166,92,8.477,84533.22,521522137,-946870725,83.8,27 -Sun Sep 25 09:12:38 PDT 2011,166,0,7.625,84540.84,521521913,-946871688,84.0,27 -Sun Sep 25 09:12:39 PDT 2011,166,0,6.947,84547.78,521521709,-946872593,84.2,27 -Sun Sep 25 09:12:40 PDT 2011,165,0,6.947,84554.69,521521553,-946873347,84.2,27 -Sun Sep 25 09:12:41 PDT 2011,165,0,6.947,84561.63,521521429,-946873956,84.4,27 -Sun Sep 25 09:12:42 PDT 2011,164,0,6.947,84568.58,521521333,-946874410,84.6,27 -Sun Sep 25 09:12:43 PDT 2011,163,0,0.0,84568.58,521521255,-946874728,84.6,27 -Sun Sep 25 09:12:44 PDT 2011,163,0,0.0,84568.58,521521207,-946874957,84.8,27 -Sun Sep 25 09:12:45 PDT 2011,162,0,2.009,84570.52,521521182,-946875104,84.8,27 -Sun Sep 25 09:12:46 PDT 2011,162,0,1.522,84572.29,521521172,-946875294,84.8,27 -Sun Sep 25 09:12:47 PDT 2011,162,0,1.514,84572.29,521521156,-946875434,85.0,27 -Sun Sep 25 09:12:48 PDT 2011,162,0,2.736,84575.02,521521082,-946875717,85.0,27 -Sun Sep 25 09:12:49 PDT 2011,162,31,3.111,84578.82,521521026,-946876113,85.0,27 -Sun Sep 25 09:12:50 PDT 2011,162,39,3.576,84581.61,521520948,-946876484,85.0,27 -Sun Sep 25 09:12:51 PDT 2011,163,45,4.022,84585.63,521520843,-946877031,85.2,27 -Sun Sep 25 09:12:52 PDT 2011,163,50,4.261,84590.79,521520689,-946877778,85.2,27 -Sun Sep 25 09:12:53 PDT 2011,164,54,4.76,84594.56,521520578,-946878341,85.2,27 -Sun Sep 25 09:12:54 PDT 2011,164,54,5.159,84599.71,521520406,-946879036,85.2,27 -Sun Sep 25 09:12:55 PDT 2011,165,54,5.159,84604.87,521520249,-946879764,85.2,27 -Sun Sep 25 09:12:56 PDT 2011,165,0,5.159,84610.02,521520107,-946880560,85.2,27 -Sun Sep 25 09:12:57 PDT 2011,165,0,5.159,84615.18,521519951,-946881459,85.2,27 -Sun Sep 25 09:12:58 PDT 2011,165,0,6.665,84621.88,521519776,-946882421,85.4,27 -Sun Sep 25 09:12:59 PDT 2011,165,0,6.648,84629.13,521519591,-946883465,85.4,27 -Sun Sep 25 09:13:00 PDT 2011,166,0,6.831,84636.48,521519369,-946884510,85.4,27 -Sun Sep 25 09:13:01 PDT 2011,165,0,6.536,84643.78,521519162,-946885552,85.4,27 -Sun Sep 25 09:13:02 PDT 2011,166,0,7.503,84651.15,521518956,-946886605,85.4,27 -Sun Sep 25 09:13:03 PDT 2011,166,0,7.762,84658.91,521518723,-946887710,85.4,27 -Sun Sep 25 09:13:04 PDT 2011,165,37,7.6,84666.89,521518468,-946888837,85.4,27 -Sun Sep 25 09:13:05 PDT 2011,164,84,5.159,84672.05,521518195,-946889989,85.4,27 -Sun Sep 25 09:13:06 PDT 2011,164,83,5.159,84677.2,521517908,-946891170,85.4,27 -Sun Sep 25 09:13:07 PDT 2011,163,83,7.785,84684.98,521517630,-946892322,85.4,27 -Sun Sep 25 09:13:08 PDT 2011,163,77,7.87,84692.85,521517358,-946893475,85.4,27 -Sun Sep 25 09:13:09 PDT 2011,163,78,7.957,84700.8,521517089,-946894645,85.4,27 -Sun Sep 25 09:13:10 PDT 2011,162,79,8.137,84708.95,521516831,-946895799,85.4,27 -Sun Sep 25 09:13:11 PDT 2011,163,79,8.153,84717.1,521516568,-946896974,85.4,27 -Sun Sep 25 09:13:12 PDT 2011,163,80,8.358,84725.46,521516330,-946898107,85.4,27 -Sun Sep 25 09:13:13 PDT 2011,162,81,8.358,84733.82,521516095,-946899263,85.4,27 -Sun Sep 25 09:13:14 PDT 2011,162,80,8.294,84742.12,521515874,-946900426,85.4,27 -Sun Sep 25 09:13:15 PDT 2011,162,84,8.326,84750.45,521515664,-946901579,85.4,27 -Sun Sep 25 09:13:16 PDT 2011,161,90,8.326,84758.77,521515444,-946902747,85.4,27 -Sun Sep 25 09:13:17 PDT 2011,160,89,8.391,84767.16,521515193,-946903905,85.4,27 -Sun Sep 25 09:13:18 PDT 2011,160,89,8.334,84775.5,521514929,-946905077,85.4,27 -Sun Sep 25 09:13:19 PDT 2011,159,89,8.238,84783.73,521514644,-946906219,85.4,27 -Sun Sep 25 09:13:20 PDT 2011,159,88,8.207,84791.94,521514387,-946907308,85.4,27 -Sun Sep 25 09:13:21 PDT 2011,159,88,8.115,84800.05,521514113,-946908465,85.4,27 -Sun Sep 25 09:13:22 PDT 2011,159,88,8.145,84808.2,521513851,-946909573,85.4,27 -Sun Sep 25 09:13:23 PDT 2011,159,94,8.145,84816.35,521513623,-946910667,85.4,27 -Sun Sep 25 09:13:24 PDT 2011,159,96,8.145,84824.5,521513402,-946911804,85.4,27 -Sun Sep 25 09:13:25 PDT 2011,159,95,8.083,84832.59,521513178,-946912877,85.4,27 -Sun Sep 25 09:13:26 PDT 2011,159,85,7.878,84840.48,521512951,-946913972,85.4,27 -Sun Sep 25 09:13:27 PDT 2011,159,85,7.906,84848.37,521512700,-946915109,85.4,27 -Sun Sep 25 09:13:28 PDT 2011,159,92,7.965,84856.34,521512451,-946916219,85.4,27 -Sun Sep 25 09:13:29 PDT 2011,160,94,7.936,84864.27,521512218,-946917366,85.6,27 -Sun Sep 25 09:13:30 PDT 2011,160,95,7.906,84872.18,521512011,-946918499,85.8,27 -Sun Sep 25 09:13:31 PDT 2011,160,95,7.936,84880.12,521511795,-946919655,86.0,27 -Sun Sep 25 09:13:32 PDT 2011,160,94,7.895,84888.02,521511594,-946920773,86.2,27 -Sun Sep 25 09:13:33 PDT 2011,160,94,7.838,84895.85,521511391,-946921875,86.4,27 -Sun Sep 25 09:13:34 PDT 2011,160,94,7.895,84903.75,521511200,-946922980,86.4,27 -Sun Sep 25 09:13:35 PDT 2011,159,93,7.866,84911.62,521510988,-946924128,86.6,27 -Sun Sep 25 09:13:36 PDT 2011,159,96,7.781,84919.4,521510772,-946925250,86.6,27 -Sun Sep 25 09:13:37 PDT 2011,159,100,7.725,84927.12,521510539,-946926375,86.8,27 -Sun Sep 25 09:13:38 PDT 2011,159,99,7.643,84934.77,521510290,-946927484,86.8,27 -Sun Sep 25 09:13:39 PDT 2011,160,100,7.616,84942.38,521510034,-946928588,87.0,27 -Sun Sep 25 09:13:40 PDT 2011,160,102,7.753,84950.13,521509808,-946929732,87.2,27 -Sun Sep 25 09:13:41 PDT 2011,161,101,7.781,84957.91,521509607,-946930857,87.4,27 -Sun Sep 25 09:13:42 PDT 2011,161,101,7.698,84965.61,521509418,-946932004,87.6,27 -Sun Sep 25 09:13:43 PDT 2011,161,100,7.725,84973.34,521509231,-946933174,87.8,27 -Sun Sep 25 09:13:44 PDT 2011,161,99,7.616,84980.95,521509045,-946934288,88.0,27 -Sun Sep 25 09:13:45 PDT 2011,161,100,7.616,84988.57,521508848,-946935421,88.2,27 -Sun Sep 25 09:13:46 PDT 2011,162,99,7.618,84996.19,521508626,-946936511,88.4,27 -Sun Sep 25 09:13:47 PDT 2011,162,100,7.7,85005.7,521508339,-946937904,88.4,27 -Sun Sep 25 09:13:48 PDT 2011,163,98,7.727,85011.61,521508152,-946938732,88.6,27 -Sun Sep 25 09:13:49 PDT 2011,163,91,7.645,85019.36,521507898,-946939853,88.6,27 -Sun Sep 25 09:13:50 PDT 2011,164,92,7.7,85027.07,521507657,-946940918,88.8,27 -Sun Sep 25 09:13:51 PDT 2011,164,91,7.755,85034.71,521507452,-946941916,88.8,27 -Sun Sep 25 09:13:52 PDT 2011,164,91,7.727,85042.44,521507249,-946942931,89.0,27 -Sun Sep 25 09:13:53 PDT 2011,165,92,7.7,85050.14,521507015,-946943970,89.0,27 -Sun Sep 25 09:13:54 PDT 2011,165,91,7.839,85057.98,521506742,-946944956,89.0,27 -Sun Sep 25 09:13:55 PDT 2011,165,91,7.645,85065.62,521506427,-946945935,89.2,27 -Sun Sep 25 09:13:56 PDT 2011,165,93,7.618,85073.24,521506112,-946946984,89.2,27 -Sun Sep 25 09:13:57 PDT 2011,165,94,7.954,85081.2,521505873,-946948014,89.4,27 -Sun Sep 25 09:13:58 PDT 2011,166,93,8.195,85089.39,521505662,-946949075,89.6,27 -Sun Sep 25 09:13:59 PDT 2011,166,92,7.783,85097.18,521505448,-946950215,90.0,27 -Sun Sep 25 09:14:00 PDT 2011,167,93,7.755,85104.93,521505238,-946951344,90.0,27 -Sun Sep 25 09:14:01 PDT 2011,167,94,7.87,85112.8,521505004,-946952496,90.2,27 -Sun Sep 25 09:14:02 PDT 2011,167,94,7.928,85120.73,521504744,-946953673,90.4,27 -Sun Sep 25 09:14:03 PDT 2011,168,93,7.899,85128.62,521504525,-946954834,90.6,27 -Sun Sep 25 09:14:04 PDT 2011,168,93,7.87,85136.49,521504329,-946955932,90.6,27 -Sun Sep 25 09:14:05 PDT 2011,169,93,7.757,85144.25,521504139,-946957059,91.0,27 -Sun Sep 25 09:14:06 PDT 2011,169,92,7.785,85152.03,521503990,-946958162,91.4,27 -Sun Sep 25 09:14:07 PDT 2011,169,91,7.729,85159.76,521503845,-946959266,91.6,27 -Sun Sep 25 09:14:08 PDT 2011,170,91,7.593,85167.35,521503645,-946960364,91.8,27 -Sun Sep 25 09:14:09 PDT 2011,170,91,7.674,85175.02,521503438,-946961458,92.0,27 -Sun Sep 25 09:14:10 PDT 2011,171,90,7.566,85182.59,521503249,-946962486,92.2,27 -Sun Sep 25 09:14:11 PDT 2011,171,87,7.462,85190.05,521503069,-946963525,92.6,27 -Sun Sep 25 09:14:12 PDT 2011,172,88,7.285,85197.33,521502880,-946964607,93.0,27 -Sun Sep 25 09:14:13 PDT 2011,172,88,7.36,85204.69,521502720,-946965642,93.2,27 -Sun Sep 25 09:14:14 PDT 2011,173,87,7.36,85212.05,521502543,-946966702,93.6,27 -Sun Sep 25 09:14:15 PDT 2011,173,86,7.188,85219.23,521502324,-946967785,93.8,27 -Sun Sep 25 09:14:16 PDT 2011,173,86,7.236,85226.47,521502082,-946968871,94.0,27 -Sun Sep 25 09:14:17 PDT 2011,173,86,7.62,85234.09,521501831,-946969959,94.2,27 -Sun Sep 25 09:14:18 PDT 2011,173,22,7.647,85241.73,521501570,-946971081,94.4,27 -Sun Sep 25 09:14:19 PDT 2011,173,95,7.928,85249.66,521501317,-946972221,94.6,27 -Sun Sep 25 09:14:20 PDT 2011,173,95,8.199,85257.86,521501078,-946973401,94.8,27 -Sun Sep 25 09:14:21 PDT 2011,174,95,8.294,85266.16,521500830,-946974603,94.8,27 -Sun Sep 25 09:14:22 PDT 2011,173,0,8.358,85274.52,521500574,-946975771,95.0,27 -Sun Sep 25 09:14:23 PDT 2011,173,0,8.49,85283.01,521500314,-946977003,95.2,27 -Sun Sep 25 09:14:24 PDT 2011,173,0,8.591,85291.6,521500077,-946978198,95.2,27 -Sun Sep 25 09:14:25 PDT 2011,173,0,8.66,85300.26,521499833,-946979417,95.4,27 -Sun Sep 25 09:14:26 PDT 2011,173,0,8.66,85308.91,521499590,-946980636,95.4,27 -Sun Sep 25 09:14:27 PDT 2011,172,0,8.626,85317.54,521499337,-946981872,95.4,27 -Sun Sep 25 09:14:28 PDT 2011,172,0,8.523,85326.06,521499074,-946983103,95.6,27 -Sun Sep 25 09:14:29 PDT 2011,171,0,8.457,85334.52,521498818,-946984314,95.6,27 -Sun Sep 25 09:14:30 PDT 2011,171,0,8.199,85342.71,521498596,-946985521,95.6,27 -Sun Sep 25 09:14:31 PDT 2011,170,0,8.358,85351.07,521498368,-946986702,95.6,27 -Sun Sep 25 09:14:32 PDT 2011,170,0,8.326,85359.41,521498154,-946987860,95.8,27 -Sun Sep 25 09:14:33 PDT 2011,169,0,8.262,85367.66,521497937,-946989035,95.8,27 -Sun Sep 25 09:14:34 PDT 2011,168,0,8.199,85375.85,521497716,-946990159,95.8,27 -Sun Sep 25 09:14:35 PDT 2011,166,0,7.928,85383.78,521497487,-946991314,95.8,27 -Sun Sep 25 09:14:36 PDT 2011,164,0,7.436,85391.22,521497270,-946992420,95.8,27 -Sun Sep 25 09:14:37 PDT 2011,161,0,7.222,85398.44,521497058,-946993480,95.8,27 -Sun Sep 25 09:14:38 PDT 2011,158,90,7.104,85405.54,521496857,-946994509,96.0,27 -Sun Sep 25 09:14:39 PDT 2011,157,87,7.151,85412.69,521496671,-946995501,96.0,27 -Sun Sep 25 09:14:40 PDT 2011,155,85,7.174,85419.86,521496477,-946996500,96.0,27 -Sun Sep 25 09:14:41 PDT 2011,154,91,7.222,85427.08,521496277,-946997516,96.0,27 -Sun Sep 25 09:14:42 PDT 2011,154,96,7.295,85434.38,521496078,-946998548,96.0,27 -Sun Sep 25 09:14:43 PDT 2011,154,97,7.42,85441.8,521495872,-946999599,96.0,27 -Sun Sep 25 09:14:44 PDT 2011,155,96,7.445,85449.24,521495662,-947000670,96.0,27 -Sun Sep 25 09:14:45 PDT 2011,156,96,7.445,85456.69,521495455,-947001747,96.0,27 -Sun Sep 25 09:14:46 PDT 2011,157,96,7.445,85464.13,521495256,-947002785,96.0,27 -Sun Sep 25 09:14:47 PDT 2011,157,97,7.42,85471.55,521495042,-947003850,96.0,27 -Sun Sep 25 09:14:48 PDT 2011,158,97,7.471,85479.02,521494826,-947004911,96.0,27 -Sun Sep 25 09:14:49 PDT 2011,158,97,7.471,85486.49,521494630,-947005962,96.0,27 -Sun Sep 25 09:14:50 PDT 2011,159,99,7.471,85493.96,521494416,-947007071,96.0,27 -Sun Sep 25 09:14:51 PDT 2011,159,101,7.589,85501.55,521494180,-947008184,96.0,27 -Sun Sep 25 09:14:52 PDT 2011,159,100,7.723,85509.27,521493928,-947009307,96.0,27 -Sun Sep 25 09:14:53 PDT 2011,160,100,7.669,85516.95,521493675,-947010426,96.0,27 -Sun Sep 25 09:14:54 PDT 2011,160,99,7.642,85524.59,521493451,-947011513,96.0,27 -Sun Sep 25 09:14:55 PDT 2011,161,98,7.509,85532.09,521493239,-947012549,96.0,27 -Sun Sep 25 09:14:56 PDT 2011,161,96,7.509,85539.6,521493031,-947013531,96.0,27 -Sun Sep 25 09:14:57 PDT 2011,162,95,7.356,85546.96,521492804,-947014519,96.4,27 -Sun Sep 25 09:14:58 PDT 2011,163,96,7.257,85554.22,521492548,-947015537,96.6,27 -Sun Sep 25 09:14:59 PDT 2011,163,99,6.998,85561.22,521492288,-947016576,96.6,27 -Sun Sep 25 09:15:00 PDT 2011,164,99,7.044,85568.27,521492055,-947017586,96.8,27 -Sun Sep 25 09:15:01 PDT 2011,165,93,6.931,85575.2,521491850,-947018540,97.0,27 -Sun Sep 25 09:15:02 PDT 2011,165,94,6.533,85581.73,521491661,-947019489,97.4,27 -Sun Sep 25 09:15:03 PDT 2011,165,89,6.887,85588.62,521491485,-947020424,97.6,27 -Sun Sep 25 09:15:04 PDT 2011,165,89,6.8,85595.41,521491306,-947021346,98.0,27 -Sun Sep 25 09:15:05 PDT 2011,166,90,6.909,85602.32,521491133,-947022269,98.2,27 -Sun Sep 25 09:15:06 PDT 2011,167,90,6.953,85609.27,521491018,-947023206,98.4,27 -Sun Sep 25 09:15:07 PDT 2011,169,90,6.909,85616.18,521490920,-947024063,98.6,27 -Sun Sep 25 09:15:08 PDT 2011,169,49,6.843,85623.02,521490799,-947024962,98.8,27 -Sun Sep 25 09:15:09 PDT 2011,170,87,7.021,85630.05,521490624,-947025832,99.2,27 -Sun Sep 25 09:15:10 PDT 2011,171,86,6.779,85636.83,521490420,-947026758,99.6,27 -Sun Sep 25 09:15:11 PDT 2011,172,86,6.593,85643.42,521490209,-947027693,100.0,27 -Sun Sep 25 09:15:12 PDT 2011,172,90,6.695,85650.12,521489994,-947028694,100.2,27 -Sun Sep 25 09:15:13 PDT 2011,172,88,6.909,85657.02,521489825,-947029633,100.6,27 -Sun Sep 25 09:15:14 PDT 2011,172,87,6.716,85663.74,521489649,-947030589,101.0,27 -Sun Sep 25 09:15:15 PDT 2011,173,89,6.674,85670.41,521489480,-947031475,101.4,27 -Sun Sep 25 09:15:16 PDT 2011,173,91,6.931,85677.34,521489273,-947032434,101.8,27 -Sun Sep 25 09:15:17 PDT 2011,173,92,6.998,85684.34,521489031,-947033421,102.0,27 -Sun Sep 25 09:15:18 PDT 2011,173,93,7.161,85691.51,521488742,-947034440,102.4,27 -Sun Sep 25 09:15:19 PDT 2011,173,94,7.208,85698.72,521488493,-947035383,102.6,27 -Sun Sep 25 09:15:20 PDT 2011,173,94,7.233,85705.95,521488319,-947036337,102.8,27 -Sun Sep 25 09:15:21 PDT 2011,173,94,7.257,85713.21,521488108,-947037320,103.0,27 -Sun Sep 25 09:15:22 PDT 2011,174,94,7.208,85720.42,521487920,-947038285,103.4,27 -Sun Sep 25 09:15:23 PDT 2011,174,95,7.208,85727.63,521487694,-947039378,103.8,27 -Sun Sep 25 09:15:24 PDT 2011,174,96,7.306,85734.94,521487446,-947040410,104.0,27 -Sun Sep 25 09:15:25 PDT 2011,174,96,7.406,85742.34,521487054,-947041356,104.4,27 -Sun Sep 25 09:15:26 PDT 2011,174,95,7.368,85749.71,521486703,-947042195,104.6,27 -Sun Sep 25 09:15:27 PDT 2011,174,98,7.306,85757.02,521486381,-947043039,104.8,27 -Sun Sep 25 09:15:28 PDT 2011,174,96,7.044,85764.06,521486073,-947043929,105.0,27 -Sun Sep 25 09:15:29 PDT 2011,175,96,6.8,85770.86,521485847,-947044878,105.2,27 -Sun Sep 25 09:15:30 PDT 2011,175,95,6.758,85777.62,521485702,-947045875,105.6,27 -Sun Sep 25 09:15:31 PDT 2011,175,96,6.758,85784.38,521485523,-947046892,106.0,27 -Sun Sep 25 09:15:32 PDT 2011,175,96,6.737,85791.11,521485325,-947047982,106.2,27 -Sun Sep 25 09:15:33 PDT 2011,176,99,6.8,85797.91,521485118,-947049065,106.4,27 -Sun Sep 25 09:15:34 PDT 2011,176,98,6.953,85804.86,521484935,-947050189,106.8,27 -Sun Sep 25 09:15:35 PDT 2011,177,97,6.909,85811.77,521484765,-947051310,107.2,27 -Sun Sep 25 09:15:36 PDT 2011,177,97,6.953,85818.72,521484626,-947052371,107.6,27 -Sun Sep 25 09:15:37 PDT 2011,177,97,6.909,85825.62,521484455,-947053478,107.8,27 -Sun Sep 25 09:15:38 PDT 2011,178,96,6.887,85832.52,521484274,-947054516,108.2,27 -Sun Sep 25 09:15:39 PDT 2011,178,96,6.843,85839.36,521484131,-947055433,108.4,27 -Sun Sep 25 09:15:40 PDT 2011,178,93,6.716,85846.08,521483996,-947056311,108.6,27 -Sun Sep 25 09:15:41 PDT 2011,178,93,6.61,85852.69,521483854,-947057171,109.0,27 -Sun Sep 25 09:15:42 PDT 2011,178,93,6.304,85858.99,521483826,-947057821,109.2,27 -Sun Sep 25 09:15:43 PDT 2011,178,0,6.109,85865.1,521483826,-947058365,109.6,27 -Sun Sep 25 09:15:44 PDT 2011,178,0,5.91,85871.01,521483760,-947059002,109.8,27 -Sun Sep 25 09:15:45 PDT 2011,177,0,5.753,85876.76,521483672,-947059667,110.2,27 -Sun Sep 25 09:15:46 PDT 2011,177,0,5.591,85882.35,521483493,-947060434,110.4,27 -Sun Sep 25 09:15:47 PDT 2011,177,0,4.988,85887.34,521483271,-947061250,110.6,27 -Sun Sep 25 09:15:48 PDT 2011,177,0,4.55,85891.88,521483111,-947061940,111.0,27 -Sun Sep 25 09:15:49 PDT 2011,176,0,3.904,85895.79,521482980,-947062555,111.2,27 -Sun Sep 25 09:15:50 PDT 2011,176,0,3.063,85898.85,521482901,-947063049,111.4,27 -Sun Sep 25 09:15:51 PDT 2011,175,0,2.652,85901.51,521482865,-947063436,111.4,27 -Sun Sep 25 09:15:52 PDT 2011,175,0,2.497,85904.63,521482819,-947063869,111.6,27 -Sun Sep 25 09:15:53 PDT 2011,174,0,2.168,85906.28,521482822,-947064092,111.8,27 -Sun Sep 25 09:15:54 PDT 2011,174,0,2.168,85908.44,521482804,-947064303,111.8,27 -Sun Sep 25 09:15:55 PDT 2011,173,0,1.531,85909.96,521482777,-947064455,112.0,27 -Sun Sep 25 09:16:04 PDT 2011,170,0,1.634,85909.96,521482561,-947064782,112.6,27 -Sun Sep 25 09:16:05 PDT 2011,170,48,1.723,85911.71,521482504,-947065180,112.6,27 -Sun Sep 25 09:16:06 PDT 2011,170,48,3.724,85915.38,521482447,-947065681,112.6,27 -Sun Sep 25 09:16:07 PDT 2011,170,30,4.385,85920.7,521482285,-947066448,112.6,27 -Sun Sep 25 09:16:08 PDT 2011,169,48,4.647,85924.36,521482147,-947066989,112.8,27 -Sun Sep 25 09:16:09 PDT 2011,169,67,5.034,85929.39,521481981,-947067742,112.8,27 -Sun Sep 25 09:16:10 PDT 2011,169,73,5.166,85934.55,521481821,-947068525,112.8,27 -Sun Sep 25 09:16:11 PDT 2011,169,78,5.708,85940.27,521481644,-947069395,112.8,27 -Sun Sep 25 09:16:12 PDT 2011,168,83,6.415,85946.68,521481474,-947070285,112.8,27 -Sun Sep 25 09:16:13 PDT 2011,168,84,6.61,85953.29,521481296,-947071322,112.8,27 -Sun Sep 25 09:16:14 PDT 2011,168,83,6.971,85960.26,521481086,-947072384,112.8,27 -Sun Sep 25 09:16:15 PDT 2011,168,79,7.201,85967.46,521480883,-947073502,112.8,27 -Sun Sep 25 09:16:16 PDT 2011,168,81,7.525,85974.98,521480675,-947074621,112.8,27 -Sun Sep 25 09:16:17 PDT 2011,168,85,7.712,85982.7,521480454,-947075795,112.8,27 -Sun Sep 25 09:16:18 PDT 2011,168,86,7.966,85990.66,521480208,-947076998,112.8,27 -Sun Sep 25 09:16:19 PDT 2011,167,88,8.269,85998.93,521479938,-947078252,112.8,27 -Sun Sep 25 09:16:20 PDT 2011,166,87,8.333,86007.27,521479644,-947079478,112.8,27 -Sun Sep 25 09:16:21 PDT 2011,166,82,8.496,86015.76,521479362,-947080757,112.8,27 -Sun Sep 25 09:16:22 PDT 2011,164,84,8.734,86024.49,521479058,-947082072,113.0,27 -Sun Sep 25 09:16:23 PDT 2011,164,85,8.877,86033.37,521478750,-947083364,113.0,27 -Sun Sep 25 09:16:24 PDT 2011,164,92,8.995,86042.36,521478434,-947084675,113.0,27 -Sun Sep 25 09:16:25 PDT 2011,163,97,9.108,86051.47,521478121,-947085995,113.0,27 -Sun Sep 25 09:16:26 PDT 2011,163,88,9.185,86060.66,521477811,-947087341,113.0,27 -Sun Sep 25 09:16:27 PDT 2011,163,90,9.303,86069.96,521477538,-947088666,113.0,27 -Sun Sep 25 09:16:28 PDT 2011,163,91,9.424,86079.38,521477255,-947090077,113.0,27 -Sun Sep 25 09:16:29 PDT 2011,164,92,9.527,86088.91,521476977,-947091479,113.0,27 -Sun Sep 25 09:16:30 PDT 2011,164,91,9.59,86098.51,521476704,-947092860,113.0,27 -Sun Sep 25 09:16:31 PDT 2011,164,91,9.569,86108.07,521476440,-947094286,113.0,27 -Sun Sep 25 09:16:32 PDT 2011,163,91,9.632,86117.7,521476222,-947095678,113.0,27 -Sun Sep 25 09:16:33 PDT 2011,163,91,9.506,86127.21,521476010,-947097070,113.0,27 -Sun Sep 25 09:16:34 PDT 2011,162,90,9.465,86136.68,521475799,-947098425,113.0,27 -Sun Sep 25 09:16:35 PDT 2011,162,89,9.383,86146.06,521475550,-947099769,113.0,27 -Sun Sep 25 09:16:36 PDT 2011,162,89,9.343,86155.41,521475286,-947101051,113.0,27 -Sun Sep 25 09:16:37 PDT 2011,162,97,9.303,86164.71,521474996,-947102327,113.0,27 -Sun Sep 25 09:16:38 PDT 2011,161,99,9.383,86174.09,521474706,-947103600,113.0,27 -Sun Sep 25 09:16:39 PDT 2011,161,88,9.263,86183.36,521474435,-947104858,113.0,27 -Sun Sep 25 09:16:40 PDT 2011,161,88,9.303,86192.66,521474168,-947106152,113.0,27 -Sun Sep 25 09:16:41 PDT 2011,161,87,8.995,86201.66,521473920,-947107437,113.0,27 -Sun Sep 25 09:16:42 PDT 2011,161,87,8.995,86210.65,521473668,-947108719,113.0,27 -Sun Sep 25 09:16:43 PDT 2011,161,86,9.07,86219.72,521473425,-947109975,113.0,27 -Sun Sep 25 09:16:44 PDT 2011,162,86,9.033,86228.75,521473153,-947111234,113.0,27 -Sun Sep 25 09:16:45 PDT 2011,162,86,9.033,86237.78,521472874,-947112475,113.0,27 -Sun Sep 25 09:16:46 PDT 2011,162,86,9.108,86246.89,521472577,-947113723,113.0,27 -Sun Sep 25 09:16:47 PDT 2011,163,26,8.885,86255.77,521472304,-947114982,113.0,27 -Sun Sep 25 09:16:48 PDT 2011,163,26,8.813,86264.59,521472040,-947116227,113.0,27 -Sun Sep 25 09:16:49 PDT 2011,164,26,9.02,86273.61,521471776,-947117432,113.0,27 -Sun Sep 25 09:16:50 PDT 2011,164,26,8.909,86282.52,521471497,-947118687,113.0,27 -Sun Sep 25 09:16:51 PDT 2011,163,0,8.946,86291.46,521471231,-947119897,113.0,27 -Sun Sep 25 09:16:52 PDT 2011,163,0,8.695,86300.16,521470937,-947121130,113.0,27 -Sun Sep 25 09:16:53 PDT 2011,163,0,8.765,86308.92,521470652,-947122360,113.0,27 -Sun Sep 25 09:16:54 PDT 2011,163,0,8.73,86317.65,521470390,-947123544,113.0,27 -Sun Sep 25 09:16:55 PDT 2011,163,0,8.695,86326.34,521470126,-947124744,113.0,27 -Sun Sep 25 09:16:56 PDT 2011,162,85,8.695,86335.04,521469889,-947125955,113.0,27 -Sun Sep 25 09:16:57 PDT 2011,162,89,9.29,86344.33,521469659,-947127255,113.0,27 -Sun Sep 25 09:16:58 PDT 2011,163,89,9.836,86354.16,521469421,-947128622,113.0,27 -Sun Sep 25 09:16:59 PDT 2011,163,94,9.576,86363.74,521469170,-947130022,113.0,27 -Sun Sep 25 09:17:00 PDT 2011,163,94,10.018,86373.76,521468904,-947131458,113.0,27 -Sun Sep 25 09:17:01 PDT 2011,163,89,9.988,86383.74,521468638,-947132875,113.0,27 -Sun Sep 25 09:17:02 PDT 2011,163,89,9.851,86393.59,521468361,-947134298,113.0,27 -Sun Sep 25 09:17:03 PDT 2011,163,89,9.546,86403.14,521468072,-947135676,113.0,27 -Sun Sep 25 09:17:04 PDT 2011,162,0,9.463,86412.6,521467775,-947137042,113.0,27 -Sun Sep 25 09:17:05 PDT 2011,161,0,9.463,86422.06,521467468,-947138368,112.8,27 -Sun Sep 25 09:17:06 PDT 2011,160,0,9.34,86431.41,521467135,-947139656,112.6,27 -Sun Sep 25 09:17:07 PDT 2011,159,0,9.027,86440.43,521466789,-947140923,112.4,27 -Sun Sep 25 09:17:08 PDT 2011,157,0,8.878,86449.3,521466472,-947142144,112.2,27 -Sun Sep 25 09:17:09 PDT 2011,156,0,8.735,86458.04,521466167,-947143375,112.0,27 -Sun Sep 25 09:17:10 PDT 2011,155,0,8.595,86466.63,521465892,-947144587,112.0,27 -Sun Sep 25 09:17:11 PDT 2011,155,0,8.561,86475.2,521465648,-947145801,111.8,27 -Sun Sep 25 09:17:12 PDT 2011,154,76,8.494,86483.69,521465453,-947146946,111.8,27 -Sun Sep 25 09:17:13 PDT 2011,154,76,8.561,86492.25,521465236,-947148099,111.6,27 -Sun Sep 25 09:17:14 PDT 2011,153,76,8.428,86500.68,521465026,-947149196,111.6,27 -Sun Sep 25 09:17:15 PDT 2011,153,0,8.172,86508.85,521464836,-947150335,111.4,27 -Sun Sep 25 09:17:16 PDT 2011,152,0,7.874,86516.73,521464646,-947151398,111.4,27 -Sun Sep 25 09:17:17 PDT 2011,151,0,7.903,86524.63,521464469,-947152440,111.4,27 -Sun Sep 25 09:17:18 PDT 2011,150,0,7.543,86532.18,521464294,-947153577,111.2,27 -Sun Sep 25 09:17:19 PDT 2011,150,0,7.388,86539.57,521464143,-947154563,111.2,27 -Sun Sep 25 09:17:20 PDT 2011,149,0,7.252,86546.82,521463968,-947155566,111.2,27 -Sun Sep 25 09:17:21 PDT 2011,149,0,6.182,86553.0,521463818,-947156408,111.2,27 -Sun Sep 25 09:17:22 PDT 2011,148,0,5.288,86558.29,521463644,-947157080,111.0,27 -Sun Sep 25 09:17:23 PDT 2011,147,0,4.323,86562.69,521463519,-947157559,111.0,27 -Sun Sep 25 09:17:24 PDT 2011,147,0,3.798,86566.42,521463433,-947157870,111.0,27 -Sun Sep 25 09:17:25 PDT 2011,147,0,2.657,86569.08,521463358,-947158066,111.0,27 -Sun Sep 25 09:17:26 PDT 2011,147,0,2.271,86571.35,521463069,-947157971,111.0,27 -Sun Sep 25 09:17:27 PDT 2011,145,0,2.043,86573.4,521462779,-947157855,111.0,27 -Sun Sep 25 09:17:28 PDT 2011,143,0,2.043,86575.45,521462568,-947157800,111.0,27 -Sun Sep 25 09:17:29 PDT 2011,142,0,0.0,86575.45,521462427,-947157815,111.0,27 -Sun Sep 25 09:17:53 PDT 2011,143,0,1.598,86575.45,521461885,-947158134,110.8,27 -Sun Sep 25 09:17:54 PDT 2011,145,0,2.827,86578.34,521461772,-947158415,110.8,27 -Sun Sep 25 09:17:55 PDT 2011,146,0,2.759,86581.04,521461771,-947158755,110.8,27 -Sun Sep 25 09:17:56 PDT 2011,147,32,2.759,86584.41,521461701,-947159339,110.8,27 -Sun Sep 25 09:17:58 PDT 2011,148,44,3.732,86588.73,521461773,-947159973,110.8,27 -Sun Sep 25 09:17:58 PDT 2011,148,52,4.649,86591.6,521461786,-947160310,110.8,27 -Sun Sep 25 09:17:59 PDT 2011,149,52,4.948,86596.59,521461581,-947160887,110.8,27 -Sun Sep 25 09:18:00 PDT 2011,149,28,5.489,86602.03,521461290,-947161473,110.8,27 -Sun Sep 25 09:18:01 PDT 2011,149,61,5.186,86607.22,521461043,-947162055,110.8,27 -Sun Sep 25 09:18:02 PDT 2011,150,64,5.784,86613.0,521460846,-947162617,110.8,27 -Sun Sep 25 09:18:03 PDT 2011,151,67,6.094,86619.09,521460711,-947163306,110.8,27 -Sun Sep 25 09:18:04 PDT 2011,151,69,6.421,86625.52,521460645,-947164074,110.8,27 -Sun Sep 25 09:18:05 PDT 2011,152,69,6.598,86632.12,521460666,-947164789,110.8,27 -Sun Sep 25 09:18:06 PDT 2011,152,76,6.915,86639.04,521460568,-947165653,110.8,27 -Sun Sep 25 09:18:07 PDT 2011,152,81,6.7,86645.73,521460439,-947166610,110.8,27 -Sun Sep 25 09:18:08 PDT 2011,152,83,6.959,86652.7,521460296,-947167560,110.8,27 -Sun Sep 25 09:18:09 PDT 2011,151,84,7.097,86659.79,521460194,-947168675,110.8,27 -Sun Sep 25 09:18:10 PDT 2011,151,83,7.073,86666.86,521459997,-947169908,110.8,27 -Sun Sep 25 09:18:11 PDT 2011,150,83,6.982,86673.84,521459833,-947171024,110.8,27 -Sun Sep 25 09:18:12 PDT 2011,150,82,6.959,86680.8,521459618,-947172124,110.8,27 -Sun Sep 25 09:18:13 PDT 2011,150,82,6.871,86687.67,521459366,-947173216,110.8,27 -Sun Sep 25 09:18:14 PDT 2011,150,80,6.784,86694.45,521459051,-947174246,110.8,27 -Sun Sep 25 09:18:15 PDT 2011,150,80,6.679,86701.13,521458761,-947175259,110.8,27 -Sun Sep 25 09:18:16 PDT 2011,150,81,6.679,86707.81,521458494,-947176272,110.8,27 -Sun Sep 25 09:18:17 PDT 2011,150,82,6.893,86714.7,521458249,-947177290,110.8,27 -Sun Sep 25 09:18:18 PDT 2011,151,82,6.871,86721.57,521458017,-947178299,110.8,27 -Sun Sep 25 09:18:19 PDT 2011,151,84,6.982,86728.55,521457834,-947179391,110.8,27 -Sun Sep 25 09:18:20 PDT 2011,152,84,7.073,86735.62,521457674,-947180533,110.8,27 -Sun Sep 25 09:18:21 PDT 2011,152,84,7.05,86742.67,521457555,-947181580,110.8,27 -Sun Sep 25 09:18:22 PDT 2011,152,86,7.097,86749.77,521457445,-947182656,110.8,27 -Sun Sep 25 09:18:23 PDT 2011,153,87,7.203,86756.97,521457294,-947183787,110.8,27 -Sun Sep 25 09:18:24 PDT 2011,153,88,7.264,86764.23,521457121,-947184876,111.0,27 -Sun Sep 25 09:18:25 PDT 2011,154,89,7.363,86771.59,521456898,-947185910,111.2,27 -Sun Sep 25 09:18:26 PDT 2011,155,91,7.465,86779.06,521456487,-947186950,111.4,27 -Sun Sep 25 09:18:27 PDT 2011,156,90,7.623,86786.69,521456074,-947188104,111.6,27 -Sun Sep 25 09:18:28 PDT 2011,157,89,7.504,86794.2,521455656,-947189488,111.6,27 -Sun Sep 25 09:18:29 PDT 2011,157,90,7.543,86801.74,521455280,-947190932,111.8,27 -Sun Sep 25 09:18:30 PDT 2011,158,90,7.623,86809.37,521455063,-947192341,112.0,27 -Sun Sep 25 09:18:31 PDT 2011,158,92,7.678,86817.08,521454967,-947193702,112.0,27 -Sun Sep 25 09:18:32 PDT 2011,159,90,7.678,86824.73,521454872,-947194824,112.2,27 -Sun Sep 25 09:18:33 PDT 2011,159,92,7.789,86832.52,521454792,-947195816,112.2,27 -Sun Sep 25 09:18:34 PDT 2011,160,91,7.678,86840.2,521454656,-947196786,112.2,27 -Sun Sep 25 09:18:35 PDT 2011,161,91,7.705,86847.9,521454455,-947197742,112.4,28 -Sun Sep 25 09:18:36 PDT 2011,161,29,7.414,86855.31,521454247,-947198684,112.4,28 -Sun Sep 25 09:18:37 PDT 2011,161,83,7.215,86862.53,521454112,-947199590,112.4,28 -Sun Sep 25 09:18:38 PDT 2011,162,77,7.168,86869.7,521453944,-947200526,112.6,28 -Sun Sep 25 09:18:39 PDT 2011,162,83,7.144,86876.84,521453801,-947201410,112.8,28 -Sun Sep 25 09:18:40 PDT 2011,161,86,7.144,86883.98,521453621,-947202305,113.0,28 -Sun Sep 25 09:18:41 PDT 2011,161,84,7.168,86891.16,521453406,-947203152,113.2,28 -Sun Sep 25 09:18:42 PDT 2011,161,84,7.027,86898.18,521453156,-947204183,113.4,28 -Sun Sep 25 09:18:43 PDT 2011,161,84,7.027,86905.2,521452874,-947205211,113.6,28 -Sun Sep 25 09:18:44 PDT 2011,161,83,7.097,86912.3,521452572,-947206290,113.8,28 -Sun Sep 25 09:18:45 PDT 2011,161,83,7.215,86919.52,521452300,-947207323,113.8,28 -Sun Sep 25 09:18:46 PDT 2011,161,74,6.959,86926.48,521452080,-947208132,114.0,28 -Sun Sep 25 09:18:47 PDT 2011,161,74,6.937,86933.41,521451917,-947208871,114.0,28 -Sun Sep 25 09:18:48 PDT 2011,161,74,6.784,86940.2,521451781,-947209619,114.2,28 -Sun Sep 25 09:18:49 PDT 2011,161,0,6.518,86946.71,521451579,-947210418,114.2,28 -Sun Sep 25 09:18:50 PDT 2011,160,0,6.459,86953.2,521451349,-947211292,114.4,28 -Sun Sep 25 09:18:51 PDT 2011,160,72,6.659,86959.83,521451062,-947212287,114.4,28 -Sun Sep 25 09:18:52 PDT 2011,160,74,6.763,86966.59,521450797,-947213252,114.4,28 -Sun Sep 25 09:18:53 PDT 2011,160,75,6.937,86973.53,521450558,-947214257,114.6,28 -Sun Sep 25 09:18:54 PDT 2011,160,77,7.073,86980.6,521450339,-947215356,114.6,28 -Sun Sep 25 09:18:55 PDT 2011,160,78,7.191,86987.79,521450056,-947216564,114.6,28 -Sun Sep 25 09:18:56 PDT 2011,160,79,7.338,86995.12,521449794,-947217674,114.6,28 -Sun Sep 25 09:18:57 PDT 2011,160,81,7.363,87002.48,521449524,-947218753,114.8,28 -Sun Sep 25 09:18:58 PDT 2011,160,82,7.53,87010.02,521449291,-947219784,114.8,28 -Sun Sep 25 09:18:59 PDT 2011,159,82,7.623,87017.64,521449119,-947220763,114.8,28 -Sun Sep 25 09:19:00 PDT 2011,158,84,7.65,87025.29,521448993,-947221810,114.8,28 -Sun Sep 25 09:19:01 PDT 2011,158,84,7.733,87033.02,521448915,-947222816,114.8,28 -Sun Sep 25 09:19:02 PDT 2011,158,84,7.817,87040.84,521448837,-947223928,114.8,28 -Sun Sep 25 09:19:03 PDT 2011,157,84,7.903,87048.75,521448754,-947224921,114.8,28 -Sun Sep 25 09:19:04 PDT 2011,157,85,7.845,87056.59,521448605,-947226060,115.0,28 -Sun Sep 25 09:19:05 PDT 2011,156,87,8.05,87064.64,521448421,-947227137,115.0,28 -Sun Sep 25 09:19:06 PDT 2011,156,87,8.111,87072.75,521448201,-947228240,115.0,28 -Sun Sep 25 09:19:07 PDT 2011,156,88,8.08,87080.83,521447951,-947229433,115.0,28 -Sun Sep 25 09:19:08 PDT 2011,156,88,8.141,87088.97,521447683,-947230620,115.0,28 -Sun Sep 25 09:19:09 PDT 2011,157,87,8.141,87097.14,521447405,-947231852,115.0,28 -Sun Sep 25 09:19:10 PDT 2011,157,87,7.961,87105.07,521447111,-947233059,115.0,28 -Sun Sep 25 09:19:11 PDT 2011,157,87,7.903,87112.98,521446838,-947234199,115.0,28 -Sun Sep 25 09:19:12 PDT 2011,157,0,7.705,87120.68,521446564,-947235320,115.0,28 -Sun Sep 25 09:19:13 PDT 2011,157,81,7.543,87128.23,521446300,-947236469,115.0,28 -Sun Sep 25 09:19:14 PDT 2011,157,74,7.65,87135.88,521446020,-947237589,115.0,28 -Sun Sep 25 09:19:15 PDT 2011,157,74,7.705,87143.58,521445718,-947238765,115.0,28 -Sun Sep 25 09:19:16 PDT 2011,156,74,7.845,87151.42,521445383,-947240025,115.0,28 -Sun Sep 25 09:19:17 PDT 2011,157,0,7.733,87159.16,521445222,-947241164,115.0,28 -Sun Sep 25 09:19:18 PDT 2011,157,0,7.57,87166.73,521445058,-947242324,115.0,28 -Sun Sep 25 09:19:19 PDT 2011,157,0,7.168,87173.9,521444900,-947243627,115.0,28 -Sun Sep 25 09:19:20 PDT 2011,157,0,6.827,87180.73,521444808,-947244832,115.0,28 -Sun Sep 25 09:19:21 PDT 2011,157,0,6.7,87187.43,521444692,-947245900,115.0,28 -Sun Sep 25 09:19:22 PDT 2011,157,0,6.71,87194.14,521444450,-947246713,115.0,28 -Sun Sep 25 09:19:23 PDT 2011,156,0,6.383,87200.52,521444210,-947247485,115.0,28 -Sun Sep 25 09:19:24 PDT 2011,155,0,6.164,87206.69,521443883,-947248210,115.0,28 -Sun Sep 25 09:19:25 PDT 2011,155,0,6.009,87212.7,521443694,-947248954,115.0,28 -Sun Sep 25 09:19:26 PDT 2011,154,0,5.96,87218.66,521443518,-947249740,115.0,28 -Sun Sep 25 09:19:27 PDT 2011,154,0,5.784,87224.44,521443310,-947250543,115.0,28 -Sun Sep 25 09:19:28 PDT 2011,153,0,5.722,87230.17,521443008,-947251320,115.0,28 -Sun Sep 25 09:19:29 PDT 2011,152,0,5.648,87235.8,521442459,-947252077,115.0,28 -Sun Sep 25 09:19:30 PDT 2011,152,0,5.38,87241.19,521441911,-947252789,115.0,28 -Sun Sep 25 09:19:31 PDT 2011,148,0,5.314,87246.5,521441559,-947253504,115.0,28 -Sun Sep 25 09:19:32 PDT 2011,145,0,5.314,87251.81,521441275,-947254124,115.0,28 -Sun Sep 25 09:19:33 PDT 2011,143,0,4.28,87256.09,521441080,-947254613,115.0,28 -Sun Sep 25 09:19:34 PDT 2011,142,0,3.62,87259.71,521441048,-947254900,115.0,28 -Sun Sep 25 09:19:35 PDT 2011,141,0,3.186,87262.9,521441124,-947255048,115.0,28 -Sun Sep 25 09:19:36 PDT 2011,141,0,2.587,87265.48,521441235,-947255144,115.0,28 -Sun Sep 25 09:19:37 PDT 2011,141,0,2.587,87268.07,521441372,-947255165,115.0,28 -Sun Sep 25 09:19:38 PDT 2011,142,0,0.0,87268.07,521441502,-947255215,115.0,28 -Sun Sep 25 09:19:43 PDT 2011,144,0,0.0,87268.07,521441569,-947255118,115.0,28 -Sun Sep 25 09:19:44 PDT 2011,145,0,1.724,87269.84,521441679,-947255158,115.0,28 -Sun Sep 25 09:19:45 PDT 2011,145,0,2.266,87272.05,521441761,-947255275,115.0,28 -Sun Sep 25 09:19:46 PDT 2011,146,31,2.266,87274.79,521441789,-947255563,115.0,28 -Sun Sep 25 09:19:47 PDT 2011,146,39,2.266,87276.59,521441702,-947255896,115.0,28 -Sun Sep 25 09:19:48 PDT 2011,147,39,4.255,87280.83,521441499,-947256308,115.0,28 -Sun Sep 25 09:19:49 PDT 2011,148,48,5.149,87285.98,521441317,-947256825,115.0,28 -Sun Sep 25 09:19:50 PDT 2011,149,55,5.589,87291.56,521441164,-947257576,115.0,28 -Sun Sep 25 09:19:51 PDT 2011,149,66,6.29,87297.85,521441050,-947258536,115.0,28 -Sun Sep 25 09:19:52 PDT 2011,150,69,6.806,87304.66,521440801,-947259387,115.0,28 -Sun Sep 25 09:19:53 PDT 2011,150,72,7.24,87311.9,521440534,-947260280,115.0,28 -Sun Sep 25 09:19:54 PDT 2011,150,74,7.543,87319.45,521440248,-947261182,115.0,28 -Sun Sep 25 09:19:55 PDT 2011,150,74,7.932,87327.38,521439980,-947262180,115.0,28 -Sun Sep 25 09:19:56 PDT 2011,151,74,8.05,87335.42,521439783,-947263265,115.0,28 -Sun Sep 25 09:19:57 PDT 2011,152,0,7.845,87343.27,521439672,-947264440,115.0,28 -Sun Sep 25 09:19:58 PDT 2011,152,0,7.761,87351.02,521439514,-947265346,115.0,28 -Sun Sep 25 09:19:59 PDT 2011,152,0,7.747,87358.77,521439280,-947266368,115.0,28 -Sun Sep 25 09:20:00 PDT 2011,152,0,7.845,87366.7,521439057,-947267496,115.0,28 -Sun Sep 25 09:20:01 PDT 2011,151,0,8.05,87376.19,521438791,-947268957,115.0,28 -Sun Sep 25 09:20:03 PDT 2011,149,0,8.203,87386.05,521438483,-947270630,115.0,28 -Sun Sep 25 09:20:03 PDT 2011,149,0,8.172,87391.03,521438280,-947271571,115.0,28 -Sun Sep 25 09:20:04 PDT 2011,148,0,8.362,87399.38,521437978,-947272859,115.0,28 -Sun Sep 25 09:20:05 PDT 2011,147,0,8.172,87407.55,521437707,-947274034,115.0,28 -Sun Sep 25 09:20:06 PDT 2011,147,0,7.678,87415.26,521437474,-947275146,114.8,28 -Sun Sep 25 09:20:07 PDT 2011,146,0,5.618,87420.86,521437263,-947276035,114.6,28 -Sun Sep 25 09:20:08 PDT 2011,146,0,3.663,87424.52,521437178,-947276641,114.6,28 -Sun Sep 25 09:20:09 PDT 2011,146,0,2.302,87426.83,521437169,-947277178,114.4,28 -Sun Sep 25 09:20:10 PDT 2011,145,0,0.0,87426.83,521437228,-947277574,114.2,28 -Sun Sep 25 09:20:19 PDT 2011,147,0,0.0,87426.83,521437414,-947278302,113.4,28 -Sun Sep 25 09:20:20 PDT 2011,147,0,2.451,87429.33,521437499,-947278647,113.4,28 -Sun Sep 25 09:20:21 PDT 2011,147,34,2.451,87431.73,521437631,-947279040,113.4,28 -Sun Sep 25 09:20:22 PDT 2011,147,44,2.451,87434.69,521437895,-947279527,113.4,28 -Sun Sep 25 09:20:23 PDT 2011,147,44,4.805,87438.49,521438014,-947280000,113.4,28 -Sun Sep 25 09:20:24 PDT 2011,147,53,5.677,87444.17,521438108,-947280550,113.2,28 -Sun Sep 25 09:20:25 PDT 2011,147,69,6.659,87450.84,521438094,-947281378,113.2,28 -Sun Sep 25 09:20:26 PDT 2011,148,74,7.313,87458.14,521438004,-947282302,113.2,28 -Sun Sep 25 09:20:27 PDT 2011,148,78,8.02,87466.16,521437832,-947283534,113.2,28 -Sun Sep 25 09:20:28 PDT 2011,149,88,8.595,87474.76,521437630,-947284850,113.2,28 -Sun Sep 25 09:20:29 PDT 2011,150,90,9.065,87483.82,521437416,-947286236,113.2,28 -Sun Sep 25 09:20:30 PDT 2011,151,91,9.299,87493.12,521437188,-947287519,113.2,28 -Sun Sep 25 09:20:31 PDT 2011,151,94,9.463,87502.58,521436806,-947288909,113.2,28 -Sun Sep 25 09:20:32 PDT 2011,152,94,9.675,87512.25,521436405,-947290279,113.2,28 -Sun Sep 25 09:20:33 PDT 2011,153,94,9.851,87522.1,521436794,-947292889,113.2,28 -Sun Sep 25 09:20:34 PDT 2011,153,85,9.988,87532.11,521436408,-947294191,113.2,28 -Sun Sep 25 09:20:35 PDT 2011,153,88,10.035,87542.12,521436062,-947295601,113.2,28 -Sun Sep 25 09:20:36 PDT 2011,153,89,10.323,87552.45,521435726,-947297059,113.0,28 -Sun Sep 25 09:20:37 PDT 2011,153,89,10.473,87562.92,521435338,-947298633,113.0,28 -Sun Sep 25 09:20:38 PDT 2011,154,89,10.473,87573.4,521434903,-947300623,113.0,28 -Sun Sep 25 09:20:39 PDT 2011,153,0,10.323,87583.72,521434588,-947302031,112.8,28 -Sun Sep 25 09:20:40 PDT 2011,152,101,10.274,87593.99,521434205,-947303640,112.6,28 -Sun Sep 25 09:20:41 PDT 2011,152,101,10.524,87604.52,521433843,-947305191,112.4,28 -Sun Sep 25 09:20:42 PDT 2011,153,90,10.473,87614.99,521433537,-947306655,112.4,28 -Sun Sep 25 09:20:43 PDT 2011,153,90,10.753,87625.74,521433245,-947308078,112.2,28 -Sun Sep 25 09:20:44 PDT 2011,153,88,10.622,87636.38,521432885,-947309661,112.0,28 -Sun Sep 25 09:20:45 PDT 2011,153,86,10.42,87646.78,521432536,-947311151,112.0,28 -Sun Sep 25 09:20:46 PDT 2011,153,96,10.273,87659.48,521431957,-947312953,111.8,28 -Sun Sep 25 09:20:48 PDT 2011,154,93,10.038,87674.39,521431299,-947315039,111.8,28 -Sun Sep 25 09:20:48 PDT 2011,154,93,9.946,87677.16,521431126,-947315268,111.6,28 -Sun Sep 25 09:20:49 PDT 2011,155,91,9.769,87686.92,521430721,-947316613,111.6,28 -Sun Sep 25 09:20:50 PDT 2011,156,90,9.682,87696.6,521430416,-947317981,111.6,28 -Sun Sep 25 09:20:51 PDT 2011,156,89,9.351,87705.95,521430260,-947319471,111.4,28 -Sun Sep 25 09:20:52 PDT 2011,157,95,8.931,87714.88,521430126,-947321065,111.4,28 -Sun Sep 25 09:20:53 PDT 2011,157,92,8.823,87723.7,521429957,-947322529,111.4,28 -Sun Sep 25 09:20:54 PDT 2011,158,90,8.581,87732.28,521429774,-947323912,111.4,28 -Sun Sep 25 09:20:55 PDT 2011,159,93,8.467,87740.75,521429548,-947325184,111.2,28 -Sun Sep 25 09:20:56 PDT 2011,159,95,8.245,87748.99,521429335,-947326425,111.2,28 -Sun Sep 25 09:20:57 PDT 2011,160,94,8.094,87757.09,521429156,-947327689,111.2,28 -Sun Sep 25 09:20:58 PDT 2011,161,92,8.005,87765.09,521428972,-947328915,111.2,28 -Sun Sep 25 09:20:59 PDT 2011,161,91,7.862,87773.82,521428787,-947330187,111.4,28 -Sun Sep 25 09:21:00 PDT 2011,162,89,7.752,87780.72,521428603,-947331165,111.6,28 -Sun Sep 25 09:21:01 PDT 2011,162,88,7.617,87788.34,521428394,-947332172,111.6,28 -Sun Sep 25 09:21:02 PDT 2011,162,92,7.539,87795.88,521428192,-947333260,111.8,28 -Sun Sep 25 09:21:03 PDT 2011,162,95,7.463,87803.35,521428005,-947334328,112.0,28 -Sun Sep 25 09:21:04 PDT 2011,162,94,7.437,87810.77,521427804,-947335377,112.0,28 -Sun Sep 25 09:21:05 PDT 2011,162,92,7.266,87818.04,521427585,-947336410,112.2,28 -Sun Sep 25 09:21:06 PDT 2011,163,88,7.033,87825.07,521427322,-947337461,112.2,28 -Sun Sep 25 09:21:07 PDT 2011,163,87,6.901,87831.98,521427059,-947338462,112.4,28 -Sun Sep 25 09:21:08 PDT 2011,163,85,6.753,87838.73,521426787,-947339402,112.4,28 -Sun Sep 25 09:21:09 PDT 2011,163,36,6.437,87845.16,521426529,-947340252,112.4,28 -Sun Sep 25 09:21:10 PDT 2011,163,75,5.945,87851.11,521426288,-947341076,112.8,28 -Sun Sep 25 09:21:11 PDT 2011,164,73,5.804,87856.91,521426086,-947341836,113.0,28 -Sun Sep 25 09:21:12 PDT 2011,163,72,5.714,87862.62,521425911,-947342574,113.2,28 -Sun Sep 25 09:21:13 PDT 2011,163,68,5.555,87868.18,521425760,-947343294,113.4,28 -Sun Sep 25 09:21:14 PDT 2011,163,67,5.314,87873.49,521425609,-947344002,113.6,28 -Sun Sep 25 09:21:15 PDT 2011,163,67,5.251,87878.74,521425456,-947344697,113.8,28 -Sun Sep 25 09:21:16 PDT 2011,162,67,5.047,87883.79,521425285,-947345336,113.8,28 -Sun Sep 25 09:21:17 PDT 2011,162,0,4.576,87888.37,521425137,-947345917,114.2,28 -Sun Sep 25 09:21:18 PDT 2011,162,0,3.995,87892.36,521425008,-947346436,114.4,28 -Sun Sep 25 09:21:19 PDT 2011,162,57,3.816,87896.17,521424870,-947346910,114.8,28 -Sun Sep 25 09:21:20 PDT 2011,162,63,4.743,87900.91,521424677,-947347388,115.0,28 -Sun Sep 25 09:21:21 PDT 2011,162,66,5.012,87905.93,521424435,-947347948,115.2,28 -Sun Sep 25 09:21:22 PDT 2011,162,66,5.289,87911.23,521424209,-947348571,115.4,28 -Sun Sep 25 09:21:23 PDT 2011,162,66,5.314,87916.54,521424019,-947349241,115.6,28 -Sun Sep 25 09:21:24 PDT 2011,162,0,4.945,87921.48,521423876,-947349869,115.8,28 -Sun Sep 25 09:21:25 PDT 2011,162,0,4.529,87926.02,521423801,-947350435,115.8,28 -Sun Sep 25 09:21:26 PDT 2011,163,0,4.024,87930.04,521423777,-947350918,116.0,28 -Sun Sep 25 09:21:27 PDT 2011,162,0,3.598,87933.64,521423777,-947351279,116.2,28 -Sun Sep 25 09:21:28 PDT 2011,162,0,2.641,87936.28,521423786,-947351545,116.2,28 -Sun Sep 25 09:21:29 PDT 2011,162,0,2.046,87938.33,521423810,-947351732,116.4,28 -Sun Sep 25 09:21:30 PDT 2011,162,0,2.046,87940.38,521423854,-947351845,116.6,28 -Sun Sep 25 09:21:31 PDT 2011,162,0,1.267,87941.64,521423899,-947351889,117.0,28 -Sun Sep 25 09:21:53 PDT 2011,153,0,0.0,87941.64,521423464,-947352137,119.2,28 -Sun Sep 25 09:21:54 PDT 2011,153,39,2.838,87944.54,521423104,-947352077,119.2,28 -Sun Sep 25 09:21:55 PDT 2011,153,39,4.039,87948.49,521422585,-947351910,119.2,28 -Sun Sep 25 09:21:56 PDT 2011,152,24,4.683,87953.73,521421916,-947351652,119.2,28 -Sun Sep 25 09:21:57 PDT 2011,152,66,4.614,87957.8,521421331,-947351418,119.2,28 -Sun Sep 25 09:21:58 PDT 2011,152,66,5.555,87963.35,521420696,-947351133,119.4,28 -Sun Sep 25 09:21:59 PDT 2011,152,66,5.774,87969.12,521420091,-947350866,119.4,28 -Sun Sep 25 09:22:00 PDT 2011,151,69,5.473,87974.6,521419479,-947350636,119.4,28 -Sun Sep 25 09:22:01 PDT 2011,151,74,6.093,87980.69,521418840,-947350380,119.4,28 -Sun Sep 25 09:22:02 PDT 2011,151,80,6.643,87987.33,521418149,-947350127,119.4,28 -Sun Sep 25 09:22:03 PDT 2011,151,88,7.184,87994.52,521417434,-947349778,119.4,28 -Sun Sep 25 09:22:04 PDT 2011,152,89,7.605,88002.12,521416677,-947349390,119.4,28 -Sun Sep 25 09:22:05 PDT 2011,152,88,7.905,88010.15,521415864,-947348985,119.4,28 -Sun Sep 25 09:22:06 PDT 2011,154,94,8.516,88018.84,521414989,-947348627,119.4,28 -Sun Sep 25 09:22:08 PDT 2011,156,96,9.306,88031.15,521413801,-947348130,119.4,28 -Sun Sep 25 09:22:08 PDT 2011,156,97,9.114,88037.02,521413211,-947347918,119.4,28 -Sun Sep 25 09:22:09 PDT 2011,158,97,9.19,88046.18,521412241,-947347580,119.4,28 -Sun Sep 25 09:22:10 PDT 2011,159,98,9.228,88055.41,521411258,-947347234,119.4,28 -Sun Sep 25 09:22:11 PDT 2011,160,98,9.267,88064.67,521410275,-947346885,119.4,28 -Sun Sep 25 09:22:12 PDT 2011,161,98,9.346,88074.02,521409302,-947346515,119.4,28 -Sun Sep 25 09:22:13 PDT 2011,161,98,9.346,88083.36,521408285,-947346201,119.4,28 -Sun Sep 25 09:22:14 PDT 2011,162,98,9.267,88092.62,521407253,-947345904,119.4,28 -Sun Sep 25 09:22:15 PDT 2011,162,98,9.306,88101.93,521406213,-947345641,119.4,28 -Sun Sep 25 09:22:16 PDT 2011,162,97,9.306,88111.23,521405233,-947345371,119.4,28 -Sun Sep 25 09:22:17 PDT 2011,162,95,9.228,88120.46,521404259,-947345028,119.4,28 -Sun Sep 25 09:22:18 PDT 2011,162,94,9.002,88129.46,521403352,-947344668,119.4,28 -Sun Sep 25 09:22:19 PDT 2011,162,94,8.893,88138.35,521402470,-947344300,119.4,28 -Sun Sep 25 09:22:20 PDT 2011,162,94,9.028,88147.38,521401573,-947343906,119.4,28 -Sun Sep 25 09:22:21 PDT 2011,162,97,9.065,88156.45,521400649,-947343499,119.4,28 -Sun Sep 25 09:22:22 PDT 2011,162,95,9.14,88165.59,521399734,-947343150,119.4,28 -Sun Sep 25 09:22:23 PDT 2011,162,93,8.992,88174.58,521398833,-947342806,119.4,28 -Sun Sep 25 09:22:24 PDT 2011,162,93,8.884,88183.46,521397874,-947342440,119.4,28 -Sun Sep 25 09:22:25 PDT 2011,162,92,8.848,88192.31,521396973,-947342138,119.4,28 -Sun Sep 25 09:22:26 PDT 2011,162,92,8.778,88201.09,521396086,-947341859,119.4,28 -Sun Sep 25 09:22:27 PDT 2011,163,90,8.813,88209.91,521395222,-947341563,119.4,28 -Sun Sep 25 09:22:28 PDT 2011,163,89,8.509,88218.41,521394375,-947341211,119.4,28 -Sun Sep 25 09:22:29 PDT 2011,163,88,8.477,88226.92,521393532,-947340856,119.4,28 -Sun Sep 25 09:22:30 PDT 2011,163,88,8.509,88235.4,521392674,-947340491,119.4,28 -Sun Sep 25 09:22:31 PDT 2011,164,89,8.477,88243.88,521391827,-947340152,119.4,28 -Sun Sep 25 09:22:32 PDT 2011,164,91,8.445,88252.32,521390939,-947339827,119.4,28 -Sun Sep 25 09:22:33 PDT 2011,164,95,8.935,88261.26,521390060,-947339523,119.4,28 -Sun Sep 25 09:22:34 PDT 2011,165,96,9.044,88270.3,521389151,-947339166,119.4,28 -Sun Sep 25 09:22:35 PDT 2011,165,97,9.31,88279.62,521388222,-947338757,119.4,28 -Sun Sep 25 09:22:36 PDT 2011,165,90,9.469,88289.09,521387295,-947338328,119.4,28 -Sun Sep 25 09:22:37 PDT 2011,166,91,9.719,88298.8,521386362,-947337904,119.4,28 -Sun Sep 25 09:22:38 PDT 2011,166,93,9.848,88308.66,521385387,-947337486,119.4,28 -Sun Sep 25 09:22:39 PDT 2011,166,94,9.981,88318.64,521384397,-947337069,119.4,28 -Sun Sep 25 09:22:40 PDT 2011,166,94,10.211,88328.85,521383408,-947336654,119.4,28 -Sun Sep 25 09:22:41 PDT 2011,166,86,10.403,88339.26,521382360,-947336200,119.4,28 -Sun Sep 25 09:22:42 PDT 2011,166,86,10.552,88349.81,521381311,-947335728,119.4,28 -Sun Sep 25 09:22:44 PDT 2011,165,0,10.502,88367.14,521379564,-947334891,119.2,28 -Sun Sep 25 09:22:44 PDT 2011,165,0,10.552,88370.84,521379181,-947334685,119.0,28 -Sun Sep 25 09:22:45 PDT 2011,164,0,10.602,88381.44,521378137,-947334212,118.8,28 -Sun Sep 25 09:22:46 PDT 2011,163,89,10.502,88391.94,521377040,-947333787,118.6,28 -Sun Sep 25 09:22:47 PDT 2011,163,90,10.756,88402.7,521375993,-947333388,118.4,28 -Sun Sep 25 09:22:48 PDT 2011,163,92,10.942,88413.64,521374898,-947333004,118.4,28 -Sun Sep 25 09:22:49 PDT 2011,163,92,11.191,88424.83,521373763,-947332595,118.2,28 -Sun Sep 25 09:22:50 PDT 2011,163,94,11.248,88436.08,521372628,-947332154,117.8,28 -Sun Sep 25 09:22:51 PDT 2011,163,94,11.422,88447.5,521371477,-947331674,117.6,28 -Sun Sep 25 09:22:52 PDT 2011,163,94,11.422,88458.92,521370365,-947331197,117.2,28 -Sun Sep 25 09:22:53 PDT 2011,163,94,11.451,88470.38,521369201,-947330684,117.0,28 -Sun Sep 25 09:22:54 PDT 2011,163,94,11.334,88481.71,521368036,-947330218,116.8,28 -Sun Sep 25 09:22:55 PDT 2011,163,93,11.363,88493.07,521366861,-947329782,116.6,28 -Sun Sep 25 09:22:56 PDT 2011,163,93,11.191,88504.26,521365764,-947329378,116.4,28 -Sun Sep 25 09:22:57 PDT 2011,163,106,11.305,88515.56,521364619,-947328949,116.2,28 -Sun Sep 25 09:22:58 PDT 2011,163,94,11.342,88526.91,521363504,-947328555,115.8,28 -Sun Sep 25 09:22:59 PDT 2011,163,94,11.313,88538.22,521362389,-947328133,115.6,28 -Sun Sep 25 09:23:00 PDT 2011,163,94,11.284,88549.5,521361224,-947327687,115.2,28 -Sun Sep 25 09:23:01 PDT 2011,163,94,11.401,88560.9,521360087,-947327265,115.0,28 -Sun Sep 25 09:23:02 PDT 2011,164,94,11.401,88572.34,521358938,-947326835,114.8,28 -Sun Sep 25 09:23:03 PDT 2011,164,94,11.342,88583.64,521357791,-947326388,114.6,28 -Sun Sep 25 09:23:04 PDT 2011,165,94,11.342,88594.98,521356648,-947325949,114.4,28 -Sun Sep 25 09:23:05 PDT 2011,165,94,11.313,88606.3,521355511,-947325514,114.2,28 -Sun Sep 25 09:23:06 PDT 2011,164,94,11.284,88617.58,521354386,-947325100,114.0,28 -Sun Sep 25 09:23:07 PDT 2011,165,94,11.284,88628.86,521353269,-947324696,113.6,28 -Sun Sep 25 09:23:08 PDT 2011,165,93,11.243,88640.1,521352151,-947324287,113.4,28 -Sun Sep 25 09:23:09 PDT 2011,164,92,11.157,88651.26,521351060,-947323888,113.0,28 -Sun Sep 25 09:23:10 PDT 2011,164,92,11.073,88662.33,521349939,-947323453,112.8,28 -Sun Sep 25 09:23:11 PDT 2011,164,91,10.963,88673.29,521348836,-947323026,112.6,28 -Sun Sep 25 09:23:12 PDT 2011,164,103,10.909,88684.2,521347745,-947322612,112.4,28 -Sun Sep 25 09:23:13 PDT 2011,164,90,10.909,88695.1,521346660,-947322199,112.2,28 -Sun Sep 25 09:23:14 PDT 2011,165,89,10.802,88705.91,521345554,-947321777,112.0,28 -Sun Sep 25 09:23:15 PDT 2011,165,89,10.749,88716.66,521344473,-947321369,111.8,28 -Sun Sep 25 09:23:16 PDT 2011,165,89,10.419,88727.08,521343438,-947320968,111.8,28 -Sun Sep 25 09:23:17 PDT 2011,165,19,10.155,88737.23,521342422,-947320575,111.6,28 -Sun Sep 25 09:23:18 PDT 2011,164,92,9.894,88747.12,521341439,-947320197,111.4,28 -Sun Sep 25 09:23:19 PDT 2011,164,94,9.984,88757.11,521340462,-947319801,111.4,28 -Sun Sep 25 09:23:20 PDT 2011,164,93,9.894,88767.0,521339471,-947319407,111.4,28 -Sun Sep 25 09:23:21 PDT 2011,164,94,9.894,88776.89,521338477,-947319015,111.2,28 -Sun Sep 25 09:23:22 PDT 2011,163,94,9.849,88786.74,521337512,-947318638,111.2,28 -Sun Sep 25 09:23:23 PDT 2011,163,94,9.961,88796.7,521336492,-947318225,111.0,28 -Sun Sep 25 09:23:24 PDT 2011,164,95,9.938,88806.64,521335495,-947317796,111.0,28 -Sun Sep 25 09:23:25 PDT 2011,164,96,10.075,88816.72,521334488,-947317352,111.0,28 -Sun Sep 25 09:23:26 PDT 2011,164,99,10.336,88827.05,521333473,-947316934,111.0,28 -Sun Sep 25 09:23:27 PDT 2011,165,101,10.611,88837.66,521332395,-947316508,110.8,28 -Sun Sep 25 09:23:28 PDT 2011,165,101,10.611,88848.27,521331322,-947316095,110.8,28 -Sun Sep 25 09:23:29 PDT 2011,165,102,10.762,88859.04,521330206,-947315663,110.8,28 -Sun Sep 25 09:23:31 PDT 2011,166,100,10.762,88873.62,521328734,-947315087,110.6,28 -Sun Sep 25 09:23:31 PDT 2011,166,100,10.606,88880.47,521328013,-947314789,110.4,28 -Sun Sep 25 09:23:32 PDT 2011,167,97,10.405,88890.88,521326947,-947314345,110.2,28 -Sun Sep 25 09:23:33 PDT 2011,167,104,9.979,88900.85,521325908,-947313854,110.0,28 -Sun Sep 25 09:23:34 PDT 2011,167,103,9.757,88910.61,521324894,-947313372,109.8,28 -Sun Sep 25 09:23:35 PDT 2011,167,100,9.587,88920.23,521323936,-947312927,109.8,28 -Sun Sep 25 09:23:36 PDT 2011,167,97,9.382,88929.58,521323000,-947312544,109.6,28 -Sun Sep 25 09:23:37 PDT 2011,168,99,9.072,88938.65,521322090,-947312208,109.4,28 -Sun Sep 25 09:23:38 PDT 2011,168,99,8.888,88947.54,521321210,-947311980,109.4,28 -Sun Sep 25 09:23:39 PDT 2011,168,99,8.888,88956.43,521320338,-947311791,109.2,28 -Sun Sep 25 09:23:40 PDT 2011,168,100,8.476,88964.91,521319499,-947311620,109.2,28 -Sun Sep 25 09:23:41 PDT 2011,168,105,8.222,88973.12,521318647,-947311404,109.2,28 -Sun Sep 25 09:23:42 PDT 2011,169,104,8.192,88981.32,521317822,-947311152,109.0,28 -Sun Sep 25 09:23:43 PDT 2011,169,104,8.13,88989.45,521317017,-947310856,109.0,28 -Sun Sep 25 09:23:44 PDT 2011,170,103,8.101,88997.55,521316201,-947310528,109.0,28 -Sun Sep 25 09:23:45 PDT 2011,170,104,8.071,89005.62,521315373,-947310192,108.8,28 -Sun Sep 25 09:23:46 PDT 2011,170,105,8.13,89013.76,521314541,-947309872,108.8,28 -Sun Sep 25 09:23:47 PDT 2011,171,104,8.161,89021.92,521313707,-947309573,108.8,28 -Sun Sep 25 09:23:48 PDT 2011,171,103,8.041,89029.96,521312876,-947309290,108.8,28 -Sun Sep 25 09:23:49 PDT 2011,172,101,7.954,89037.91,521312069,-947309082,108.8,28 -Sun Sep 25 09:23:50 PDT 2011,172,100,7.897,89045.81,521311260,-947308909,108.6,28 -Sun Sep 25 09:23:51 PDT 2011,172,100,7.785,89053.59,521310461,-947308800,108.6,28 -Sun Sep 25 09:23:52 PDT 2011,172,98,7.757,89061.35,521309683,-947308725,108.6,28 -Sun Sep 25 09:23:53 PDT 2011,172,100,7.676,89069.03,521308865,-947308611,108.8,28 -Sun Sep 25 09:23:54 PDT 2011,172,102,7.983,89077.02,521308056,-947308582,109.0,28 -Sun Sep 25 09:23:55 PDT 2011,173,99,7.813,89084.83,521307443,-947308995,109.2,28 -Sun Sep 25 09:23:56 PDT 2011,172,98,7.703,89092.53,521307067,-947309834,109.4,28 -Sun Sep 25 09:23:57 PDT 2011,172,99,7.649,89100.18,521306876,-947310972,109.4,28 -Sun Sep 25 09:23:58 PDT 2011,173,98,7.676,89107.86,521306786,-947312259,109.6,28 -Sun Sep 25 09:23:59 PDT 2011,173,97,7.596,89115.45,521306738,-947313495,109.6,28 -Sun Sep 25 09:24:00 PDT 2011,173,97,7.596,89123.05,521306597,-947314609,109.8,28 -Sun Sep 25 09:24:01 PDT 2011,173,96,7.57,89130.62,521306407,-947315624,109.8,28 -Sun Sep 25 09:24:02 PDT 2011,173,95,7.493,89138.11,521306177,-947316663,110.2,28 -Sun Sep 25 09:24:03 PDT 2011,172,97,7.518,89145.62,521305958,-947317726,110.4,28 -Sun Sep 25 09:24:04 PDT 2011,173,97,7.557,89153.18,521305732,-947318810,110.6,28 -Sun Sep 25 09:24:05 PDT 2011,173,96,7.544,89160.73,521305540,-947319839,110.8,28 -Sun Sep 25 09:24:06 PDT 2011,173,96,7.493,89168.22,521305364,-947320827,111.0,28 -Sun Sep 25 09:24:07 PDT 2011,173,96,7.493,89175.71,521305199,-947321916,111.2,28 -Sun Sep 25 09:24:08 PDT 2011,173,95,7.467,89183.2,521305000,-947322949,111.4,28 -Sun Sep 25 09:24:09 PDT 2011,174,95,7.392,89190.59,521304772,-947323979,111.4,28 -Sun Sep 25 09:24:10 PDT 2011,174,95,7.417,89198.1,521304603,-947325021,111.6,28 -Sun Sep 25 09:24:11 PDT 2011,174,95,7.417,89205.87,521304402,-947326098,111.8,28 -Sun Sep 25 09:24:12 PDT 2011,174,94,7.392,89212.8,521304233,-947327109,112.0,28 -Sun Sep 25 09:24:13 PDT 2011,174,95,7.174,89219.98,521304087,-947328134,112.4,28 -Sun Sep 25 09:24:14 PDT 2011,175,96,7.059,89227.04,521303887,-947329094,112.6,28 -Sun Sep 25 09:24:15 PDT 2011,174,94,6.882,89233.92,521303723,-947330041,112.8,28 -Sun Sep 25 09:24:16 PDT 2011,174,94,6.592,89240.52,521303644,-947330891,113.0,28 -Sun Sep 25 09:24:17 PDT 2011,174,23,5.643,89246.16,521303538,-947331607,113.2,28 -Sun Sep 25 09:24:18 PDT 2011,174,68,4.967,89251.12,521303451,-947332229,113.4,28 -Sun Sep 25 09:24:19 PDT 2011,174,73,4.878,89256.0,521303352,-947332832,113.4,28 -Sun Sep 25 09:24:20 PDT 2011,173,77,5.328,89261.33,521303233,-947333485,113.8,28 -Sun Sep 25 09:24:21 PDT 2011,173,83,5.544,89266.88,521303155,-947334247,114.2,28 -Sun Sep 25 09:24:22 PDT 2011,174,84,5.949,89272.82,521303097,-947335053,114.4,28 -Sun Sep 25 09:24:23 PDT 2011,174,86,6.098,89278.92,521303071,-947335958,114.6,28 -Sun Sep 25 09:24:24 PDT 2011,174,87,6.29,89285.21,521302978,-947336787,114.8,28 -Sun Sep 25 09:24:25 PDT 2011,175,87,6.201,89291.41,521302875,-947337620,115.0,28 -Sun Sep 25 09:24:26 PDT 2011,175,89,6.363,89297.77,521302717,-947338468,115.2,28 -Sun Sep 25 09:24:27 PDT 2011,175,82,6.237,89304.01,521302526,-947339264,115.4,28 -Sun Sep 25 09:24:28 PDT 2011,176,82,5.87,89309.88,521302336,-947340098,115.8,28 -Sun Sep 25 09:24:29 PDT 2011,176,82,5.823,89315.7,521302168,-947340973,116.0,28 -Sun Sep 25 09:24:30 PDT 2011,176,81,6.167,89321.86,521302023,-947341820,116.4,28 -Sun Sep 25 09:24:31 PDT 2011,176,79,5.702,89327.56,521301910,-947342607,116.6,28 -Sun Sep 25 09:24:32 PDT 2011,176,80,5.687,89333.25,521301847,-947343338,117.0,28 -Sun Sep 25 09:24:33 PDT 2011,177,81,5.808,89339.05,521301705,-947344085,117.4,28 -Sun Sep 25 09:24:34 PDT 2011,177,81,5.792,89344.84,521301547,-947344798,117.8,28 -Sun Sep 25 09:24:35 PDT 2011,176,80,5.792,89350.63,521301400,-947345591,118.2,28 -Sun Sep 25 09:24:36 PDT 2011,177,81,5.762,89356.4,521301156,-947346488,118.4,28 -Sun Sep 25 09:24:37 PDT 2011,177,80,5.777,89362.17,521300924,-947347376,118.8,28 -Sun Sep 25 09:24:38 PDT 2011,177,80,5.717,89367.89,521300723,-947348210,119.0,28 -Sun Sep 25 09:24:39 PDT 2011,176,79,5.717,89373.61,521300480,-947349073,119.4,28 -Sun Sep 25 09:24:40 PDT 2011,177,79,5.687,89379.3,521300287,-947349898,119.8,28 -Sun Sep 25 09:24:41 PDT 2011,177,76,5.732,89385.03,521300147,-947350651,120.2,28 -Sun Sep 25 09:24:42 PDT 2011,176,76,5.315,89390.34,521299905,-947351468,120.4,28 -Sun Sep 25 09:24:43 PDT 2011,176,72,5.239,89395.59,521299685,-947352235,120.8,28 -Sun Sep 25 09:24:44 PDT 2011,176,73,5.117,89400.7,521299495,-947352954,121.0,28 -Sun Sep 25 09:24:45 PDT 2011,176,74,5.303,89406.01,521299270,-947353718,121.2,28 -Sun Sep 25 09:24:46 PDT 2011,177,72,5.315,89411.32,521299021,-947354509,121.4,28 -Sun Sep 25 09:24:47 PDT 2011,177,71,5.239,89416.56,521298824,-947355301,121.6,28 -Sun Sep 25 09:24:48 PDT 2011,176,71,4.944,89421.51,521298675,-947356030,121.8,28 -Sun Sep 25 09:24:49 PDT 2011,176,71,3.851,89425.36,521298546,-947356626,122.2,28 -Sun Sep 25 09:24:50 PDT 2011,176,0,2.723,89428.09,521298486,-947356938,122.6,28 -Sun Sep 25 09:24:51 PDT 2011,176,0,0.0,89428.09,521298493,-947357075,122.8,28 -Sun Sep 25 09:24:57 PDT 2011,174,0,0.946,89428.09,521298803,-947357131,124.0,28 -Sun Sep 25 09:24:58 PDT 2011,174,40,2.667,89430.8,521298826,-947357213,124.2,28 -Sun Sep 25 09:24:59 PDT 2011,173,50,3.177,89433.92,521298821,-947357351,124.4,28 -Sun Sep 25 09:25:00 PDT 2011,173,59,3.752,89438.1,521298516,-947357875,124.4,28 -Sun Sep 25 09:25:01 PDT 2011,173,67,4.435,89442.03,521298284,-947358419,124.6,28 -Sun Sep 25 09:25:02 PDT 2011,173,71,5.047,89447.08,521298048,-947359168,124.6,28 -Sun Sep 25 09:25:03 PDT 2011,173,73,5.328,89452.41,521297924,-947359989,124.8,28 -Sun Sep 25 09:25:04 PDT 2011,173,76,5.702,89458.11,521297795,-947360951,124.8,28 -Sun Sep 25 09:25:05 PDT 2011,173,80,6.167,89464.27,521297699,-947361784,124.8,28 -Sun Sep 25 09:25:06 PDT 2011,173,44,6.514,89470.79,521297402,-947362748,125.0,28 -Sun Sep 25 09:25:07 PDT 2011,173,80,6.115,89476.91,521297099,-947363673,125.0,28 -Sun Sep 25 09:25:08 PDT 2011,174,81,6.308,89483.21,521296849,-947364642,125.0,28 -Sun Sep 25 09:25:09 PDT 2011,174,83,6.457,89489.66,521296590,-947365669,125.0,28 -Sun Sep 25 09:25:10 PDT 2011,174,83,6.457,89496.12,521296415,-947366597,125.2,28 -Sun Sep 25 09:25:11 PDT 2011,174,86,6.734,89502.85,521296342,-947367577,125.4,28 -Sun Sep 25 09:25:12 PDT 2011,174,85,6.632,89509.48,521296261,-947368509,125.6,28 -Sun Sep 25 09:25:13 PDT 2011,174,85,6.652,89516.13,521296173,-947369397,125.8,28 -Sun Sep 25 09:25:14 PDT 2011,174,86,6.673,89522.81,521296072,-947370267,126.0,28 -Sun Sep 25 09:25:15 PDT 2011,173,87,6.755,89529.56,521295860,-947371218,126.2,28 -Sun Sep 25 09:25:16 PDT 2011,174,87,6.755,89536.32,521295595,-947372159,126.2,28 -Sun Sep 25 09:25:17 PDT 2011,174,87,6.818,89543.14,521295369,-947373106,126.4,28 -Sun Sep 25 09:25:18 PDT 2011,174,87,6.818,89549.96,521295133,-947374125,126.6,28 -Sun Sep 25 09:25:19 PDT 2011,174,89,6.818,89556.78,521294862,-947375138,126.6,28 -Sun Sep 25 09:25:20 PDT 2011,174,89,6.947,89563.73,521294551,-947376178,126.8,28 -Sun Sep 25 09:25:21 PDT 2011,174,92,6.882,89570.61,521294166,-947377223,126.8,28 -Sun Sep 25 09:25:22 PDT 2011,174,82,7.467,89578.08,521293700,-947378292,126.8,28 -Sun Sep 25 09:25:23 PDT 2011,174,84,7.954,89586.03,521293181,-947379392,127.0,28 -Sun Sep 25 09:25:24 PDT 2011,174,86,8.444,89594.48,521292712,-947380519,127.0,28 -Sun Sep 25 09:25:25 PDT 2011,174,89,9.302,89603.78,521292245,-947381734,127.0,28 -Sun Sep 25 09:25:26 PDT 2011,174,87,9.889,89613.67,521291783,-947383058,127.2,28 -Sun Sep 25 09:25:27 PDT 2011,174,85,10.555,89624.23,521291333,-947384529,127.2,28 -Sun Sep 25 09:25:28 PDT 2011,173,84,11.201,89635.43,521290834,-947386007,127.0,28 -Sun Sep 25 09:25:29 PDT 2011,173,76,11.616,89647.05,521290264,-947387580,126.8,28 -Sun Sep 25 09:25:30 PDT 2011,173,76,11.964,89659.01,521289646,-947389184,126.8,28 -Sun Sep 25 09:25:31 PDT 2011,173,78,12.265,89671.27,521288997,-947390821,126.6,28 -Sun Sep 25 09:25:32 PDT 2011,173,81,12.838,89684.11,521288339,-947392593,126.2,28 -Sun Sep 25 09:25:33 PDT 2011,174,107,13.552,89697.66,521287768,-947394469,125.8,28 -Sun Sep 25 09:25:34 PDT 2011,174,109,13.807,89711.47,521287404,-947396653,125.6,28 -Sun Sep 25 09:25:35 PDT 2011,173,109,13.983,89725.45,521286947,-947398736,125.0,28 -Sun Sep 25 09:25:36 PDT 2011,174,103,14.073,89739.52,521286580,-947400690,124.6,28 -Sun Sep 25 09:25:37 PDT 2011,174,101,13.939,89753.46,521286205,-947402717,124.2,28 -Sun Sep 25 09:25:38 PDT 2011,174,100,13.895,89767.36,521285829,-947404705,123.8,28 -Sun Sep 25 09:25:39 PDT 2011,174,100,13.764,89781.12,521285468,-947406663,123.4,28 -Sun Sep 25 09:25:40 PDT 2011,174,100,13.51,89794.63,521285102,-947408547,123.0,28 -Sun Sep 25 09:25:41 PDT 2011,175,100,10.977,89805.61,521284807,-947410191,122.6,28 -Sun Sep 25 09:25:42 PDT 2011,175,0,8.997,89814.61,521284461,-947411488,122.0,28 -Sun Sep 25 09:25:43 PDT 2011,174,0,8.476,89823.09,521283912,-947412382,121.8,28 -Sun Sep 25 09:25:44 PDT 2011,174,60,8.476,89831.56,521283200,-947412693,121.4,28 -Sun Sep 25 09:25:45 PDT 2011,173,67,8.101,89839.66,521282391,-947412498,121.0,28 -Sun Sep 25 09:25:46 PDT 2011,173,84,8.542,89848.2,521281382,-947411993,120.8,28 -Sun Sep 25 09:25:47 PDT 2011,173,97,8.852,89857.05,521280394,-947411354,120.6,28 -Sun Sep 25 09:25:48 PDT 2011,173,96,9.072,89866.12,521279398,-947410747,120.4,28 -Sun Sep 25 09:25:49 PDT 2011,173,96,9.034,89875.16,521278429,-947410211,120.2,28 -Sun Sep 25 09:25:50 PDT 2011,173,97,9.109,89884.27,521277507,-947409821,120.0,28 -Sun Sep 25 09:25:51 PDT 2011,173,97,9.109,89893.38,521276600,-947409439,119.8,28 -Sun Sep 25 09:25:52 PDT 2011,173,97,9.186,89902.56,521275712,-947409045,119.6,28 -Sun Sep 25 09:25:53 PDT 2011,173,100,9.224,89911.79,521274797,-947408621,119.6,28 -Sun Sep 25 09:25:54 PDT 2011,173,101,9.422,89921.21,521273854,-947408199,119.4,28 -Sun Sep 25 09:25:55 PDT 2011,173,101,9.504,89930.72,521272868,-947407772,119.2,28 -Sun Sep 25 09:25:56 PDT 2011,173,102,9.629,89940.35,521271867,-947407354,119.2,28 -Sun Sep 25 09:25:57 PDT 2011,173,103,9.714,89950.06,521270878,-947406962,119.2,28 -Sun Sep 25 09:25:58 PDT 2011,172,103,9.714,89959.77,521269885,-947406566,119.0,28 -Sun Sep 25 09:25:59 PDT 2011,172,103,9.714,89969.48,521268901,-947406168,118.8,28 -Sun Sep 25 09:26:00 PDT 2011,173,104,9.888,89979.38,521267914,-947405771,118.4,28 -Sun Sep 25 09:26:01 PDT 2011,173,101,9.844,89989.22,521266964,-947405374,118.2,28 -Sun Sep 25 09:26:02 PDT 2011,172,92,11.719,90000.94,521265987,-947404935,118.0,28 -Sun Sep 25 09:26:03 PDT 2011,173,99,9.932,90010.87,521265034,-947404471,117.8,28 -Sun Sep 25 09:26:04 PDT 2011,173,101,9.63,90020.5,521264089,-947403976,117.6,28 -Sun Sep 25 09:26:05 PDT 2011,173,97,9.425,90029.92,521263208,-947403453,117.4,28 -Sun Sep 25 09:26:06 PDT 2011,173,102,9.077,90039.0,521262310,-947402987,117.4,28 -Sun Sep 25 09:26:07 PDT 2011,173,99,8.824,90047.82,521261481,-947402578,117.2,28 -Sun Sep 25 09:26:08 PDT 2011,173,96,8.453,90056.27,521260645,-947402268,117.0,28 -Sun Sep 25 09:26:09 PDT 2011,173,94,8.233,90064.51,521259905,-947401943,117.0,28 -Sun Sep 25 09:26:10 PDT 2011,173,92,8.233,90072.74,521259160,-947401591,116.8,28 -Sun Sep 25 09:26:11 PDT 2011,173,87,7.882,90080.62,521258437,-947401240,116.8,28 -Sun Sep 25 09:26:12 PDT 2011,173,85,7.508,90090.27,521257511,-947400853,116.8,28 -Sun Sep 25 09:26:13 PDT 2011,173,84,7.238,90095.45,521256977,-947400657,116.6,28 -Sun Sep 25 09:26:14 PDT 2011,173,85,7.168,90102.72,521256238,-947400434,116.6,28 -Sun Sep 25 09:26:15 PDT 2011,174,89,7.009,90109.62,521255532,-947400221,116.6,28 -Sun Sep 25 09:26:16 PDT 2011,174,92,7.099,90116.73,521254809,-947399986,116.6,28 -Sun Sep 25 09:26:17 PDT 2011,175,93,7.285,90124.01,521254084,-947399702,116.8,28 -Sun Sep 25 09:26:18 PDT 2011,175,88,7.285,90131.29,521253384,-947399381,117.0,28 -Sun Sep 25 09:26:19 PDT 2011,175,88,6.921,90138.21,521252667,-947399054,117.2,27 -Sun Sep 25 09:26:20 PDT 2011,175,88,7.144,90145.35,521251948,-947398731,117.2,27 -Sun Sep 25 09:26:21 PDT 2011,175,87,6.9,90152.25,521251267,-947398485,117.4,27 -Sun Sep 25 09:26:22 PDT 2011,175,85,6.815,90159.06,521250567,-947398258,117.4,27 -Sun Sep 25 09:26:23 PDT 2011,175,85,6.637,90165.7,521249886,-947398043,117.8,27 -Sun Sep 25 09:26:24 PDT 2011,175,83,6.557,90172.26,521249208,-947397831,118.0,27 -Sun Sep 25 09:26:25 PDT 2011,175,87,6.698,90178.95,521248517,-947397604,118.2,27 -Sun Sep 25 09:26:26 PDT 2011,176,86,6.718,90185.67,521247863,-947397369,118.4,27 -Sun Sep 25 09:26:27 PDT 2011,176,87,6.802,90192.48,521247201,-947397146,118.6,27 -Sun Sep 25 09:26:28 PDT 2011,176,88,6.781,90199.26,521246502,-947396884,118.8,27 -Sun Sep 25 09:26:29 PDT 2011,176,89,6.76,90206.02,521245812,-947396601,119.0,27 -Sun Sep 25 09:26:30 PDT 2011,176,91,6.887,90212.91,521245104,-947396337,119.0,27 -Sun Sep 25 09:26:31 PDT 2011,176,92,7.042,90219.95,521244362,-947396058,119.2,27 -Sun Sep 25 09:26:32 PDT 2011,176,94,7.088,90227.03,521243613,-947395764,119.4,27 -Sun Sep 25 09:26:33 PDT 2011,176,95,7.276,90234.3,521242857,-947395476,119.4,27 -Sun Sep 25 09:26:34 PDT 2011,176,96,7.35,90241.66,521242095,-947395192,119.6,27 -Sun Sep 25 09:26:35 PDT 2011,176,97,7.526,90249.18,521241320,-947394868,119.6,27 -Sun Sep 25 09:26:36 PDT 2011,176,92,7.658,90256.84,521240530,-947394586,119.6,27 -Sun Sep 25 09:26:37 PDT 2011,175,95,7.964,90264.8,521239739,-947394290,119.8,27 -Sun Sep 25 09:26:38 PDT 2011,175,95,8.161,90272.96,521238870,-947393960,119.8,27 -Sun Sep 25 09:26:39 PDT 2011,175,95,8.04,90281.0,521238023,-947393566,119.8,27 -Sun Sep 25 09:26:40 PDT 2011,174,0,7.617,90288.62,521237201,-947393098,120.0,27 -Sun Sep 25 09:26:41 PDT 2011,174,0,7.117,90295.73,521236467,-947392587,120.0,27 -Sun Sep 25 09:26:42 PDT 2011,174,80,6.762,90302.5,521235786,-947392074,120.0,27 -Sun Sep 25 09:26:43 PDT 2011,174,94,7.951,90310.45,521235094,-947391679,120.0,27 -Sun Sep 25 09:26:44 PDT 2011,174,100,8.897,90319.35,521234247,-947391422,120.0,27 -Sun Sep 25 09:26:45 PDT 2011,174,111,9.397,90328.75,521233315,-947391249,119.8,27 -Sun Sep 25 09:26:46 PDT 2011,174,100,10.288,90339.04,521232238,-947391033,119.8,27 -Sun Sep 25 09:26:47 PDT 2011,174,101,10.487,90349.52,521231127,-947390686,119.6,27 -Sun Sep 25 09:26:48 PDT 2011,175,102,10.693,90360.22,521230024,-947390301,119.4,27 -Sun Sep 25 09:26:49 PDT 2011,175,93,10.8,90371.02,521228905,-947389845,119.2,27 -Sun Sep 25 09:26:50 PDT 2011,176,95,10.964,90381.98,521227777,-947389385,119.2,27 -Sun Sep 25 09:26:51 PDT 2011,176,95,11.19,90393.16,521226603,-947388917,119.0,27 -Sun Sep 25 09:26:52 PDT 2011,176,96,11.306,90404.47,521225424,-947388467,119.0,27 -Sun Sep 25 09:26:53 PDT 2011,177,97,11.486,90415.95,521224224,-947388016,119.0,27 -Sun Sep 25 09:26:54 PDT 2011,177,98,11.547,90427.5,521223024,-947387547,118.8,27 -Sun Sep 25 09:26:55 PDT 2011,178,98,11.547,90439.05,521221859,-947387115,118.6,27 -Sun Sep 25 09:26:56 PDT 2011,178,98,11.64,90450.69,521220649,-947386672,118.2,27 -Sun Sep 25 09:26:57 PDT 2011,178,107,11.547,90462.23,521219481,-947386208,118.0,27 -Sun Sep 25 09:26:58 PDT 2011,178,100,11.514,90473.75,521218345,-947385770,117.8,27 -Sun Sep 25 09:26:59 PDT 2011,177,96,11.363,90485.11,521217207,-947385344,117.6,27 -Sun Sep 25 09:27:00 PDT 2011,178,104,11.216,90496.33,521216069,-947384956,117.4,27 -Sun Sep 25 09:27:01 PDT 2011,178,106,11.216,90507.55,521214902,-947384479,117.4,27 -Sun Sep 25 09:27:02 PDT 2011,178,105,10.988,90518.53,521213744,-947384042,117.2,27 -Sun Sep 25 09:27:03 PDT 2011,178,103,10.933,90529.46,521212585,-947383584,116.8,27 -Sun Sep 25 09:27:04 PDT 2011,178,102,10.769,90540.23,521211488,-947383158,116.6,27 -Sun Sep 25 09:27:05 PDT 2011,179,101,10.457,90550.68,521210395,-947382757,116.2,27 -Sun Sep 25 09:27:06 PDT 2011,178,102,10.611,90561.29,521209261,-947382439,115.8,27 -Sun Sep 25 09:27:07 PDT 2011,178,100,10.457,90571.74,521208143,-947382175,115.4,27 -Sun Sep 25 09:27:08 PDT 2011,178,101,10.559,90582.3,521207067,-947381816,115.0,27 -Sun Sep 25 09:27:09 PDT 2011,178,102,10.559,90592.87,521205950,-947381361,114.8,27 -Sun Sep 25 09:27:10 PDT 2011,179,101,10.559,90603.43,521204878,-947380903,114.4,27 -Sun Sep 25 09:27:11 PDT 2011,179,101,10.559,90613.99,521203813,-947380404,114.4,27 -Sun Sep 25 09:27:12 PDT 2011,179,101,10.508,90624.5,521202740,-947379915,114.4,27 -Sun Sep 25 09:27:13 PDT 2011,179,100,10.508,90635.01,521201715,-947379440,114.2,27 -Sun Sep 25 09:27:14 PDT 2011,179,100,10.407,90645.41,521200713,-947378990,114.2,27 -Sun Sep 25 09:27:15 PDT 2011,179,100,10.308,90655.72,521199754,-947378508,114.2,27 -Sun Sep 25 09:27:16 PDT 2011,179,19,9.795,90665.52,521198803,-947378058,114.2,27 -Sun Sep 25 09:27:17 PDT 2011,179,95,9.817,90675.34,521197844,-947377613,114.2,27 -Sun Sep 25 09:27:18 PDT 2011,178,95,9.884,90685.22,521196884,-947377177,114.2,27 -Sun Sep 25 09:27:19 PDT 2011,178,95,9.707,90694.92,521195937,-947376662,114.0,27 -Sun Sep 25 09:27:20 PDT 2011,178,0,9.418,90704.34,521194990,-947376228,114.0,27 -Sun Sep 25 09:27:21 PDT 2011,177,0,9.098,90713.45,521194068,-947375806,114.0,27 -Sun Sep 25 09:27:22 PDT 2011,177,0,8.728,90722.17,521193201,-947375435,114.0,27 -Sun Sep 25 09:27:24 PDT 2011,176,0,8.29,90734.77,521191926,-947374907,114.0,27 -Sun Sep 25 09:27:24 PDT 2011,175,0,7.303,90738.28,521191605,-947374766,114.0,27 -Sun Sep 25 09:27:25 PDT 2011,175,0,6.773,90745.05,521190971,-947374456,114.0,27 -Sun Sep 25 09:27:26 PDT 2011,175,0,5.803,90750.86,521190407,-947374191,114.0,27 -Sun Sep 25 09:27:27 PDT 2011,174,0,4.74,90755.6,521189950,-947373977,114.0,27 -Sun Sep 25 09:27:28 PDT 2011,174,0,3.841,90759.45,521189601,-947373824,114.0,27 -Sun Sep 25 09:27:29 PDT 2011,173,0,3.339,90762.78,521189282,-947373660,114.0,27 -Sun Sep 25 09:27:30 PDT 2011,172,0,3.08,90765.86,521188996,-947373546,114.0,27 -Sun Sep 25 09:27:31 PDT 2011,171,0,3.116,90768.98,521188727,-947373444,114.0,27 -Sun Sep 25 09:27:32 PDT 2011,170,0,3.015,90771.99,521188472,-947373404,114.0,27 -Sun Sep 25 09:27:33 PDT 2011,169,0,2.628,90774.62,521188253,-947373444,114.0,27 -Sun Sep 25 09:27:34 PDT 2011,168,0,1.918,90776.54,521188098,-947373585,113.6,27 -Sun Sep 25 09:27:35 PDT 2011,168,0,1.918,90778.46,521187997,-947373790,113.4,27 -Sun Sep 25 09:27:36 PDT 2011,167,0,1.88,90780.34,521187935,-947374022,113.4,27 -Sun Sep 25 09:27:37 PDT 2011,166,0,1.773,90782.12,521187870,-947374217,113.2,27 -Sun Sep 25 09:27:38 PDT 2011,165,0,1.655,90783.77,521187812,-947374337,113.0,27 -Sun Sep 25 09:28:34 PDT 2011,143,0,1.514,90783.77,521187415,-947373828,111.8,27 -Sun Sep 25 09:28:35 PDT 2011,144,0,2.721,90786.55,521187154,-947373707,111.8,27 -Sun Sep 25 09:28:36 PDT 2011,146,28,2.965,90789.46,521186811,-947373511,111.8,27 -Sun Sep 25 09:28:37 PDT 2011,147,38,3.721,90793.61,521186355,-947373222,111.8,27 -Sun Sep 25 09:28:38 PDT 2011,148,48,4.066,90797.21,521185856,-947372814,111.8,27 -Sun Sep 25 09:28:39 PDT 2011,149,48,4.698,90801.91,521185269,-947372378,111.8,27 -Sun Sep 25 09:28:40 PDT 2011,150,63,6.083,90807.99,521184591,-947372058,111.8,27 -Sun Sep 25 09:28:41 PDT 2011,150,69,6.668,90814.66,521183861,-947371749,111.8,27 -Sun Sep 25 09:28:42 PDT 2011,150,74,7.279,90821.95,521183114,-947371418,111.8,27 -Sun Sep 25 09:28:43 PDT 2011,150,78,7.836,90829.78,521182310,-947371084,111.8,27 -Sun Sep 25 09:28:44 PDT 2011,151,88,8.589,90838.37,521181447,-947370645,111.8,27 -Sun Sep 25 09:28:45 PDT 2011,151,88,9.235,90847.6,521180561,-947370154,111.8,27 -Sun Sep 25 09:28:46 PDT 2011,151,87,9.85,90857.45,521179577,-947369682,111.8,27 -Sun Sep 25 09:28:47 PDT 2011,152,92,10.323,90867.77,521178427,-947369296,111.8,27 -Sun Sep 25 09:28:48 PDT 2011,153,95,10.736,90878.62,521177229,-947368900,111.8,27 -Sun Sep 25 09:28:49 PDT 2011,154,99,11.421,90889.92,521175971,-947368551,111.4,27 -Sun Sep 25 09:28:50 PDT 2011,156,105,11.607,90901.53,521174687,-947368196,111.2,27 -Sun Sep 25 09:28:51 PDT 2011,158,103,12.376,90913.91,521173381,-947367719,111.0,27 -Sun Sep 25 09:28:52 PDT 2011,159,105,12.131,90926.04,521172046,-947367105,110.8,27 -Sun Sep 25 09:28:53 PDT 2011,161,106,12.305,90938.36,521170767,-947366524,110.6,27 -Sun Sep 25 09:28:54 PDT 2011,163,106,12.34,90950.69,521169382,-947365928,110.6,27 -Sun Sep 25 09:28:55 PDT 2011,164,100,12.412,90963.1,521168113,-947365382,110.4,27 -Sun Sep 25 09:28:56 PDT 2011,166,101,12.502,90975.6,521166827,-947364858,110.4,27 -Sun Sep 25 09:28:57 PDT 2011,168,102,12.724,90988.33,521165550,-947364374,110.2,27 -Sun Sep 25 09:28:58 PDT 2011,169,102,12.724,91001.05,521164236,-947363861,110.0,27 -Sun Sep 25 09:28:59 PDT 2011,170,102,12.8,91013.85,521162909,-947363341,110.0,27 -Sun Sep 25 09:29:00 PDT 2011,171,102,12.762,91026.62,521161575,-947362825,110.0,27 -Sun Sep 25 09:29:01 PDT 2011,171,102,12.724,91039.34,521160277,-947362354,109.8,27 -Sun Sep 25 09:29:02 PDT 2011,172,94,16.509,91055.85,521158974,-947361918,109.8,27 -Sun Sep 25 09:29:03 PDT 2011,173,94,12.724,91068.58,521157673,-947361494,109.6,27 -Sun Sep 25 09:29:04 PDT 2011,173,94,12.686,91081.27,521156388,-947361008,109.2,27 -Sun Sep 25 09:29:05 PDT 2011,174,95,12.77,91094.04,521155168,-947360388,109.0,27 -Sun Sep 25 09:29:06 PDT 2011,174,97,13.003,91107.04,521153944,-947359747,108.8,27 -Sun Sep 25 09:29:07 PDT 2011,175,100,13.204,91120.24,521152668,-947359018,108.4,27 -Sun Sep 25 09:29:08 PDT 2011,175,93,13.369,91133.61,521151418,-947358190,108.0,27 -Sun Sep 25 09:29:09 PDT 2011,175,88,13.756,91147.37,521150106,-947357346,107.6,27 -Sun Sep 25 09:29:10 PDT 2011,176,100,14.166,91161.53,521148726,-947356507,107.0,27 -Sun Sep 25 09:29:11 PDT 2011,176,100,14.551,91176.09,521147415,-947355614,106.2,27 -Sun Sep 25 09:29:12 PDT 2011,176,102,14.752,91190.84,521146073,-947354664,105.6,27 -Sun Sep 25 09:29:13 PDT 2011,176,104,14.958,91205.8,521144643,-947353364,105.0,27 -Sun Sep 25 09:29:14 PDT 2011,177,103,15.171,91220.97,521143430,-947351905,104.4,27 -Sun Sep 25 09:29:15 PDT 2011,177,103,15.011,91235.98,521142458,-947350143,104.0,27 -Sun Sep 25 09:29:16 PDT 2011,177,103,15.064,91251.04,521141649,-947348175,103.2,27 -Sun Sep 25 09:29:17 PDT 2011,177,0,14.752,91265.79,521141136,-947346081,102.6,27 -Sun Sep 25 09:29:18 PDT 2011,177,108,14.651,91280.44,521140748,-947343948,102.0,27 -Sun Sep 25 09:29:19 PDT 2011,177,107,14.453,91294.89,521140517,-947341844,101.2,27 -Sun Sep 25 09:29:20 PDT 2011,177,106,14.356,91309.25,521140320,-947339574,100.6,27 -Sun Sep 25 09:29:21 PDT 2011,178,105,14.213,91323.48,521140101,-947337419,100.0,27 -Sun Sep 25 09:29:22 PDT 2011,177,104,14.073,91337.54,521139860,-947335297,99.2,27 -Sun Sep 25 09:29:23 PDT 2011,177,104,13.981,91351.52,521139641,-947333177,98.4,27 -Sun Sep 25 09:29:24 PDT 2011,178,103,13.935,91365.46,521139471,-947330992,97.8,27 -Sun Sep 25 09:29:25 PDT 2011,178,100,13.712,91379.17,521139264,-947328921,97.2,27 -Sun Sep 25 09:29:26 PDT 2011,178,99,13.538,91392.71,521139036,-947326767,96.8,27 -Sun Sep 25 09:29:27 PDT 2011,178,110,13.204,91405.91,521138914,-947324930,96.4,27 -Sun Sep 25 09:29:28 PDT 2011,178,106,12.732,91418.65,521138773,-947323088,95.8,27 -Sun Sep 25 09:29:29 PDT 2011,177,103,12.555,91431.2,521138520,-947321413,95.4,27 -Sun Sep 25 09:29:30 PDT 2011,177,106,11.61,91442.81,521138065,-947319877,94.8,27 -Sun Sep 25 09:29:31 PDT 2011,177,103,11.132,91453.95,521137455,-947318533,94.4,27 -Sun Sep 25 09:29:32 PDT 2011,178,107,10.744,91464.69,521136684,-947317373,94.0,27 -Sun Sep 25 09:29:33 PDT 2011,178,107,10.139,91474.83,521135819,-947316359,93.6,27 -Sun Sep 25 09:29:34 PDT 2011,178,102,9.772,91484.6,521134877,-947315625,93.2,27 -Sun Sep 25 09:29:35 PDT 2011,178,91,9.641,91494.24,521133828,-947315327,93.0,27 -Sun Sep 25 09:29:36 PDT 2011,178,93,9.641,91503.88,521132835,-947315675,93.0,27 -Sun Sep 25 09:29:37 PDT 2011,178,96,9.684,91513.57,521132077,-947316734,93.0,27 -Sun Sep 25 09:29:38 PDT 2011,178,96,10.091,91523.66,521132161,-947319039,92.8,27 -Sun Sep 25 09:29:39 PDT 2011,178,96,10.586,91534.25,521132010,-947320526,92.8,27 -Sun Sep 25 09:29:40 PDT 2011,177,0,11.018,91545.27,521131752,-947321714,92.8,27 -Sun Sep 25 09:29:41 PDT 2011,177,0,11.306,91556.57,521130855,-947322783,92.6,27 -Sun Sep 25 09:29:42 PDT 2011,177,109,11.61,91568.18,521129596,-947323140,92.4,27 -Sun Sep 25 09:29:43 PDT 2011,177,109,12.132,91580.31,521128312,-947323147,92.2,27 -Sun Sep 25 09:29:44 PDT 2011,177,105,11.769,91592.08,521127344,-947323723,91.8,27 -Sun Sep 25 09:29:45 PDT 2011,177,102,12.483,91604.56,521125620,-947323197,91.4,27 -Sun Sep 25 09:29:46 PDT 2011,177,106,12.854,91617.41,521124247,-947323538,91.0,27 -Sun Sep 25 09:29:47 PDT 2011,177,108,13.289,91630.7,521122835,-947323993,90.8,27 -Sun Sep 25 09:29:48 PDT 2011,177,102,13.755,91644.46,521121389,-947324609,90.2,27 -Sun Sep 25 09:29:49 PDT 2011,178,103,13.843,91658.3,521119940,-947325266,89.6,27 -Sun Sep 25 09:29:50 PDT 2011,178,103,14.023,91672.33,521118514,-947325908,89.2,27 -Sun Sep 25 09:29:51 PDT 2011,178,103,13.843,91686.17,521117066,-947326443,88.4,27 -Sun Sep 25 09:29:52 PDT 2011,178,103,13.625,91699.8,521115648,-947326946,87.8,27 -Sun Sep 25 09:29:53 PDT 2011,178,97,13.625,91713.42,521114196,-947327344,87.2,27 -Sun Sep 25 09:29:54 PDT 2011,178,101,13.168,91726.59,521112775,-947327649,86.8,27 -Sun Sep 25 09:29:55 PDT 2011,177,101,12.893,91739.48,521111405,-947327865,86.2,27 -Sun Sep 25 09:29:56 PDT 2011,177,101,12.34,91751.83,521110096,-947327963,85.8,27 -Sun Sep 25 09:29:57 PDT 2011,177,109,11.898,91763.73,521108779,-947328002,85.4,27 -Sun Sep 25 09:29:58 PDT 2011,177,102,11.673,91775.4,521107548,-947327928,85.2,27 -Sun Sep 25 09:29:59 PDT 2011,176,95,11.517,91786.91,521106375,-947327789,84.8,27 -Sun Sep 25 09:30:00 PDT 2011,175,93,11.132,91798.05,521105233,-947327532,84.6,27 -Sun Sep 25 09:30:01 PDT 2011,175,93,10.744,91808.79,521104160,-947327213,84.4,27 -Sun Sep 25 09:30:02 PDT 2011,174,28,10.235,91819.02,521103128,-947326798,84.2,27 -Sun Sep 25 09:30:03 PDT 2011,174,103,9.998,91829.02,521102129,-947326301,84.0,27 -Sun Sep 25 09:30:04 PDT 2011,174,103,9.728,91838.75,521101202,-947325737,83.8,27 -Sun Sep 25 09:30:05 PDT 2011,173,102,9.555,91848.3,521100308,-947325064,83.6,27 -Sun Sep 25 09:30:06 PDT 2011,173,101,9.308,91857.61,521099440,-947324289,83.4,27 -Sun Sep 25 09:30:07 PDT 2011,172,103,9.472,91867.08,521098607,-947323431,83.4,27 -Sun Sep 25 09:30:08 PDT 2011,173,105,9.641,91876.72,521097798,-947322503,83.2,27 -Sun Sep 25 09:30:09 PDT 2011,172,104,9.861,91886.58,521097005,-947321532,83.2,27 -Sun Sep 25 09:30:10 PDT 2011,173,94,9.906,91896.53,521096234,-947320561,83.0,27 -Sun Sep 25 09:30:11 PDT 2011,173,94,9.816,91906.3,521095422,-947319604,83.0,27 -Sun Sep 25 09:30:12 PDT 2011,173,93,9.728,91916.02,521094649,-947318716,82.8,27 -Sun Sep 25 09:30:13 PDT 2011,173,97,9.598,91925.62,521093863,-947317871,82.8,27 -Sun Sep 25 09:30:14 PDT 2011,173,103,9.555,91935.18,521093109,-947317012,82.8,27 -Sun Sep 25 09:30:15 PDT 2011,174,91,9.598,91944.78,521092420,-947316186,82.6,27 -Sun Sep 25 09:30:16 PDT 2011,174,91,9.513,91954.3,521091682,-947315360,82.6,27 -Sun Sep 25 09:30:17 PDT 2011,174,90,9.389,91963.69,521090928,-947314604,82.6,27 -Sun Sep 25 09:30:18 PDT 2011,173,90,9.348,91973.04,521090117,-947314025,82.6,27 -Sun Sep 25 09:30:19 PDT 2011,173,90,9.15,91982.19,521089264,-947313483,82.4,27 -Sun Sep 25 09:30:20 PDT 2011,173,0,8.673,91990.86,521088345,-947313073,82.2,27 -Sun Sep 25 09:30:21 PDT 2011,172,0,8.338,91999.2,521087494,-947312841,82.0,27 -Sun Sep 25 09:30:22 PDT 2011,172,0,7.74,92006.94,521086663,-947312958,81.8,27 -Sun Sep 25 09:30:23 PDT 2011,171,0,7.247,92014.19,521086116,-947313373,81.6,27 -Sun Sep 25 09:30:24 PDT 2011,170,75,7.08,92021.27,521085729,-947314110,81.6,27 -Sun Sep 25 09:30:25 PDT 2011,170,77,7.824,92029.09,521085499,-947315204,81.4,27 -Sun Sep 25 09:30:26 PDT 2011,170,78,8.242,92037.33,521085292,-947316414,81.2,27 -Sun Sep 25 09:30:27 PDT 2011,170,77,8.057,92045.38,521085102,-947317728,81.2,27 -Sun Sep 25 09:30:28 PDT 2011,171,76,8.118,92053.5,521084872,-947319028,81.0,27 -Sun Sep 25 09:30:29 PDT 2011,171,75,7.768,92061.27,521084683,-947320338,81.0,27 -Sun Sep 25 09:30:30 PDT 2011,171,76,7.881,92069.16,521084441,-947321650,80.8,27 -Sun Sep 25 09:30:31 PDT 2011,171,78,7.881,92077.11,521084060,-947322942,80.8,27 -Sun Sep 25 09:30:32 PDT 2011,171,85,8.242,92086.51,521083525,-947324422,80.8,27 -Sun Sep 25 09:30:33 PDT 2011,171,88,8.436,92093.73,521083117,-947325551,80.6,27 -Sun Sep 25 09:30:34 PDT 2011,172,90,9.15,92102.89,521082685,-947326894,80.6,27 -Sun Sep 25 09:30:35 PDT 2011,172,90,9.472,92112.3,521082314,-947328251,80.6,27 -Sun Sep 25 09:30:36 PDT 2011,173,25,9.598,92121.88,521082030,-947329684,80.4,27 -Sun Sep 25 09:30:37 PDT 2011,173,92,9.308,92131.19,521081745,-947331085,80.4,27 -Sun Sep 25 09:30:38 PDT 2011,173,94,9.555,92140.74,521081435,-947332502,80.4,27 -Sun Sep 25 09:30:39 PDT 2011,174,96,9.728,92150.47,521081142,-947333891,80.4,27 -Sun Sep 25 09:30:40 PDT 2011,174,97,9.998,92160.47,521080863,-947335276,80.4,27 -Sun Sep 25 09:30:41 PDT 2011,174,99,10.091,92170.56,521080576,-947336726,80.4,27 -Sun Sep 25 09:30:42 PDT 2011,174,101,10.235,92180.8,521080291,-947338202,80.4,27 -Sun Sep 25 09:30:43 PDT 2011,174,99,10.283,92191.1,521080022,-947339669,80.2,27 -Sun Sep 25 09:30:44 PDT 2011,174,97,10.235,92201.31,521079729,-947341188,80.2,27 -Sun Sep 25 09:30:45 PDT 2011,174,98,10.115,92211.43,521079428,-947342641,80.2,27 -Sun Sep 25 09:30:46 PDT 2011,174,97,10.235,92221.66,521079114,-947344165,80.2,27 -Sun Sep 25 09:30:47 PDT 2011,174,98,10.186,92231.85,521078810,-947345651,80.2,27 -Sun Sep 25 09:30:48 PDT 2011,175,97,10.283,92242.13,521078505,-947347149,80.2,27 -Sun Sep 25 09:30:49 PDT 2011,175,97,10.068,92252.2,521078222,-947348609,80.2,27 -Sun Sep 25 09:30:50 PDT 2011,174,97,10.044,92262.25,521077915,-947350059,80.2,27 -Sun Sep 25 09:30:51 PDT 2011,174,0,9.861,92272.11,521077613,-947351492,80.2,27 -Sun Sep 25 09:30:52 PDT 2011,174,0,9.598,92281.71,521077305,-947352858,80.2,27 -Sun Sep 25 09:30:53 PDT 2011,174,0,9.308,92291.02,521077013,-947354190,80.2,27 -Sun Sep 25 09:30:54 PDT 2011,173,0,9.308,92300.32,521076724,-947355455,80.2,27 -Sun Sep 25 09:30:55 PDT 2011,173,0,8.85,92309.17,521076433,-947356701,80.2,27 -Sun Sep 25 09:30:56 PDT 2011,172,0,8.743,92317.91,521076160,-947357938,80.2,27 -Sun Sep 25 09:30:57 PDT 2011,172,0,8.569,92326.48,521075916,-947359064,80.2,27 -Sun Sep 25 09:30:58 PDT 2011,172,0,8.306,92334.79,521075653,-947360151,80.2,27 -Sun Sep 25 09:30:59 PDT 2011,171,0,8.088,92342.88,521075388,-947361170,80.2,27 -Sun Sep 25 09:31:00 PDT 2011,171,0,7.796,92350.67,521075069,-947362204,80.2,27 -Sun Sep 25 09:31:01 PDT 2011,171,0,8.057,92358.73,521074748,-947363222,80.2,27 -Sun Sep 25 09:31:02 PDT 2011,171,0,7.796,92366.52,521074421,-947364278,80.2,27 -Sun Sep 25 09:31:03 PDT 2011,170,0,7.74,92374.27,521074129,-947365241,80.2,27 -Sun Sep 25 09:31:04 PDT 2011,169,0,6.584,92380.85,521073870,-947366114,80.2,27 -Sun Sep 25 09:31:05 PDT 2011,168,0,5.653,92386.51,521073639,-947366884,80.2,27 -Sun Sep 25 09:31:06 PDT 2011,167,0,4.842,92391.35,521073514,-947367368,80.2,27 -Sun Sep 25 09:31:07 PDT 2011,166,0,3.076,92394.43,521073459,-947367658,80.2,27 -Sun Sep 25 09:31:08 PDT 2011,165,0,2.155,92396.59,521073318,-947367986,80.2,27 -Sun Sep 25 09:31:09 PDT 2011,165,35,2.155,92398.74,521073100,-947368242,80.2,27 -Sun Sep 25 09:31:10 PDT 2011,165,46,2.155,92400.91,521072759,-947368453,80.2,27 -Sun Sep 25 09:31:11 PDT 2011,165,46,5.081,92405.97,521072216,-947368508,79.8,27 -Sun Sep 25 09:31:12 PDT 2011,165,64,6.066,92412.03,521071543,-947368434,79.8,27 -Sun Sep 25 09:31:13 PDT 2011,165,72,6.899,92418.93,521070809,-947368177,79.6,27 -Sun Sep 25 09:31:14 PDT 2011,165,72,7.685,92426.62,521070011,-947367782,79.4,27 -Sun Sep 25 09:31:15 PDT 2011,165,72,8.338,92434.95,521069159,-947367426,79.2,27 -Sun Sep 25 09:31:16 PDT 2011,166,0,8.306,92443.27,521068347,-947367138,79.0,27 -Sun Sep 25 09:31:17 PDT 2011,166,0,8.211,92451.47,521067513,-947366827,79.0,27 -Sun Sep 25 09:31:18 PDT 2011,166,0,7.712,92459.18,521066613,-947366575,78.8,27 -Sun Sep 25 09:31:19 PDT 2011,165,0,7.32,92466.5,521065716,-947366316,78.8,27 -Sun Sep 25 09:31:20 PDT 2011,164,0,6.791,92473.29,521064904,-947366071,78.8,27 -Sun Sep 25 09:31:21 PDT 2011,163,0,6.427,92479.72,521064201,-947365780,78.6,27 -Sun Sep 25 09:31:22 PDT 2011,162,0,6.032,92485.75,521063616,-947365491,78.6,27 -Sun Sep 25 09:31:23 PDT 2011,160,0,5.203,92490.95,521063216,-947365159,78.4,27 -Sun Sep 25 09:31:24 PDT 2011,159,0,4.537,92495.49,521062894,-947364927,78.4,27 -Sun Sep 25 09:31:25 PDT 2011,158,0,3.775,92499.27,521062627,-947364811,78.4,27 -Sun Sep 25 09:31:26 PDT 2011,158,0,3.257,92502.52,521062380,-947364959,78.4,27 -Sun Sep 25 09:31:27 PDT 2011,157,42,4.177,92506.7,521062109,-947365323,78.4,27 -Sun Sep 25 09:31:28 PDT 2011,157,53,4.546,92511.25,521061819,-947365956,78.2,27 -Sun Sep 25 09:31:29 PDT 2011,158,58,5.28,92516.55,521061535,-947366742,78.2,27 -Sun Sep 25 09:31:30 PDT 2011,158,63,5.566,92522.09,521061265,-947367690,78.2,27 -Sun Sep 25 09:31:31 PDT 2011,159,68,6.259,92528.35,521061050,-947368633,78.2,27 -Sun Sep 25 09:31:32 PDT 2011,160,77,6.791,92535.14,521060840,-947369667,78.2,27 -Sun Sep 25 09:31:33 PDT 2011,160,75,7.247,92542.39,521060611,-947370697,78.2,27 -Sun Sep 25 09:31:34 PDT 2011,161,75,7.658,92550.05,521060348,-947371806,78.2,27 -Sun Sep 25 09:31:35 PDT 2011,161,75,8.057,92558.1,521060037,-947372933,78.2,27 -Sun Sep 25 09:31:36 PDT 2011,162,0,7.524,92565.62,521059727,-947374047,78.0,27 -Sun Sep 25 09:31:37 PDT 2011,162,0,7.271,92572.9,521059433,-947375133,78.0,27 -Sun Sep 25 09:31:38 PDT 2011,163,0,7.198,92580.09,521059155,-947376187,78.0,27 -Sun Sep 25 09:31:39 PDT 2011,163,0,7.08,92587.17,521058777,-947376996,78.0,27 -Sun Sep 25 09:31:40 PDT 2011,162,0,6.465,92593.64,521058353,-947377488,78.0,27 -Sun Sep 25 09:31:41 PDT 2011,162,0,5.758,92599.4,521057821,-947377627,78.0,27 -Sun Sep 25 09:31:42 PDT 2011,161,0,4.746,92604.14,521057244,-947377410,78.0,27 -Sun Sep 25 09:31:43 PDT 2011,160,0,4.185,92608.33,521056729,-947377043,78.0,27 -Sun Sep 25 09:31:44 PDT 2011,159,0,3.552,92611.88,521056347,-947376628,78.0,27 -Sun Sep 25 09:31:45 PDT 2011,158,0,3.058,92614.94,521056100,-947376246,78.0,27 -Sun Sep 25 09:31:46 PDT 2011,158,0,3.058,92617.99,521055997,-947376031,78.0,27 -Sun Sep 25 09:31:47 PDT 2011,157,0,2.17,92620.16,521055970,-947375862,78.0,27 -Sun Sep 25 09:31:48 PDT 2011,156,0,2.17,92622.34,521055995,-947375743,78.0,27 -Sun Sep 25 09:31:49 PDT 2011,156,0,0.0,92622.34,521056079,-947375686,78.0,27 -Sun Sep 25 09:31:53 PDT 2011,151,0,0.0,92622.34,521056346,-947375750,78.0,27 diff --git a/tests/files/garmin-edge-500-activity.fit b/tests/files/garmin-edge-500-activity.fit deleted file mode 100644 index 0704125..0000000 Binary files a/tests/files/garmin-edge-500-activity.fit and /dev/null differ diff --git a/tests/files/garmin-edge-820-bike-records.csv b/tests/files/garmin-edge-820-bike-records.csv deleted file mode 100644 index e95e9f8..0000000 --- a/tests/files/garmin-edge-820-bike-records.csv +++ /dev/null @@ -1,16 +0,0 @@ -timestamp,heart_rate,cadence,speed,distance,position_lat,position_long,altitude,temperature -Mon Jun 12 09:10:15 PDT 2017,101,69,6.951,6.95,446375435,-1456338541,-17.600000000000023,13 -Mon Jun 12 09:10:20 PDT 2017,104,68,6.867,41.58,446379221,-1456338592,-17.80000000000001,13 -Mon Jun 12 09:10:22 PDT 2017,108,68,6.793,55.26,446380702,-1456338600,-17.80000000000001,13 -Mon Jun 12 09:10:23 PDT 2017,111,67,6.858,62.11,446381439,-1456338509,-17.600000000000023,13 -Mon Jun 12 09:10:24 PDT 2017,114,68,6.839,68.95,446382175,-1456338439,-17.600000000000023,13 -Mon Jun 12 09:10:25 PDT 2017,114,67,6.821,75.77,446382913,-1456338404,-17.80000000000001,13 -Mon Jun 12 09:10:34 PDT 2017,115,68,6.979,137.8,446389555,-1456338298,-17.399999999999977,13 -Mon Jun 12 09:10:43 PDT 2017,118,70,7.101,200.84,446396367,-1456338184,-17.19999999999999,13 -Mon Jun 12 09:10:44 PDT 2017,118,70,7.194,208.04,446397136,-1456338169,-17.19999999999999,13 -Mon Jun 12 09:10:53 PDT 2017,119,68,6.961,270.99,446403989,-1456338084,-17.19999999999999,13 -Mon Jun 12 09:11:02 PDT 2017,119,68,6.895,333.88,446410804,-1456338040,-17.19999999999999,13 -Mon Jun 12 09:11:11 PDT 2017,121,69,6.961,395.95,446417518,-1456338079,-17.600000000000023,13 -Mon Jun 12 09:11:13 PDT 2017,118,69,6.914,409.82,446419029,-1456338102,-17.80000000000001,13 -Mon Jun 12 09:11:16 PDT 2017,115,68,6.849,430.39,446421280,-1456338109,-17.80000000000001,13 -Mon Jun 12 09:11:20 PDT 2017,115,66,6.653,457.12,446424211,-1456338151,-17.80000000000001,13 diff --git a/tests/files/garmin-edge-820-bike.fit b/tests/files/garmin-edge-820-bike.fit deleted file mode 100644 index c1de06d..0000000 Binary files a/tests/files/garmin-edge-820-bike.fit and /dev/null differ diff --git a/tests/files/garmin-fenix-5-bike-records.csv b/tests/files/garmin-fenix-5-bike-records.csv deleted file mode 100644 index 26f2990..0000000 --- a/tests/files/garmin-fenix-5-bike-records.csv +++ /dev/null @@ -1,20 +0,0 @@ -timestamp,heart_rate,cadence,speed,distance,position_lat,position_long,altitude,temperature -Mon Jun 12 09:09:22 PDT 2017,77,,8.258,0.0,446332520,-1456340701,0.0,19 -Mon Jun 12 09:09:23 PDT 2017,83,,8.024,16.15,446334253,-1456340838,-1.8000000000000114,19 -Mon Jun 12 09:09:25 PDT 2017,86,,8.108,24.27,446335124,-1456340910,-2.8000000000000114,19 -Mon Jun 12 09:09:26 PDT 2017,88,,7.894,32.32,446335985,-1456341014,-2.8000000000000114,19 -Mon Jun 12 09:09:28 PDT 2017,90,,7.931,48.37,446337704,-1456341206,-4.199999999999989,19 -Mon Jun 12 09:09:30 PDT 2017,94,,8.015,64.28,446339412,-1456341307,-3.8000000000000114,19 -Mon Jun 12 09:09:33 PDT 2017,98,,7.847,89.5,446342123,-1456341329,-3.8000000000000114,19 -Mon Jun 12 09:09:38 PDT 2017,98,,8.286,131.5,446346636,-1456341447,-4.0,19 -Mon Jun 12 09:09:43 PDT 2017,101,,7.707,171.56,446350896,-1456340670,-4.399999999999977,19 -Mon Jun 12 09:09:49 PDT 2017,104,,7.586,216.12,446355537,-1456339187,-4.199999999999989,19 -Mon Jun 12 09:09:50 PDT 2017,104,,7.819,224.94,446356415,-1456338722,-4.399999999999977,19 -Mon Jun 12 09:09:52 PDT 2017,105,,6.989,240.69,446358082,-1456338322,-4.600000000000023,19 -Mon Jun 12 09:10:01 PDT 2017,106,,7.651,305.71,446365050,-1456338687,-3.6000000000000227,19 -Mon Jun 12 09:10:08 PDT 2017,103,,6.877,355.41,446370388,-1456338400,-4.199999999999989,19 -Mon Jun 12 09:10:11 PDT 2017,100,,6.83,375.67,446372566,-1456338386,-4.199999999999989,19 -Mon Jun 12 09:10:17 PDT 2017,103,,6.606,418.02,446377116,-1456338248,-3.8000000000000114,19 -Mon Jun 12 09:10:21 PDT 2017,108,,6.811,445.73,446380093,-1456338315,-4.199999999999989,19 -Mon Jun 12 09:10:22 PDT 2017,111,,6.578,452.59,446380831,-1456338298,-4.600000000000023,19 -Mon Jun 12 09:10:23 PDT 2017,114,,6.662,459.52,446381573,-1456338223,-4.600000000000023,19 diff --git a/tests/files/garmin-fenix-5-bike.fit b/tests/files/garmin-fenix-5-bike.fit deleted file mode 100644 index 405782f..0000000 Binary files a/tests/files/garmin-fenix-5-bike.fit and /dev/null differ diff --git a/tests/files/garmin-fenix-5-run-records.csv b/tests/files/garmin-fenix-5-run-records.csv deleted file mode 100644 index 29ae26d..0000000 --- a/tests/files/garmin-fenix-5-run-records.csv +++ /dev/null @@ -1,22 +0,0 @@ -timestamp,heart_rate,cadence,speed,distance,position_lat,position_long,altitude,temperature -Sun Jun 11 07:34:09 PDT 2017,61,0,0.0,0.0,456099128,-1463077077,2.1999999999999886,25 -Sun Jun 11 07:34:10 PDT 2017,61,0,0.0,0.5,456099059,-1463077109,2.3999999999999773,25 -Sun Jun 11 07:34:11 PDT 2017,58,0,0.0,0.88,456099079,-1463077607,2.1999999999999886,25 -Sun Jun 11 07:34:13 PDT 2017,56,78,1.166,7.93,456098414,-1463078075,3.3999999999999773,25 -Sun Jun 11 07:34:14 PDT 2017,59,90,1.624,10.94,456098127,-1463078262,3.1999999999999886,25 -Sun Jun 11 07:34:16 PDT 2017,63,89,3.378,17.97,456097397,-1463078534,3.1999999999999886,25 -Sun Jun 11 07:34:23 PDT 2017,71,91,3.144,36.76,456095506,-1463079425,4.0,25 -Sun Jun 11 07:34:25 PDT 2017,77,90,2.986,40.84,456095112,-1463079672,3.6000000000000227,25 -Sun Jun 11 07:34:26 PDT 2017,77,95,2.911,43.29,456094880,-1463079835,3.1999999999999886,25 -Sun Jun 11 07:34:31 PDT 2017,80,90,3.126,60.74,456093205,-1463080896,2.3999999999999773,24 -Sun Jun 11 07:34:32 PDT 2017,82,90,3.144,63.67,456092911,-1463081037,2.0,24 -Sun Jun 11 07:34:34 PDT 2017,87,89,3.107,69.79,456092311,-1463081382,2.1999999999999886,24 -Sun Jun 11 07:34:36 PDT 2017,92,89,3.042,75.8,456091727,-1463081734,2.3999999999999773,24 -Sun Jun 11 07:34:38 PDT 2017,100,89,3.023,82.77,456091091,-1463082235,2.8000000000000114,24 -Sun Jun 11 07:34:39 PDT 2017,103,90,3.042,86.31,456090774,-1463082503,3.1999999999999886,24 -Sun Jun 11 07:34:42 PDT 2017,106,90,3.042,95.43,456089922,-1463083113,3.3999999999999773,24 -Sun Jun 11 07:34:45 PDT 2017,107,89,2.986,102.55,456089242,-1463083563,4.199999999999989,24 -Sun Jun 11 07:34:54 PDT 2017,110,73,2.725,122.86,456087277,-1463084768,4.399999999999977,24 -Sun Jun 11 07:34:56 PDT 2017,111,54,2.351,128.95,456086647,-1463085005,4.399999999999977,24 -Sun Jun 11 07:35:01 PDT 2017,111,95,2.379,142.1,456085522,-1463086065,5.399999999999977,24 -Sun Jun 11 07:35:06 PDT 2017,112,88,2.865,157.56,456084072,-1463087093,4.199999999999989,24 diff --git a/tests/files/garmin-fenix-5-run.fit b/tests/files/garmin-fenix-5-run.fit deleted file mode 100644 index 85eb771..0000000 Binary files a/tests/files/garmin-fenix-5-run.fit and /dev/null differ diff --git a/tests/files/garmin-fenix-5-walk-records.csv b/tests/files/garmin-fenix-5-walk-records.csv deleted file mode 100644 index 3442c09..0000000 --- a/tests/files/garmin-fenix-5-walk-records.csv +++ /dev/null @@ -1,18 +0,0 @@ -timestamp,heart_rate,cadence,speed,distance,position_lat,position_long,altitude,temperature -Sun Jun 11 07:32:51 PDT 2017,71,53,1.204,0.0,456107865,-1463072519,-0.8000000000000114,26 -Sun Jun 11 07:32:52 PDT 2017,71,53,1.409,1.6,456107693,-1463072572,-0.6000000000000227,26 -Sun Jun 11 07:32:56 PDT 2017,69,56,1.166,5.8,456107243,-1463072697,-0.6000000000000227,26 -Sun Jun 11 07:32:58 PDT 2017,66,58,1.054,8.28,456106976,-1463072755,-0.19999999999998863,26 -Sun Jun 11 07:33:02 PDT 2017,72,63,1.474,14.19,456106356,-1463072939,-0.19999999999998863,26 -Sun Jun 11 07:33:04 PDT 2017,76,62,1.456,16.95,456106074,-1463073060,-0.19999999999998863,26 -Sun Jun 11 07:33:06 PDT 2017,80,61,1.456,20.48,456105715,-1463073219,0.0,26 -Sun Jun 11 07:33:07 PDT 2017,81,61,1.502,22.29,456105524,-1463073261,0.0,26 -Sun Jun 11 07:33:08 PDT 2017,82,68,1.521,23.99,456105345,-1463073308,0.19999999999998863,26 -Sun Jun 11 07:33:11 PDT 2017,80,65,1.568,29.04,456104835,-1463073550,0.6000000000000227,26 -Sun Jun 11 07:33:13 PDT 2017,77,61,1.605,32.48,456104480,-1463073677,0.6000000000000227,26 -Sun Jun 11 07:33:15 PDT 2017,75,60,1.596,35.34,456104192,-1463073814,0.6000000000000227,26 -Sun Jun 11 07:33:16 PDT 2017,74,61,1.558,36.99,456104020,-1463073871,0.6000000000000227,26 -Sun Jun 11 07:33:19 PDT 2017,77,61,1.53,41.28,456103603,-1463074119,0.8000000000000114,26 -Sun Jun 11 07:33:20 PDT 2017,78,61,1.512,42.56,456103478,-1463074191,0.6000000000000227,26 -Sun Jun 11 07:33:23 PDT 2017,77,62,1.456,46.19,456103110,-1463074371,0.6000000000000227,26 -Sun Jun 11 07:33:37 PDT 2017,75,60,1.381,67.85,456100917,-1463075331,0.8000000000000114,26 diff --git a/tests/files/garmin-fenix-5-walk.fit b/tests/files/garmin-fenix-5-walk.fit deleted file mode 100644 index d2a1c98..0000000 Binary files a/tests/files/garmin-fenix-5-walk.fit and /dev/null differ diff --git a/tests/files/nametest.FIT b/tests/files/nametest.FIT deleted file mode 100644 index 13cd333..0000000 Binary files a/tests/files/nametest.FIT and /dev/null differ diff --git a/tests/files/nick.fit b/tests/files/nick.fit deleted file mode 100644 index 5c9d2e0..0000000 Binary files a/tests/files/nick.fit and /dev/null differ diff --git a/tests/files/null_compressed_speed_dist.fit b/tests/files/null_compressed_speed_dist.fit deleted file mode 100644 index 910f6d7..0000000 Binary files a/tests/files/null_compressed_speed_dist.fit and /dev/null differ diff --git a/tests/files/sample-activity-indoor-trainer.fit b/tests/files/sample-activity-indoor-trainer.fit deleted file mode 100644 index 152632d..0000000 Binary files a/tests/files/sample-activity-indoor-trainer.fit and /dev/null differ diff --git a/tests/files/sample-activity.fit b/tests/files/sample-activity.fit deleted file mode 100644 index 38c4ee6..0000000 Binary files a/tests/files/sample-activity.fit and /dev/null differ diff --git a/tests/files/sample_mulitple_header.fit b/tests/files/sample_mulitple_header.fit deleted file mode 100644 index f8d2d84..0000000 Binary files a/tests/files/sample_mulitple_header.fit and /dev/null differ diff --git a/tests/files/strava-android-app-201.10-b1218918.fit b/tests/files/strava-android-app-201.10-b1218918.fit deleted file mode 100644 index 24977c7..0000000 Binary files a/tests/files/strava-android-app-201.10-b1218918.fit and /dev/null differ diff --git a/tests/test.py b/tests/test.py deleted file mode 100755 index e4851d5..0000000 --- a/tests/test.py +++ /dev/null @@ -1,461 +0,0 @@ -#!/usr/bin/env python - -import csv -import datetime -import os -from struct import pack -import warnings - -from fitparse import FitFile -from fitparse.processors import UTC_REFERENCE, StandardUnitsDataProcessor -from fitparse.records import BASE_TYPES, Crc -from fitparse.utils import FitEOFError, FitCRCError, FitHeaderError, FitParseError - -import unittest - - -def generate_messages(mesg_num, local_mesg_num, field_defs, endian='<', data=None): - mesgs = [] - base_type_list = [] - - # definition message, local message num - s = pack('')) - # global message num, num fields - s += pack('%sHB' % endian, mesg_num, len(field_defs)) - for def_num, base_type in field_defs: - base_type = [bt for bt in BASE_TYPES.values() if bt.name == base_type][0] - base_type_list.append(base_type) - s += pack('<3B', def_num, base_type.size, base_type.identifier) - - mesgs.append(s) - - if data: - for mesg_data in data: - s = pack('B', local_mesg_num) - for value, base_type in zip(mesg_data, base_type_list): - s += pack("{}{}".format(endian, base_type.fmt), value) - mesgs.append(s) - - return b''.join(mesgs) - - -def generate_fitfile(data=None, endian='<'): - fit_data = ( - generate_messages( - # local mesg 0, global mesg 0 (file_id) - mesg_num=0, local_mesg_num=0, endian=endian, field_defs=[ - # serial number, time_created, manufacturer - (3, 'uint32z'), (4, 'uint32'), (1, 'uint16'), - # product/garmin_product, number, type - (2, 'uint16'), (5, 'uint16'), (0, 'enum'), - ], - # random serial number, random time, garmin, edge500, null, activity - data=[[558069241, 723842606, 1, 1036, (2 ** 16) - 1, 4]], - ) - ) - - if data: - fit_data += data - - # Prototcol version 1.0, profile version 1.52 - header = pack('<2BHI4s', 14, 16, 152, len(fit_data), b'.FIT') - file_data = header + pack('<' + Crc.FMT, Crc.calculate(header)) + fit_data - return file_data + pack('<' + Crc.FMT, Crc.calculate(file_data)) - - -def secs_to_dt(secs): - return datetime.datetime.fromtimestamp(timestamp=(secs + UTC_REFERENCE), tz=datetime.timezone.utc).replace(tzinfo=None) - - -def testfile(filename): - return os.path.join(os.path.dirname(os.path.realpath(__file__)), 'files', filename) - - -class FitFileTestCase(unittest.TestCase): - - def test_basic_file_with_one_record(self, endian='<'): - f = FitFile(generate_fitfile(endian=endian)) - f.parse() - - self.assertEqual(f.profile_version, 1.52) - self.assertEqual(f.protocol_version, 1.0) - - file_id = f.messages[0] - self.assertEqual(file_id.name, 'file_id') - - for field in ('type', 0): - self.assertEqual(file_id.get_value(field), 'activity') - self.assertEqual(file_id.get(field).raw_value, 4) - for field in ('manufacturer', 1): - self.assertEqual(file_id.get_value(field), 'garmin') - self.assertEqual(file_id.get(field).raw_value, 1) - for field in ('product', 'garmin_product', 2): - self.assertEqual(file_id.get_value(field), 'edge500') - self.assertEqual(file_id.get(field).raw_value, 1036) - for field in ('serial_number', 3): - self.assertEqual(file_id.get_value(field), 558069241) - for field in ('time_created', 4): - self.assertEqual(file_id.get_value(field), secs_to_dt(723842606)) - self.assertEqual(file_id.get(field).raw_value, 723842606) - for field in ('number', 5): - self.assertEqual(file_id.get_value(field), None) - - def test_basic_file_big_endian(self): - self.test_basic_file_with_one_record('>') - - def test_component_field_accumulaters(self): - # TODO: abstract CSV parsing - csv_fp = open(testfile('compressed-speed-distance-records.csv')) - csv_file = csv.reader(csv_fp) - next(csv_file) # Consume header - - f = FitFile(testfile('compressed-speed-distance.fit')) - f.parse() - - records = f.get_messages(name='record') - empty_record = next(records) # Skip empty record for now (sets timestamp via header) - - # File's timestamp record is < 0x10000000, so field returns seconds - self.assertEqual(empty_record.get_value('timestamp'), 17217864) - - # TODO: update using local_timestamp as offset, since we have this value as 2012 date - - for count, (record, (timestamp, heartrate, speed, distance, cadence)) in enumerate(zip(records, csv_file)): - # No fancy datetime stuff, since timestamp record is < 0x10000000 - fit_ts = record.get_value('timestamp') - self.assertIsInstance(fit_ts, int) - self.assertLess(fit_ts, 0x10000000) - self.assertEqual(fit_ts, int(timestamp)) - - self.assertEqual(record.get_value('heart_rate'), int(heartrate)) - self.assertEqual(record.get_value('cadence'), int(cadence) if cadence != 'null' else None) - self.assertAlmostEqual(record.get_value('speed'), float(speed)) - self.assertAlmostEqual(record.get_value('distance'), float(distance)) - - self.assertEqual(count, 753) # TODO: confirm size(records) = size(csv) - csv_fp.close() - - def test_component_field_resolves_subfield(self): - fit_data = generate_fitfile( - generate_messages( - # event (21), local message 1 - mesg_num=21, local_mesg_num=1, field_defs=[ - # event, event_type, data16 - (0, 'enum'), (1, 'enum'), (2, 'uint16'), - ], - data=[[0, 0, 2]], - ) - ) - - f = FitFile(fit_data) - f.parse() - - event = f.messages[1] - self.assertEqual(event.name, 'event') - for field in ('event', 0): - self.assertEqual(event.get_value(field), 'timer') - self.assertEqual(event.get(field).raw_value, 0) - for field in ('event_type', 1): - self.assertEqual(event.get_value(field), 'start') - self.assertEqual(event.get(field).raw_value, 0) - - # Should be able to reference by original field name, - # component field name, subfield name, and then the field def_num of both - # the original field and component field - for field in ('timer_trigger', 'data', 3): - self.assertEqual(event.get_value(field), 'fitness_equipment') - self.assertEqual(event.get(field).raw_value, 2) - - # Component field should be left as is - for field in ('data16', 2): - self.assertEqual(event.get_value(field), 2) - - def test_subfield_components(self): - # sore = 123, opponent_score = 456, total = 29884539 - sport_point_value = 123 + (456 << 16) - # rear_gear_num = 4, rear_gear, = 20, front_gear_num = 2, front_gear = 34 - gear_chance_value = 4 + (20 << 8) + (2 << 16) + (34 << 24) - - fit_data = generate_fitfile( - generate_messages( - # event (21), local message 1 - mesg_num=21, local_mesg_num=1, field_defs=[ - # event, data - (0, 'enum'), (3, 'uint32'), - ], - data=[ - # sport point - [33, sport_point_value], - # front gear change - [42, gear_chance_value], - ], - ) - ) - - f = FitFile(fit_data) - f.parse() - - sport_point = f.messages[1] - self.assertEqual(sport_point.name, 'event') - for field in ('event', 0): - self.assertEqual(sport_point.get_value(field), 'sport_point') - self.assertEqual(sport_point.get(field).raw_value, 33) - for field in ('sport_point', 'data', 3): - # Verify raw numeric value - self.assertEqual(sport_point.get_value(field), sport_point_value) - for field in ('score', 7): - self.assertEqual(sport_point.get_value(field), 123) - for field in ('opponent_score', 8): - self.assertEqual(sport_point.get_value(field), 456) - - gear_change = f.messages[2] - self.assertEqual(gear_change.name, 'event') - for field in ('event', 0): - self.assertEqual(gear_change.get_value(field), 'front_gear_change') - self.assertEqual(gear_change.get(field).raw_value, 42) - for field in ('gear_change_data', 'data', 3): - # Verify raw numeric value - self.assertEqual(gear_change.get_value(field), gear_chance_value) - for field in ('front_gear_num', 9): - self.assertEqual(gear_change.get_value(field), 2) - for field in ('front_gear', 10): - self.assertEqual(gear_change.get_value(field), 34) - for field in ('rear_gear_num', 11): - self.assertEqual(gear_change.get_value(field), 4) - for field in ('rear_gear', 12): - self.assertEqual(gear_change.get_value(field), 20) - - def test_parsing_edge_500_fit_file(self): - self._csv_test_helper( - 'garmin-edge-500-activity.fit', - 'garmin-edge-500-activity-records.csv') - - def test_parsing_fenix_5_bike_fit_file(self): - self._csv_test_helper( - 'garmin-fenix-5-bike.fit', - 'garmin-fenix-5-bike-records.csv') - - def test_parsing_fenix_5_run_fit_file(self): - self._csv_test_helper( - 'garmin-fenix-5-run.fit', - 'garmin-fenix-5-run-records.csv') - - def test_parsing_fenix_5_walk_fit_file(self): - self._csv_test_helper( - 'garmin-fenix-5-walk.fit', - 'garmin-fenix-5-walk-records.csv') - - def test_parsing_edge_820_fit_file(self): - self._csv_test_helper( - 'garmin-edge-820-bike.fit', - 'garmin-edge-820-bike-records.csv') - - def _csv_test_helper(self, fit_file, csv_file): - csv_fp = open(testfile(csv_file)) - csv_messages = csv.reader(csv_fp) - field_names = next(csv_messages) # Consume header - - f = FitFile(testfile(fit_file)) - messages = f.get_messages(name='record') - - # For fixups - last_valid_lat, last_valid_long = None, None - - for message, csv_message in zip(messages, csv_messages): - for csv_index, field_name in enumerate(field_names): - fit_value, csv_value = message.get_value(field_name), csv_message[csv_index] - if field_name == 'timestamp': - # Adjust GMT to PDT and format - fit_value = (fit_value - datetime.timedelta(hours=7)).strftime("%a %b %d %H:%M:%S PDT %Y") - - # Track last valid lat/longs - if field_name == 'position_lat': - if fit_value is not None: - last_valid_lat = fit_value - if field_name == 'position_long': - if fit_value is not None: - last_valid_long = fit_value - - # ANT FIT SDK Dump tool does a bad job of logging invalids, so fix them - if fit_value is None: - # ANT FIT SDK Dump tool cadence reports invalid as 0 - if field_name == 'cadence' and csv_value == '0': - csv_value = None - # ANT FIT SDK Dump tool invalid lat/lng reports as last valid - if field_name == 'position_lat': - fit_value = last_valid_lat - if field_name == 'position_long': - fit_value = last_valid_long - - if isinstance(fit_value, int): - csv_value = int(fit_value) - if csv_value == '': - csv_value = None - - if isinstance(fit_value, float): - # Float comparison - self.assertAlmostEqual(fit_value, float(csv_value)) - else: - self.assertEqual(fit_value, csv_value, - msg="For {}, FIT value '{}' did not match CSV value '{}'".format(field_name, fit_value, csv_value)) - - try: - next(messages) - self.fail(".FIT file had more than csv file") - except StopIteration: - pass - - try: - next(csv_messages) - self.fail(".CSV file had more messages than .FIT file") - except StopIteration: - pass - - csv_fp.close() - - def test_developer_types(self): - """Test that a file with developer types in it can be parsed""" - FitFile(testfile('developer-types-sample.fit')).parse() - FitFile(testfile('20170518-191602-1740899583.fit')).parse() - FitFile(testfile('DeveloperData.fit')).parse() - - def test_invalid_crc(self): - try: - FitFile(testfile('activity-filecrc.fit')).parse() - self.fail("Didn't detect an invalid CRC") - except FitCRCError: - pass - - def test_unexpected_eof(self): - try: - with warnings.catch_warnings(record=True): - FitFile(testfile('activity-unexpected-eof.fit')).parse() - self.fail("Didn't detect an unexpected EOF") - except FitEOFError: - pass - - def test_chained_file(self): - FitFile(testfile('activity-settings.fit')).parse() - - def test_invalid_chained_files(self): - """Detect errors when files are chained together - - Note that 'chained' means just concatinated in this case - """ - try: - FitFile(testfile('activity-activity-filecrc.fit')).parse() - self.fail("Didn't detect a CRC error in the chained file") - except FitCRCError: - pass - - try: - FitFile(testfile('activity-settings-corruptheader.fit')).parse() - self.fail("Didn't detect a header error in the chained file") - except FitHeaderError: - pass - - try: - FitFile(testfile('activity-settings-nodata.fit')).parse() - self.fail("Didn't detect an EOF error in the chaned file") - except FitEOFError: - pass - - def test_valid_files(self): - """Test that parsing a bunch of random known-good files works""" - for x in ('2013-02-06-12-11-14.fit', '2015-10-13-08-43-15.fit', - 'Activity.fit', 'Edge810-Vector-2013-08-16-15-35-10.fit', - 'MonitoringFile.fit', 'Settings.fit', 'Settings2.fit', - 'WeightScaleMultiUser.fit', 'WeightScaleSingleUser.fit', - 'WorkoutCustomTargetValues.fit', 'WorkoutIndividualSteps.fit', - 'WorkoutRepeatGreaterThanStep.fit', 'WorkoutRepeatSteps.fit', - 'activity-large-fenxi2-multisport.fit', 'activity-small-fenix2-run.fit', - 'antfs-dump.63.fit', 'sample-activity-indoor-trainer.fit', - 'sample-activity.fit', 'garmin-fenix-5-bike.fit', - 'garmin-fenix-5-run.fit', 'garmin-fenix-5-walk.fit', - 'garmin-edge-820-bike.fit', 'null_compressed_speed_dist.fit'): - FitFile(testfile(x)).parse() - - def test_units_processor(self): - for x in ('2013-02-06-12-11-14.fit', '2015-10-13-08-43-15.fit', - 'Activity.fit', 'Edge810-Vector-2013-08-16-15-35-10.fit', - 'MonitoringFile.fit', 'Settings.fit', 'Settings2.fit', - 'WeightScaleMultiUser.fit', 'WeightScaleSingleUser.fit', - 'WorkoutCustomTargetValues.fit', 'WorkoutIndividualSteps.fit', - 'WorkoutRepeatGreaterThanStep.fit', 'WorkoutRepeatSteps.fit', - 'activity-large-fenxi2-multisport.fit', 'activity-small-fenix2-run.fit', - 'antfs-dump.63.fit', 'sample-activity-indoor-trainer.fit', - 'sample-activity.fit', 'garmin-fenix-5-bike.fit', - 'garmin-fenix-5-run.fit', 'garmin-fenix-5-walk.fit', - 'garmin-edge-820-bike.fit'): - FitFile(testfile(x), data_processor=StandardUnitsDataProcessor()).parse() - - def test_int_long(self): - """Test that ints are properly shifted and scaled""" - with FitFile(testfile('event_timestamp.fit')) as f: - assert f.messages[-1].fields[1].raw_value == 863.486328125 - - def test_elemnt_bolt_developer_data_id_without_application_id(self): - """Test that a file without application id set inside developer_data_id is parsed - (as seen on ELEMNT BOLT with firmware version WB09-1507)""" - FitFile(testfile('elemnt-bolt-no-application-id-inside-developer-data-id.fit')).parse() - - def test_multiple_header(self): - f = FitFile(testfile('sample_mulitple_header.fit')) - assert len(f.messages) == 3023 - - def test_speed(self): - f = FitFile(testfile('2019-02-17-062644-ELEMNT-297E-195-0.fit')) - avg_speed = list(f.get_messages('session'))[0].get_values().get('avg_speed') - self.assertEqual(avg_speed, 5.86) - - def test_mismatched_field_size(self): - f = FitFile(testfile('coros-pace-2-cycling-misaligned-fields.fit')) - with warnings.catch_warnings(record=True) as w: - f.parse() - assert w - assert all( - "falling back to byte encoding" in str(x) - for x in w - if x.category == UserWarning - ) - self.assertEqual(len(f.messages), 11293) - - def test_unterminated_file(self): - f = FitFile(testfile('nick.fit'), check_crc=False) - with warnings.catch_warnings(record=True) as w: - f.parse() - - def test_developer_data_thread_safe(self): - """ - Test that a file with developer types in it can be parsed thread-safe. - This test opens 2 FIT files and tests whether the dev_types of one does not change the dev_types of the other. - """ - fit_file_1 = FitFile(testfile('developer-types-sample.fit')) - field_description_count = 0 - for message in fit_file_1.get_messages(): - if message.mesg_type.name == "field_description": - field_description_count += 1 - if field_description_count >= 4: - # Break after final field description message - break - - fit_file_2 = FitFile(testfile('developer-types-sample.fit')) - for message in fit_file_2.get_messages(): - if message.mesg_type.name == "developer_data_id": - break - - try: - fit_file_1.parse() - except FitParseError: - self.fail("parse() unexpectedly raised a FitParseError") - - - # TODO: - # * Test Processors: - # - process_type_<>, process_field_<>, process_units_<>, process_message_<> - - -if __name__ == '__main__': - unittest.main() diff --git a/tests/test_records.py b/tests/test_records.py deleted file mode 100644 index fd401f9..0000000 --- a/tests/test_records.py +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/env python - -from fitparse.records import Crc - -import unittest - -class RecordsTestCase(unittest.TestCase): - def test_crc(self): - crc = Crc() - self.assertEqual(0, crc.value) - crc.update(b'\x0e\x10\x98\x00(\x00\x00\x00.FIT') - self.assertEqual(0xace7, crc.value) - # 0 must not change the crc - crc.update(0) - self.assertEqual(0xace7, crc.value) - - def test_crc_format(self): - self.assertEqual('0x0000', Crc.format(0)) - self.assertEqual('0x12AB', Crc.format(0x12AB)) - - -if __name__ == '__main__': - unittest.main() diff --git a/tests/test_utils.py b/tests/test_utils.py deleted file mode 100644 index 9d456aa..0000000 --- a/tests/test_utils.py +++ /dev/null @@ -1,75 +0,0 @@ -#!/usr/bin/env python - -import io -import os -import tempfile - -from pathlib import Path - -from fitparse.utils import fileish_open, is_iterable - -import unittest - - -def testfile(filename): - return os.path.join(os.path.dirname(os.path.realpath(__file__)), 'files', filename) - - -class UtilsTestCase(unittest.TestCase): - - def test_fileish_open_read(self): - """Test the constructor does the right thing when given different types - (specifically, test files with 8 characters, followed by an uppercase.FIT - extension), which confused the fileish check on Python 2, see - https://github.com/dtcooper/python-fitparse/issues/29#issuecomment-312436350 - for details""" - - def test_fopen(fileish): - with fileish_open(fileish, 'rb') as f: - self.assertIsNotNone(f.read(1)) - f.seek(0, os.SEEK_SET) - - test_fopen(testfile('nametest.FIT')) - with open(testfile("nametest.FIT"), 'rb') as f: - test_fopen(f) - with open(testfile("nametest.FIT"), 'rb') as f: - test_fopen(f.read()) - with open(testfile("nametest.FIT"), 'rb') as f: - test_fopen(io.BytesIO(f.read())) - test_fopen(Path(testfile('nametest.FIT'))) - - def test_fileish_open_write(self): - - def test_fopen(fileish): - with fileish_open(fileish, 'wb') as f: - f.write(b'\x12') - f.seek(0, os.SEEK_SET) - - tmpfile = tempfile.NamedTemporaryFile(prefix='fitparse-test', suffix='.FIT', delete=False) - filename = tmpfile.name - tmpfile.close() - try: - test_fopen(filename) - with open(filename, 'wb') as f: - test_fopen(f) - test_fopen(io.BytesIO()) - finally: - # remove silently - try: - os.remove(filename) - except OSError: - pass - - def test_is_iterable(self): - self.assertFalse(is_iterable(None)) - self.assertFalse(is_iterable(1)) - self.assertFalse(is_iterable('1')) - self.assertFalse(is_iterable(b'1')) - - self.assertTrue(is_iterable((1, 2))) - self.assertTrue(is_iterable([1, 2])) - self.assertTrue(is_iterable(range(2))) - - -if __name__ == '__main__': - unittest.main()