diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..23def8e --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,90 @@ +name: Build EXE on PR + +# Run only on pull requests targeting develop or main +on: + pull_request: + branches: [develop, main] + +# Concurrency: one run per commit in a PR +concurrency: + group: pr-exe-${{ github.event.pull_request.head.sha }} + cancel-in-progress: true + +# Least-privilege permissions +permissions: + contents: read + +# Global environment variables +env: + PYTHON_VERSION: "3.12" + APP_NAME: "RailNetworkGraph" + SPEC_PATH: "RailNetworkGraph.spec" + +# Job: build Windows EXE with PyInstaller +jobs: + build-windows-exe: + name: Build Windows EXE (PyInstaller) + runs-on: windows-latest + timeout-minutes: 30 + env: + PIP_DISABLE_PIP_VERSION_CHECK: "1" + PYTHONDONTWRITEBYTECODE: "1" + + steps: + # Get repository code + - name: Checkout + uses: actions/checkout@v4 + + # Install chosen Python version + cache pip + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: ${{ env.PYTHON_VERSION }} + cache: pip + cache-dependency-path: | + pyproject.toml + poetry.lock + + # Install Poetry itself (via pip) + - name: Install Poetry + run: python -m pip install --upgrade pip poetry + + # Keep virtualenv inside repo for easier caching + - name: Enable in-project venv for Poetry + run: poetry config virtualenvs.in-project true + + # Cache the .venv folder based on lockfile + Python version + - name: Cache Poetry venv + uses: actions/cache@v4 + with: + path: .venv + key: venv-${{ runner.os }}-${{ env.PYTHON_VERSION }}-${{ hashFiles('poetry.lock') }} + restore-keys: | + venv-${{ runner.os }}-${{ env.PYTHON_VERSION }}- + + # Install all dependencies (main + dev) from pyproject.toml + - name: Install deps (poetry) + run: poetry install --no-interaction --with dev + + # Verify .spec file exists, otherwise fail with error + - name: Verify .spec exists + run: | + if (-not (Test-Path "${{ env.SPEC_PATH }}")) { + Write-Error "Missing PyInstaller spec file '${{ env.SPEC_PATH }}'" + } + + # Build EXE using PyInstaller with the .spec file + # Then list the contents of dist/ for debugging/logging + - name: Build exe with PyInstaller (.spec only) + run: | + poetry run pyinstaller --noconfirm --clean "${{ env.SPEC_PATH }}" + if (Test-Path dist) { Get-ChildItem -Recurse dist | Format-Table -AutoSize } + + # Upload the dist/ folder as artifact for download + - name: Upload artifact (dist) + uses: actions/upload-artifact@v4 + with: + name: ${{ env.APP_NAME }}-dist + path: dist/** + if-no-files-found: error + retention-days: 7 \ No newline at end of file diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..bab0e57 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,88 @@ +name: CI + +# Triggers: on any push (all branches), ignore tags, also on PRs +on: + push: + branches: ["**"] + tags-ignore: ["*"] + pull_request: + +# Concurrency: one run per branch/PR, cancel old if new starts +concurrency: + group: ci-${{ github.ref }} + cancel-in-progress: true + +# Least-privilege permissions for this workflow +permissions: + contents: read + +# Global environment +env: + PYTHON_VERSION: "3.12" + +# Job: linting, type checks, and tests +jobs: + checks: + name: Lint, types & tests + runs-on: windows-latest + timeout-minutes: 15 + env: + PIP_DISABLE_PIP_VERSION_CHECK: "1" + PYTHONDONTWRITEBYTECODE: "1" + + steps: + # Get repository code + - name: Checkout + uses: actions/checkout@v4 + + # Install chosen Python version + enable pip cache + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: ${{ env.PYTHON_VERSION }} + cache: pip + cache-dependency-path: | + pyproject.toml + poetry.lock + + # Install Poetry itself (via pip) + - name: Install Poetry + run: python -m pip install --upgrade pip poetry + + # Keep virtualenv inside repo for easier caching + - name: Enable in-project venv for Poetry + run: poetry config virtualenvs.in-project true + + # Cache the .venv folder based on lockfile + Python version + - name: Cache Poetry venv + uses: actions/cache@v4 + with: + path: .venv + key: venv-${{ runner.os }}-${{ env.PYTHON_VERSION }}-${{ hashFiles('poetry.lock') }} + restore-keys: | + venv-${{ runner.os }}-${{ env.PYTHON_VERSION }}- + + # Install all dependencies (main + dev) from pyproject.toml + - name: Install deps (poetry) + run: poetry install --no-interaction --with dev + + # Run linter (Ruff) with GitHub-friendly output + - name: Ruff (lint) + run: poetry run ruff check --output-format=github . + + # Run formatter (Black) in check-only mode, with diff if fails + - name: Black (format check) + run: poetry run black --check --diff . + + # Cache mypy cache folder to speed up type checking + - name: Cache mypy + uses: actions/cache@v4 + with: + path: .mypy_cache + key: mypy-${{ runner.os }}-${{ env.PYTHON_VERSION }}-${{ hashFiles('pyproject.toml') }} + restore-keys: | + mypy-${{ runner.os }}-${{ env.PYTHON_VERSION }}- + + # Run static type checker (Mypy) with auto-install types + - name: Mypy (type check) + run: poetry run mypy --install-types --non-interactive --pretty . \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..c40a37d --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,151 @@ +name: Build & Publish EXE (Release or Tag) + +# Run workflow when: +# - a release is published in GitHub UI +# - any tag is pushed (tags: ["*"]) +on: + release: + types: [published] + +# Permissions: allow writing release assets to the repository +permissions: + contents: write + +# Concurrency: group runs per tag/release, don't cancel older runs +concurrency: + group: rel-${{ github.event_name == 'release' && github.event.release.tag_name || github.ref_name }} + cancel-in-progress: false + +# Global environment variables +env: + PYTHON_VERSION: "3.12" + APP_NAME: "RailNetworkGraph" + SPEC_PATH: "RailNetworkGraph.spec" + TAG_NAME: ${{ github.event_name == 'release' && github.event.release.tag_name || github.ref_name }} + +jobs: + build-and-publish: + name: Build & Publish Windows EXE + runs-on: windows-latest + timeout-minutes: 30 + env: + PIP_DISABLE_PIP_VERSION_CHECK: "1" + PYTHONDONTWRITEBYTECODE: "1" + + steps: + # Get repository code + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 # fetch full history (needed for branch ancestry check) + ref: ${{ env.TAG_NAME }} + + # Verify that the tag commit is part of the main branch history (PowerShell) + - name: Verify tag points to commit on main + if: startsWith(github.ref, 'refs/tags/') || github.event_name == 'release' + run: | + git fetch origin +refs/heads/main:refs/remotes/origin/main + $TagSha = (git rev-parse HEAD).Trim() + git merge-base --is-ancestor $TagSha origin/main + if ($LASTEXITCODE -ne 0) { + Write-Error "Tag '${{ env.TAG_NAME }}' does not point to a commit on the 'main' branch. Publishing blocked." + } + + + # Install a chosen Python version + enable pip cache (helps to install Poetry) + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: ${{ env.PYTHON_VERSION }} + cache: pip + cache-dependency-path: | + pyproject.toml + poetry.lock + + # Install Poetry itself (via pip) + - name: Install Poetry + run: python -m pip install --upgrade pip poetry + + # Keep virtualenv inside repo for easier caching + - name: Enable in-project venv for Poetry + run: poetry config virtualenvs.in-project true + + # Cache the .venv folder based on lockfile + Python version + - name: Cache Poetry venv + uses: actions/cache@v4 + with: + path: .venv + key: venv-${{ runner.os }}-${{ env.PYTHON_VERSION }}-${{ hashFiles('poetry.lock') }} + restore-keys: | + venv-${{ runner.os }}-${{ env.PYTHON_VERSION }}- + + # Install all dependencies (main + dev) from pyproject.toml + - name: Install deps (poetry) + run: poetry install --no-interaction --with dev + + # Verify .spec file exists, otherwise fail with error + - name: Verify .spec exists + run: | + if (-not (Test-Path "${{ env.SPEC_PATH }}")) { + Write-Error "Missing PyInstaller spec file '${{ env.SPEC_PATH }}'" + } + + # Build EXE using PyInstaller with the .spec file + # Then list the contents of dist/ for debugging/logging + - name: Build exe with PyInstaller (.spec only) + run: | + poetry run pyinstaller --noconfirm --clean "${{ env.SPEC_PATH }}" + if (Test-Path dist) { Get-ChildItem -Recurse dist | Format-Table -AutoSize } + + # Sanity check: ensure at least one .exe exists before publishing + - name: Ensure at least one EXE exists + run: | + $files = Get-ChildItem -Path dist -Filter *.exe -Recurse -ErrorAction SilentlyContinue + if (-not $files) { Write-Error "No .exe files found in dist/**" } + + # Package all built EXE files into a single ZIP archive + - name: Package EXE(s) into ZIP + run: | + $zipName = "dist/${{ env.APP_NAME }}-${{ env.TAG_NAME }}.zip" + if (Test-Path $zipName) { Remove-Item $zipName -Force } + $exeFiles = Get-ChildItem -Path dist -Filter *.exe -Recurse | Select-Object -ExpandProperty FullName + if (-not $exeFiles) { Write-Error "No .exe files to zip"; exit 1 } + Compress-Archive -Path $exeFiles -DestinationPath $zipName -Force + Get-ChildItem -Path dist -Filter *.zip -Recurse | ForEach-Object { Write-Host $_.FullName } + + # Generate a SHA256 checksum file for the created ZIP + - name: Create sha256 + run: | + $zipPath = "dist/${{ env.APP_NAME }}-${{ env.TAG_NAME }}.zip" + $hash = Get-FileHash $zipPath -Algorithm SHA256 | Select-Object -ExpandProperty Hash + $hash | Out-File -FilePath "dist/${{ env.APP_NAME }}-${{ env.TAG_NAME }}.sha256" -Encoding ascii + Get-ChildItem -Path dist -Filter *.sha256 -Recurse | ForEach-Object { Write-Host $_.FullName } + + # Publish release metadata on GitHub (create or update release without assets) + - name: Create/Update GitHub Release (no files) + uses: softprops/action-gh-release@v2 + with: + tag_name: ${{ env.TAG_NAME }} + name: ${{ env.TAG_NAME }} + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + # Upload the generated ZIP file as a release asset + - name: Upload ZIP asset + uses: svenstaro/upload-release-action@v2 + with: + repo_token: ${{ secrets.GITHUB_TOKEN }} + tag: ${{ env.TAG_NAME }} + file: dist/${{ env.APP_NAME }}-${{ env.TAG_NAME }}.zip + overwrite: true + file_glob: false + + # Upload the SHA256 checksum file as a release asset + - name: Upload SHA256 asset + uses: svenstaro/upload-release-action@v2 + with: + repo_token: ${{ secrets.GITHUB_TOKEN }} + tag: ${{ env.TAG_NAME }} + file: dist/${{ env.APP_NAME }}-${{ env.TAG_NAME }}.sha256 + overwrite: true + file_glob: false \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5bdc23f --- /dev/null +++ b/.gitignore @@ -0,0 +1,57 @@ +# Ignore PyCharm project files +.idea/ +*.iml + +# Ignore virtual environment directories +venv/ +env/ +ENV/ +.venv/ +.ENV/ +.venv.bak/ +venv.bak/ + +# Ignore Python bytecode files +__pycache__/ +*.py[cod] +*$py.class + +# Ignore temporary and log files +*.log +*.tmp +*.swp +*.swo +cache + +# Ignore system files (macOS / Windows / Linux) +.DS_Store +Thumbs.db +ehthumbs.db +Icon? +desktop.ini + +# Ignore test-related files +.coverage +.tox/ +.nox/ +.cache/ +pytest_cache/ + +# Ignore pip logs +pip-log.txt +pip-delete-this-directory.txt + +# Ignore Jupyter Notebook checkpoints +.ipynb_checkpoints/ + +# Ignore editor-specific configuration files +.vscode/ + +# Ignore build artifacts +build/ +dist/ +*.egg-info/ +.eggs/ + +# mypy +.mypy_cache/ \ No newline at end of file diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..f18bb81 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,34 @@ +# Minimum version of pre-commit required +minimum_pre_commit_version: "3.6.0" + +# Set the default Python version to be used by hooks +default_language_version: + python: python3.12 + +repos: + # Basic pre-commit hooks for common issues (whitespace, newlines, merge conflicts, YAML validity) + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v5.0.0 + hooks: + - id: trailing-whitespace # Removes trailing whitespace + - id: end-of-file-fixer # Ensures files end with a newline + - id: check-merge-conflict # Detects merge conflict markers + - id: check-yaml # Validates YAML syntax + + # Black formatter for Python code + - repo: https://github.com/psf/black + rev: "25.1.0" + hooks: + - id: black # Automatically formats Python code + + # Ruff linter and code analyzer + - repo: https://github.com/astral-sh/ruff-pre-commit + rev: "v0.12.12" + hooks: + - id: ruff # Lints Python code using Ruff + + # Mypy static type checker + - repo: https://github.com/pre-commit/mirrors-mypy + rev: "v1.17.1" + hooks: + - id: mypy # Performs type checking with mypy diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..7172ee8 --- /dev/null +++ b/LICENSE @@ -0,0 +1,126 @@ +Creative Commons Legal Code + +CC0 1.0 Universal + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE + LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN + ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS + INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES + REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS + PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM + THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED + HEREUNDER. + +Statement of Purpose + +The laws of most jurisdictions throughout the world automatically confer +exclusive Copyright and Related Rights (defined below) upon the creator +and subsequent owner(s) (each and all, an "owner") of an original work of +authorship and/or a database (each, a "Work"). + +Certain owners wish to permanently relinquish those rights to a Work for +the purpose of contributing to a commons of creative, cultural and +scientific works ("Commons") that the public can reliably and without fear +of later claims of infringement build upon, modify, incorporate in other +works, reuse and redistribute as freely as possible in any form whatsoever +and for any purposes, including without limitation commercial purposes. +These owners may contribute to the Commons to promote the ideal of a free +culture and the further production of creative, cultural and scientific +works, or to gain reputation or greater distribution for their Work in +part through the use and efforts of others. + +For these and/or other purposes and motivations, and without any +expectation of additional consideration or compensation, the person +associating CC0 with a Work (the "Affirmer"), to the extent that he or she +is an owner of Copyright and Related Rights in the Work, voluntarily +elects to apply CC0 to the Work and publicly distribute the Work under its +terms, with knowledge of his or her Copyright and Related Rights in the +Work and the meaning and intended legal effect of CC0 on those rights. + +1. Copyright and Related Rights. A Work made available under CC0 may be +protected by copyright and related or neighboring rights ("Copyright and +Related Rights"). Copyright and Related Rights include, but are not +limited to, the following: + + i. the right to reproduce, adapt, distribute, perform, display, + communicate, and translate a Work; + ii. moral rights retained by the original author(s) and/or performer(s); +iii. publicity and privacy rights pertaining to a person's image or + likeness depicted in a Work; + iv. rights protecting against unfair competition in regards to a Work, + subject to the limitations in paragraph 4(a), below; + v. rights protecting the extraction, dissemination, use and reuse of data + in a Work; + vi. database rights (such as those arising under Directive 96/9/EC of the + European Parliament and of the Council of 11 March 1996 on the legal + protection of databases, and under any national implementation + thereof, including any amended or successor version of such + directive); and +vii. other similar, equivalent or corresponding rights throughout the + world based on applicable law or treaty, and any national + implementations thereof. + +2. Waiver. To the greatest extent permitted by, but not in contravention +of, applicable law, Affirmer hereby overtly, fully, permanently, +irrevocably and unconditionally waives, abandons, and surrenders all of +Affirmer's Copyright and Related Rights and associated claims and causes +of action, whether now known or unknown (including existing as well as +future claims and causes of action), in the Work (i) in all territories +worldwide, (ii) for the maximum duration provided by applicable law or +treaty (including future time extensions), (iii) in any current or future +medium and for any number of copies, and (iv) for any purpose whatsoever, +including without limitation commercial, advertising or promotional +purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each +member of the public at large and to the detriment of Affirmer's heirs and +successors, fully intending that such Waiver shall not be subject to +revocation, rescission, cancellation, termination, or any other legal or +equitable action to disrupt the quiet enjoyment of the Work by the public +as contemplated by Affirmer's express Statement of Purpose. + +3. Public License Fallback. Should any part of the Waiver for any reason +be judged legally invalid or ineffective under applicable law, then the +Waiver shall be preserved to the maximum extent permitted taking into +account Affirmer's express Statement of Purpose. In addition, to the +extent the Waiver is so judged Affirmer hereby grants to each affected +person a royalty-free, non transferable, non sublicensable, non exclusive, +irrevocable and unconditional license to exercise Affirmer's Copyright and +Related Rights in the Work (i) in all territories worldwide, (ii) for the +maximum duration provided by applicable law or treaty (including future +time extensions), (iii) in any current or future medium and for any number +of copies, and (iv) for any purpose whatsoever, including without +limitation commercial, advertising or promotional purposes (the +"License"). The License shall be deemed effective as of the date CC0 was +applied by Affirmer to the Work. Should any part of the License for any +reason be judged legally invalid or ineffective under applicable law, such +partial invalidity or ineffectiveness shall not invalidate the remainder +of the License, and in such case Affirmer hereby affirms that he or she +will not (i) exercise any of his or her remaining Copyright and Related +Rights in the Work or (ii) assert any associated claims and causes of +action with respect to the Work, in either case contrary to Affirmer's +express Statement of Purpose. + +4. Limitations and Disclaimers. + + a. No trademark or patent rights held by Affirmer are waived, abandoned, + surrendered, licensed or otherwise affected by this document. + b. Affirmer offers the Work as-is and makes no representations or + warranties of any kind concerning the Work, express, implied, + statutory or otherwise, including without limitation warranties of + title, merchantability, fitness for a particular purpose, non + infringement, or the absence of latent or other defects, accuracy, or + the present or absence of errors, whether or not discoverable, all to + the greatest extent permissible under applicable law. + c. Affirmer disclaims responsibility for clearing rights of other persons + that may apply to the Work or any use thereof, including without + limitation any person's Copyright and Related Rights in the Work. + Further, Affirmer disclaims responsibility for obtaining any necessary + consents, permissions or other rights required for any use of the + Work. + d. Affirmer understands and acknowledges that Creative Commons is not a + party to this document and has no duty or obligation with respect to + this CC0 or use of the Work. + +The Work contains a third party file, which is subject to its own license: +- style/style.qss, which is based on a file created by Christoph Sommer and is +licensed under the BSD 3-Clause License. You can find the text of the BSD 3-Clause +License at https://opensource.org/licenses/BSD-3-Clause. diff --git a/README.md b/README.md index 9e98db7..865c703 100644 --- a/README.md +++ b/README.md @@ -1 +1,305 @@ -# RailNetworkGraph \ No newline at end of file +# RailNetworkGraph + +**RailNetworkGraph** is a desktop application (built with **CustomTkinter**) that **finds the fastest railway connections** based on **GTFS data**. +It calculates **route distance**, **ticket price**, and **visualizes the path** on an interactive map. + +The application supports: + +- Finding the **fastest route (including transfers)** using **Dijkstra’s algorithm** on a **time-expanded graph**. +- Calculating **ticket prices** based on the **physical railway track distance**, not as-the-crow-flies. +- Displaying an **interactive map** (Matplotlib) with stations, connections, and region borders. +- Showing a **timetable (nearest departures)** when a station is clicked. + +> **License:** `CC0-1.0` *(see [LICENSE](LICENSE) for details)* + +--- + +## ⚙️ Technologies + +### Runtime +- **Python** 3.12–3.14 +- **CustomTkinter** – GUI +- **Pandas** – GTFS data processing +- **Matplotlib / GeoPandas** – Interactive map plotting +- **NetworkX** – Railway graph analysis (in `distance_counter` module) + +### Production / Development +- **Poetry** – Dependency and package management +- **requirements.txt / requirements-dev.txt** – pip installation +- **mkdocs** – Documentation (`docs/`, `mkdocs.yml`) +- **pre-commit** – Auto-formatting and linting +- **CI/CD** – GitHub workflows (`.github/`) +- **logging_config** – Colored logs with environment detection +- **PyInstaller** – `.exe` build (`RailNetworkGraph.spec`) +- **mypy** – Static type checking +- **Black** – Code formatting +- **Ruff** – Linting and style enforcement + +--- + +## 🧠 How It Works + +### 1. Data Loading +- On startup, the app loads **GTFS timetable data**. +- It builds two graphs: + - **Time-Expanded Graph:** Nodes represent departure events (e.g. `(Station A, Train 123, 08:15)`), used by Dijkstra to find the fastest route. + - **Station Graph:** Nodes represent stations, used for map visualization and simple pathfinding (BFS). + +### 2. User Input +- The user provides **origin station**, **destination station**, and **start time**. +- Optionally selects a **discount**. + +### 3. Route Finding ("Search" Button) +- `SubmitHandler` launches `PathFinderDijkstra`. +- The algorithm finds the **fastest path** on the time-expanded graph, minimizing travel + transfer times. + +### 4. Analysis (Distance & Price) +- Retrieves **physical distance** by summing pre-computed segment lengths (`railway_segment_lengths.txt`). +- Calculates **ticket price** using distance (`base_price_table.txt`) and applies discount (`discounts_percentages.txt`). + +### 5. Presentation +- `TicketPopup` displays route, duration, distance, and price. +- The route is highlighted in red on the map. +- Clicking any station opens `StationInfoPopup` with nearest departures. + +--- + +## 🗂️ Project Structure + +``` +## 🗂️ Project Structure + +RailNetworkGraph/ +├─ .gitignore # Git ignore rules +├─ .pre-commit-config.yaml # pre-commit hooks (Black, Ruff, mypy, etc.) +├─ LICENSE # License (CC0-1.0, see exceptions inside) +├─ mkdocs.yml # MkDocs site configuration +├─ poetry.lock # Poetry lockfile +├─ pyproject.toml # Poetry project config (deps, tools) +├─ README.md # Project readme +├─ requirements.txt # runtime dependencies +├─ RailNetworkGraph.spec # PyInstaller build specification +│ +├─ .github/ +│ └─ workflows/ +│ ├─ build.yml # Build workflow (package/test build) +│ ├─ ci.yml # CI workflow (lint, tests) +│ └─ release.yml # Release workflow (PyInstaller, publish artifacts) +│ +├─ docs/ # Documentation (MkDocs site content) +│ ├─ index.md # Project introduction (homepage) +│ ├─ css/ +│ │ ├─ mkdocstrings.css # Styling for mkdocstrings plugin +│ │ └─ theme-variants.css # Additional theme variants +│ └─ gen_ref_pages/ # Scripts for generating API reference pages +│ ├─ config.py +│ ├─ context.py +│ ├─ generate.py +│ ├─ gen_ref_pages.py +│ ├─ helpers.py +│ └─ traverse.py +│ +└─ src/ + └─ rail_network_graph/ + ├─ app.py # Main application (data loading, graph init, GUI setup) + ├─ config.py # Project configuration (paths, constants, settings) + ├─ logging_config.py # logging config (colors, ANSI detection) + ├─ __main__.py # Entry point (python -m rail_network_graph) + │ + ├─ assets/ + │ ├─ data/ + │ │ ├─ gtfs_data/ + │ │ │ ├─ routes.txt # GTFS routes file (names) + │ │ │ ├─ stops.txt # GTFS stops file (locations, names, parent stations) + │ │ │ ├─ stop_times.txt # GTFS stop times file (schedule) + │ │ │ └─ trips.txt # GTFS trips file (links stop_times to routes) + │ │ ├─ railway_distances/ + │ │ │ └─ railway_segment_lengths.txt # Output file: station-pair distances (km) + │ │ ├─ tickets_price/ + │ │ │ ├─ base_price_table.txt # Distance-to-price lookup table + │ │ │ └─ discounts_percentages.txt # Discount types and percentages + │ │ └─ voivodeship_border/ + │ │ └─ dolnoslaskie.geojson # GeoJSON file for the region map boundary + │ └─ img/ + │ └─ icon.ico # Windows icon + │ + ├─ data_processing/ + │ ├─ data_loader.py # Loads raw GTFS .txt files into pandas DataFrames + │ └─ data_processor.py # Processes raw GTFS data (merging, mapping stops to stations) + │ + ├─ distance_counter/ + │ ├─ distance_counter.py # Main script to run the distance calculation pipeline + │ ├─ graph_snapper.py # Snaps station coordinates (lat/lon) to the nearest railway graph node + │ ├─ railway_graph_builder.py # Builds NetworkX graph from railway GeoJSON line data + │ ├─ railway_route_calculator.py # Calculates shortest path distances (km) on the railway graph + │ └─ results_exporter.py # Exports calculated distances to a .txt file + │ + ├─ graphs/ + │ ├─ base_graph.py # Base class for a simple directed graph + │ └─ stations_graph.py # Graph of station-to-station connections based on GTFS trip sequences + │ + ├─ GUI/ + │ ├─ gui_creator.py # Main GUI builder, initializes and connects all UI components + │ ├─ counter_panel/ + │ │ ├─ input_panel.py # UI for station/time inputs and discount selection + │ │ ├─ submit_handler.py # Logic for the 'Search' button (runs pathfinder, gets price, updates UI) + │ │ └─ ticket_popup.py # Popup window to display the final route, time, and price + │ ├─ map/ + │ │ ├─ map_canvas.py # The interactive Matplotlib canvas (handles zoom, pan, click) + │ │ └─ map_plotter.py # Logic for drawing stations, connections, and highlights on the map + │ └─ station_info/ + │ ├─ station_info_logic.py # Fetches connection data/timetable for a clicked station + │ └─ station_info_popup.py # Popup window to display timetable/info for a single station + │ + ├─ path_finder/ + │ ├─ cleaner.py # Cleans the raw path result (removes cycles, collapses duplicates) + │ ├─ graph.py # Builds the time-expanded graph for Dijkstra (nodes = departure events) + │ ├─ models.py # Data models (e.g., StopRow) for pathfinding + │ ├─ path_finder.py # Main Dijkstra algorithm implementation on the time-expanded graph + │ └─ time_utils.py # Utility functions for handling time (HH:MM:SS <-> minutes) + │ + └─ utils/ + ├─ distance_calculator.py # Calculates total route distance using pre-computed segment lengths + └─ price_calculator.py # Calculates ticket price based on distance and pricing table + + +``` +## 🔧 Installation + +### Option A — pip + +**Users (runtime only):** +```bash +python -m venv .venv +source .venv/bin/activate # Linux/macOS +.venv\Scripts\activate # Windows + +pip install --upgrade pip +pip install -r requirements.txt +pip install -e . +``` + +**Developers (runtime + dev):** +```bash +pip install -r requirements.txt -r requirements-dev.txt +pip install -e . +``` + +--- + +### Option B — Poetry + +**Users (without dev):** +```bash +poetry install --without dev +poetry run rail_network_graph +``` + +**Developers (with dev):** +```bash +poetry install +poetry run rail_network_graph +``` + +--- + +## 📚 Documentation + +Built with **mkdocs**. + +```bash +mkdocs serve # local preview (http://127.0.0.1:8000) +mkdocs build # build into site/ +``` + +--- + +## 🏗️ Build Executable + +To build a Windows `.exe` with **PyInstaller**: + +```bash +pyinstaller RailNetworkGraph.spec +``` + +The resulting binary will be in `dist/`. + +--- + +## 🛠️ Development Tools + +This project uses several tools to keep the codebase clean and consistent: + +### Type checking +```bash +mypy src/ +``` + +### Linting +```bash +ruff check src/ +``` + +### Auto-formatting +```bash +black src/ +``` + +### Run all pre-commit hooks locally +```bash +pre-commit run --all-files +``` + +--- + +## ▶️ Running the App + +### From source +```bash +python -m rail_network_graph +``` + +### With Poetry +```bash +poetry run rail_network_graph +``` + +### After installation +```bash +rail_network_graph +``` + +--- + +## 💻 Usage + +1. Launch the app (`rail_network_graph`). +2. Enter **Station 1** (origin), **Station 2** (destination), and **Start time** (`HH:MM:SS`). +3. Optionally, select a **discount**. +4. Click **Search**. +5. View route details (time, price, distance) in the popup window. +6. See the route highlighted on the map. +7. (Optional) Click any station on the map to view its nearest departures. + +--- + +## 🖼️ Screenshots + +**GIF:** +![Main GIF](screenshots/railnetworkgraph.gif) + +**Main application screen:** +![Main application screen:](screenshots/main_application_screen.png) + +**Search result (ticket popup):** +![Search result (ticket popup):](screenshots/search_result.png) + +**Station info (on-click):** +![Station info (on-click):](screenshots/station_info.png) + +--- + +## 📜 License + +Released under **CC0-1.0 (public domain)**. +You may copy, modify, distribute, and use it commercially without asking for permission. \ No newline at end of file diff --git a/RailNetworkGraph.spec b/RailNetworkGraph.spec new file mode 100644 index 0000000..465ac31 --- /dev/null +++ b/RailNetworkGraph.spec @@ -0,0 +1,42 @@ +# -*- mode: python ; coding: utf-8 -*- + +from PyInstaller.building.datastruct import Tree + +a = Analysis( + ['src\\rail_network_graph\\__main__.py'], + pathex=['src'], + binaries=[], + datas=[ + ('src\\rail_network_graph\\assets', 'rail_network_graph\\assets'), +], + hiddenimports=[], + hookspath=[], + hooksconfig={}, + runtime_hooks=[], + excludes=[], + noarchive=False, + optimize=0, +) +pyz = PYZ(a.pure) + +exe = EXE( + pyz, + a.scripts, + a.binaries, + a.datas, + [], + name='RailNetworkGraph', + debug=False, + bootloader_ignore_signals=False, + strip=False, + upx=True, + upx_exclude=[], + runtime_tmpdir=None, + console=False, + disable_windowed_traceback=False, + argv_emulation=False, + target_arch=None, + codesign_identity=None, + entitlements_file=None, + icon=['src\\rail_network_graph\\assets\\img\\icon.ico'], +) diff --git a/docs/css/mkdocstrings.css b/docs/css/mkdocstrings.css new file mode 100644 index 0000000..3b16ced --- /dev/null +++ b/docs/css/mkdocstrings.css @@ -0,0 +1,23 @@ +/* + Documentation layout styles for MkDocs Material. + Defines spacing, typography, and table formatting + to improve readability and consistency across docs. +*/ + +/* Add vertical spacing between documentation objects */ +.md-typeset .doc .doc-object { margin: 1.1rem 0; } + +/* Allow function/method signatures to wrap across lines */ +.md-typeset .doc .sig { white-space: normal; word-break: break-word; } + +/* Adjust table cell padding and align text to the top */ +.md-typeset .doc .table th, +.md-typeset .doc .table td { + padding: .5rem .75rem; + vertical-align: top; +} + +/* Apply alternating background color to table rows for readability */ +.md-typeset .doc .table tr:nth-child(odd) td { + background: var(--md-code-bg-color); +} diff --git a/docs/css/theme-variants.css b/docs/css/theme-variants.css new file mode 100644 index 0000000..b4707d4 --- /dev/null +++ b/docs/css/theme-variants.css @@ -0,0 +1,146 @@ +/* + Documentation theme styles for MkDocs Material. + Defines heading sizes, documentation object layout, + code signature blocks, and table formatting. + Includes multiple color/spacing schemes (brand, compact, comfy) + for different presentation preferences. +*/ + +/* Style level-1 headings */ +.md-typeset h1 { + font-size: 1.4rem; + color: var(--md-default-fg-color--light); + font-weight: 800; + letter-spacing: .01em; + margin-top: 1.2rem; + margin-bottom: .6rem; +} + +/* Style level-2 headings */ +.md-typeset h2 { + font-size: 1rem; + color: var(--md-default-fg-color--light); + font-weight: 700; + letter-spacing: .02em; + margin-top: .8rem; + margin-bottom: .4rem; +} + +/* Style level-3 headings */ +.md-typeset h3 { + font-size: 0.9rem; + color: var(--md-default-fg-color--light); + font-weight: 600; + letter-spacing: .01em; + margin-top: .6rem; + margin-bottom: .3rem; +} + +/* Card-like container for documentation objects */ +.md-typeset .doc .doc-object { + margin: 1rem 0 1.25rem; + padding: 1rem 1.25rem; + border: 1px solid var(--md-default-fg-color--lighter); + border-radius: .75rem; + background: var(--md-default-bg-color); + box-shadow: 0 1px 0 var(--md-default-fg-color--lighter); +} + +/* Heading inside a documentation object */ +.md-typeset .doc .doc-object > .doc-heading { + font-weight: 700; + margin-bottom: .5rem; +} + +/* Code signature block inside documentation */ +.md-typeset .doc .sig { + display: block; + white-space: pre-wrap; + word-break: break-word; + background: var(--md-code-bg-color); + padding: .5rem .75rem; + border-radius: .5rem; + line-height: 1.45; +} + +/* Section titles inside documentation */ +.md-typeset .doc .doc-section-title { + font-weight: 800; + text-transform: uppercase; + font-size: .78rem; + letter-spacing: .04em; + color: var(--md-default-fg-color--light); + margin-top: .9rem; + border-top: 1px solid var(--md-default-fg-color--lighter); + padding-top: .5rem; +} + +/* Table base styles */ +.md-typeset .doc .table table { + width: 100%; + border-collapse: collapse; +} +.md-typeset .doc .table thead th { + font-weight: 700; + border-bottom: 1px solid var(--md-default-fg-color--lighter); +} +.md-typeset .doc .table th, +.md-typeset .doc .table td { + padding: .45rem .6rem; + vertical-align: top; +} +/* Alternating row background */ +.md-typeset .doc .table tr:nth-child(odd) td { + background: var(--md-code-bg-color); +} + +/* ============================= */ +/* BRAND color scheme */ +/* ============================= */ +[data-md-color-scheme="brand"] { + --md-primary-fg-color: #6e56cf; + --md-accent-fg-color: #00c2a8; + --md-code-bg-color: rgba(110, 86, 207, .08); +} +[data-md-color-scheme="brand"] .md-typeset .doc .doc-object { + border-color: rgba(110, 86, 207, .35); + box-shadow: 0 1px 0 rgba(110, 86, 207, .25); +} + +/* ============================= */ +/* COMPACT color scheme */ +/* ============================= */ +[data-md-color-scheme="compact"] .md-typeset { + font-size: 0.94rem; + line-height: 1.55; +} +[data-md-color-scheme="compact"] .md-typeset .doc .doc-object { + margin: .75rem 0 1rem; + padding: .75rem .9rem; +} +[data-md-color-scheme="compact"] .md-typeset .doc .table th, +[data-md-color-scheme="compact"] .md-typeset .doc .table td { + padding: .35rem .5rem; +} +[data-md-color-scheme="compact"] .md-typeset .sig { + line-height: 1.35; +} + +/* ============================= */ +/* COMFY color scheme */ +/* ============================= */ +[data-md-color-scheme="comfy"] .md-typeset { + font-size: 1.05rem; + line-height: 1.7; +} +[data-md-color-scheme="comfy"] .md-typeset .doc .doc-object { + margin: 1.2rem 0 1.5rem; + padding: 1.1rem 1.35rem; +} +[data-md-color-scheme="comfy"] .md-typeset .doc .table th, +[data-md-color-scheme="comfy"] .md-typeset .doc .table td { + padding: .55rem .75rem; +} +[data-md-color-scheme="comfy"] .md-typeset .sig { + line-height: 1.55; +} diff --git a/docs/gen_ref_pages/config.py b/docs/gen_ref_pages/config.py new file mode 100644 index 0000000..eeff720 --- /dev/null +++ b/docs/gen_ref_pages/config.py @@ -0,0 +1,55 @@ +from pathlib import Path + +# Global configuration flags and constants +INCLUDE_PRIVATE = False # Whether to include private packages (names starting with "_") +SOURCE_DIR = Path("src") # Root source directory to search for packages + +# Mapping from source subdirectories > human-readable section titles +SECTION_TITLE_MAP: dict[str, str] = {} + +# Explicit ordering for sections when displaying documentation or indexes +SECTION_ORDER: dict[str, int] = {} + +# File extensions that should be recognized as linkable images +LINKABLE_IMAGE_EXTENSIONS = {".png", ".jpg", ".jpeg", ".ico", ".gif"} + + +def _is_pkg_dir(path: Path) -> bool: + """ + Check whether a given path points to a valid Python package directory. + + A valid package directory must: + 1. Be a directory. + 2. Contain an __init__.py file. + + :param path: Filesystem path to check. + :return: True if the path is a Python package directory, False otherwise. + """ + return path.is_dir() and (path / "__init__.py").exists() + + +def find_package_dir(include_private: bool = INCLUDE_PRIVATE) -> tuple[Path, str]: + """ + Locate the first valid Python package directory under SOURCE_DIR. + + - Private packages (names starting with "_") can be excluded unless explicitly allowed. + - If multiple candidates exist, the package with the lexicographically smallest name is chosen. + + :param include_private: Whether to allow private packages (default: global INCLUDE_PRIVATE). + :return: Tuple (package_path, package_name). + :raises SystemExit: If no valid package directory is found. + """ + # Gather all package directories under SOURCE_DIR + candidates = [ + package_path + for package_path in SOURCE_DIR.iterdir() + if _is_pkg_dir(package_path) and (include_private or not package_path.name.startswith("_")) + ] + + # No valid package found > stop execution with an error message + if not candidates: + raise SystemExit("No package found in src/. Make sure you have something like " "src/yourpkg/__init__.py") + + # Pick the lexicographically smallest directory (deterministic choice) + package_dir = min(candidates, key=lambda package_path: package_path.name) + return package_dir, package_dir.name diff --git a/docs/gen_ref_pages/context.py b/docs/gen_ref_pages/context.py new file mode 100644 index 0000000..3a841b1 --- /dev/null +++ b/docs/gen_ref_pages/context.py @@ -0,0 +1,50 @@ +from dataclasses import dataclass, field + +# Record structure: +# - tuple: arbitrary metadata (e.g., file info) +# - tuple[str, ...]: path parts (e.g., ("pkg", "subpkg")) +# - str: identifier/name +# - bool: status flag +Record = tuple[tuple, tuple[str, ...], str, bool] + + +@dataclass +class Context: + """ + Holds the in-memory representation of a package hierarchy. (tree structure) + + Tracks: + - Created folder paths. + - Relationships between parent folders → child directories/modules. + - Records associated with discovered entities. + """ + + # Set of folder paths already created (each as a tuple of path parts). + created_folders: set[tuple[str, ...]] = field(default_factory=set) + + # Map: parent folder > set of child directories. + children_directories: dict[tuple[str, ...], set[tuple[str, ...]]] = field(default_factory=dict) + + # Map: parent folder > list of child modules. + children_modules: dict[tuple[str, ...], list[tuple[str, ...]]] = field(default_factory=dict) + + # Collected records for all discovered items (see Record type alias). + records: list[Record] = field(default_factory=list) + + def ensure_folder(self, parts: list[str]) -> None: + """ + Ensure that a folder path is registered in the context. + + If the folder path is not yet known: + - Add it to created_folders. + - Initialize its entry in children_directories and children_modules. + + :param parts: Path components for the folder (e.g., ["pkg", "subpkg"]). + :return: None + """ + key = tuple(parts) + + if key not in self.created_folders: + self.created_folders.add(key) + self.children_directories.setdefault(key, set()) + self.children_modules.setdefault(key, []) diff --git a/docs/gen_ref_pages/gen_ref_pages.py b/docs/gen_ref_pages/gen_ref_pages.py new file mode 100644 index 0000000..71a0da6 --- /dev/null +++ b/docs/gen_ref_pages/gen_ref_pages.py @@ -0,0 +1,150 @@ +""" +Automatic API Documentation Generator for MkDocs. + +This script integrates with the `mkdocs-gen-files` plugin to dynamically +generate API reference documentation from a Python package located in +the source directory (by default `src/`, but this can be changed in `config.py` +via the `SOURCE_DIR` setting). + +Workflow: +1. Detects the main package directory under `SOURCE_DIR` (logic in `config.py`). +2. Traverses the package structure (using `traverse.py`) to discover + modules, subpackages, and static files. +3. Generates Markdown pages for: + - Each Python module (using `::: module.path` blocks for mkdocstrings). + - Each package/directory (with backlinks, subdirectory lists, + module lists, and static file sections). +4. Stores navigation metadata in a `Context` object (`context.py`). +5. Builds navigation files: + - `reference/index.md` → top-level reference index page, + - `reference/SUMMARY.md` → literate navigation for MkDocs. + +Usage (short form): +- Run this script as part of the MkDocs build process (`mkdocs build` or `mkdocs serve`). +- The script will automatically: + - detect the target package, + - create a documentation tree in the `reference/` directory, + - prepare navigation for integration with MkDocs. + +Usage (with MkDocs): +1) Install required packages: + pip install mkdocs mkdocs-gen-files "mkdocstrings[python]" + +2) Ensure your project layout looks for example like this: + . + ├─ mkdocs.yml + ├─ docs/ + │ └─ gen_ref_pages/ + │ ├─ gen_ref_pages.py # this script + │ ├─ config.py + │ ├─ context.py + │ ├─ generate.py + │ ├─ helpers.py + │ └─ traverse.py + ├─ src/ # or another source dir set in config.SOURCE_DIR + │ └─ /... + +3) Configure `mkdocs.yml` with plugins and navigation, e.g.: + site_name: Your Documentation + plugins: + - search + - gen-files: + scripts: + - docs/gen_ref_pages/gen_ref_pages.py # path to this script + - mkdocstrings: + handlers: + python: + options: + show_source: true + docstring_style: google # or "sphinx"/"numpy", depending on your style + nav: + - Reference: reference/ # generated reference section + +4) Run: + - Live preview: mkdocs serve + - Build static site: mkdocs build + +Customization: +- Configuration is located in `config.py`: + - `SOURCE_DIR`: source directory where the package is located (default: `Path("src")`). + You can change this to any other directory (e.g. `Path("packages")`). + - `INCLUDE_PRIVATE`: whether to include private modules/packages (path parts starting with `_`). + - `SECTION_TITLE_MAP` and `SECTION_ORDER`: control naming and ordering of sections in navigation. + - `LINKABLE_IMAGE_EXTENSIONS`: which static files (in source directories) should be linked as clickable images. + +This script is intended to be run automatically as part of the MkDocs build process. +You can place it anywhere in your repository and reference its path under `gen-files.scripts`. +""" + +import sys +from pathlib import Path + +# Ensure the current directory is on sys.path so local imports work correctly +THIS_DIR = Path(__file__).resolve().parent +THIS_DIR_STR = str(THIS_DIR) +if THIS_DIR_STR not in sys.path: + sys.path.insert(0, THIS_DIR_STR) + +import mkdocs_gen_files # noqa E402 +from config import INCLUDE_PRIVATE, find_package_dir # noqa E402 +from context import Context # noqa E402 +from generate import generate_directory_pages, generate_module_pages # noqa E402 +from traverse import traverse_directories # noqa E402 + + +def _build_nav(package_name: str, ctx: Context) -> None: + """ + Build MkDocs navigation files from collected documentation records. + + - Creates `reference/index.md` with a title and introduction. + - Creates `reference/SUMMARY.md` containing a literate navigation structure. + + :param package_name: Name of the discovered package. + :param ctx: Context holding collected records from traversal. + :return: None + """ + nav = mkdocs_gen_files.Nav() + + # Sort collected records and populate the navigation + for _, display, doc_rel_path, _ in sorted(ctx.records, key=lambda record: record[0]): + nav[display] = doc_rel_path + + # Generate top-level index page + with mkdocs_gen_files.open("reference/index.md", "w") as file_handle: + file_handle.write(f"# Reference – `{package_name}`\n\n") + file_handle.write("This section contains API documentation automatically " "generated from code.\n\n") + + # Generate SUMMARY.md for MkDocs navigation + with mkdocs_gen_files.open("reference/SUMMARY.md", "w") as nav_file: + nav_file.writelines(nav.build_literate_nav()) + + +def main() -> None: + """ + Entry point for documentation generation. + + - Finds the main package under `src/`. + - Traverses directories to collect modules/folders. + - Generates module and directory pages. + - Builds MkDocs navigation files. + + :return: None + """ + package_dir, package_name = find_package_dir(INCLUDE_PRIVATE) + + # Initialize a context object to hold traversal state and records + ctx = Context() + + # Walk through directories and collect module/folder information + traverse_directories(package_dir, package_name, INCLUDE_PRIVATE, ctx) + + # Generate documentation pages for modules and directories + generate_module_pages(package_dir, ctx) + generate_directory_pages(ctx) + + # Build navigation index files + _build_nav(package_name, ctx) + + +# Run the main process when the script is executed +main() diff --git a/docs/gen_ref_pages/generate.py b/docs/gen_ref_pages/generate.py new file mode 100644 index 0000000..c25ec9f --- /dev/null +++ b/docs/gen_ref_pages/generate.py @@ -0,0 +1,267 @@ +from pathlib import Path +from typing import TextIO + +import mkdocs_gen_files +from config import LINKABLE_IMAGE_EXTENSIONS, SOURCE_DIR +from context import Context +from helpers import display_parts_for, is_private, sort_key_for + + +def _iter_public_python_files(package_dir: Path) -> list[Path]: + """ + Recursively collect all public Python files within a package directory. + + - Excludes __init__.py files. + - Excludes private files (names starting with "_"). + + :param package_dir: Base package directory. + :return: Sorted list of Python file paths. + """ + files: list[Path] = [] + for python_file in package_dir.rglob("*.py"): + if python_file.name == "__init__.py": + continue + if is_private(python_file): + continue + files.append(python_file) + return sorted(files) + + +def _parts_from_source(python_file: Path) -> tuple[str, ...]: + """ + Convert a Python file path under SOURCE_DIR into module parts. + + Example: + src/pkg/module.py > ("pkg", "module") + + :param python_file: Path to a Python file under SOURCE_DIR. + :return: Tuple of path components without an extension. + """ + return tuple(python_file.relative_to(SOURCE_DIR).with_suffix("").parts) + + +def _write_backlink_if_needed(fh: TextIO, parts: list[str]) -> None: + """ + Write a backlink to the parent index if the page is not top-level. + + :param fh: File handle to write to. + :param parts: Current parts representing this page. + :return: None + """ + if len(parts) > 1: + parent_label = display_parts_for(parts[:-1])[-1] + fh.write(f"[⬅ Back to {parent_label}](../index.md)\n\n") + + +def _record_page(ctx: Context, display_parts: list[str], doc_path: Path, is_directory: bool) -> None: + """ + Add a record of a generated page to the context. + + :param ctx: Shared Context object. + :param display_parts: Human-readable parts for display. + :param doc_path: Path to the generated documentation file. + :param is_directory: Whether the record refers to a directory index. + :return: None + """ + display_tuple = tuple(display_parts) + doc_rel_path = doc_path.relative_to("reference").as_posix() + ctx.records.append((sort_key_for(display_parts), display_tuple, doc_rel_path, is_directory)) + + +def _display_sort_key(parts_like: tuple[str, ...]) -> tuple: + """ + Compute a sort key for display purposes. + + :param parts_like: Tuple of path parts. + :return: Sort key tuple. + """ + return sort_key_for(display_parts_for(list(parts_like))) + + +def _write_module_page(doc_path: Path, module_path: str, parent_parts: tuple[str, ...], source_file: Path) -> None: + """ + Generate a documentation page for a single module. + + :param doc_path: Target documentation path (index.md). + :param module_path: Dotted module path (e.g., "pkg.module"). + :param parent_parts: Path parts for the parent package. + :param source_file: Path to the source Python file. + :return: None + """ + mkdocs_gen_files.set_edit_path(doc_path, source_file) + with mkdocs_gen_files.open(doc_path, "w") as file_handle: + if parent_parts: + _write_backlink_if_needed(file_handle, list(parent_parts) + ["_placeholder_"]) + file_handle.write(f"::: {module_path}\n") + + +def _collect_static_files(source_folder_fs: Path) -> list[Path]: + """ + Collect non-Python static files in a source folder. + + - Skips private files (names starting with "_"). + - Includes only non-.py files. + + :param source_folder_fs: Filesystem path to the source folder. + :return: List of static file paths. + """ + static_files: list[Path] = [] + if source_folder_fs.exists(): + for source_file in sorted(source_folder_fs.iterdir()): + if source_file.name.startswith("_"): + continue + if source_file.is_file() and source_file.suffix != ".py": + static_files.append(source_file) + return static_files + + +def _emit_static_files_list( + parts: list[str], + static_files: list[Path], + file_handle: TextIO, +) -> None: + """ + Emit a section listing static files for a given folder. + + - Copies static files into `reference/.../_files/`. + - Links images if the extension is in LINKABLE_IMAGE_EXTENSIONS. + + :param parts: Path parts of the folder. + :param static_files: List of static file paths. + :param file_handle: File handle to write documentation into. + :return: None + """ + if not static_files: + return + + file_handle.write("## 🗃️ Static Files\n\n") + + for file_path in static_files: + destination = Path("reference", *parts, "_files", file_path.name) + + # Copy file content into the documentation tree + with mkdocs_gen_files.open(destination, "wb") as out_file: + out_file.write(file_path.read_bytes()) + + # Build relative link + relative_link = f"_files/{file_path.name}" + ext = file_path.suffix.lower() + + # Display images as clickable links + if ext in LINKABLE_IMAGE_EXTENSIONS: + file_handle.write(f"- [{file_path.name}]({relative_link})\n") + else: + file_handle.write(f"- {file_path.name}\n") + + file_handle.write("\n") + + +def _write_directory_page( + ctx: Context, + parts: list[str], + subdirectories: list[tuple[str, ...]], + modules: list[tuple[str, ...]], + static_files: list[Path], +) -> Path: + """ + Generate a documentation index page for a directory. + + Includes: + - Backlink to parent if applicable. + - Subdirectory links. + - Module links. + - Static file listings. + + :param ctx: Context to update with record. + :param parts: Path parts of the directory. + :param subdirectories: List of subdirectory paths. + :param modules: List of module paths. + :param static_files: List of static file paths in this directory. + :return: Path to generated index.md file. + """ + doc_path = Path("reference", *parts, "index.md") + + mkdocs_gen_files.set_edit_path(doc_path, SOURCE_DIR.joinpath(*parts, "__init__.py")) + + with mkdocs_gen_files.open(doc_path, "w") as file_handle: + _write_backlink_if_needed(file_handle, parts) + + file_handle.write(f"# `{'.'.join(parts)}`\n\n") + + if subdirectories: + file_handle.write("## 📁 Subdirectories\n\n") + for child in subdirectories: + label = display_parts_for(list(child))[-1] + file_handle.write(f"- [{label}]({child[-1]}/index.md)\n") + file_handle.write("\n") + + if modules: + file_handle.write("## 📄 Modules\n\n") + for child in modules: + label = display_parts_for(list(child))[-1] + file_handle.write(f"- [{label}]({child[-1]}/index.md)\n") + file_handle.write("\n") + + _emit_static_files_list(parts, static_files, file_handle) + + # Fallback if directory is empty + if not subdirectories and not modules and not static_files: + file_handle.write("_This section has no subdirectories, modules, or static files yet._\n") + + _record_page(ctx, display_parts_for(parts), doc_path, is_directory=True) + return doc_path + + +def generate_module_pages(package_dir: Path, ctx: Context) -> None: + """ + Generate documentation pages for all public modules under a package. + + :param package_dir: Root package directory. + :param ctx: Context object to update. + :return: None + """ + for python_file in _iter_public_python_files(package_dir): + parts = _parts_from_source(python_file) + parent_parts = parts[:-1] + + # Ensure parent folder exists in context + ctx.ensure_folder(list(parent_parts)) + + # Add this module under its parent + ctx.children_modules.setdefault(parent_parts, []).append(parts) + + module_path = ".".join(parts) + doc_path = Path("reference", *parts, "index.md") + + # Write module page and record it + _write_module_page(doc_path, module_path, parent_parts, python_file) + _record_page(ctx, display_parts_for(list(parts)), doc_path, is_directory=False) + + +def generate_directory_pages(ctx: Context) -> None: + """ + Generate documentation index pages for all discovered directories. + + :param ctx: Context object holding traversal state. + :return: None + """ + for key in sorted(ctx.created_folders): + parts = list(key) + parts_tuple = tuple(parts) + + source_folder_fs = SOURCE_DIR.joinpath(*parts) + source_folder_fs = SOURCE_DIR.joinpath(*parts) + static_files = _collect_static_files(source_folder_fs) + + # Gather subdirectories and modules for this folder + subdirectories = sorted( + ctx.children_directories.get(parts_tuple, set()), + key=_display_sort_key, + ) + modules = sorted( + ctx.children_modules.get(parts_tuple, []), + key=_display_sort_key, + ) + + # Write directory index page + _write_directory_page(ctx, parts, subdirectories, modules, static_files) diff --git a/docs/gen_ref_pages/helpers.py b/docs/gen_ref_pages/helpers.py new file mode 100644 index 0000000..7710695 --- /dev/null +++ b/docs/gen_ref_pages/helpers.py @@ -0,0 +1,83 @@ +from collections.abc import Iterable +from pathlib import Path + +from config import INCLUDE_PRIVATE, SECTION_ORDER, SECTION_TITLE_MAP + + +def is_private(path: Path) -> bool: + """ + Determine whether a given path should be considered private. + + Rules: + - If INCLUDE_PRIVATE is True > nothing is private. + - Otherwise, any path component starting with "_" marks it as private. + + :param path: Filesystem path. + :return: True if the path is private, False otherwise. + """ + return False if INCLUDE_PRIVATE else any(package_path.startswith("_") for package_path in path.parts) + + +def prettify(label: str) -> str: + """ + Convert an identifier string into a user-friendly label. + + - Underscores are replaced with spaces. + - Each word is capitalized. + + Example: + "my_module" > "My Module" + + :param label: Original string. + :return: Prettified version. + """ + return label.replace("_", " ").title() + + +def display_parts_for(parts: list[str]) -> list[str]: + """ + Build display-friendly parts for navigation from raw path parts. + + - Second element may be replaced by a mapped section title (SECTION_TITLE_MAP). + - Remaining elements are prettified. + + Example: + ["mypkg", "ui", "main_window"] + > ["mypkg", "UI", "Main Window"] + + :param parts: Raw path components. + :return: List of human-readable display parts. + """ + display = list(parts) + + # Replace known section keys (e.g., "ui" > "UI") + if len(display) >= 2 and display[1] in SECTION_TITLE_MAP: + display[1] = SECTION_TITLE_MAP[display[1]] + + # Prettify remaining elements + for i in range(1, len(display)): + display[i] = prettify(display[i]) + + return display + + +def sort_key_for(display_parts: Iterable[str]) -> tuple: + """ + Build a sort key for consistent ordering of navigation items. + + Criteria: + 1. Section order (from SECTION_ORDER, default 999). + 2. Path length (shorter first). + 3. Alphabetical (case-insensitive). + + :param display_parts: Human-readable path parts. + :return: Tuple usable as the sort key. + """ + path_parts = list(display_parts) + section = path_parts[1] if len(path_parts) >= 2 else "" + + return ( + SECTION_ORDER.get(section, 999), + len(path_parts), + tuple(part.lower() for part in path_parts), + ) diff --git a/docs/gen_ref_pages/traverse.py b/docs/gen_ref_pages/traverse.py new file mode 100644 index 0000000..5017462 --- /dev/null +++ b/docs/gen_ref_pages/traverse.py @@ -0,0 +1,124 @@ +import os +from collections.abc import Iterable +from pathlib import Path + +from context import Context +from helpers import is_private + + +def _walk_dirs(package_dir: Path, include_private: bool) -> Iterable[tuple[Path, list[str]]]: + """ + Walk the filesystem tree starting at package_dir and yield + (relative_dir, subdirs) pairs. + + Rules: + - Private subdirectories (names starting with "_") are removed in-place + unless include_private=True. + - Entire directories marked private are skipped completely. + + :param package_dir: Path to the root package (e.g., src/mypkg). + :param include_private: Whether to include private directories. + :return: Iterator of (relative_dir, subdirs). + + Example: + "src/mypkg" > [(Path("mypkg"), ["subdir1", "subdir2"])] + """ + source_dir = package_dir.parent + + # Walk filesystem tree starting at package_dir + for current_dirpath, subdirs, _ in os.walk(package_dir): + relative_dir = Path(current_dirpath).relative_to(source_dir) + + # Remove private subdirectories in-place if not including them + if not include_private: + subdirs[:] = [dirname for dirname in subdirs if not dirname.startswith("_")] + + # Skip the current directory if it's marked private + if is_private(relative_dir): + continue + + yield relative_dir, subdirs + + +def _parts_for(relative_dir: Path, package_name: str) -> list[str]: + """ + Convert a relative path into parts; fallback to package_name for the root. + + :param relative_dir: Path relative to the source directory. + :param package_name: Top-level package name. + :return: List of path components. + + Examples: + "mypkg/subdir" > ["mypkg", "subdir"] + "." (root) > ["mypkg"] + """ + return list(relative_dir.parts) or [package_name] + + +def _register_folder(ctx: Context, folder_parts: list[str]) -> tuple[str, ...]: + """ + Ensure the given folder exists in Context and return it as a tuple key. + + :param ctx: Shared Context object. + :param folder_parts: List of folder path components. + :return: Tuple representation of the folder path. + + Example: + ["mypkg", "subdir"] > ("mypkg", "subdir") + """ + ctx.ensure_folder(folder_parts) + return tuple(folder_parts) + + +def _register_children(ctx: Context, parent_parts: list[str], child_names: Iterable[str]) -> None: + """ + Register each child subdirectory of a given parent folder in Context. + + :param ctx: Shared Context object. + :param parent_parts: Parent folder path components. + :param child_names: Iterable of subdirectory names. + :return: None + + Example: + ["mypkg"], ["a", "b"] > {("mypkg", "a"), ("mypkg", "b")} + """ + parent_t = tuple(parent_parts) + # Register each child subdirectory + for dirname in sorted(child_names): + child_parts = parent_parts + [dirname] + ctx.ensure_folder(child_parts) + ctx.children_directories[parent_t].add(tuple(child_parts)) + + +def traverse_directories( + package_dir: Path, + package_name: str, + include_private: bool, + ctx: Context, +) -> None: + """ + Walk through the package directory tree and populate the Context + with discovered folders and their relationships. + + Rules: + - Private directories (names starting with "_") are skipped unless + include_private=True. + - Each valid folder is registered in ctx.created_folders. + - Parent > child directory relationships are stored in ctx.children_directories. + + :param package_dir: Path to the root package (e.g., src/mypkg). + :param package_name: Top-level package name. + :param include_private: Whether to include private directories. + :param ctx: Shared Context object to update. + :return: None + + Example: + "src/mypkg" > {("mypkg",)} + """ + for relative_dir, subdirs in _walk_dirs(package_dir, include_private=include_private): + # Convert the path into parts; fallback to package_name for root + folder_parts = _parts_for(relative_dir, package_name) + _register_folder(ctx, folder_parts) + + # Register each child subdirectory + _register_children(ctx, folder_parts, subdirs) diff --git a/docs/index.md b/docs/index.md new file mode 100644 index 0000000..ef19199 --- /dev/null +++ b/docs/index.md @@ -0,0 +1,168 @@ +# RailNetworkGraph + +A desktop application (built with **CustomTkinter**) that **finds the fastest railway connections** based on **GTFS timetable data**. +It calculates **route distance**, **ticket price**, and displays the **path on an interactive map**. + +The input data consists of **GTFS files** (`routes.txt`, `stops.txt`, `trips.txt`, `stop_times.txt`), +from which the application builds **time-expanded** and **station-level graphs**. + +> **License:** `CC0-1.0` +> **Requirements:** `Python 3.12–3.14`, `CustomTkinter`, `Pandas`, `Matplotlib`, `GeoPandas`, `NetworkX` + +------------------------------------------------------------------------ + +## Features + +- **Fastest route search** + - Uses **Dijkstra’s algorithm** on a **time-expanded graph** built from GTFS data. + - Considers **departure and transfer times** between trains. +- **Distance and price calculation** + - Computes **railway segment lengths** (not straight-line). + - Ticket price calculated based on **distance-based price table** and **discounts**. +- **Interactive visualization** + - Map (Matplotlib) with **stations**, **connections**, and **region borders**. + - Route highlighted in red. +- **Station info popups** + - Click on a station to view **nearest departures**. +- **CustomTkinter GUI** + - Multiple panels: input, results, interactive map. + +------------------------------------------------------------------------ + +## Requirements & Dependencies + +- **Python:** 3.12–3.14 +- **System:** Windows (PyInstaller build), other systems supported via source install. +- **Runtime libraries:** `customtkinter`, `pandas`, `matplotlib`, `geopandas`, `networkx` +- **Dev (optional):** `ruff`, `black`, `mypy`, `pyinstaller`, etc. (see `requirements-dev.txt`) + +------------------------------------------------------------------------ + +## Installation + +### Poetry + +**Users** (runtime dependencies only): + +``` bash +poetry install --without dev +poetry run rail_network_graph +``` + +**Developers** (runtime + dev dependencies): + +``` bash +poetry install +poetry run rail_network_graph +``` + +### Pip (from local repo) + +**Users** (runtime dependencies only): + +``` bash +pip install -r requirements.txt +pip install -e . +rail_network_graph +# or: +python -m rail_network_graph +``` + +**Developers** (runtime + dev dependencies): + +``` bash +pip install -r requirements.txt -r requirements-dev.txt +pip install -e . +rail_network_graph +``` + +------------------------------------------------------------------------ + +## Run (Quick Start) + +1. Launch the app: + + ``` bash + rail_network_graph + ``` + +2. Enter **origin station**, **destination station**, and **start time** (`HH:MM:SS`). +3. Optionally select a **discount**. +4. Click **Search** to find the fastest connection. +5. View **route**, **distance**, **duration**, and **price** in the popup. +6. The path is highlighted on the map. +7. Click any station to see **nearest departures**. + +------------------------------------------------------------------------ + +## Project Structure + + rail_network_graph/ + ├─ __main__.py # entry point (python -m rail_network_graph) + ├─ app.py # main app: data loading, graph initialization, GUI setup + ├─ config.py # configuration (paths, constants) + ├─ logging_config.py # colored/file logging + ANSI detection + │ + ├─ assets/ + │ ├─ data/ + │ │ ├─ gtfs_data/ # routes.txt, stops.txt, trips.txt, stop_times.txt + │ │ ├─ railway_distances/ # railway_segment_lengths.txt + │ │ ├─ tickets_price/ # base_price_table.txt, discounts_percentages.txt + │ │ └─ voivodeship_border/ # geojson map boundaries + │ └─ img/icon.ico # app icon + │ + ├─ data_processing/ + │ ├─ data_loader.py # loads GTFS files into pandas DataFrames + │ └─ data_processor.py # merges and processes timetable data + │ + ├─ distance_counter/ + │ ├─ railway_graph_builder.py # builds railway graph from GeoJSON data + │ ├─ railway_route_calculator.py # computes shortest paths (km) + │ ├─ graph_snapper.py # snaps stations to nearest graph nodes + │ ├─ results_exporter.py # exports calculated distances + │ └─ distance_counter.py # pipeline entry point + │ + ├─ graphs/ + │ ├─ base_graph.py # base class for directed graph + │ └─ stations_graph.py # station-to-station graph from GTFS trips + │ + ├─ GUI/ + │ ├─ gui_creator.py # initializes and connects UI components + │ ├─ counter_panel/ + │ │ ├─ input_panel.py # input fields (station/time/discount) + │ │ ├─ submit_handler.py # search button logic (pathfinding) + │ │ └─ ticket_popup.py # popup showing route summary + │ ├─ map/ + │ │ ├─ map_canvas.py # interactive map canvas (Matplotlib) + │ │ └─ map_plotter.py # draws stations and connections + │ └─ station_info/ + │ ├─ station_info_logic.py # gets timetable info for clicked station + │ └─ station_info_popup.py # popup showing nearest departures + │ + ├─ path_finder/ + │ ├─ graph.py # builds time-expanded graph + │ ├─ path_finder.py # Dijkstra algorithm implementation + │ ├─ cleaner.py # cleans raw paths + │ ├─ models.py # data models for stops/trips + │ └─ time_utils.py # time helpers (HH:MM <-> minutes) + │ + └─ utils/ + ├─ distance_calculator.py # sums distances along route + └─ price_calculator.py # calculates ticket price from distance + +------------------------------------------------------------------------ + +## API / Module Documentation + +Full project documentation: **[API Reference - rail_network_graph](reference/rail_network_graph/index.md)**. + +------------------------------------------------------------------------ + +## License + +This project is released under **CC0-1.0** (public domain). You may +copy, modify, distribute, and use it commercially without additional +permissions. + +⚠️ **Note:** not all files in the repository are under CC0. See the +**LICENSE** file for details. diff --git a/mkdocs.yml b/mkdocs.yml new file mode 100644 index 0000000..76cb580 --- /dev/null +++ b/mkdocs.yml @@ -0,0 +1,108 @@ +# Project information +site_name: RailNetworkGraph # The title of the documentation site +site_description: Docs for RailNetworkGraph # Short description of the site (used in metadata) +repo_url: https://github.com/Antek-N/RailNetworkGraph/ # Link to the GitHub repository +repo_name: Antek-N/RailNetworkGraph # Name of the repository displayed in the UI + +# Theme configuration +theme: + name: material # Use the "Material for MkDocs" theme + language: en # Interface language + font: + text: Inter # Font used for body text + code: JetBrains Mono # Font used for code blocks + features: # Enable additional theme features + - navigation.tabs # Show navigation tabs at the top + - navigation.tabs.sticky # Keep tabs visible while scrolling + - navigation.top # Back-to-top button + - navigation.sections # Group navigation items into sections + - navigation.indexes # Allow section index pages + - toc.integrate # Integrate table of contents into the navigation + - toc.follow # Highlight current section in the table of contents + - content.code.copy # Add a "copy" button to code blocks + - search.suggest # Enable search suggestions + - search.highlight # Highlight search matches in content + palette: # Define color palettes and UI themes + - media: "(prefers-color-scheme: light)" # Default light mode + scheme: default + primary: indigo + accent: indigo + toggle: + icon: material/weather-night # Icon for switching to dark mode + name: Dark mode + - media: "(prefers-color-scheme: dark)" # Default dark mode + scheme: slate + primary: indigo + accent: indigo + toggle: + icon: material/weather-sunny # Icon for switching back to light mode + name: Light mode + - scheme: brand # Custom "brand" color scheme + primary: deep purple + accent: cyan + toggle: + icon: material/palette + name: Brand look + - scheme: compact # Compact layout variant + primary: indigo + accent: indigo + toggle: + icon: material/format-line-spacing + name: Compact spacing + - scheme: comfy # Comfortable spacing variant + primary: indigo + accent: indigo + toggle: + icon: material/format-size + name: Comfortable size + +# Plugins extend MkDocs functionality +plugins: + - search # Built-in search engine + - autorefs # Automatic cross-references between documents + - gen-files: # Generate files dynamically + scripts: + - docs/gen_ref_pages/gen_ref_pages.py # Script for generating reference pages + - literate-nav # Define navigation structure from Markdown files + - mkdocstrings: # Auto-generate API documentation from docstrings + handlers: + python: # Handler for Python code + paths: [src] # Source code directory + options: # Rendering options + docstring_style: sphinx + docstring_section_style: table + separate_signature: true + show_signature_annotations: true + line_length: 88 + group_by_category: true + show_category_heading: true + merge_init_into_class: true + members_order: source + inherited_members: true + show_if_no_docstring: true + show_root_heading: true + show_root_toc_entry: true + show_source: false # Do not show source code links + +# Markdown extensions +markdown_extensions: + - admonition # Support for callout/admonition blocks + - footnotes # Support for footnotes + - attr_list # Allow attributes inside Markdown elements + - pymdownx.details # Collapsible details blocks + - pymdownx.superfences # Enhanced fenced code blocks + - pymdownx.tabbed: # Tabbed content + alternate_style: true + - pymdownx.highlight # Syntax highlighting for code blocks + - toc: # Table of contents + permalink: true # Add anchor links to TOC headings + +# Extra custom CSS +extra_css: + - css/mkdocstrings.css # Custom styles for mkdocstrings + - css/theme-variants.css # Custom styles for theme variants + +# Navigation (menu structure) +nav: + - Home: index.md + - Reference: reference/ \ No newline at end of file diff --git a/poetry.lock b/poetry.lock new file mode 100644 index 0000000..e71ff3b --- /dev/null +++ b/poetry.lock @@ -0,0 +1,2366 @@ +# This file is automatically @generated by Poetry 2.2.1 and should not be changed by hand. + +[[package]] +name = "altgraph" +version = "0.17.4" +description = "Python graph (network) package" +optional = false +python-versions = "*" +groups = ["dev"] +files = [ + {file = "altgraph-0.17.4-py2.py3-none-any.whl", hash = "sha256:642743b4750de17e655e6711601b077bc6598dbfa3ba5fa2b2a35ce12b508dff"}, + {file = "altgraph-0.17.4.tar.gz", hash = "sha256:1b5afbb98f6c4dcadb2e2ae6ab9fa994bbb8c1d75f4fa96d340f9437ae454406"}, +] + +[[package]] +name = "attrs" +version = "25.4.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.9" +groups = ["main"] +files = [ + {file = "attrs-25.4.0-py3-none-any.whl", hash = "sha256:adcf7e2a1fb3b36ac48d97835bb6d8ade15b8dcce26aba8bf1d14847b57a3373"}, + {file = "attrs-25.4.0.tar.gz", hash = "sha256:16d5969b87f0859ef33a48b35d55ac1be6e42ae49d5e853b597db70c35c57e11"}, +] + +[[package]] +name = "babel" +version = "2.17.0" +description = "Internationalization utilities" +optional = false +python-versions = ">=3.8" +groups = ["dev"] +files = [ + {file = "babel-2.17.0-py3-none-any.whl", hash = "sha256:4d0b53093fdfb4b21c92b5213dba5a1b23885afa8383709427046b21c366e5f2"}, + {file = "babel-2.17.0.tar.gz", hash = "sha256:0c54cffb19f690cdcc52a3b50bcbf71e07a808d1c80d549f2459b9d2cf0afb9d"}, +] + +[package.extras] +dev = ["backports.zoneinfo ; python_version < \"3.9\"", "freezegun (>=1.0,<2.0)", "jinja2 (>=3.0)", "pytest (>=6.0)", "pytest-cov", "pytz", "setuptools", "tzdata ; sys_platform == \"win32\""] + +[[package]] +name = "backrefs" +version = "6.0.1" +description = "A wrapper around re and regex that adds additional back references." +optional = false +python-versions = ">=3.9" +groups = ["dev"] +files = [ + {file = "backrefs-6.0.1-py310-none-any.whl", hash = "sha256:78a69e21b71d739b625b52b5adbf7eb1716fb4cf0a39833826f59546f321cb99"}, + {file = "backrefs-6.0.1-py311-none-any.whl", hash = "sha256:6ba76d616ccb02479a3a098ad1f46d92225f280d7bdce7583bc62897f32d946c"}, + {file = "backrefs-6.0.1-py312-none-any.whl", hash = "sha256:2f440f79f5ef5b9083fd366a09a976690044eca0ea0e59ac0508c3630e0ebc7c"}, + {file = "backrefs-6.0.1-py313-none-any.whl", hash = "sha256:62ea7e9b286808576f35b2d28a0daa09b85ae2fc71b82a951d35729b0138e66b"}, + {file = "backrefs-6.0.1-py314-none-any.whl", hash = "sha256:3ba0d943178d24a3721c5d915734767fa93f3bde1d317c4ef9e0f33b21b9c302"}, + {file = "backrefs-6.0.1-py39-none-any.whl", hash = "sha256:b1a61b29c35cc72cfb54886164b626fbe64cab74e9d8dcac125155bd3acdb023"}, + {file = "backrefs-6.0.1.tar.gz", hash = "sha256:54f8453c9ae38417a83c06d23745c634138c8da622d87a12cb3eef9ba66dd466"}, +] + +[package.extras] +extras = ["regex"] + +[[package]] +name = "black" +version = "25.11.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.9" +groups = ["dev"] +files = [ + {file = "black-25.11.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ec311e22458eec32a807f029b2646f661e6859c3f61bc6d9ffb67958779f392e"}, + {file = "black-25.11.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1032639c90208c15711334d681de2e24821af0575573db2810b0763bcd62e0f0"}, + {file = "black-25.11.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0c0f7c461df55cf32929b002335883946a4893d759f2df343389c4396f3b6b37"}, + {file = "black-25.11.0-cp310-cp310-win_amd64.whl", hash = "sha256:f9786c24d8e9bd5f20dc7a7f0cdd742644656987f6ea6947629306f937726c03"}, + {file = "black-25.11.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:895571922a35434a9d8ca67ef926da6bc9ad464522a5fe0db99b394ef1c0675a"}, + {file = "black-25.11.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:cb4f4b65d717062191bdec8e4a442539a8ea065e6af1c4f4d36f0cdb5f71e170"}, + {file = "black-25.11.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d81a44cbc7e4f73a9d6ae449ec2317ad81512d1e7dce7d57f6333fd6259737bc"}, + {file = "black-25.11.0-cp311-cp311-win_amd64.whl", hash = "sha256:7eebd4744dfe92ef1ee349dc532defbf012a88b087bb7ddd688ff59a447b080e"}, + {file = "black-25.11.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:80e7486ad3535636657aa180ad32a7d67d7c273a80e12f1b4bfa0823d54e8fac"}, + {file = "black-25.11.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6cced12b747c4c76bc09b4db057c319d8545307266f41aaee665540bc0e04e96"}, + {file = "black-25.11.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6cb2d54a39e0ef021d6c5eef442e10fd71fcb491be6413d083a320ee768329dd"}, + {file = "black-25.11.0-cp312-cp312-win_amd64.whl", hash = "sha256:ae263af2f496940438e5be1a0c1020e13b09154f3af4df0835ea7f9fe7bfa409"}, + {file = "black-25.11.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:0a1d40348b6621cc20d3d7530a5b8d67e9714906dfd7346338249ad9c6cedf2b"}, + {file = "black-25.11.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:51c65d7d60bb25429ea2bf0731c32b2a2442eb4bd3b2afcb47830f0b13e58bfd"}, + {file = "black-25.11.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:936c4dd07669269f40b497440159a221ee435e3fddcf668e0c05244a9be71993"}, + {file = "black-25.11.0-cp313-cp313-win_amd64.whl", hash = "sha256:f42c0ea7f59994490f4dccd64e6b2dd49ac57c7c84f38b8faab50f8759db245c"}, + {file = "black-25.11.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:35690a383f22dd3e468c85dc4b915217f87667ad9cce781d7b42678ce63c4170"}, + {file = "black-25.11.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:dae49ef7369c6caa1a1833fd5efb7c3024bb7e4499bf64833f65ad27791b1545"}, + {file = "black-25.11.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5bd4a22a0b37401c8e492e994bce79e614f91b14d9ea911f44f36e262195fdda"}, + {file = "black-25.11.0-cp314-cp314-win_amd64.whl", hash = "sha256:aa211411e94fdf86519996b7f5f05e71ba34835d8f0c0f03c00a26271da02664"}, + {file = "black-25.11.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a3bb5ce32daa9ff0605d73b6f19da0b0e6c1f8f2d75594db539fdfed722f2b06"}, + {file = "black-25.11.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9815ccee1e55717fe9a4b924cae1646ef7f54e0f990da39a34fc7b264fcf80a2"}, + {file = "black-25.11.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:92285c37b93a1698dcbc34581867b480f1ba3a7b92acf1fe0467b04d7a4da0dc"}, + {file = "black-25.11.0-cp39-cp39-win_amd64.whl", hash = "sha256:43945853a31099c7c0ff8dface53b4de56c41294fa6783c0441a8b1d9bf668bc"}, + {file = "black-25.11.0-py3-none-any.whl", hash = "sha256:e3f562da087791e96cefcd9dda058380a442ab322a02e222add53736451f604b"}, + {file = "black-25.11.0.tar.gz", hash = "sha256:9a323ac32f5dc75ce7470501b887250be5005a01602e931a15e45593f70f6e08"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +pytokens = ">=0.3.0" + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.10)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2025.11.12" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.7" +groups = ["main", "dev"] +files = [ + {file = "certifi-2025.11.12-py3-none-any.whl", hash = "sha256:97de8790030bbd5c2d96b7ec782fc2f7820ef8dba6db909ccf95449f2d062d4b"}, + {file = "certifi-2025.11.12.tar.gz", hash = "sha256:d8ab5478f2ecd78af242878415affce761ca6bc54a22a27e026d7c25357c3316"}, +] + +[[package]] +name = "cfgv" +version = "3.4.0" +description = "Validate configuration and produce human readable error messages." +optional = false +python-versions = ">=3.8" +groups = ["dev"] +files = [ + {file = "cfgv-3.4.0-py2.py3-none-any.whl", hash = "sha256:b7265b1f29fd3316bfcd2b330d63d024f2bfd8bcb8b0272f8e19a504856c48f9"}, + {file = "cfgv-3.4.0.tar.gz", hash = "sha256:e52591d4c5f5dead8e0f673fb16db7949d2cfb3f7da4582893288f0ded8fe560"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.4.4" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7" +groups = ["dev"] +files = [ + {file = "charset_normalizer-3.4.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e824f1492727fa856dd6eda4f7cee25f8518a12f3c4a56a74e8095695089cf6d"}, + {file = "charset_normalizer-3.4.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4bd5d4137d500351a30687c2d3971758aac9a19208fc110ccb9d7188fbe709e8"}, + {file = "charset_normalizer-3.4.4-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:027f6de494925c0ab2a55eab46ae5129951638a49a34d87f4c3eda90f696b4ad"}, + {file = "charset_normalizer-3.4.4-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f820802628d2694cb7e56db99213f930856014862f3fd943d290ea8438d07ca8"}, + {file = "charset_normalizer-3.4.4-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:798d75d81754988d2565bff1b97ba5a44411867c0cf32b77a7e8f8d84796b10d"}, + {file = "charset_normalizer-3.4.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9d1bb833febdff5c8927f922386db610b49db6e0d4f4ee29601d71e7c2694313"}, + {file = "charset_normalizer-3.4.4-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:9cd98cdc06614a2f768d2b7286d66805f94c48cde050acdbbb7db2600ab3197e"}, + {file = "charset_normalizer-3.4.4-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:077fbb858e903c73f6c9db43374fd213b0b6a778106bc7032446a8e8b5b38b93"}, + {file = "charset_normalizer-3.4.4-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:244bfb999c71b35de57821b8ea746b24e863398194a4014e4c76adc2bbdfeff0"}, + {file = "charset_normalizer-3.4.4-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:64b55f9dce520635f018f907ff1b0df1fdc31f2795a922fb49dd14fbcdf48c84"}, + {file = "charset_normalizer-3.4.4-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:faa3a41b2b66b6e50f84ae4a68c64fcd0c44355741c6374813a800cd6695db9e"}, + {file = "charset_normalizer-3.4.4-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:6515f3182dbe4ea06ced2d9e8666d97b46ef4c75e326b79bb624110f122551db"}, + {file = "charset_normalizer-3.4.4-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cc00f04ed596e9dc0da42ed17ac5e596c6ccba999ba6bd92b0e0aef2f170f2d6"}, + {file = "charset_normalizer-3.4.4-cp310-cp310-win32.whl", hash = "sha256:f34be2938726fc13801220747472850852fe6b1ea75869a048d6f896838c896f"}, + {file = "charset_normalizer-3.4.4-cp310-cp310-win_amd64.whl", hash = "sha256:a61900df84c667873b292c3de315a786dd8dac506704dea57bc957bd31e22c7d"}, + {file = "charset_normalizer-3.4.4-cp310-cp310-win_arm64.whl", hash = "sha256:cead0978fc57397645f12578bfd2d5ea9138ea0fac82b2f63f7f7c6877986a69"}, + {file = "charset_normalizer-3.4.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:6e1fcf0720908f200cd21aa4e6750a48ff6ce4afe7ff5a79a90d5ed8a08296f8"}, + {file = "charset_normalizer-3.4.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5f819d5fe9234f9f82d75bdfa9aef3a3d72c4d24a6e57aeaebba32a704553aa0"}, + {file = "charset_normalizer-3.4.4-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:a59cb51917aa591b1c4e6a43c132f0cdc3c76dbad6155df4e28ee626cc77a0a3"}, + {file = "charset_normalizer-3.4.4-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:8ef3c867360f88ac904fd3f5e1f902f13307af9052646963ee08ff4f131adafc"}, + {file = "charset_normalizer-3.4.4-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d9e45d7faa48ee908174d8fe84854479ef838fc6a705c9315372eacbc2f02897"}, + {file = "charset_normalizer-3.4.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:840c25fb618a231545cbab0564a799f101b63b9901f2569faecd6b222ac72381"}, + {file = "charset_normalizer-3.4.4-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:ca5862d5b3928c4940729dacc329aa9102900382fea192fc5e52eb69d6093815"}, + {file = "charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d9c7f57c3d666a53421049053eaacdd14bbd0a528e2186fcb2e672effd053bb0"}, + {file = "charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:277e970e750505ed74c832b4bf75dac7476262ee2a013f5574dd49075879e161"}, + {file = "charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:31fd66405eaf47bb62e8cd575dc621c56c668f27d46a61d975a249930dd5e2a4"}, + {file = "charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:0d3d8f15c07f86e9ff82319b3d9ef6f4bf907608f53fe9d92b28ea9ae3d1fd89"}, + {file = "charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:9f7fcd74d410a36883701fafa2482a6af2ff5ba96b9a620e9e0721e28ead5569"}, + {file = "charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:ebf3e58c7ec8a8bed6d66a75d7fb37b55e5015b03ceae72a8e7c74495551e224"}, + {file = "charset_normalizer-3.4.4-cp311-cp311-win32.whl", hash = "sha256:eecbc200c7fd5ddb9a7f16c7decb07b566c29fa2161a16cf67b8d068bd21690a"}, + {file = "charset_normalizer-3.4.4-cp311-cp311-win_amd64.whl", hash = "sha256:5ae497466c7901d54b639cf42d5b8c1b6a4fead55215500d2f486d34db48d016"}, + {file = "charset_normalizer-3.4.4-cp311-cp311-win_arm64.whl", hash = "sha256:65e2befcd84bc6f37095f5961e68a6f077bf44946771354a28ad434c2cce0ae1"}, + {file = "charset_normalizer-3.4.4-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0a98e6759f854bd25a58a73fa88833fba3b7c491169f86ce1180c948ab3fd394"}, + {file = "charset_normalizer-3.4.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b5b290ccc2a263e8d185130284f8501e3e36c5e02750fc6b6bdeb2e9e96f1e25"}, + {file = "charset_normalizer-3.4.4-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:74bb723680f9f7a6234dcf67aea57e708ec1fbdf5699fb91dfd6f511b0a320ef"}, + {file = "charset_normalizer-3.4.4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f1e34719c6ed0b92f418c7c780480b26b5d9c50349e9a9af7d76bf757530350d"}, + {file = "charset_normalizer-3.4.4-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:2437418e20515acec67d86e12bf70056a33abdacb5cb1655042f6538d6b085a8"}, + {file = "charset_normalizer-3.4.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:11d694519d7f29d6cd09f6ac70028dba10f92f6cdd059096db198c283794ac86"}, + {file = "charset_normalizer-3.4.4-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:ac1c4a689edcc530fc9d9aa11f5774b9e2f33f9a0c6a57864e90908f5208d30a"}, + {file = "charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:21d142cc6c0ec30d2efee5068ca36c128a30b0f2c53c1c07bd78cb6bc1d3be5f"}, + {file = "charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:5dbe56a36425d26d6cfb40ce79c314a2e4dd6211d51d6d2191c00bed34f354cc"}, + {file = "charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:5bfbb1b9acf3334612667b61bd3002196fe2a1eb4dd74d247e0f2a4d50ec9bbf"}, + {file = "charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:d055ec1e26e441f6187acf818b73564e6e6282709e9bcb5b63f5b23068356a15"}, + {file = "charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:af2d8c67d8e573d6de5bc30cdb27e9b95e49115cd9baad5ddbd1a6207aaa82a9"}, + {file = "charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:780236ac706e66881f3b7f2f32dfe90507a09e67d1d454c762cf642e6e1586e0"}, + {file = "charset_normalizer-3.4.4-cp312-cp312-win32.whl", hash = "sha256:5833d2c39d8896e4e19b689ffc198f08ea58116bee26dea51e362ecc7cd3ed26"}, + {file = "charset_normalizer-3.4.4-cp312-cp312-win_amd64.whl", hash = "sha256:a79cfe37875f822425b89a82333404539ae63dbdddf97f84dcbc3d339aae9525"}, + {file = "charset_normalizer-3.4.4-cp312-cp312-win_arm64.whl", hash = "sha256:376bec83a63b8021bb5c8ea75e21c4ccb86e7e45ca4eb81146091b56599b80c3"}, + {file = "charset_normalizer-3.4.4-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e1f185f86a6f3403aa2420e815904c67b2f9ebc443f045edd0de921108345794"}, + {file = "charset_normalizer-3.4.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6b39f987ae8ccdf0d2642338faf2abb1862340facc796048b604ef14919e55ed"}, + {file = "charset_normalizer-3.4.4-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:3162d5d8ce1bb98dd51af660f2121c55d0fa541b46dff7bb9b9f86ea1d87de72"}, + {file = "charset_normalizer-3.4.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:81d5eb2a312700f4ecaa977a8235b634ce853200e828fbadf3a9c50bab278328"}, + {file = "charset_normalizer-3.4.4-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5bd2293095d766545ec1a8f612559f6b40abc0eb18bb2f5d1171872d34036ede"}, + {file = "charset_normalizer-3.4.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a8a8b89589086a25749f471e6a900d3f662d1d3b6e2e59dcecf787b1cc3a1894"}, + {file = "charset_normalizer-3.4.4-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:bc7637e2f80d8530ee4a78e878bce464f70087ce73cf7c1caf142416923b98f1"}, + {file = "charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f8bf04158c6b607d747e93949aa60618b61312fe647a6369f88ce2ff16043490"}, + {file = "charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:554af85e960429cf30784dd47447d5125aaa3b99a6f0683589dbd27e2f45da44"}, + {file = "charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:74018750915ee7ad843a774364e13a3db91682f26142baddf775342c3f5b1133"}, + {file = "charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:c0463276121fdee9c49b98908b3a89c39be45d86d1dbaa22957e38f6321d4ce3"}, + {file = "charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:362d61fd13843997c1c446760ef36f240cf81d3ebf74ac62652aebaf7838561e"}, + {file = "charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9a26f18905b8dd5d685d6d07b0cdf98a79f3c7a918906af7cc143ea2e164c8bc"}, + {file = "charset_normalizer-3.4.4-cp313-cp313-win32.whl", hash = "sha256:9b35f4c90079ff2e2edc5b26c0c77925e5d2d255c42c74fdb70fb49b172726ac"}, + {file = "charset_normalizer-3.4.4-cp313-cp313-win_amd64.whl", hash = "sha256:b435cba5f4f750aa6c0a0d92c541fb79f69a387c91e61f1795227e4ed9cece14"}, + {file = "charset_normalizer-3.4.4-cp313-cp313-win_arm64.whl", hash = "sha256:542d2cee80be6f80247095cc36c418f7bddd14f4a6de45af91dfad36d817bba2"}, + {file = "charset_normalizer-3.4.4-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:da3326d9e65ef63a817ecbcc0df6e94463713b754fe293eaa03da99befb9a5bd"}, + {file = "charset_normalizer-3.4.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8af65f14dc14a79b924524b1e7fffe304517b2bff5a58bf64f30b98bbc5079eb"}, + {file = "charset_normalizer-3.4.4-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:74664978bb272435107de04e36db5a9735e78232b85b77d45cfb38f758efd33e"}, + {file = "charset_normalizer-3.4.4-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:752944c7ffbfdd10c074dc58ec2d5a8a4cd9493b314d367c14d24c17684ddd14"}, + {file = "charset_normalizer-3.4.4-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d1f13550535ad8cff21b8d757a3257963e951d96e20ec82ab44bc64aeb62a191"}, + {file = "charset_normalizer-3.4.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ecaae4149d99b1c9e7b88bb03e3221956f68fd6d50be2ef061b2381b61d20838"}, + {file = "charset_normalizer-3.4.4-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:cb6254dc36b47a990e59e1068afacdcd02958bdcce30bb50cc1700a8b9d624a6"}, + {file = "charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:c8ae8a0f02f57a6e61203a31428fa1d677cbe50c93622b4149d5c0f319c1d19e"}, + {file = "charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:47cc91b2f4dd2833fddaedd2893006b0106129d4b94fdb6af1f4ce5a9965577c"}, + {file = "charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:82004af6c302b5d3ab2cfc4cc5f29db16123b1a8417f2e25f9066f91d4411090"}, + {file = "charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:2b7d8f6c26245217bd2ad053761201e9f9680f8ce52f0fcd8d0755aeae5b2152"}, + {file = "charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:799a7a5e4fb2d5898c60b640fd4981d6a25f1c11790935a44ce38c54e985f828"}, + {file = "charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:99ae2cffebb06e6c22bdc25801d7b30f503cc87dbd283479e7b606f70aff57ec"}, + {file = "charset_normalizer-3.4.4-cp314-cp314-win32.whl", hash = "sha256:f9d332f8c2a2fcbffe1378594431458ddbef721c1769d78e2cbc06280d8155f9"}, + {file = "charset_normalizer-3.4.4-cp314-cp314-win_amd64.whl", hash = "sha256:8a6562c3700cce886c5be75ade4a5db4214fda19fede41d9792d100288d8f94c"}, + {file = "charset_normalizer-3.4.4-cp314-cp314-win_arm64.whl", hash = "sha256:de00632ca48df9daf77a2c65a484531649261ec9f25489917f09e455cb09ddb2"}, + {file = "charset_normalizer-3.4.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:ce8a0633f41a967713a59c4139d29110c07e826d131a316b50ce11b1d79b4f84"}, + {file = "charset_normalizer-3.4.4-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:eaabd426fe94daf8fd157c32e571c85cb12e66692f15516a83a03264b08d06c3"}, + {file = "charset_normalizer-3.4.4-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:c4ef880e27901b6cc782f1b95f82da9313c0eb95c3af699103088fa0ac3ce9ac"}, + {file = "charset_normalizer-3.4.4-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:2aaba3b0819274cc41757a1da876f810a3e4d7b6eb25699253a4effef9e8e4af"}, + {file = "charset_normalizer-3.4.4-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:778d2e08eda00f4256d7f672ca9fef386071c9202f5e4607920b86d7803387f2"}, + {file = "charset_normalizer-3.4.4-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f155a433c2ec037d4e8df17d18922c3a0d9b3232a396690f17175d2946f0218d"}, + {file = "charset_normalizer-3.4.4-cp38-cp38-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:a8bf8d0f749c5757af2142fe7903a9df1d2e8aa3841559b2bad34b08d0e2bcf3"}, + {file = "charset_normalizer-3.4.4-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:194f08cbb32dc406d6e1aea671a68be0823673db2832b38405deba2fb0d88f63"}, + {file = "charset_normalizer-3.4.4-cp38-cp38-musllinux_1_2_armv7l.whl", hash = "sha256:6aee717dcfead04c6eb1ce3bd29ac1e22663cdea57f943c87d1eab9a025438d7"}, + {file = "charset_normalizer-3.4.4-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:cd4b7ca9984e5e7985c12bc60a6f173f3c958eae74f3ef6624bb6b26e2abbae4"}, + {file = "charset_normalizer-3.4.4-cp38-cp38-musllinux_1_2_riscv64.whl", hash = "sha256:b7cf1017d601aa35e6bb650b6ad28652c9cd78ee6caff19f3c28d03e1c80acbf"}, + {file = "charset_normalizer-3.4.4-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:e912091979546adf63357d7e2ccff9b44f026c075aeaf25a52d0e95ad2281074"}, + {file = "charset_normalizer-3.4.4-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:5cb4d72eea50c8868f5288b7f7f33ed276118325c1dfd3957089f6b519e1382a"}, + {file = "charset_normalizer-3.4.4-cp38-cp38-win32.whl", hash = "sha256:837c2ce8c5a65a2035be9b3569c684358dfbf109fd3b6969630a87535495ceaa"}, + {file = "charset_normalizer-3.4.4-cp38-cp38-win_amd64.whl", hash = "sha256:44c2a8734b333e0578090c4cd6b16f275e07aa6614ca8715e6c038e865e70576"}, + {file = "charset_normalizer-3.4.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a9768c477b9d7bd54bc0c86dbaebdec6f03306675526c9927c0e8a04e8f94af9"}, + {file = "charset_normalizer-3.4.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1bee1e43c28aa63cb16e5c14e582580546b08e535299b8b6158a7c9c768a1f3d"}, + {file = "charset_normalizer-3.4.4-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:fd44c878ea55ba351104cb93cc85e74916eb8fa440ca7903e57575e97394f608"}, + {file = "charset_normalizer-3.4.4-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:0f04b14ffe5fdc8c4933862d8306109a2c51e0704acfa35d51598eb45a1e89fc"}, + {file = "charset_normalizer-3.4.4-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:cd09d08005f958f370f539f186d10aec3377d55b9eeb0d796025d4886119d76e"}, + {file = "charset_normalizer-3.4.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4fe7859a4e3e8457458e2ff592f15ccb02f3da787fcd31e0183879c3ad4692a1"}, + {file = "charset_normalizer-3.4.4-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:fa09f53c465e532f4d3db095e0c55b615f010ad81803d383195b6b5ca6cbf5f3"}, + {file = "charset_normalizer-3.4.4-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7fa17817dc5625de8a027cb8b26d9fefa3ea28c8253929b8d6649e705d2835b6"}, + {file = "charset_normalizer-3.4.4-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:5947809c8a2417be3267efc979c47d76a079758166f7d43ef5ae8e9f92751f88"}, + {file = "charset_normalizer-3.4.4-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:4902828217069c3c5c71094537a8e623f5d097858ac6ca8252f7b4d10b7560f1"}, + {file = "charset_normalizer-3.4.4-cp39-cp39-musllinux_1_2_riscv64.whl", hash = "sha256:7c308f7e26e4363d79df40ca5b2be1c6ba9f02bdbccfed5abddb7859a6ce72cf"}, + {file = "charset_normalizer-3.4.4-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:2c9d3c380143a1fedbff95a312aa798578371eb29da42106a29019368a475318"}, + {file = "charset_normalizer-3.4.4-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:cb01158d8b88ee68f15949894ccc6712278243d95f344770fa7593fa2d94410c"}, + {file = "charset_normalizer-3.4.4-cp39-cp39-win32.whl", hash = "sha256:2677acec1a2f8ef614c6888b5b4ae4060cc184174a938ed4e8ef690e15d3e505"}, + {file = "charset_normalizer-3.4.4-cp39-cp39-win_amd64.whl", hash = "sha256:f8e160feb2aed042cd657a72acc0b481212ed28b1b9a95c0cee1621b524e1966"}, + {file = "charset_normalizer-3.4.4-cp39-cp39-win_arm64.whl", hash = "sha256:b5d84d37db046c5ca74ee7bb47dd6cbc13f80665fdde3e8040bdd3fb015ecb50"}, + {file = "charset_normalizer-3.4.4-py3-none-any.whl", hash = "sha256:7a32c560861a02ff789ad905a2fe94e3f840803362c84fecf1851cb4cf3dc37f"}, + {file = "charset_normalizer-3.4.4.tar.gz", hash = "sha256:94537985111c35f28720e43603b8e7b43a6ecfb2ce1d3058bbe955b73404e21a"}, +] + +[[package]] +name = "click" +version = "8.3.0" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.10" +groups = ["main", "dev"] +files = [ + {file = "click-8.3.0-py3-none-any.whl", hash = "sha256:9b9f285302c6e3064f4330c05f05b81945b2a39544279343e6e7c5f27a9baddc"}, + {file = "click-8.3.0.tar.gz", hash = "sha256:e7b8232224eba16f4ebe410c25ced9f7875cb5f3263ffc93cc3e8da705e229c4"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "click-plugins" +version = "1.1.1.2" +description = "An extension module for click to enable registering CLI commands via setuptools entry-points." +optional = false +python-versions = "*" +groups = ["main"] +files = [ + {file = "click_plugins-1.1.1.2-py2.py3-none-any.whl", hash = "sha256:008d65743833ffc1f5417bf0e78e8d2c23aab04d9745ba817bd3e71b0feb6aa6"}, + {file = "click_plugins-1.1.1.2.tar.gz", hash = "sha256:d7af3984a99d243c131aa1a828331e7630f4a88a9741fd05c927b204bcf92261"}, +] + +[package.dependencies] +click = ">=4.0" + +[package.extras] +dev = ["coveralls", "pytest (>=3.6)", "pytest-cov", "wheel"] + +[[package]] +name = "cligj" +version = "0.7.2" +description = "Click params for commmand line interfaces to GeoJSON" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4" +groups = ["main"] +files = [ + {file = "cligj-0.7.2-py3-none-any.whl", hash = "sha256:c1ca117dbce1fe20a5809dc96f01e1c2840f6dcc939b3ddbb1111bf330ba82df"}, + {file = "cligj-0.7.2.tar.gz", hash = "sha256:a4bc13d623356b373c2c27c53dbd9c68cae5d526270bfa71f6c6fa69669c6b27"}, +] + +[package.dependencies] +click = ">=4.0" + +[package.extras] +test = ["pytest-cov"] + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +groups = ["main", "dev"] +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] +markers = {main = "platform_system == \"Windows\""} + +[[package]] +name = "contourpy" +version = "1.3.3" +description = "Python library for calculating contours of 2D quadrilateral grids" +optional = false +python-versions = ">=3.11" +groups = ["main"] +files = [ + {file = "contourpy-1.3.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:709a48ef9a690e1343202916450bc48b9e51c049b089c7f79a267b46cffcdaa1"}, + {file = "contourpy-1.3.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:23416f38bfd74d5d28ab8429cc4d63fa67d5068bd711a85edb1c3fb0c3e2f381"}, + {file = "contourpy-1.3.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:929ddf8c4c7f348e4c0a5a3a714b5c8542ffaa8c22954862a46ca1813b667ee7"}, + {file = "contourpy-1.3.3-cp311-cp311-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:9e999574eddae35f1312c2b4b717b7885d4edd6cb46700e04f7f02db454e67c1"}, + {file = "contourpy-1.3.3-cp311-cp311-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:0bf67e0e3f482cb69779dd3061b534eb35ac9b17f163d851e2a547d56dba0a3a"}, + {file = "contourpy-1.3.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:51e79c1f7470158e838808d4a996fa9bac72c498e93d8ebe5119bc1e6becb0db"}, + {file = "contourpy-1.3.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:598c3aaece21c503615fd59c92a3598b428b2f01bfb4b8ca9c4edeecc2438620"}, + {file = "contourpy-1.3.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:322ab1c99b008dad206d406bb61d014cf0174df491ae9d9d0fac6a6fda4f977f"}, + {file = "contourpy-1.3.3-cp311-cp311-win32.whl", hash = "sha256:fd907ae12cd483cd83e414b12941c632a969171bf90fc937d0c9f268a31cafff"}, + {file = "contourpy-1.3.3-cp311-cp311-win_amd64.whl", hash = "sha256:3519428f6be58431c56581f1694ba8e50626f2dd550af225f82fb5f5814d2a42"}, + {file = "contourpy-1.3.3-cp311-cp311-win_arm64.whl", hash = "sha256:15ff10bfada4bf92ec8b31c62bf7c1834c244019b4a33095a68000d7075df470"}, + {file = "contourpy-1.3.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:b08a32ea2f8e42cf1d4be3169a98dd4be32bafe4f22b6c4cb4ba810fa9e5d2cb"}, + {file = "contourpy-1.3.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:556dba8fb6f5d8742f2923fe9457dbdd51e1049c4a43fd3986a0b14a1d815fc6"}, + {file = "contourpy-1.3.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:92d9abc807cf7d0e047b95ca5d957cf4792fcd04e920ca70d48add15c1a90ea7"}, + {file = "contourpy-1.3.3-cp312-cp312-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:b2e8faa0ed68cb29af51edd8e24798bb661eac3bd9f65420c1887b6ca89987c8"}, + {file = "contourpy-1.3.3-cp312-cp312-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:626d60935cf668e70a5ce6ff184fd713e9683fb458898e4249b63be9e28286ea"}, + {file = "contourpy-1.3.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4d00e655fcef08aba35ec9610536bfe90267d7ab5ba944f7032549c55a146da1"}, + {file = "contourpy-1.3.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:451e71b5a7d597379ef572de31eeb909a87246974d960049a9848c3bc6c41bf7"}, + {file = "contourpy-1.3.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:459c1f020cd59fcfe6650180678a9993932d80d44ccde1fa1868977438f0b411"}, + {file = "contourpy-1.3.3-cp312-cp312-win32.whl", hash = "sha256:023b44101dfe49d7d53932be418477dba359649246075c996866106da069af69"}, + {file = "contourpy-1.3.3-cp312-cp312-win_amd64.whl", hash = "sha256:8153b8bfc11e1e4d75bcb0bff1db232f9e10b274e0929de9d608027e0d34ff8b"}, + {file = "contourpy-1.3.3-cp312-cp312-win_arm64.whl", hash = "sha256:07ce5ed73ecdc4a03ffe3e1b3e3c1166db35ae7584be76f65dbbe28a7791b0cc"}, + {file = "contourpy-1.3.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:177fb367556747a686509d6fef71d221a4b198a3905fe824430e5ea0fda54eb5"}, + {file = "contourpy-1.3.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:d002b6f00d73d69333dac9d0b8d5e84d9724ff9ef044fd63c5986e62b7c9e1b1"}, + {file = "contourpy-1.3.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:348ac1f5d4f1d66d3322420f01d42e43122f43616e0f194fc1c9f5d830c5b286"}, + {file = "contourpy-1.3.3-cp313-cp313-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:655456777ff65c2c548b7c454af9c6f33f16c8884f11083244b5819cc214f1b5"}, + {file = "contourpy-1.3.3-cp313-cp313-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:644a6853d15b2512d67881586bd03f462c7ab755db95f16f14d7e238f2852c67"}, + {file = "contourpy-1.3.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4debd64f124ca62069f313a9cb86656ff087786016d76927ae2cf37846b006c9"}, + {file = "contourpy-1.3.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a15459b0f4615b00bbd1e91f1b9e19b7e63aea7483d03d804186f278c0af2659"}, + {file = "contourpy-1.3.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ca0fdcd73925568ca027e0b17ab07aad764be4706d0a925b89227e447d9737b7"}, + {file = "contourpy-1.3.3-cp313-cp313-win32.whl", hash = "sha256:b20c7c9a3bf701366556e1b1984ed2d0cedf999903c51311417cf5f591d8c78d"}, + {file = "contourpy-1.3.3-cp313-cp313-win_amd64.whl", hash = "sha256:1cadd8b8969f060ba45ed7c1b714fe69185812ab43bd6b86a9123fe8f99c3263"}, + {file = "contourpy-1.3.3-cp313-cp313-win_arm64.whl", hash = "sha256:fd914713266421b7536de2bfa8181aa8c699432b6763a0ea64195ebe28bff6a9"}, + {file = "contourpy-1.3.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:88df9880d507169449d434c293467418b9f6cbe82edd19284aa0409e7fdb933d"}, + {file = "contourpy-1.3.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:d06bb1f751ba5d417047db62bca3c8fde202b8c11fb50742ab3ab962c81e8216"}, + {file = "contourpy-1.3.3-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e4e6b05a45525357e382909a4c1600444e2a45b4795163d3b22669285591c1ae"}, + {file = "contourpy-1.3.3-cp313-cp313t-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ab3074b48c4e2cf1a960e6bbeb7f04566bf36b1861d5c9d4d8ac04b82e38ba20"}, + {file = "contourpy-1.3.3-cp313-cp313t-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:6c3d53c796f8647d6deb1abe867daeb66dcc8a97e8455efa729516b997b8ed99"}, + {file = "contourpy-1.3.3-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:50ed930df7289ff2a8d7afeb9603f8289e5704755c7e5c3bbd929c90c817164b"}, + {file = "contourpy-1.3.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:4feffb6537d64b84877da813a5c30f1422ea5739566abf0bd18065ac040e120a"}, + {file = "contourpy-1.3.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:2b7e9480ffe2b0cd2e787e4df64270e3a0440d9db8dc823312e2c940c167df7e"}, + {file = "contourpy-1.3.3-cp313-cp313t-win32.whl", hash = "sha256:283edd842a01e3dcd435b1c5116798d661378d83d36d337b8dde1d16a5fc9ba3"}, + {file = "contourpy-1.3.3-cp313-cp313t-win_amd64.whl", hash = "sha256:87acf5963fc2b34825e5b6b048f40e3635dd547f590b04d2ab317c2619ef7ae8"}, + {file = "contourpy-1.3.3-cp313-cp313t-win_arm64.whl", hash = "sha256:3c30273eb2a55024ff31ba7d052dde990d7d8e5450f4bbb6e913558b3d6c2301"}, + {file = "contourpy-1.3.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:fde6c716d51c04b1c25d0b90364d0be954624a0ee9d60e23e850e8d48353d07a"}, + {file = "contourpy-1.3.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:cbedb772ed74ff5be440fa8eee9bd49f64f6e3fc09436d9c7d8f1c287b121d77"}, + {file = "contourpy-1.3.3-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:22e9b1bd7a9b1d652cd77388465dc358dafcd2e217d35552424aa4f996f524f5"}, + {file = "contourpy-1.3.3-cp314-cp314-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a22738912262aa3e254e4f3cb079a95a67132fc5a063890e224393596902f5a4"}, + {file = "contourpy-1.3.3-cp314-cp314-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:afe5a512f31ee6bd7d0dda52ec9864c984ca3d66664444f2d72e0dc4eb832e36"}, + {file = "contourpy-1.3.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f64836de09927cba6f79dcd00fdd7d5329f3fccc633468507079c829ca4db4e3"}, + {file = "contourpy-1.3.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:1fd43c3be4c8e5fd6e4f2baeae35ae18176cf2e5cced681cca908addf1cdd53b"}, + {file = "contourpy-1.3.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:6afc576f7b33cf00996e5c1102dc2a8f7cc89e39c0b55df93a0b78c1bd992b36"}, + {file = "contourpy-1.3.3-cp314-cp314-win32.whl", hash = "sha256:66c8a43a4f7b8df8b71ee1840e4211a3c8d93b214b213f590e18a1beca458f7d"}, + {file = "contourpy-1.3.3-cp314-cp314-win_amd64.whl", hash = "sha256:cf9022ef053f2694e31d630feaacb21ea24224be1c3ad0520b13d844274614fd"}, + {file = "contourpy-1.3.3-cp314-cp314-win_arm64.whl", hash = "sha256:95b181891b4c71de4bb404c6621e7e2390745f887f2a026b2d99e92c17892339"}, + {file = "contourpy-1.3.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:33c82d0138c0a062380332c861387650c82e4cf1747aaa6938b9b6516762e772"}, + {file = "contourpy-1.3.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:ea37e7b45949df430fe649e5de8351c423430046a2af20b1c1961cae3afcda77"}, + {file = "contourpy-1.3.3-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d304906ecc71672e9c89e87c4675dc5c2645e1f4269a5063b99b0bb29f232d13"}, + {file = "contourpy-1.3.3-cp314-cp314t-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ca658cd1a680a5c9ea96dc61cdbae1e85c8f25849843aa799dfd3cb370ad4fbe"}, + {file = "contourpy-1.3.3-cp314-cp314t-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:ab2fd90904c503739a75b7c8c5c01160130ba67944a7b77bbf36ef8054576e7f"}, + {file = "contourpy-1.3.3-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b7301b89040075c30e5768810bc96a8e8d78085b47d8be6e4c3f5a0b4ed478a0"}, + {file = "contourpy-1.3.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:2a2a8b627d5cc6b7c41a4beff6c5ad5eb848c88255fda4a8745f7e901b32d8e4"}, + {file = "contourpy-1.3.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:fd6ec6be509c787f1caf6b247f0b1ca598bef13f4ddeaa126b7658215529ba0f"}, + {file = "contourpy-1.3.3-cp314-cp314t-win32.whl", hash = "sha256:e74a9a0f5e3fff48fb5a7f2fd2b9b70a3fe014a67522f79b7cca4c0c7e43c9ae"}, + {file = "contourpy-1.3.3-cp314-cp314t-win_amd64.whl", hash = "sha256:13b68d6a62db8eafaebb8039218921399baf6e47bf85006fd8529f2a08ef33fc"}, + {file = "contourpy-1.3.3-cp314-cp314t-win_arm64.whl", hash = "sha256:b7448cb5a725bb1e35ce88771b86fba35ef418952474492cf7c764059933ff8b"}, + {file = "contourpy-1.3.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:cd5dfcaeb10f7b7f9dc8941717c6c2ade08f587be2226222c12b25f0483ed497"}, + {file = "contourpy-1.3.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:0c1fc238306b35f246d61a1d416a627348b5cf0648648a031e14bb8705fcdfe8"}, + {file = "contourpy-1.3.3-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:70f9aad7de812d6541d29d2bbf8feb22ff7e1c299523db288004e3157ff4674e"}, + {file = "contourpy-1.3.3-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5ed3657edf08512fc3fe81b510e35c2012fbd3081d2e26160f27ca28affec989"}, + {file = "contourpy-1.3.3-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:3d1a3799d62d45c18bafd41c5fa05120b96a28079f2393af559b843d1a966a77"}, + {file = "contourpy-1.3.3.tar.gz", hash = "sha256:083e12155b210502d0bca491432bb04d56dc3432f95a979b429f2848c3dbe880"}, +] + +[package.dependencies] +numpy = ">=1.25" + +[package.extras] +bokeh = ["bokeh", "selenium"] +docs = ["furo", "sphinx (>=7.2)", "sphinx-copybutton"] +mypy = ["bokeh", "contourpy[bokeh,docs]", "docutils-stubs", "mypy (==1.17.0)", "types-Pillow"] +test = ["Pillow", "contourpy[test-no-images]", "matplotlib"] +test-no-images = ["pytest", "pytest-cov", "pytest-rerunfailures", "pytest-xdist", "wurlitzer"] + +[[package]] +name = "customtkinter" +version = "5.2.2" +description = "Create modern looking GUIs with Python" +optional = false +python-versions = ">=3.7" +groups = ["main"] +files = [ + {file = "customtkinter-5.2.2-py3-none-any.whl", hash = "sha256:14ad3e7cd3cb3b9eb642b9d4e8711ae80d3f79fb82545ad11258eeffb2e6b37c"}, + {file = "customtkinter-5.2.2.tar.gz", hash = "sha256:fd8db3bafa961c982ee6030dba80b4c2e25858630756b513986db19113d8d207"}, +] + +[package.dependencies] +darkdetect = "*" +packaging = "*" + +[[package]] +name = "cycler" +version = "0.12.1" +description = "Composable style cycles" +optional = false +python-versions = ">=3.8" +groups = ["main"] +files = [ + {file = "cycler-0.12.1-py3-none-any.whl", hash = "sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30"}, + {file = "cycler-0.12.1.tar.gz", hash = "sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c"}, +] + +[package.extras] +docs = ["ipython", "matplotlib", "numpydoc", "sphinx"] +tests = ["pytest", "pytest-cov", "pytest-xdist"] + +[[package]] +name = "darkdetect" +version = "0.8.0" +description = "Detect OS Dark Mode from Python" +optional = false +python-versions = ">=3.6" +groups = ["main"] +files = [ + {file = "darkdetect-0.8.0-py3-none-any.whl", hash = "sha256:a7509ccf517eaad92b31c214f593dbcf138ea8a43b2935406bbd565e15527a85"}, + {file = "darkdetect-0.8.0.tar.gz", hash = "sha256:b5428e1170263eb5dea44c25dc3895edd75e6f52300986353cd63533fe7df8b1"}, +] + +[package.extras] +macos-listener = ["pyobjc-framework-Cocoa ; platform_system == \"Darwin\""] + +[[package]] +name = "distlib" +version = "0.4.0" +description = "Distribution utilities" +optional = false +python-versions = "*" +groups = ["dev"] +files = [ + {file = "distlib-0.4.0-py2.py3-none-any.whl", hash = "sha256:9659f7d87e46584a30b5780e43ac7a2143098441670ff0a49d5f9034c54a6c16"}, + {file = "distlib-0.4.0.tar.gz", hash = "sha256:feec40075be03a04501a973d81f633735b4b69f98b05450592310c0f401a4e0d"}, +] + +[[package]] +name = "filelock" +version = "3.20.0" +description = "A platform independent file lock." +optional = false +python-versions = ">=3.10" +groups = ["dev"] +files = [ + {file = "filelock-3.20.0-py3-none-any.whl", hash = "sha256:339b4732ffda5cd79b13f4e2711a31b0365ce445d95d243bb996273d072546a2"}, + {file = "filelock-3.20.0.tar.gz", hash = "sha256:711e943b4ec6be42e1d4e6690b48dc175c822967466bb31c0c293f34334c13f4"}, +] + +[[package]] +name = "fiona" +version = "1.10.1" +description = "Fiona reads and writes spatial data files" +optional = false +python-versions = ">=3.8" +groups = ["main"] +files = [ + {file = "fiona-1.10.1-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:6e2a94beebda24e5db8c3573fe36110d474d4a12fac0264a3e083c75e9d63829"}, + {file = "fiona-1.10.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fc7366f99bdc18ec99441b9e50246fdf5e72923dc9cbb00267b2bf28edd142ba"}, + {file = "fiona-1.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c32f424b0641c79f4036b96c2e80322fb181b4e415c8cd02d182baef55e6730"}, + {file = "fiona-1.10.1-cp310-cp310-win_amd64.whl", hash = "sha256:9a67bd88918e87d64168bc9c00d9816d8bb07353594b5ce6c57252979d5dc86e"}, + {file = "fiona-1.10.1-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:98fe556058b370da07a84f6537c286f87eb4af2343d155fbd3fba5d38ac17ed7"}, + {file = "fiona-1.10.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:be29044d4aeebae92944b738160dc5f9afc4cdf04f551d59e803c5b910e17520"}, + {file = "fiona-1.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94bd3d448f09f85439e4b77c38b9de1aebe3eef24acc72bd631f75171cdfde51"}, + {file = "fiona-1.10.1-cp311-cp311-win_amd64.whl", hash = "sha256:30594c0cd8682c43fd01e7cdbe000f94540f8fa3b7cb5901e805c88c4ff2058b"}, + {file = "fiona-1.10.1-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:7338b8c68beb7934bde4ec9f49eb5044e5e484b92d940bc3ec27defdb2b06c67"}, + {file = "fiona-1.10.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8c77fcfd3cdb0d3c97237965f8c60d1696a64923deeeb2d0b9810286cbe25911"}, + {file = "fiona-1.10.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:537872cbc9bda7fcdf73851c91bc5338fca2b502c4c17049ccecaa13cde1f18f"}, + {file = "fiona-1.10.1-cp312-cp312-win_amd64.whl", hash = "sha256:41cde2c52c614457e9094ea44b0d30483540789e62fe0fa758c2a2963e980817"}, + {file = "fiona-1.10.1-cp313-cp313-macosx_10_15_x86_64.whl", hash = "sha256:a00b05935c9900678b2ca660026b39efc4e4b916983915d595964eb381763ae7"}, + {file = "fiona-1.10.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f78b781d5bcbbeeddf1d52712f33458775dbb9fd1b2a39882c83618348dd730f"}, + {file = "fiona-1.10.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:29ceeb38e3cd30d91d68858d0817a1bb0c4f96340d334db4b16a99edb0902d35"}, + {file = "fiona-1.10.1-cp313-cp313-win_amd64.whl", hash = "sha256:15751c90e29cee1e01fcfedf42ab85987e32f0b593cf98d88ed52199ef5ca623"}, + {file = "fiona-1.10.1-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:6f1242f872dc33d3b4269dcaebf1838a359f9097e1cc848b0e11367bce010e4d"}, + {file = "fiona-1.10.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:65308b7a7e57fcc533de8a5855b0fce798faabc736d1340192dd8673ff61bc4e"}, + {file = "fiona-1.10.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:632bc146355af5ff0d77e34ebd1be5072d623b4aedb754b94a3d8c356c4545ac"}, + {file = "fiona-1.10.1-cp38-cp38-win_amd64.whl", hash = "sha256:b7b4c3c97b1d64a1b3321577e9edaebbd36b64006e278f225f300c497cc87c35"}, + {file = "fiona-1.10.1-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:b62aa8d5a0981bd33d81c247219b1eaa1e655e0a0682b3a4759fccc40954bb30"}, + {file = "fiona-1.10.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f4b19cb5bd22443ef439b39239272349023556994242a8f953a0147684e1c47f"}, + {file = "fiona-1.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa7e7e5ad252ef29905384bf92e7d14dd5374584b525632652c2ab8925304670"}, + {file = "fiona-1.10.1-cp39-cp39-win_amd64.whl", hash = "sha256:4e82d18acbe55230e9cf8ede2a836d99ea96b7c0cc7d2b8b993e6c9f0ac14dc2"}, + {file = "fiona-1.10.1.tar.gz", hash = "sha256:b00ae357669460c6491caba29c2022ff0acfcbde86a95361ea8ff5cd14a86b68"}, +] + +[package.dependencies] +attrs = ">=19.2.0" +certifi = "*" +click = ">=8.0,<9.0" +click-plugins = ">=1.0" +cligj = ">=0.5" + +[package.extras] +all = ["fiona[calc,s3,test]"] +calc = ["pyparsing", "shapely"] +s3 = ["boto3 (>=1.3.1)"] +test = ["aiohttp", "fiona[s3]", "fsspec", "pytest (>=7)", "pytest-cov", "pytz"] + +[[package]] +name = "fonttools" +version = "4.60.1" +description = "Tools to manipulate font files" +optional = false +python-versions = ">=3.9" +groups = ["main"] +files = [ + {file = "fonttools-4.60.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:9a52f254ce051e196b8fe2af4634c2d2f02c981756c6464dc192f1b6050b4e28"}, + {file = "fonttools-4.60.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c7420a2696a44650120cdd269a5d2e56a477e2bfa9d95e86229059beb1c19e15"}, + {file = "fonttools-4.60.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ee0c0b3b35b34f782afc673d503167157094a16f442ace7c6c5e0ca80b08f50c"}, + {file = "fonttools-4.60.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:282dafa55f9659e8999110bd8ed422ebe1c8aecd0dc396550b038e6c9a08b8ea"}, + {file = "fonttools-4.60.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:4ba4bd646e86de16160f0fb72e31c3b9b7d0721c3e5b26b9fa2fc931dfdb2652"}, + {file = "fonttools-4.60.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:0b0835ed15dd5b40d726bb61c846a688f5b4ce2208ec68779bc81860adb5851a"}, + {file = "fonttools-4.60.1-cp310-cp310-win32.whl", hash = "sha256:1525796c3ffe27bb6268ed2a1bb0dcf214d561dfaf04728abf01489eb5339dce"}, + {file = "fonttools-4.60.1-cp310-cp310-win_amd64.whl", hash = "sha256:268ecda8ca6cb5c4f044b1fb9b3b376e8cd1b361cef275082429dc4174907038"}, + {file = "fonttools-4.60.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:7b4c32e232a71f63a5d00259ca3d88345ce2a43295bb049d21061f338124246f"}, + {file = "fonttools-4.60.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3630e86c484263eaac71d117085d509cbcf7b18f677906824e4bace598fb70d2"}, + {file = "fonttools-4.60.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5c1015318e4fec75dd4943ad5f6a206d9727adf97410d58b7e32ab644a807914"}, + {file = "fonttools-4.60.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:e6c58beb17380f7c2ea181ea11e7db8c0ceb474c9dd45f48e71e2cb577d146a1"}, + {file = "fonttools-4.60.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ec3681a0cb34c255d76dd9d865a55f260164adb9fa02628415cdc2d43ee2c05d"}, + {file = "fonttools-4.60.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f4b5c37a5f40e4d733d3bbaaef082149bee5a5ea3156a785ff64d949bd1353fa"}, + {file = "fonttools-4.60.1-cp311-cp311-win32.whl", hash = "sha256:398447f3d8c0c786cbf1209711e79080a40761eb44b27cdafffb48f52bcec258"}, + {file = "fonttools-4.60.1-cp311-cp311-win_amd64.whl", hash = "sha256:d066ea419f719ed87bc2c99a4a4bfd77c2e5949cb724588b9dd58f3fd90b92bf"}, + {file = "fonttools-4.60.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:7b0c6d57ab00dae9529f3faf187f2254ea0aa1e04215cf2f1a8ec277c96661bc"}, + {file = "fonttools-4.60.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:839565cbf14645952d933853e8ade66a463684ed6ed6c9345d0faf1f0e868877"}, + {file = "fonttools-4.60.1-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:8177ec9676ea6e1793c8a084a90b65a9f778771998eb919d05db6d4b1c0b114c"}, + {file = "fonttools-4.60.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:996a4d1834524adbb423385d5a629b868ef9d774670856c63c9a0408a3063401"}, + {file = "fonttools-4.60.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a46b2f450bc79e06ef3b6394f0c68660529ed51692606ad7f953fc2e448bc903"}, + {file = "fonttools-4.60.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:6ec722ee589e89a89f5b7574f5c45604030aa6ae24cb2c751e2707193b466fed"}, + {file = "fonttools-4.60.1-cp312-cp312-win32.whl", hash = "sha256:b2cf105cee600d2de04ca3cfa1f74f1127f8455b71dbad02b9da6ec266e116d6"}, + {file = "fonttools-4.60.1-cp312-cp312-win_amd64.whl", hash = "sha256:992775c9fbe2cf794786fa0ffca7f09f564ba3499b8fe9f2f80bd7197db60383"}, + {file = "fonttools-4.60.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:6f68576bb4bbf6060c7ab047b1574a1ebe5c50a17de62830079967b211059ebb"}, + {file = "fonttools-4.60.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:eedacb5c5d22b7097482fa834bda0dafa3d914a4e829ec83cdea2a01f8c813c4"}, + {file = "fonttools-4.60.1-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:b33a7884fabd72bdf5f910d0cf46be50dce86a0362a65cfc746a4168c67eb96c"}, + {file = "fonttools-4.60.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2409d5fb7b55fd70f715e6d34e7a6e4f7511b8ad29a49d6df225ee76da76dd77"}, + {file = "fonttools-4.60.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c8651e0d4b3bdeda6602b85fdc2abbefc1b41e573ecb37b6779c4ca50753a199"}, + {file = "fonttools-4.60.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:145daa14bf24824b677b9357c5e44fd8895c2a8f53596e1b9ea3496081dc692c"}, + {file = "fonttools-4.60.1-cp313-cp313-win32.whl", hash = "sha256:2299df884c11162617a66b7c316957d74a18e3758c0274762d2cc87df7bc0272"}, + {file = "fonttools-4.60.1-cp313-cp313-win_amd64.whl", hash = "sha256:a3db56f153bd4c5c2b619ab02c5db5192e222150ce5a1bc10f16164714bc39ac"}, + {file = "fonttools-4.60.1-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:a884aef09d45ba1206712c7dbda5829562d3fea7726935d3289d343232ecb0d3"}, + {file = "fonttools-4.60.1-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:8a44788d9d91df72d1a5eac49b31aeb887a5f4aab761b4cffc4196c74907ea85"}, + {file = "fonttools-4.60.1-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:e852d9dda9f93ad3651ae1e3bb770eac544ec93c3807888798eccddf84596537"}, + {file = "fonttools-4.60.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:154cb6ee417e417bf5f7c42fe25858c9140c26f647c7347c06f0cc2d47eff003"}, + {file = "fonttools-4.60.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:5664fd1a9ea7f244487ac8f10340c4e37664675e8667d6fee420766e0fb3cf08"}, + {file = "fonttools-4.60.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:583b7f8e3c49486e4d489ad1deacfb8d5be54a8ef34d6df824f6a171f8511d99"}, + {file = "fonttools-4.60.1-cp314-cp314-win32.whl", hash = "sha256:66929e2ea2810c6533a5184f938502cfdaea4bc3efb7130d8cc02e1c1b4108d6"}, + {file = "fonttools-4.60.1-cp314-cp314-win_amd64.whl", hash = "sha256:f3d5be054c461d6a2268831f04091dc82753176f6ea06dc6047a5e168265a987"}, + {file = "fonttools-4.60.1-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:b6379e7546ba4ae4b18f8ae2b9bc5960936007a1c0e30b342f662577e8bc3299"}, + {file = "fonttools-4.60.1-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:9d0ced62b59e0430b3690dbc5373df1c2aa7585e9a8ce38eff87f0fd993c5b01"}, + {file = "fonttools-4.60.1-cp314-cp314t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:875cb7764708b3132637f6c5fb385b16eeba0f7ac9fa45a69d35e09b47045801"}, + {file = "fonttools-4.60.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a184b2ea57b13680ab6d5fbde99ccef152c95c06746cb7718c583abd8f945ccc"}, + {file = "fonttools-4.60.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:026290e4ec76583881763fac284aca67365e0be9f13a7fb137257096114cb3bc"}, + {file = "fonttools-4.60.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:f0e8817c7d1a0c2eedebf57ef9a9896f3ea23324769a9a2061a80fe8852705ed"}, + {file = "fonttools-4.60.1-cp314-cp314t-win32.whl", hash = "sha256:1410155d0e764a4615774e5c2c6fc516259fe3eca5882f034eb9bfdbee056259"}, + {file = "fonttools-4.60.1-cp314-cp314t-win_amd64.whl", hash = "sha256:022beaea4b73a70295b688f817ddc24ed3e3418b5036ffcd5658141184ef0d0c"}, + {file = "fonttools-4.60.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:122e1a8ada290423c493491d002f622b1992b1ab0b488c68e31c413390dc7eb2"}, + {file = "fonttools-4.60.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a140761c4ff63d0cb9256ac752f230460ee225ccef4ad8f68affc723c88e2036"}, + {file = "fonttools-4.60.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0eae96373e4b7c9e45d099d7a523444e3554360927225c1cdae221a58a45b856"}, + {file = "fonttools-4.60.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:596ecaca36367027d525b3b426d8a8208169d09edcf8c7506aceb3a38bfb55c7"}, + {file = "fonttools-4.60.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:2ee06fc57512144d8b0445194c2da9f190f61ad51e230f14836286470c99f854"}, + {file = "fonttools-4.60.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:b42d86938e8dda1cd9a1a87a6d82f1818eaf933348429653559a458d027446da"}, + {file = "fonttools-4.60.1-cp39-cp39-win32.whl", hash = "sha256:8b4eb332f9501cb1cd3d4d099374a1e1306783ff95489a1026bde9eb02ccc34a"}, + {file = "fonttools-4.60.1-cp39-cp39-win_amd64.whl", hash = "sha256:7473a8ed9ed09aeaa191301244a5a9dbe46fe0bf54f9d6cd21d83044c3321217"}, + {file = "fonttools-4.60.1-py3-none-any.whl", hash = "sha256:906306ac7afe2156fcf0042173d6ebbb05416af70f6b370967b47f8f00103bbb"}, + {file = "fonttools-4.60.1.tar.gz", hash = "sha256:ef00af0439ebfee806b25f24c8f92109157ff3fac5731dc7867957812e87b8d9"}, +] + +[package.extras] +all = ["brotli (>=1.0.1) ; platform_python_implementation == \"CPython\"", "brotlicffi (>=0.8.0) ; platform_python_implementation != \"CPython\"", "lxml (>=4.0)", "lz4 (>=1.7.4.2)", "matplotlib", "munkres ; platform_python_implementation == \"PyPy\"", "pycairo", "scipy ; platform_python_implementation != \"PyPy\"", "skia-pathops (>=0.5.0)", "sympy", "uharfbuzz (>=0.23.0)", "unicodedata2 (>=15.1.0) ; python_version <= \"3.12\"", "xattr ; sys_platform == \"darwin\"", "zopfli (>=0.1.4)"] +graphite = ["lz4 (>=1.7.4.2)"] +interpolatable = ["munkres ; platform_python_implementation == \"PyPy\"", "pycairo", "scipy ; platform_python_implementation != \"PyPy\""] +lxml = ["lxml (>=4.0)"] +pathops = ["skia-pathops (>=0.5.0)"] +plot = ["matplotlib"] +repacker = ["uharfbuzz (>=0.23.0)"] +symfont = ["sympy"] +type1 = ["xattr ; sys_platform == \"darwin\""] +unicode = ["unicodedata2 (>=15.1.0) ; python_version <= \"3.12\""] +woff = ["brotli (>=1.0.1) ; platform_python_implementation == \"CPython\"", "brotlicffi (>=0.8.0) ; platform_python_implementation != \"CPython\"", "zopfli (>=0.1.4)"] + +[[package]] +name = "geopandas" +version = "0.14.4" +description = "Geographic pandas extensions" +optional = false +python-versions = ">=3.9" +groups = ["main"] +files = [ + {file = "geopandas-0.14.4-py3-none-any.whl", hash = "sha256:3bb6473cb59d51e1a7fe2dbc24a1a063fb0ebdeddf3ce08ddbf8c7ddc99689aa"}, + {file = "geopandas-0.14.4.tar.gz", hash = "sha256:56765be9d58e2c743078085db3bd07dc6be7719f0dbe1dfdc1d705cb80be7c25"}, +] + +[package.dependencies] +fiona = ">=1.8.21" +numpy = ">=1.22" +packaging = "*" +pandas = ">=1.4.0" +pyproj = ">=3.3.0" +shapely = ">=1.8.0" + +[[package]] +name = "ghp-import" +version = "2.1.0" +description = "Copy your docs directly to the gh-pages branch." +optional = false +python-versions = "*" +groups = ["dev"] +files = [ + {file = "ghp-import-2.1.0.tar.gz", hash = "sha256:9c535c4c61193c2df8871222567d7fd7e5014d835f97dc7b7439069e2413d343"}, + {file = "ghp_import-2.1.0-py3-none-any.whl", hash = "sha256:8337dd7b50877f163d4c0289bc1f1c7f127550241988d568c1db512c4324a619"}, +] + +[package.dependencies] +python-dateutil = ">=2.8.1" + +[package.extras] +dev = ["flake8", "markdown", "twine", "wheel"] + +[[package]] +name = "griffe" +version = "1.15.0" +description = "Signatures for entire Python programs. Extract the structure, the frame, the skeleton of your project, to generate API documentation or find breaking changes in your API." +optional = false +python-versions = ">=3.10" +groups = ["dev"] +files = [ + {file = "griffe-1.15.0-py3-none-any.whl", hash = "sha256:6f6762661949411031f5fcda9593f586e6ce8340f0ba88921a0f2ef7a81eb9a3"}, + {file = "griffe-1.15.0.tar.gz", hash = "sha256:7726e3afd6f298fbc3696e67958803e7ac843c1cfe59734b6251a40cdbfb5eea"}, +] + +[package.dependencies] +colorama = ">=0.4" + +[package.extras] +pypi = ["pip (>=24.0)", "platformdirs (>=4.2)", "wheel (>=0.42)"] + +[[package]] +name = "identify" +version = "2.6.15" +description = "File identification library for Python" +optional = false +python-versions = ">=3.9" +groups = ["dev"] +files = [ + {file = "identify-2.6.15-py2.py3-none-any.whl", hash = "sha256:1181ef7608e00704db228516541eb83a88a9f94433a8c80bb9b5bd54b1d81757"}, + {file = "identify-2.6.15.tar.gz", hash = "sha256:e4f4864b96c6557ef2a1e1c951771838f4edc9df3a72ec7118b338801b11c7bf"}, +] + +[package.extras] +license = ["ukkonen"] + +[[package]] +name = "idna" +version = "3.11" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.8" +groups = ["dev"] +files = [ + {file = "idna-3.11-py3-none-any.whl", hash = "sha256:771a87f49d9defaf64091e6e6fe9c18d4833f140bd19464795bc32d966ca37ea"}, + {file = "idna-3.11.tar.gz", hash = "sha256:795dafcc9c04ed0c1fb032c2aa73654d8e8c5023a7df64a53f39190ada629902"}, +] + +[package.extras] +all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"] + +[[package]] +name = "jinja2" +version = "3.1.6" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +groups = ["dev"] +files = [ + {file = "jinja2-3.1.6-py3-none-any.whl", hash = "sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67"}, + {file = "jinja2-3.1.6.tar.gz", hash = "sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "kiwisolver" +version = "1.4.9" +description = "A fast implementation of the Cassowary constraint solver" +optional = false +python-versions = ">=3.10" +groups = ["main"] +files = [ + {file = "kiwisolver-1.4.9-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:b4b4d74bda2b8ebf4da5bd42af11d02d04428b2c32846e4c2c93219df8a7987b"}, + {file = "kiwisolver-1.4.9-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:fb3b8132019ea572f4611d770991000d7f58127560c4889729248eb5852a102f"}, + {file = "kiwisolver-1.4.9-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:84fd60810829c27ae375114cd379da1fa65e6918e1da405f356a775d49a62bcf"}, + {file = "kiwisolver-1.4.9-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b78efa4c6e804ecdf727e580dbb9cba85624d2e1c6b5cb059c66290063bd99a9"}, + {file = "kiwisolver-1.4.9-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d4efec7bcf21671db6a3294ff301d2fc861c31faa3c8740d1a94689234d1b415"}, + {file = "kiwisolver-1.4.9-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:90f47e70293fc3688b71271100a1a5453aa9944a81d27ff779c108372cf5567b"}, + {file = "kiwisolver-1.4.9-cp310-cp310-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:8fdca1def57a2e88ef339de1737a1449d6dbf5fab184c54a1fca01d541317154"}, + {file = "kiwisolver-1.4.9-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:9cf554f21be770f5111a1690d42313e140355e687e05cf82cb23d0a721a64a48"}, + {file = "kiwisolver-1.4.9-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:fc1795ac5cd0510207482c3d1d3ed781143383b8cfd36f5c645f3897ce066220"}, + {file = "kiwisolver-1.4.9-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:ccd09f20ccdbbd341b21a67ab50a119b64a403b09288c27481575105283c1586"}, + {file = "kiwisolver-1.4.9-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:540c7c72324d864406a009d72f5d6856f49693db95d1fbb46cf86febef873634"}, + {file = "kiwisolver-1.4.9-cp310-cp310-win_amd64.whl", hash = "sha256:ede8c6d533bc6601a47ad4046080d36b8fc99f81e6f1c17b0ac3c2dc91ac7611"}, + {file = "kiwisolver-1.4.9-cp310-cp310-win_arm64.whl", hash = "sha256:7b4da0d01ac866a57dd61ac258c5607b4cd677f63abaec7b148354d2b2cdd536"}, + {file = "kiwisolver-1.4.9-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:eb14a5da6dc7642b0f3a18f13654847cd8b7a2550e2645a5bda677862b03ba16"}, + {file = "kiwisolver-1.4.9-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:39a219e1c81ae3b103643d2aedb90f1ef22650deb266ff12a19e7773f3e5f089"}, + {file = "kiwisolver-1.4.9-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2405a7d98604b87f3fc28b1716783534b1b4b8510d8142adca34ee0bc3c87543"}, + {file = "kiwisolver-1.4.9-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:dc1ae486f9abcef254b5618dfb4113dd49f94c68e3e027d03cf0143f3f772b61"}, + {file = "kiwisolver-1.4.9-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8a1f570ce4d62d718dce3f179ee78dac3b545ac16c0c04bb363b7607a949c0d1"}, + {file = "kiwisolver-1.4.9-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:cb27e7b78d716c591e88e0a09a2139c6577865d7f2e152488c2cc6257f460872"}, + {file = "kiwisolver-1.4.9-cp311-cp311-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:15163165efc2f627eb9687ea5f3a28137217d217ac4024893d753f46bce9de26"}, + {file = "kiwisolver-1.4.9-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:bdee92c56a71d2b24c33a7d4c2856bd6419d017e08caa7802d2963870e315028"}, + {file = "kiwisolver-1.4.9-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:412f287c55a6f54b0650bd9b6dce5aceddb95864a1a90c87af16979d37c89771"}, + {file = "kiwisolver-1.4.9-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:2c93f00dcba2eea70af2be5f11a830a742fe6b579a1d4e00f47760ef13be247a"}, + {file = "kiwisolver-1.4.9-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f117e1a089d9411663a3207ba874f31be9ac8eaa5b533787024dc07aeb74f464"}, + {file = "kiwisolver-1.4.9-cp311-cp311-win_amd64.whl", hash = "sha256:be6a04e6c79819c9a8c2373317d19a96048e5a3f90bec587787e86a1153883c2"}, + {file = "kiwisolver-1.4.9-cp311-cp311-win_arm64.whl", hash = "sha256:0ae37737256ba2de764ddc12aed4956460277f00c4996d51a197e72f62f5eec7"}, + {file = "kiwisolver-1.4.9-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:ac5a486ac389dddcc5bef4f365b6ae3ffff2c433324fb38dd35e3fab7c957999"}, + {file = "kiwisolver-1.4.9-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:f2ba92255faa7309d06fe44c3a4a97efe1c8d640c2a79a5ef728b685762a6fd2"}, + {file = "kiwisolver-1.4.9-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4a2899935e724dd1074cb568ce7ac0dce28b2cd6ab539c8e001a8578eb106d14"}, + {file = "kiwisolver-1.4.9-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:f6008a4919fdbc0b0097089f67a1eb55d950ed7e90ce2cc3e640abadd2757a04"}, + {file = "kiwisolver-1.4.9-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:67bb8b474b4181770f926f7b7d2f8c0248cbcb78b660fdd41a47054b28d2a752"}, + {file = "kiwisolver-1.4.9-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:2327a4a30d3ee07d2fbe2e7933e8a37c591663b96ce42a00bc67461a87d7df77"}, + {file = "kiwisolver-1.4.9-cp312-cp312-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:7a08b491ec91b1d5053ac177afe5290adacf1f0f6307d771ccac5de30592d198"}, + {file = "kiwisolver-1.4.9-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d8fc5c867c22b828001b6a38d2eaeb88160bf5783c6cb4a5e440efc981ce286d"}, + {file = "kiwisolver-1.4.9-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:3b3115b2581ea35bb6d1f24a4c90af37e5d9b49dcff267eeed14c3893c5b86ab"}, + {file = "kiwisolver-1.4.9-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:858e4c22fb075920b96a291928cb7dea5644e94c0ee4fcd5af7e865655e4ccf2"}, + {file = "kiwisolver-1.4.9-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ed0fecd28cc62c54b262e3736f8bb2512d8dcfdc2bcf08be5f47f96bf405b145"}, + {file = "kiwisolver-1.4.9-cp312-cp312-win_amd64.whl", hash = "sha256:f68208a520c3d86ea51acf688a3e3002615a7f0238002cccc17affecc86a8a54"}, + {file = "kiwisolver-1.4.9-cp312-cp312-win_arm64.whl", hash = "sha256:2c1a4f57df73965f3f14df20b80ee29e6a7930a57d2d9e8491a25f676e197c60"}, + {file = "kiwisolver-1.4.9-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a5d0432ccf1c7ab14f9949eec60c5d1f924f17c037e9f8b33352fa05799359b8"}, + {file = "kiwisolver-1.4.9-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efb3a45b35622bb6c16dbfab491a8f5a391fe0e9d45ef32f4df85658232ca0e2"}, + {file = "kiwisolver-1.4.9-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1a12cf6398e8a0a001a059747a1cbf24705e18fe413bc22de7b3d15c67cffe3f"}, + {file = "kiwisolver-1.4.9-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:b67e6efbf68e077dd71d1a6b37e43e1a99d0bff1a3d51867d45ee8908b931098"}, + {file = "kiwisolver-1.4.9-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5656aa670507437af0207645273ccdfee4f14bacd7f7c67a4306d0dcaeaf6eed"}, + {file = "kiwisolver-1.4.9-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:bfc08add558155345129c7803b3671cf195e6a56e7a12f3dde7c57d9b417f525"}, + {file = "kiwisolver-1.4.9-cp313-cp313-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:40092754720b174e6ccf9e845d0d8c7d8e12c3d71e7fc35f55f3813e96376f78"}, + {file = "kiwisolver-1.4.9-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:497d05f29a1300d14e02e6441cf0f5ee81c1ff5a304b0d9fb77423974684e08b"}, + {file = "kiwisolver-1.4.9-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:bdd1a81a1860476eb41ac4bc1e07b3f07259e6d55bbf739b79c8aaedcf512799"}, + {file = "kiwisolver-1.4.9-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:e6b93f13371d341afee3be9f7c5964e3fe61d5fa30f6a30eb49856935dfe4fc3"}, + {file = "kiwisolver-1.4.9-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:d75aa530ccfaa593da12834b86a0724f58bff12706659baa9227c2ccaa06264c"}, + {file = "kiwisolver-1.4.9-cp313-cp313-win_amd64.whl", hash = "sha256:dd0a578400839256df88c16abddf9ba14813ec5f21362e1fe65022e00c883d4d"}, + {file = "kiwisolver-1.4.9-cp313-cp313-win_arm64.whl", hash = "sha256:d4188e73af84ca82468f09cadc5ac4db578109e52acb4518d8154698d3a87ca2"}, + {file = "kiwisolver-1.4.9-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:5a0f2724dfd4e3b3ac5a82436a8e6fd16baa7d507117e4279b660fe8ca38a3a1"}, + {file = "kiwisolver-1.4.9-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:1b11d6a633e4ed84fc0ddafd4ebfd8ea49b3f25082c04ad12b8315c11d504dc1"}, + {file = "kiwisolver-1.4.9-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:61874cdb0a36016354853593cffc38e56fc9ca5aa97d2c05d3dcf6922cd55a11"}, + {file = "kiwisolver-1.4.9-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:60c439763a969a6af93b4881db0eed8fadf93ee98e18cbc35bc8da868d0c4f0c"}, + {file = "kiwisolver-1.4.9-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:92a2f997387a1b79a75e7803aa7ded2cfbe2823852ccf1ba3bcf613b62ae3197"}, + {file = "kiwisolver-1.4.9-cp313-cp313t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a31d512c812daea6d8b3be3b2bfcbeb091dbb09177706569bcfc6240dcf8b41c"}, + {file = "kiwisolver-1.4.9-cp313-cp313t-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:52a15b0f35dad39862d376df10c5230155243a2c1a436e39eb55623ccbd68185"}, + {file = "kiwisolver-1.4.9-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:a30fd6fdef1430fd9e1ba7b3398b5ee4e2887783917a687d86ba69985fb08748"}, + {file = "kiwisolver-1.4.9-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:cc9617b46837c6468197b5945e196ee9ca43057bb7d9d1ae688101e4e1dddf64"}, + {file = "kiwisolver-1.4.9-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:0ab74e19f6a2b027ea4f845a78827969af45ce790e6cb3e1ebab71bdf9f215ff"}, + {file = "kiwisolver-1.4.9-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:dba5ee5d3981160c28d5490f0d1b7ed730c22470ff7f6cc26cfcfaacb9896a07"}, + {file = "kiwisolver-1.4.9-cp313-cp313t-win_arm64.whl", hash = "sha256:0749fd8f4218ad2e851e11cc4dc05c7cbc0cbc4267bdfdb31782e65aace4ee9c"}, + {file = "kiwisolver-1.4.9-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:9928fe1eb816d11ae170885a74d074f57af3a0d65777ca47e9aeb854a1fba386"}, + {file = "kiwisolver-1.4.9-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:d0005b053977e7b43388ddec89fa567f43d4f6d5c2c0affe57de5ebf290dc552"}, + {file = "kiwisolver-1.4.9-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:2635d352d67458b66fd0667c14cb1d4145e9560d503219034a18a87e971ce4f3"}, + {file = "kiwisolver-1.4.9-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:767c23ad1c58c9e827b649a9ab7809fd5fd9db266a9cf02b0e926ddc2c680d58"}, + {file = "kiwisolver-1.4.9-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:72d0eb9fba308b8311685c2268cf7d0a0639a6cd027d8128659f72bdd8a024b4"}, + {file = "kiwisolver-1.4.9-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f68e4f3eeca8fb22cc3d731f9715a13b652795ef657a13df1ad0c7dc0e9731df"}, + {file = "kiwisolver-1.4.9-cp314-cp314-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d84cd4061ae292d8ac367b2c3fa3aad11cb8625a95d135fe93f286f914f3f5a6"}, + {file = "kiwisolver-1.4.9-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:a60ea74330b91bd22a29638940d115df9dc00af5035a9a2a6ad9399ffb4ceca5"}, + {file = "kiwisolver-1.4.9-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:ce6a3a4e106cf35c2d9c4fa17c05ce0b180db622736845d4315519397a77beaf"}, + {file = "kiwisolver-1.4.9-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:77937e5e2a38a7b48eef0585114fe7930346993a88060d0bf886086d2aa49ef5"}, + {file = "kiwisolver-1.4.9-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:24c175051354f4a28c5d6a31c93906dc653e2bf234e8a4bbfb964892078898ce"}, + {file = "kiwisolver-1.4.9-cp314-cp314-win_amd64.whl", hash = "sha256:0763515d4df10edf6d06a3c19734e2566368980d21ebec439f33f9eb936c07b7"}, + {file = "kiwisolver-1.4.9-cp314-cp314-win_arm64.whl", hash = "sha256:0e4e2bf29574a6a7b7f6cb5fa69293b9f96c928949ac4a53ba3f525dffb87f9c"}, + {file = "kiwisolver-1.4.9-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:d976bbb382b202f71c67f77b0ac11244021cfa3f7dfd9e562eefcea2df711548"}, + {file = "kiwisolver-1.4.9-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:2489e4e5d7ef9a1c300a5e0196e43d9c739f066ef23270607d45aba368b91f2d"}, + {file = "kiwisolver-1.4.9-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:e2ea9f7ab7fbf18fffb1b5434ce7c69a07582f7acc7717720f1d69f3e806f90c"}, + {file = "kiwisolver-1.4.9-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:b34e51affded8faee0dfdb705416153819d8ea9250bbbf7ea1b249bdeb5f1122"}, + {file = "kiwisolver-1.4.9-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d8aacd3d4b33b772542b2e01beb50187536967b514b00003bdda7589722d2a64"}, + {file = "kiwisolver-1.4.9-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:7cf974dd4e35fa315563ac99d6287a1024e4dc2077b8a7d7cd3d2fb65d283134"}, + {file = "kiwisolver-1.4.9-cp314-cp314t-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:85bd218b5ecfbee8c8a82e121802dcb519a86044c9c3b2e4aef02fa05c6da370"}, + {file = "kiwisolver-1.4.9-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:0856e241c2d3df4efef7c04a1e46b1936b6120c9bcf36dd216e3acd84bc4fb21"}, + {file = "kiwisolver-1.4.9-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:9af39d6551f97d31a4deebeac6f45b156f9755ddc59c07b402c148f5dbb6482a"}, + {file = "kiwisolver-1.4.9-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:bb4ae2b57fc1d8cbd1cf7b1d9913803681ffa903e7488012be5b76dedf49297f"}, + {file = "kiwisolver-1.4.9-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:aedff62918805fb62d43a4aa2ecd4482c380dc76cd31bd7c8878588a61bd0369"}, + {file = "kiwisolver-1.4.9-cp314-cp314t-win_amd64.whl", hash = "sha256:1fa333e8b2ce4d9660f2cda9c0e1b6bafcfb2457a9d259faa82289e73ec24891"}, + {file = "kiwisolver-1.4.9-cp314-cp314t-win_arm64.whl", hash = "sha256:4a48a2ce79d65d363597ef7b567ce3d14d68783d2b2263d98db3d9477805ba32"}, + {file = "kiwisolver-1.4.9-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:4d1d9e582ad4d63062d34077a9a1e9f3c34088a2ec5135b1f7190c07cf366527"}, + {file = "kiwisolver-1.4.9-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:deed0c7258ceb4c44ad5ec7d9918f9f14fd05b2be86378d86cf50e63d1e7b771"}, + {file = "kiwisolver-1.4.9-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:0a590506f303f512dff6b7f75fd2fd18e16943efee932008fe7140e5fa91d80e"}, + {file = "kiwisolver-1.4.9-pp310-pypy310_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e09c2279a4d01f099f52d5c4b3d9e208e91edcbd1a175c9662a8b16e000fece9"}, + {file = "kiwisolver-1.4.9-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:c9e7cdf45d594ee04d5be1b24dd9d49f3d1590959b2271fb30b5ca2b262c00fb"}, + {file = "kiwisolver-1.4.9-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:720e05574713db64c356e86732c0f3c5252818d05f9df320f0ad8380641acea5"}, + {file = "kiwisolver-1.4.9-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:17680d737d5335b552994a2008fab4c851bcd7de33094a82067ef3a576ff02fa"}, + {file = "kiwisolver-1.4.9-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:85b5352f94e490c028926ea567fc569c52ec79ce131dadb968d3853e809518c2"}, + {file = "kiwisolver-1.4.9-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:464415881e4801295659462c49461a24fb107c140de781d55518c4b80cb6790f"}, + {file = "kiwisolver-1.4.9-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:fb940820c63a9590d31d88b815e7a3aa5915cad3ce735ab45f0c730b39547de1"}, + {file = "kiwisolver-1.4.9.tar.gz", hash = "sha256:c3b22c26c6fd6811b0ae8363b95ca8ce4ea3c202d3d0975b2914310ceb1bcc4d"}, +] + +[[package]] +name = "macholib" +version = "1.16.3" +description = "Mach-O header analysis and editing" +optional = false +python-versions = "*" +groups = ["dev"] +markers = "sys_platform == \"darwin\"" +files = [ + {file = "macholib-1.16.3-py2.py3-none-any.whl", hash = "sha256:0e315d7583d38b8c77e815b1ecbdbf504a8258d8b3e17b61165c6feb60d18f2c"}, + {file = "macholib-1.16.3.tar.gz", hash = "sha256:07ae9e15e8e4cd9a788013d81f5908b3609aa76f9b1421bae9c4d7606ec86a30"}, +] + +[package.dependencies] +altgraph = ">=0.17" + +[[package]] +name = "markdown" +version = "3.10" +description = "Python implementation of John Gruber's Markdown." +optional = false +python-versions = ">=3.10" +groups = ["dev"] +files = [ + {file = "markdown-3.10-py3-none-any.whl", hash = "sha256:b5b99d6951e2e4948d939255596523444c0e677c669700b1d17aa4a8a464cb7c"}, + {file = "markdown-3.10.tar.gz", hash = "sha256:37062d4f2aa4b2b6b32aefb80faa300f82cc790cb949a35b8caede34f2b68c0e"}, +] + +[package.extras] +docs = ["mdx_gh_links (>=0.2)", "mkdocs (>=1.6)", "mkdocs-gen-files", "mkdocs-literate-nav", "mkdocs-nature (>=0.6)", "mkdocs-section-index", "mkdocstrings[python]"] +testing = ["coverage", "pyyaml"] + +[[package]] +name = "markupsafe" +version = "3.0.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.9" +groups = ["dev"] +files = [ + {file = "markupsafe-3.0.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2f981d352f04553a7171b8e44369f2af4055f888dfb147d55e42d29e29e74559"}, + {file = "markupsafe-3.0.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e1c1493fb6e50ab01d20a22826e57520f1284df32f2d8601fdd90b6304601419"}, + {file = "markupsafe-3.0.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1ba88449deb3de88bd40044603fafffb7bc2b055d626a330323a9ed736661695"}, + {file = "markupsafe-3.0.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f42d0984e947b8adf7dd6dde396e720934d12c506ce84eea8476409563607591"}, + {file = "markupsafe-3.0.3-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:c0c0b3ade1c0b13b936d7970b1d37a57acde9199dc2aecc4c336773e1d86049c"}, + {file = "markupsafe-3.0.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:0303439a41979d9e74d18ff5e2dd8c43ed6c6001fd40e5bf2e43f7bd9bbc523f"}, + {file = "markupsafe-3.0.3-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:d2ee202e79d8ed691ceebae8e0486bd9a2cd4794cec4824e1c99b6f5009502f6"}, + {file = "markupsafe-3.0.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:177b5253b2834fe3678cb4a5f0059808258584c559193998be2601324fdeafb1"}, + {file = "markupsafe-3.0.3-cp310-cp310-win32.whl", hash = "sha256:2a15a08b17dd94c53a1da0438822d70ebcd13f8c3a95abe3a9ef9f11a94830aa"}, + {file = "markupsafe-3.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:c4ffb7ebf07cfe8931028e3e4c85f0357459a3f9f9490886198848f4fa002ec8"}, + {file = "markupsafe-3.0.3-cp310-cp310-win_arm64.whl", hash = "sha256:e2103a929dfa2fcaf9bb4e7c091983a49c9ac3b19c9061b6d5427dd7d14d81a1"}, + {file = "markupsafe-3.0.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1cc7ea17a6824959616c525620e387f6dd30fec8cb44f649e31712db02123dad"}, + {file = "markupsafe-3.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4bd4cd07944443f5a265608cc6aab442e4f74dff8088b0dfc8238647b8f6ae9a"}, + {file = "markupsafe-3.0.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6b5420a1d9450023228968e7e6a9ce57f65d148ab56d2313fcd589eee96a7a50"}, + {file = "markupsafe-3.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0bf2a864d67e76e5c9a34dc26ec616a66b9888e25e7b9460e1c76d3293bd9dbf"}, + {file = "markupsafe-3.0.3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:bc51efed119bc9cfdf792cdeaa4d67e8f6fcccab66ed4bfdd6bde3e59bfcbb2f"}, + {file = "markupsafe-3.0.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:068f375c472b3e7acbe2d5318dea141359e6900156b5b2ba06a30b169086b91a"}, + {file = "markupsafe-3.0.3-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:7be7b61bb172e1ed687f1754f8e7484f1c8019780f6f6b0786e76bb01c2ae115"}, + {file = "markupsafe-3.0.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f9e130248f4462aaa8e2552d547f36ddadbeaa573879158d721bbd33dfe4743a"}, + {file = "markupsafe-3.0.3-cp311-cp311-win32.whl", hash = "sha256:0db14f5dafddbb6d9208827849fad01f1a2609380add406671a26386cdf15a19"}, + {file = "markupsafe-3.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:de8a88e63464af587c950061a5e6a67d3632e36df62b986892331d4620a35c01"}, + {file = "markupsafe-3.0.3-cp311-cp311-win_arm64.whl", hash = "sha256:3b562dd9e9ea93f13d53989d23a7e775fdfd1066c33494ff43f5418bc8c58a5c"}, + {file = "markupsafe-3.0.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d53197da72cc091b024dd97249dfc7794d6a56530370992a5e1a08983ad9230e"}, + {file = "markupsafe-3.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1872df69a4de6aead3491198eaf13810b565bdbeec3ae2dc8780f14458ec73ce"}, + {file = "markupsafe-3.0.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3a7e8ae81ae39e62a41ec302f972ba6ae23a5c5396c8e60113e9066ef893da0d"}, + {file = "markupsafe-3.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d6dd0be5b5b189d31db7cda48b91d7e0a9795f31430b7f271219ab30f1d3ac9d"}, + {file = "markupsafe-3.0.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:94c6f0bb423f739146aec64595853541634bde58b2135f27f61c1ffd1cd4d16a"}, + {file = "markupsafe-3.0.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:be8813b57049a7dc738189df53d69395eba14fb99345e0a5994914a3864c8a4b"}, + {file = "markupsafe-3.0.3-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:83891d0e9fb81a825d9a6d61e3f07550ca70a076484292a70fde82c4b807286f"}, + {file = "markupsafe-3.0.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:77f0643abe7495da77fb436f50f8dab76dbc6e5fd25d39589a0f1fe6548bfa2b"}, + {file = "markupsafe-3.0.3-cp312-cp312-win32.whl", hash = "sha256:d88b440e37a16e651bda4c7c2b930eb586fd15ca7406cb39e211fcff3bf3017d"}, + {file = "markupsafe-3.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:26a5784ded40c9e318cfc2bdb30fe164bdb8665ded9cd64d500a34fb42067b1c"}, + {file = "markupsafe-3.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:35add3b638a5d900e807944a078b51922212fb3dedb01633a8defc4b01a3c85f"}, + {file = "markupsafe-3.0.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e1cf1972137e83c5d4c136c43ced9ac51d0e124706ee1c8aa8532c1287fa8795"}, + {file = "markupsafe-3.0.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:116bb52f642a37c115f517494ea5feb03889e04df47eeff5b130b1808ce7c219"}, + {file = "markupsafe-3.0.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:133a43e73a802c5562be9bbcd03d090aa5a1fe899db609c29e8c8d815c5f6de6"}, + {file = "markupsafe-3.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ccfcd093f13f0f0b7fdd0f198b90053bf7b2f02a3927a30e63f3ccc9df56b676"}, + {file = "markupsafe-3.0.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:509fa21c6deb7a7a273d629cf5ec029bc209d1a51178615ddf718f5918992ab9"}, + {file = "markupsafe-3.0.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a4afe79fb3de0b7097d81da19090f4df4f8d3a2b3adaa8764138aac2e44f3af1"}, + {file = "markupsafe-3.0.3-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:795e7751525cae078558e679d646ae45574b47ed6e7771863fcc079a6171a0fc"}, + {file = "markupsafe-3.0.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8485f406a96febb5140bfeca44a73e3ce5116b2501ac54fe953e488fb1d03b12"}, + {file = "markupsafe-3.0.3-cp313-cp313-win32.whl", hash = "sha256:bdd37121970bfd8be76c5fb069c7751683bdf373db1ed6c010162b2a130248ed"}, + {file = "markupsafe-3.0.3-cp313-cp313-win_amd64.whl", hash = "sha256:9a1abfdc021a164803f4d485104931fb8f8c1efd55bc6b748d2f5774e78b62c5"}, + {file = "markupsafe-3.0.3-cp313-cp313-win_arm64.whl", hash = "sha256:7e68f88e5b8799aa49c85cd116c932a1ac15caaa3f5db09087854d218359e485"}, + {file = "markupsafe-3.0.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:218551f6df4868a8d527e3062d0fb968682fe92054e89978594c28e642c43a73"}, + {file = "markupsafe-3.0.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3524b778fe5cfb3452a09d31e7b5adefeea8c5be1d43c4f810ba09f2ceb29d37"}, + {file = "markupsafe-3.0.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4e885a3d1efa2eadc93c894a21770e4bc67899e3543680313b09f139e149ab19"}, + {file = "markupsafe-3.0.3-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8709b08f4a89aa7586de0aadc8da56180242ee0ada3999749b183aa23df95025"}, + {file = "markupsafe-3.0.3-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:b8512a91625c9b3da6f127803b166b629725e68af71f8184ae7e7d54686a56d6"}, + {file = "markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:9b79b7a16f7fedff2495d684f2b59b0457c3b493778c9eed31111be64d58279f"}, + {file = "markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:12c63dfb4a98206f045aa9563db46507995f7ef6d83b2f68eda65c307c6829eb"}, + {file = "markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:8f71bc33915be5186016f675cd83a1e08523649b0e33efdb898db577ef5bb009"}, + {file = "markupsafe-3.0.3-cp313-cp313t-win32.whl", hash = "sha256:69c0b73548bc525c8cb9a251cddf1931d1db4d2258e9599c28c07ef3580ef354"}, + {file = "markupsafe-3.0.3-cp313-cp313t-win_amd64.whl", hash = "sha256:1b4b79e8ebf6b55351f0d91fe80f893b4743f104bff22e90697db1590e47a218"}, + {file = "markupsafe-3.0.3-cp313-cp313t-win_arm64.whl", hash = "sha256:ad2cf8aa28b8c020ab2fc8287b0f823d0a7d8630784c31e9ee5edea20f406287"}, + {file = "markupsafe-3.0.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:eaa9599de571d72e2daf60164784109f19978b327a3910d3e9de8c97b5b70cfe"}, + {file = "markupsafe-3.0.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:c47a551199eb8eb2121d4f0f15ae0f923d31350ab9280078d1e5f12b249e0026"}, + {file = "markupsafe-3.0.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f34c41761022dd093b4b6896d4810782ffbabe30f2d443ff5f083e0cbbb8c737"}, + {file = "markupsafe-3.0.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:457a69a9577064c05a97c41f4e65148652db078a3a509039e64d3467b9e7ef97"}, + {file = "markupsafe-3.0.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:e8afc3f2ccfa24215f8cb28dcf43f0113ac3c37c2f0f0806d8c70e4228c5cf4d"}, + {file = "markupsafe-3.0.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:ec15a59cf5af7be74194f7ab02d0f59a62bdcf1a537677ce67a2537c9b87fcda"}, + {file = "markupsafe-3.0.3-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:0eb9ff8191e8498cca014656ae6b8d61f39da5f95b488805da4bb029cccbfbaf"}, + {file = "markupsafe-3.0.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:2713baf880df847f2bece4230d4d094280f4e67b1e813eec43b4c0e144a34ffe"}, + {file = "markupsafe-3.0.3-cp314-cp314-win32.whl", hash = "sha256:729586769a26dbceff69f7a7dbbf59ab6572b99d94576a5592625d5b411576b9"}, + {file = "markupsafe-3.0.3-cp314-cp314-win_amd64.whl", hash = "sha256:bdc919ead48f234740ad807933cdf545180bfbe9342c2bb451556db2ed958581"}, + {file = "markupsafe-3.0.3-cp314-cp314-win_arm64.whl", hash = "sha256:5a7d5dc5140555cf21a6fefbdbf8723f06fcd2f63ef108f2854de715e4422cb4"}, + {file = "markupsafe-3.0.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:1353ef0c1b138e1907ae78e2f6c63ff67501122006b0f9abad68fda5f4ffc6ab"}, + {file = "markupsafe-3.0.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:1085e7fbddd3be5f89cc898938f42c0b3c711fdcb37d75221de2666af647c175"}, + {file = "markupsafe-3.0.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1b52b4fb9df4eb9ae465f8d0c228a00624de2334f216f178a995ccdcf82c4634"}, + {file = "markupsafe-3.0.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fed51ac40f757d41b7c48425901843666a6677e3e8eb0abcff09e4ba6e664f50"}, + {file = "markupsafe-3.0.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:f190daf01f13c72eac4efd5c430a8de82489d9cff23c364c3ea822545032993e"}, + {file = "markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:e56b7d45a839a697b5eb268c82a71bd8c7f6c94d6fd50c3d577fa39a9f1409f5"}, + {file = "markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:f3e98bb3798ead92273dc0e5fd0f31ade220f59a266ffd8a4f6065e0a3ce0523"}, + {file = "markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:5678211cb9333a6468fb8d8be0305520aa073f50d17f089b5b4b477ea6e67fdc"}, + {file = "markupsafe-3.0.3-cp314-cp314t-win32.whl", hash = "sha256:915c04ba3851909ce68ccc2b8e2cd691618c4dc4c4232fb7982bca3f41fd8c3d"}, + {file = "markupsafe-3.0.3-cp314-cp314t-win_amd64.whl", hash = "sha256:4faffd047e07c38848ce017e8725090413cd80cbc23d86e55c587bf979e579c9"}, + {file = "markupsafe-3.0.3-cp314-cp314t-win_arm64.whl", hash = "sha256:32001d6a8fc98c8cb5c947787c5d08b0a50663d139f1305bac5885d98d9b40fa"}, + {file = "markupsafe-3.0.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:15d939a21d546304880945ca1ecb8a039db6b4dc49b2c5a400387cdae6a62e26"}, + {file = "markupsafe-3.0.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f71a396b3bf33ecaa1626c255855702aca4d3d9fea5e051b41ac59a9c1c41edc"}, + {file = "markupsafe-3.0.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0f4b68347f8c5eab4a13419215bdfd7f8c9b19f2b25520968adfad23eb0ce60c"}, + {file = "markupsafe-3.0.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e8fc20152abba6b83724d7ff268c249fa196d8259ff481f3b1476383f8f24e42"}, + {file = "markupsafe-3.0.3-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:949b8d66bc381ee8b007cd945914c721d9aba8e27f71959d750a46f7c282b20b"}, + {file = "markupsafe-3.0.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:3537e01efc9d4dccdf77221fb1cb3b8e1a38d5428920e0657ce299b20324d758"}, + {file = "markupsafe-3.0.3-cp39-cp39-musllinux_1_2_riscv64.whl", hash = "sha256:591ae9f2a647529ca990bc681daebdd52c8791ff06c2bfa05b65163e28102ef2"}, + {file = "markupsafe-3.0.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:a320721ab5a1aba0a233739394eb907f8c8da5c98c9181d1161e77a0c8e36f2d"}, + {file = "markupsafe-3.0.3-cp39-cp39-win32.whl", hash = "sha256:df2449253ef108a379b8b5d6b43f4b1a8e81a061d6537becd5582fba5f9196d7"}, + {file = "markupsafe-3.0.3-cp39-cp39-win_amd64.whl", hash = "sha256:7c3fb7d25180895632e5d3148dbdc29ea38ccb7fd210aa27acbd1201a1902c6e"}, + {file = "markupsafe-3.0.3-cp39-cp39-win_arm64.whl", hash = "sha256:38664109c14ffc9e7437e86b4dceb442b0096dfe3541d7864d9cbe1da4cf36c8"}, + {file = "markupsafe-3.0.3.tar.gz", hash = "sha256:722695808f4b6457b320fdc131280796bdceb04ab50fe1795cd540799ebe1698"}, +] + +[[package]] +name = "matplotlib" +version = "3.10.7" +description = "Python plotting package" +optional = false +python-versions = ">=3.10" +groups = ["main"] +files = [ + {file = "matplotlib-3.10.7-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:7ac81eee3b7c266dd92cee1cd658407b16c57eed08c7421fa354ed68234de380"}, + {file = "matplotlib-3.10.7-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:667ecd5d8d37813a845053d8f5bf110b534c3c9f30e69ebd25d4701385935a6d"}, + {file = "matplotlib-3.10.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:cc1c51b846aca49a5a8b44fbba6a92d583a35c64590ad9e1e950dc88940a4297"}, + {file = "matplotlib-3.10.7-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4a11c2e9e72e7de09b7b72e62f3df23317c888299c875e2b778abf1eda8c0a42"}, + {file = "matplotlib-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f19410b486fdd139885ace124e57f938c1e6a3210ea13dd29cab58f5d4bc12c7"}, + {file = "matplotlib-3.10.7-cp310-cp310-win_amd64.whl", hash = "sha256:b498e9e4022f93de2d5a37615200ca01297ceebbb56fe4c833f46862a490f9e3"}, + {file = "matplotlib-3.10.7-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:53b492410a6cd66c7a471de6c924f6ede976e963c0f3097a3b7abfadddc67d0a"}, + {file = "matplotlib-3.10.7-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d9749313deb729f08207718d29c86246beb2ea3fdba753595b55901dee5d2fd6"}, + {file = "matplotlib-3.10.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:2222c7ba2cbde7fe63032769f6eb7e83ab3227f47d997a8453377709b7fe3a5a"}, + {file = "matplotlib-3.10.7-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e91f61a064c92c307c5a9dc8c05dc9f8a68f0a3be199d9a002a0622e13f874a1"}, + {file = "matplotlib-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6f1851eab59ca082c95df5a500106bad73672645625e04538b3ad0f69471ffcc"}, + {file = "matplotlib-3.10.7-cp311-cp311-win_amd64.whl", hash = "sha256:6516ce375109c60ceec579e699524e9d504cd7578506f01150f7a6bc174a775e"}, + {file = "matplotlib-3.10.7-cp311-cp311-win_arm64.whl", hash = "sha256:b172db79759f5f9bc13ef1c3ef8b9ee7b37b0247f987fbbbdaa15e4f87fd46a9"}, + {file = "matplotlib-3.10.7-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7a0edb7209e21840e8361e91ea84ea676658aa93edd5f8762793dec77a4a6748"}, + {file = "matplotlib-3.10.7-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c380371d3c23e0eadf8ebff114445b9f970aff2010198d498d4ab4c3b41eea4f"}, + {file = "matplotlib-3.10.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:d5f256d49fea31f40f166a5e3131235a5d2f4b7f44520b1cf0baf1ce568ccff0"}, + {file = "matplotlib-3.10.7-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:11ae579ac83cdf3fb72573bb89f70e0534de05266728740d478f0f818983c695"}, + {file = "matplotlib-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:4c14b6acd16cddc3569a2d515cfdd81c7a68ac5639b76548cfc1a9e48b20eb65"}, + {file = "matplotlib-3.10.7-cp312-cp312-win_amd64.whl", hash = "sha256:0d8c32b7ea6fb80b1aeff5a2ceb3fb9778e2759e899d9beff75584714afcc5ee"}, + {file = "matplotlib-3.10.7-cp312-cp312-win_arm64.whl", hash = "sha256:5f3f6d315dcc176ba7ca6e74c7768fb7e4cf566c49cb143f6bc257b62e634ed8"}, + {file = "matplotlib-3.10.7-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:1d9d3713a237970569156cfb4de7533b7c4eacdd61789726f444f96a0d28f57f"}, + {file = "matplotlib-3.10.7-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:37a1fea41153dd6ee061d21ab69c9cf2cf543160b1b85d89cd3d2e2a7902ca4c"}, + {file = "matplotlib-3.10.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:b3c4ea4948d93c9c29dc01c0c23eef66f2101bf75158c291b88de6525c55c3d1"}, + {file = "matplotlib-3.10.7-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:22df30ffaa89f6643206cf13877191c63a50e8f800b038bc39bee9d2d4957632"}, + {file = "matplotlib-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b69676845a0a66f9da30e87f48be36734d6748024b525ec4710be40194282c84"}, + {file = "matplotlib-3.10.7-cp313-cp313-win_amd64.whl", hash = "sha256:744991e0cc863dd669c8dc9136ca4e6e0082be2070b9d793cbd64bec872a6815"}, + {file = "matplotlib-3.10.7-cp313-cp313-win_arm64.whl", hash = "sha256:fba2974df0bf8ce3c995fa84b79cde38326e0f7b5409e7a3a481c1141340bcf7"}, + {file = "matplotlib-3.10.7-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:932c55d1fa7af4423422cb6a492a31cbcbdbe68fd1a9a3f545aa5e7a143b5355"}, + {file = "matplotlib-3.10.7-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:5e38c2d581d62ee729a6e144c47a71b3f42fb4187508dbbf4fe71d5612c3433b"}, + {file = "matplotlib-3.10.7-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:786656bb13c237bbcebcd402f65f44dd61ead60ee3deb045af429d889c8dbc67"}, + {file = "matplotlib-3.10.7-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:09d7945a70ea43bf9248f4b6582734c2fe726723204a76eca233f24cffc7ef67"}, + {file = "matplotlib-3.10.7-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:d0b181e9fa8daf1d9f2d4c547527b167cb8838fc587deabca7b5c01f97199e84"}, + {file = "matplotlib-3.10.7-cp313-cp313t-win_amd64.whl", hash = "sha256:31963603041634ce1a96053047b40961f7a29eb8f9a62e80cc2c0427aa1d22a2"}, + {file = "matplotlib-3.10.7-cp313-cp313t-win_arm64.whl", hash = "sha256:aebed7b50aa6ac698c90f60f854b47e48cd2252b30510e7a1feddaf5a3f72cbf"}, + {file = "matplotlib-3.10.7-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:d883460c43e8c6b173fef244a2341f7f7c0e9725c7fe68306e8e44ed9c8fb100"}, + {file = "matplotlib-3.10.7-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:07124afcf7a6504eafcb8ce94091c5898bbdd351519a1beb5c45f7a38c67e77f"}, + {file = "matplotlib-3.10.7-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c17398b709a6cce3d9fdb1595c33e356d91c098cd9486cb2cc21ea2ea418e715"}, + {file = "matplotlib-3.10.7-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7146d64f561498764561e9cd0ed64fcf582e570fc519e6f521e2d0cfd43365e1"}, + {file = "matplotlib-3.10.7-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:90ad854c0a435da3104c01e2c6f0028d7e719b690998a2333d7218db80950722"}, + {file = "matplotlib-3.10.7-cp314-cp314-win_amd64.whl", hash = "sha256:4645fc5d9d20ffa3a39361fcdbcec731382763b623b72627806bf251b6388866"}, + {file = "matplotlib-3.10.7-cp314-cp314-win_arm64.whl", hash = "sha256:9257be2f2a03415f9105c486d304a321168e61ad450f6153d77c69504ad764bb"}, + {file = "matplotlib-3.10.7-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:1e4bbad66c177a8fdfa53972e5ef8be72a5f27e6a607cec0d8579abd0f3102b1"}, + {file = "matplotlib-3.10.7-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:d8eb7194b084b12feb19142262165832fc6ee879b945491d1c3d4660748020c4"}, + {file = "matplotlib-3.10.7-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b4d41379b05528091f00e1728004f9a8d7191260f3862178b88e8fd770206318"}, + {file = "matplotlib-3.10.7-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4a74f79fafb2e177f240579bc83f0b60f82cc47d2f1d260f422a0627207008ca"}, + {file = "matplotlib-3.10.7-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:702590829c30aada1e8cef0568ddbffa77ca747b4d6e36c6d173f66e301f89cc"}, + {file = "matplotlib-3.10.7-cp314-cp314t-win_amd64.whl", hash = "sha256:f79d5de970fc90cd5591f60053aecfce1fcd736e0303d9f0bf86be649fa68fb8"}, + {file = "matplotlib-3.10.7-cp314-cp314t-win_arm64.whl", hash = "sha256:cb783436e47fcf82064baca52ce748af71725d0352e1d31564cbe9c95df92b9c"}, + {file = "matplotlib-3.10.7-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:5c09cf8f2793f81368f49f118b6f9f937456362bee282eac575cca7f84cda537"}, + {file = "matplotlib-3.10.7-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:de66744b2bb88d5cd27e80dfc2ec9f0517d0a46d204ff98fe9e5f2864eb67657"}, + {file = "matplotlib-3.10.7-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:53cc80662dd197ece414dd5b66e07370201515a3eaf52e7c518c68c16814773b"}, + {file = "matplotlib-3.10.7-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:15112bcbaef211bd663fa935ec33313b948e214454d949b723998a43357b17b0"}, + {file = "matplotlib-3.10.7-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:d2a959c640cdeecdd2ec3136e8ea0441da59bcaf58d67e9c590740addba2cb68"}, + {file = "matplotlib-3.10.7-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:3886e47f64611046bc1db523a09dd0a0a6bed6081e6f90e13806dd1d1d1b5e91"}, + {file = "matplotlib-3.10.7.tar.gz", hash = "sha256:a06ba7e2a2ef9131c79c49e63dad355d2d878413a0376c1727c8b9335ff731c7"}, +] + +[package.dependencies] +contourpy = ">=1.0.1" +cycler = ">=0.10" +fonttools = ">=4.22.0" +kiwisolver = ">=1.3.1" +numpy = ">=1.23" +packaging = ">=20.0" +pillow = ">=8" +pyparsing = ">=3" +python-dateutil = ">=2.7" + +[package.extras] +dev = ["meson-python (>=0.13.1,<0.17.0)", "pybind11 (>=2.13.2,!=2.13.3)", "setuptools (>=64)", "setuptools_scm (>=7)"] + +[[package]] +name = "mergedeep" +version = "1.3.4" +description = "A deep merge function for 🐍." +optional = false +python-versions = ">=3.6" +groups = ["dev"] +files = [ + {file = "mergedeep-1.3.4-py3-none-any.whl", hash = "sha256:70775750742b25c0d8f36c55aed03d24c3384d17c951b3175d898bd778ef0307"}, + {file = "mergedeep-1.3.4.tar.gz", hash = "sha256:0096d52e9dad9939c3d975a774666af186eda617e6ca84df4c94dec30004f2a8"}, +] + +[[package]] +name = "mkdocs" +version = "1.6.1" +description = "Project documentation with Markdown." +optional = false +python-versions = ">=3.8" +groups = ["dev"] +files = [ + {file = "mkdocs-1.6.1-py3-none-any.whl", hash = "sha256:db91759624d1647f3f34aa0c3f327dd2601beae39a366d6e064c03468d35c20e"}, + {file = "mkdocs-1.6.1.tar.gz", hash = "sha256:7b432f01d928c084353ab39c57282f29f92136665bdd6abf7c1ec8d822ef86f2"}, +] + +[package.dependencies] +click = ">=7.0" +colorama = {version = ">=0.4", markers = "platform_system == \"Windows\""} +ghp-import = ">=1.0" +jinja2 = ">=2.11.1" +markdown = ">=3.3.6" +markupsafe = ">=2.0.1" +mergedeep = ">=1.3.4" +mkdocs-get-deps = ">=0.2.0" +packaging = ">=20.5" +pathspec = ">=0.11.1" +pyyaml = ">=5.1" +pyyaml-env-tag = ">=0.1" +watchdog = ">=2.0" + +[package.extras] +i18n = ["babel (>=2.9.0)"] +min-versions = ["babel (==2.9.0)", "click (==7.0)", "colorama (==0.4) ; platform_system == \"Windows\"", "ghp-import (==1.0)", "importlib-metadata (==4.4) ; python_version < \"3.10\"", "jinja2 (==2.11.1)", "markdown (==3.3.6)", "markupsafe (==2.0.1)", "mergedeep (==1.3.4)", "mkdocs-get-deps (==0.2.0)", "packaging (==20.5)", "pathspec (==0.11.1)", "pyyaml (==5.1)", "pyyaml-env-tag (==0.1)", "watchdog (==2.0)"] + +[[package]] +name = "mkdocs-autorefs" +version = "1.4.3" +description = "Automatically link across pages in MkDocs." +optional = false +python-versions = ">=3.9" +groups = ["dev"] +files = [ + {file = "mkdocs_autorefs-1.4.3-py3-none-any.whl", hash = "sha256:469d85eb3114801d08e9cc55d102b3ba65917a869b893403b8987b601cf55dc9"}, + {file = "mkdocs_autorefs-1.4.3.tar.gz", hash = "sha256:beee715b254455c4aa93b6ef3c67579c399ca092259cc41b7d9342573ff1fc75"}, +] + +[package.dependencies] +Markdown = ">=3.3" +markupsafe = ">=2.0.1" +mkdocs = ">=1.1" + +[[package]] +name = "mkdocs-gen-files" +version = "0.5.0" +description = "MkDocs plugin to programmatically generate documentation pages during the build" +optional = false +python-versions = ">=3.7" +groups = ["dev"] +files = [ + {file = "mkdocs_gen_files-0.5.0-py3-none-any.whl", hash = "sha256:7ac060096f3f40bd19039e7277dd3050be9a453c8ac578645844d4d91d7978ea"}, + {file = "mkdocs_gen_files-0.5.0.tar.gz", hash = "sha256:4c7cf256b5d67062a788f6b1d035e157fc1a9498c2399be9af5257d4ff4d19bc"}, +] + +[package.dependencies] +mkdocs = ">=1.0.3" + +[[package]] +name = "mkdocs-get-deps" +version = "0.2.0" +description = "MkDocs extension that lists all dependencies according to a mkdocs.yml file" +optional = false +python-versions = ">=3.8" +groups = ["dev"] +files = [ + {file = "mkdocs_get_deps-0.2.0-py3-none-any.whl", hash = "sha256:2bf11d0b133e77a0dd036abeeb06dec8775e46efa526dc70667d8863eefc6134"}, + {file = "mkdocs_get_deps-0.2.0.tar.gz", hash = "sha256:162b3d129c7fad9b19abfdcb9c1458a651628e4b1dea628ac68790fb3061c60c"}, +] + +[package.dependencies] +mergedeep = ">=1.3.4" +platformdirs = ">=2.2.0" +pyyaml = ">=5.1" + +[[package]] +name = "mkdocs-literate-nav" +version = "0.6.2" +description = "MkDocs plugin to specify the navigation in Markdown instead of YAML" +optional = false +python-versions = ">=3.9" +groups = ["dev"] +files = [ + {file = "mkdocs_literate_nav-0.6.2-py3-none-any.whl", hash = "sha256:0a6489a26ec7598477b56fa112056a5e3a6c15729f0214bea8a4dbc55bd5f630"}, + {file = "mkdocs_literate_nav-0.6.2.tar.gz", hash = "sha256:760e1708aa4be86af81a2b56e82c739d5a8388a0eab1517ecfd8e5aa40810a75"}, +] + +[package.dependencies] +mkdocs = ">=1.4.1" + +[[package]] +name = "mkdocs-material" +version = "9.7.0" +description = "Documentation that simply works" +optional = false +python-versions = ">=3.8" +groups = ["dev"] +files = [ + {file = "mkdocs_material-9.7.0-py3-none-any.whl", hash = "sha256:da2866ea53601125ff5baa8aa06404c6e07af3c5ce3d5de95e3b52b80b442887"}, + {file = "mkdocs_material-9.7.0.tar.gz", hash = "sha256:602b359844e906ee402b7ed9640340cf8a474420d02d8891451733b6b02314ec"}, +] + +[package.dependencies] +babel = ">=2.10" +backrefs = ">=5.7.post1" +colorama = ">=0.4" +jinja2 = ">=3.1" +markdown = ">=3.2" +mkdocs = ">=1.6" +mkdocs-material-extensions = ">=1.3" +paginate = ">=0.5" +pygments = ">=2.16" +pymdown-extensions = ">=10.2" +requests = ">=2.26" + +[package.extras] +git = ["mkdocs-git-committers-plugin-2 (>=1.1,<3)", "mkdocs-git-revision-date-localized-plugin (>=1.2.4,<2.0)"] +imaging = ["cairosvg (>=2.6,<3.0)", "pillow (>=10.2,<12.0)"] +recommended = ["mkdocs-minify-plugin (>=0.7,<1.0)", "mkdocs-redirects (>=1.2,<2.0)", "mkdocs-rss-plugin (>=1.6,<2.0)"] + +[[package]] +name = "mkdocs-material-extensions" +version = "1.3.1" +description = "Extension pack for Python Markdown and MkDocs Material." +optional = false +python-versions = ">=3.8" +groups = ["dev"] +files = [ + {file = "mkdocs_material_extensions-1.3.1-py3-none-any.whl", hash = "sha256:adff8b62700b25cb77b53358dad940f3ef973dd6db797907c49e3c2ef3ab4e31"}, + {file = "mkdocs_material_extensions-1.3.1.tar.gz", hash = "sha256:10c9511cea88f568257f960358a467d12b970e1f7b2c0e5fb2bb48cab1928443"}, +] + +[[package]] +name = "mkdocstrings" +version = "0.25.2" +description = "Automatic documentation from sources, for MkDocs." +optional = false +python-versions = ">=3.8" +groups = ["dev"] +files = [ + {file = "mkdocstrings-0.25.2-py3-none-any.whl", hash = "sha256:9e2cda5e2e12db8bb98d21e3410f3f27f8faab685a24b03b06ba7daa5b92abfc"}, + {file = "mkdocstrings-0.25.2.tar.gz", hash = "sha256:5cf57ad7f61e8be3111a2458b4e49c2029c9cb35525393b179f9c916ca8042dc"}, +] + +[package.dependencies] +click = ">=7.0" +Jinja2 = ">=2.11.1" +Markdown = ">=3.3" +MarkupSafe = ">=1.1" +mkdocs = ">=1.4" +mkdocs-autorefs = ">=0.3.1" +platformdirs = ">=2.2.0" +pymdown-extensions = ">=6.3" + +[package.extras] +crystal = ["mkdocstrings-crystal (>=0.3.4)"] +python = ["mkdocstrings-python (>=0.5.2)"] +python-legacy = ["mkdocstrings-python-legacy (>=0.2.1)"] + +[[package]] +name = "mkdocstrings-python" +version = "1.10.9" +description = "A Python handler for mkdocstrings." +optional = false +python-versions = ">=3.8" +groups = ["dev"] +files = [ + {file = "mkdocstrings_python-1.10.9-py3-none-any.whl", hash = "sha256:cbe98710a6757dfd4dff79bf36cb9731908fb4c69dd2736b15270ae7a488243d"}, + {file = "mkdocstrings_python-1.10.9.tar.gz", hash = "sha256:f344aaa47e727d8a2dc911e063025e58e2b7fb31a41110ccc3902aa6be7ca196"}, +] + +[package.dependencies] +griffe = ">=0.49" +mkdocs-autorefs = ">=1.0" +mkdocstrings = ">=0.25" + +[[package]] +name = "mypy" +version = "1.18.2" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.9" +groups = ["dev"] +files = [ + {file = "mypy-1.18.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c1eab0cf6294dafe397c261a75f96dc2c31bffe3b944faa24db5def4e2b0f77c"}, + {file = "mypy-1.18.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:7a780ca61fc239e4865968ebc5240bb3bf610ef59ac398de9a7421b54e4a207e"}, + {file = "mypy-1.18.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:448acd386266989ef11662ce3c8011fd2a7b632e0ec7d61a98edd8e27472225b"}, + {file = "mypy-1.18.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f9e171c465ad3901dc652643ee4bffa8e9fef4d7d0eece23b428908c77a76a66"}, + {file = "mypy-1.18.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:592ec214750bc00741af1f80cbf96b5013d81486b7bb24cb052382c19e40b428"}, + {file = "mypy-1.18.2-cp310-cp310-win_amd64.whl", hash = "sha256:7fb95f97199ea11769ebe3638c29b550b5221e997c63b14ef93d2e971606ebed"}, + {file = "mypy-1.18.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:807d9315ab9d464125aa9fcf6d84fde6e1dc67da0b6f80e7405506b8ac72bc7f"}, + {file = "mypy-1.18.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:776bb00de1778caf4db739c6e83919c1d85a448f71979b6a0edd774ea8399341"}, + {file = "mypy-1.18.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1379451880512ffce14505493bd9fe469e0697543717298242574882cf8cdb8d"}, + {file = "mypy-1.18.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1331eb7fd110d60c24999893320967594ff84c38ac6d19e0a76c5fd809a84c86"}, + {file = "mypy-1.18.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:3ca30b50a51e7ba93b00422e486cbb124f1c56a535e20eff7b2d6ab72b3b2e37"}, + {file = "mypy-1.18.2-cp311-cp311-win_amd64.whl", hash = "sha256:664dc726e67fa54e14536f6e1224bcfce1d9e5ac02426d2326e2bb4e081d1ce8"}, + {file = "mypy-1.18.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:33eca32dd124b29400c31d7cf784e795b050ace0e1f91b8dc035672725617e34"}, + {file = "mypy-1.18.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a3c47adf30d65e89b2dcd2fa32f3aeb5e94ca970d2c15fcb25e297871c8e4764"}, + {file = "mypy-1.18.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5d6c838e831a062f5f29d11c9057c6009f60cb294fea33a98422688181fe2893"}, + {file = "mypy-1.18.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:01199871b6110a2ce984bde85acd481232d17413868c9807e95c1b0739a58914"}, + {file = "mypy-1.18.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:a2afc0fa0b0e91b4599ddfe0f91e2c26c2b5a5ab263737e998d6817874c5f7c8"}, + {file = "mypy-1.18.2-cp312-cp312-win_amd64.whl", hash = "sha256:d8068d0afe682c7c4897c0f7ce84ea77f6de953262b12d07038f4d296d547074"}, + {file = "mypy-1.18.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:07b8b0f580ca6d289e69209ec9d3911b4a26e5abfde32228a288eb79df129fcc"}, + {file = "mypy-1.18.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:ed4482847168439651d3feee5833ccedbf6657e964572706a2adb1f7fa4dfe2e"}, + {file = "mypy-1.18.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c3ad2afadd1e9fea5cf99a45a822346971ede8685cc581ed9cd4d42eaf940986"}, + {file = "mypy-1.18.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a431a6f1ef14cf8c144c6b14793a23ec4eae3db28277c358136e79d7d062f62d"}, + {file = "mypy-1.18.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:7ab28cc197f1dd77a67e1c6f35cd1f8e8b73ed2217e4fc005f9e6a504e46e7ba"}, + {file = "mypy-1.18.2-cp313-cp313-win_amd64.whl", hash = "sha256:0e2785a84b34a72ba55fb5daf079a1003a34c05b22238da94fcae2bbe46f3544"}, + {file = "mypy-1.18.2-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:62f0e1e988ad41c2a110edde6c398383a889d95b36b3e60bcf155f5164c4fdce"}, + {file = "mypy-1.18.2-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:8795a039bab805ff0c1dfdb8cd3344642c2b99b8e439d057aba30850b8d3423d"}, + {file = "mypy-1.18.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6ca1e64b24a700ab5ce10133f7ccd956a04715463d30498e64ea8715236f9c9c"}, + {file = "mypy-1.18.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d924eef3795cc89fecf6bedc6ed32b33ac13e8321344f6ddbf8ee89f706c05cb"}, + {file = "mypy-1.18.2-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:20c02215a080e3a2be3aa50506c67242df1c151eaba0dcbc1e4e557922a26075"}, + {file = "mypy-1.18.2-cp314-cp314-win_amd64.whl", hash = "sha256:749b5f83198f1ca64345603118a6f01a4e99ad4bf9d103ddc5a3200cc4614adf"}, + {file = "mypy-1.18.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:25a9c8fb67b00599f839cf472713f54249a62efd53a54b565eb61956a7e3296b"}, + {file = "mypy-1.18.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c2b9c7e284ee20e7598d6f42e13ca40b4928e6957ed6813d1ab6348aa3f47133"}, + {file = "mypy-1.18.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d6985ed057513e344e43a26cc1cd815c7a94602fb6a3130a34798625bc2f07b6"}, + {file = "mypy-1.18.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:22f27105f1525ec024b5c630c0b9f36d5c1cc4d447d61fe51ff4bd60633f47ac"}, + {file = "mypy-1.18.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:030c52d0ea8144e721e49b1f68391e39553d7451f0c3f8a7565b59e19fcb608b"}, + {file = "mypy-1.18.2-cp39-cp39-win_amd64.whl", hash = "sha256:aa5e07ac1a60a253445797e42b8b2963c9675563a94f11291ab40718b016a7a0"}, + {file = "mypy-1.18.2-py3-none-any.whl", hash = "sha256:22a1748707dd62b58d2ae53562ffc4d7f8bcc727e8ac7cbc69c053ddc874d47e"}, + {file = "mypy-1.18.2.tar.gz", hash = "sha256:06a398102a5f203d7477b2923dda3634c36727fa5c237d8f859ef90c42a9924b"}, +] + +[package.dependencies] +mypy_extensions = ">=1.0.0" +pathspec = ">=0.9.0" +typing_extensions = ">=4.6.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +faster-cache = ["orjson"] +install-types = ["pip"] +mypyc = ["setuptools (>=50)"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.1.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.8" +groups = ["dev"] +files = [ + {file = "mypy_extensions-1.1.0-py3-none-any.whl", hash = "sha256:1be4cccdb0f2482337c4743e60421de3a356cd97508abadd57d47403e94f5505"}, + {file = "mypy_extensions-1.1.0.tar.gz", hash = "sha256:52e68efc3284861e772bbcd66823fde5ae21fd2fdb51c62a211403730b916558"}, +] + +[[package]] +name = "networkx" +version = "3.5" +description = "Python package for creating and manipulating graphs and networks" +optional = false +python-versions = ">=3.11" +groups = ["main"] +files = [ + {file = "networkx-3.5-py3-none-any.whl", hash = "sha256:0030d386a9a06dee3565298b4a734b68589749a544acbb6c412dc9e2489ec6ec"}, + {file = "networkx-3.5.tar.gz", hash = "sha256:d4c6f9cf81f52d69230866796b82afbccdec3db7ae4fbd1b65ea750feed50037"}, +] + +[package.extras] +default = ["matplotlib (>=3.8)", "numpy (>=1.25)", "pandas (>=2.0)", "scipy (>=1.11.2)"] +developer = ["mypy (>=1.15)", "pre-commit (>=4.1)"] +doc = ["intersphinx-registry", "myst-nb (>=1.1)", "numpydoc (>=1.8.0)", "pillow (>=10)", "pydata-sphinx-theme (>=0.16)", "sphinx (>=8.0)", "sphinx-gallery (>=0.18)", "texext (>=0.6.7)"] +example = ["cairocffi (>=1.7)", "contextily (>=1.6)", "igraph (>=0.11)", "momepy (>=0.7.2)", "osmnx (>=2.0.0)", "scikit-learn (>=1.5)", "seaborn (>=0.13)"] +extra = ["lxml (>=4.6)", "pydot (>=3.0.1)", "pygraphviz (>=1.14)", "sympy (>=1.10)"] +test = ["pytest (>=7.2)", "pytest-cov (>=4.0)", "pytest-xdist (>=3.0)"] +test-extras = ["pytest-mpl", "pytest-randomly"] + +[[package]] +name = "nodeenv" +version = "1.9.1" +description = "Node.js virtual environment builder" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +groups = ["dev"] +files = [ + {file = "nodeenv-1.9.1-py2.py3-none-any.whl", hash = "sha256:ba11c9782d29c27c70ffbdda2d7415098754709be8a7056d79a737cd901155c9"}, + {file = "nodeenv-1.9.1.tar.gz", hash = "sha256:6ec12890a2dab7946721edbfbcd91f3319c6ccc9aec47be7c7e6b7011ee6645f"}, +] + +[[package]] +name = "numpy" +version = "1.26.4" +description = "Fundamental package for array computing in Python" +optional = false +python-versions = ">=3.9" +groups = ["main", "dev"] +files = [ + {file = "numpy-1.26.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0"}, + {file = "numpy-1.26.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a"}, + {file = "numpy-1.26.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d209d8969599b27ad20994c8e41936ee0964e6da07478d6c35016bc386b66ad4"}, + {file = "numpy-1.26.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ffa75af20b44f8dba823498024771d5ac50620e6915abac414251bd971b4529f"}, + {file = "numpy-1.26.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:62b8e4b1e28009ef2846b4c7852046736bab361f7aeadeb6a5b89ebec3c7055a"}, + {file = "numpy-1.26.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a4abb4f9001ad2858e7ac189089c42178fcce737e4169dc61321660f1a96c7d2"}, + {file = "numpy-1.26.4-cp310-cp310-win32.whl", hash = "sha256:bfe25acf8b437eb2a8b2d49d443800a5f18508cd811fea3181723922a8a82b07"}, + {file = "numpy-1.26.4-cp310-cp310-win_amd64.whl", hash = "sha256:b97fe8060236edf3662adfc2c633f56a08ae30560c56310562cb4f95500022d5"}, + {file = "numpy-1.26.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4c66707fabe114439db9068ee468c26bbdf909cac0fb58686a42a24de1760c71"}, + {file = "numpy-1.26.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:edd8b5fe47dab091176d21bb6de568acdd906d1887a4584a15a9a96a1dca06ef"}, + {file = "numpy-1.26.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ab55401287bfec946ced39700c053796e7cc0e3acbef09993a9ad2adba6ca6e"}, + {file = "numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:666dbfb6ec68962c033a450943ded891bed2d54e6755e35e5835d63f4f6931d5"}, + {file = "numpy-1.26.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:96ff0b2ad353d8f990b63294c8986f1ec3cb19d749234014f4e7eb0112ceba5a"}, + {file = "numpy-1.26.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:60dedbb91afcbfdc9bc0b1f3f402804070deed7392c23eb7a7f07fa857868e8a"}, + {file = "numpy-1.26.4-cp311-cp311-win32.whl", hash = "sha256:1af303d6b2210eb850fcf03064d364652b7120803a0b872f5211f5234b399f20"}, + {file = "numpy-1.26.4-cp311-cp311-win_amd64.whl", hash = "sha256:cd25bcecc4974d09257ffcd1f098ee778f7834c3ad767fe5db785be9a4aa9cb2"}, + {file = "numpy-1.26.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:b3ce300f3644fb06443ee2222c2201dd3a89ea6040541412b8fa189341847218"}, + {file = "numpy-1.26.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:03a8c78d01d9781b28a6989f6fa1bb2c4f2d51201cf99d3dd875df6fbd96b23b"}, + {file = "numpy-1.26.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9fad7dcb1aac3c7f0584a5a8133e3a43eeb2fe127f47e3632d43d677c66c102b"}, + {file = "numpy-1.26.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:675d61ffbfa78604709862923189bad94014bef562cc35cf61d3a07bba02a7ed"}, + {file = "numpy-1.26.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ab47dbe5cc8210f55aa58e4805fe224dac469cde56b9f731a4c098b91917159a"}, + {file = "numpy-1.26.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:1dda2e7b4ec9dd512f84935c5f126c8bd8b9f2fc001e9f54af255e8c5f16b0e0"}, + {file = "numpy-1.26.4-cp312-cp312-win32.whl", hash = "sha256:50193e430acfc1346175fcbdaa28ffec49947a06918b7b92130744e81e640110"}, + {file = "numpy-1.26.4-cp312-cp312-win_amd64.whl", hash = "sha256:08beddf13648eb95f8d867350f6a018a4be2e5ad54c8d8caed89ebca558b2818"}, + {file = "numpy-1.26.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7349ab0fa0c429c82442a27a9673fc802ffdb7c7775fad780226cb234965e53c"}, + {file = "numpy-1.26.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:52b8b60467cd7dd1e9ed082188b4e6bb35aa5cdd01777621a1658910745b90be"}, + {file = "numpy-1.26.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d5241e0a80d808d70546c697135da2c613f30e28251ff8307eb72ba696945764"}, + {file = "numpy-1.26.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f870204a840a60da0b12273ef34f7051e98c3b5961b61b0c2c1be6dfd64fbcd3"}, + {file = "numpy-1.26.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:679b0076f67ecc0138fd2ede3a8fd196dddc2ad3254069bcb9faf9a79b1cebcd"}, + {file = "numpy-1.26.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:47711010ad8555514b434df65f7d7b076bb8261df1ca9bb78f53d3b2db02e95c"}, + {file = "numpy-1.26.4-cp39-cp39-win32.whl", hash = "sha256:a354325ee03388678242a4d7ebcd08b5c727033fcff3b2f536aea978e15ee9e6"}, + {file = "numpy-1.26.4-cp39-cp39-win_amd64.whl", hash = "sha256:3373d5d70a5fe74a2c1bb6d2cfd9609ecf686d47a2d7b1d37a8f3b6bf6003aea"}, + {file = "numpy-1.26.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:afedb719a9dcfc7eaf2287b839d8198e06dcd4cb5d276a3df279231138e83d30"}, + {file = "numpy-1.26.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95a7476c59002f2f6c590b9b7b998306fba6a5aa646b1e22ddfeaf8f78c3a29c"}, + {file = "numpy-1.26.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7e50d0a0cc3189f9cb0aeb3a6a6af18c16f59f004b866cd2be1c14b36134a4a0"}, + {file = "numpy-1.26.4.tar.gz", hash = "sha256:2a02aba9ed12e4ac4eb3ea9421c420301a0c6460d9830d74a9df87efa4912010"}, +] + +[[package]] +name = "packaging" +version = "25.0" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.8" +groups = ["main", "dev"] +files = [ + {file = "packaging-25.0-py3-none-any.whl", hash = "sha256:29572ef2b1f17581046b3a2227d5c611fb25ec70ca1ba8554b24b0e69331a484"}, + {file = "packaging-25.0.tar.gz", hash = "sha256:d443872c98d677bf60f6a1f2f8c1cb748e8fe762d2bf9d3148b5599295b0fc4f"}, +] + +[[package]] +name = "paginate" +version = "0.5.7" +description = "Divides large result sets into pages for easier browsing" +optional = false +python-versions = "*" +groups = ["dev"] +files = [ + {file = "paginate-0.5.7-py2.py3-none-any.whl", hash = "sha256:b885e2af73abcf01d9559fd5216b57ef722f8c42affbb63942377668e35c7591"}, + {file = "paginate-0.5.7.tar.gz", hash = "sha256:22bd083ab41e1a8b4f3690544afb2c60c25e5c9a63a30fa2f483f6c60c8e5945"}, +] + +[package.extras] +dev = ["pytest", "tox"] +lint = ["black"] + +[[package]] +name = "pandas" +version = "2.3.3" +description = "Powerful data structures for data analysis, time series, and statistics" +optional = false +python-versions = ">=3.9" +groups = ["main"] +files = [ + {file = "pandas-2.3.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:376c6446ae31770764215a6c937f72d917f214b43560603cd60da6408f183b6c"}, + {file = "pandas-2.3.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e19d192383eab2f4ceb30b412b22ea30690c9e618f78870357ae1d682912015a"}, + {file = "pandas-2.3.3-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5caf26f64126b6c7aec964f74266f435afef1c1b13da3b0636c7518a1fa3e2b1"}, + {file = "pandas-2.3.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:dd7478f1463441ae4ca7308a70e90b33470fa593429f9d4c578dd00d1fa78838"}, + {file = "pandas-2.3.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:4793891684806ae50d1288c9bae9330293ab4e083ccd1c5e383c34549c6e4250"}, + {file = "pandas-2.3.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:28083c648d9a99a5dd035ec125d42439c6c1c525098c58af0fc38dd1a7a1b3d4"}, + {file = "pandas-2.3.3-cp310-cp310-win_amd64.whl", hash = "sha256:503cf027cf9940d2ceaa1a93cfb5f8c8c7e6e90720a2850378f0b3f3b1e06826"}, + {file = "pandas-2.3.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:602b8615ebcc4a0c1751e71840428ddebeb142ec02c786e8ad6b1ce3c8dec523"}, + {file = "pandas-2.3.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8fe25fc7b623b0ef6b5009149627e34d2a4657e880948ec3c840e9402e5c1b45"}, + {file = "pandas-2.3.3-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b468d3dad6ff947df92dcb32ede5b7bd41a9b3cceef0a30ed925f6d01fb8fa66"}, + {file = "pandas-2.3.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b98560e98cb334799c0b07ca7967ac361a47326e9b4e5a7dfb5ab2b1c9d35a1b"}, + {file = "pandas-2.3.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1d37b5848ba49824e5c30bedb9c830ab9b7751fd049bc7914533e01c65f79791"}, + {file = "pandas-2.3.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:db4301b2d1f926ae677a751eb2bd0e8c5f5319c9cb3f88b0becbbb0b07b34151"}, + {file = "pandas-2.3.3-cp311-cp311-win_amd64.whl", hash = "sha256:f086f6fe114e19d92014a1966f43a3e62285109afe874f067f5abbdcbb10e59c"}, + {file = "pandas-2.3.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:6d21f6d74eb1725c2efaa71a2bfc661a0689579b58e9c0ca58a739ff0b002b53"}, + {file = "pandas-2.3.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:3fd2f887589c7aa868e02632612ba39acb0b8948faf5cc58f0850e165bd46f35"}, + {file = "pandas-2.3.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ecaf1e12bdc03c86ad4a7ea848d66c685cb6851d807a26aa245ca3d2017a1908"}, + {file = "pandas-2.3.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b3d11d2fda7eb164ef27ffc14b4fcab16a80e1ce67e9f57e19ec0afaf715ba89"}, + {file = "pandas-2.3.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a68e15f780eddf2b07d242e17a04aa187a7ee12b40b930bfdd78070556550e98"}, + {file = "pandas-2.3.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:371a4ab48e950033bcf52b6527eccb564f52dc826c02afd9a1bc0ab731bba084"}, + {file = "pandas-2.3.3-cp312-cp312-win_amd64.whl", hash = "sha256:a16dcec078a01eeef8ee61bf64074b4e524a2a3f4b3be9326420cabe59c4778b"}, + {file = "pandas-2.3.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:56851a737e3470de7fa88e6131f41281ed440d29a9268dcbf0002da5ac366713"}, + {file = "pandas-2.3.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:bdcd9d1167f4885211e401b3036c0c8d9e274eee67ea8d0758a256d60704cfe8"}, + {file = "pandas-2.3.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e32e7cc9af0f1cc15548288a51a3b681cc2a219faa838e995f7dc53dbab1062d"}, + {file = "pandas-2.3.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:318d77e0e42a628c04dc56bcef4b40de67918f7041c2b061af1da41dcff670ac"}, + {file = "pandas-2.3.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:4e0a175408804d566144e170d0476b15d78458795bb18f1304fb94160cabf40c"}, + {file = "pandas-2.3.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:93c2d9ab0fc11822b5eece72ec9587e172f63cff87c00b062f6e37448ced4493"}, + {file = "pandas-2.3.3-cp313-cp313-win_amd64.whl", hash = "sha256:f8bfc0e12dc78f777f323f55c58649591b2cd0c43534e8355c51d3fede5f4dee"}, + {file = "pandas-2.3.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:75ea25f9529fdec2d2e93a42c523962261e567d250b0013b16210e1d40d7c2e5"}, + {file = "pandas-2.3.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:74ecdf1d301e812db96a465a525952f4dde225fdb6d8e5a521d47e1f42041e21"}, + {file = "pandas-2.3.3-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6435cb949cb34ec11cc9860246ccb2fdc9ecd742c12d3304989017d53f039a78"}, + {file = "pandas-2.3.3-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:900f47d8f20860de523a1ac881c4c36d65efcb2eb850e6948140fa781736e110"}, + {file = "pandas-2.3.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:a45c765238e2ed7d7c608fc5bc4a6f88b642f2f01e70c0c23d2224dd21829d86"}, + {file = "pandas-2.3.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:c4fc4c21971a1a9f4bdb4c73978c7f7256caa3e62b323f70d6cb80db583350bc"}, + {file = "pandas-2.3.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:ee15f284898e7b246df8087fc82b87b01686f98ee67d85a17b7ab44143a3a9a0"}, + {file = "pandas-2.3.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:1611aedd912e1ff81ff41c745822980c49ce4a7907537be8692c8dbc31924593"}, + {file = "pandas-2.3.3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6d2cefc361461662ac48810cb14365a365ce864afe85ef1f447ff5a1e99ea81c"}, + {file = "pandas-2.3.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ee67acbbf05014ea6c763beb097e03cd629961c8a632075eeb34247120abcb4b"}, + {file = "pandas-2.3.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:c46467899aaa4da076d5abc11084634e2d197e9460643dd455ac3db5856b24d6"}, + {file = "pandas-2.3.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:6253c72c6a1d990a410bc7de641d34053364ef8bcd3126f7e7450125887dffe3"}, + {file = "pandas-2.3.3-cp314-cp314-win_amd64.whl", hash = "sha256:1b07204a219b3b7350abaae088f451860223a52cfb8a6c53358e7948735158e5"}, + {file = "pandas-2.3.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:2462b1a365b6109d275250baaae7b760fd25c726aaca0054649286bcfbb3e8ec"}, + {file = "pandas-2.3.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:0242fe9a49aa8b4d78a4fa03acb397a58833ef6199e9aa40a95f027bb3a1b6e7"}, + {file = "pandas-2.3.3-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a21d830e78df0a515db2b3d2f5570610f5e6bd2e27749770e8bb7b524b89b450"}, + {file = "pandas-2.3.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2e3ebdb170b5ef78f19bfb71b0dc5dc58775032361fa188e814959b74d726dd5"}, + {file = "pandas-2.3.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:d051c0e065b94b7a3cea50eb1ec32e912cd96dba41647eb24104b6c6c14c5788"}, + {file = "pandas-2.3.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:3869faf4bd07b3b66a9f462417d0ca3a9df29a9f6abd5d0d0dbab15dac7abe87"}, + {file = "pandas-2.3.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c503ba5216814e295f40711470446bc3fd00f0faea8a086cbc688808e26f92a2"}, + {file = "pandas-2.3.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a637c5cdfa04b6d6e2ecedcb81fc52ffb0fd78ce2ebccc9ea964df9f658de8c8"}, + {file = "pandas-2.3.3-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:854d00d556406bffe66a4c0802f334c9ad5a96b4f1f868adf036a21b11ef13ff"}, + {file = "pandas-2.3.3-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bf1f8a81d04ca90e32a0aceb819d34dbd378a98bf923b6398b9a3ec0bf44de29"}, + {file = "pandas-2.3.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:23ebd657a4d38268c7dfbdf089fbc31ea709d82e4923c5ffd4fbd5747133ce73"}, + {file = "pandas-2.3.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5554c929ccc317d41a5e3d1234f3be588248e61f08a74dd17c9eabb535777dc9"}, + {file = "pandas-2.3.3-cp39-cp39-win_amd64.whl", hash = "sha256:d3e28b3e83862ccf4d85ff19cf8c20b2ae7e503881711ff2d534dc8f761131aa"}, + {file = "pandas-2.3.3.tar.gz", hash = "sha256:e05e1af93b977f7eafa636d043f9f94c7ee3ac81af99c13508215942e64c993b"}, +] + +[package.dependencies] +numpy = {version = ">=1.26.0", markers = "python_version >= \"3.12\""} +python-dateutil = ">=2.8.2" +pytz = ">=2020.1" +tzdata = ">=2022.7" + +[package.extras] +all = ["PyQt5 (>=5.15.9)", "SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-driver-sqlite (>=0.8.0)", "beautifulsoup4 (>=4.11.2)", "bottleneck (>=1.3.6)", "dataframe-api-compat (>=0.1.7)", "fastparquet (>=2022.12.0)", "fsspec (>=2022.11.0)", "gcsfs (>=2022.11.0)", "html5lib (>=1.1)", "hypothesis (>=6.46.1)", "jinja2 (>=3.1.2)", "lxml (>=4.9.2)", "matplotlib (>=3.6.3)", "numba (>=0.56.4)", "numexpr (>=2.8.4)", "odfpy (>=1.4.1)", "openpyxl (>=3.1.0)", "pandas-gbq (>=0.19.0)", "psycopg2 (>=2.9.6)", "pyarrow (>=10.0.1)", "pymysql (>=1.0.2)", "pyreadstat (>=1.2.0)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)", "python-calamine (>=0.1.7)", "pyxlsb (>=1.0.10)", "qtpy (>=2.3.0)", "s3fs (>=2022.11.0)", "scipy (>=1.10.0)", "tables (>=3.8.0)", "tabulate (>=0.9.0)", "xarray (>=2022.12.0)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.5)", "zstandard (>=0.19.0)"] +aws = ["s3fs (>=2022.11.0)"] +clipboard = ["PyQt5 (>=5.15.9)", "qtpy (>=2.3.0)"] +compression = ["zstandard (>=0.19.0)"] +computation = ["scipy (>=1.10.0)", "xarray (>=2022.12.0)"] +consortium-standard = ["dataframe-api-compat (>=0.1.7)"] +excel = ["odfpy (>=1.4.1)", "openpyxl (>=3.1.0)", "python-calamine (>=0.1.7)", "pyxlsb (>=1.0.10)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.5)"] +feather = ["pyarrow (>=10.0.1)"] +fss = ["fsspec (>=2022.11.0)"] +gcp = ["gcsfs (>=2022.11.0)", "pandas-gbq (>=0.19.0)"] +hdf5 = ["tables (>=3.8.0)"] +html = ["beautifulsoup4 (>=4.11.2)", "html5lib (>=1.1)", "lxml (>=4.9.2)"] +mysql = ["SQLAlchemy (>=2.0.0)", "pymysql (>=1.0.2)"] +output-formatting = ["jinja2 (>=3.1.2)", "tabulate (>=0.9.0)"] +parquet = ["pyarrow (>=10.0.1)"] +performance = ["bottleneck (>=1.3.6)", "numba (>=0.56.4)", "numexpr (>=2.8.4)"] +plot = ["matplotlib (>=3.6.3)"] +postgresql = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "psycopg2 (>=2.9.6)"] +pyarrow = ["pyarrow (>=10.0.1)"] +spss = ["pyreadstat (>=1.2.0)"] +sql-other = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-driver-sqlite (>=0.8.0)"] +test = ["hypothesis (>=6.46.1)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)"] +xml = ["lxml (>=4.9.2)"] + +[[package]] +name = "pandas-stubs" +version = "2.3.2.250926" +description = "Type annotations for pandas" +optional = false +python-versions = ">=3.10" +groups = ["dev"] +files = [ + {file = "pandas_stubs-2.3.2.250926-py3-none-any.whl", hash = "sha256:81121818453dcfe00f45c852f4dceee043640b813830f6e7bd084a4ef7ff7270"}, + {file = "pandas_stubs-2.3.2.250926.tar.gz", hash = "sha256:c64b9932760ceefb96a3222b953e6a251321a9832a28548be6506df473a66406"}, +] + +[package.dependencies] +numpy = ">=1.23.5" +types-pytz = ">=2022.1.1" + +[[package]] +name = "pathspec" +version = "0.12.1" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.8" +groups = ["dev"] +files = [ + {file = "pathspec-0.12.1-py3-none-any.whl", hash = "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08"}, + {file = "pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712"}, +] + +[[package]] +name = "pefile" +version = "2023.2.7" +description = "Python PE parsing module" +optional = false +python-versions = ">=3.6.0" +groups = ["dev"] +markers = "sys_platform == \"win32\"" +files = [ + {file = "pefile-2023.2.7-py3-none-any.whl", hash = "sha256:da185cd2af68c08a6cd4481f7325ed600a88f6a813bad9dea07ab3ef73d8d8d6"}, + {file = "pefile-2023.2.7.tar.gz", hash = "sha256:82e6114004b3d6911c77c3953e3838654b04511b8b66e8583db70c65998017dc"}, +] + +[[package]] +name = "pillow" +version = "12.0.0" +description = "Python Imaging Library (fork)" +optional = false +python-versions = ">=3.10" +groups = ["main"] +files = [ + {file = "pillow-12.0.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:3adfb466bbc544b926d50fe8f4a4e6abd8c6bffd28a26177594e6e9b2b76572b"}, + {file = "pillow-12.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1ac11e8ea4f611c3c0147424eae514028b5e9077dd99ab91e1bd7bc33ff145e1"}, + {file = "pillow-12.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d49e2314c373f4c2b39446fb1a45ed333c850e09d0c59ac79b72eb3b95397363"}, + {file = "pillow-12.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:c7b2a63fd6d5246349f3d3f37b14430d73ee7e8173154461785e43036ffa96ca"}, + {file = "pillow-12.0.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d64317d2587c70324b79861babb9c09f71fbb780bad212018874b2c013d8600e"}, + {file = "pillow-12.0.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d77153e14b709fd8b8af6f66a3afbb9ed6e9fc5ccf0b6b7e1ced7b036a228782"}, + {file = "pillow-12.0.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:32ed80ea8a90ee3e6fa08c21e2e091bba6eda8eccc83dbc34c95169507a91f10"}, + {file = "pillow-12.0.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:c828a1ae702fc712978bda0320ba1b9893d99be0badf2647f693cc01cf0f04fa"}, + {file = "pillow-12.0.0-cp310-cp310-win32.whl", hash = "sha256:bd87e140e45399c818fac4247880b9ce719e4783d767e030a883a970be632275"}, + {file = "pillow-12.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:455247ac8a4cfb7b9bc45b7e432d10421aea9fc2e74d285ba4072688a74c2e9d"}, + {file = "pillow-12.0.0-cp310-cp310-win_arm64.whl", hash = "sha256:6ace95230bfb7cd79ef66caa064bbe2f2a1e63d93471c3a2e1f1348d9f22d6b7"}, + {file = "pillow-12.0.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:0fd00cac9c03256c8b2ff58f162ebcd2587ad3e1f2e397eab718c47e24d231cc"}, + {file = "pillow-12.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a3475b96f5908b3b16c47533daaa87380c491357d197564e0ba34ae75c0f3257"}, + {file = "pillow-12.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:110486b79f2d112cf6add83b28b627e369219388f64ef2f960fef9ebaf54c642"}, + {file = "pillow-12.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:5269cc1caeedb67e6f7269a42014f381f45e2e7cd42d834ede3c703a1d915fe3"}, + {file = "pillow-12.0.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:aa5129de4e174daccbc59d0a3b6d20eaf24417d59851c07ebb37aeb02947987c"}, + {file = "pillow-12.0.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bee2a6db3a7242ea309aa7ee8e2780726fed67ff4e5b40169f2c940e7eb09227"}, + {file = "pillow-12.0.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:90387104ee8400a7b4598253b4c406f8958f59fcf983a6cea2b50d59f7d63d0b"}, + {file = "pillow-12.0.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bc91a56697869546d1b8f0a3ff35224557ae7f881050e99f615e0119bf934b4e"}, + {file = "pillow-12.0.0-cp311-cp311-win32.whl", hash = "sha256:27f95b12453d165099c84f8a8bfdfd46b9e4bda9e0e4b65f0635430027f55739"}, + {file = "pillow-12.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:b583dc9070312190192631373c6c8ed277254aa6e6084b74bdd0a6d3b221608e"}, + {file = "pillow-12.0.0-cp311-cp311-win_arm64.whl", hash = "sha256:759de84a33be3b178a64c8ba28ad5c135900359e85fb662bc6e403ad4407791d"}, + {file = "pillow-12.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:53561a4ddc36facb432fae7a9d8afbfaf94795414f5cdc5fc52f28c1dca90371"}, + {file = "pillow-12.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:71db6b4c1653045dacc1585c1b0d184004f0d7e694c7b34ac165ca70c0838082"}, + {file = "pillow-12.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:2fa5f0b6716fc88f11380b88b31fe591a06c6315e955c096c35715788b339e3f"}, + {file = "pillow-12.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:82240051c6ca513c616f7f9da06e871f61bfd7805f566275841af15015b8f98d"}, + {file = "pillow-12.0.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:55f818bd74fe2f11d4d7cbc65880a843c4075e0ac7226bc1a23261dbea531953"}, + {file = "pillow-12.0.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b87843e225e74576437fd5b6a4c2205d422754f84a06942cfaf1dc32243e45a8"}, + {file = "pillow-12.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:c607c90ba67533e1b2355b821fef6764d1dd2cbe26b8c1005ae84f7aea25ff79"}, + {file = "pillow-12.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:21f241bdd5080a15bc86d3466a9f6074a9c2c2b314100dd896ac81ee6db2f1ba"}, + {file = "pillow-12.0.0-cp312-cp312-win32.whl", hash = "sha256:dd333073e0cacdc3089525c7df7d39b211bcdf31fc2824e49d01c6b6187b07d0"}, + {file = "pillow-12.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:9fe611163f6303d1619bbcb653540a4d60f9e55e622d60a3108be0d5b441017a"}, + {file = "pillow-12.0.0-cp312-cp312-win_arm64.whl", hash = "sha256:7dfb439562f234f7d57b1ac6bc8fe7f838a4bd49c79230e0f6a1da93e82f1fad"}, + {file = "pillow-12.0.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl", hash = "sha256:0869154a2d0546545cde61d1789a6524319fc1897d9ee31218eae7a60ccc5643"}, + {file = "pillow-12.0.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:a7921c5a6d31b3d756ec980f2f47c0cfdbce0fc48c22a39347a895f41f4a6ea4"}, + {file = "pillow-12.0.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:1ee80a59f6ce048ae13cda1abf7fbd2a34ab9ee7d401c46be3ca685d1999a399"}, + {file = "pillow-12.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:c50f36a62a22d350c96e49ad02d0da41dbd17ddc2e29750dbdba4323f85eb4a5"}, + {file = "pillow-12.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:5193fde9a5f23c331ea26d0cf171fbf67e3f247585f50c08b3e205c7aeb4589b"}, + {file = "pillow-12.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:bde737cff1a975b70652b62d626f7785e0480918dece11e8fef3c0cf057351c3"}, + {file = "pillow-12.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:a6597ff2b61d121172f5844b53f21467f7082f5fb385a9a29c01414463f93b07"}, + {file = "pillow-12.0.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0b817e7035ea7f6b942c13aa03bb554fc44fea70838ea21f8eb31c638326584e"}, + {file = "pillow-12.0.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f4f1231b7dec408e8670264ce63e9c71409d9583dd21d32c163e25213ee2a344"}, + {file = "pillow-12.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:6e51b71417049ad6ab14c49608b4a24d8fb3fe605e5dfabfe523b58064dc3d27"}, + {file = "pillow-12.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:d120c38a42c234dc9a8c5de7ceaaf899cf33561956acb4941653f8bdc657aa79"}, + {file = "pillow-12.0.0-cp313-cp313-win32.whl", hash = "sha256:4cc6b3b2efff105c6a1656cfe59da4fdde2cda9af1c5e0b58529b24525d0a098"}, + {file = "pillow-12.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:4cf7fed4b4580601c4345ceb5d4cbf5a980d030fd5ad07c4d2ec589f95f09905"}, + {file = "pillow-12.0.0-cp313-cp313-win_arm64.whl", hash = "sha256:9f0b04c6b8584c2c193babcccc908b38ed29524b29dd464bc8801bf10d746a3a"}, + {file = "pillow-12.0.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:7fa22993bac7b77b78cae22bad1e2a987ddf0d9015c63358032f84a53f23cdc3"}, + {file = "pillow-12.0.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:f135c702ac42262573fe9714dfe99c944b4ba307af5eb507abef1667e2cbbced"}, + {file = "pillow-12.0.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:c85de1136429c524e55cfa4e033b4a7940ac5c8ee4d9401cc2d1bf48154bbc7b"}, + {file = "pillow-12.0.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:38df9b4bfd3db902c9c2bd369bcacaf9d935b2fff73709429d95cc41554f7b3d"}, + {file = "pillow-12.0.0-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7d87ef5795da03d742bf49439f9ca4d027cde49c82c5371ba52464aee266699a"}, + {file = "pillow-12.0.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:aff9e4d82d082ff9513bdd6acd4f5bd359f5b2c870907d2b0a9c5e10d40c88fe"}, + {file = "pillow-12.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:8d8ca2b210ada074d57fcee40c30446c9562e542fc46aedc19baf758a93532ee"}, + {file = "pillow-12.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:99a7f72fb6249302aa62245680754862a44179b545ded638cf1fef59befb57ef"}, + {file = "pillow-12.0.0-cp313-cp313t-win32.whl", hash = "sha256:4078242472387600b2ce8d93ade8899c12bf33fa89e55ec89fe126e9d6d5d9e9"}, + {file = "pillow-12.0.0-cp313-cp313t-win_amd64.whl", hash = "sha256:2c54c1a783d6d60595d3514f0efe9b37c8808746a66920315bfd34a938d7994b"}, + {file = "pillow-12.0.0-cp313-cp313t-win_arm64.whl", hash = "sha256:26d9f7d2b604cd23aba3e9faf795787456ac25634d82cd060556998e39c6fa47"}, + {file = "pillow-12.0.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl", hash = "sha256:beeae3f27f62308f1ddbcfb0690bf44b10732f2ef43758f169d5e9303165d3f9"}, + {file = "pillow-12.0.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:d4827615da15cd59784ce39d3388275ec093ae3ee8d7f0c089b76fa87af756c2"}, + {file = "pillow-12.0.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:3e42edad50b6909089750e65c91aa09aaf1e0a71310d383f11321b27c224ed8a"}, + {file = "pillow-12.0.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:e5d8efac84c9afcb40914ab49ba063d94f5dbdf5066db4482c66a992f47a3a3b"}, + {file = "pillow-12.0.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:266cd5f2b63ff316d5a1bba46268e603c9caf5606d44f38c2873c380950576ad"}, + {file = "pillow-12.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:58eea5ebe51504057dd95c5b77d21700b77615ab0243d8152793dc00eb4faf01"}, + {file = "pillow-12.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:f13711b1a5ba512d647a0e4ba79280d3a9a045aaf7e0cc6fbe96b91d4cdf6b0c"}, + {file = "pillow-12.0.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6846bd2d116ff42cba6b646edf5bf61d37e5cbd256425fa089fee4ff5c07a99e"}, + {file = "pillow-12.0.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c98fa880d695de164b4135a52fd2e9cd7b7c90a9d8ac5e9e443a24a95ef9248e"}, + {file = "pillow-12.0.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:fa3ed2a29a9e9d2d488b4da81dcb54720ac3104a20bf0bd273f1e4648aff5af9"}, + {file = "pillow-12.0.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:d034140032870024e6b9892c692fe2968493790dd57208b2c37e3fb35f6df3ab"}, + {file = "pillow-12.0.0-cp314-cp314-win32.whl", hash = "sha256:1b1b133e6e16105f524a8dec491e0586d072948ce15c9b914e41cdadd209052b"}, + {file = "pillow-12.0.0-cp314-cp314-win_amd64.whl", hash = "sha256:8dc232e39d409036af549c86f24aed8273a40ffa459981146829a324e0848b4b"}, + {file = "pillow-12.0.0-cp314-cp314-win_arm64.whl", hash = "sha256:d52610d51e265a51518692045e372a4c363056130d922a7351429ac9f27e70b0"}, + {file = "pillow-12.0.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:1979f4566bb96c1e50a62d9831e2ea2d1211761e5662afc545fa766f996632f6"}, + {file = "pillow-12.0.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:b2e4b27a6e15b04832fe9bf292b94b5ca156016bbc1ea9c2c20098a0320d6cf6"}, + {file = "pillow-12.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:fb3096c30df99fd01c7bf8e544f392103d0795b9f98ba71a8054bcbf56b255f1"}, + {file = "pillow-12.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:7438839e9e053ef79f7112c881cef684013855016f928b168b81ed5835f3e75e"}, + {file = "pillow-12.0.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5d5c411a8eaa2299322b647cd932586b1427367fd3184ffbb8f7a219ea2041ca"}, + {file = "pillow-12.0.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d7e091d464ac59d2c7ad8e7e08105eaf9dafbc3883fd7265ffccc2baad6ac925"}, + {file = "pillow-12.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:792a2c0be4dcc18af9d4a2dfd8a11a17d5e25274a1062b0ec1c2d79c76f3e7f8"}, + {file = "pillow-12.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:afbefa430092f71a9593a99ab6a4e7538bc9eabbf7bf94f91510d3503943edc4"}, + {file = "pillow-12.0.0-cp314-cp314t-win32.whl", hash = "sha256:3830c769decf88f1289680a59d4f4c46c72573446352e2befec9a8512104fa52"}, + {file = "pillow-12.0.0-cp314-cp314t-win_amd64.whl", hash = "sha256:905b0365b210c73afb0ebe9101a32572152dfd1c144c7e28968a331b9217b94a"}, + {file = "pillow-12.0.0-cp314-cp314t-win_arm64.whl", hash = "sha256:99353a06902c2e43b43e8ff74ee65a7d90307d82370604746738a1e0661ccca7"}, + {file = "pillow-12.0.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:b22bd8c974942477156be55a768f7aa37c46904c175be4e158b6a86e3a6b7ca8"}, + {file = "pillow-12.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:805ebf596939e48dbb2e4922a1d3852cfc25c38160751ce02da93058b48d252a"}, + {file = "pillow-12.0.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:cae81479f77420d217def5f54b5b9d279804d17e982e0f2fa19b1d1e14ab5197"}, + {file = "pillow-12.0.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:aeaefa96c768fc66818730b952a862235d68825c178f1b3ffd4efd7ad2edcb7c"}, + {file = "pillow-12.0.0-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:09f2d0abef9e4e2f349305a4f8cc784a8a6c2f58a8c4892eea13b10a943bd26e"}, + {file = "pillow-12.0.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bdee52571a343d721fb2eb3b090a82d959ff37fc631e3f70422e0c2e029f3e76"}, + {file = "pillow-12.0.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:b290fd8aa38422444d4b50d579de197557f182ef1068b75f5aa8558638b8d0a5"}, + {file = "pillow-12.0.0.tar.gz", hash = "sha256:87d4f8125c9988bfbed67af47dd7a953e2fc7b0cc1e7800ec6d2080d490bb353"}, +] + +[package.extras] +docs = ["furo", "olefile", "sphinx (>=8.2)", "sphinx-autobuild", "sphinx-copybutton", "sphinx-inline-tabs", "sphinxext-opengraph"] +fpx = ["olefile"] +mic = ["olefile"] +test-arrow = ["arro3-compute", "arro3-core", "nanoarrow", "pyarrow"] +tests = ["check-manifest", "coverage (>=7.4.2)", "defusedxml", "markdown2", "olefile", "packaging", "pyroma (>=5)", "pytest", "pytest-cov", "pytest-timeout", "pytest-xdist", "trove-classifiers (>=2024.10.12)"] +xmp = ["defusedxml"] + +[[package]] +name = "platformdirs" +version = "4.5.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`." +optional = false +python-versions = ">=3.10" +groups = ["dev"] +files = [ + {file = "platformdirs-4.5.0-py3-none-any.whl", hash = "sha256:e578a81bb873cbb89a41fcc904c7ef523cc18284b7e3b3ccf06aca1403b7ebd3"}, + {file = "platformdirs-4.5.0.tar.gz", hash = "sha256:70ddccdd7c99fc5942e9fc25636a8b34d04c24b335100223152c2803e4063312"}, +] + +[package.extras] +docs = ["furo (>=2025.9.25)", "proselint (>=0.14)", "sphinx (>=8.2.3)", "sphinx-autodoc-typehints (>=3.2)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.4.2)", "pytest-cov (>=7)", "pytest-mock (>=3.15.1)"] +type = ["mypy (>=1.18.2)"] + +[[package]] +name = "pre-commit" +version = "3.8.0" +description = "A framework for managing and maintaining multi-language pre-commit hooks." +optional = false +python-versions = ">=3.9" +groups = ["dev"] +files = [ + {file = "pre_commit-3.8.0-py2.py3-none-any.whl", hash = "sha256:9a90a53bf82fdd8778d58085faf8d83df56e40dfe18f45b19446e26bf1b3a63f"}, + {file = "pre_commit-3.8.0.tar.gz", hash = "sha256:8bb6494d4a20423842e198980c9ecf9f96607a07ea29549e180eef9ae80fe7af"}, +] + +[package.dependencies] +cfgv = ">=2.0.0" +identify = ">=1.0.0" +nodeenv = ">=0.11.1" +pyyaml = ">=5.1" +virtualenv = ">=20.10.0" + +[[package]] +name = "pygments" +version = "2.19.2" +description = "Pygments is a syntax highlighting package written in Python." +optional = false +python-versions = ">=3.8" +groups = ["dev"] +files = [ + {file = "pygments-2.19.2-py3-none-any.whl", hash = "sha256:86540386c03d588bb81d44bc3928634ff26449851e99741617ecb9037ee5ec0b"}, + {file = "pygments-2.19.2.tar.gz", hash = "sha256:636cb2477cec7f8952536970bc533bc43743542f70392ae026374600add5b887"}, +] + +[package.extras] +windows-terminal = ["colorama (>=0.4.6)"] + +[[package]] +name = "pyinstaller" +version = "6.16.0" +description = "PyInstaller bundles a Python application and all its dependencies into a single package." +optional = false +python-versions = "<3.15,>=3.8" +groups = ["dev"] +files = [ + {file = "pyinstaller-6.16.0-py3-none-macosx_10_13_universal2.whl", hash = "sha256:7fd1c785219a87ca747c21fa92f561b0d2926a7edc06d0a0fe37f3736e00bd7a"}, + {file = "pyinstaller-6.16.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:b756ddb9007b8141c5476b553351f9d97559b8af5d07f9460869bfae02be26b0"}, + {file = "pyinstaller-6.16.0-py3-none-manylinux2014_i686.whl", hash = "sha256:0a48f55b85ff60f83169e10050f2759019cf1d06773ad1c4da3a411cd8751058"}, + {file = "pyinstaller-6.16.0-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:73ba72e04fcece92e32518bbb1e1fb5ac2892677943dfdff38e01a06e8742851"}, + {file = "pyinstaller-6.16.0-py3-none-manylinux2014_s390x.whl", hash = "sha256:b1752488248f7899281b17ca3238eefb5410521291371a686a4f5830f29f52b3"}, + {file = "pyinstaller-6.16.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:ba618a61627ee674d6d68e5de084ba17c707b59a4f2a856084b3999bdffbd3f0"}, + {file = "pyinstaller-6.16.0-py3-none-musllinux_1_1_aarch64.whl", hash = "sha256:c8b7ef536711617e12fef4673806198872033fa06fa92326ad7fd1d84a9fa454"}, + {file = "pyinstaller-6.16.0-py3-none-musllinux_1_1_x86_64.whl", hash = "sha256:d1ebf84d02c51fed19b82a8abb4df536923abd55bb684d694e1356e4ae2a0ce5"}, + {file = "pyinstaller-6.16.0-py3-none-win32.whl", hash = "sha256:6d5f8617f3650ff9ef893e2ab4ddbf3c0d23d0c602ef74b5df8fbef4607840c8"}, + {file = "pyinstaller-6.16.0-py3-none-win_amd64.whl", hash = "sha256:bc10eb1a787f99fea613509f55b902fbd2d8b73ff5f51ff245ea29a481d97d41"}, + {file = "pyinstaller-6.16.0-py3-none-win_arm64.whl", hash = "sha256:d0af8a401de792c233c32c44b16d065ca9ab8262ee0c906835c12bdebc992a64"}, + {file = "pyinstaller-6.16.0.tar.gz", hash = "sha256:53559fe1e041a234f2b4dcc3288ea8bdd57f7cad8a6644e422c27bb407f3edef"}, +] + +[package.dependencies] +altgraph = "*" +macholib = {version = ">=1.8", markers = "sys_platform == \"darwin\""} +packaging = ">=22.0" +pefile = {version = ">=2022.5.30,<2024.8.26 || >2024.8.26", markers = "sys_platform == \"win32\""} +pyinstaller-hooks-contrib = ">=2025.8" +pywin32-ctypes = {version = ">=0.2.1", markers = "sys_platform == \"win32\""} +setuptools = ">=42.0.0" + +[package.extras] +completion = ["argcomplete"] +hook-testing = ["execnet (>=1.5.0)", "psutil", "pytest (>=2.7.3)"] + +[[package]] +name = "pyinstaller-hooks-contrib" +version = "2025.9" +description = "Community maintained hooks for PyInstaller" +optional = false +python-versions = ">=3.8" +groups = ["dev"] +files = [ + {file = "pyinstaller_hooks_contrib-2025.9-py3-none-any.whl", hash = "sha256:ccbfaa49399ef6b18486a165810155e5a8d4c59b41f20dc5da81af7482aaf038"}, + {file = "pyinstaller_hooks_contrib-2025.9.tar.gz", hash = "sha256:56e972bdaad4e9af767ed47d132362d162112260cbe488c9da7fee01f228a5a6"}, +] + +[package.dependencies] +packaging = ">=22.0" +setuptools = ">=42.0.0" + +[[package]] +name = "pymdown-extensions" +version = "10.17.1" +description = "Extension pack for Python Markdown." +optional = false +python-versions = ">=3.9" +groups = ["dev"] +files = [ + {file = "pymdown_extensions-10.17.1-py3-none-any.whl", hash = "sha256:1f160209c82eecbb5d8a0d8f89a4d9bd6bdcbde9a8537761844cfc57ad5cd8a6"}, + {file = "pymdown_extensions-10.17.1.tar.gz", hash = "sha256:60d05fe55e7fb5a1e4740fc575facad20dc6ee3a748e8d3d36ba44142e75ce03"}, +] + +[package.dependencies] +markdown = ">=3.6" +pyyaml = "*" + +[package.extras] +extra = ["pygments (>=2.19.1)"] + +[[package]] +name = "pyparsing" +version = "3.2.5" +description = "pyparsing - Classes and methods to define and execute parsing grammars" +optional = false +python-versions = ">=3.9" +groups = ["main"] +files = [ + {file = "pyparsing-3.2.5-py3-none-any.whl", hash = "sha256:e38a4f02064cf41fe6593d328d0512495ad1f3d8a91c4f73fc401b3079a59a5e"}, + {file = "pyparsing-3.2.5.tar.gz", hash = "sha256:2df8d5b7b2802ef88e8d016a2eb9c7aeaa923529cd251ed0fe4608275d4105b6"}, +] + +[package.extras] +diagrams = ["jinja2", "railroad-diagrams"] + +[[package]] +name = "pyproj" +version = "3.7.2" +description = "Python interface to PROJ (cartographic projections and coordinate transformations library)" +optional = false +python-versions = ">=3.11" +groups = ["main"] +files = [ + {file = "pyproj-3.7.2-cp311-cp311-macosx_13_0_x86_64.whl", hash = "sha256:2514d61f24c4e0bb9913e2c51487ecdaeca5f8748d8313c933693416ca41d4d5"}, + {file = "pyproj-3.7.2-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:8693ca3892d82e70de077701ee76dd13d7bca4ae1c9d1e739d72004df015923a"}, + {file = "pyproj-3.7.2-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:5e26484d80fea56273ed1555abaea161e9661d81a6c07815d54b8e883d4ceb25"}, + {file = "pyproj-3.7.2-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:281cb92847814e8018010c48b4069ff858a30236638631c1a91dd7bfa68f8a8a"}, + {file = "pyproj-3.7.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:9c8577f0b7bb09118ec2e57e3babdc977127dd66326d6c5d755c76b063e6d9dc"}, + {file = "pyproj-3.7.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a23f59904fac3a5e7364b3aa44d288234af267ca041adb2c2b14a903cd5d3ac5"}, + {file = "pyproj-3.7.2-cp311-cp311-win32.whl", hash = "sha256:f2af4ed34b2cf3e031a2d85b067a3ecbd38df073c567e04b52fa7a0202afde8a"}, + {file = "pyproj-3.7.2-cp311-cp311-win_amd64.whl", hash = "sha256:0b7cb633565129677b2a183c4d807c727d1c736fcb0568a12299383056e67433"}, + {file = "pyproj-3.7.2-cp311-cp311-win_arm64.whl", hash = "sha256:38b08d85e3a38e455625b80e9eb9f78027c8e2649a21dec4df1f9c3525460c71"}, + {file = "pyproj-3.7.2-cp312-cp312-macosx_13_0_x86_64.whl", hash = "sha256:0a9bb26a6356fb5b033433a6d1b4542158fb71e3c51de49b4c318a1dff3aeaab"}, + {file = "pyproj-3.7.2-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:567caa03021178861fad27fabde87500ec6d2ee173dd32f3e2d9871e40eebd68"}, + {file = "pyproj-3.7.2-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:c203101d1dc3c038a56cff0447acc515dd29d6e14811406ac539c21eed422b2a"}, + {file = "pyproj-3.7.2-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:1edc34266c0c23ced85f95a1ee8b47c9035eae6aca5b6b340327250e8e281630"}, + {file = "pyproj-3.7.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:aa9f26c21bc0e2dc3d224cb1eb4020cf23e76af179a7c66fea49b828611e4260"}, + {file = "pyproj-3.7.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f9428b318530625cb389b9ddc9c51251e172808a4af79b82809376daaeabe5e9"}, + {file = "pyproj-3.7.2-cp312-cp312-win32.whl", hash = "sha256:b3d99ed57d319da042f175f4554fc7038aa4bcecc4ac89e217e350346b742c9d"}, + {file = "pyproj-3.7.2-cp312-cp312-win_amd64.whl", hash = "sha256:11614a054cd86a2ed968a657d00987a86eeb91fdcbd9ad3310478685dc14a128"}, + {file = "pyproj-3.7.2-cp312-cp312-win_arm64.whl", hash = "sha256:509a146d1398bafe4f53273398c3bb0b4732535065fa995270e52a9d3676bca3"}, + {file = "pyproj-3.7.2-cp313-cp313-macosx_13_0_x86_64.whl", hash = "sha256:19466e529b1b15eeefdf8ff26b06fa745856c044f2f77bf0edbae94078c1dfa1"}, + {file = "pyproj-3.7.2-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:c79b9b84c4a626c5dc324c0d666be0bfcebd99f7538d66e8898c2444221b3da7"}, + {file = "pyproj-3.7.2-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:ceecf374cacca317bc09e165db38ac548ee3cad07c3609442bd70311c59c21aa"}, + {file = "pyproj-3.7.2-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:5141a538ffdbe4bfd157421828bb2e07123a90a7a2d6f30fa1462abcfb5ce681"}, + {file = "pyproj-3.7.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f000841e98ea99acbb7b8ca168d67773b0191de95187228a16110245c5d954d5"}, + {file = "pyproj-3.7.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8115faf2597f281a42ab608ceac346b4eb1383d3b45ab474fd37341c4bf82a67"}, + {file = "pyproj-3.7.2-cp313-cp313-win32.whl", hash = "sha256:f18c0579dd6be00b970cb1a6719197fceecc407515bab37da0066f0184aafdf3"}, + {file = "pyproj-3.7.2-cp313-cp313-win_amd64.whl", hash = "sha256:bb41c29d5f60854b1075853fe80c58950b398d4ebb404eb532536ac8d2834ed7"}, + {file = "pyproj-3.7.2-cp313-cp313-win_arm64.whl", hash = "sha256:2b617d573be4118c11cd96b8891a0b7f65778fa7733ed8ecdb297a447d439100"}, + {file = "pyproj-3.7.2-cp313-cp313t-macosx_13_0_x86_64.whl", hash = "sha256:d27b48f0e81beeaa2b4d60c516c3a1cfbb0c7ff6ef71256d8e9c07792f735279"}, + {file = "pyproj-3.7.2-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:55a3610d75023c7b1c6e583e48ef8f62918e85a2ae81300569d9f104d6684bb6"}, + {file = "pyproj-3.7.2-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:8d7349182fa622696787cc9e195508d2a41a64765da9b8a6bee846702b9e6220"}, + {file = "pyproj-3.7.2-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:d230b186eb876ed4f29a7c5ee310144c3a0e44e89e55f65fb3607e13f6db337c"}, + {file = "pyproj-3.7.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:237499c7862c578d0369e2b8ac56eec550e391a025ff70e2af8417139dabb41c"}, + {file = "pyproj-3.7.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:8c225f5978abd506fd9a78eaaf794435e823c9156091cabaab5374efb29d7f69"}, + {file = "pyproj-3.7.2-cp313-cp313t-win32.whl", hash = "sha256:2da731876d27639ff9d2d81c151f6ab90a1546455fabd93368e753047be344a2"}, + {file = "pyproj-3.7.2-cp313-cp313t-win_amd64.whl", hash = "sha256:f54d91ae18dd23b6c0ab48126d446820e725419da10617d86a1b69ada6d881d3"}, + {file = "pyproj-3.7.2-cp313-cp313t-win_arm64.whl", hash = "sha256:fc52ba896cfc3214dc9f9ca3c0677a623e8fdd096b257c14a31e719d21ff3fdd"}, + {file = "pyproj-3.7.2-cp314-cp314-macosx_13_0_x86_64.whl", hash = "sha256:2aaa328605ace41db050d06bac1adc11f01b71fe95c18661497763116c3a0f02"}, + {file = "pyproj-3.7.2-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:35dccbce8201313c596a970fde90e33605248b66272595c061b511c8100ccc08"}, + {file = "pyproj-3.7.2-cp314-cp314-manylinux_2_28_aarch64.whl", hash = "sha256:25b0b7cb0042444c29a164b993c45c1b8013d6c48baa61dc1160d834a277e83b"}, + {file = "pyproj-3.7.2-cp314-cp314-manylinux_2_28_x86_64.whl", hash = "sha256:85def3a6388e9ba51f964619aa002a9d2098e77c6454ff47773bb68871024281"}, + {file = "pyproj-3.7.2-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:b1bccefec3875ab81eabf49059e2b2ea77362c178b66fd3528c3e4df242f1516"}, + {file = "pyproj-3.7.2-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:d5371ca114d6990b675247355a801925814eca53e6c4b2f1b5c0a956336ee36e"}, + {file = "pyproj-3.7.2-cp314-cp314-win32.whl", hash = "sha256:77f066626030f41be543274f5ac79f2a511fe89860ecd0914f22131b40a0ec25"}, + {file = "pyproj-3.7.2-cp314-cp314-win_amd64.whl", hash = "sha256:5a964da1696b8522806f4276ab04ccfff8f9eb95133a92a25900697609d40112"}, + {file = "pyproj-3.7.2-cp314-cp314-win_arm64.whl", hash = "sha256:e258ab4dbd3cf627809067c0ba8f9884ea76c8e5999d039fb37a1619c6c3e1f6"}, + {file = "pyproj-3.7.2-cp314-cp314t-macosx_13_0_x86_64.whl", hash = "sha256:bbbac2f930c6d266f70ec75df35ef851d96fdb3701c674f42fd23a9314573b37"}, + {file = "pyproj-3.7.2-cp314-cp314t-macosx_14_0_arm64.whl", hash = "sha256:b7544e0a3d6339dc9151e9c8f3ea62a936ab7cc446a806ec448bbe86aebb979b"}, + {file = "pyproj-3.7.2-cp314-cp314t-manylinux_2_28_aarch64.whl", hash = "sha256:f7f5133dca4c703e8acadf6f30bc567d39a42c6af321e7f81975c2518f3ed357"}, + {file = "pyproj-3.7.2-cp314-cp314t-manylinux_2_28_x86_64.whl", hash = "sha256:5aff3343038d7426aa5076f07feb88065f50e0502d1b0d7c22ddfdd2c75a3f81"}, + {file = "pyproj-3.7.2-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:b0552178c61f2ac1c820d087e8ba6e62b29442debddbb09d51c4bf8acc84d888"}, + {file = "pyproj-3.7.2-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:47d87db2d2c436c5fd0409b34d70bb6cdb875cca2ebe7a9d1c442367b0ab8d59"}, + {file = "pyproj-3.7.2-cp314-cp314t-win32.whl", hash = "sha256:c9b6f1d8ad3e80a0ee0903a778b6ece7dca1d1d40f6d114ae01bc8ddbad971aa"}, + {file = "pyproj-3.7.2-cp314-cp314t-win_amd64.whl", hash = "sha256:1914e29e27933ba6f9822663ee0600f169014a2859f851c054c88cf5ea8a333c"}, + {file = "pyproj-3.7.2-cp314-cp314t-win_arm64.whl", hash = "sha256:d9d25bae416a24397e0d85739f84d323b55f6511e45a522dd7d7eae70d10c7e4"}, + {file = "pyproj-3.7.2.tar.gz", hash = "sha256:39a0cf1ecc7e282d1d30f36594ebd55c9fae1fda8a2622cee5d100430628f88c"}, +] + +[package.dependencies] +certifi = "*" + +[[package]] +name = "python-dateutil" +version = "2.9.0.post0" +description = "Extensions to the standard Python datetime module" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" +groups = ["main", "dev"] +files = [ + {file = "python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3"}, + {file = "python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427"}, +] + +[package.dependencies] +six = ">=1.5" + +[[package]] +name = "pytokens" +version = "0.3.0" +description = "A Fast, spec compliant Python 3.14+ tokenizer that runs on older Pythons." +optional = false +python-versions = ">=3.8" +groups = ["dev"] +files = [ + {file = "pytokens-0.3.0-py3-none-any.whl", hash = "sha256:95b2b5eaf832e469d141a378872480ede3f251a5a5041b8ec6e581d3ac71bbf3"}, + {file = "pytokens-0.3.0.tar.gz", hash = "sha256:2f932b14ed08de5fcf0b391ace2642f858f1394c0857202959000b68ed7a458a"}, +] + +[package.extras] +dev = ["black", "build", "mypy", "pytest", "pytest-cov", "setuptools", "tox", "twine", "wheel"] + +[[package]] +name = "pytz" +version = "2025.2" +description = "World timezone definitions, modern and historical" +optional = false +python-versions = "*" +groups = ["main"] +files = [ + {file = "pytz-2025.2-py2.py3-none-any.whl", hash = "sha256:5ddf76296dd8c44c26eb8f4b6f35488f3ccbf6fbbd7adee0b7262d43f0ec2f00"}, + {file = "pytz-2025.2.tar.gz", hash = "sha256:360b9e3dbb49a209c21ad61809c7fb453643e048b38924c765813546746e81c3"}, +] + +[[package]] +name = "pywin32-ctypes" +version = "0.2.3" +description = "A (partial) reimplementation of pywin32 using ctypes/cffi" +optional = false +python-versions = ">=3.6" +groups = ["dev"] +markers = "sys_platform == \"win32\"" +files = [ + {file = "pywin32-ctypes-0.2.3.tar.gz", hash = "sha256:d162dc04946d704503b2edc4d55f3dba5c1d539ead017afa00142c38b9885755"}, + {file = "pywin32_ctypes-0.2.3-py3-none-any.whl", hash = "sha256:8a1513379d709975552d202d942d9837758905c8d01eb82b8bcc30918929e7b8"}, +] + +[[package]] +name = "pyyaml" +version = "6.0.3" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.8" +groups = ["dev"] +files = [ + {file = "pyyaml-6.0.3-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:214ed4befebe12df36bcc8bc2b64b396ca31be9304b8f59e25c11cf94a4c033b"}, + {file = "pyyaml-6.0.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:02ea2dfa234451bbb8772601d7b8e426c2bfa197136796224e50e35a78777956"}, + {file = "pyyaml-6.0.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b30236e45cf30d2b8e7b3e85881719e98507abed1011bf463a8fa23e9c3e98a8"}, + {file = "pyyaml-6.0.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:66291b10affd76d76f54fad28e22e51719ef9ba22b29e1d7d03d6777a9174198"}, + {file = "pyyaml-6.0.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9c7708761fccb9397fe64bbc0395abcae8c4bf7b0eac081e12b809bf47700d0b"}, + {file = "pyyaml-6.0.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:418cf3f2111bc80e0933b2cd8cd04f286338bb88bdc7bc8e6dd775ebde60b5e0"}, + {file = "pyyaml-6.0.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5e0b74767e5f8c593e8c9b5912019159ed0533c70051e9cce3e8b6aa699fcd69"}, + {file = "pyyaml-6.0.3-cp310-cp310-win32.whl", hash = "sha256:28c8d926f98f432f88adc23edf2e6d4921ac26fb084b028c733d01868d19007e"}, + {file = "pyyaml-6.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:bdb2c67c6c1390b63c6ff89f210c8fd09d9a1217a465701eac7316313c915e4c"}, + {file = "pyyaml-6.0.3-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:44edc647873928551a01e7a563d7452ccdebee747728c1080d881d68af7b997e"}, + {file = "pyyaml-6.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:652cb6edd41e718550aad172851962662ff2681490a8a711af6a4d288dd96824"}, + {file = "pyyaml-6.0.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:10892704fc220243f5305762e276552a0395f7beb4dbf9b14ec8fd43b57f126c"}, + {file = "pyyaml-6.0.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:850774a7879607d3a6f50d36d04f00ee69e7fc816450e5f7e58d7f17f1ae5c00"}, + {file = "pyyaml-6.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b8bb0864c5a28024fac8a632c443c87c5aa6f215c0b126c449ae1a150412f31d"}, + {file = "pyyaml-6.0.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1d37d57ad971609cf3c53ba6a7e365e40660e3be0e5175fa9f2365a379d6095a"}, + {file = "pyyaml-6.0.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:37503bfbfc9d2c40b344d06b2199cf0e96e97957ab1c1b546fd4f87e53e5d3e4"}, + {file = "pyyaml-6.0.3-cp311-cp311-win32.whl", hash = "sha256:8098f252adfa6c80ab48096053f512f2321f0b998f98150cea9bd23d83e1467b"}, + {file = "pyyaml-6.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:9f3bfb4965eb874431221a3ff3fdcddc7e74e3b07799e0e84ca4a0f867d449bf"}, + {file = "pyyaml-6.0.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7f047e29dcae44602496db43be01ad42fc6f1cc0d8cd6c83d342306c32270196"}, + {file = "pyyaml-6.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:fc09d0aa354569bc501d4e787133afc08552722d3ab34836a80547331bb5d4a0"}, + {file = "pyyaml-6.0.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9149cad251584d5fb4981be1ecde53a1ca46c891a79788c0df828d2f166bda28"}, + {file = "pyyaml-6.0.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5fdec68f91a0c6739b380c83b951e2c72ac0197ace422360e6d5a959d8d97b2c"}, + {file = "pyyaml-6.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ba1cc08a7ccde2d2ec775841541641e4548226580ab850948cbfda66a1befcdc"}, + {file = "pyyaml-6.0.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8dc52c23056b9ddd46818a57b78404882310fb473d63f17b07d5c40421e47f8e"}, + {file = "pyyaml-6.0.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:41715c910c881bc081f1e8872880d3c650acf13dfa8214bad49ed4cede7c34ea"}, + {file = "pyyaml-6.0.3-cp312-cp312-win32.whl", hash = "sha256:96b533f0e99f6579b3d4d4995707cf36df9100d67e0c8303a0c55b27b5f99bc5"}, + {file = "pyyaml-6.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:5fcd34e47f6e0b794d17de1b4ff496c00986e1c83f7ab2fb8fcfe9616ff7477b"}, + {file = "pyyaml-6.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:64386e5e707d03a7e172c0701abfb7e10f0fb753ee1d773128192742712a98fd"}, + {file = "pyyaml-6.0.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8da9669d359f02c0b91ccc01cac4a67f16afec0dac22c2ad09f46bee0697eba8"}, + {file = "pyyaml-6.0.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2283a07e2c21a2aa78d9c4442724ec1eb15f5e42a723b99cb3d822d48f5f7ad1"}, + {file = "pyyaml-6.0.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ee2922902c45ae8ccada2c5b501ab86c36525b883eff4255313a253a3160861c"}, + {file = "pyyaml-6.0.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a33284e20b78bd4a18c8c2282d549d10bc8408a2a7ff57653c0cf0b9be0afce5"}, + {file = "pyyaml-6.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0f29edc409a6392443abf94b9cf89ce99889a1dd5376d94316ae5145dfedd5d6"}, + {file = "pyyaml-6.0.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f7057c9a337546edc7973c0d3ba84ddcdf0daa14533c2065749c9075001090e6"}, + {file = "pyyaml-6.0.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:eda16858a3cab07b80edaf74336ece1f986ba330fdb8ee0d6c0d68fe82bc96be"}, + {file = "pyyaml-6.0.3-cp313-cp313-win32.whl", hash = "sha256:d0eae10f8159e8fdad514efdc92d74fd8d682c933a6dd088030f3834bc8e6b26"}, + {file = "pyyaml-6.0.3-cp313-cp313-win_amd64.whl", hash = "sha256:79005a0d97d5ddabfeeea4cf676af11e647e41d81c9a7722a193022accdb6b7c"}, + {file = "pyyaml-6.0.3-cp313-cp313-win_arm64.whl", hash = "sha256:5498cd1645aa724a7c71c8f378eb29ebe23da2fc0d7a08071d89469bf1d2defb"}, + {file = "pyyaml-6.0.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:8d1fab6bb153a416f9aeb4b8763bc0f22a5586065f86f7664fc23339fc1c1fac"}, + {file = "pyyaml-6.0.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:34d5fcd24b8445fadc33f9cf348c1047101756fd760b4dacb5c3e99755703310"}, + {file = "pyyaml-6.0.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:501a031947e3a9025ed4405a168e6ef5ae3126c59f90ce0cd6f2bfc477be31b7"}, + {file = "pyyaml-6.0.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:b3bc83488de33889877a0f2543ade9f70c67d66d9ebb4ac959502e12de895788"}, + {file = "pyyaml-6.0.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c458b6d084f9b935061bc36216e8a69a7e293a2f1e68bf956dcd9e6cbcd143f5"}, + {file = "pyyaml-6.0.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:7c6610def4f163542a622a73fb39f534f8c101d690126992300bf3207eab9764"}, + {file = "pyyaml-6.0.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:5190d403f121660ce8d1d2c1bb2ef1bd05b5f68533fc5c2ea899bd15f4399b35"}, + {file = "pyyaml-6.0.3-cp314-cp314-win_amd64.whl", hash = "sha256:4a2e8cebe2ff6ab7d1050ecd59c25d4c8bd7e6f400f5f82b96557ac0abafd0ac"}, + {file = "pyyaml-6.0.3-cp314-cp314-win_arm64.whl", hash = "sha256:93dda82c9c22deb0a405ea4dc5f2d0cda384168e466364dec6255b293923b2f3"}, + {file = "pyyaml-6.0.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:02893d100e99e03eda1c8fd5c441d8c60103fd175728e23e431db1b589cf5ab3"}, + {file = "pyyaml-6.0.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:c1ff362665ae507275af2853520967820d9124984e0f7466736aea23d8611fba"}, + {file = "pyyaml-6.0.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6adc77889b628398debc7b65c073bcb99c4a0237b248cacaf3fe8a557563ef6c"}, + {file = "pyyaml-6.0.3-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a80cb027f6b349846a3bf6d73b5e95e782175e52f22108cfa17876aaeff93702"}, + {file = "pyyaml-6.0.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:00c4bdeba853cc34e7dd471f16b4114f4162dc03e6b7afcc2128711f0eca823c"}, + {file = "pyyaml-6.0.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:66e1674c3ef6f541c35191caae2d429b967b99e02040f5ba928632d9a7f0f065"}, + {file = "pyyaml-6.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:16249ee61e95f858e83976573de0f5b2893b3677ba71c9dd36b9cf8be9ac6d65"}, + {file = "pyyaml-6.0.3-cp314-cp314t-win_amd64.whl", hash = "sha256:4ad1906908f2f5ae4e5a8ddfce73c320c2a1429ec52eafd27138b7f1cbe341c9"}, + {file = "pyyaml-6.0.3-cp314-cp314t-win_arm64.whl", hash = "sha256:ebc55a14a21cb14062aa4162f906cd962b28e2e9ea38f9b4391244cd8de4ae0b"}, + {file = "pyyaml-6.0.3-cp39-cp39-macosx_10_13_x86_64.whl", hash = "sha256:b865addae83924361678b652338317d1bd7e79b1f4596f96b96c77a5a34b34da"}, + {file = "pyyaml-6.0.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c3355370a2c156cffb25e876646f149d5d68f5e0a3ce86a5084dd0b64a994917"}, + {file = "pyyaml-6.0.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3c5677e12444c15717b902a5798264fa7909e41153cdf9ef7ad571b704a63dd9"}, + {file = "pyyaml-6.0.3-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5ed875a24292240029e4483f9d4a4b8a1ae08843b9c54f43fcc11e404532a8a5"}, + {file = "pyyaml-6.0.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0150219816b6a1fa26fb4699fb7daa9caf09eb1999f3b70fb6e786805e80375a"}, + {file = "pyyaml-6.0.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:fa160448684b4e94d80416c0fa4aac48967a969efe22931448d853ada8baf926"}, + {file = "pyyaml-6.0.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:27c0abcb4a5dac13684a37f76e701e054692a9b2d3064b70f5e4eb54810553d7"}, + {file = "pyyaml-6.0.3-cp39-cp39-win32.whl", hash = "sha256:1ebe39cb5fc479422b83de611d14e2c0d3bb2a18bbcb01f229ab3cfbd8fee7a0"}, + {file = "pyyaml-6.0.3-cp39-cp39-win_amd64.whl", hash = "sha256:2e71d11abed7344e42a8849600193d15b6def118602c4c176f748e4583246007"}, + {file = "pyyaml-6.0.3.tar.gz", hash = "sha256:d76623373421df22fb4cf8817020cbb7ef15c725b9d5e45f17e189bfc384190f"}, +] + +[[package]] +name = "pyyaml-env-tag" +version = "1.1" +description = "A custom YAML tag for referencing environment variables in YAML files." +optional = false +python-versions = ">=3.9" +groups = ["dev"] +files = [ + {file = "pyyaml_env_tag-1.1-py3-none-any.whl", hash = "sha256:17109e1a528561e32f026364712fee1264bc2ea6715120891174ed1b980d2e04"}, + {file = "pyyaml_env_tag-1.1.tar.gz", hash = "sha256:2eb38b75a2d21ee0475d6d97ec19c63287a7e140231e4214969d0eac923cd7ff"}, +] + +[package.dependencies] +pyyaml = "*" + +[[package]] +name = "requests" +version = "2.32.5" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.9" +groups = ["dev"] +files = [ + {file = "requests-2.32.5-py3-none-any.whl", hash = "sha256:2462f94637a34fd532264295e186976db0f5d453d1cdd31473c85a6a161affb6"}, + {file = "requests-2.32.5.tar.gz", hash = "sha256:dbba0bac56e100853db0ea71b82b4dfd5fe2bf6d3754a8893c3af500cec7d7cf"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset_normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "ruff" +version = "0.12.12" +description = "An extremely fast Python linter and code formatter, written in Rust." +optional = false +python-versions = ">=3.7" +groups = ["dev"] +files = [ + {file = "ruff-0.12.12-py3-none-linux_armv6l.whl", hash = "sha256:de1c4b916d98ab289818e55ce481e2cacfaad7710b01d1f990c497edf217dafc"}, + {file = "ruff-0.12.12-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:7acd6045e87fac75a0b0cdedacf9ab3e1ad9d929d149785903cff9bb69ad9727"}, + {file = "ruff-0.12.12-py3-none-macosx_11_0_arm64.whl", hash = "sha256:abf4073688d7d6da16611f2f126be86523a8ec4343d15d276c614bda8ec44edb"}, + {file = "ruff-0.12.12-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:968e77094b1d7a576992ac078557d1439df678a34c6fe02fd979f973af167577"}, + {file = "ruff-0.12.12-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:42a67d16e5b1ffc6d21c5f67851e0e769517fb57a8ebad1d0781b30888aa704e"}, + {file = "ruff-0.12.12-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b216ec0a0674e4b1214dcc998a5088e54eaf39417327b19ffefba1c4a1e4971e"}, + {file = "ruff-0.12.12-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:59f909c0fdd8f1dcdbfed0b9569b8bf428cf144bec87d9de298dcd4723f5bee8"}, + {file = "ruff-0.12.12-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9ac93d87047e765336f0c18eacad51dad0c1c33c9df7484c40f98e1d773876f5"}, + {file = "ruff-0.12.12-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:01543c137fd3650d322922e8b14cc133b8ea734617c4891c5a9fccf4bfc9aa92"}, + {file = "ruff-0.12.12-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2afc2fa864197634e549d87fb1e7b6feb01df0a80fd510d6489e1ce8c0b1cc45"}, + {file = "ruff-0.12.12-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:0c0945246f5ad776cb8925e36af2438e66188d2b57d9cf2eed2c382c58b371e5"}, + {file = "ruff-0.12.12-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:a0fbafe8c58e37aae28b84a80ba1817f2ea552e9450156018a478bf1fa80f4e4"}, + {file = "ruff-0.12.12-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:b9c456fb2fc8e1282affa932c9e40f5ec31ec9cbb66751a316bd131273b57c23"}, + {file = "ruff-0.12.12-py3-none-musllinux_1_2_i686.whl", hash = "sha256:5f12856123b0ad0147d90b3961f5c90e7427f9acd4b40050705499c98983f489"}, + {file = "ruff-0.12.12-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:26a1b5a2bf7dd2c47e3b46d077cd9c0fc3b93e6c6cc9ed750bd312ae9dc302ee"}, + {file = "ruff-0.12.12-py3-none-win32.whl", hash = "sha256:173be2bfc142af07a01e3a759aba6f7791aa47acf3604f610b1c36db888df7b1"}, + {file = "ruff-0.12.12-py3-none-win_amd64.whl", hash = "sha256:e99620bf01884e5f38611934c09dd194eb665b0109104acae3ba6102b600fd0d"}, + {file = "ruff-0.12.12-py3-none-win_arm64.whl", hash = "sha256:2a8199cab4ce4d72d158319b63370abf60991495fb733db96cd923a34c52d093"}, + {file = "ruff-0.12.12.tar.gz", hash = "sha256:b86cd3415dbe31b3b46a71c598f4c4b2f550346d1ccf6326b347cc0c8fd063d6"}, +] + +[[package]] +name = "scipy" +version = "1.16.3" +description = "Fundamental algorithms for scientific computing in Python" +optional = false +python-versions = ">=3.11" +groups = ["main"] +files = [ + {file = "scipy-1.16.3-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:40be6cf99e68b6c4321e9f8782e7d5ff8265af28ef2cd56e9c9b2638fa08ad97"}, + {file = "scipy-1.16.3-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:8be1ca9170fcb6223cc7c27f4305d680ded114a1567c0bd2bfcbf947d1b17511"}, + {file = "scipy-1.16.3-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:bea0a62734d20d67608660f69dcda23e7f90fb4ca20974ab80b6ed40df87a005"}, + {file = "scipy-1.16.3-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:2a207a6ce9c24f1951241f4693ede2d393f59c07abc159b2cb2be980820e01fb"}, + {file = "scipy-1.16.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:532fb5ad6a87e9e9cd9c959b106b73145a03f04c7d57ea3e6f6bb60b86ab0876"}, + {file = "scipy-1.16.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:0151a0749efeaaab78711c78422d413c583b8cdd2011a3c1d6c794938ee9fdb2"}, + {file = "scipy-1.16.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b7180967113560cca57418a7bc719e30366b47959dd845a93206fbed693c867e"}, + {file = "scipy-1.16.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:deb3841c925eeddb6afc1e4e4a45e418d19ec7b87c5df177695224078e8ec733"}, + {file = "scipy-1.16.3-cp311-cp311-win_amd64.whl", hash = "sha256:53c3844d527213631e886621df5695d35e4f6a75f620dca412bcd292f6b87d78"}, + {file = "scipy-1.16.3-cp311-cp311-win_arm64.whl", hash = "sha256:9452781bd879b14b6f055b26643703551320aa8d79ae064a71df55c00286a184"}, + {file = "scipy-1.16.3-cp312-cp312-macosx_10_14_x86_64.whl", hash = "sha256:81fc5827606858cf71446a5e98715ba0e11f0dbc83d71c7409d05486592a45d6"}, + {file = "scipy-1.16.3-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:c97176013d404c7346bf57874eaac5187d969293bf40497140b0a2b2b7482e07"}, + {file = "scipy-1.16.3-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:2b71d93c8a9936046866acebc915e2af2e292b883ed6e2cbe5c34beb094b82d9"}, + {file = "scipy-1.16.3-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:3d4a07a8e785d80289dfe66b7c27d8634a773020742ec7187b85ccc4b0e7b686"}, + {file = "scipy-1.16.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:0553371015692a898e1aa858fed67a3576c34edefa6b7ebdb4e9dde49ce5c203"}, + {file = "scipy-1.16.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:72d1717fd3b5e6ec747327ce9bda32d5463f472c9dce9f54499e81fbd50245a1"}, + {file = "scipy-1.16.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1fb2472e72e24d1530debe6ae078db70fb1605350c88a3d14bc401d6306dbffe"}, + {file = "scipy-1.16.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c5192722cffe15f9329a3948c4b1db789fbb1f05c97899187dcf009b283aea70"}, + {file = "scipy-1.16.3-cp312-cp312-win_amd64.whl", hash = "sha256:56edc65510d1331dae01ef9b658d428e33ed48b4f77b1d51caf479a0253f96dc"}, + {file = "scipy-1.16.3-cp312-cp312-win_arm64.whl", hash = "sha256:a8a26c78ef223d3e30920ef759e25625a0ecdd0d60e5a8818b7513c3e5384cf2"}, + {file = "scipy-1.16.3-cp313-cp313-macosx_10_14_x86_64.whl", hash = "sha256:d2ec56337675e61b312179a1ad124f5f570c00f920cc75e1000025451b88241c"}, + {file = "scipy-1.16.3-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:16b8bc35a4cc24db80a0ec836a9286d0e31b2503cb2fd7ff7fb0e0374a97081d"}, + {file = "scipy-1.16.3-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:5803c5fadd29de0cf27fa08ccbfe7a9e5d741bf63e4ab1085437266f12460ff9"}, + {file = "scipy-1.16.3-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:b81c27fc41954319a943d43b20e07c40bdcd3ff7cf013f4fb86286faefe546c4"}, + {file = "scipy-1.16.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:0c3b4dd3d9b08dbce0f3440032c52e9e2ab9f96ade2d3943313dfe51a7056959"}, + {file = "scipy-1.16.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:7dc1360c06535ea6116a2220f760ae572db9f661aba2d88074fe30ec2aa1ff88"}, + {file = "scipy-1.16.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:663b8d66a8748051c3ee9c96465fb417509315b99c71550fda2591d7dd634234"}, + {file = "scipy-1.16.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:eab43fae33a0c39006a88096cd7b4f4ef545ea0447d250d5ac18202d40b6611d"}, + {file = "scipy-1.16.3-cp313-cp313-win_amd64.whl", hash = "sha256:062246acacbe9f8210de8e751b16fc37458213f124bef161a5a02c7a39284304"}, + {file = "scipy-1.16.3-cp313-cp313-win_arm64.whl", hash = "sha256:50a3dbf286dbc7d84f176f9a1574c705f277cb6565069f88f60db9eafdbe3ee2"}, + {file = "scipy-1.16.3-cp313-cp313t-macosx_10_14_x86_64.whl", hash = "sha256:fb4b29f4cf8cc5a8d628bc8d8e26d12d7278cd1f219f22698a378c3d67db5e4b"}, + {file = "scipy-1.16.3-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:8d09d72dc92742988b0e7750bddb8060b0c7079606c0d24a8cc8e9c9c11f9079"}, + {file = "scipy-1.16.3-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:03192a35e661470197556de24e7cb1330d84b35b94ead65c46ad6f16f6b28f2a"}, + {file = "scipy-1.16.3-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:57d01cb6f85e34f0946b33caa66e892aae072b64b034183f3d87c4025802a119"}, + {file = "scipy-1.16.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:96491a6a54e995f00a28a3c3badfff58fd093bf26cd5fb34a2188c8c756a3a2c"}, + {file = "scipy-1.16.3-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:cd13e354df9938598af2be05822c323e97132d5e6306b83a3b4ee6724c6e522e"}, + {file = "scipy-1.16.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:63d3cdacb8a824a295191a723ee5e4ea7768ca5ca5f2838532d9f2e2b3ce2135"}, + {file = "scipy-1.16.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:e7efa2681ea410b10dde31a52b18b0154d66f2485328830e45fdf183af5aefc6"}, + {file = "scipy-1.16.3-cp313-cp313t-win_amd64.whl", hash = "sha256:2d1ae2cf0c350e7705168ff2429962a89ad90c2d49d1dd300686d8b2a5af22fc"}, + {file = "scipy-1.16.3-cp313-cp313t-win_arm64.whl", hash = "sha256:0c623a54f7b79dd88ef56da19bc2873afec9673a48f3b85b18e4d402bdd29a5a"}, + {file = "scipy-1.16.3-cp314-cp314-macosx_10_14_x86_64.whl", hash = "sha256:875555ce62743e1d54f06cdf22c1e0bc47b91130ac40fe5d783b6dfa114beeb6"}, + {file = "scipy-1.16.3-cp314-cp314-macosx_12_0_arm64.whl", hash = "sha256:bb61878c18a470021fb515a843dc7a76961a8daceaaaa8bad1332f1bf4b54657"}, + {file = "scipy-1.16.3-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:f2622206f5559784fa5c4b53a950c3c7c1cf3e84ca1b9c4b6c03f062f289ca26"}, + {file = "scipy-1.16.3-cp314-cp314-macosx_14_0_x86_64.whl", hash = "sha256:7f68154688c515cdb541a31ef8eb66d8cd1050605be9dcd74199cbd22ac739bc"}, + {file = "scipy-1.16.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:8b3c820ddb80029fe9f43d61b81d8b488d3ef8ca010d15122b152db77dc94c22"}, + {file = "scipy-1.16.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:d3837938ae715fc0fe3c39c0202de3a8853aff22ca66781ddc2ade7554b7e2cc"}, + {file = "scipy-1.16.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:aadd23f98f9cb069b3bd64ddc900c4d277778242e961751f77a8cb5c4b946fb0"}, + {file = "scipy-1.16.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:b7c5f1bda1354d6a19bc6af73a649f8285ca63ac6b52e64e658a5a11d4d69800"}, + {file = "scipy-1.16.3-cp314-cp314-win_amd64.whl", hash = "sha256:e5d42a9472e7579e473879a1990327830493a7047506d58d73fc429b84c1d49d"}, + {file = "scipy-1.16.3-cp314-cp314-win_arm64.whl", hash = "sha256:6020470b9d00245926f2d5bb93b119ca0340f0d564eb6fbaad843eaebf9d690f"}, + {file = "scipy-1.16.3-cp314-cp314t-macosx_10_14_x86_64.whl", hash = "sha256:e1d27cbcb4602680a49d787d90664fa4974063ac9d4134813332a8c53dbe667c"}, + {file = "scipy-1.16.3-cp314-cp314t-macosx_12_0_arm64.whl", hash = "sha256:9b9c9c07b6d56a35777a1b4cc8966118fb16cfd8daf6743867d17d36cfad2d40"}, + {file = "scipy-1.16.3-cp314-cp314t-macosx_14_0_arm64.whl", hash = "sha256:3a4c460301fb2cffb7f88528f30b3127742cff583603aa7dc964a52c463b385d"}, + {file = "scipy-1.16.3-cp314-cp314t-macosx_14_0_x86_64.whl", hash = "sha256:f667a4542cc8917af1db06366d3f78a5c8e83badd56409f94d1eac8d8d9133fa"}, + {file = "scipy-1.16.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:f379b54b77a597aa7ee5e697df0d66903e41b9c85a6dd7946159e356319158e8"}, + {file = "scipy-1.16.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:4aff59800a3b7f786b70bfd6ab551001cb553244988d7d6b8299cb1ea653b353"}, + {file = "scipy-1.16.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:da7763f55885045036fabcebd80144b757d3db06ab0861415d1c3b7c69042146"}, + {file = "scipy-1.16.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:ffa6eea95283b2b8079b821dc11f50a17d0571c92b43e2b5b12764dc5f9b285d"}, + {file = "scipy-1.16.3-cp314-cp314t-win_amd64.whl", hash = "sha256:d9f48cafc7ce94cf9b15c6bffdc443a81a27bf7075cf2dcd5c8b40f85d10c4e7"}, + {file = "scipy-1.16.3-cp314-cp314t-win_arm64.whl", hash = "sha256:21d9d6b197227a12dcbf9633320a4e34c6b0e51c57268df255a0942983bac562"}, + {file = "scipy-1.16.3.tar.gz", hash = "sha256:01e87659402762f43bd2fee13370553a17ada367d42e7487800bf2916535aecb"}, +] + +[package.dependencies] +numpy = ">=1.25.2,<2.6" + +[package.extras] +dev = ["cython-lint (>=0.12.2)", "doit (>=0.36.0)", "mypy (==1.10.0)", "pycodestyle", "pydevtool", "rich-click", "ruff (>=0.0.292)", "types-psutil", "typing_extensions"] +doc = ["intersphinx_registry", "jupyterlite-pyodide-kernel", "jupyterlite-sphinx (>=0.19.1)", "jupytext", "linkify-it-py", "matplotlib (>=3.5)", "myst-nb (>=1.2.0)", "numpydoc", "pooch", "pydata-sphinx-theme (>=0.15.2)", "sphinx (>=5.0.0,<8.2.0)", "sphinx-copybutton", "sphinx-design (>=0.4.0)"] +test = ["Cython", "array-api-strict (>=2.3.1)", "asv", "gmpy2", "hypothesis (>=6.30)", "meson", "mpmath", "ninja ; sys_platform != \"emscripten\"", "pooch", "pytest (>=8.0.0)", "pytest-cov", "pytest-timeout", "pytest-xdist", "scikit-umfpack", "threadpoolctl"] + +[[package]] +name = "setuptools" +version = "80.9.0" +description = "Easily download, build, install, upgrade, and uninstall Python packages" +optional = false +python-versions = ">=3.9" +groups = ["dev"] +files = [ + {file = "setuptools-80.9.0-py3-none-any.whl", hash = "sha256:062d34222ad13e0cc312a4c02d73f059e86a4acbfbdea8f8f76b28c99f306922"}, + {file = "setuptools-80.9.0.tar.gz", hash = "sha256:f36b47402ecde768dbfafc46e8e4207b4360c654f1f3bb84475f0a28628fb19c"}, +] + +[package.extras] +check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1) ; sys_platform != \"cygwin\"", "ruff (>=0.8.0) ; sys_platform != \"cygwin\""] +core = ["importlib_metadata (>=6) ; python_version < \"3.10\"", "jaraco.functools (>=4)", "jaraco.text (>=3.7)", "more_itertools", "more_itertools (>=8.8)", "packaging (>=24.2)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1) ; python_version < \"3.11\"", "wheel (>=0.43.0)"] +cover = ["pytest-cov"] +doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] +enabler = ["pytest-enabler (>=2.2)"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21) ; python_version >= \"3.9\" and sys_platform != \"cygwin\"", "jaraco.envs (>=2.2)", "jaraco.path (>=3.7.2)", "jaraco.test (>=5.5)", "packaging (>=24.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf ; sys_platform != \"cygwin\"", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib_metadata (>=7.0.2) ; python_version < \"3.10\"", "jaraco.develop (>=7.21) ; sys_platform != \"cygwin\"", "mypy (==1.14.*)", "pytest-mypy"] + +[[package]] +name = "shapely" +version = "2.1.2" +description = "Manipulation and analysis of geometric objects" +optional = false +python-versions = ">=3.10" +groups = ["main"] +files = [ + {file = "shapely-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7ae48c236c0324b4e139bea88a306a04ca630f49be66741b340729d380d8f52f"}, + {file = "shapely-2.1.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:eba6710407f1daa8e7602c347dfc94adc02205ec27ed956346190d66579eb9ea"}, + {file = "shapely-2.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:ef4a456cc8b7b3d50ccec29642aa4aeda959e9da2fe9540a92754770d5f0cf1f"}, + {file = "shapely-2.1.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:e38a190442aacc67ff9f75ce60aec04893041f16f97d242209106d502486a142"}, + {file = "shapely-2.1.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:40d784101f5d06a1fd30b55fc11ea58a61be23f930d934d86f19a180909908a4"}, + {file = "shapely-2.1.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f6f6cd5819c50d9bcf921882784586aab34a4bd53e7553e175dece6db513a6f0"}, + {file = "shapely-2.1.2-cp310-cp310-win32.whl", hash = "sha256:fe9627c39c59e553c90f5bc3128252cb85dc3b3be8189710666d2f8bc3a5503e"}, + {file = "shapely-2.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:1d0bfb4b8f661b3b4ec3565fa36c340bfb1cda82087199711f86a88647d26b2f"}, + {file = "shapely-2.1.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:91121757b0a36c9aac3427a651a7e6567110a4a67c97edf04f8d55d4765f6618"}, + {file = "shapely-2.1.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:16a9c722ba774cf50b5d4541242b4cce05aafd44a015290c82ba8a16931ff63d"}, + {file = "shapely-2.1.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:cc4f7397459b12c0b196c9efe1f9d7e92463cbba142632b4cc6d8bbbbd3e2b09"}, + {file = "shapely-2.1.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:136ab87b17e733e22f0961504d05e77e7be8c9b5a8184f685b4a91a84efe3c26"}, + {file = "shapely-2.1.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:16c5d0fc45d3aa0a69074979f4f1928ca2734fb2e0dde8af9611e134e46774e7"}, + {file = "shapely-2.1.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6ddc759f72b5b2b0f54a7e7cde44acef680a55019eb52ac63a7af2cf17cb9cd2"}, + {file = "shapely-2.1.2-cp311-cp311-win32.whl", hash = "sha256:2fa78b49485391224755a856ed3b3bd91c8455f6121fee0db0e71cefb07d0ef6"}, + {file = "shapely-2.1.2-cp311-cp311-win_amd64.whl", hash = "sha256:c64d5c97b2f47e3cd9b712eaced3b061f2b71234b3fc263e0fcf7d889c6559dc"}, + {file = "shapely-2.1.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:fe2533caae6a91a543dec62e8360fe86ffcdc42a7c55f9dfd0128a977a896b94"}, + {file = "shapely-2.1.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ba4d1333cc0bc94381d6d4308d2e4e008e0bd128bdcff5573199742ee3634359"}, + {file = "shapely-2.1.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:0bd308103340030feef6c111d3eb98d50dc13feea33affc8a6f9fa549e9458a3"}, + {file = "shapely-2.1.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:1e7d4d7ad262a48bb44277ca12c7c78cb1b0f56b32c10734ec9a1d30c0b0c54b"}, + {file = "shapely-2.1.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e9eddfe513096a71896441a7c37db72da0687b34752c4e193577a145c71736fc"}, + {file = "shapely-2.1.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:980c777c612514c0cf99bc8a9de6d286f5e186dcaf9091252fcd444e5638193d"}, + {file = "shapely-2.1.2-cp312-cp312-win32.whl", hash = "sha256:9111274b88e4d7b54a95218e243282709b330ef52b7b86bc6aaf4f805306f454"}, + {file = "shapely-2.1.2-cp312-cp312-win_amd64.whl", hash = "sha256:743044b4cfb34f9a67205cee9279feaf60ba7d02e69febc2afc609047cb49179"}, + {file = "shapely-2.1.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:b510dda1a3672d6879beb319bc7c5fd302c6c354584690973c838f46ec3e0fa8"}, + {file = "shapely-2.1.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:8cff473e81017594d20ec55d86b54bc635544897e13a7cfc12e36909c5309a2a"}, + {file = "shapely-2.1.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:fe7b77dc63d707c09726b7908f575fc04ff1d1ad0f3fb92aec212396bc6cfe5e"}, + {file = "shapely-2.1.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:7ed1a5bbfb386ee8332713bf7508bc24e32d24b74fc9a7b9f8529a55db9f4ee6"}, + {file = "shapely-2.1.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a84e0582858d841d54355246ddfcbd1fce3179f185da7470f41ce39d001ee1af"}, + {file = "shapely-2.1.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:dc3487447a43d42adcdf52d7ac73804f2312cbfa5d433a7d2c506dcab0033dfd"}, + {file = "shapely-2.1.2-cp313-cp313-win32.whl", hash = "sha256:9c3a3c648aedc9f99c09263b39f2d8252f199cb3ac154fadc173283d7d111350"}, + {file = "shapely-2.1.2-cp313-cp313-win_amd64.whl", hash = "sha256:ca2591bff6645c216695bdf1614fca9c82ea1144d4a7591a466fef64f28f0715"}, + {file = "shapely-2.1.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:2d93d23bdd2ed9dc157b46bc2f19b7da143ca8714464249bef6771c679d5ff40"}, + {file = "shapely-2.1.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:01d0d304b25634d60bd7cf291828119ab55a3bab87dc4af1e44b07fb225f188b"}, + {file = "shapely-2.1.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:8d8382dd120d64b03698b7298b89611a6ea6f55ada9d39942838b79c9bc89801"}, + {file = "shapely-2.1.2-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:19efa3611eef966e776183e338b2d7ea43569ae99ab34f8d17c2c054d3205cc0"}, + {file = "shapely-2.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:346ec0c1a0fcd32f57f00e4134d1200e14bf3f5ae12af87ba83ca275c502498c"}, + {file = "shapely-2.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:6305993a35989391bd3476ee538a5c9a845861462327efe00dd11a5c8c709a99"}, + {file = "shapely-2.1.2-cp313-cp313t-win32.whl", hash = "sha256:c8876673449f3401f278c86eb33224c5764582f72b653a415d0e6672fde887bf"}, + {file = "shapely-2.1.2-cp313-cp313t-win_amd64.whl", hash = "sha256:4a44bc62a10d84c11a7a3d7c1c4fe857f7477c3506e24c9062da0db0ae0c449c"}, + {file = "shapely-2.1.2-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:9a522f460d28e2bf4e12396240a5fc1518788b2fcd73535166d748399ef0c223"}, + {file = "shapely-2.1.2-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:1ff629e00818033b8d71139565527ced7d776c269a49bd78c9df84e8f852190c"}, + {file = "shapely-2.1.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:f67b34271dedc3c653eba4e3d7111aa421d5be9b4c4c7d38d30907f796cb30df"}, + {file = "shapely-2.1.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:21952dc00df38a2c28375659b07a3979d22641aeb104751e769c3ee825aadecf"}, + {file = "shapely-2.1.2-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:1f2f33f486777456586948e333a56ae21f35ae273be99255a191f5c1fa302eb4"}, + {file = "shapely-2.1.2-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:cf831a13e0d5a7eb519e96f58ec26e049b1fad411fc6fc23b162a7ce04d9cffc"}, + {file = "shapely-2.1.2-cp314-cp314-win32.whl", hash = "sha256:61edcd8d0d17dd99075d320a1dd39c0cb9616f7572f10ef91b4b5b00c4aeb566"}, + {file = "shapely-2.1.2-cp314-cp314-win_amd64.whl", hash = "sha256:a444e7afccdb0999e203b976adb37ea633725333e5b119ad40b1ca291ecf311c"}, + {file = "shapely-2.1.2-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:5ebe3f84c6112ad3d4632b1fd2290665aa75d4cef5f6c5d77c4c95b324527c6a"}, + {file = "shapely-2.1.2-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:5860eb9f00a1d49ebb14e881f5caf6c2cf472c7fd38bd7f253bbd34f934eb076"}, + {file = "shapely-2.1.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:b705c99c76695702656327b819c9660768ec33f5ce01fa32b2af62b56ba400a1"}, + {file = "shapely-2.1.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:a1fd0ea855b2cf7c9cddaf25543e914dd75af9de08785f20ca3085f2c9ca60b0"}, + {file = "shapely-2.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:df90e2db118c3671a0754f38e36802db75fe0920d211a27481daf50a711fdf26"}, + {file = "shapely-2.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:361b6d45030b4ac64ddd0a26046906c8202eb60d0f9f53085f5179f1d23021a0"}, + {file = "shapely-2.1.2-cp314-cp314t-win32.whl", hash = "sha256:b54df60f1fbdecc8ebc2c5b11870461a6417b3d617f555e5033f1505d36e5735"}, + {file = "shapely-2.1.2-cp314-cp314t-win_amd64.whl", hash = "sha256:0036ac886e0923417932c2e6369b6c52e38e0ff5d9120b90eef5cd9a5fc5cae9"}, + {file = "shapely-2.1.2.tar.gz", hash = "sha256:2ed4ecb28320a433db18a5bf029986aa8afcfd740745e78847e330d5d94922a9"}, +] + +[package.dependencies] +numpy = ">=1.21" + +[package.extras] +docs = ["matplotlib", "numpydoc (==1.1.*)", "sphinx", "sphinx-book-theme", "sphinx-remove-toctrees"] +test = ["pytest", "pytest-cov", "scipy-doctest"] + +[[package]] +name = "six" +version = "1.17.0" +description = "Python 2 and 3 compatibility utilities" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" +groups = ["main", "dev"] +files = [ + {file = "six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274"}, + {file = "six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81"}, +] + +[[package]] +name = "types-pytz" +version = "2025.2.0.20251108" +description = "Typing stubs for pytz" +optional = false +python-versions = ">=3.9" +groups = ["dev"] +files = [ + {file = "types_pytz-2025.2.0.20251108-py3-none-any.whl", hash = "sha256:0f1c9792cab4eb0e46c52f8845c8f77cf1e313cb3d68bf826aa867fe4717d91c"}, + {file = "types_pytz-2025.2.0.20251108.tar.gz", hash = "sha256:fca87917836ae843f07129567b74c1929f1870610681b4c92cb86a3df5817bdb"}, +] + +[[package]] +name = "typing-extensions" +version = "4.15.0" +description = "Backported and Experimental Type Hints for Python 3.9+" +optional = false +python-versions = ">=3.9" +groups = ["dev"] +files = [ + {file = "typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548"}, + {file = "typing_extensions-4.15.0.tar.gz", hash = "sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466"}, +] + +[[package]] +name = "tzdata" +version = "2025.2" +description = "Provider of IANA time zone data" +optional = false +python-versions = ">=2" +groups = ["main"] +files = [ + {file = "tzdata-2025.2-py2.py3-none-any.whl", hash = "sha256:1a403fada01ff9221ca8044d701868fa132215d84beb92242d9acd2147f667a8"}, + {file = "tzdata-2025.2.tar.gz", hash = "sha256:b60a638fcc0daffadf82fe0f57e53d06bdec2f36c4df66280ae79bce6bd6f2b9"}, +] + +[[package]] +name = "urllib3" +version = "2.5.0" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.9" +groups = ["dev"] +files = [ + {file = "urllib3-2.5.0-py3-none-any.whl", hash = "sha256:e6b01673c0fa6a13e374b50871808eb3bf7046c4b125b216f6bf1cc604cff0dc"}, + {file = "urllib3-2.5.0.tar.gz", hash = "sha256:3fc47733c7e419d4bc3f6b3dc2b4f890bb743906a30d56ba4a5bfa4bbff92760"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9) ; platform_python_implementation == \"CPython\"", "brotlicffi (>=0.8.0) ; platform_python_implementation != \"CPython\""] +h2 = ["h2 (>=4,<5)"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "virtualenv" +version = "20.35.4" +description = "Virtual Python Environment builder" +optional = false +python-versions = ">=3.8" +groups = ["dev"] +files = [ + {file = "virtualenv-20.35.4-py3-none-any.whl", hash = "sha256:c21c9cede36c9753eeade68ba7d523529f228a403463376cf821eaae2b650f1b"}, + {file = "virtualenv-20.35.4.tar.gz", hash = "sha256:643d3914d73d3eeb0c552cbb12d7e82adf0e504dbf86a3182f8771a153a1971c"}, +] + +[package.dependencies] +distlib = ">=0.3.7,<1" +filelock = ">=3.12.2,<4" +platformdirs = ">=3.9.1,<5" + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.2,!=7.3)", "sphinx-argparse (>=0.4)", "sphinxcontrib-towncrier (>=0.2.1a0)", "towncrier (>=23.6)"] +test = ["covdefaults (>=2.3)", "coverage (>=7.2.7)", "coverage-enable-subprocess (>=1)", "flaky (>=3.7)", "packaging (>=23.1)", "pytest (>=7.4)", "pytest-env (>=0.8.2)", "pytest-freezer (>=0.4.8) ; platform_python_implementation == \"PyPy\" or platform_python_implementation == \"GraalVM\" or platform_python_implementation == \"CPython\" and sys_platform == \"win32\" and python_version >= \"3.13\"", "pytest-mock (>=3.11.1)", "pytest-randomly (>=3.12)", "pytest-timeout (>=2.1)", "setuptools (>=68)", "time-machine (>=2.10) ; platform_python_implementation == \"CPython\""] + +[[package]] +name = "watchdog" +version = "6.0.0" +description = "Filesystem events monitoring" +optional = false +python-versions = ">=3.9" +groups = ["dev"] +files = [ + {file = "watchdog-6.0.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d1cdb490583ebd691c012b3d6dae011000fe42edb7a82ece80965b42abd61f26"}, + {file = "watchdog-6.0.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bc64ab3bdb6a04d69d4023b29422170b74681784ffb9463ed4870cf2f3e66112"}, + {file = "watchdog-6.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c897ac1b55c5a1461e16dae288d22bb2e412ba9807df8397a635d88f671d36c3"}, + {file = "watchdog-6.0.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:6eb11feb5a0d452ee41f824e271ca311a09e250441c262ca2fd7ebcf2461a06c"}, + {file = "watchdog-6.0.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ef810fbf7b781a5a593894e4f439773830bdecb885e6880d957d5b9382a960d2"}, + {file = "watchdog-6.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:afd0fe1b2270917c5e23c2a65ce50c2a4abb63daafb0d419fde368e272a76b7c"}, + {file = "watchdog-6.0.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:bdd4e6f14b8b18c334febb9c4425a878a2ac20efd1e0b231978e7b150f92a948"}, + {file = "watchdog-6.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:c7c15dda13c4eb00d6fb6fc508b3c0ed88b9d5d374056b239c4ad1611125c860"}, + {file = "watchdog-6.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6f10cb2d5902447c7d0da897e2c6768bca89174d0c6e1e30abec5421af97a5b0"}, + {file = "watchdog-6.0.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:490ab2ef84f11129844c23fb14ecf30ef3d8a6abafd3754a6f75ca1e6654136c"}, + {file = "watchdog-6.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:76aae96b00ae814b181bb25b1b98076d5fc84e8a53cd8885a318b42b6d3a5134"}, + {file = "watchdog-6.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a175f755fc2279e0b7312c0035d52e27211a5bc39719dd529625b1930917345b"}, + {file = "watchdog-6.0.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:e6f0e77c9417e7cd62af82529b10563db3423625c5fce018430b249bf977f9e8"}, + {file = "watchdog-6.0.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:90c8e78f3b94014f7aaae121e6b909674df5b46ec24d6bebc45c44c56729af2a"}, + {file = "watchdog-6.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e7631a77ffb1f7d2eefa4445ebbee491c720a5661ddf6df3498ebecae5ed375c"}, + {file = "watchdog-6.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:c7ac31a19f4545dd92fc25d200694098f42c9a8e391bc00bdd362c5736dbf881"}, + {file = "watchdog-6.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:9513f27a1a582d9808cf21a07dae516f0fab1cf2d7683a742c498b93eedabb11"}, + {file = "watchdog-6.0.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:7a0e56874cfbc4b9b05c60c8a1926fedf56324bb08cfbc188969777940aef3aa"}, + {file = "watchdog-6.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:e6439e374fc012255b4ec786ae3c4bc838cd7309a540e5fe0952d03687d8804e"}, + {file = "watchdog-6.0.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:7607498efa04a3542ae3e05e64da8202e58159aa1fa4acddf7678d34a35d4f13"}, + {file = "watchdog-6.0.0-py3-none-manylinux2014_armv7l.whl", hash = "sha256:9041567ee8953024c83343288ccc458fd0a2d811d6a0fd68c4c22609e3490379"}, + {file = "watchdog-6.0.0-py3-none-manylinux2014_i686.whl", hash = "sha256:82dc3e3143c7e38ec49d61af98d6558288c415eac98486a5c581726e0737c00e"}, + {file = "watchdog-6.0.0-py3-none-manylinux2014_ppc64.whl", hash = "sha256:212ac9b8bf1161dc91bd09c048048a95ca3a4c4f5e5d4a7d1b1a7d5752a7f96f"}, + {file = "watchdog-6.0.0-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:e3df4cbb9a450c6d49318f6d14f4bbc80d763fa587ba46ec86f99f9e6876bb26"}, + {file = "watchdog-6.0.0-py3-none-manylinux2014_s390x.whl", hash = "sha256:2cce7cfc2008eb51feb6aab51251fd79b85d9894e98ba847408f662b3395ca3c"}, + {file = "watchdog-6.0.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:20ffe5b202af80ab4266dcd3e91aae72bf2da48c0d33bdb15c66658e685e94e2"}, + {file = "watchdog-6.0.0-py3-none-win32.whl", hash = "sha256:07df1fdd701c5d4c8e55ef6cf55b8f0120fe1aef7ef39a1c6fc6bc2e606d517a"}, + {file = "watchdog-6.0.0-py3-none-win_amd64.whl", hash = "sha256:cbafb470cf848d93b5d013e2ecb245d4aa1c8fd0504e863ccefa32445359d680"}, + {file = "watchdog-6.0.0-py3-none-win_ia64.whl", hash = "sha256:a1914259fa9e1454315171103c6a30961236f508b9b623eae470268bbcc6a22f"}, + {file = "watchdog-6.0.0.tar.gz", hash = "sha256:9ddf7c82fda3ae8e24decda1338ede66e1c99883db93711d8fb941eaa2d8c282"}, +] + +[package.extras] +watchmedo = ["PyYAML (>=3.10)"] + +[metadata] +lock-version = "2.1" +python-versions = ">=3.12,<3.15" +content-hash = "c3c0acc09ab4b0601de470c0923598909a8132544f0ceca6daa0091fa017d85c" diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..59a6661 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,64 @@ +[tool.poetry] +name = "rail-network-graph" +version = "1.0.0" +description = "A graph-based railway routing and visualization application for Lower Silesia using GTFS and GeoJSON data." +authors = ["Antek-N "] +license = "CC0-1.0" +readme = "README.md" +package-mode = true +packages = [{ include = "rail_network_graph", from = "src" }] + +[tool.poetry.scripts] +rail-network-graph = "rail_network_graph.__main__:main" + +[tool.poetry.dependencies] +python = ">=3.12,<3.15" +pandas = "^2.2.0" +geopandas = "^0.14.0" +networkx = "^3.2" +matplotlib = "^3.8.0" +customtkinter = "^5.2.0" +scipy = "^1.12.0" +shapely = "^2.0.0" +pyproj = "^3.6.0" +numpy = "^1.26.0" + +[tool.poetry.group.dev.dependencies] +black = "^25.1.0" +ruff = "^0.12.12" +mypy = "^1.17.1" +pyinstaller = "^6.10" +pre-commit = "^3.6.0" +mkdocs = "^1.6" +mkdocs-material = "^9.5" +mkdocs-autorefs = "^1.2" +mkdocs-gen-files = "^0.5" +mkdocs-literate-nav = "^0.6" +mkdocstrings = "^0.25" +mkdocstrings-python = "^1.10" +pymdown-extensions = "^10.8" +pandas-stubs = "^2.2.0" + +[build-system] +requires = ["poetry-core>=2.0.0,<3.0.0"] +build-backend = "poetry.core.masonry.api" + +[tool.black] +line-length = 120 +target-version = ["py312"] + +[tool.ruff] +line-length = 120 +target-version = "py312" +fix = false + +[tool.ruff.lint] +select = ["E", "F", "I", "B", "UP"] +ignore = ["E501"] + +[tool.mypy] +python_version = "3.12" +strict = false +warn_unused_configs = true +disallow_untyped_defs = true +ignore_missing_imports = true \ No newline at end of file diff --git a/requirements-dev.txt b/requirements-dev.txt new file mode 100644 index 0000000..0dc73c7 --- /dev/null +++ b/requirements-dev.txt @@ -0,0 +1,79 @@ +altgraph==0.17.4 ; python_version >= "3.12" and python_version < "3.15" +attrs==25.4.0 ; python_version >= "3.12" and python_version < "3.15" +babel==2.17.0 ; python_version >= "3.12" and python_version < "3.15" +backrefs==6.0.1 ; python_version >= "3.12" and python_version < "3.15" +black==25.11.0 ; python_version >= "3.12" and python_version < "3.15" +certifi==2025.11.12 ; python_version >= "3.12" and python_version < "3.15" +cfgv==3.4.0 ; python_version >= "3.12" and python_version < "3.15" +charset-normalizer==3.4.4 ; python_version >= "3.12" and python_version < "3.15" +click-plugins==1.1.1.2 ; python_version >= "3.12" and python_version < "3.15" +click==8.3.0 ; python_version >= "3.12" and python_version < "3.15" +cligj==0.7.2 ; python_version >= "3.12" and python_version < "3.15" +colorama==0.4.6 ; python_version >= "3.12" and python_version < "3.15" +contourpy==1.3.3 ; python_version >= "3.12" and python_version < "3.15" +customtkinter==5.2.2 ; python_version >= "3.12" and python_version < "3.15" +cycler==0.12.1 ; python_version >= "3.12" and python_version < "3.15" +darkdetect==0.8.0 ; python_version >= "3.12" and python_version < "3.15" +distlib==0.4.0 ; python_version >= "3.12" and python_version < "3.15" +filelock==3.20.0 ; python_version >= "3.12" and python_version < "3.15" +fiona==1.10.1 ; python_version >= "3.12" and python_version < "3.15" +fonttools==4.60.1 ; python_version >= "3.12" and python_version < "3.15" +geopandas==0.14.4 ; python_version >= "3.12" and python_version < "3.15" +ghp-import==2.1.0 ; python_version >= "3.12" and python_version < "3.15" +griffe==1.15.0 ; python_version >= "3.12" and python_version < "3.15" +identify==2.6.15 ; python_version >= "3.12" and python_version < "3.15" +idna==3.11 ; python_version >= "3.12" and python_version < "3.15" +jinja2==3.1.6 ; python_version >= "3.12" and python_version < "3.15" +kiwisolver==1.4.9 ; python_version >= "3.12" and python_version < "3.15" +macholib==1.16.3 ; python_version >= "3.12" and python_version < "3.15" and sys_platform == "darwin" +markdown==3.10 ; python_version >= "3.12" and python_version < "3.15" +markupsafe==3.0.3 ; python_version >= "3.12" and python_version < "3.15" +matplotlib==3.10.7 ; python_version >= "3.12" and python_version < "3.15" +mergedeep==1.3.4 ; python_version >= "3.12" and python_version < "3.15" +mkdocs-autorefs==1.4.3 ; python_version >= "3.12" and python_version < "3.15" +mkdocs-gen-files==0.5.0 ; python_version >= "3.12" and python_version < "3.15" +mkdocs-get-deps==0.2.0 ; python_version >= "3.12" and python_version < "3.15" +mkdocs-literate-nav==0.6.2 ; python_version >= "3.12" and python_version < "3.15" +mkdocs-material-extensions==1.3.1 ; python_version >= "3.12" and python_version < "3.15" +mkdocs-material==9.7.0 ; python_version >= "3.12" and python_version < "3.15" +mkdocs==1.6.1 ; python_version >= "3.12" and python_version < "3.15" +mkdocstrings-python==1.10.9 ; python_version >= "3.12" and python_version < "3.15" +mkdocstrings==0.25.2 ; python_version >= "3.12" and python_version < "3.15" +mypy-extensions==1.1.0 ; python_version >= "3.12" and python_version < "3.15" +mypy==1.18.2 ; python_version >= "3.12" and python_version < "3.15" +networkx==3.5 ; python_version >= "3.12" and python_version < "3.15" +nodeenv==1.9.1 ; python_version >= "3.12" and python_version < "3.15" +numpy==1.26.4 ; python_version >= "3.12" and python_version < "3.15" +packaging==25.0 ; python_version >= "3.12" and python_version < "3.15" +paginate==0.5.7 ; python_version >= "3.12" and python_version < "3.15" +pandas-stubs==2.3.2.250926 ; python_version >= "3.12" and python_version < "3.15" +pandas==2.3.3 ; python_version >= "3.12" and python_version < "3.15" +pathspec==0.12.1 ; python_version >= "3.12" and python_version < "3.15" +pefile==2023.2.7 ; python_version >= "3.12" and python_version < "3.15" and sys_platform == "win32" +pillow==12.0.0 ; python_version >= "3.12" and python_version < "3.15" +platformdirs==4.5.0 ; python_version >= "3.12" and python_version < "3.15" +pre-commit==3.8.0 ; python_version >= "3.12" and python_version < "3.15" +pygments==2.19.2 ; python_version >= "3.12" and python_version < "3.15" +pyinstaller-hooks-contrib==2025.9 ; python_version >= "3.12" and python_version < "3.15" +pyinstaller==6.16.0 ; python_version >= "3.12" and python_version < "3.15" +pymdown-extensions==10.17.1 ; python_version >= "3.12" and python_version < "3.15" +pyparsing==3.2.5 ; python_version >= "3.12" and python_version < "3.15" +pyproj==3.7.2 ; python_version >= "3.12" and python_version < "3.15" +python-dateutil==2.9.0.post0 ; python_version >= "3.12" and python_version < "3.15" +pytokens==0.3.0 ; python_version >= "3.12" and python_version < "3.15" +pytz==2025.2 ; python_version >= "3.12" and python_version < "3.15" +pywin32-ctypes==0.2.3 ; python_version >= "3.12" and python_version < "3.15" and sys_platform == "win32" +pyyaml-env-tag==1.1 ; python_version >= "3.12" and python_version < "3.15" +pyyaml==6.0.3 ; python_version >= "3.12" and python_version < "3.15" +requests==2.32.5 ; python_version >= "3.12" and python_version < "3.15" +ruff==0.12.12 ; python_version >= "3.12" and python_version < "3.15" +scipy==1.16.3 ; python_version >= "3.12" and python_version < "3.15" +setuptools==80.9.0 ; python_version >= "3.12" and python_version < "3.15" +shapely==2.1.2 ; python_version >= "3.12" and python_version < "3.15" +six==1.17.0 ; python_version >= "3.12" and python_version < "3.15" +types-pytz==2025.2.0.20251108 ; python_version >= "3.12" and python_version < "3.15" +typing-extensions==4.15.0 ; python_version >= "3.12" and python_version < "3.15" +tzdata==2025.2 ; python_version >= "3.12" and python_version < "3.15" +urllib3==2.5.0 ; python_version >= "3.12" and python_version < "3.15" +virtualenv==20.35.4 ; python_version >= "3.12" and python_version < "3.15" +watchdog==6.0.0 ; python_version >= "3.12" and python_version < "3.15" diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..64468dc Binary files /dev/null and b/requirements.txt differ diff --git a/screenshots/main_application_screen.png b/screenshots/main_application_screen.png new file mode 100644 index 0000000..ea51f38 Binary files /dev/null and b/screenshots/main_application_screen.png differ diff --git a/screenshots/railnetworkgraph.gif b/screenshots/railnetworkgraph.gif new file mode 100644 index 0000000..d6a4244 Binary files /dev/null and b/screenshots/railnetworkgraph.gif differ diff --git a/screenshots/search_result.png b/screenshots/search_result.png new file mode 100644 index 0000000..296afe6 Binary files /dev/null and b/screenshots/search_result.png differ diff --git a/screenshots/station_info.png b/screenshots/station_info.png new file mode 100644 index 0000000..19509c9 Binary files /dev/null and b/screenshots/station_info.png differ diff --git a/src/__init__.py b/src/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/rail_network_graph/GUI/__init__.py b/src/rail_network_graph/GUI/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/rail_network_graph/GUI/counter_panel/__init__.py b/src/rail_network_graph/GUI/counter_panel/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/rail_network_graph/GUI/counter_panel/input_panel.py b/src/rail_network_graph/GUI/counter_panel/input_panel.py new file mode 100644 index 0000000..f67dea1 --- /dev/null +++ b/src/rail_network_graph/GUI/counter_panel/input_panel.py @@ -0,0 +1,200 @@ +import logging +from collections.abc import Callable + +import customtkinter as ctk +import pandas as pd + +from rail_network_graph import config + +log = logging.getLogger(__name__) + +# Define color constants +ORANGE = "#FFA500" +DARK_BG = "#1a1a1a" +ENTRY_BG = "#2a2a2a" +TEXT_COLOR = "#ffffff" + + +class InputPanel: + """ + User input panel for selecting origin/destination stations and a ticket discount. + + The panel includes: + - two text fields for start/end stations, + - an option menu for discount selection, + - a "Search" button with a user-provided callback. + + :param root: Root CTk window or frame to contain the panel. + :param submit_callback: Function to call when the "Search" button is pressed. + """ + + def __init__(self, root: ctk.CTk | ctk.CTkFrame, submit_callback: Callable[[], None] | None) -> None: + self.root = root + self.submit_callback = submit_callback + + # Stores the currently selected discount percentage (default: 0) + self.selected_discount: int = 0 + # Maps discount name (str) to percentage (int) + self.discount_map: dict[str, int] = {} + # List of discount names for the OptionMenu + self.discount_names: list[str] = [] + + log.info("Initializing InputPanel") + log.debug("InputPanel root=%s, submit_callback=%s", type(root).__name__, bool(submit_callback)) + + # Load available discounts from file + self._load_discounts() + # Create all GUI elements + self._create_widgets() + # Arrange the created elements + self.layout_widgets() + # Ensure the button command is set + self.set_submit_callback(submit_callback) + + def _load_discounts(self) -> None: + """ + Load discounts from file and build ``{discount_name: percent}`` mapping. + """ + log.info("Loading discounts from file: %s", config.DISCOUNTS_PATH) + # Load discounts from a tab-separated file using pandas + discounts_df = pd.read_csv(config.DISCOUNTS_PATH, sep="\t") + # Create a dictionary mapping the 'name' column to the 'percent' column + self.discount_map = dict(zip(discounts_df["name"], discounts_df["percent"], strict=False)) + # Extract just the names for the option menu + self.discount_names = list(self.discount_map.keys()) + self.selected_discount = 0 + log.debug( + "Loaded %d discounts, initial selected_discount=%d", + len(self.discount_map), + self.selected_discount, + ) + + def _create_widgets(self) -> None: + """ + Create GUI components (without layout/placement). + """ + log.debug("Creating InputPanel widgets") + # Outer frame with orange border effect + self.border_frame = ctk.CTkFrame(master=self.root, fg_color=ORANGE, corner_radius=9) + # Inner frame containing all input widgets + self.input_frame = ctk.CTkFrame(master=self.border_frame, fg_color=DARK_BG, corner_radius=9) + + # Entry field for the starting station + self.entry1 = ctk.CTkEntry( + master=self.input_frame, + placeholder_text="Station 1", + fg_color=ENTRY_BG, + text_color=TEXT_COLOR, + placeholder_text_color="#888", + ) + # Entry field for the destination station + self.entry2 = ctk.CTkEntry( + master=self.input_frame, + placeholder_text="Station 2", + fg_color=ENTRY_BG, + text_color=TEXT_COLOR, + placeholder_text_color="#888", + ) + + # Entry field for the desired start time + self.entry_time = ctk.CTkEntry( + master=self.input_frame, + placeholder_text="Start time (HH:MM:SS)", + fg_color=ENTRY_BG, + text_color=TEXT_COLOR, + placeholder_text_color="#888", + ) + + # Set up the discount selection menu + initial_option = self.discount_names[0] if self.discount_names else "No discount" + self.option_var = ctk.StringVar(value=initial_option) + self.option_menu = ctk.CTkOptionMenu( + master=self.input_frame, + # Provide loaded discount names as options + values=self.discount_names if self.discount_names else ["No discount"], + variable=self.option_var, + # Link the menu selection to the update_discount method + command=self.update_discount, + fg_color=ENTRY_BG, + button_color=ORANGE, + button_hover_color="#cc8400", + dropdown_fg_color=DARK_BG, + dropdown_text_color=TEXT_COLOR, + text_color=TEXT_COLOR, + ) + + # Create the search/submit button + self.submit_button = ctk.CTkButton( + master=self.input_frame, + text="Search", + fg_color=ORANGE, + hover_color="#cc8400", + text_color="black", + corner_radius=8, + # Command is initially set to the provided callback (or None) + command=self.submit_callback, + ) + log.debug("Widgets created; initial option_menu value='%s'", initial_option) + + def layout_widgets(self) -> None: + """ + Place components within the window/frame. + """ + log.debug("Laying out InputPanel widgets") + # Place the outer frame (with border) in the top-right corner + self.border_frame.place(relx=1.0, rely=0.0, anchor="ne", x=-10, y=10) + # Pack the inner frame inside the border frame + self.input_frame.pack(padx=2, pady=2) + + # Pack input fields with padding + self.entry1.pack(pady=(12, 6), padx=12, fill="x") + self.entry2.pack(pady=6, padx=12, fill="x") + self.entry_time.pack(pady=6, padx=12, fill="x") + self.option_menu.pack(pady=6, padx=12, fill="x") + # Pack the submit button + self.submit_button.pack(pady=(6, 12), padx=12) + log.info("InputPanel layout complete") + + def update_discount(self, selected_name: str) -> None: + """ + Update the discount percentage when a new option is selected. + + :param selected_name: Selected discount name. + """ + # Retrieve the percentage value from the map, defaulting to 0 if not found + self.selected_discount = int(self.discount_map.get(selected_name, 0)) + log.debug( + "Updated discount selection: name='%s', selected_discount=%d", + selected_name, + self.selected_discount, + ) + + def get_selected_discount(self) -> int: + """ + Return the currently selected discount percentage. + + :return: Discount value (e.g., 25). + """ + log.debug("get_selected_discount -> %d", self.selected_discount) + return self.selected_discount + + def set_submit_callback(self, callback: Callable[[], None] | None) -> None: + """ + Set the function to be called on "Search" button click. + + :param callback: Event handler function. + """ + # Configure the button command, using a no-op lambda if the callback is None + self.submit_button.configure(command=callback or (lambda: None)) + log.debug("Submit callback set: has_callback=%s", bool(callback)) + + def get_start_time_str(self) -> str: + """ + Return the value entered the start-time field. + + :return: Time string in ``HH:MM:SS`` format (defaults to ``"05:00:00"`` if empty). + """ + # Get the text, strip whitespace, and default if empty + value = self.entry_time.get().strip() or config.DEFAULT_START_TIME + log.debug("get_start_time_str -> '%s'", value) + return value diff --git a/src/rail_network_graph/GUI/counter_panel/submit_handler.py b/src/rail_network_graph/GUI/counter_panel/submit_handler.py new file mode 100644 index 0000000..1fa64d6 --- /dev/null +++ b/src/rail_network_graph/GUI/counter_panel/submit_handler.py @@ -0,0 +1,314 @@ +import logging +from datetime import timedelta +from typing import Any + +import customtkinter as ctk +import pandas as pd + +from rail_network_graph import config +from rail_network_graph.data_processing.data_processor import ( + get_parent_station_id_by_name, + get_stop_name_by_id, +) +from rail_network_graph.graphs.stations_graph import StationsGraph +from rail_network_graph.GUI.counter_panel.input_panel import InputPanel +from rail_network_graph.GUI.counter_panel.ticket_popup import TicketPopup +from rail_network_graph.GUI.map.map_canvas import MapCanvas +from rail_network_graph.path_finder.path_finder import PathFinderDijkstra + +log = logging.getLogger(__name__) + + +class SubmitHandler: + """ + Handle the "Search" button action: read user inputs, run routing, + compute price, and update the GUI (popup + map). + + :param input_panel: InputPanel instance providing user inputs. + :param root: Main tkinter root/window. + :param map_canvas: MapCanvas instance used for highlighting paths. + :param merged_data: Preprocessed GTFS-like DataFrame used by the pathfinder. + :param stops_data: GTFS ``stops.txt`` DataFrame used for name lookups. + :param graph: StationsGraph instance for BFS visualization on the map. + """ + + def __init__( + self, + input_panel: InputPanel, + root: ctk.CTk | ctk.CTkFrame, + map_canvas: MapCanvas, + merged_data: pd.DataFrame, + stops_data: pd.DataFrame, + graph: StationsGraph, + ) -> None: + self.input_panel = input_panel + self.root = root + self.map_canvas = map_canvas + self.stops_data = stops_data + self.graph = graph + self.merged_data = merged_data + # Initialize the pathfinding algorithm instance + self.finder = PathFinderDijkstra(merged_data) + log.debug( + "SubmitHandler initialized: merged_data_shape=%s, stops_data_shape=%s", + getattr(self.merged_data, "shape", None), + getattr(self.stops_data, "shape", None), + ) + + def handle_submit( + self, color: str = config.MAP_HIGHLIGHT_COLOR, linewidth: float = config.MAP_HIGHLIGHT_LINEWIDTH + ) -> None: + """ + End-to-end flow: inputs → path search → price calculation → GUI updates. + + :param color: Line color for map highlighting. + :param linewidth: Line width for map highlighting. + """ + log.info("Handling submit action (color=%s, linewidth=%s)", color, linewidth) + # Retrieve user inputs + start_station_name = self.get_start_station() + end_station_name = self.get_end_station() + discount_percent = self.get_selected_discount() + log.debug( + "User inputs: start_station=%s, end_station=%s, discount=%s", + start_station_name, + end_station_name, + discount_percent, + ) + + try: + # Step 1: Find the shortest path in time + station_rows, duration_string, station_ids = self.get_path(start_station_name, end_station_name) + except ValueError as error: + # Display error if stations are not found or no route exists + log.error("Error while computing path: %s", error) + print("Error:", str(error)) + return + + # Step 2: Assemble the full continuous route path for map visualization and distance calculation + full_path_station_ids: list[str] = [] + # Connect the segments (found by Dijkstra) using BFS to get intermediate stations for the map + for index in range(len(station_ids) - 1): + # Find the path segment between two consecutive stations from the Dijkstra result + segment = self.graph.find_path_bfs(station_ids[index], station_ids[index + 1]) + if not segment: + log.warning( + "No BFS segment found between station_ids %s and %s", + station_ids[index], + station_ids[index + 1], + ) + continue + # Append the segment, avoiding duplicate connection points + if full_path_station_ids and full_path_station_ids[-1] == segment[0]: + full_path_station_ids.extend(segment[1:]) + else: + full_path_station_ids.extend(segment) + log.debug("Full path station_ids (for distance/map) length=%d", len(full_path_station_ids)) + + # Convert the continuous path of station IDs back to names + station_names = [get_stop_name_by_id(self.stops_data, int(station_id)) for station_id in full_path_station_ids] + + # Step 3: Calculate distance + from rail_network_graph.utils.distance_calculator import get_total_distance, load_distances + + # Load pre-calculated railway segment lengths + distances = load_distances(config.RAILWAY_DISTANCES_OUTPUT_PATH) + # Sum the distances of all segments in the full path + distance_km = get_total_distance(station_names, distances) + log.info("Computed total distance: %.3f km", distance_km) + + # Step 4: Calculate price + from rail_network_graph.utils.price_calculator import get_price, load_pricing + + # Load base pricing table + pricing_ranges = load_pricing(config.PRICING_TABLE_PATH) + # Determine base price based on distance + base_price = get_price(distance_km, pricing_ranges) + # Apply user's selected discount + final_price = self.calculate_discounted_price(base_price, discount_percent) + log.info( + "Price calculation: base_price=%.2f, discount=%d, final_price=%.2f", + base_price, + discount_percent, + final_price, + ) + + # Format output strings + distance_string = f"{round(distance_km, 1)} km" + price_string = f"{final_price:.2f} zł" + + # Step 5: Update GUI + self.show_ticket_popup( + start_station_name, end_station_name, distance_string, duration_string, price_string, station_rows + ) + # Highlight the final path on the map + self.highlight_path_on_map(station_ids, color, linewidth) + + def get_start_station(self) -> str: + """Return start station name entered in UI.""" + value = self.input_panel.entry1.get() + log.debug("get_start_station -> %s", value) + return value + + def get_end_station(self) -> str: + """Return end station name entered in UI.""" + value = self.input_panel.entry2.get() + log.debug("get_end_station -> %s", value) + return value + + def get_selected_discount(self) -> int: + """Return selected discount percentage.""" + value = self.input_panel.get_selected_discount() + log.debug("get_selected_discount -> %d", value) + return value + + def get_path( + self, start_name: str, end_name: str + ) -> tuple[list[tuple[str | None, str, str, bool, bool]], str, list[str]]: + """ + Compute the route between two station names and format data for UI. + """ + log.info("Computing path between '%s' and '%s'", start_name, end_name) + # Convert station names to GTFS parent station IDs + start_id = get_parent_station_id_by_name(self.stops_data, start_name) + end_id = get_parent_station_id_by_name(self.stops_data, end_name) + log.debug("Resolved station IDs: start_id=%s, end_id=%s", start_id, end_id) + + if not start_id or not end_id: + log.warning("Station name resolution failed: start_id=%s, end_id=%s", start_id, end_id) + raise ValueError("One or both station names were not found.") + + # Get the desired start time from the input panel + start_time_string = self.input_panel.get_start_time_str() + log.debug("Starting path search with start_time=%s", start_time_string) + # Run Dijkstra's algorithm + result = self.finder.find_path(start_id, end_id, start_time=start_time_string) + + if result is None: + log.warning("No route found between '%s' and '%s'", start_name, end_name) + raise ValueError("No route found between the selected stations.") + + # Unpack pathfinding results + station_departures, transfers, duration_minutes, trip_ids = result + log.debug( + "PathFinder result: stations=%d, transfers=%d, duration_minutes=%d, trips=%d", + len(station_departures), + len(transfers), + duration_minutes, + len(trip_ids), + ) + + station_rows = [] + last_trip_id = None + + # Iterate through the sequence of stations with departure times + for _index, (station_id, departure_time) in enumerate(station_departures): + # Find the full GTFS row corresponding to this exact departure + row: Any = self.merged_data[ + (self.merged_data["station_id"] == station_id) & (self.merged_data["departure_time"] == departure_time) + ].iloc[0] + + arrival_time = row["arrival_time"] + trip_id = row["trip_id"] + # Convert station ID back to a display name + name = get_stop_name_by_id(self.stops_data, int(station_id)) + + # Determine if this station is the start of a new trip/segment + is_first_in_trip = trip_id != last_trip_id + if is_first_in_trip: + # Add trip_id to the name for clarity + name = f"{name} ({trip_id})" + + is_transfer = station_id in transfers + # Append formatted row data for the ticket popup + station_rows.append((name, departure_time, arrival_time, is_transfer, is_first_in_trip)) + last_trip_id = trip_id + + # Convert total duration from minutes to 'X h Y min' string + duration_td = timedelta(minutes=duration_minutes) + hours, remainder = divmod(duration_td.seconds, 3600) + minutes = remainder // 60 + duration_string = f"{hours} h {minutes} min" if hours else f"{minutes} min" + log.debug("Computed duration string: %s", duration_string) + + # Extract just the sequence of station IDs from the path + station_ids = [station_id for station_id, _ in station_departures] + log.debug("Extracted station_ids path length=%d", len(station_ids)) + return station_rows, duration_string, station_ids + + @staticmethod + def calculate_discounted_price(base_price: float, discount_percent: int) -> float: + """Return price after applying percentage discount.""" + discounted = base_price * ((100 - discount_percent) / 100) + log.debug( + "calculate_discounted_price: base_price=%.2f, discount=%d, result=%.2f", + base_price, + discount_percent, + discounted, + ) + return discounted + + def show_ticket_popup( + self, + start: str, + end: str, + distance: str, + duration: str, + price: str, + station_rows: list[tuple[str | None, str, str, bool, bool]], + ) -> None: + """Show results popup.""" + log.info( + "Showing ticket popup: %s -> %s, distance=%s, duration=%s, price=%s, rows=%d", + start, + end, + distance, + duration, + price, + len(station_rows), + ) + # Create and display the results window + TicketPopup(self.root).show_popup(start, end, distance, duration, price, station_rows) + + def highlight_path_on_map(self, station_ids: list[str], color: str, linewidth: float) -> None: + """Highlight travel path on map.""" + log.info( + "Highlighting path on map: segments=%d, color=%s, linewidth=%s", + max(len(station_ids) - 1, 0), + color, + linewidth, + ) + # Clear any previously drawn routes + self.map_canvas.map_plotter.clear_highlights() + + full_route: list[str] = [] + + # Re-run BFS to get intermediate nodes for map drawing + for index in range(len(station_ids) - 1): + start_id = station_ids[index] + end_id = station_ids[index + 1] + + # Find the segment of the route through the station graph + segment = self.graph.find_path_bfs(start_id, end_id) + + if not segment: + log.warning("No route segment found between %s and %s (for map highlight)", start_id, end_id) + print(f"No route segment found between {start_id} and {end_id}") + continue + + # Assemble the continuous list of station IDs for map drawing + if full_route and full_route[-1] == segment[0]: + full_route.extend(segment[1:]) + else: + full_route.extend(segment) + + log.debug("Full route for map highlight length=%d", len(full_route)) + + # Draw each connection segment on the map + for index in range(len(full_route) - 1): + self.map_canvas.map_plotter.highlight_connection( + full_route[index], full_route[index + 1], color=color, linewidth=linewidth + ) + + # Set focus back to the map canvas widget + self.map_canvas.canvas.get_tk_widget().focus_set() diff --git a/src/rail_network_graph/GUI/counter_panel/ticket_popup.py b/src/rail_network_graph/GUI/counter_panel/ticket_popup.py new file mode 100644 index 0000000..af872a3 --- /dev/null +++ b/src/rail_network_graph/GUI/counter_panel/ticket_popup.py @@ -0,0 +1,134 @@ +import logging +import re + +import customtkinter as ctk + +from rail_network_graph import config + +log = logging.getLogger(__name__) + +# Define color constants +ORANGE = "#FFA500" +DARK_BG = "#1a1a1a" +ENTRY_BG = "#2a2a2a" +TEXT_COLOR = "#ffffff" +SUBTEXT_COLOR = "#bbbbbb" + + +class TicketPopup: + """ + Popup window with a route summary and a scrollable list of all stations. + + :param root: Parent CTk window or frame. + """ + + def __init__(self, root: ctk.CTk | ctk.CTkFrame) -> None: + self.root = root + log.debug("TicketPopup initialized with root=%s", type(root).__name__) + + def show_popup( + self, + start: str, + end: str, + distance: str, + duration: str, + price: str, + station_rows: list[tuple[str, str, str, bool, bool]], + ) -> None: + """ + Display the popup with ticket/route information. + + :param start: Start station name. + :param end: End station name. + :param distance: Distance text (e.g., "123.4 km"). + :param duration: Duration text (e.g., "2 h 13 min"). + :param price: Price text (e.g., "12.34 zł"). + :param station_rows: List of per-stop tuples: + (name_with_optional_trip, dep_time, arr_time, is_transfer, is_first_in_trip). + """ + log.info( + "Showing ticket popup: start=%s, end=%s, distance=%s, duration=%s, price=%s, rows=%d", + start, + end, + distance, + duration, + price, + len(station_rows), + ) + # Create a new top-level window (popup) + popup_window = ctk.CTkToplevel(self.root) + # Set window icon (after a delay for proper initialization) + popup_window.after(250, lambda: popup_window.iconbitmap(config.APP_ICON_PATH)) # noqa + # Ensure the popup stays on top + popup_window.attributes("-topmost", True) + popup_window.lift() + # Force focus onto the popup + popup_window.focus_force() + popup_window.title("") + popup_window.geometry("380x520") + popup_window.resizable(False, False) + popup_window.configure(fg_color=DARK_BG) + + # Calculate coordinates to center the popup relative to the main window + popup_window.update_idletasks() + window_x = self.root.winfo_x() + (self.root.winfo_width() // 2) - 190 + window_y = self.root.winfo_y() + (self.root.winfo_height() // 2) - 260 + popup_window.geometry(f"+{window_x}+{window_y}") + log.debug("TicketPopup positioned at x=%d, y=%d", window_x, window_y) + + ## Header and Summary Information + + # Title label + ctk.CTkLabel( + popup_window, text="📄 Your route", font=ctk.CTkFont(size=16, weight="bold"), text_color=TEXT_COLOR + ).pack(pady=(16, 6)) + + # Compile route summary text + info_text = f"From: {start}\n" f"To: {end}\n\n" f"Distance: {distance}\n" f"Ticket price: {price}" + + # Label for displaying the summary text + ctk.CTkLabel(popup_window, text=info_text, justify="center", text_color=TEXT_COLOR, wraplength=340).pack( + pady=(0, 10), anchor="center" + ) + + ## Scrollable Station List + + # Outer frame for orange border effect around the list + border_frame = ctk.CTkFrame(popup_window, fg_color=ORANGE, corner_radius=9) + border_frame.pack(padx=12, pady=(0, 14), fill="both", expand=True) + + # Scrollable frame to contain the list of stops + scroll_frame = ctk.CTkScrollableFrame(border_frame, fg_color=ENTRY_BG) + scroll_frame.pack(padx=2, pady=2, fill="both", expand=True) + + # Check if route data is available + if not station_rows: + log.warning("TicketPopup opened with no station_rows") + ctk.CTkLabel(scroll_frame, text="No stations.", text_color=TEXT_COLOR).pack(pady=10) + else: + # Iterate through the stop-by-stop route details + for station_name, dep_time, arr_time, _is_transfer, _is_first_in_trip in station_rows: + # Remove trip ID in parentheses for cleaner display in the list + station_name_clean = re.sub(r"\s*\([^)]+\)", "", station_name).strip() + + # Format the line: arrival time - station name - departure time + line_text = f"arr: {arr_time} — {station_name_clean} — dep: {dep_time}" + + # Create a label for the current stop + ctk.CTkLabel( + scroll_frame, text=line_text, anchor="w", text_color=TEXT_COLOR, wraplength=330, justify="left" + ).pack(anchor="w", padx=10, pady=(4, 0)) + + ## Close Button + + # Button to close the popup window + ctk.CTkButton( + popup_window, + text="Close", + fg_color=ORANGE, + hover_color="#cc8400", + text_color="black", + corner_radius=8, + command=popup_window.destroy, # Action to close the window + ).pack(pady=(0, 12)) + log.debug("TicketPopup UI elements created and displayed") diff --git a/src/rail_network_graph/GUI/gui_creator.py b/src/rail_network_graph/GUI/gui_creator.py new file mode 100644 index 0000000..6537479 --- /dev/null +++ b/src/rail_network_graph/GUI/gui_creator.py @@ -0,0 +1,118 @@ +import logging + +import customtkinter as ctk +from pandas import DataFrame + +from rail_network_graph.graphs.stations_graph import StationsGraph +from rail_network_graph.GUI.counter_panel.input_panel import InputPanel +from rail_network_graph.GUI.counter_panel.submit_handler import SubmitHandler +from rail_network_graph.GUI.map.map_canvas import MapCanvas +from rail_network_graph.GUI.map.map_plotter import MapPlotter +from rail_network_graph.GUI.station_info.station_info_logic import StationInfoLogic +from rail_network_graph.GUI.station_info.station_info_popup import StationInfoPopup + +log = logging.getLogger(__name__) + + +class GUICreator: + """ + Create and initialize all main GUI components: + + - interactive map, + - input panel (search + discount), + - station info popup, + - ticket popup (via submit handler). + + :param root_window: Main application window (CTk/Tk frame). + :param map_plotter: Object used to draw the station map. + :param station_coords: Station coordinates {station_id: (lon, lat)}. + :param station_names: Station names {station_id: name}. + :param merged_data: GTFS merged DataFrame. + :param stops_data: Original stops DataFrame. + :param graph: Pre-built station graph. + """ + + def __init__( + self, + root_window: ctk.CTk | ctk.CTkFrame, + map_plotter: MapPlotter, + station_coords: dict[str, tuple[float, float]], + station_names: dict[str, str], + merged_data: DataFrame, + stops_data: DataFrame, + graph: StationsGraph, + ) -> None: + self.root = root_window + self.map_plotter = map_plotter + self.station_coords = station_coords + self.station_names = station_names + self.merged_data = merged_data + self.graph = graph + self.stops_data = stops_data + + # Component instances (initially None) + self.station_info_popup: StationInfoPopup | None = None + self.station_info_logic: StationInfoLogic | None = None + self.map_canvas: MapCanvas | None = None + self.input_panel: InputPanel | None = None + + log.info("Initializing GUICreator") + log.debug( + "GUICreator init: stations=%d, station_names=%d, merged_data_shape=%s, stops_data_shape=%s", + len(self.station_coords), + len(self.station_names), + getattr(self.merged_data, "shape", None), + getattr(self.stops_data, "shape", None), + ) + + # Call methods to sequentially initialize all GUI parts + self.create_station_popup() + self.create_station_logic() + self.create_map_canvas() + self.create_input_panel_with_handler() + log.info("GUICreator initialization complete") + + def create_station_popup(self) -> None: + """Create the popup window used to display station info.""" + log.debug("Creating StationInfoPopup") + # Initialize the visual component for displaying station timetables/connections + self.station_info_popup = StationInfoPopup(self.root) + log.debug("StationInfoPopup created: %s", type(self.station_info_popup).__name__) + + def create_station_logic(self) -> None: + """Initialize the logic that fetches station connection data.""" + log.debug("Creating StationInfoLogic") + # Initialize the data handler for generating station information (timetables) + self.station_info_logic = StationInfoLogic(self.station_names, self.merged_data) + log.debug("StationInfoLogic created with station_names=%d", len(self.station_names)) + + def create_map_canvas(self) -> None: + """Create the interactive map canvas and bind events.""" + log.debug("Creating MapCanvas") + # Initialize the interactive map component, passing the plotter and info components + self.map_canvas = MapCanvas( + self.root, + self.map_plotter, + self.station_coords, + self.station_info_popup, + self.station_info_logic, + ) + log.info("MapCanvas created and initialized") + + def create_input_panel_with_handler(self) -> None: + """Create the input panel and attach the submit handler.""" + log.debug("Creating InputPanel and SubmitHandler") + # Create the input panel (search fields, discount selector) + self.input_panel = InputPanel(self.root, submit_callback=None) + # Create the handler that processes inputs and performs routing/price calculation + submit_handler = SubmitHandler( + self.input_panel, + self.root, + self.map_canvas, + self.merged_data, + self.stops_data, + self.graph, + ) + # Link the handler's method to the input panel's search button + self.input_panel.set_submit_callback(submit_handler.handle_submit) + log.info("InputPanel created and SubmitHandler connected to Search button") diff --git a/src/rail_network_graph/GUI/map/__init__.py b/src/rail_network_graph/GUI/map/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/rail_network_graph/GUI/map/map_canvas.py b/src/rail_network_graph/GUI/map/map_canvas.py new file mode 100644 index 0000000..eb10c60 --- /dev/null +++ b/src/rail_network_graph/GUI/map/map_canvas.py @@ -0,0 +1,280 @@ +import logging + +import matplotlib.pyplot as plt +from matplotlib.axes import Axes +from matplotlib.backend_bases import MouseEvent +from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg +from matplotlib.figure import Figure + +from rail_network_graph import config +from rail_network_graph.GUI.map.map_plotter import MapPlotter +from rail_network_graph.GUI.station_info.station_info_logic import StationInfoLogic +from rail_network_graph.GUI.station_info.station_info_popup import StationInfoPopup + +log = logging.getLogger(__name__) + + +class MapCanvas: + """ + Display an interactive station map and handle user interactions: + + - zoom in/out (mouse wheel), + - pan (mouse drag), + - click stations (show popup with timetable), + - draw the map via ``map_plotter``. + + :param root: Main tkinter root/window. + :param map_plotter: MapPlotter responsible for drawing the map. + :param station_coords: Station coordinates ``{station_id: (lon, lat)}``. + :param station_info_popup: Popup for station info. + :param station_info_logic: Logic that generates station info data. + """ + + def __init__( + self, + root: object, + map_plotter: MapPlotter, + station_coords: dict[str, tuple[float, float]], + station_info_popup: StationInfoPopup, + station_info_logic: StationInfoLogic, + ) -> None: + self.root = root + self.map_plotter = map_plotter + self.station_coords = station_coords + self.station_info_popup = station_info_popup + self.station_info_logic = station_info_logic + + # State variable to track if the map is currently being panned + self.is_panning: bool = False + # Stores the coordinates of the last mouse press/movement event + self.last_mouse_pos: tuple[int, int] | None = None + + # Initialize Matplotlib Figure and Axes (will be overwritten in init_canvas) + self.figure: Figure = plt.figure() + self.ax: Axes = self.figure.add_subplot() + # Initialize the Tkinter canvas (will be properly set up in init_canvas) + self.canvas: FigureCanvasTkAgg = FigureCanvasTkAgg(self.figure, self.root) + + log.info("Initializing MapCanvas") + log.debug( + "MapCanvas init: station_coords=%d, map_plotter=%s, station_info_popup=%s, station_info_logic=%s", + len(self.station_coords), + type(self.map_plotter).__name__, + type(self.station_info_popup).__name__, + type(self.station_info_logic).__name__, + ) + + # Set initial pan/zoom state + self.init_state() + # Create and place the Matplotlib canvas widget + self.init_canvas() + # Draw the map content for the first time + self.draw_initial_map() + # Connect mouse events to handlers + self.bind_events() + + def init_state(self) -> None: + """Initialize internal map state (e.g., panning mode).""" + self.is_panning = False + self.last_mouse_pos = None + log.debug("MapCanvas state initialized: is_panning=%s, last_mouse_pos=%s", self.is_panning, self.last_mouse_pos) + + def init_canvas(self) -> None: + """Create matplotlib objects and embed them into the GUI (FigureCanvasTkAgg).""" + # Create a new Figure and Axes for plotting + self.figure, self.ax = plt.subplots(figsize=(10, 8)) + # Embed the Matplotlib figure into the Tkinter widget + self.canvas = FigureCanvasTkAgg(self.figure, self.root) + # Pack the widget to fill the space and ensure it can receive input focus + self.canvas.get_tk_widget().pack(fill="both", expand=True) + self.canvas.get_tk_widget().focus_set() + log.info("Matplotlib canvas initialized and embedded into Tkinter") + + def draw_initial_map(self) -> None: + """Draw stations and connections using ``map_plotter``.""" + # Pass the created Axes object to the plotter + self.map_plotter.axis = self.ax + # Delegate the actual drawing logic + self.map_plotter.draw_map() + # Render the drawing on the screen + self.canvas.draw() + log.info("Initial map drawn on canvas") + + def bind_events(self) -> None: + """Register mouse event handlers for click, drag, and scroll.""" + # Handle mouse button press (LMB, RMB, etc.) + self.canvas.mpl_connect("button_press_event", self.handle_button_press) # type: ignore + # Handle mouse button release + self.canvas.mpl_connect("button_release_event", self.on_release) # type: ignore + # Handle mouse movement (used for panning) + self.canvas.mpl_connect("motion_notify_event", self.on_motion) # type: ignore + # Handle mouse wheel scroll (used for zooming) + self.canvas.mpl_connect("scroll_event", self.on_scroll) # type: ignore + log.debug("MapCanvas mouse events bound (press, release, motion, scroll)") + + def handle_button_press(self, event: MouseEvent) -> None: + """ + Handle mouse button press: + + - LMB: enable panning mode, + - any button: check for station click. + """ + log.debug( + "Mouse button press event: button=%s, x=%s, y=%s, inaxes=%s", + event.button, + event.x, + event.y, + event.inaxes is not None, + ) + # Start the panning mechanism setup + self.on_press(event) + # Check if a station was clicked + self.on_click(event) + + def on_press(self, event: MouseEvent) -> None: + """Start panning on left mouse button press.""" + # Check if the click occurred within the axes and was the left button (1) + if event.inaxes != self.ax or event.button != 1: + return + # Enter panning mode + self.is_panning = True + # Store the current screen position for delta calculation in on_motion + self.last_mouse_pos = (event.x, event.y) + log.debug("Panning started at position: %s", self.last_mouse_pos) + + def on_motion(self, event: MouseEvent) -> None: + """Pan the view while dragging.""" + # Only pan if the mode is active and a start position is stored + if not self.is_panning or self.last_mouse_pos is None: + return + + # Calculate difference in screen coordinates + delta_x = event.x - self.last_mouse_pos[0] + delta_y = event.y - self.last_mouse_pos[1] + + # Convert screen delta to data coordinate delta (pan magnitude) + inv = self.ax.transData.inverted() + p1 = inv.transform((0, 0)) + p2 = inv.transform((delta_x, delta_y)) + data_dx = p1[0] - p2[0] # x-axis shift + data_dy = p1[1] - p2[1] # y-axis shift + + # Apply the calculated shift to the axis limits + x_limits = self.ax.get_xlim() + y_limits = self.ax.get_ylim() + self.ax.set_xlim(float(x_limits[0] + data_dx), float(x_limits[1] + data_dx)) + self.ax.set_ylim(float(y_limits[0] + data_dy), float(y_limits[1] + data_dy)) + + # Update the last recorded mouse position + self.last_mouse_pos = (event.x, event.y) + # Redraw the canvas efficiently + self.canvas.draw_idle() + # Update plotted elements based on new zoom/pan + self.map_plotter.update_visibility() + log.debug( + "Panning motion: delta_screen=(%s,%s), delta_data=(%s,%s), new_xlim=%s, new_ylim=%s", + delta_x, + delta_y, + data_dx, + data_dy, + self.ax.get_xlim(), + self.ax.get_ylim(), + ) + + def on_release(self, event: MouseEvent) -> None: + """End panning mode.""" + self.is_panning = False + self.last_mouse_pos = None + log.debug("Panning ended on mouse release") + + def on_click(self, event: MouseEvent) -> None: + """If the click is near a station, show the info popup.""" + # Ensure click occurred within axes and has valid data coordinates + if event.inaxes != self.ax or event.xdata is None or event.ydata is None: + return + + clicked_coords = (event.xdata, event.ydata) + log.debug("Map click at data coords: %s", clicked_coords) + # Find the closest station near the click point + closest_station_id = self.get_closest_station(clicked_coords) + if closest_station_id: + log.info("Station clicked: id=%s", closest_station_id) + # Retrieve detailed timetable/connection data + title, connections = self.station_info_logic.get_station_data(closest_station_id) + # Display the station information popup + self.station_info_popup.show_station_info(title, connections) + else: + log.debug("No station found within click radius at %s", clicked_coords) + + def get_closest_station(self, coords: tuple[float, float]) -> str | None: + """ + Return the ID of the closest station within click radius. + + :param coords: Click coordinates ``(x, y)`` in data units. + :return: Station ID as a string, or ``None`` if none within range. + """ + x_click, y_click = coords + closest_station_id: str | None = None + min_distance = float("inf") + + # Iterate through all station coordinates + for station_id, (station_x, station_y) in self.station_coords.items(): + # Calculate Euclidean distance + distance = ((x_click - station_x) ** 2 + (y_click - station_y) ** 2) ** 0.5 + # Check if this station is closer than the current min AND within the click radius + if distance < min_distance and distance < config.MAP_CLICK_RADIUS: + closest_station_id = station_id + min_distance = distance + + if closest_station_id is not None: + log.debug("Closest station to click %s: id=%s, distance=%.4f", coords, closest_station_id, min_distance) + else: + log.debug("No station within click radius %.2f for click %s", config.MAP_CLICK_RADIUS, coords) + + return closest_station_id + + def on_scroll(self, event: MouseEvent) -> None: + """Handle map zooming (mouse wheel).""" + # Ensure scroll event has valid data coordinates + if event.xdata is None or event.ydata is None: + return + + base_scale = config.MAP_ZOOM_SCALE + x_limits = self.ax.get_xlim() + y_limits = self.ax.get_ylim() + xdata, ydata = event.xdata, event.ydata # Point under the cursor (zoom center) + + # Determine scaling factor based on scroll direction + if event.button == "up": + scale = 1 / base_scale # Zoom in (scale < 1) + elif event.button == "down": + scale = base_scale # Zoom out (scale > 1) + else: + return + + # Adjust X-axis limits to zoom around the cursor position + self.ax.set_xlim( + ( + xdata - (xdata - x_limits[0]) * scale, + xdata + (x_limits[1] - xdata) * scale, + ) + ) + # Adjust Y-axis limits to zoom around the cursor position + self.ax.set_ylim( + ( + ydata - (ydata - y_limits[0]) * scale, + ydata + (y_limits[1] - ydata) * scale, + ) + ) + # Redraw and update element visibility + self.canvas.draw_idle() + self.map_plotter.update_visibility() + log.debug( + "Zoom event: button=%s, scale=%s, center=(%s,%s), new_xlim=%s, new_ylim=%s", + event.button, + scale, + xdata, + ydata, + self.ax.get_xlim(), + self.ax.get_ylim(), + ) diff --git a/src/rail_network_graph/GUI/map/map_plotter.py b/src/rail_network_graph/GUI/map/map_plotter.py new file mode 100644 index 0000000..708c12d --- /dev/null +++ b/src/rail_network_graph/GUI/map/map_plotter.py @@ -0,0 +1,240 @@ +import logging + +import geopandas as gpd +from matplotlib.axes import Axes +from matplotlib.lines import Line2D +from matplotlib.text import Text + +log = logging.getLogger(__name__) + + +class MapPlotter: + def __init__( + self, + axis: Axes | None, + station_coords: dict[str, tuple[float, float]], + station_names: dict[str, str], + filtered_edges: list[tuple[str, str]], + platform_count_by_station: dict[str, int], + geojson_path: str | None = None, + ) -> None: + self.axis = axis + self.station_coords = station_coords + self.station_names = station_names + self.filtered_edges = filtered_edges + self.platform_count_by_station = platform_count_by_station + self.geojson_path = geojson_path + + # PRECISE TYPES ↓↓↓ + self.station_points: dict[str, Line2D] = {} # {station_id: point (Line2D)} + self.station_labels: dict[str, Text] = {} # {station_id: label (Text)} + # List containing all drawn lines (base connections + highlighted routes) + self.connection_lines: list[Line2D] = [] # all lines (base + highlights) + # List containing only the highlighted route lines + self.highlight_lines: list[Line2D] = [] # highlight lines only + + log.debug( + "MapPlotter initialized: stations=%d, filtered_edges=%d, has_geojson=%s", + len(self.station_coords), + len(self.filtered_edges), + bool(self.geojson_path), + ) + + def draw_map(self) -> None: + if self.axis is None: + log.warning("draw_map called with axis=None; aborting") + return + log.info("Drawing full map (stations + connections + region boundary)") + # Set the dark background and colors for the plot + self.apply_dark_theme() + # Draw the geographical boundary of the region (if available) + self.draw_region_boundary() + # Draw all non-highlighted railway connections + self.draw_connections() + # Draw the station markers and initialize their labels + self.draw_stations() + # Apply final plot settings (e.g., hiding axes) + self.finalize_plot() + log.info( + "Map drawn: station_points=%d, station_labels=%d, connections=%d", + len(self.station_points), + len(self.station_labels), + len(self.connection_lines), + ) + + def draw_region_boundary(self) -> None: + if self.axis is None or not self.geojson_path: + return + log.info("Drawing region boundary from GeoJSON: %s", self.geojson_path) + # Load the boundary GeoJSON file and reproject to WGS84 (EPSG:4326) + region = gpd.read_file(self.geojson_path).to_crs("EPSG:4326") + # Plot the boundary without fill and with a dark border + region.plot(ax=self.axis, facecolor="none", edgecolor="#555", linewidth=1.0, zorder=0) + log.debug("Region boundary drawn with %d geometries", len(region)) + + def draw_stations(self) -> None: + if self.axis is None: + return + log.info("Drawing %d stations", len(self.station_coords)) + for station_id, (lon, lat) in self.station_coords.items(): + # Determine marker size based on the number of platforms + platform_count = self.platform_count_by_station.get(station_id, 1) + marker_size = platform_count**1.15 + 2 + + # Plot the station marker point + (point_line,) = self.axis.plot( + lon, + lat, + "o", + markersize=marker_size, + markerfacecolor="orange", + markeredgecolor="black", + markeredgewidth=0.5, + alpha=0.85, + zorder=3, + ) + self.station_points[station_id] = point_line + + # Create the station label (initially hidden) + label_text = self.axis.text( + lon, + lat, + self.station_names.get(station_id, "?"), + fontsize=8, + color="white", + visible=False, + zorder=4, + ha="left", + va="bottom", + ) + self.station_labels[station_id] = label_text + log.debug( + "Stations drawn: station_points=%d, station_labels=%d", + len(self.station_points), + len(self.station_labels), + ) + + def draw_connections(self) -> None: + if self.axis is None: + return + log.info("Drawing %d station-to-station connections", len(self.filtered_edges)) + # Iterate over all confirmed station-to-station connections + for a, b in self.filtered_edges: + if a in self.station_coords and b in self.station_coords: + # Get coordinates for the start and end of the segment + lon1, lat1 = self.station_coords[a] + lon2, lat2 = self.station_coords[b] + # Plot the connection line + (line,) = self.axis.plot( + [lon1, lon2], + [lat1, lat2], + color="#888888", + linewidth=0.6, + alpha=0.6, + zorder=1, + ) + # Store the line object + self.connection_lines.append(line) + log.debug("Total connection lines after drawing: %d", len(self.connection_lines)) + + def finalize_plot(self) -> None: + if self.axis is None: + return + # Remove axes and set the plot to full screen (within the figure) + self.axis.axis("off") + self.axis.set_position((0, 0, 1, 1)) + # Set aspect ratio to auto + self.axis.set_aspect("auto") + log.debug("Plot finalized: axes hidden and position/aspect set") + + def update_visibility(self) -> None: + if self.axis is None: + return + # Get current visible area limits + xlim = self.axis.get_xlim() + ylim = self.axis.get_ylim() + view_width = xlim[1] - xlim[0] + view_height = ylim[1] - ylim[0] + # Define the zoom level at which labels should appear + zoom_threshold = 2.0 + show_labels = view_width < zoom_threshold and view_height < zoom_threshold + + # Update visibility for each station label + for station_id, label in self.station_labels.items(): + lon, lat = self.station_coords[station_id] + # Label is visible only if zoomed in AND the station is within the current view + is_visible = show_labels and (xlim[0] <= lon <= xlim[1]) and (ylim[0] <= lat <= ylim[1]) + label.set_visible(is_visible) + + log.debug( + "Updated label visibility: show_labels=%s, view_width=%.4f, view_height=%.4f", + show_labels, + view_width, + view_height, + ) + + def apply_dark_theme(self) -> None: + if self.axis is None: + return + # Set dark background colors for the axes and the figure + self.axis.set_facecolor("#121212") + self.axis.figure.set_facecolor("#121212") + # Set color for axes borders (spines) + for spine in self.axis.spines.values(): + spine.set_color("#444444") + # Set color for axis ticks + self.axis.tick_params(colors="#888888", labelsize=8) + log.debug("Dark theme applied to map axis and figure") + + def highlight_connection(self, station_a: str, station_b: str, color: str = "red", linewidth: float = 2.0) -> None: + if self.axis is None: + return + # Check if both stations exist and the connection (in either direction) is valid + if ( + station_a in self.station_coords + and station_b in self.station_coords + and ((station_a, station_b) in self.filtered_edges or (station_b, station_a) in self.filtered_edges) + ): + # Get coordinates for the segment + lon1, lat1 = self.station_coords[station_a] + lon2, lat2 = self.station_coords[station_b] + # Plot the highlight line over the base connection + (line,) = self.axis.plot( + [lon1, lon2], + [lat1, lat2], + color=color, + linewidth=linewidth, + alpha=0.9, + zorder=2, # Ensure highlight is above the base connection (zorder=1) + ) + # Store the line object in both lists + self.connection_lines.append(line) + self.highlight_lines.append(line) + # Redraw to show the new line + self.axis.figure.canvas.draw_idle() + log.debug( + "Highlighted connection between %s and %s with color=%s, linewidth=%.2f", + station_a, + station_b, + color, + linewidth, + ) + else: + log.warning( + "highlight_connection called for invalid or non-existing edge: %s - %s", + station_a, + station_b, + ) + + def clear_highlights(self) -> None: + if self.axis is None: + return + # Remove all Line2D objects stored as highlights from the Axes + for line in self.highlight_lines: + line.remove() + # Clear the list of highlight objects + removed_count = len(self.highlight_lines) + self.highlight_lines.clear() + # Redraw to confirm the removal + self.axis.figure.canvas.draw_idle() + log.debug("Cleared %d highlight lines from map", removed_count) diff --git a/src/rail_network_graph/GUI/station_info/__init__.py b/src/rail_network_graph/GUI/station_info/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/rail_network_graph/GUI/station_info/station_info_logic.py b/src/rail_network_graph/GUI/station_info/station_info_logic.py new file mode 100644 index 0000000..8c16fd4 --- /dev/null +++ b/src/rail_network_graph/GUI/station_info/station_info_logic.py @@ -0,0 +1,150 @@ +import logging +from collections.abc import Iterable +from typing import Any + +import pandas as pd + +log = logging.getLogger(__name__) + + +class StationInfoLogic: + """ + Utilities for querying next-stop connections for a given station + from preprocessed GTFS-like trip/stop data. + """ + + def __init__(self, station_names: dict[str, str], merged_data: pd.DataFrame): + self.station_names: dict[str, str] = station_names + + log.info("Initializing StationInfoLogic") + log.debug("StationInfoLogic station_names size: %d", len(self.station_names)) + log.debug("Merged_data shape for StationInfoLogic: %s", merged_data.shape) + + # Group trips by trip_id and sort stops by stop_sequence + # Pre-process: Create a dictionary {trip_id: [list of stop tuples sorted by sequence]} + self.trips_data: dict[str, list[Any]] = { + str(trip_id): list(group.sort_values("stop_sequence").itertuples(index=False)) + for trip_id, group in merged_data.groupby("trip_id") + } + + # Map each trip to its list of station_ids + # Pre-process: Create a dictionary {trip_id: [list of station_ids]} for quick lookup + self.stops_in_trip: dict[str, list[str]] = merged_data.groupby("trip_id")["station_id"].apply(list).to_dict() + + log.debug("Preprocessed trips_data entries: %d", len(self.trips_data)) + log.debug("Preprocessed stops_in_trip entries: %d", len(self.stops_in_trip)) + log.info("StationInfoLogic initialization complete") + + def get_station_data(self, station_id: str) -> tuple[str, list[tuple[str, Any, Any]]]: + """ + Build a title and a deduplicated, time-sorted list of direct + next-stop connections from the given station. + + :param station_id: Station identifier to inspect. + :return: (title, connections) where each connection is + (destination_name, departure_time, arrival_time). + """ + log.info("Fetching station data for station_id=%s", station_id) + # Get the human-readable station name + station_display_name = self.station_names.get(station_id, "?") + connections: list[tuple[str, Any, Any]] = [] + + # Collect all trips that pass through this station using the pre-built lookup + relevant_trip_ids: list[str] = [ + trip_id for trip_id, station_list in self.stops_in_trip.items() if station_id in station_list + ] + log.debug("Found %d trips containing station_id=%s", len(relevant_trip_ids), station_id) + + # Iterate over all relevant trips + for trip_id in relevant_trip_ids: + stops_in_this_trip = self.trips_data[trip_id] + + # Find the next stop after the given station in this trip + for stop_index in range(len(stops_in_this_trip) - 1): + # Check if the current stop is the station of interest + if stops_in_this_trip[stop_index].station_id == station_id: + current_stop = stops_in_this_trip[stop_index] + next_stop = stops_in_this_trip[stop_index + 1] + + dest_station_id = next_stop.station_id + # Get destination name + destination_name = self.station_names.get(dest_station_id, "?") + + # Store connection: destination, departure time, arrival time + connections.append((destination_name, current_stop.departure_time, next_stop.arrival_time)) + # We only need the *first* next stop on this trip, so break the inner loop + break + + # Remove duplicates (e.g., identical service runs) and sort by departure time + unique_connections = sorted(set(connections), key=lambda row: row[1]) + log.debug( + "Station %s (%s): raw_connections=%d, unique_sorted_connections=%d", + station_id, + station_display_name, + len(connections), + len(unique_connections), + ) + # Format the title for the popup + title = f"{station_display_name}\n(ID: {station_id})" + log.info("Prepared station data for station_id=%s with %d connections", station_id, len(unique_connections)) + return title, list(unique_connections) + + @staticmethod + def quick_sort_connections(connections: Iterable[tuple[str, Any, Any]]) -> list[tuple[str, Any, Any]]: + """ + Deduplicate and in-place quick-sort connections by departure time. + + :param connections: Iterable of (destination_name, departure_time, arrival_time). + :return: List of unique connections sorted by departure_time. + """ + log.info("Sorting connections with quick_sort_connections") + connections_list = list(connections) + log.debug("quick_sort_connections received %d connections", len(connections_list)) + + def quick_sort_core(array: list[tuple[str, Any, Any]], left_index: int, right_index: int) -> None: + """ + In-place quicksort partitioning on departure_time. + + :param array: List of connection tuples. + :param left_index: Left index (inclusive). + :param right_index: Right index (inclusive). + """ + if left_index >= right_index: + return + + # Choose the middle element's departure time as the pivot + pivot_departure_time = array[(left_index + right_index) // 2][1] + i_left = left_index + i_right = right_index + + while i_left <= i_right: + # Find element on the left that is greater than or equal to the pivot + while array[i_left][1] < pivot_departure_time: + i_left += 1 + # Find element on the right that is less than or equal to the pivot + while array[i_right][1] > pivot_departure_time: + i_right -= 1 + if i_left <= i_right: + # Swap the two elements + array[i_left], array[i_right] = array[i_right], array[i_left] + i_left += 1 + i_right -= 1 + + # Recursively sort the sub-arrays + quick_sort_core(array, left_index, i_right) + quick_sort_core(array, i_left, right_index) + + # Deduplicate before sorting + unique_list: list[tuple[str, Any, Any]] = list(set(connections_list)) + log.debug( + "quick_sort_connections deduplicated list: input=%d, unique=%d", + len(connections_list), + len(unique_list), + ) + if unique_list: + # Execute the in-place quicksort if the list is not empty + quick_sort_core(unique_list, 0, len(unique_list) - 1) + log.debug("quick_sort_connections completed; sorted list length=%d", len(unique_list)) + else: + log.debug("quick_sort_connections received an empty list after deduplication; nothing to sort") + return unique_list diff --git a/src/rail_network_graph/GUI/station_info/station_info_popup.py b/src/rail_network_graph/GUI/station_info/station_info_popup.py new file mode 100644 index 0000000..a0b9fdb --- /dev/null +++ b/src/rail_network_graph/GUI/station_info/station_info_popup.py @@ -0,0 +1,148 @@ +import logging + +import customtkinter as ctk + +from rail_network_graph import config + +log = logging.getLogger(__name__) + + +class StationInfoPopup: + """ + Popup window displaying detailed information about a selected station: + + - station name, + - list of next available connections (departure → destination (arrival)). + + :param root: Parent application window (CTk or Tk). + """ + + ORANGE = "#FFA500" + DARK_BG = "#1a1a1a" + ENTRY_BG = "#2a2a2a" + TEXT_COLOR = "#ffffff" + + def __init__(self, root: ctk.CTk | ctk.CTkFrame) -> None: + self.root = root + log.debug("StationInfoPopup initialized with root=%s", type(root).__name__) + + def show_station_info(self, title: str, connections: list[tuple[str, str, str]]) -> None: + """ + Create and display the popup with station information. + + :param title: Popup title (e.g. "Wrocław Główny\n(ID: 1001)"). + :param connections: List of tuples representing upcoming departures: + (destination_name, departure_time, arrival_time). + """ + log.info( + "Showing station info popup: title=%r, connections_count=%d", + title, + len(connections), + ) + popup = self.create_popup(400, 500) + self.center_popup(popup, width=400, height=500) + + self.add_title(popup, title) + self.add_connection_list(popup, connections) + self.add_close_button(popup) + log.debug("Station info popup displayed for title=%r", title) + + def create_popup(self, width: int, height: int) -> ctk.CTkToplevel: + """ + Create and configure a popup window. + + :param width: Popup width in pixels. + :param height: Popup height in pixels. + :return: Configured CTkToplevel window. + """ + log.debug("Creating station info popup window: width=%d, height=%d", width, height) + popup = ctk.CTkToplevel(self.root) + popup.after(250, lambda: popup.iconbitmap(config.APP_ICON_PATH)) # noqa + popup.attributes("-topmost", True) + popup.lift() + popup.focus_force() + popup.title("") + popup.geometry(f"{width}x{height}") + popup.resizable(False, False) + popup.configure(fg_color=self.DARK_BG) + log.debug("Station info popup window created") + return popup + + def center_popup(self, popup: ctk.CTkToplevel, width: int, height: int) -> None: + """ + Center the popup relative to the main application window. + + :param popup: Popup window to position. + :param width: Popup width. + :param height: Popup height. + """ + popup.update_idletasks() + x_pos = self.root.winfo_x() + (self.root.winfo_width() // 2) - width // 2 + y_pos = self.root.winfo_y() + (self.root.winfo_height() // 2) - height // 2 + popup.geometry(f"+{x_pos}+{y_pos}") + log.debug("Centered station info popup at x=%d, y=%d", x_pos, y_pos) + + def add_title(self, popup: ctk.CTkToplevel, title: str) -> None: + """ + Add the station title/header to the popup. + + :param popup: Popup window. + :param title: Station title text. + """ + log.debug("Adding station title to popup: %r", title) + ctk.CTkLabel( + popup, + text=title, + font=ctk.CTkFont(size=16, weight="bold"), + text_color=self.TEXT_COLOR, + justify="center", + ).pack(pady=(16, 4)) + + def add_connection_list(self, popup: ctk.CTkToplevel, connections: list[tuple[str, str, str]]) -> None: + """ + Add a scrollable list of station connections. + + :param popup: Popup window. + :param connections: List of connections (destination, departure, arrival). + """ + log.debug("Adding %d connections to station info popup", len(connections)) + frame_border = ctk.CTkFrame(popup, fg_color=self.ORANGE, corner_radius=9) + frame_border.pack(padx=12, pady=(0, 12), fill="both", expand=True) + + scroll_frame = ctk.CTkScrollableFrame(master=frame_border, fg_color=self.ENTRY_BG) + scroll_frame.pack(padx=2, pady=2, fill="both", expand=True) + + if not connections: + log.info("No connections to display for this station") + ctk.CTkLabel(scroll_frame, text="No connections.", text_color=self.TEXT_COLOR).pack(pady=10) + return + + # Remove duplicates while preserving order + for destination_name, departure_time, arrival_time in list(dict.fromkeys(connections)): + row_text = f"{departure_time} > {destination_name} ({arrival_time})" + ctk.CTkLabel( + scroll_frame, + text=row_text, + anchor="w", + justify="left", + text_color=self.TEXT_COLOR, + wraplength=340, + ).pack(anchor="w", padx=8, pady=2) + log.debug("Finished adding connection rows to popup") + + def add_close_button(self, popup: ctk.CTkToplevel) -> None: + """ + Add a button to close the popup. + + :param popup: Popup window. + """ + log.debug("Adding Close button to station info popup") + ctk.CTkButton( + popup, + text="Close", + fg_color=self.ORANGE, + hover_color="#cc8400", + text_color="black", + corner_radius=8, + command=popup.destroy, + ).pack(pady=(0, 12)) diff --git a/src/rail_network_graph/__init__.py b/src/rail_network_graph/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/rail_network_graph/__main__.py b/src/rail_network_graph/__main__.py new file mode 100644 index 0000000..8f32eff --- /dev/null +++ b/src/rail_network_graph/__main__.py @@ -0,0 +1,28 @@ +import logging +import sys + +from rail_network_graph.app import App +from rail_network_graph.logging_config import configure_logging + + +def main() -> int: + """ + Initialize logging, start the application, + and return its exit code. + + :return: Exit code returned by the application. + """ + # Configure logging + configure_logging() + log = logging.getLogger(__name__) + log.debug("Logging configured") + + log.info("Starting ConnectionMap application") + + app = App() + return app.run() + + +if __name__ == "__main__": + # Return the exit code to the operating system + sys.exit(main()) diff --git a/src/rail_network_graph/app.py b/src/rail_network_graph/app.py new file mode 100644 index 0000000..4f23d21 --- /dev/null +++ b/src/rail_network_graph/app.py @@ -0,0 +1,182 @@ +import logging + +import customtkinter as ctk +import pandas as pd + +from rail_network_graph import config +from rail_network_graph.data_processing.data_loader import load_data +from rail_network_graph.data_processing.data_processor import count_platforms_per_station, process +from rail_network_graph.graphs.stations_graph import StationsGraph +from rail_network_graph.GUI.gui_creator import GUICreator +from rail_network_graph.GUI.map.map_plotter import MapPlotter + +log = logging.getLogger(__name__) + + +class App: + """ + Main application that loads GTFS data, builds the stations graph, + and initializes the CustomTkinter-based GUI. + """ + + def __init__(self) -> None: + log.debug("Initializing application") + self.root: ctk.CTk | None = None + self.graph: StationsGraph | None = None + self.merged_data: pd.DataFrame | None = None + self.stop_to_station: dict[str, str] | None = None + self.coords: dict[str, tuple[float, float]] | None = None + self.names: dict[str, str] | None = None + self.platform_count: dict[str, int] | None = None + self.stops_data: pd.DataFrame | None = None + + @staticmethod + def _load_and_process_data() -> ( + tuple[ + pd.DataFrame, dict[str, str], dict[str, tuple[float, float]], dict[str, str], dict[str, int], pd.DataFrame + ] + ): + """ + Load GTFS data from disk and run the preprocessing pipeline. + + This step merges stops, stop times, trips and routes into a station-level + representation and computes helper mappings and statistics. + + :return: Tuple containing: + - merged_data: Processed DataFrame used to build the stations graph. + - stop_to_station: Mapping from stop_id to parent station_id. + - coords: Mapping of station_id to (latitude, longitude). + - names: Mapping of station_id to human-readable station name. + - platform_count: Mapping of station_id to number of platforms. + - stops_data: Raw GTFS stops DataFrame. + """ + log.info("Loading GTFS data from %s", config.GTFS_DATA_PATH) + stops, stop_times, trips, routes = load_data(config.GTFS_DATA_PATH) + log.debug("Processing GTFS data") + merged, stop_to_station, coords, names = process(stops, stop_times, trips, routes) + platform_count = count_platforms_per_station(stop_to_station) + log.info("Data loaded and processed") + return merged, stop_to_station, coords, names, platform_count, stops + + @staticmethod + def _create_graph(merged_data: pd.DataFrame, stop_to_station: dict[str, str]) -> StationsGraph: + """ + Create the StationsGraph representing the rail network. + + :param merged_data: Preprocessed DataFrame describing stop-to-stop connections. + :param stop_to_station: Mapping from stop_id to parent station_id. + :return: Initialized StationsGraph instance. + """ + log.debug("Creating station graph") + graph = StationsGraph(merged_data, stop_to_station) + log.info( + "Stations graph created (nodes: %s, edges: %s)", + len(getattr(graph, "stations", [])), + len(getattr(graph, "filtered_edges", [])), + ) + return graph + + @staticmethod + def _configure_ctk() -> None: + """ + Configure global CustomTkinter appearance settings. + + Currently, sets the application appearance mode to "dark". + + :return: None + """ + log.debug("Configuring CustomTkinter (dark mode)") + ctk.set_appearance_mode("dark") + + @staticmethod + def _create_gui( + graph: StationsGraph, + merged_data: pd.DataFrame, + coords: dict[str, tuple[float, float]], + names: dict[str, str], + platform_count: dict[str, int], + stops_data: pd.DataFrame, + ) -> ctk.CTk: + """ + Create and initialize the main CustomTkinter window and all GUI components. + + :param graph: StationsGraph instance representing the rail network. + :param merged_data: Preprocessed GTFS DataFrame used by GUI components. + :param coords: Mapping of station_id to geographic coordinates (lat, lon). + :param names: Mapping of station_id to human-readable station names. + :param platform_count: Mapping of station_id to number of platforms. + :param stops_data: Raw GTFS stops DataFrame for detailed stop information. + :return: Root CTk window ready to start the main event loop. + """ + log.debug("Creating main CTk window") + root = ctk.CTk() + root.title("RailNetworkGraph") + + root.protocol("WM_DELETE_WINDOW", root.quit) + + try: + root.iconbitmap(config.APP_ICON_PATH) + log.debug("Application icon set: %s", config.APP_ICON_PATH) + except Exception as exc: + log.warning("Failed to set application icon (%s): %s", config.APP_ICON_PATH, exc) + + log.debug("Initializing MapPlotter") + plotter = MapPlotter( + axis=None, + station_coords=coords, + station_names=names, + filtered_edges=list(graph.filtered_edges), + platform_count_by_station=platform_count, + geojson_path=config.VOIVODESHIP_BORDER_PATH, + ) + + log.debug("Building GUI through GUICreator") + GUICreator( + root_window=root, + map_plotter=plotter, + station_coords=coords, + station_names=names, + merged_data=merged_data, + stops_data=stops_data, + graph=graph, + ) + + log.info("GUI created") + return root + + def run(self) -> int: + """ + Run the main application event loop. + + Starts the CustomTkinter mainloop and blocks until the window is closed. + + :return: Exit code, 0 if the application terminated normally. + """ + log.info("Starting application") + + self._configure_ctk() + + ( + self.merged_data, + self.stop_to_station, + self.coords, + self.names, + self.platform_count, + self.stops_data, + ) = self._load_and_process_data() + + self.graph = self._create_graph(self.merged_data, self.stop_to_station) + + self.root = self._create_gui( + graph=self.graph, + merged_data=self.merged_data, + coords=self.coords, + names=self.names, + platform_count=self.platform_count, + stops_data=self.stops_data, + ) + + log.info("Starting CTk mainloop") + self.root.mainloop() + log.info("Application terminated") + return 0 diff --git a/src/rail_network_graph/assets/data/gtfs_data/routes.txt b/src/rail_network_graph/assets/data/gtfs_data/routes.txt new file mode 100644 index 0000000..a64cd4b --- /dev/null +++ b/src/rail_network_graph/assets/data/gtfs_data/routes.txt @@ -0,0 +1,76 @@ +route_id,agency_id,route_short_name,route_long_name,route_type,route_color,route_text_color +161165,279,,# Berlin-Lichtenberg - Węgliniec #,2,F6C32F,000000 +161126,279,D1,,2,F6C32F,000000 +161123,279,D10,,2,F6C32F,000000 +161185,279,D10/D1,,2,F6C32F,000000 +161146,279,D11,,2,F6C32F,000000 +161159,279,D12,,2,F6C32F,000000 +161135,279,D13,,2,F6C32F,000000 +161125,279,D14,,2,F6C32F,000000 +161187,279,D1/D62,,2,F6C32F,000000 +161169,279,D2,,2,F6C32F,000000 +161160,279,D20,,2,F6C32F,000000 +161138,279,D3,,2,F6C32F,000000 +161193,279,D31,,2,F6C32F,000000 +161178,279,D3/D9,,2,F6C32F,000000 +161128,279,D4,,2,F6C32F,000000 +161156,279,D40,,2,F6C32F,000000 +161143,279,,D40/D64,2,F6C32F,000000 +161144,279,,D40/D64/D96,2,F6C32F,000000 +161181,279,,D40/D91,2,F6C32F,000000 +161129,279,D4/D8,,2,F6C32F,000000 +161140,279,D6,,2,F6C32F,000000 +161149,279,D60,,2,F6C32F,000000 +161121,279,D61,,2,F6C32F,000000 +161122,279,D62,,2,F6C32F,000000 +161186,279,D62/D1,,2,F6C32F,000000 +161188,279,,D62/D10,2,F6C32F,000000 +161166,279,D62/D6,,2,F6C32F,000000 +161157,279,D64,,2,F6C32F,000000 +161158,279,,D64/D91,2,F6C32F,000000 +161119,279,D66,,2,F6C32F,000000 +161120,279,D67,,2,F6C32F,000000 +161167,279,D6/D62,,2,F6C32F,000000 +161132,279,D6/D96,,2,F6C32F,000000 +161141,279,D7,,2,F6C32F,000000 +161168,279,D70,,2,F6C32F,000000 +161180,279,D7/D80,,2,F6C32F,000000 +161161,279,D7/D83,,2,F6C32F,000000 +161147,279,D8,,2,F6C32F,000000 +161151,279,D80,,2,F6C32F,000000 +161179,279,D80/D7,,2,F6C32F,000000 +161150,279,D81,,2,F6C32F,000000 +161162,279,D83,,2,F6C32F,000000 +161139,279,D83/D7,,2,F6C32F,000000 +161189,279,D8/D4,,2,F6C32F,000000 +161190,279,,D8/D4/D91,2,F6C32F,000000 +161136,279,D9,,2,F6C32F,000000 +161127,279,D90,,2,F6C32F,000000 +161182,279,,D90/D91,2,F6C32F,000000 +161148,279,D91,,2,F6C32F,000000 +161130,279,D91/D4,,2,F6C32F,000000 +161184,279,,D91/D40,2,F6C32F,000000 +161142,279,,D91/D64,2,F6C32F,000000 +161183,279,,D91/D90,2,F6C32F,000000 +161131,279,D92,,2,F6C32F,000000 +161133,279,D96,,2,F6C32F,000000 +161134,279,D96/D6,,2,F6C32F,000000 +161145,279,,D96/D64/D40,2,F6C32F,000000 +161137,279,D9/D3,,2,F6C32F,000000 +161155,279,,# Głogów - Wrocław Główny #,2,F6C32F,000000 +161192,279,,# Góra Śląska - Bojanowo #,2,F6C32F,000000 +161163,279,,KD Premium Nadmorski,2,F6C32F,000000 +161170,279,,# Legnica - Wrocław Główny #,2,F6C32F,000000 +161173,279,,# Lubań Śląski - Wrocław Główny #,2,F6C32F,000000 +161154,279,,# Lubin - Wrocław Główny #,2,F6C32F,000000 +161124,279,,Pociąg do Kultury,2,F6C32F,000000 +161164,279,,# Węgliniec - Berlin-Lichtenberg #,2,F6C32F,000000 +161171,279,,# Węgliniec - Wrocław Główny #,2,F6C32F,000000 +161177,279,,# Wrocław Główny - Bolesławiec #,2,F6C32F,000000 +161152,279,,# Wrocław Główny - Głogów #,2,F6C32F,000000 +161176,279,,# Wrocław Główny - Legnica #,2,F6C32F,000000 +161174,279,,# Wrocław Główny - Lubań Śląski #,2,F6C32F,000000 +161153,279,,# Wrocław Główny - Lubin #,2,F6C32F,000000 +161175,279,,# Wrocław Główny - Zgorzelec #,2,F6C32F,000000 +161172,279,,# Zgorzelec - Wrocław Główny #,2,F6C32F,000000 +161191,279,,# Zielona Góra Główna - Wrocław Główny #,2,F6C32F,000000 diff --git a/src/rail_network_graph/assets/data/gtfs_data/stop_times.txt b/src/rail_network_graph/assets/data/gtfs_data/stop_times.txt new file mode 100644 index 0000000..60c086b --- /dev/null +++ b/src/rail_network_graph/assets/data/gtfs_data/stop_times.txt @@ -0,0 +1,21984 @@ +trip_id,arrival_time,departure_time,stop_id,stop_sequence,stop_headsign +24984854_256252,05:37:00,05:37:00,1474824,0, +24984854_256252,05:42:00,05:42:00,1474825,1, +24984854_256252,05:49:00,05:49:00,1474826,2, +24984854_256252,05:56:00,05:56:00,1474827,3, +24984854_256252,05:59:00,05:59:00,1474828,4, +24984854_256252,06:04:00,06:07:00,1474829,5, +24984854_256252,06:13:00,06:13:00,1474830,6, +24984854_256252,06:19:00,06:19:00,1474831,7, +24984854_256252,06:25:00,06:26:00,1474832,8, +24984854_256252,06:34:00,06:34:00,1474758,9, +24984855_256253,06:07:00,06:07:00,1474829,0, +24984855_256253,06:13:00,06:13:00,1474830,1, +24984855_256253,06:19:00,06:19:00,1474831,2, +24984855_256253,06:25:00,06:26:00,1474832,3, +24984855_256253,06:34:00,06:34:00,1474758,4, +24984856_256254,07:19:00,07:19:00,1474829,0, +24984856_256254,07:25:00,07:25:00,1474830,1, +24984856_256254,07:31:00,07:31:00,1474831,2, +24984856_256254,07:37:00,07:38:00,1474832,3, +24984856_256254,07:46:00,07:46:00,1474758,4, +24984857_256255,07:18:00,07:18:00,1474829,0, +24984857_256255,07:24:00,07:24:00,1474830,1, +24984857_256255,07:30:00,07:30:00,1474831,2, +24984857_256255,07:36:00,07:37:00,1474832,3, +24984857_256255,07:45:00,07:45:00,1474758,4, +24984860_256258,09:20:00,09:20:00,1474829,0, +24984860_256258,09:26:00,09:26:00,1474830,1, +24984860_256258,09:32:00,09:32:00,1474831,2, +24984860_256258,09:38:00,09:39:00,1474832,3, +24984860_256258,09:47:00,09:47:00,1474758,4, +24984861_256259,08:53:00,08:53:00,1474824,0, +24984861_256259,08:58:00,08:58:00,1474825,1, +24984861_256259,09:11:00,09:11:00,1474827,2, +24984861_256259,09:14:00,09:14:00,1474828,3, +24984861_256259,09:19:00,09:20:00,1474829,4, +24984861_256259,09:26:00,09:26:00,1474830,5, +24984861_256259,09:32:00,09:32:00,1474831,6, +24984861_256259,09:38:00,09:41:00,1474832,7, +24984861_256259,09:50:00,09:50:00,1474758,8, +24984862_256260,09:20:00,09:20:00,1474829,0, +24984862_256260,09:26:00,09:26:00,1474830,1, +24984862_256260,09:32:00,09:32:00,1474831,2, +24984862_256260,09:38:00,09:39:00,1474832,3, +24984862_256260,09:47:00,09:47:00,1474758,4, +24984864_256262,11:20:00,11:20:00,1474829,0, +24984864_256262,11:26:00,11:26:00,1474830,1, +24984864_256262,11:32:00,11:32:00,1474831,2, +24984864_256262,11:38:00,11:41:00,1474832,3, +24984864_256262,11:50:00,11:50:00,1474758,4, +24984865_256263,11:20:00,11:20:00,1474829,0, +24984865_256263,11:26:00,11:26:00,1474830,1, +24984865_256263,11:32:00,11:32:00,1474831,2, +24984865_256263,11:38:00,11:39:00,1474832,3, +24984865_256263,11:47:00,11:47:00,1474758,4, +24984868_256266,13:37:00,13:37:00,1474824,0, +24984868_256266,13:42:00,13:42:00,1474825,1, +24984868_256266,13:49:00,13:49:00,1474826,2, +24984868_256266,13:56:00,13:56:00,1474827,3, +24984868_256266,13:59:00,13:59:00,1474828,4, +24984868_256266,14:04:00,14:05:00,1474829,5, +24984868_256266,14:11:00,14:11:00,1474830,6, +24984868_256266,14:17:00,14:17:00,1474831,7, +24984868_256266,14:23:00,14:26:00,1474832,8, +24984868_256266,14:35:00,14:35:00,1474758,9, +24984869_256267,14:05:00,14:05:00,1474829,0, +24984869_256267,14:11:00,14:11:00,1474830,1, +24984869_256267,14:17:00,14:17:00,1474831,2, +24984869_256267,14:23:00,14:24:00,1474832,3, +24984869_256267,14:32:00,14:32:00,1474758,4, +24984870_256268,16:20:00,16:20:00,1474829,0, +24984870_256268,16:26:00,16:26:00,1474830,1, +24984870_256268,16:32:00,16:32:00,1474831,2, +24984870_256268,16:38:00,16:39:00,1474832,3, +24984870_256268,16:47:00,16:47:00,1474758,4, +24984872_256270,18:30:00,18:30:00,1474829,0, +24984872_256270,18:36:00,18:36:00,1474830,1, +24984872_256270,18:42:00,18:42:00,1474831,2, +24984872_256270,18:48:00,18:49:00,1474832,3, +24984872_256270,18:57:00,18:57:00,1474758,4, +24984873_256271,18:02:00,18:02:00,1474824,0, +24984873_256271,18:07:00,18:07:00,1474825,1, +24984873_256271,18:21:00,18:21:00,1474827,2, +24984873_256271,18:24:00,18:24:00,1474828,3, +24984873_256271,18:29:00,18:30:00,1474829,4, +24984873_256271,18:36:00,18:36:00,1474830,5, +24984873_256271,18:42:00,18:42:00,1474831,6, +24984873_256271,18:48:00,18:49:00,1474832,7, +24984873_256271,18:57:00,18:57:00,1474758,8, +24984874_256272,18:30:00,18:30:00,1474829,0, +24984874_256272,18:36:00,18:36:00,1474830,1, +24984874_256272,18:42:00,18:42:00,1474831,2, +24984874_256272,18:48:00,18:49:00,1474832,3, +24984874_256272,18:57:00,18:57:00,1474758,4, +24984875_256273,18:45:00,18:45:00,1536273,0, +24984875_256273,18:50:00,18:50:00,1536274,1, +24984875_256273,18:54:00,18:54:00,1536275,2, +24984875_256273,19:03:00,19:03:00,1536276,3, +24984875_256273,19:11:00,19:12:00,1475111,4, +24984875_256273,19:20:00,19:21:00,1536267,5, +24984875_256273,19:27:00,19:28:00,1536268,6, +24984875_256273,19:31:00,19:31:00,1536269,7, +24984875_256273,19:35:00,19:35:00,1475153,8, +24984875_256273,19:41:00,19:45:00,1474760,9, +24984875_256273,19:56:00,19:56:00,1474816,10, +24984875_256273,20:00:00,20:01:00,1474779,11, +24984875_256273,20:04:00,20:05:00,1475125,12, +24984875_256273,20:14:00,20:14:00,1475126,13, +24984875_256273,20:21:00,20:25:00,1474720,14, +24984875_256273,20:29:00,20:29:00,1474796,15, +24984875_256273,20:43:00,20:44:00,1474818,16, +24984875_256273,20:54:00,20:56:00,1474819,17, +24984875_256273,21:03:00,21:03:00,1536277,18, +24984876_256274,19:12:00,19:12:00,1475111,0, +24984876_256274,19:20:00,19:20:00,1536267,1, +24984876_256274,19:26:00,19:27:00,1536268,2, +24984876_256274,19:30:00,19:30:00,1536269,3, +24984876_256274,19:34:00,19:34:00,1475153,4, +24984876_256274,19:40:00,19:41:00,1474760,5, +24984876_256274,19:48:00,19:48:00,1474816,6, +24984876_256274,19:52:00,19:53:00,1474779,7, +24984876_256274,19:56:00,19:57:00,1475125,8, +24984876_256274,20:06:00,20:06:00,1475126,9, +24984876_256274,20:13:00,20:25:00,1474720,10, +24984876_256274,20:29:00,20:29:00,1474796,11, +24984876_256274,20:43:00,20:44:00,1474818,12, +24984876_256274,20:55:00,20:56:00,1474819,13, +24984876_256274,21:03:00,21:03:00,1474640,14, +24984878_256276,10:45:00,10:45:00,1536273,0, +24984878_256276,10:50:00,10:50:00,1536274,1, +24984878_256276,10:54:00,10:54:00,1536275,2, +24984878_256276,11:03:00,11:03:00,1536276,3, +24984878_256276,11:11:00,11:12:00,1475111,4, +24984878_256276,11:20:00,11:22:00,1536267,5, +24984878_256276,11:28:00,11:28:00,1536268,6, +24984878_256276,11:32:00,11:32:00,1536269,7, +24984878_256276,11:35:00,11:36:00,1475153,8, +24984878_256276,11:42:00,11:47:00,1474760,9, +24984878_256276,11:55:00,11:55:00,1474816,10, +24984878_256276,11:59:00,12:01:00,1474779,11, +24984878_256276,12:05:00,12:05:00,1475125,12, +24984878_256276,12:14:00,12:15:00,1475126,13, +24984878_256276,12:22:00,12:25:00,1474720,14, +24984878_256276,12:29:00,12:29:00,1474796,15, +24984878_256276,12:43:00,12:44:00,1474818,16, +24984878_256276,12:54:00,12:55:00,1474819,17, +24984878_256276,13:02:00,13:02:00,1536277,18, +24984879_256277,11:12:00,11:12:00,1475111,0, +24984879_256277,11:20:00,11:23:00,1536267,1, +24984879_256277,11:28:00,11:29:00,1536268,2, +24984879_256277,11:32:00,11:32:00,1536269,3, +24984879_256277,11:36:00,11:36:00,1475153,4, +24984879_256277,11:42:00,11:47:00,1474760,5, +24984879_256277,11:54:00,11:54:00,1474816,6, +24984879_256277,11:58:00,12:00:00,1474779,7, +24984879_256277,12:04:00,12:04:00,1475125,8, +24984879_256277,12:14:00,12:14:00,1475126,9, +24984879_256277,12:21:00,12:25:00,1474720,10, +24984879_256277,12:29:00,12:29:00,1474796,11, +24984879_256277,12:43:00,12:44:00,1474818,12, +24984879_256277,12:55:00,12:56:00,1474819,13, +24984879_256277,13:03:00,13:03:00,1474640,14, +24984883_256281,06:35:00,06:35:00,1474588,0, +24984883_256281,06:38:00,06:38:00,1474589,1, +24984883_256281,06:41:00,06:41:00,1474590,2, +24984883_256281,06:42:00,06:42:00,1474591,3, +24984883_256281,06:45:00,06:45:00,1474592,4, +24984883_256281,06:50:00,06:50:00,1474593,5, +24984883_256281,06:55:00,06:56:00,1474594,6, +24984883_256281,06:58:00,06:58:00,1474595,7, +24984883_256281,06:59:00,06:59:00,1474596,8, +24984883_256281,07:00:00,07:00:00,1474597,9, +24984883_256281,07:02:00,07:04:00,1474598,10, +24984883_256281,07:09:00,07:09:00,1474599,11, +24984883_256281,07:13:00,07:13:00,1474600,12, +24984883_256281,07:14:00,07:14:00,1474601,13, +24984883_256281,07:15:00,07:15:00,1474602,14, +24984883_256281,07:18:00,07:18:00,1474603,15, +24984883_256281,07:21:00,07:21:00,1474604,16, +24984883_256281,07:24:00,07:29:00,1474605,17, +24984883_256281,07:31:00,07:31:00,1474606,18, +24984883_256281,07:33:00,07:33:00,1474608,19, +24984883_256281,07:35:00,07:35:00,1474609,20, +24984883_256281,07:40:00,07:40:00,1474615,21, +24984883_256281,07:48:00,07:48:00,1474610,22, +24984883_256281,07:56:00,07:56:00,1474611,23, +24984883_256281,08:06:00,08:07:00,1536271,24, +24984883_256281,08:18:00,08:19:00,1657882,25, +24984883_256281,08:22:00,08:22:00,1536272,26, +24984884_256282,07:57:00,07:57:00,1474611,0, +24984884_256282,08:06:00,08:07:00,1474612,1, +24984884_256282,08:17:00,08:17:00,1474613,2, +24984884_256282,08:22:00,08:22:00,1474614,3, +24984890_256288,08:30:00,08:30:00,1536272,0, +24984890_256288,08:32:00,08:33:00,1657882,1, +24984890_256288,08:44:00,08:45:00,1536271,2, +24984890_256288,08:54:00,08:54:00,1474611,3, +24984890_256288,09:05:00,09:05:00,1474610,4, +24984890_256288,09:13:00,09:13:00,1474615,5, +24984890_256288,09:18:00,09:18:00,1474609,6, +24984890_256288,09:19:00,09:19:00,1474608,7, +24984890_256288,09:21:00,09:21:00,1474606,8, +24984890_256288,09:23:00,09:25:00,1474605,9, +24984890_256288,09:28:00,09:28:00,1474604,10, +24984890_256288,09:31:00,09:31:00,1474603,11, +24984890_256288,09:34:00,09:34:00,1474602,12, +24984890_256288,09:35:00,09:35:00,1474601,13, +24984890_256288,09:37:00,09:37:00,1474600,14, +24984890_256288,09:40:00,09:40:00,1474599,15, +24984890_256288,09:45:00,09:47:00,1474598,16, +24984890_256288,09:49:00,09:49:00,1474597,17, +24984890_256288,09:51:00,09:51:00,1474596,18, +24984890_256288,09:52:00,09:52:00,1474595,19, +24984890_256288,09:56:00,09:57:00,1474594,20, +24984890_256288,09:59:00,09:59:00,1474593,21, +24984890_256288,10:04:00,10:04:00,1474592,22, +24984890_256288,10:07:00,10:07:00,1474591,23, +24984890_256288,10:10:00,10:10:00,1474590,24, +24984890_256288,10:12:00,10:12:00,1474589,25, +24984890_256288,10:17:00,10:17:00,1474588,26, +24984891_256289,08:30:00,08:30:00,1474614,0, +24984891_256289,08:33:00,08:34:00,1474613,1, +24984891_256289,08:44:00,08:44:00,1474612,2, +24984891_256289,08:55:00,08:55:00,1474611,3, +24984895_256293,07:35:00,07:35:00,1474588,0, +24984895_256293,07:38:00,07:38:00,1474589,1, +24984895_256293,07:41:00,07:41:00,1474590,2, +24984895_256293,07:42:00,07:42:00,1474591,3, +24984895_256293,07:45:00,07:45:00,1474592,4, +24984895_256293,07:50:00,07:50:00,1474593,5, +24984895_256293,07:55:00,07:56:00,1474594,6, +24984895_256293,07:58:00,07:58:00,1474595,7, +24984895_256293,07:59:00,07:59:00,1474596,8, +24984895_256293,08:00:00,08:00:00,1474597,9, +24984895_256293,08:02:00,08:04:00,1474598,10, +24984895_256293,08:09:00,08:09:00,1474599,11, +24984895_256293,08:13:00,08:13:00,1474600,12, +24984895_256293,08:14:00,08:14:00,1474601,13, +24984895_256293,08:15:00,08:15:00,1474602,14, +24984895_256293,08:18:00,08:18:00,1474603,15, +24984895_256293,08:21:00,08:21:00,1474604,16, +24984895_256293,08:24:00,08:29:00,1474605,17, +24984895_256293,08:31:00,08:31:00,1474606,18, +24984895_256293,08:33:00,08:33:00,1474608,19, +24984895_256293,08:35:00,08:35:00,1474609,20, +24984895_256293,08:40:00,08:40:00,1474615,21, +24984895_256293,08:48:00,08:48:00,1474610,22, +24984895_256293,08:56:00,08:56:00,1474611,23, +24984895_256293,09:06:00,09:07:00,1536271,24, +24984895_256293,09:18:00,09:19:00,1657882,25, +24984895_256293,09:22:00,09:22:00,1536272,26, +24984896_256294,08:57:00,08:57:00,1474611,0, +24984896_256294,09:06:00,09:07:00,1474612,1, +24984896_256294,09:17:00,09:17:00,1474613,2, +24984896_256294,09:22:00,09:22:00,1474614,3, +24984905_256303,09:30:00,09:30:00,1536272,0, +24984905_256303,09:32:00,09:33:00,1657882,1, +24984905_256303,09:44:00,09:45:00,1536271,2, +24984905_256303,09:54:00,09:54:00,1474611,3, +24984905_256303,10:05:00,10:05:00,1474610,4, +24984905_256303,10:13:00,10:13:00,1474615,5, +24984905_256303,10:18:00,10:18:00,1474609,6, +24984905_256303,10:19:00,10:19:00,1474608,7, +24984905_256303,10:21:00,10:21:00,1474606,8, +24984905_256303,10:23:00,10:25:00,1474605,9, +24984905_256303,10:28:00,10:28:00,1474604,10, +24984905_256303,10:31:00,10:31:00,1474603,11, +24984905_256303,10:34:00,10:34:00,1474602,12, +24984905_256303,10:35:00,10:35:00,1474601,13, +24984905_256303,10:37:00,10:37:00,1474600,14, +24984905_256303,10:40:00,10:40:00,1474599,15, +24984905_256303,10:45:00,10:47:00,1474598,16, +24984905_256303,10:49:00,10:49:00,1474597,17, +24984905_256303,10:51:00,10:51:00,1474596,18, +24984905_256303,10:52:00,10:52:00,1474595,19, +24984905_256303,10:56:00,10:57:00,1474594,20, +24984905_256303,10:59:00,10:59:00,1474593,21, +24984905_256303,11:04:00,11:04:00,1474592,22, +24984905_256303,11:07:00,11:07:00,1474591,23, +24984905_256303,11:10:00,11:10:00,1474590,24, +24984905_256303,11:12:00,11:12:00,1474589,25, +24984905_256303,11:17:00,11:17:00,1474588,26, +24984906_256304,09:30:00,09:30:00,1474614,0, +24984906_256304,09:33:00,09:34:00,1474613,1, +24984906_256304,09:44:00,09:44:00,1474612,2, +24984906_256304,09:55:00,09:55:00,1474611,3, +24984910_256308,08:35:00,08:35:00,1474588,0, +24984910_256308,08:38:00,08:38:00,1474589,1, +24984910_256308,08:41:00,08:41:00,1474590,2, +24984910_256308,08:42:00,08:42:00,1474591,3, +24984910_256308,08:45:00,08:45:00,1474592,4, +24984910_256308,08:50:00,08:50:00,1474593,5, +24984910_256308,08:55:00,08:56:00,1474594,6, +24984910_256308,08:58:00,08:58:00,1474595,7, +24984910_256308,08:59:00,08:59:00,1474596,8, +24984910_256308,09:00:00,09:00:00,1474597,9, +24984910_256308,09:02:00,09:04:00,1474598,10, +24984910_256308,09:09:00,09:09:00,1474599,11, +24984910_256308,09:13:00,09:13:00,1474600,12, +24984910_256308,09:14:00,09:14:00,1474601,13, +24984910_256308,09:15:00,09:15:00,1474602,14, +24984910_256308,09:18:00,09:18:00,1474603,15, +24984910_256308,09:21:00,09:21:00,1474604,16, +24984910_256308,09:24:00,09:29:00,1474605,17, +24984910_256308,09:31:00,09:31:00,1474606,18, +24984910_256308,09:33:00,09:33:00,1474608,19, +24984910_256308,09:35:00,09:35:00,1474609,20, +24984910_256308,09:40:00,09:40:00,1474615,21, +24984910_256308,09:48:00,09:48:00,1474610,22, +24984910_256308,09:56:00,09:56:00,1474611,23, +24984910_256308,10:06:00,10:07:00,1536271,24, +24984910_256308,10:18:00,10:19:00,1657882,25, +24984910_256308,10:22:00,10:22:00,1536272,26, +24984911_256309,09:57:00,09:57:00,1474611,0, +24984911_256309,10:06:00,10:07:00,1474612,1, +24984911_256309,10:17:00,10:17:00,1474613,2, +24984911_256309,10:22:00,10:22:00,1474614,3, +24984920_256318,10:30:00,10:30:00,1536272,0, +24984920_256318,10:32:00,10:33:00,1657882,1, +24984920_256318,10:44:00,10:45:00,1536271,2, +24984920_256318,10:54:00,10:54:00,1474611,3, +24984920_256318,11:05:00,11:05:00,1474610,4, +24984920_256318,11:13:00,11:13:00,1474615,5, +24984920_256318,11:18:00,11:18:00,1474609,6, +24984920_256318,11:19:00,11:19:00,1474608,7, +24984920_256318,11:21:00,11:21:00,1474606,8, +24984920_256318,11:23:00,11:25:00,1474605,9, +24984920_256318,11:28:00,11:28:00,1474604,10, +24984920_256318,11:31:00,11:31:00,1474603,11, +24984920_256318,11:34:00,11:34:00,1474602,12, +24984920_256318,11:35:00,11:35:00,1474601,13, +24984920_256318,11:37:00,11:37:00,1474600,14, +24984920_256318,11:40:00,11:40:00,1474599,15, +24984920_256318,11:45:00,11:47:00,1474598,16, +24984920_256318,11:49:00,11:49:00,1474597,17, +24984920_256318,11:51:00,11:51:00,1474596,18, +24984920_256318,11:52:00,11:52:00,1474595,19, +24984920_256318,11:56:00,11:57:00,1474594,20, +24984920_256318,11:59:00,11:59:00,1474593,21, +24984920_256318,12:04:00,12:04:00,1474592,22, +24984920_256318,12:07:00,12:07:00,1474591,23, +24984920_256318,12:10:00,12:10:00,1474590,24, +24984920_256318,12:12:00,12:12:00,1474589,25, +24984920_256318,12:17:00,12:17:00,1474588,26, +24984921_256319,10:30:00,10:30:00,1474614,0, +24984921_256319,10:33:00,10:34:00,1474613,1, +24984921_256319,10:44:00,10:44:00,1474612,2, +24984921_256319,10:55:00,10:55:00,1474611,3, +24984925_256323,09:35:00,09:35:00,1474588,0, +24984925_256323,09:38:00,09:38:00,1474589,1, +24984925_256323,09:41:00,09:41:00,1474590,2, +24984925_256323,09:42:00,09:42:00,1474591,3, +24984925_256323,09:45:00,09:45:00,1474592,4, +24984925_256323,09:50:00,09:50:00,1474593,5, +24984925_256323,09:55:00,09:56:00,1474594,6, +24984925_256323,09:58:00,09:58:00,1474595,7, +24984925_256323,09:59:00,09:59:00,1474596,8, +24984925_256323,10:00:00,10:00:00,1474597,9, +24984925_256323,10:02:00,10:04:00,1474598,10, +24984925_256323,10:09:00,10:09:00,1474599,11, +24984925_256323,10:13:00,10:13:00,1474600,12, +24984925_256323,10:14:00,10:14:00,1474601,13, +24984925_256323,10:15:00,10:15:00,1474602,14, +24984925_256323,10:18:00,10:18:00,1474603,15, +24984925_256323,10:21:00,10:21:00,1474604,16, +24984925_256323,10:24:00,10:29:00,1474605,17, +24984925_256323,10:31:00,10:31:00,1474606,18, +24984925_256323,10:33:00,10:33:00,1474608,19, +24984925_256323,10:35:00,10:35:00,1474609,20, +24984925_256323,10:40:00,10:40:00,1474615,21, +24984925_256323,10:48:00,10:48:00,1474610,22, +24984925_256323,10:56:00,10:56:00,1474611,23, +24984925_256323,11:06:00,11:07:00,1536271,24, +24984925_256323,11:18:00,11:19:00,1657882,25, +24984925_256323,11:22:00,11:22:00,1536272,26, +24984926_256324,10:57:00,10:57:00,1474611,0, +24984926_256324,11:06:00,11:07:00,1474612,1, +24984926_256324,11:17:00,11:17:00,1474613,2, +24984926_256324,11:22:00,11:22:00,1474614,3, +24984935_256333,11:30:00,11:30:00,1536272,0, +24984935_256333,11:32:00,11:33:00,1657882,1, +24984935_256333,11:44:00,11:45:00,1536271,2, +24984935_256333,11:54:00,11:54:00,1474611,3, +24984935_256333,12:05:00,12:05:00,1474610,4, +24984935_256333,12:13:00,12:13:00,1474615,5, +24984935_256333,12:18:00,12:18:00,1474609,6, +24984935_256333,12:19:00,12:19:00,1474608,7, +24984935_256333,12:21:00,12:21:00,1474606,8, +24984935_256333,12:23:00,12:25:00,1474605,9, +24984935_256333,12:28:00,12:28:00,1474604,10, +24984935_256333,12:31:00,12:31:00,1474603,11, +24984935_256333,12:34:00,12:34:00,1474602,12, +24984935_256333,12:35:00,12:35:00,1474601,13, +24984935_256333,12:37:00,12:37:00,1474600,14, +24984935_256333,12:40:00,12:40:00,1474599,15, +24984935_256333,12:45:00,12:47:00,1474598,16, +24984935_256333,12:49:00,12:49:00,1474597,17, +24984935_256333,12:51:00,12:51:00,1474596,18, +24984935_256333,12:52:00,12:52:00,1474595,19, +24984935_256333,12:56:00,12:57:00,1474594,20, +24984935_256333,12:59:00,12:59:00,1474593,21, +24984935_256333,13:04:00,13:04:00,1474592,22, +24984935_256333,13:07:00,13:07:00,1474591,23, +24984935_256333,13:10:00,13:10:00,1474590,24, +24984935_256333,13:12:00,13:12:00,1474589,25, +24984935_256333,13:18:00,13:18:00,1474588,26, +24984936_256334,11:30:00,11:30:00,1474614,0, +24984936_256334,11:33:00,11:34:00,1474613,1, +24984936_256334,11:44:00,11:44:00,1474612,2, +24984936_256334,11:55:00,11:55:00,1474611,3, +24984940_256338,10:35:00,10:35:00,1474588,0, +24984940_256338,10:38:00,10:38:00,1474589,1, +24984940_256338,10:41:00,10:41:00,1474590,2, +24984940_256338,10:42:00,10:42:00,1474591,3, +24984940_256338,10:45:00,10:45:00,1474592,4, +24984940_256338,10:50:00,10:50:00,1474593,5, +24984940_256338,10:55:00,10:56:00,1474594,6, +24984940_256338,10:58:00,10:58:00,1474595,7, +24984940_256338,10:59:00,10:59:00,1474596,8, +24984940_256338,11:00:00,11:00:00,1474597,9, +24984940_256338,11:02:00,11:04:00,1474598,10, +24984940_256338,11:09:00,11:09:00,1474599,11, +24984940_256338,11:13:00,11:13:00,1474600,12, +24984940_256338,11:14:00,11:14:00,1474601,13, +24984940_256338,11:15:00,11:15:00,1474602,14, +24984940_256338,11:18:00,11:18:00,1474603,15, +24984940_256338,11:21:00,11:21:00,1474604,16, +24984940_256338,11:24:00,11:29:00,1474605,17, +24984940_256338,11:31:00,11:31:00,1474606,18, +24984940_256338,11:33:00,11:33:00,1474608,19, +24984940_256338,11:35:00,11:35:00,1474609,20, +24984940_256338,11:40:00,11:40:00,1474615,21, +24984940_256338,11:48:00,11:48:00,1474610,22, +24984940_256338,11:56:00,11:56:00,1474611,23, +24984940_256338,12:06:00,12:07:00,1536271,24, +24984940_256338,12:18:00,12:19:00,1657882,25, +24984940_256338,12:22:00,12:22:00,1536272,26, +24984941_256339,11:57:00,11:57:00,1474611,0, +24984941_256339,12:06:00,12:07:00,1474612,1, +24984941_256339,12:17:00,12:17:00,1474613,2, +24984941_256339,12:22:00,12:22:00,1474614,3, +24984949_256347,12:30:00,12:30:00,1536272,0, +24984949_256347,12:32:00,12:33:00,1657882,1, +24984949_256347,12:44:00,12:45:00,1536271,2, +24984949_256347,12:54:00,12:54:00,1474611,3, +24984949_256347,13:05:00,13:05:00,1474610,4, +24984949_256347,13:13:00,13:13:00,1474615,5, +24984949_256347,13:18:00,13:18:00,1474609,6, +24984949_256347,13:19:00,13:19:00,1474608,7, +24984949_256347,13:21:00,13:21:00,1474606,8, +24984949_256347,13:23:00,13:25:00,1474605,9, +24984949_256347,13:28:00,13:28:00,1474604,10, +24984949_256347,13:31:00,13:31:00,1474603,11, +24984949_256347,13:34:00,13:34:00,1474602,12, +24984949_256347,13:35:00,13:35:00,1474601,13, +24984949_256347,13:37:00,13:37:00,1474600,14, +24984949_256347,13:40:00,13:40:00,1474599,15, +24984949_256347,13:45:00,13:47:00,1474598,16, +24984949_256347,13:49:00,13:49:00,1474597,17, +24984949_256347,13:51:00,13:51:00,1474596,18, +24984949_256347,13:52:00,13:52:00,1474595,19, +24984949_256347,13:56:00,13:57:00,1474594,20, +24984949_256347,13:59:00,13:59:00,1474593,21, +24984949_256347,14:04:00,14:04:00,1474592,22, +24984949_256347,14:07:00,14:07:00,1474591,23, +24984949_256347,14:10:00,14:10:00,1474590,24, +24984949_256347,14:12:00,14:12:00,1474589,25, +24984949_256347,14:18:00,14:18:00,1474588,26, +24984950_256348,12:30:00,12:30:00,1474614,0, +24984950_256348,12:33:00,12:34:00,1474613,1, +24984950_256348,12:44:00,12:44:00,1474612,2, +24984950_256348,12:55:00,12:55:00,1474611,3, +24984954_256352,12:35:00,12:35:00,1474588,0, +24984954_256352,12:38:00,12:38:00,1474589,1, +24984954_256352,12:41:00,12:41:00,1474590,2, +24984954_256352,12:42:00,12:42:00,1474591,3, +24984954_256352,12:45:00,12:45:00,1474592,4, +24984954_256352,12:50:00,12:50:00,1474593,5, +24984954_256352,12:55:00,12:56:00,1474594,6, +24984954_256352,12:58:00,12:58:00,1474595,7, +24984954_256352,12:59:00,12:59:00,1474596,8, +24984954_256352,13:00:00,13:00:00,1474597,9, +24984954_256352,13:02:00,13:04:00,1474598,10, +24984954_256352,13:09:00,13:09:00,1474599,11, +24984954_256352,13:13:00,13:13:00,1474600,12, +24984954_256352,13:14:00,13:14:00,1474601,13, +24984954_256352,13:15:00,13:15:00,1474602,14, +24984954_256352,13:18:00,13:18:00,1474603,15, +24984954_256352,13:21:00,13:21:00,1474604,16, +24984954_256352,13:24:00,13:29:00,1474605,17, +24984954_256352,13:31:00,13:31:00,1474606,18, +24984954_256352,13:33:00,13:33:00,1474608,19, +24984954_256352,13:35:00,13:35:00,1474609,20, +24984954_256352,13:40:00,13:40:00,1474615,21, +24984954_256352,13:48:00,13:48:00,1474610,22, +24984954_256352,13:56:00,13:56:00,1474611,23, +24984954_256352,14:06:00,14:07:00,1536271,24, +24984954_256352,14:18:00,14:19:00,1657882,25, +24984954_256352,14:22:00,14:22:00,1536272,26, +24984955_256353,13:57:00,13:57:00,1474611,0, +24984955_256353,14:06:00,14:07:00,1474612,1, +24984955_256353,14:17:00,14:17:00,1474613,2, +24984955_256353,14:22:00,14:22:00,1474614,3, +24984963_256361,14:30:00,14:30:00,1536272,0, +24984963_256361,14:32:00,14:33:00,1657882,1, +24984963_256361,14:44:00,14:45:00,1536271,2, +24984963_256361,14:54:00,14:54:00,1474611,3, +24984963_256361,15:05:00,15:05:00,1474610,4, +24984963_256361,15:13:00,15:13:00,1474615,5, +24984963_256361,15:18:00,15:18:00,1474609,6, +24984963_256361,15:19:00,15:19:00,1474608,7, +24984963_256361,15:21:00,15:21:00,1474606,8, +24984963_256361,15:23:00,15:25:00,1474605,9, +24984963_256361,15:28:00,15:28:00,1474604,10, +24984963_256361,15:31:00,15:31:00,1474603,11, +24984963_256361,15:34:00,15:34:00,1474602,12, +24984963_256361,15:35:00,15:35:00,1474601,13, +24984963_256361,15:37:00,15:37:00,1474600,14, +24984963_256361,15:40:00,15:40:00,1474599,15, +24984963_256361,15:45:00,15:47:00,1474598,16, +24984963_256361,15:49:00,15:49:00,1474597,17, +24984963_256361,15:51:00,15:51:00,1474596,18, +24984963_256361,15:52:00,15:52:00,1474595,19, +24984963_256361,15:56:00,15:57:00,1474594,20, +24984963_256361,15:59:00,15:59:00,1474593,21, +24984963_256361,16:04:00,16:04:00,1474592,22, +24984963_256361,16:07:00,16:07:00,1474591,23, +24984963_256361,16:10:00,16:10:00,1474590,24, +24984963_256361,16:12:00,16:12:00,1474589,25, +24984963_256361,16:18:00,16:18:00,1474588,26, +24984964_256362,14:30:00,14:30:00,1474614,0, +24984964_256362,14:33:00,14:34:00,1474613,1, +24984964_256362,14:44:00,14:44:00,1474612,2, +24984964_256362,14:55:00,14:55:00,1474611,3, +24984968_256366,13:35:00,13:35:00,1474588,0, +24984968_256366,13:38:00,13:38:00,1474589,1, +24984968_256366,13:41:00,13:41:00,1474590,2, +24984968_256366,13:42:00,13:42:00,1474591,3, +24984968_256366,13:45:00,13:45:00,1474592,4, +24984968_256366,13:50:00,13:50:00,1474593,5, +24984968_256366,13:55:00,13:56:00,1474594,6, +24984968_256366,13:58:00,13:58:00,1474595,7, +24984968_256366,13:59:00,13:59:00,1474596,8, +24984968_256366,14:00:00,14:00:00,1474597,9, +24984968_256366,14:02:00,14:04:00,1474598,10, +24984968_256366,14:09:00,14:09:00,1474599,11, +24984968_256366,14:13:00,14:13:00,1474600,12, +24984968_256366,14:14:00,14:14:00,1474601,13, +24984968_256366,14:15:00,14:15:00,1474602,14, +24984968_256366,14:18:00,14:18:00,1474603,15, +24984968_256366,14:21:00,14:21:00,1474604,16, +24984968_256366,14:24:00,14:29:00,1474605,17, +24984968_256366,14:31:00,14:31:00,1474606,18, +24984968_256366,14:33:00,14:33:00,1474608,19, +24984968_256366,14:35:00,14:35:00,1474609,20, +24984968_256366,14:40:00,14:40:00,1474615,21, +24984968_256366,14:48:00,14:48:00,1474610,22, +24984968_256366,14:56:00,14:56:00,1474611,23, +24984968_256366,15:06:00,15:07:00,1536271,24, +24984968_256366,15:18:00,15:19:00,1657882,25, +24984968_256366,15:22:00,15:22:00,1536272,26, +24984969_256367,14:57:00,14:57:00,1474611,0, +24984969_256367,15:06:00,15:07:00,1474612,1, +24984969_256367,15:17:00,15:17:00,1474613,2, +24984969_256367,15:22:00,15:22:00,1474614,3, +24984978_256376,15:30:00,15:30:00,1536272,0, +24984978_256376,15:32:00,15:33:00,1657882,1, +24984978_256376,15:44:00,15:45:00,1536271,2, +24984978_256376,15:54:00,15:54:00,1474611,3, +24984978_256376,16:05:00,16:05:00,1474610,4, +24984978_256376,16:13:00,16:13:00,1474615,5, +24984978_256376,16:18:00,16:18:00,1474609,6, +24984978_256376,16:19:00,16:19:00,1474608,7, +24984978_256376,16:21:00,16:21:00,1474606,8, +24984978_256376,16:23:00,16:25:00,1474605,9, +24984978_256376,16:28:00,16:28:00,1474604,10, +24984978_256376,16:31:00,16:31:00,1474603,11, +24984978_256376,16:34:00,16:34:00,1474602,12, +24984978_256376,16:35:00,16:35:00,1474601,13, +24984978_256376,16:37:00,16:37:00,1474600,14, +24984978_256376,16:40:00,16:40:00,1474599,15, +24984978_256376,16:45:00,16:47:00,1474598,16, +24984978_256376,16:49:00,16:49:00,1474597,17, +24984978_256376,16:51:00,16:51:00,1474596,18, +24984978_256376,16:52:00,16:52:00,1474595,19, +24984978_256376,16:56:00,16:57:00,1474594,20, +24984978_256376,16:59:00,16:59:00,1474593,21, +24984978_256376,17:04:00,17:04:00,1474592,22, +24984978_256376,17:07:00,17:07:00,1474591,23, +24984978_256376,17:10:00,17:10:00,1474590,24, +24984978_256376,17:12:00,17:12:00,1474589,25, +24984978_256376,17:18:00,17:18:00,1474588,26, +24984979_256377,15:30:00,15:30:00,1474614,0, +24984979_256377,15:33:00,15:34:00,1474613,1, +24984979_256377,15:44:00,15:44:00,1474612,2, +24984979_256377,15:55:00,15:55:00,1474611,3, +24984983_256381,14:35:00,14:35:00,1474588,0, +24984983_256381,14:38:00,14:38:00,1474589,1, +24984983_256381,14:41:00,14:41:00,1474590,2, +24984983_256381,14:42:00,14:42:00,1474591,3, +24984983_256381,14:45:00,14:45:00,1474592,4, +24984983_256381,14:50:00,14:50:00,1474593,5, +24984983_256381,14:55:00,14:56:00,1474594,6, +24984983_256381,14:58:00,14:58:00,1474595,7, +24984983_256381,14:59:00,14:59:00,1474596,8, +24984983_256381,15:00:00,15:00:00,1474597,9, +24984983_256381,15:02:00,15:04:00,1474598,10, +24984983_256381,15:09:00,15:09:00,1474599,11, +24984983_256381,15:13:00,15:13:00,1474600,12, +24984983_256381,15:14:00,15:14:00,1474601,13, +24984983_256381,15:15:00,15:15:00,1474602,14, +24984983_256381,15:18:00,15:18:00,1474603,15, +24984983_256381,15:21:00,15:21:00,1474604,16, +24984983_256381,15:24:00,15:29:00,1474605,17, +24984983_256381,15:31:00,15:31:00,1474606,18, +24984983_256381,15:33:00,15:33:00,1474608,19, +24984983_256381,15:35:00,15:35:00,1474609,20, +24984983_256381,15:40:00,15:40:00,1474615,21, +24984983_256381,15:48:00,15:48:00,1474610,22, +24984983_256381,15:56:00,15:56:00,1474611,23, +24984983_256381,16:06:00,16:07:00,1536271,24, +24984983_256381,16:18:00,16:19:00,1657882,25, +24984983_256381,16:22:00,16:22:00,1536272,26, +24984984_256382,15:57:00,15:57:00,1474611,0, +24984984_256382,16:06:00,16:07:00,1474612,1, +24984984_256382,16:17:00,16:17:00,1474613,2, +24984984_256382,16:22:00,16:22:00,1474614,3, +24984992_256390,16:30:00,16:30:00,1536272,0, +24984992_256390,16:32:00,16:33:00,1657882,1, +24984992_256390,16:44:00,16:45:00,1536271,2, +24984992_256390,16:54:00,16:54:00,1474611,3, +24984992_256390,17:05:00,17:05:00,1474610,4, +24984992_256390,17:13:00,17:13:00,1474615,5, +24984992_256390,17:18:00,17:18:00,1474609,6, +24984992_256390,17:19:00,17:19:00,1474608,7, +24984992_256390,17:21:00,17:21:00,1474606,8, +24984992_256390,17:23:00,17:25:00,1474605,9, +24984992_256390,17:28:00,17:28:00,1474604,10, +24984992_256390,17:31:00,17:31:00,1474603,11, +24984992_256390,17:34:00,17:34:00,1474602,12, +24984992_256390,17:35:00,17:35:00,1474601,13, +24984992_256390,17:37:00,17:37:00,1474600,14, +24984992_256390,17:40:00,17:40:00,1474599,15, +24984992_256390,17:45:00,17:47:00,1474598,16, +24984992_256390,17:49:00,17:49:00,1474597,17, +24984992_256390,17:51:00,17:51:00,1474596,18, +24984992_256390,17:52:00,17:52:00,1474595,19, +24984992_256390,17:56:00,17:57:00,1474594,20, +24984992_256390,17:59:00,17:59:00,1474593,21, +24984992_256390,18:04:00,18:04:00,1474592,22, +24984992_256390,18:07:00,18:07:00,1474591,23, +24984992_256390,18:10:00,18:10:00,1474590,24, +24984992_256390,18:12:00,18:12:00,1474589,25, +24984992_256390,18:18:00,18:18:00,1474588,26, +24984993_256391,16:30:00,16:30:00,1474614,0, +24984993_256391,16:33:00,16:34:00,1474613,1, +24984993_256391,16:44:00,16:44:00,1474612,2, +24984993_256391,16:55:00,16:55:00,1474611,3, +24984997_256395,15:35:00,15:35:00,1474588,0, +24984997_256395,15:38:00,15:38:00,1474589,1, +24984997_256395,15:41:00,15:41:00,1474590,2, +24984997_256395,15:42:00,15:42:00,1474591,3, +24984997_256395,15:45:00,15:45:00,1474592,4, +24984997_256395,15:50:00,15:50:00,1474593,5, +24984997_256395,15:55:00,15:56:00,1474594,6, +24984997_256395,15:58:00,15:58:00,1474595,7, +24984997_256395,15:59:00,15:59:00,1474596,8, +24984997_256395,16:00:00,16:00:00,1474597,9, +24984997_256395,16:02:00,16:04:00,1474598,10, +24984997_256395,16:09:00,16:09:00,1474599,11, +24984997_256395,16:13:00,16:13:00,1474600,12, +24984997_256395,16:14:00,16:14:00,1474601,13, +24984997_256395,16:15:00,16:15:00,1474602,14, +24984997_256395,16:18:00,16:18:00,1474603,15, +24984997_256395,16:21:00,16:21:00,1474604,16, +24984997_256395,16:24:00,16:29:00,1474605,17, +24984997_256395,16:31:00,16:31:00,1474606,18, +24984997_256395,16:33:00,16:33:00,1474608,19, +24984997_256395,16:35:00,16:35:00,1474609,20, +24984997_256395,16:40:00,16:40:00,1474615,21, +24984997_256395,16:48:00,16:48:00,1474610,22, +24984997_256395,16:56:00,16:56:00,1474611,23, +24984997_256395,17:06:00,17:07:00,1536271,24, +24984997_256395,17:18:00,17:19:00,1657882,25, +24984997_256395,17:22:00,17:22:00,1536272,26, +24984998_256396,16:57:00,16:57:00,1474611,0, +24984998_256396,17:06:00,17:07:00,1474612,1, +24984998_256396,17:17:00,17:17:00,1474613,2, +24984998_256396,17:22:00,17:22:00,1474614,3, +24985006_256404,17:30:00,17:30:00,1536272,0, +24985006_256404,17:32:00,17:33:00,1657882,1, +24985006_256404,17:44:00,17:45:00,1536271,2, +24985006_256404,17:54:00,17:54:00,1474611,3, +24985006_256404,18:05:00,18:05:00,1474610,4, +24985006_256404,18:13:00,18:13:00,1474615,5, +24985006_256404,18:18:00,18:18:00,1474609,6, +24985006_256404,18:19:00,18:19:00,1474608,7, +24985006_256404,18:21:00,18:21:00,1474606,8, +24985006_256404,18:23:00,18:25:00,1474605,9, +24985006_256404,18:28:00,18:28:00,1474604,10, +24985006_256404,18:31:00,18:31:00,1474603,11, +24985006_256404,18:34:00,18:34:00,1474602,12, +24985006_256404,18:35:00,18:35:00,1474601,13, +24985006_256404,18:37:00,18:37:00,1474600,14, +24985006_256404,18:40:00,18:40:00,1474599,15, +24985006_256404,18:45:00,18:47:00,1474598,16, +24985006_256404,18:49:00,18:49:00,1474597,17, +24985006_256404,18:51:00,18:51:00,1474596,18, +24985006_256404,18:52:00,18:52:00,1474595,19, +24985006_256404,18:56:00,18:57:00,1474594,20, +24985006_256404,18:59:00,18:59:00,1474593,21, +24985006_256404,19:04:00,19:04:00,1474592,22, +24985006_256404,19:07:00,19:07:00,1474591,23, +24985006_256404,19:10:00,19:10:00,1474590,24, +24985006_256404,19:12:00,19:12:00,1474589,25, +24985006_256404,19:17:00,19:17:00,1474588,26, +24985007_256405,17:30:00,17:30:00,1474614,0, +24985007_256405,17:33:00,17:34:00,1474613,1, +24985007_256405,17:44:00,17:44:00,1474612,2, +24985007_256405,17:55:00,17:55:00,1474611,3, +24985011_256409,16:35:00,16:35:00,1474588,0, +24985011_256409,16:38:00,16:38:00,1474589,1, +24985011_256409,16:41:00,16:41:00,1474590,2, +24985011_256409,16:42:00,16:42:00,1474591,3, +24985011_256409,16:45:00,16:45:00,1474592,4, +24985011_256409,16:50:00,16:50:00,1474593,5, +24985011_256409,16:55:00,16:56:00,1474594,6, +24985011_256409,16:58:00,16:58:00,1474595,7, +24985011_256409,16:59:00,16:59:00,1474596,8, +24985011_256409,17:00:00,17:00:00,1474597,9, +24985011_256409,17:02:00,17:04:00,1474598,10, +24985011_256409,17:09:00,17:09:00,1474599,11, +24985011_256409,17:13:00,17:13:00,1474600,12, +24985011_256409,17:14:00,17:14:00,1474601,13, +24985011_256409,17:15:00,17:15:00,1474602,14, +24985011_256409,17:18:00,17:18:00,1474603,15, +24985011_256409,17:21:00,17:21:00,1474604,16, +24985011_256409,17:24:00,17:29:00,1474605,17, +24985011_256409,17:31:00,17:31:00,1474606,18, +24985011_256409,17:33:00,17:33:00,1474608,19, +24985011_256409,17:35:00,17:35:00,1474609,20, +24985011_256409,17:40:00,17:40:00,1474615,21, +24985011_256409,17:48:00,17:48:00,1474610,22, +24985011_256409,17:56:00,17:56:00,1474611,23, +24985011_256409,18:06:00,18:07:00,1536271,24, +24985011_256409,18:18:00,18:19:00,1657882,25, +24985011_256409,18:22:00,18:22:00,1536272,26, +24985012_256410,17:57:00,17:57:00,1474611,0, +24985012_256410,18:06:00,18:07:00,1474612,1, +24985012_256410,18:17:00,18:17:00,1474613,2, +24985012_256410,18:22:00,18:22:00,1474614,3, +24985020_256418,18:30:00,18:30:00,1536272,0, +24985020_256418,18:32:00,18:33:00,1657882,1, +24985020_256418,18:44:00,18:45:00,1536271,2, +24985020_256418,18:54:00,18:54:00,1474611,3, +24985020_256418,19:05:00,19:05:00,1474610,4, +24985020_256418,19:13:00,19:13:00,1474615,5, +24985020_256418,19:18:00,19:18:00,1474609,6, +24985020_256418,19:19:00,19:19:00,1474608,7, +24985020_256418,19:21:00,19:21:00,1474606,8, +24985020_256418,19:23:00,19:25:00,1474605,9, +24985020_256418,19:28:00,19:28:00,1474604,10, +24985020_256418,19:31:00,19:31:00,1474603,11, +24985020_256418,19:34:00,19:34:00,1474602,12, +24985020_256418,19:35:00,19:35:00,1474601,13, +24985020_256418,19:37:00,19:37:00,1474600,14, +24985020_256418,19:40:00,19:40:00,1474599,15, +24985020_256418,19:45:00,19:47:00,1474598,16, +24985020_256418,19:49:00,19:49:00,1474597,17, +24985020_256418,19:51:00,19:51:00,1474596,18, +24985020_256418,19:52:00,19:52:00,1474595,19, +24985020_256418,19:56:00,19:57:00,1474594,20, +24985020_256418,19:59:00,19:59:00,1474593,21, +24985020_256418,20:04:00,20:04:00,1474592,22, +24985020_256418,20:07:00,20:07:00,1474591,23, +24985020_256418,20:10:00,20:10:00,1474590,24, +24985020_256418,20:12:00,20:12:00,1474589,25, +24985020_256418,20:17:00,20:17:00,1474588,26, +24985021_256419,18:30:00,18:30:00,1474614,0, +24985021_256419,18:33:00,18:34:00,1474613,1, +24985021_256419,18:44:00,18:44:00,1474612,2, +24985021_256419,18:55:00,18:55:00,1474611,3, +24985025_256423,18:35:00,18:35:00,1474588,0, +24985025_256423,18:38:00,18:38:00,1474589,1, +24985025_256423,18:41:00,18:41:00,1474590,2, +24985025_256423,18:42:00,18:42:00,1474591,3, +24985025_256423,18:45:00,18:45:00,1474592,4, +24985025_256423,18:50:00,18:50:00,1474593,5, +24985025_256423,18:55:00,18:56:00,1474594,6, +24985025_256423,18:58:00,18:58:00,1474595,7, +24985025_256423,18:59:00,18:59:00,1474596,8, +24985025_256423,19:00:00,19:00:00,1474597,9, +24985025_256423,19:02:00,19:04:00,1474598,10, +24985025_256423,19:09:00,19:09:00,1474599,11, +24985025_256423,19:13:00,19:13:00,1474600,12, +24985025_256423,19:14:00,19:14:00,1474601,13, +24985025_256423,19:15:00,19:15:00,1474602,14, +24985025_256423,19:18:00,19:18:00,1474603,15, +24985025_256423,19:21:00,19:21:00,1474604,16, +24985025_256423,19:24:00,19:29:00,1474605,17, +24985025_256423,19:31:00,19:31:00,1474606,18, +24985025_256423,19:33:00,19:33:00,1474608,19, +24985025_256423,19:35:00,19:35:00,1474609,20, +24985025_256423,19:40:00,19:40:00,1474615,21, +24985025_256423,19:48:00,19:48:00,1474610,22, +24985025_256423,19:56:00,19:56:00,1474611,23, +24985025_256423,20:06:00,20:07:00,1536271,24, +24985025_256423,20:18:00,20:19:00,1657882,25, +24985025_256423,20:22:00,20:22:00,1536272,26, +24985026_256424,19:57:00,19:57:00,1474611,0, +24985026_256424,20:06:00,20:07:00,1474612,1, +24985026_256424,20:17:00,20:17:00,1474613,2, +24985026_256424,20:22:00,20:22:00,1474614,3, +24985033_256431,20:30:00,20:30:00,1536272,0, +24985033_256431,20:32:00,20:33:00,1657882,1, +24985033_256431,20:44:00,20:45:00,1536271,2, +24985033_256431,20:54:00,20:54:00,1474611,3, +24985033_256431,21:05:00,21:05:00,1474610,4, +24985033_256431,21:13:00,21:13:00,1474615,5, +24985033_256431,21:18:00,21:18:00,1474609,6, +24985033_256431,21:19:00,21:19:00,1474608,7, +24985033_256431,21:21:00,21:21:00,1474606,8, +24985033_256431,21:23:00,21:25:00,1474605,9, +24985033_256431,21:28:00,21:28:00,1474604,10, +24985033_256431,21:31:00,21:31:00,1474603,11, +24985033_256431,21:34:00,21:34:00,1474602,12, +24985033_256431,21:35:00,21:35:00,1474601,13, +24985033_256431,21:37:00,21:37:00,1474600,14, +24985033_256431,21:40:00,21:40:00,1474599,15, +24985033_256431,21:45:00,21:47:00,1474598,16, +24985033_256431,21:49:00,21:49:00,1474597,17, +24985033_256431,21:51:00,21:51:00,1474596,18, +24985033_256431,21:52:00,21:52:00,1474595,19, +24985033_256431,21:56:00,21:57:00,1474594,20, +24985033_256431,21:59:00,21:59:00,1474593,21, +24985033_256431,22:04:00,22:04:00,1474592,22, +24985033_256431,22:07:00,22:07:00,1474591,23, +24985033_256431,22:10:00,22:10:00,1474590,24, +24985033_256431,22:12:00,22:12:00,1474589,25, +24985033_256431,22:17:00,22:17:00,1474588,26, +24985034_256432,20:30:00,20:30:00,1474614,0, +24985034_256432,20:33:00,20:34:00,1474613,1, +24985034_256432,20:44:00,20:44:00,1474612,2, +24985034_256432,20:55:00,20:55:00,1474611,3, +24985038_256436,05:39:00,05:39:00,1474617,0, +24985038_256436,05:43:00,05:44:00,1474616,1, +24985038_256436,05:50:00,05:50:00,1474944,2, +24985038_256436,05:56:00,05:57:00,1474943,3, +24985038_256436,06:00:00,06:01:00,1474942,4, +24985038_256436,06:05:00,06:06:00,1474941,5, +24985038_256436,06:12:00,06:13:00,1474940,6, +24985038_256436,06:23:00,06:23:00,1474939,7, +24985038_256436,06:27:00,06:28:00,1474938,8, +24985038_256436,06:31:00,06:32:00,1474978,9, +24985038_256436,06:39:00,06:39:00,1474931,10, +24985038_256436,06:45:00,06:45:00,1474930,11, +24985038_256436,06:50:00,06:51:00,1474929,12, +24985038_256436,06:55:00,06:56:00,1474928,13, +24985038_256436,07:02:00,07:03:00,1474927,14, +24985038_256436,07:12:00,07:12:00,1474926,15, +24985038_256436,07:15:00,07:15:00,1474925,16, +24985039_256437,05:39:00,05:39:00,1474617,0, +24985039_256437,05:43:00,05:44:00,1474616,1, +24985039_256437,05:50:00,05:50:00,1474944,2, +24985039_256437,05:56:00,05:57:00,1474943,3, +24985039_256437,06:00:00,06:01:00,1474942,4, +24985039_256437,06:05:00,06:06:00,1474941,5, +24985039_256437,06:12:00,06:13:00,1474940,6, +24985039_256437,06:23:00,06:23:00,1474939,7, +24985039_256437,06:28:00,06:28:00,1474938,8, +24985039_256437,06:32:00,06:32:00,1474978,9, +24985039_256437,06:39:00,06:39:00,1474931,10, +24985039_256437,06:45:00,06:45:00,1474930,11, +24985039_256437,06:50:00,06:51:00,1474929,12, +24985039_256437,06:55:00,06:56:00,1474928,13, +24985039_256437,07:02:00,07:03:00,1474927,14, +24985039_256437,07:12:00,07:12:00,1474926,15, +24985039_256437,07:15:00,07:15:00,1474925,16, +24985043_256441,07:39:00,07:39:00,1474617,0, +24985043_256441,07:43:00,07:44:00,1474616,1, +24985043_256441,07:50:00,07:50:00,1474944,2, +24985043_256441,07:56:00,07:57:00,1474943,3, +24985043_256441,08:00:00,08:01:00,1474942,4, +24985043_256441,08:05:00,08:06:00,1474941,5, +24985043_256441,08:12:00,08:13:00,1474940,6, +24985043_256441,08:23:00,08:23:00,1474939,7, +24985043_256441,08:27:00,08:28:00,1474938,8, +24985043_256441,08:31:00,08:32:00,1474978,9, +24985043_256441,08:39:00,08:39:00,1474931,10, +24985043_256441,08:45:00,08:45:00,1474930,11, +24985043_256441,08:50:00,08:51:00,1474929,12, +24985043_256441,08:55:00,08:56:00,1475237,13, +24985043_256441,09:02:00,09:03:00,1474927,14, +24985043_256441,09:12:00,09:12:00,1474926,15, +24985043_256441,09:15:00,09:15:00,1474925,16, +24985044_256442,07:39:00,07:39:00,1474617,0, +24985044_256442,07:43:00,07:44:00,1474616,1, +24985044_256442,07:50:00,07:50:00,1474944,2, +24985044_256442,07:56:00,07:57:00,1474943,3, +24985044_256442,08:00:00,08:01:00,1474942,4, +24985044_256442,08:05:00,08:06:00,1474941,5, +24985044_256442,08:12:00,08:13:00,1474940,6, +24985044_256442,08:23:00,08:23:00,1474939,7, +24985044_256442,08:28:00,08:28:00,1474938,8, +24985044_256442,08:32:00,08:32:00,1474978,9, +24985044_256442,08:39:00,08:39:00,1474931,10, +24985044_256442,08:45:00,08:45:00,1474930,11, +24985044_256442,08:50:00,08:51:00,1474929,12, +24985044_256442,08:55:00,08:56:00,1475237,13, +24985044_256442,09:02:00,09:03:00,1474927,14, +24985044_256442,09:12:00,09:12:00,1474926,15, +24985044_256442,09:15:00,09:15:00,1474925,16, +24985048_256446,09:39:00,09:39:00,1474617,0, +24985048_256446,09:43:00,09:44:00,1474616,1, +24985048_256446,09:50:00,09:50:00,1474944,2, +24985048_256446,09:56:00,09:57:00,1474943,3, +24985048_256446,10:00:00,10:01:00,1474942,4, +24985048_256446,10:05:00,10:06:00,1474941,5, +24985048_256446,10:12:00,10:13:00,1474940,6, +24985048_256446,10:23:00,10:23:00,1474939,7, +24985048_256446,10:27:00,10:28:00,1474938,8, +24985048_256446,10:31:00,10:33:00,1474932,9, +24985048_256446,10:36:00,10:37:00,1474933,10, +24985048_256446,10:43:00,10:43:00,1474934,11, +24985048_256446,10:47:00,10:47:00,1474935,12, +24985048_256446,10:50:00,10:50:00,1474936,13, +24985048_256446,10:55:00,10:55:00,1474937,14, +24985049_256447,09:39:00,09:39:00,1474617,0, +24985049_256447,09:43:00,09:44:00,1474616,1, +24985049_256447,09:50:00,09:50:00,1474944,2, +24985049_256447,09:56:00,09:57:00,1474943,3, +24985049_256447,10:00:00,10:01:00,1474942,4, +24985049_256447,10:05:00,10:06:00,1474941,5, +24985049_256447,10:12:00,10:13:00,1474940,6, +24985049_256447,10:23:00,10:23:00,1474939,7, +24985049_256447,10:28:00,10:28:00,1474938,8, +24985049_256447,10:32:00,10:33:00,1474932,9, +24985049_256447,10:36:00,10:37:00,1474933,10, +24985049_256447,10:43:00,10:43:00,1474934,11, +24985049_256447,10:47:00,10:47:00,1474935,12, +24985049_256447,10:50:00,10:50:00,1474936,13, +24985049_256447,10:55:00,10:55:00,1474937,14, +24985053_256451,13:39:00,13:39:00,1474617,0, +24985053_256451,13:43:00,13:44:00,1474616,1, +24985053_256451,13:50:00,13:50:00,1474944,2, +24985053_256451,13:56:00,13:57:00,1474943,3, +24985053_256451,14:00:00,14:01:00,1474942,4, +24985053_256451,14:05:00,14:06:00,1474941,5, +24985053_256451,14:12:00,14:13:00,1474940,6, +24985053_256451,14:23:00,14:23:00,1474939,7, +24985053_256451,14:27:00,14:28:00,1474938,8, +24985053_256451,14:31:00,14:32:00,1474978,9, +24985053_256451,14:39:00,14:39:00,1474931,10, +24985053_256451,14:45:00,14:45:00,1474930,11, +24985053_256451,14:50:00,14:51:00,1474929,12, +24985053_256451,14:55:00,14:56:00,1475237,13, +24985053_256451,15:02:00,15:03:00,1474927,14, +24985053_256451,15:12:00,15:12:00,1474926,15, +24985053_256451,15:15:00,15:15:00,1474925,16, +24985054_256452,13:39:00,13:39:00,1474617,0, +24985054_256452,13:43:00,13:44:00,1474616,1, +24985054_256452,13:50:00,13:50:00,1474944,2, +24985054_256452,13:56:00,13:57:00,1474943,3, +24985054_256452,14:00:00,14:01:00,1474942,4, +24985054_256452,14:05:00,14:06:00,1474941,5, +24985054_256452,14:12:00,14:13:00,1474940,6, +24985054_256452,14:23:00,14:23:00,1474939,7, +24985054_256452,14:28:00,14:28:00,1474938,8, +24985054_256452,14:32:00,14:32:00,1474978,9, +24985054_256452,14:39:00,14:39:00,1474931,10, +24985054_256452,14:45:00,14:45:00,1474930,11, +24985054_256452,14:50:00,14:51:00,1474929,12, +24985054_256452,14:55:00,14:56:00,1475237,13, +24985054_256452,15:02:00,15:03:00,1474927,14, +24985054_256452,15:12:00,15:12:00,1474926,15, +24985054_256452,15:15:00,15:15:00,1474925,16, +24985058_256456,15:39:00,15:39:00,1474617,0, +24985058_256456,15:43:00,15:44:00,1474616,1, +24985058_256456,15:50:00,15:50:00,1474944,2, +24985058_256456,15:56:00,15:57:00,1474943,3, +24985058_256456,16:00:00,16:01:00,1474942,4, +24985058_256456,16:05:00,16:06:00,1474941,5, +24985058_256456,16:12:00,16:13:00,1474940,6, +24985058_256456,16:23:00,16:23:00,1474939,7, +24985058_256456,16:27:00,16:28:00,1474938,8, +24985058_256456,16:31:00,16:32:00,1474978,9, +24985058_256456,16:39:00,16:39:00,1474931,10, +24985058_256456,16:45:00,16:45:00,1474930,11, +24985058_256456,16:50:00,16:51:00,1474929,12, +24985058_256456,16:55:00,16:56:00,1475237,13, +24985058_256456,17:02:00,17:03:00,1474927,14, +24985058_256456,17:12:00,17:12:00,1474926,15, +24985058_256456,17:15:00,17:15:00,1474925,16, +24985059_256457,15:39:00,15:39:00,1474617,0, +24985059_256457,15:43:00,15:44:00,1474616,1, +24985059_256457,15:50:00,15:50:00,1474944,2, +24985059_256457,15:56:00,15:57:00,1474943,3, +24985059_256457,16:00:00,16:01:00,1474942,4, +24985059_256457,16:05:00,16:06:00,1474941,5, +24985059_256457,16:12:00,16:13:00,1474940,6, +24985059_256457,16:23:00,16:23:00,1474939,7, +24985059_256457,16:28:00,16:28:00,1474938,8, +24985059_256457,16:32:00,16:32:00,1474978,9, +24985059_256457,16:39:00,16:39:00,1474931,10, +24985059_256457,16:45:00,16:45:00,1474930,11, +24985059_256457,16:50:00,16:51:00,1474929,12, +24985059_256457,16:55:00,16:56:00,1475237,13, +24985059_256457,17:02:00,17:03:00,1474927,14, +24985059_256457,17:12:00,17:12:00,1474926,15, +24985059_256457,17:15:00,17:15:00,1474925,16, +24985063_256461,17:39:00,17:39:00,1474617,0, +24985063_256461,17:43:00,17:44:00,1474616,1, +24985063_256461,17:50:00,17:50:00,1474944,2, +24985063_256461,17:56:00,17:57:00,1474943,3, +24985063_256461,18:00:00,18:01:00,1474942,4, +24985063_256461,18:05:00,18:06:00,1474941,5, +24985063_256461,18:12:00,18:13:00,1474940,6, +24985063_256461,18:23:00,18:23:00,1474939,7, +24985063_256461,18:27:00,18:28:00,1474938,8, +24985063_256461,18:31:00,18:32:00,1474978,9, +24985063_256461,18:39:00,18:39:00,1474931,10, +24985063_256461,18:45:00,18:45:00,1474930,11, +24985063_256461,18:50:00,18:51:00,1474929,12, +24985063_256461,18:55:00,18:56:00,1474928,13, +24985063_256461,19:02:00,19:08:00,1474927,14, +24985063_256461,19:17:00,19:18:00,1474926,15, +24985063_256461,19:21:00,19:21:00,1474925,16, +24985064_256462,17:39:00,17:39:00,1474617,0, +24985064_256462,17:43:00,17:44:00,1474616,1, +24985064_256462,17:50:00,17:50:00,1474944,2, +24985064_256462,17:56:00,17:57:00,1474943,3, +24985064_256462,18:00:00,18:01:00,1474942,4, +24985064_256462,18:05:00,18:06:00,1474941,5, +24985064_256462,18:12:00,18:13:00,1474940,6, +24985064_256462,18:23:00,18:23:00,1474939,7, +24985064_256462,18:28:00,18:28:00,1474938,8, +24985064_256462,18:32:00,18:32:00,1474978,9, +24985064_256462,18:39:00,18:39:00,1474931,10, +24985064_256462,18:45:00,18:45:00,1474930,11, +24985064_256462,18:50:00,18:51:00,1474929,12, +24985064_256462,18:55:00,18:56:00,1474928,13, +24985064_256462,19:02:00,19:08:00,1474927,14, +24985064_256462,19:17:00,19:18:00,1474926,15, +24985064_256462,19:21:00,19:21:00,1474925,16, +24985072_256470,19:39:00,19:39:00,1474617,0, +24985072_256470,19:43:00,19:44:00,1474616,1, +24985072_256470,19:50:00,19:50:00,1474944,2, +24985072_256470,19:56:00,19:57:00,1474943,3, +24985072_256470,20:00:00,20:01:00,1474942,4, +24985072_256470,20:05:00,20:06:00,1474941,5, +24985072_256470,20:12:00,20:13:00,1474940,6, +24985072_256470,20:23:00,20:23:00,1474939,7, +24985072_256470,20:27:00,20:28:00,1474938,8, +24985072_256470,20:31:00,20:32:00,1474978,9, +24985072_256470,20:39:00,20:39:00,1474931,10, +24985072_256470,20:45:00,20:45:00,1474930,11, +24985072_256470,20:50:00,20:51:00,1474929,12, +24985072_256470,20:55:00,20:56:00,1474928,13, +24985072_256470,21:02:00,21:03:00,1474927,14, +24985072_256470,21:12:00,21:12:00,1474926,15, +24985072_256470,21:15:00,21:15:00,1474755,16, +24985073_256471,19:39:00,19:39:00,1474617,0, +24985073_256471,19:43:00,19:44:00,1474616,1, +24985073_256471,19:50:00,19:50:00,1474944,2, +24985073_256471,19:56:00,19:57:00,1474943,3, +24985073_256471,20:00:00,20:01:00,1474942,4, +24985073_256471,20:05:00,20:06:00,1474941,5, +24985073_256471,20:12:00,20:13:00,1474940,6, +24985073_256471,20:23:00,20:23:00,1474939,7, +24985073_256471,20:28:00,20:28:00,1474938,8, +24985073_256471,20:32:00,20:32:00,1474978,9, +24985077_256475,21:50:00,21:50:00,1474617,0, +24985077_256475,21:54:00,21:54:00,1475133,1, +24985077_256475,21:57:00,21:57:00,1475134,2, +24985077_256475,21:59:00,22:00:00,1475187,3, +24985077_256475,22:04:00,22:04:00,1475188,4, +24985077_256475,22:07:00,22:07:00,1475135,5, +24985077_256475,22:17:00,22:17:00,1475136,6, +24985078_256476,21:50:00,21:50:00,1474617,0, +24985078_256476,21:54:00,21:54:00,1475133,1, +24985078_256476,21:57:00,21:57:00,1475134,2, +24985078_256476,21:59:00,22:00:00,1475187,3, +24985078_256476,22:04:00,22:04:00,1475188,4, +24985078_256476,22:07:00,22:07:00,1475135,5, +24985078_256476,22:17:00,22:17:00,1474983,6, +24985082_256480,08:42:00,08:42:00,1475117,0, +24985082_256480,08:49:00,08:49:00,1475116,1, +24985082_256480,10:14:00,10:14:00,1475115,2, +24985082_256480,10:46:00,10:46:00,1475114,3, +24985082_256480,11:30:00,11:32:00,1474988,4, +24985082_256480,11:47:00,11:48:00,1474945,5, +24985082_256480,12:03:00,12:04:00,1474946,6, +24985082_256480,12:17:00,12:29:00,1609726,7, +24985082_256480,13:16:00,13:16:00,1474651,8, +24985083_256481,11:32:00,11:32:00,1474988,0, +24985083_256481,11:46:00,11:47:00,1474945,1, +24985083_256481,12:03:00,12:04:00,1474946,2, +24985083_256481,12:17:00,12:25:00,1474843,3, +24985083_256481,13:06:00,13:06:00,1474738,4, +24985084_256482,17:36:00,17:36:00,1474983,0, +24985084_256482,17:51:00,17:52:00,1474945,1, +24985084_256482,18:08:00,18:09:00,1474946,2, +24985084_256482,18:22:00,18:32:00,1609726,3, +24985084_256482,19:23:00,19:23:00,1474640,4, +24985085_256483,17:36:00,17:36:00,1474988,0, +24985085_256483,17:51:00,17:52:00,1609727,1, +24985085_256483,18:08:00,18:09:00,1475062,2, +24985085_256483,18:22:00,18:32:00,1474843,3, +24985085_256483,19:23:00,19:23:00,1474640,4, +24985086_256484,17:36:00,17:36:00,1474983,0, +24985086_256484,17:51:00,17:52:00,1474945,1, +24985086_256484,18:08:00,18:09:00,1474946,2, +24985086_256484,18:22:00,18:32:00,1609726,3, +24985086_256484,19:23:00,19:23:00,1474640,4, +24985091_256489,14:42:00,14:42:00,1475117,0, +24985091_256489,14:49:00,14:49:00,1475116,1, +24985091_256489,16:13:00,16:13:00,1475115,2, +24985091_256489,16:46:00,16:46:00,1475114,3, +24985091_256489,17:31:00,17:36:00,1474988,4, +24985091_256489,17:51:00,17:52:00,1474945,5, +24985091_256489,18:08:00,18:09:00,1474946,6, +24985091_256489,18:22:00,18:33:00,1609726,7, +24985091_256489,19:26:00,19:26:00,1536277,8, +24985093_256491,18:35:00,18:35:00,1475038,0, +24985093_256491,18:39:00,18:39:00,1475037,1, +24985093_256491,18:49:00,18:50:00,1475036,2, +24985093_256491,18:54:00,18:54:00,1475035,3, +24985093_256491,19:00:00,19:01:00,1475034,4, +24985093_256491,19:05:00,19:05:00,1475033,5, +24985093_256491,19:10:00,19:12:00,1475238,6, +24985093_256491,19:24:00,19:34:00,1475031,7, +24985093_256491,19:43:00,19:43:00,1475030,8, +24985093_256491,19:55:00,19:56:00,1475029,9, +24985093_256491,20:06:00,20:07:00,1475028,10, +24985093_256491,20:11:00,20:11:00,1475027,11, +24985093_256491,20:17:00,20:18:00,1475039,12, +24985093_256491,20:30:00,20:30:00,1475240,13, +24985093_256491,20:34:00,20:34:00,1474846,14, +24985093_256491,20:40:00,20:41:00,1609726,15, +24985093_256491,20:59:00,21:00:00,1474949,16, +24985093_256491,21:16:00,21:16:00,1474950,17, +24985093_256491,21:19:00,21:20:00,1474793,18, +24985093_256491,21:26:00,21:26:00,1536277,19, +24985094_256492,18:35:00,18:35:00,1475038,0, +24985094_256492,18:39:00,18:39:00,1475037,1, +24985094_256492,18:49:00,18:50:00,1475036,2, +24985094_256492,18:54:00,18:55:00,1475035,3, +24985094_256492,19:00:00,19:01:00,1475034,4, +24985094_256492,19:04:00,19:05:00,1475033,5, +24985094_256492,19:11:00,19:12:00,1475238,6, +24985094_256492,19:24:00,19:35:00,1475031,7, +24985094_256492,19:44:00,19:44:00,1475030,8, +24985094_256492,19:55:00,19:56:00,1475029,9, +24985094_256492,20:06:00,20:07:00,1475028,10, +24985094_256492,20:11:00,20:11:00,1475027,11, +24985094_256492,20:17:00,20:18:00,1475039,12, +24985094_256492,20:30:00,20:30:00,1475240,13, +24985094_256492,20:34:00,20:34:00,1474846,14, +24985094_256492,20:40:00,20:41:00,1609726,15, +24985094_256492,20:59:00,21:00:00,1474949,16, +24985094_256492,21:16:00,21:16:00,1474950,17, +24985094_256492,21:19:00,21:20:00,1474793,18, +24985094_256492,21:26:00,21:26:00,1474640,19, +24985096_256494,08:35:00,08:35:00,1475038,0, +24985096_256494,08:39:00,08:39:00,1475037,1, +24985096_256494,08:49:00,08:50:00,1475036,2, +24985096_256494,08:54:00,08:54:00,1475035,3, +24985096_256494,09:00:00,09:01:00,1475034,4, +24985096_256494,09:04:00,09:05:00,1475033,5, +24985096_256494,09:09:00,09:10:00,1475238,6, +24985096_256494,09:22:00,09:23:00,1475031,7, +24985096_256494,09:31:00,09:32:00,1475030,8, +24985096_256494,09:44:00,09:44:00,1475029,9, +24985096_256494,09:54:00,09:55:00,1475028,10, +24985096_256494,09:59:00,09:59:00,1475027,11, +24985096_256494,10:05:00,10:06:00,1475039,12, +24985096_256494,10:18:00,10:18:00,1475240,13, +24985096_256494,10:22:00,10:22:00,1474846,14, +24985096_256494,10:28:00,10:32:00,1609726,15, +24985096_256494,10:50:00,10:52:00,1474949,16, +24985096_256494,11:08:00,11:11:00,1474950,17, +24985096_256494,11:13:00,11:14:00,1474793,18, +24985096_256494,11:20:00,11:20:00,1536277,19, +24985097_256495,08:35:00,08:35:00,1475038,0, +24985097_256495,08:39:00,08:39:00,1475037,1, +24985097_256495,08:49:00,08:50:00,1475036,2, +24985097_256495,08:54:00,08:55:00,1475035,3, +24985097_256495,09:01:00,09:01:00,1475034,4, +24985097_256495,09:05:00,09:05:00,1475033,5, +24985097_256495,09:10:00,09:11:00,1475238,6, +24985097_256495,09:22:00,09:23:00,1475031,7, +24985097_256495,09:32:00,09:33:00,1475030,8, +24985097_256495,09:44:00,09:44:00,1475029,9, +24985097_256495,09:54:00,09:55:00,1475028,10, +24985097_256495,09:59:00,09:59:00,1475027,11, +24985097_256495,10:05:00,10:06:00,1475039,12, +24985097_256495,10:18:00,10:18:00,1475240,13, +24985097_256495,10:22:00,10:22:00,1474846,14, +24985097_256495,10:28:00,10:32:00,1609726,15, +24985097_256495,10:50:00,10:52:00,1474949,16, +24985097_256495,11:08:00,11:09:00,1474950,17, +24985097_256495,11:11:00,11:12:00,1474793,18, +24985097_256495,11:18:00,11:18:00,1474640,19, +24985107_256505,07:15:00,07:15:00,1474616,0, +24985107_256505,07:19:00,07:23:00,1474617,1, +24985107_256505,07:26:00,07:26:00,1474618,2, +24985107_256505,07:31:00,07:31:00,1474619,3, +24985107_256505,07:35:00,07:35:00,1474620,4, +24985107_256505,07:38:00,07:38:00,1474621,5, +24985107_256505,07:43:00,07:43:00,1474622,6, +24985107_256505,07:48:00,07:48:00,1474623,7, +24985107_256505,07:51:00,07:51:00,1474624,8, +24985107_256505,07:55:00,07:55:00,1474625,9, +24985107_256505,08:00:00,08:00:00,1474626,10, +24985107_256505,08:06:00,08:06:00,1474627,11, +24985107_256505,08:11:00,08:11:00,1474628,12, +24985107_256505,08:15:00,08:21:00,1474629,13, +24985107_256505,08:24:00,08:24:00,1474630,14, +24985107_256505,08:28:00,08:28:00,1474631,15, +24985107_256505,08:33:00,08:33:00,1474632,16, +24985107_256505,08:39:00,08:39:00,1474633,17, +24985107_256505,08:44:00,08:44:00,1474634,18, +24985107_256505,08:48:00,08:48:00,1474635,19, +24985107_256505,08:52:00,08:52:00,1474636,20, +24985107_256505,08:55:00,08:56:00,1474637,21, +24985107_256505,08:59:00,08:59:00,1474638,22, +24985107_256505,09:03:00,09:03:00,1474639,23, +24985108_256506,07:15:00,07:15:00,1474616,0, +24985108_256506,07:19:00,07:19:00,1474617,1, +24985116_256514,05:22:00,05:22:00,1474639,0, +24985116_256514,05:26:00,05:26:00,1474638,1, +24985116_256514,05:29:00,05:30:00,1474637,2, +24985116_256514,05:36:00,05:36:00,1474635,3, +24985116_256514,05:43:00,05:43:00,1474633,4, +24985116_256514,05:48:00,05:48:00,1474632,5, +24985116_256514,05:57:00,06:02:00,1474629,6, +24985116_256514,06:14:00,06:14:00,1474626,7, +24985116_256514,06:28:00,06:28:00,1474622,8, +24985116_256514,06:43:00,06:45:00,1474617,9, +24985116_256514,06:49:00,06:49:00,1474616,10, +24985117_256515,06:45:00,06:45:00,1474617,0, +24985117_256515,06:49:00,06:49:00,1474616,1, +24985122_256520,08:04:00,08:04:00,1474616,0, +24985122_256520,08:08:00,08:13:00,1474617,1, +24985122_256520,08:28:00,08:28:00,1474622,2, +24985122_256520,08:42:00,08:42:00,1474626,3, +24985122_256520,08:54:00,08:56:00,1474629,4, +24985122_256520,09:06:00,09:06:00,1474632,5, +24985122_256520,09:11:00,09:11:00,1474633,6, +24985122_256520,09:18:00,09:18:00,1474635,7, +24985122_256520,09:24:00,09:25:00,1474637,8, +24985122_256520,09:28:00,09:28:00,1474638,9, +24985122_256520,09:32:00,09:32:00,1474639,10, +24985125_256523,08:04:00,08:04:00,1474616,0, +24985125_256523,08:08:00,08:08:00,1474617,1, +24985130_256528,06:23:00,06:23:00,1474639,0, +24985130_256528,06:27:00,06:27:00,1474638,1, +24985130_256528,06:29:00,06:35:00,1474637,2, +24985130_256528,06:41:00,06:41:00,1474635,3, +24985130_256528,06:50:00,06:50:00,1474633,4, +24985130_256528,06:55:00,06:55:00,1474632,5, +24985130_256528,07:04:00,07:06:00,1474629,6, +24985130_256528,07:18:00,07:18:00,1474626,7, +24985130_256528,07:32:00,07:32:00,1474622,8, +24985130_256528,07:47:00,07:50:00,1474617,9, +24985130_256528,07:54:00,07:54:00,1474616,10, +24985133_256531,07:50:00,07:50:00,1474617,0, +24985133_256531,07:54:00,07:54:00,1474616,1, +24985138_256536,12:04:00,12:04:00,1474616,0, +24985138_256536,12:08:00,12:13:00,1474617,1, +24985138_256536,12:28:00,12:28:00,1474622,2, +24985138_256536,12:42:00,12:42:00,1474626,3, +24985138_256536,12:54:00,12:56:00,1474629,4, +24985138_256536,13:06:00,13:06:00,1474632,5, +24985138_256536,13:11:00,13:11:00,1474633,6, +24985138_256536,13:18:00,13:18:00,1474635,7, +24985138_256536,13:24:00,13:25:00,1474637,8, +24985138_256536,13:28:00,13:28:00,1474638,9, +24985138_256536,13:32:00,13:32:00,1474639,10, +24985141_256539,12:04:00,12:04:00,1474616,0, +24985141_256539,12:08:00,12:08:00,1474617,1, +24985146_256544,10:23:00,10:23:00,1474639,0, +24985146_256544,10:27:00,10:27:00,1474638,1, +24985146_256544,10:29:00,10:35:00,1474637,2, +24985146_256544,10:41:00,10:41:00,1474635,3, +24985146_256544,10:48:00,10:48:00,1474633,4, +24985146_256544,10:53:00,10:53:00,1474632,5, +24985146_256544,11:02:00,11:04:00,1474629,6, +24985146_256544,11:16:00,11:16:00,1474626,7, +24985146_256544,11:30:00,11:30:00,1474622,8, +24985146_256544,11:45:00,11:50:00,1474617,9, +24985146_256544,11:54:00,11:54:00,1474616,10, +24985149_256547,11:50:00,11:50:00,1474617,0, +24985149_256547,11:54:00,11:54:00,1474616,1, +24985157_256555,13:04:00,13:04:00,1474616,0, +24985157_256555,13:08:00,13:10:00,1474617,1, +24985157_256555,13:25:00,13:25:00,1474622,2, +24985157_256555,13:39:00,13:39:00,1474626,3, +24985157_256555,13:51:00,13:51:00,1474629,4, +24985158_256556,13:04:00,13:04:00,1474616,0, +24985158_256556,13:08:00,13:08:00,1474617,1, +24985168_256566,12:08:00,12:08:00,1474629,0, +24985168_256566,12:20:00,12:20:00,1474626,1, +24985168_256566,12:33:00,12:33:00,1474622,2, +24985168_256566,12:48:00,12:50:00,1474617,3, +24985168_256566,12:54:00,12:54:00,1474616,4, +24985169_256567,12:50:00,12:50:00,1474617,0, +24985169_256567,12:54:00,12:54:00,1474616,1, +24985171_256569,12:50:00,12:50:00,1474617,0, +24985171_256569,12:54:00,12:54:00,1474616,1, +24985176_256574,14:04:00,14:04:00,1474616,0, +24985176_256574,14:08:00,14:13:00,1474617,1, +24985176_256574,14:28:00,14:28:00,1474622,2, +24985176_256574,14:42:00,14:42:00,1474626,3, +24985176_256574,14:54:00,14:56:00,1474629,4, +24985176_256574,15:06:00,15:06:00,1474632,5, +24985176_256574,15:11:00,15:11:00,1474633,6, +24985176_256574,15:18:00,15:18:00,1474635,7, +24985176_256574,15:24:00,15:25:00,1474637,8, +24985176_256574,15:28:00,15:28:00,1474638,9, +24985176_256574,15:32:00,15:32:00,1474639,10, +24985179_256577,14:04:00,14:04:00,1474616,0, +24985179_256577,14:08:00,14:08:00,1474617,1, +24985184_256582,12:23:00,12:23:00,1474639,0, +24985184_256582,12:27:00,12:27:00,1474638,1, +24985184_256582,12:29:00,12:35:00,1474637,2, +24985184_256582,12:41:00,12:41:00,1474635,3, +24985184_256582,12:48:00,12:48:00,1474633,4, +24985184_256582,12:53:00,12:53:00,1474632,5, +24985184_256582,13:02:00,13:04:00,1474629,6, +24985184_256582,13:16:00,13:16:00,1474626,7, +24985184_256582,13:30:00,13:30:00,1474622,8, +24985184_256582,13:45:00,13:50:00,1474617,9, +24985184_256582,13:54:00,13:54:00,1474616,10, +24985187_256585,13:50:00,13:50:00,1474617,0, +24985187_256585,13:54:00,13:54:00,1474616,1, +24985200_256598,15:02:00,15:02:00,1474616,0, +24985200_256598,15:06:00,15:10:00,1474617,1, +24985200_256598,15:25:00,15:25:00,1474622,2, +24985200_256598,15:39:00,15:39:00,1474626,3, +24985200_256598,15:51:00,15:51:00,1474629,4, +24985201_256599,15:02:00,15:02:00,1474616,0, +24985201_256599,15:06:00,15:10:00,1474617,1, +24985201_256599,15:25:00,15:25:00,1474622,2, +24985201_256599,15:39:00,15:39:00,1474626,3, +24985201_256599,15:51:00,15:51:00,1474629,4, +24985202_256600,15:02:00,15:02:00,1474616,0, +24985202_256600,15:06:00,15:06:00,1474617,1, +24985203_256601,15:02:00,15:02:00,1474616,0, +24985203_256601,15:06:00,15:06:00,1474617,1, +24985212_256610,13:23:00,13:23:00,1474639,0, +24985212_256610,13:27:00,13:27:00,1474638,1, +24985212_256610,13:29:00,13:35:00,1474637,2, +24985212_256610,13:41:00,13:41:00,1474635,3, +24985212_256610,13:48:00,13:48:00,1474633,4, +24985212_256610,13:53:00,13:53:00,1474632,5, +24985212_256610,14:02:00,14:08:00,1474629,6, +24985212_256610,14:20:00,14:20:00,1474626,7, +24985212_256610,14:33:00,14:33:00,1474622,8, +24985212_256610,14:48:00,14:50:00,1474617,9, +24985212_256610,14:54:00,14:54:00,1474616,10, +24985213_256611,14:50:00,14:50:00,1474617,0, +24985213_256611,14:54:00,14:54:00,1474616,1, +24985218_256616,16:04:00,16:04:00,1474616,0, +24985218_256616,16:08:00,16:13:00,1474617,1, +24985218_256616,16:28:00,16:28:00,1474622,2, +24985218_256616,16:42:00,16:42:00,1474626,3, +24985218_256616,16:54:00,16:56:00,1474629,4, +24985218_256616,17:06:00,17:06:00,1474632,5, +24985218_256616,17:11:00,17:11:00,1474633,6, +24985218_256616,17:18:00,17:18:00,1474635,7, +24985218_256616,17:24:00,17:25:00,1474637,8, +24985218_256616,17:28:00,17:28:00,1474638,9, +24985218_256616,17:32:00,17:32:00,1474639,10, +24985221_256619,16:04:00,16:04:00,1474616,0, +24985221_256619,16:08:00,16:08:00,1474617,1, +24985226_256624,14:23:00,14:23:00,1474639,0, +24985226_256624,14:27:00,14:27:00,1474638,1, +24985226_256624,14:29:00,14:35:00,1474637,2, +24985226_256624,14:41:00,14:41:00,1474635,3, +24985226_256624,14:48:00,14:48:00,1474633,4, +24985226_256624,14:53:00,14:53:00,1474632,5, +24985226_256624,15:02:00,15:04:00,1474629,6, +24985226_256624,15:16:00,15:16:00,1474626,7, +24985226_256624,15:30:00,15:30:00,1474622,8, +24985226_256624,15:45:00,15:50:00,1474617,9, +24985226_256624,15:54:00,15:54:00,1474616,10, +24985229_256627,15:50:00,15:50:00,1474617,0, +24985229_256627,15:54:00,15:54:00,1474616,1, +24985237_256635,17:02:00,17:02:00,1474616,0, +24985237_256635,17:06:00,17:10:00,1474617,1, +24985237_256635,17:25:00,17:25:00,1474622,2, +24985237_256635,17:39:00,17:39:00,1474626,3, +24985237_256635,17:51:00,17:51:00,1474629,4, +24985238_256636,17:02:00,17:02:00,1474616,0, +24985238_256636,17:06:00,17:06:00,1474617,1, +24985247_256645,15:23:00,15:23:00,1474639,0, +24985247_256645,15:27:00,15:27:00,1474638,1, +24985247_256645,15:29:00,15:35:00,1474637,2, +24985247_256645,15:41:00,15:41:00,1474635,3, +24985247_256645,15:48:00,15:48:00,1474633,4, +24985247_256645,15:53:00,15:53:00,1474632,5, +24985247_256645,16:02:00,16:08:00,1474629,6, +24985247_256645,16:20:00,16:20:00,1474626,7, +24985247_256645,16:33:00,16:33:00,1474622,8, +24985247_256645,16:48:00,16:50:00,1474617,9, +24985247_256645,16:54:00,16:54:00,1474616,10, +24985248_256646,16:50:00,16:50:00,1474617,0, +24985248_256646,16:54:00,16:54:00,1474616,1, +24985258_256656,19:04:00,19:04:00,1474616,0, +24985258_256656,19:08:00,19:10:00,1474617,1, +24985258_256656,19:25:00,19:25:00,1474622,2, +24985258_256656,19:39:00,19:39:00,1474626,3, +24985258_256656,19:51:00,19:51:00,1474629,4, +24985259_256657,19:04:00,19:04:00,1474616,0, +24985259_256657,19:08:00,19:08:00,1474617,1, +24985261_256659,19:04:00,19:04:00,1474616,0, +24985261_256659,19:08:00,19:08:00,1474617,1, +24985270_256668,17:23:00,17:23:00,1474639,0, +24985270_256668,17:27:00,17:27:00,1474638,1, +24985270_256668,17:29:00,17:35:00,1474637,2, +24985270_256668,17:41:00,17:41:00,1474635,3, +24985270_256668,17:48:00,17:48:00,1474633,4, +24985270_256668,17:53:00,17:53:00,1474632,5, +24985270_256668,18:02:00,18:08:00,1474629,6, +24985270_256668,18:20:00,18:20:00,1474626,7, +24985270_256668,18:33:00,18:33:00,1474622,8, +24985270_256668,18:48:00,18:50:00,1474617,9, +24985270_256668,18:54:00,18:54:00,1474616,10, +24985271_256669,18:50:00,18:50:00,1474617,0, +24985271_256669,18:54:00,18:54:00,1474616,1, +24985275_256673,20:04:00,20:04:00,1474616,0, +24985275_256673,20:08:00,20:13:00,1474617,1, +24985275_256673,20:28:00,20:28:00,1474622,2, +24985275_256673,20:42:00,20:42:00,1474626,3, +24985275_256673,20:54:00,20:56:00,1474629,4, +24985275_256673,21:06:00,21:06:00,1474632,5, +24985275_256673,21:11:00,21:11:00,1474633,6, +24985275_256673,21:18:00,21:18:00,1474635,7, +24985275_256673,21:24:00,21:25:00,1474637,8, +24985275_256673,21:28:00,21:28:00,1474638,9, +24985275_256673,21:32:00,21:32:00,1474639,10, +24985280_256678,20:04:00,20:04:00,1474616,0, +24985280_256678,20:08:00,20:08:00,1474617,1, +24985285_256683,18:23:00,18:23:00,1474639,0, +24985285_256683,18:27:00,18:27:00,1474638,1, +24985285_256683,18:29:00,18:35:00,1474637,2, +24985285_256683,18:41:00,18:41:00,1474635,3, +24985285_256683,18:48:00,18:48:00,1474633,4, +24985285_256683,18:53:00,18:53:00,1474632,5, +24985285_256683,19:02:00,19:04:00,1474629,6, +24985285_256683,19:16:00,19:16:00,1474626,7, +24985285_256683,19:30:00,19:30:00,1474622,8, +24985285_256683,19:45:00,19:54:00,1474617,9, +24985285_256683,19:58:00,19:58:00,1474616,10, +24985288_256686,19:54:00,19:54:00,1474617,0, +24985288_256686,19:58:00,19:58:00,1474616,1, +24985292_256690,11:39:00,11:39:00,1474617,0, +24985292_256690,11:43:00,11:44:00,1474616,1, +24985292_256690,11:50:00,11:50:00,1474944,2, +24985292_256690,11:56:00,11:57:00,1474943,3, +24985292_256690,12:00:00,12:01:00,1474942,4, +24985292_256690,12:05:00,12:06:00,1474941,5, +24985292_256690,12:12:00,12:13:00,1474940,6, +24985292_256690,12:23:00,12:23:00,1474939,7, +24985292_256690,12:27:00,12:28:00,1474938,8, +24985292_256690,12:31:00,12:32:00,1474978,9, +24985292_256690,12:39:00,12:39:00,1474931,10, +24985292_256690,12:45:00,12:45:00,1474930,11, +24985292_256690,12:50:00,12:51:00,1474929,12, +24985292_256690,12:55:00,12:56:00,1474928,13, +24985292_256690,13:02:00,13:03:00,1474927,14, +24985292_256690,13:12:00,13:12:00,1474926,15, +24985292_256690,13:15:00,13:15:00,1474925,16, +24985293_256691,11:39:00,11:39:00,1474617,0, +24985293_256691,11:43:00,11:44:00,1474616,1, +24985293_256691,11:50:00,11:50:00,1474944,2, +24985293_256691,11:56:00,11:57:00,1474943,3, +24985293_256691,12:00:00,12:01:00,1474942,4, +24985293_256691,12:05:00,12:06:00,1474941,5, +24985293_256691,12:12:00,12:13:00,1474940,6, +24985293_256691,12:23:00,12:23:00,1474939,7, +24985293_256691,12:28:00,12:28:00,1474938,8, +24985293_256691,12:31:00,12:32:00,1474978,9, +24985293_256691,12:39:00,12:39:00,1474931,10, +24985293_256691,12:45:00,12:45:00,1474930,11, +24985293_256691,12:50:00,12:51:00,1474929,12, +24985293_256691,12:55:00,12:56:00,1474928,13, +24985293_256691,13:02:00,13:03:00,1474927,14, +24985293_256691,13:12:00,13:12:00,1474926,15, +24985293_256691,13:15:00,13:15:00,1474925,16, +24985298_256696,08:23:00,08:23:00,1474639,0, +24985298_256696,08:27:00,08:27:00,1474638,1, +24985298_256696,08:29:00,08:35:00,1474637,2, +24985298_256696,08:41:00,08:41:00,1474635,3, +24985298_256696,08:48:00,08:48:00,1474633,4, +24985298_256696,08:53:00,08:53:00,1474632,5, +24985298_256696,09:02:00,09:04:00,1474629,6, +24985298_256696,09:16:00,09:16:00,1474626,7, +24985298_256696,09:30:00,09:30:00,1474622,8, +24985298_256696,09:45:00,09:50:00,1474617,9, +24985298_256696,09:54:00,09:54:00,1474616,10, +24985301_256699,09:50:00,09:50:00,1474617,0, +24985301_256699,09:54:00,09:54:00,1474616,1, +24985307_256705,10:04:00,10:04:00,1474616,0, +24985307_256705,10:08:00,10:13:00,1474617,1, +24985307_256705,10:28:00,10:28:00,1474622,2, +24985307_256705,10:42:00,10:42:00,1474626,3, +24985307_256705,10:54:00,10:56:00,1474629,4, +24985307_256705,11:06:00,11:06:00,1474632,5, +24985307_256705,11:11:00,11:11:00,1474633,6, +24985307_256705,11:18:00,11:18:00,1474635,7, +24985307_256705,11:24:00,11:25:00,1474637,8, +24985307_256705,11:28:00,11:28:00,1474638,9, +24985307_256705,11:32:00,11:32:00,1474639,10, +24985310_256708,10:04:00,10:04:00,1474616,0, +24985310_256708,10:08:00,10:08:00,1474617,1, +24985311_256709,05:40:00,05:40:00,1474947,0, +24985311_256709,05:58:00,05:59:00,1474949,1, +24985311_256709,06:14:00,06:15:00,1474950,2, +24985311_256709,06:18:00,06:18:00,1474793,3, +24985311_256709,06:24:00,06:24:00,1536279,4, +24985315_256713,08:13:00,08:13:00,1536279,0, +24985315_256713,08:36:00,08:37:00,1474641,1, +24985315_256713,08:49:00,08:50:00,1474642,2, +24985315_256713,09:00:00,09:01:00,1474643,3, +24985315_256713,09:09:00,09:10:00,1474644,4, +24985315_256713,09:17:00,09:18:00,1474645,5, +24985315_256713,09:20:00,09:23:00,1474646,6, +24985315_256713,09:36:00,09:41:00,1474752,7, +24985315_256713,09:48:00,09:49:00,1474648,8, +24985315_256713,09:58:00,09:58:00,1474649,9, +24985315_256713,10:19:00,10:19:00,1474650,10, +24985316_256714,08:06:00,08:06:00,1474640,0, +24985316_256714,08:29:00,08:30:00,1474641,1, +24985316_256714,08:42:00,08:43:00,1474642,2, +24985316_256714,08:53:00,08:54:00,1474643,3, +24985316_256714,09:02:00,09:02:00,1474644,4, +24985316_256714,09:10:00,09:10:00,1474645,5, +24985316_256714,09:12:00,09:13:00,1474774,6, +24985316_256714,09:24:00,09:24:00,1474647,7, +24985316_256714,09:31:00,09:32:00,1474648,8, +24985316_256714,09:41:00,09:41:00,1474649,9, +24985316_256714,10:03:00,10:03:00,1474650,10, +24985319_256717,15:34:00,15:34:00,1474640,0, +24985319_256717,15:57:00,15:58:00,1474641,1, +24985319_256717,16:10:00,16:10:00,1474642,2, +24985319_256717,16:21:00,16:22:00,1474643,3, +24985319_256717,16:31:00,16:31:00,1474644,4, +24985319_256717,16:39:00,16:39:00,1474645,5, +24985319_256717,16:42:00,16:45:00,1474646,6, +24985319_256717,16:57:00,16:57:00,1474752,7, +24985319_256717,17:04:00,17:05:00,1474648,8, +24985319_256717,17:14:00,17:14:00,1874612,9, +24985319_256717,17:35:00,17:35:00,1474650,10, +24985320_256718,15:35:00,15:35:00,1474640,0, +24985320_256718,15:59:00,15:59:00,1474641,1, +24985320_256718,16:12:00,16:12:00,1474642,2, +24985320_256718,16:22:00,16:24:00,1474643,3, +24985320_256718,16:33:00,16:33:00,1474644,4, +24985320_256718,16:41:00,16:42:00,1474645,5, +24985320_256718,16:45:00,16:49:00,1474646,6, +24985320_256718,16:59:00,16:59:00,1474647,7, +24985320_256718,17:06:00,17:07:00,1474648,8, +24985320_256718,17:16:00,17:16:00,1874612,9, +24985320_256718,17:37:00,17:37:00,1474650,10, +24985322_256720,10:06:00,10:06:00,1474947,0, +24985322_256720,10:24:00,10:25:00,1474949,1, +24985322_256720,10:41:00,10:41:00,1474950,2, +24985322_256720,10:43:00,10:44:00,1474793,3, +24985322_256720,10:50:00,10:50:00,1474640,4, +24985323_256721,06:22:00,06:22:00,1474651,0, +24985323_256721,06:29:00,06:29:00,1474652,1, +24985323_256721,06:33:00,06:33:00,1474653,2, +24985323_256721,06:37:00,06:42:00,1474654,3, +24985323_256721,06:45:00,06:46:00,1474662,4, +24985323_256721,06:50:00,06:55:00,1474663,5, +24985323_256721,06:58:00,06:58:00,1474664,6, +24985323_256721,07:02:00,07:02:00,1474665,7, +24985323_256721,07:08:00,07:08:00,1474666,8, +24985323_256721,07:12:00,07:13:00,1474667,9, +24985323_256721,07:16:00,07:16:00,1474668,10, +24985323_256721,07:19:00,07:19:00,1764608,11, +24985323_256721,07:23:00,07:23:00,1474669,12, +24985323_256721,07:27:00,07:27:00,1474670,13, +24985323_256721,07:33:00,07:33:00,1474671,14, +24985323_256721,07:37:00,07:37:00,1474672,15, +24985323_256721,07:41:00,07:41:00,1474673,16, +24985325_256723,08:17:00,08:17:00,1474651,0, +24985325_256723,08:23:00,08:24:00,1474652,1, +24985325_256723,08:26:00,08:27:00,1474653,2, +24985325_256723,08:30:00,08:35:00,1474654,3, +24985325_256723,08:38:00,08:38:00,1474662,4, +24985325_256723,08:43:00,08:43:00,1474663,5, +24985326_256724,08:15:00,08:15:00,1474651,0, +24985326_256724,08:22:00,08:22:00,1474652,1, +24985326_256724,08:25:00,08:25:00,1474653,2, +24985326_256724,08:28:00,08:33:00,1474654,3, +24985326_256724,08:36:00,08:37:00,1474662,4, +24985326_256724,08:41:00,08:41:00,1474663,5, +24985328_256726,08:44:00,08:44:00,1474651,0, +24985328_256726,08:52:00,08:52:00,1474653,1, +24985328_256726,08:56:00,08:56:00,1474654,2, +24985328_256726,09:03:00,09:03:00,1474663,3, +24985328_256726,09:17:00,09:18:00,1474667,4, +24985328_256726,09:34:00,09:34:00,1474670,5, +24985328_256726,09:42:00,09:43:00,1474672,6, +24985328_256726,09:47:00,09:47:00,1474673,7, +24985329_256727,10:33:00,10:33:00,1474651,0, +24985329_256727,10:40:00,10:40:00,1474652,1, +24985329_256727,10:43:00,10:44:00,1474653,2, +24985329_256727,10:47:00,10:52:00,1474654,3, +24985329_256727,10:55:00,10:56:00,1474662,4, +24985329_256727,11:00:00,11:00:00,1474663,5, +24985331_256729,11:12:00,11:12:00,1474640,0, +24985331_256729,11:19:00,11:19:00,1474652,1, +24985331_256729,11:22:00,11:23:00,1474653,2, +24985331_256729,11:26:00,11:27:00,1474654,3, +24985331_256729,11:30:00,11:30:00,1474662,4, +24985331_256729,11:35:00,11:35:00,1474663,5, +24985331_256729,11:38:00,11:38:00,1474664,6, +24985331_256729,11:42:00,11:42:00,1474665,7, +24985331_256729,11:48:00,11:48:00,1474666,8, +24985331_256729,11:53:00,11:53:00,1474667,9, +24985331_256729,11:56:00,11:57:00,1474668,10, +24985331_256729,12:00:00,12:00:00,1764608,11, +24985331_256729,12:03:00,12:04:00,1474669,12, +24985331_256729,12:08:00,12:08:00,1474670,13, +24985331_256729,12:13:00,12:14:00,1474671,14, +24985331_256729,12:18:00,12:18:00,1474672,15, +24985331_256729,12:22:00,12:22:00,1474673,16, +24985332_256730,11:11:00,11:11:00,1474651,0, +24985332_256730,11:18:00,11:18:00,1474652,1, +24985332_256730,11:22:00,11:22:00,1474653,2, +24985332_256730,11:26:00,11:26:00,1474654,3, +24985332_256730,11:29:00,11:30:00,1474662,4, +24985332_256730,11:34:00,11:35:00,1474663,5, +24985332_256730,11:37:00,11:38:00,1474664,6, +24985332_256730,11:41:00,11:42:00,1474665,7, +24985332_256730,11:47:00,11:48:00,1474666,8, +24985332_256730,11:52:00,11:53:00,1474667,9, +24985332_256730,11:56:00,11:56:00,1474668,10, +24985332_256730,11:59:00,11:59:00,1764608,11, +24985332_256730,12:03:00,12:03:00,1474669,12, +24985332_256730,12:07:00,12:08:00,1474670,13, +24985332_256730,12:13:00,12:13:00,1474671,14, +24985332_256730,12:17:00,12:17:00,1474672,15, +24985332_256730,12:21:00,12:21:00,1474673,16, +24985333_256731,13:42:00,13:42:00,1474640,0, +24985333_256731,13:48:00,13:49:00,1474652,1, +24985333_256731,13:52:00,13:53:00,1474653,2, +24985333_256731,13:56:00,13:57:00,1474654,3, +24985333_256731,14:00:00,14:01:00,1474662,4, +24985333_256731,14:05:00,14:05:00,1474663,5, +24985333_256731,14:08:00,14:09:00,1474664,6, +24985333_256731,14:12:00,14:12:00,1474665,7, +24985333_256731,14:18:00,14:19:00,1474666,8, +24985333_256731,14:23:00,14:24:00,1474667,9, +24985333_256731,14:27:00,14:28:00,1474668,10, +24985333_256731,14:31:00,14:31:00,1764608,11, +24985333_256731,14:34:00,14:35:00,1474669,12, +24985333_256731,14:38:00,14:39:00,1474670,13, +24985333_256731,14:44:00,14:44:00,1474671,14, +24985333_256731,14:48:00,14:48:00,1474672,15, +24985333_256731,14:52:00,14:52:00,1474673,16, +24985334_256732,13:42:00,13:42:00,1474651,0, +24985334_256732,13:48:00,13:49:00,1474652,1, +24985334_256732,13:52:00,13:53:00,1474653,2, +24985334_256732,13:56:00,13:57:00,1474654,3, +24985334_256732,14:00:00,14:01:00,1474662,4, +24985334_256732,14:05:00,14:05:00,1474663,5, +24985334_256732,14:08:00,14:09:00,1474664,6, +24985334_256732,14:12:00,14:12:00,1474665,7, +24985334_256732,14:18:00,14:19:00,1474666,8, +24985334_256732,14:23:00,14:24:00,1474667,9, +24985334_256732,14:27:00,14:28:00,1474668,10, +24985334_256732,14:31:00,14:31:00,1764608,11, +24985334_256732,14:34:00,14:35:00,1474669,12, +24985334_256732,14:38:00,14:39:00,1474670,13, +24985334_256732,14:44:00,14:44:00,1474671,14, +24985334_256732,14:48:00,14:48:00,1474672,15, +24985334_256732,14:52:00,14:52:00,1474673,16, +24985335_256733,14:48:00,14:48:00,1474651,0, +24985335_256733,14:54:00,14:55:00,1474652,1, +24985335_256733,14:58:00,14:58:00,1474653,2, +24985335_256733,15:02:00,15:02:00,1474654,3, +24985335_256733,15:05:00,15:06:00,1474662,4, +24985335_256733,15:10:00,15:10:00,1474663,5, +24985335_256733,15:12:00,15:13:00,1474664,6, +24985335_256733,15:16:00,15:16:00,1474665,7, +24985335_256733,15:22:00,15:22:00,1474666,8, +24985335_256733,15:27:00,15:27:00,1474667,9, +24985335_256733,15:31:00,15:31:00,1474668,10, +24985337_256735,15:34:00,15:34:00,1474651,0, +24985337_256735,15:41:00,15:41:00,1474652,1, +24985337_256735,15:45:00,15:45:00,1474653,2, +24985337_256735,15:49:00,15:49:00,1474654,3, +24985337_256735,15:53:00,15:53:00,1474662,4, +24985337_256735,15:58:00,15:59:00,1474663,5, +24985337_256735,16:01:00,16:02:00,1474664,6, +24985337_256735,16:05:00,16:06:00,1474665,7, +24985337_256735,16:11:00,16:12:00,1474666,8, +24985337_256735,16:16:00,16:17:00,1474667,9, +24985337_256735,16:20:00,16:20:00,1474668,10, +24985337_256735,16:23:00,16:23:00,1764608,11, +24985337_256735,16:27:00,16:27:00,1474669,12, +24985337_256735,16:31:00,16:32:00,1474670,13, +24985337_256735,16:37:00,16:37:00,1474671,14, +24985337_256735,16:41:00,16:41:00,1474672,15, +24985337_256735,16:45:00,16:45:00,1474673,16, +24985339_256737,17:30:00,17:30:00,1474651,0, +24985339_256737,17:39:00,17:39:00,1474653,1, +24985339_256737,17:43:00,17:43:00,1474654,2, +24985339_256737,17:49:00,17:50:00,1474663,3, +24985339_256737,18:03:00,18:04:00,1474667,4, +24985339_256737,18:14:00,18:14:00,1474670,5, +24985339_256737,18:21:00,18:22:00,1474672,6, +24985339_256737,18:26:00,18:46:00,1474688,7, +24985339_256737,19:06:00,19:07:00,1474685,8, +24985339_256737,19:13:00,19:13:00,1474686,9, +24985339_256737,19:16:00,19:16:00,1474687,10, +24985340_256738,17:30:00,17:30:00,1474651,0, +24985340_256738,17:38:00,17:39:00,1474653,1, +24985340_256738,17:42:00,17:43:00,1474654,2, +24985340_256738,17:49:00,17:49:00,1474663,3, +24985340_256738,18:03:00,18:03:00,1474667,4, +24985340_256738,18:13:00,18:13:00,1474670,5, +24985340_256738,18:20:00,18:21:00,1474672,6, +24985340_256738,18:24:00,18:46:00,1474688,7, +24985340_256738,19:06:00,19:07:00,1474685,8, +24985340_256738,19:13:00,19:13:00,1474686,9, +24985340_256738,19:16:00,19:16:00,1474687,10, +24985344_256742,21:06:00,21:06:00,1474651,0, +24985344_256742,21:12:00,21:13:00,1474652,1, +24985344_256742,21:16:00,21:16:00,1474653,2, +24985344_256742,21:20:00,21:20:00,1474654,3, +24985344_256742,21:23:00,21:24:00,1474662,4, +24985344_256742,21:28:00,21:29:00,1474663,5, +24985344_256742,21:31:00,21:32:00,1474664,6, +24985344_256742,21:35:00,21:36:00,1474665,7, +24985344_256742,21:41:00,21:42:00,1474666,8, +24985344_256742,21:46:00,21:47:00,1474667,9, +24985344_256742,21:50:00,21:50:00,1474668,10, +24985344_256742,21:53:00,21:54:00,1764608,11, +24985344_256742,21:57:00,21:58:00,1474669,12, +24985344_256742,22:02:00,22:03:00,1474670,13, +24985344_256742,22:08:00,22:08:00,1474671,14, +24985344_256742,22:12:00,22:12:00,1474672,15, +24985344_256742,22:16:00,22:17:00,1474688,16, +24985344_256742,22:19:00,22:19:00,1474689,17, +24985344_256742,22:23:00,22:24:00,1474690,18, +24985344_256742,22:30:00,22:30:00,1474714,19, +24985345_256743,21:01:00,21:01:00,1474651,0, +24985345_256743,21:07:00,21:08:00,1474652,1, +24985345_256743,21:11:00,21:12:00,1474653,2, +24985345_256743,21:16:00,21:16:00,1474654,3, +24985345_256743,21:19:00,21:20:00,1474662,4, +24985345_256743,21:24:00,21:25:00,1474663,5, +24985345_256743,21:27:00,21:28:00,1474664,6, +24985345_256743,21:31:00,21:32:00,1474665,7, +24985345_256743,21:37:00,21:38:00,1474666,8, +24985345_256743,21:42:00,21:43:00,1474667,9, +24985345_256743,21:46:00,21:46:00,1474668,10, +24985345_256743,21:49:00,21:50:00,1764608,11, +24985345_256743,21:53:00,21:53:00,1474669,12, +24985345_256743,21:57:00,21:58:00,1474670,13, +24985345_256743,22:03:00,22:03:00,1474671,14, +24985345_256743,22:07:00,22:07:00,1474672,15, +24985345_256743,22:11:00,22:12:00,1474673,16, +24985345_256743,22:14:00,22:14:00,1474689,17, +24985345_256743,22:18:00,22:19:00,1474690,18, +24985345_256743,22:25:00,22:25:00,1474714,19, +24985346_256744,22:33:00,22:33:00,1474651,0, +24985346_256744,22:40:00,22:40:00,1474652,1, +24985346_256744,22:44:00,22:44:00,1474653,2, +24985346_256744,22:48:00,22:48:00,1474654,3, +24985346_256744,22:52:00,22:52:00,1474662,4, +24985346_256744,22:56:00,22:57:00,1474663,5, +24985346_256744,23:00:00,23:00:00,1474664,6, +24985346_256744,23:04:00,23:04:00,1474665,7, +24985346_256744,23:10:00,23:10:00,1474666,8, +24985346_256744,23:15:00,23:15:00,1474667,9, +24985346_256744,23:18:00,23:19:00,1474668,10, +24985346_256744,23:22:00,23:22:00,1764608,11, +24985346_256744,23:25:00,23:26:00,1474669,12, +24985346_256744,23:29:00,23:30:00,1474670,13, +24985346_256744,23:35:00,23:36:00,1474671,14, +24985346_256744,23:39:00,23:40:00,1474672,15, +24985346_256744,23:43:00,23:53:00,1474673,16, +24985346_256744,24:01:00,24:02:00,1474695,17, +24985346_256744,24:07:00,24:07:00,1474684,18, +24985346_256744,24:16:00,24:17:00,1474685,19, +24985346_256744,24:23:00,24:23:00,1474686,20, +24985346_256744,24:26:00,24:26:00,1474687,21, +24985347_256745,22:31:00,22:31:00,1474651,0, +24985347_256745,22:38:00,22:38:00,1474652,1, +24985347_256745,22:42:00,22:42:00,1474653,2, +24985347_256745,22:46:00,22:46:00,1474654,3, +24985347_256745,22:50:00,22:50:00,1474662,4, +24985347_256745,22:54:00,22:55:00,1474663,5, +24985347_256745,22:58:00,22:58:00,1474664,6, +24985347_256745,23:02:00,23:02:00,1474665,7, +24985347_256745,23:08:00,23:08:00,1474666,8, +24985347_256745,23:13:00,23:13:00,1474667,9, +24985347_256745,23:16:00,23:17:00,1474668,10, +24985347_256745,23:20:00,23:20:00,1764608,11, +24985347_256745,23:23:00,23:24:00,1474669,12, +24985347_256745,23:27:00,23:28:00,1474670,13, +24985347_256745,23:33:00,23:34:00,1474671,14, +24985347_256745,23:37:00,23:38:00,1474672,15, +24985347_256745,23:41:00,23:51:00,1474688,16, +24985347_256745,23:59:00,24:00:00,1474695,17, +24985347_256745,24:05:00,24:05:00,1474684,18, +24985347_256745,24:14:00,24:15:00,1474685,19, +24985347_256745,24:21:00,24:21:00,1474686,20, +24985347_256745,24:24:00,24:24:00,1474687,21, +24985349_256747,10:57:00,10:57:00,1474673,0, +24985349_256747,11:00:00,11:00:00,1474672,1, +24985349_256747,11:07:00,11:08:00,1474670,2, +24985349_256747,11:18:00,11:18:00,1474667,3, +24985349_256747,11:31:00,11:37:00,1474663,4, +24985349_256747,11:43:00,11:44:00,1474698,5, +24985349_256747,11:47:00,11:47:00,1474699,6, +24985349_256747,11:57:00,11:57:00,1474651,7, +24985350_256748,10:57:00,10:57:00,1474673,0, +24985350_256748,11:00:00,11:00:00,1474672,1, +24985350_256748,11:07:00,11:08:00,1474670,2, +24985350_256748,11:18:00,11:18:00,1474667,3, +24985350_256748,11:31:00,11:36:00,1474663,4, +24985350_256748,11:43:00,11:43:00,1474698,5, +24985350_256748,11:47:00,11:47:00,1474699,6, +24985350_256748,11:57:00,11:57:00,1474651,7, +24985352_256750,03:52:00,03:52:00,1474691,0, +24985352_256750,03:57:00,03:58:00,1474696,1, +24985352_256750,04:01:00,04:02:00,1474697,2, +24985352_256750,04:06:00,04:07:00,1474688,3, +24985352_256750,04:10:00,04:10:00,1474672,4, +24985352_256750,04:13:00,04:14:00,1474671,5, +24985352_256750,04:19:00,04:19:00,1474670,6, +24985352_256750,04:23:00,04:23:00,1474669,7, +24985352_256750,04:26:00,04:26:00,1764608,8, +24985352_256750,04:30:00,04:30:00,1474668,9, +24985352_256750,04:33:00,04:33:00,1474667,10, +24985352_256750,04:37:00,04:38:00,1474666,11, +24985352_256750,04:44:00,04:44:00,1474665,12, +24985352_256750,04:48:00,04:48:00,1474664,13, +24985352_256750,04:51:00,04:51:00,1474663,14, +24985352_256750,04:56:00,04:56:00,1474662,15, +24985352_256750,04:59:00,05:04:00,1474698,16, +24985352_256750,05:08:00,05:08:00,1474699,17, +24985352_256750,05:12:00,05:12:00,1474700,18, +24985352_256750,05:20:00,05:37:00,1474861,19, +24985352_256750,05:42:00,05:43:00,1474701,20, +24985352_256750,05:45:00,05:46:00,1474702,21, +24985352_256750,05:48:00,05:49:00,1474703,22, +24985352_256750,05:53:00,05:54:00,1474704,23, +24985352_256750,05:57:00,05:58:00,1474705,24, +24985352_256750,06:00:00,06:00:00,1474706,25, +24985352_256750,06:02:00,06:03:00,1474707,26, +24985352_256750,06:06:00,06:06:00,1474708,27, +24985352_256750,06:09:00,06:09:00,1474709,28, +24985352_256750,06:12:00,06:13:00,1474710,29, +24985352_256750,06:16:00,06:16:00,1474711,30, +24985352_256750,06:19:00,06:19:00,1474712,31, +24985352_256750,06:24:00,06:24:00,1474713,32, +24985353_256751,03:52:00,03:52:00,1474691,0, +24985353_256751,03:57:00,03:58:00,1474696,1, +24985353_256751,04:01:00,04:02:00,1474697,2, +24985353_256751,04:06:00,04:07:00,1474688,3, +24985353_256751,04:10:00,04:10:00,1474672,4, +24985353_256751,04:13:00,04:14:00,1474671,5, +24985353_256751,04:19:00,04:19:00,1474670,6, +24985353_256751,04:23:00,04:23:00,1474669,7, +24985353_256751,04:26:00,04:26:00,1764608,8, +24985353_256751,04:30:00,04:30:00,1474668,9, +24985353_256751,04:33:00,04:33:00,1474667,10, +24985353_256751,04:37:00,04:38:00,1474666,11, +24985353_256751,04:44:00,04:44:00,1474665,12, +24985353_256751,04:48:00,04:48:00,1474664,13, +24985353_256751,04:51:00,04:51:00,1474663,14, +24985353_256751,04:56:00,04:56:00,1474662,15, +24985353_256751,04:59:00,05:04:00,1474698,16, +24985353_256751,05:08:00,05:08:00,1474699,17, +24985353_256751,05:12:00,05:12:00,1474700,18, +24985353_256751,05:20:00,05:37:00,1474640,19, +24985353_256751,05:42:00,05:43:00,1474701,20, +24985353_256751,05:45:00,05:46:00,1474702,21, +24985353_256751,05:48:00,05:49:00,1474703,22, +24985353_256751,05:53:00,05:54:00,1474704,23, +24985353_256751,05:57:00,05:57:00,1474705,24, +24985353_256751,05:59:00,06:00:00,1474706,25, +24985353_256751,06:02:00,06:02:00,1474707,26, +24985353_256751,06:05:00,06:06:00,1474708,27, +24985353_256751,06:08:00,06:09:00,1474709,28, +24985353_256751,06:12:00,06:12:00,1474710,29, +24985353_256751,06:15:00,06:15:00,1474711,30, +24985353_256751,06:18:00,06:18:00,1474712,31, +24985353_256751,06:23:00,06:23:00,1474713,32, +24985354_256752,04:56:00,04:56:00,1474691,0, +24985354_256752,05:01:00,05:02:00,1474696,1, +24985354_256752,05:06:00,05:06:00,1474697,2, +24985354_256752,05:10:00,05:11:00,1474688,3, +24985354_256752,05:14:00,05:15:00,1474672,4, +24985354_256752,05:18:00,05:18:00,1474671,5, +24985354_256752,05:23:00,05:24:00,1474670,6, +24985354_256752,05:28:00,05:28:00,1474669,7, +24985354_256752,05:31:00,05:31:00,1764608,8, +24985354_256752,05:35:00,05:35:00,1474668,9, +24985354_256752,05:38:00,05:39:00,1474667,10, +24985354_256752,05:43:00,05:43:00,1474666,11, +24985354_256752,05:49:00,05:49:00,1474665,12, +24985354_256752,05:53:00,05:53:00,1474664,13, +24985354_256752,05:56:00,05:56:00,1474663,14, +24985354_256752,06:00:00,06:01:00,1474662,15, +24985354_256752,06:04:00,06:04:00,1474698,16, +24985354_256752,06:08:00,06:08:00,1474699,17, +24985354_256752,06:12:00,06:12:00,1474700,18, +24985354_256752,06:20:00,06:20:00,1474640,19, +24985355_256753,04:56:00,04:56:00,1474691,0, +24985355_256753,05:01:00,05:02:00,1474696,1, +24985355_256753,05:06:00,05:06:00,1474697,2, +24985355_256753,05:10:00,05:11:00,1474688,3, +24985355_256753,05:14:00,05:15:00,1474672,4, +24985355_256753,05:18:00,05:18:00,1474671,5, +24985355_256753,05:23:00,05:24:00,1474670,6, +24985355_256753,05:28:00,05:28:00,1474669,7, +24985355_256753,05:31:00,05:31:00,1764608,8, +24985355_256753,05:35:00,05:35:00,1474668,9, +24985355_256753,05:38:00,05:39:00,1474667,10, +24985355_256753,05:43:00,05:43:00,1474666,11, +24985355_256753,05:49:00,05:49:00,1474665,12, +24985355_256753,05:53:00,05:53:00,1474664,13, +24985355_256753,05:56:00,05:56:00,1474663,14, +24985355_256753,06:00:00,06:01:00,1474662,15, +24985355_256753,06:04:00,06:04:00,1474698,16, +24985355_256753,06:08:00,06:08:00,1474699,17, +24985355_256753,06:12:00,06:12:00,1474700,18, +24985355_256753,06:20:00,06:20:00,1474651,19, +24985356_256754,04:28:00,04:28:00,1474687,0, +24985356_256754,04:30:00,04:30:00,1474686,1, +24985356_256754,04:37:00,04:40:00,1474685,2, +24985356_256754,04:49:00,04:49:00,1474684,3, +24985356_256754,04:54:00,04:55:00,1474695,4, +24985356_256754,05:03:00,05:11:00,1474673,5, +24985356_256754,05:14:00,05:15:00,1474672,6, +24985356_256754,05:18:00,05:18:00,1474671,7, +24985356_256754,05:23:00,05:24:00,1474670,8, +24985356_256754,05:28:00,05:28:00,1474669,9, +24985356_256754,05:31:00,05:31:00,1764608,10, +24985356_256754,05:35:00,05:35:00,1474668,11, +24985356_256754,05:38:00,05:39:00,1474667,12, +24985356_256754,05:43:00,05:43:00,1474666,13, +24985356_256754,05:49:00,05:49:00,1474665,14, +24985356_256754,05:53:00,05:53:00,1474664,15, +24985356_256754,05:56:00,05:56:00,1474663,16, +24985356_256754,06:00:00,06:01:00,1474662,17, +24985356_256754,06:04:00,06:04:00,1474698,18, +24985356_256754,06:08:00,06:08:00,1474699,19, +24985356_256754,06:12:00,06:12:00,1474700,20, +24985356_256754,06:20:00,06:20:00,1474640,21, +24985357_256755,04:28:00,04:28:00,1474687,0, +24985357_256755,04:30:00,04:30:00,1474686,1, +24985357_256755,04:37:00,04:40:00,1474685,2, +24985357_256755,04:49:00,04:49:00,1474684,3, +24985357_256755,04:54:00,04:55:00,1474695,4, +24985357_256755,05:03:00,05:11:00,1474673,5, +24985357_256755,05:14:00,05:15:00,1474672,6, +24985357_256755,05:18:00,05:18:00,1474671,7, +24985357_256755,05:23:00,05:24:00,1474670,8, +24985357_256755,05:28:00,05:28:00,1474669,9, +24985357_256755,05:31:00,05:31:00,1764608,10, +24985357_256755,05:35:00,05:35:00,1474668,11, +24985357_256755,05:38:00,05:39:00,1474667,12, +24985357_256755,05:43:00,05:43:00,1474666,13, +24985357_256755,05:49:00,05:49:00,1474665,14, +24985357_256755,05:53:00,05:53:00,1474664,15, +24985357_256755,05:56:00,05:56:00,1474663,16, +24985357_256755,06:00:00,06:01:00,1474662,17, +24985357_256755,06:04:00,06:04:00,1474698,18, +24985357_256755,06:08:00,06:08:00,1474699,19, +24985357_256755,06:12:00,06:12:00,1474700,20, +24985357_256755,06:20:00,06:20:00,1474651,21, +24985358_256756,06:09:00,06:09:00,1474668,0, +24985358_256756,06:12:00,06:13:00,1474667,1, +24985358_256756,06:17:00,06:17:00,1474666,2, +24985358_256756,06:23:00,06:23:00,1474665,3, +24985358_256756,06:27:00,06:27:00,1474664,4, +24985358_256756,06:30:00,06:32:00,1474663,5, +24985358_256756,06:36:00,06:37:00,1474662,6, +24985358_256756,06:40:00,06:41:00,1474698,7, +24985358_256756,06:45:00,06:45:00,1474699,8, +24985358_256756,06:49:00,06:50:00,1474700,9, +24985358_256756,06:58:00,06:58:00,1474640,10, +24985359_256757,06:09:00,06:09:00,1474668,0, +24985359_256757,06:12:00,06:13:00,1474667,1, +24985359_256757,06:17:00,06:17:00,1474666,2, +24985359_256757,06:23:00,06:23:00,1474665,3, +24985359_256757,06:27:00,06:27:00,1474664,4, +24985359_256757,06:30:00,06:32:00,1474663,5, +24985359_256757,06:36:00,06:37:00,1474662,6, +24985359_256757,06:40:00,06:41:00,1474698,7, +24985359_256757,06:45:00,06:45:00,1474699,8, +24985359_256757,06:49:00,06:50:00,1474700,9, +24985359_256757,06:58:00,06:58:00,1474651,10, +24985362_256760,05:11:00,05:11:00,1474715,0, +24985362_256760,05:19:00,05:20:00,1845555,1, +24985362_256760,05:23:00,05:23:00,1474717,2, +24985362_256760,05:27:00,05:28:00,1474718,3, +24985362_256760,05:33:00,05:33:00,1474719,4, +24985362_256760,05:40:00,05:51:00,1474720,5, +24985362_256760,05:56:00,05:56:00,1474696,6, +24985362_256760,06:00:00,06:01:00,1474697,7, +24985362_256760,06:05:00,06:09:00,1474688,8, +24985362_256760,06:12:00,06:12:00,1474672,9, +24985362_256760,06:15:00,06:16:00,1474671,10, +24985362_256760,06:21:00,06:21:00,1474670,11, +24985362_256760,06:25:00,06:25:00,1474669,12, +24985362_256760,06:28:00,06:28:00,1764608,13, +24985362_256760,06:32:00,06:32:00,1474668,14, +24985362_256760,06:35:00,06:36:00,1474667,15, +24985362_256760,06:40:00,06:40:00,1474666,16, +24985362_256760,06:46:00,06:47:00,1474665,17, +24985362_256760,06:50:00,06:51:00,1474664,18, +24985362_256760,06:53:00,06:54:00,1474663,19, +24985362_256760,06:58:00,06:59:00,1474662,20, +24985362_256760,07:02:00,07:02:00,1474698,21, +24985362_256760,07:05:00,07:06:00,1474699,22, +24985362_256760,07:09:00,07:10:00,1474700,23, +24985362_256760,07:18:00,07:18:00,1536279,24, +24985363_256761,05:11:00,05:11:00,1474715,0, +24985363_256761,05:20:00,05:20:00,1845555,1, +24985363_256761,05:23:00,05:24:00,1474717,2, +24985363_256761,05:28:00,05:28:00,1474718,3, +24985363_256761,05:33:00,05:34:00,1474719,4, +24985363_256761,05:40:00,05:52:00,1474720,5, +24985363_256761,05:57:00,05:57:00,1474696,6, +24985363_256761,06:01:00,06:02:00,1474697,7, +24985363_256761,06:06:00,06:09:00,1474688,8, +24985363_256761,06:12:00,06:12:00,1474672,9, +24985363_256761,06:15:00,06:16:00,1474671,10, +24985363_256761,06:21:00,06:21:00,1474670,11, +24985363_256761,06:25:00,06:25:00,1474669,12, +24985363_256761,06:28:00,06:29:00,1764608,13, +24985363_256761,06:32:00,06:32:00,1474668,14, +24985363_256761,06:35:00,06:36:00,1474667,15, +24985363_256761,06:40:00,06:40:00,1474666,16, +24985363_256761,06:46:00,06:47:00,1474665,17, +24985363_256761,06:50:00,06:51:00,1474664,18, +24985363_256761,06:53:00,06:54:00,1474663,19, +24985363_256761,06:58:00,06:58:00,1474662,20, +24985363_256761,07:01:00,07:02:00,1474698,21, +24985363_256761,07:05:00,07:06:00,1474699,22, +24985363_256761,07:09:00,07:09:00,1474700,23, +24985363_256761,07:17:00,07:17:00,1474651,24, +24985365_256763,07:51:00,07:51:00,1474673,0, +24985365_256763,07:54:00,07:54:00,1474672,1, +24985365_256763,08:01:00,08:02:00,1474670,2, +24985365_256763,08:12:00,08:12:00,1474667,3, +24985365_256763,08:25:00,08:26:00,1474663,4, +24985365_256763,08:33:00,08:33:00,1474698,5, +24985365_256763,08:37:00,08:37:00,1474699,6, +24985365_256763,08:47:00,09:16:00,1474640,7, +24985365_256763,09:20:00,09:21:00,1474701,8, +24985365_256763,09:24:00,09:25:00,1474702,9, +24985365_256763,09:27:00,09:31:00,1474703,10, +24985365_256763,09:35:00,09:36:00,1474704,11, +24985365_256763,09:40:00,09:41:00,1474705,12, +24985365_256763,09:43:00,09:43:00,1474706,13, +24985365_256763,09:45:00,09:46:00,1474707,14, +24985365_256763,09:49:00,09:49:00,1474708,15, +24985365_256763,09:52:00,09:52:00,1474709,16, +24985365_256763,09:55:00,09:56:00,1474710,17, +24985365_256763,09:59:00,09:59:00,1474711,18, +24985365_256763,10:02:00,10:02:00,1474712,19, +24985365_256763,10:07:00,10:07:00,1474713,20, +24985366_256764,07:51:00,07:51:00,1474673,0, +24985366_256764,07:54:00,07:54:00,1474672,1, +24985366_256764,08:01:00,08:02:00,1474670,2, +24985366_256764,08:11:00,08:12:00,1474667,3, +24985366_256764,08:25:00,08:25:00,1474663,4, +24985366_256764,08:31:00,08:32:00,1474698,5, +24985366_256764,08:35:00,08:36:00,1474699,6, +24985366_256764,08:46:00,09:04:00,1474861,7, +24985366_256764,09:08:00,09:09:00,1474701,8, +24985366_256764,09:11:00,09:12:00,1474702,9, +24985366_256764,09:14:00,09:15:00,1474703,10, +24985366_256764,09:19:00,09:20:00,1474704,11, +24985366_256764,09:23:00,09:24:00,1474705,12, +24985366_256764,09:26:00,09:26:00,1474706,13, +24985366_256764,09:28:00,09:29:00,1474707,14, +24985366_256764,09:32:00,09:32:00,1474708,15, +24985366_256764,09:35:00,09:35:00,1474709,16, +24985366_256764,09:38:00,09:39:00,1474710,17, +24985366_256764,09:42:00,09:42:00,1474711,18, +24985366_256764,09:45:00,09:45:00,1474712,19, +24985366_256764,09:50:00,09:50:00,1474713,20, +24985368_256766,07:51:00,07:51:00,1474673,0, +24985368_256766,07:54:00,07:54:00,1474672,1, +24985368_256766,08:01:00,08:02:00,1474670,2, +24985368_256766,08:12:00,08:12:00,1474667,3, +24985368_256766,08:25:00,08:26:00,1474663,4, +24985368_256766,08:33:00,08:33:00,1474698,5, +24985368_256766,08:37:00,08:37:00,1474699,6, +24985368_256766,08:47:00,08:47:00,1474640,7, +24985369_256767,07:51:00,07:51:00,1474673,0, +24985369_256767,07:54:00,07:54:00,1474672,1, +24985369_256767,08:01:00,08:02:00,1474670,2, +24985369_256767,08:11:00,08:12:00,1474667,3, +24985369_256767,08:25:00,08:25:00,1474663,4, +24985369_256767,08:31:00,08:32:00,1474698,5, +24985369_256767,08:35:00,08:36:00,1474699,6, +24985369_256767,08:46:00,08:46:00,1474640,7, +24985371_256769,09:04:00,09:04:00,1474663,0, +24985371_256769,09:08:00,09:09:00,1474662,1, +24985371_256769,09:12:00,09:12:00,1474698,2, +24985371_256769,09:15:00,09:16:00,1474699,3, +24985371_256769,09:19:00,09:19:00,1474700,4, +24985371_256769,09:27:00,09:27:00,1474651,5, +24985372_256770,09:04:00,09:04:00,1474663,0, +24985372_256770,09:08:00,09:09:00,1474662,1, +24985372_256770,09:12:00,09:12:00,1474698,2, +24985372_256770,09:15:00,09:16:00,1474699,3, +24985372_256770,09:19:00,09:19:00,1474700,4, +24985372_256770,09:28:00,09:28:00,1474640,5, +24985373_256771,09:01:00,09:01:00,1474673,0, +24985373_256771,09:04:00,09:04:00,1474672,1, +24985373_256771,09:07:00,09:08:00,1474671,2, +24985373_256771,09:13:00,09:13:00,1474670,3, +24985373_256771,09:17:00,09:17:00,1474669,4, +24985373_256771,09:20:00,09:20:00,1764608,5, +24985373_256771,09:24:00,09:24:00,1474668,6, +24985373_256771,09:27:00,09:27:00,1474667,7, +24985373_256771,09:31:00,09:32:00,1474666,8, +24985373_256771,09:38:00,09:38:00,1474665,9, +24985373_256771,09:42:00,09:42:00,1474664,10, +24985373_256771,09:45:00,09:45:00,1474663,11, +24985373_256771,09:49:00,09:50:00,1474662,12, +24985373_256771,09:53:00,09:54:00,1474698,13, +24985373_256771,09:57:00,09:58:00,1474699,14, +24985373_256771,10:01:00,10:02:00,1474700,15, +24985373_256771,10:10:00,10:10:00,1474651,16, +24985375_256773,09:29:00,09:29:00,1474687,0, +24985375_256773,09:31:00,09:31:00,1474686,1, +24985375_256773,09:38:00,09:41:00,1474685,2, +24985375_256773,10:03:00,10:11:00,1474673,3, +24985375_256773,10:14:00,10:14:00,1474672,4, +24985375_256773,10:21:00,10:22:00,1474670,5, +24985375_256773,10:31:00,10:32:00,1474667,6, +24985375_256773,10:44:00,10:44:00,1474663,7, +24985375_256773,10:50:00,10:51:00,1474698,8, +24985375_256773,10:54:00,10:55:00,1474699,9, +24985375_256773,11:04:00,11:04:00,1474651,10, +24985376_256774,09:29:00,09:29:00,1474687,0, +24985376_256774,09:31:00,09:31:00,1474686,1, +24985376_256774,09:38:00,09:41:00,1474685,2, +24985376_256774,10:01:00,10:09:00,1474673,3, +24985376_256774,10:12:00,10:13:00,1474672,4, +24985376_256774,10:20:00,10:21:00,1474670,5, +24985376_256774,10:31:00,10:32:00,1474667,6, +24985376_256774,10:44:00,10:44:00,1474663,7, +24985376_256774,10:50:00,10:51:00,1474698,8, +24985376_256774,10:54:00,10:55:00,1474699,9, +24985376_256774,11:05:00,11:05:00,1474651,10, +24985377_256775,11:39:00,11:39:00,1474663,0, +24985377_256775,11:43:00,11:44:00,1474662,1, +24985377_256775,11:47:00,11:47:00,1474698,2, +24985377_256775,11:50:00,11:51:00,1474699,3, +24985377_256775,11:54:00,11:54:00,1474700,4, +24985377_256775,12:02:00,12:02:00,1474651,5, +24985379_256777,12:31:00,12:31:00,1474673,0, +24985379_256777,12:34:00,12:34:00,1474672,1, +24985379_256777,12:37:00,12:38:00,1474671,2, +24985379_256777,12:43:00,12:43:00,1474670,3, +24985379_256777,12:47:00,12:47:00,1474669,4, +24985379_256777,12:50:00,12:50:00,1764608,5, +24985379_256777,12:54:00,12:54:00,1474668,6, +24985379_256777,12:57:00,12:58:00,1474667,7, +24985379_256777,13:02:00,13:02:00,1474666,8, +24985379_256777,13:08:00,13:09:00,1474665,9, +24985379_256777,13:12:00,13:13:00,1474664,10, +24985379_256777,13:16:00,13:16:00,1474663,11, +24985379_256777,13:20:00,13:21:00,1474662,12, +24985379_256777,13:24:00,13:24:00,1474698,13, +24985379_256777,13:28:00,13:28:00,1474699,14, +24985379_256777,13:32:00,13:32:00,1474700,15, +24985379_256777,13:40:00,13:46:00,1474738,16, +24985379_256777,13:51:00,13:52:00,1474701,17, +24985379_256777,13:54:00,13:55:00,1474702,18, +24985379_256777,13:57:00,13:58:00,1474703,19, +24985379_256777,14:02:00,14:02:00,1474704,20, +24985379_256777,14:05:00,14:06:00,1474705,21, +24985379_256777,14:08:00,14:08:00,1474706,22, +24985379_256777,14:10:00,14:10:00,1474707,23, +24985379_256777,14:14:00,14:14:00,1474708,24, +24985379_256777,14:16:00,14:17:00,1474709,25, +24985379_256777,14:20:00,14:20:00,1474710,26, +24985379_256777,14:23:00,14:23:00,1474711,27, +24985379_256777,14:26:00,14:26:00,1474712,28, +24985379_256777,14:31:00,14:31:00,1474713,29, +24985380_256778,12:31:00,12:31:00,1474673,0, +24985380_256778,12:34:00,12:34:00,1474672,1, +24985380_256778,12:37:00,12:38:00,1474671,2, +24985380_256778,12:43:00,12:43:00,1474670,3, +24985380_256778,12:47:00,12:47:00,1474669,4, +24985380_256778,12:50:00,12:50:00,1764608,5, +24985380_256778,12:54:00,12:54:00,1474668,6, +24985380_256778,12:57:00,12:58:00,1474667,7, +24985380_256778,13:02:00,13:02:00,1474666,8, +24985380_256778,13:08:00,13:09:00,1474665,9, +24985380_256778,13:12:00,13:13:00,1474664,10, +24985380_256778,13:16:00,13:16:00,1474663,11, +24985380_256778,13:20:00,13:21:00,1474662,12, +24985380_256778,13:24:00,13:24:00,1474698,13, +24985380_256778,13:28:00,13:28:00,1474699,14, +24985380_256778,13:32:00,13:32:00,1474700,15, +24985380_256778,13:40:00,13:44:00,1474640,16, +24985380_256778,13:49:00,13:50:00,1474701,17, +24985380_256778,13:52:00,13:53:00,1474702,18, +24985380_256778,13:55:00,13:56:00,1474703,19, +24985380_256778,14:00:00,14:01:00,1474704,20, +24985380_256778,14:04:00,14:05:00,1474705,21, +24985380_256778,14:07:00,14:07:00,1474706,22, +24985380_256778,14:09:00,14:09:00,1474707,23, +24985380_256778,14:13:00,14:13:00,1474708,24, +24985380_256778,14:15:00,14:16:00,1474709,25, +24985380_256778,14:19:00,14:19:00,1474710,26, +24985380_256778,14:22:00,14:22:00,1474711,27, +24985380_256778,14:25:00,14:25:00,1474712,28, +24985380_256778,14:30:00,14:30:00,1474713,29, +24985382_256780,12:31:00,12:31:00,1474673,0, +24985382_256780,12:34:00,12:34:00,1474672,1, +24985382_256780,12:37:00,12:38:00,1474671,2, +24985382_256780,12:43:00,12:43:00,1474670,3, +24985382_256780,12:47:00,12:47:00,1474669,4, +24985382_256780,12:50:00,12:50:00,1764608,5, +24985382_256780,12:54:00,12:54:00,1474668,6, +24985382_256780,12:57:00,12:58:00,1474667,7, +24985382_256780,13:02:00,13:02:00,1474666,8, +24985382_256780,13:08:00,13:09:00,1474665,9, +24985382_256780,13:12:00,13:13:00,1474664,10, +24985382_256780,13:16:00,13:16:00,1474663,11, +24985382_256780,13:20:00,13:21:00,1474662,12, +24985382_256780,13:24:00,13:24:00,1474698,13, +24985382_256780,13:28:00,13:28:00,1474699,14, +24985382_256780,13:32:00,13:32:00,1474700,15, +24985382_256780,13:40:00,13:40:00,1474651,16, +24985383_256781,13:19:00,13:19:00,1474687,0, +24985383_256781,13:21:00,13:22:00,1474686,1, +24985383_256781,13:28:00,13:31:00,1474685,2, +24985383_256781,13:40:00,13:40:00,1474684,3, +24985383_256781,13:45:00,13:46:00,1474695,4, +24985383_256781,13:54:00,14:02:00,1474673,5, +24985383_256781,14:05:00,14:05:00,1474672,6, +24985383_256781,14:08:00,14:09:00,1474671,7, +24985383_256781,14:14:00,14:14:00,1474670,8, +24985383_256781,14:18:00,14:18:00,1474669,9, +24985383_256781,14:21:00,14:21:00,1764608,10, +24985383_256781,14:24:00,14:29:00,1474668,11, +24985383_256781,14:32:00,14:32:00,1474667,12, +24985383_256781,14:36:00,14:37:00,1474666,13, +24985383_256781,14:43:00,14:43:00,1474665,14, +24985383_256781,14:47:00,14:47:00,1474664,15, +24985383_256781,14:50:00,14:50:00,1474663,16, +24985383_256781,14:55:00,14:55:00,1474662,17, +24985383_256781,14:59:00,15:04:00,1474698,18, +24985383_256781,15:07:00,15:08:00,1474699,19, +24985383_256781,15:11:00,15:12:00,1474700,20, +24985383_256781,15:20:00,15:20:00,1474651,21, +24985385_256783,15:11:00,15:11:00,1474673,0, +24985385_256783,15:14:00,15:14:00,1474672,1, +24985385_256783,15:17:00,15:18:00,1474671,2, +24985385_256783,15:23:00,15:23:00,1474670,3, +24985385_256783,15:27:00,15:27:00,1474669,4, +24985385_256783,15:30:00,15:30:00,1764608,5, +24985385_256783,15:34:00,15:34:00,1474668,6, +24985385_256783,15:37:00,15:38:00,1474667,7, +24985385_256783,15:42:00,15:42:00,1474666,8, +24985385_256783,15:48:00,15:48:00,1474665,9, +24985385_256783,15:52:00,15:52:00,1474664,10, +24985385_256783,15:55:00,16:00:00,1474663,11, +24985385_256783,16:04:00,16:05:00,1474662,12, +24985385_256783,16:08:00,16:08:00,1474698,13, +24985385_256783,16:12:00,16:12:00,1474699,14, +24985385_256783,16:16:00,16:16:00,1474700,15, +24985385_256783,16:24:00,16:24:00,1474651,16, +24985387_256785,15:19:00,15:19:00,1474687,0, +24985387_256785,15:21:00,15:21:00,1474686,1, +24985387_256785,15:27:00,15:30:00,1474685,2, +24985387_256785,15:50:00,15:58:00,1474673,3, +24985387_256785,16:01:00,16:02:00,1474672,4, +24985387_256785,16:09:00,16:09:00,1474670,5, +24985387_256785,16:26:00,16:26:00,1474667,6, +24985387_256785,16:39:00,16:39:00,1474663,7, +24985387_256785,16:45:00,16:52:00,1474698,8, +24985387_256785,16:55:00,16:56:00,1474699,9, +24985387_256785,17:06:00,17:06:00,1474651,10, +24985388_256786,15:19:00,15:19:00,1474687,0, +24985388_256786,15:21:00,15:21:00,1474686,1, +24985388_256786,15:27:00,15:30:00,1474685,2, +24985388_256786,15:50:00,15:58:00,1474673,3, +24985388_256786,16:01:00,16:02:00,1474672,4, +24985388_256786,16:09:00,16:09:00,1474670,5, +24985388_256786,16:25:00,16:25:00,1474667,6, +24985388_256786,16:38:00,16:38:00,1474663,7, +24985388_256786,16:44:00,16:49:00,1474698,8, +24985388_256786,16:53:00,16:54:00,1474699,9, +24985388_256786,17:05:00,17:05:00,1474651,10, +24985390_256788,16:23:00,16:23:00,1474668,0, +24985390_256788,16:26:00,16:26:00,1474667,1, +24985390_256788,16:30:00,16:31:00,1474666,2, +24985390_256788,16:36:00,16:37:00,1474665,3, +24985390_256788,16:40:00,16:40:00,1474664,4, +24985390_256788,16:43:00,16:43:00,1474663,5, +24985390_256788,16:47:00,16:48:00,1474662,6, +24985390_256788,16:52:00,16:52:00,1474698,7, +24985390_256788,16:55:00,16:56:00,1474699,8, +24985390_256788,16:58:00,16:59:00,1474700,9, +24985390_256788,17:06:00,17:06:00,1474651,10, +24985391_256789,16:22:00,16:22:00,1474668,0, +24985391_256789,16:25:00,16:25:00,1474667,1, +24985391_256789,16:29:00,16:30:00,1474666,2, +24985391_256789,16:35:00,16:36:00,1474665,3, +24985391_256789,16:39:00,16:39:00,1474664,4, +24985391_256789,16:42:00,16:42:00,1474663,5, +24985391_256789,16:46:00,16:47:00,1474662,6, +24985391_256789,16:50:00,16:51:00,1474698,7, +24985391_256789,16:54:00,16:54:00,1474699,8, +24985391_256789,16:57:00,16:58:00,1474700,9, +24985391_256789,17:05:00,17:05:00,1474651,10, +24985393_256791,16:57:00,16:57:00,1474673,0, +24985393_256791,17:00:00,17:00:00,1474672,1, +24985393_256791,17:03:00,17:04:00,1474671,2, +24985393_256791,17:09:00,17:09:00,1474670,3, +24985393_256791,17:13:00,17:13:00,1474669,4, +24985393_256791,17:16:00,17:16:00,1764608,5, +24985393_256791,17:19:00,17:25:00,1474668,6, +24985393_256791,17:28:00,17:28:00,1474667,7, +24985393_256791,17:32:00,17:33:00,1474666,8, +24985393_256791,17:39:00,17:39:00,1474665,9, +24985393_256791,17:43:00,17:43:00,1474664,10, +24985393_256791,17:46:00,17:52:00,1474663,11, +24985393_256791,17:56:00,17:56:00,1474662,12, +24985393_256791,17:59:00,18:00:00,1474698,13, +24985393_256791,18:03:00,18:04:00,1474699,14, +24985393_256791,18:07:00,18:07:00,1474700,15, +24985393_256791,18:15:00,18:15:00,1474651,16, +24985394_256792,16:57:00,16:57:00,1474673,0, +24985394_256792,17:00:00,17:00:00,1474672,1, +24985394_256792,17:03:00,17:04:00,1474671,2, +24985394_256792,17:09:00,17:09:00,1474670,3, +24985394_256792,17:13:00,17:13:00,1474669,4, +24985394_256792,17:16:00,17:16:00,1764608,5, +24985394_256792,17:19:00,17:24:00,1474668,6, +24985394_256792,17:27:00,17:28:00,1474667,7, +24985394_256792,17:32:00,17:32:00,1474666,8, +24985394_256792,17:38:00,17:39:00,1474665,9, +24985394_256792,17:42:00,17:43:00,1474664,10, +24985394_256792,17:46:00,17:51:00,1474663,11, +24985394_256792,17:55:00,17:56:00,1474662,12, +24985394_256792,17:59:00,17:59:00,1474698,13, +24985394_256792,18:03:00,18:03:00,1474699,14, +24985394_256792,18:07:00,18:07:00,1474700,15, +24985394_256792,18:15:00,18:15:00,1474651,16, +24985396_256794,17:43:00,17:43:00,1474687,0, +24985396_256794,17:45:00,17:45:00,1474686,1, +24985396_256794,17:51:00,17:59:00,1474685,2, +24985396_256794,18:20:00,18:28:00,1474673,3, +24985396_256794,18:31:00,18:31:00,1474672,4, +24985396_256794,18:38:00,18:39:00,1474670,5, +24985396_256794,18:49:00,18:50:00,1474667,6, +24985396_256794,19:03:00,19:09:00,1474663,7, +24985396_256794,19:15:00,19:16:00,1474698,8, +24985396_256794,19:19:00,19:20:00,1474699,9, +24985396_256794,19:30:00,19:30:00,1474651,10, +24985397_256795,17:43:00,17:43:00,1474687,0, +24985397_256795,17:45:00,17:45:00,1474686,1, +24985397_256795,17:51:00,17:57:00,1474685,2, +24985397_256795,18:17:00,18:26:00,1474673,3, +24985397_256795,18:29:00,18:30:00,1474672,4, +24985397_256795,18:37:00,18:38:00,1474670,5, +24985397_256795,18:48:00,18:50:00,1474667,6, +24985397_256795,19:03:00,19:09:00,1474663,7, +24985397_256795,19:15:00,19:16:00,1474698,8, +24985397_256795,19:19:00,19:20:00,1474699,9, +24985397_256795,19:30:00,19:30:00,1474651,10, +24985399_256797,17:43:00,17:43:00,1474687,0, +24985399_256797,17:45:00,17:45:00,1474686,1, +24985399_256797,17:51:00,17:59:00,1474685,2, +24985399_256797,18:20:00,18:28:00,1474673,3, +24985399_256797,18:31:00,18:31:00,1474672,4, +24985399_256797,18:38:00,18:39:00,1474670,5, +24985399_256797,18:49:00,18:50:00,1474667,6, +24985399_256797,19:03:00,19:09:00,1474663,7, +24985399_256797,19:15:00,19:16:00,1474698,8, +24985399_256797,19:19:00,19:20:00,1474699,9, +24985399_256797,19:30:00,19:40:00,1474738,10, +24985399_256797,19:45:00,19:46:00,1474701,11, +24985399_256797,19:49:00,19:49:00,1474702,12, +24985399_256797,19:51:00,19:52:00,1474703,13, +24985399_256797,19:56:00,19:57:00,1474704,14, +24985399_256797,20:00:00,20:00:00,1474705,15, +24985399_256797,20:02:00,20:03:00,1474706,16, +24985399_256797,20:05:00,20:05:00,1474707,17, +24985399_256797,20:08:00,20:09:00,1474708,18, +24985399_256797,20:11:00,20:12:00,1474709,19, +24985399_256797,20:15:00,20:15:00,1474710,20, +24985399_256797,20:18:00,20:18:00,1474711,21, +24985399_256797,20:21:00,20:21:00,1474712,22, +24985399_256797,20:26:00,20:26:00,1474713,23, +24985400_256798,17:43:00,17:43:00,1474687,0, +24985400_256798,17:45:00,17:45:00,1474686,1, +24985400_256798,17:51:00,17:57:00,1474685,2, +24985400_256798,18:17:00,18:26:00,1474673,3, +24985400_256798,18:29:00,18:30:00,1474672,4, +24985400_256798,18:37:00,18:38:00,1474670,5, +24985400_256798,18:48:00,18:50:00,1474667,6, +24985400_256798,19:03:00,19:09:00,1474663,7, +24985400_256798,19:15:00,19:16:00,1474698,8, +24985400_256798,19:19:00,19:20:00,1474699,9, +24985400_256798,19:30:00,19:35:00,1474640,10, +24985400_256798,19:40:00,19:41:00,1474701,11, +24985400_256798,19:44:00,19:44:00,1474702,12, +24985400_256798,19:46:00,19:47:00,1474703,13, +24985400_256798,19:51:00,19:52:00,1474704,14, +24985400_256798,19:55:00,19:55:00,1474705,15, +24985400_256798,19:57:00,19:58:00,1474706,16, +24985400_256798,20:00:00,20:00:00,1474707,17, +24985400_256798,20:03:00,20:04:00,1474708,18, +24985400_256798,20:06:00,20:07:00,1474709,19, +24985400_256798,20:10:00,20:10:00,1474710,20, +24985400_256798,20:13:00,20:13:00,1474711,21, +24985400_256798,20:16:00,20:16:00,1474712,22, +24985400_256798,20:21:00,20:21:00,1474713,23, +24985403_256801,20:23:00,20:23:00,1474673,0, +24985403_256801,20:26:00,20:26:00,1474672,1, +24985403_256801,20:29:00,20:30:00,1474671,2, +24985403_256801,20:35:00,20:35:00,1474670,3, +24985403_256801,20:39:00,20:40:00,1474669,4, +24985403_256801,20:43:00,20:43:00,1764608,5, +24985403_256801,20:46:00,20:46:00,1474668,6, +24985403_256801,20:49:00,20:50:00,1474667,7, +24985403_256801,20:54:00,20:54:00,1474666,8, +24985403_256801,21:00:00,21:01:00,1474665,9, +24985403_256801,21:04:00,21:05:00,1474664,10, +24985403_256801,21:07:00,21:08:00,1474663,11, +24985403_256801,21:12:00,21:12:00,1474662,12, +24985403_256801,21:16:00,21:22:00,1474698,13, +24985403_256801,21:25:00,21:26:00,1474699,14, +24985403_256801,21:29:00,21:30:00,1474700,15, +24985403_256801,21:37:00,21:42:00,1474738,16, +24985403_256801,21:47:00,21:48:00,1474701,17, +24985403_256801,21:50:00,21:50:00,1474702,18, +24985403_256801,21:52:00,21:53:00,1474703,19, +24985403_256801,21:57:00,21:58:00,1474704,20, +24985403_256801,22:01:00,22:01:00,1474705,21, +24985403_256801,22:03:00,22:04:00,1474706,22, +24985403_256801,22:06:00,22:06:00,1474707,23, +24985403_256801,22:10:00,22:10:00,1474708,24, +24985403_256801,22:12:00,22:13:00,1474709,25, +24985403_256801,22:16:00,22:17:00,1474710,26, +24985403_256801,22:20:00,22:20:00,1474711,27, +24985403_256801,22:23:00,22:23:00,1474712,28, +24985403_256801,22:28:00,22:28:00,1474713,29, +24985404_256802,20:20:00,20:20:00,1474673,0, +24985404_256802,20:23:00,20:23:00,1474672,1, +24985404_256802,20:26:00,20:27:00,1474671,2, +24985404_256802,20:32:00,20:32:00,1474670,3, +24985404_256802,20:36:00,20:37:00,1474669,4, +24985404_256802,20:40:00,20:40:00,1764608,5, +24985404_256802,20:43:00,20:43:00,1474668,6, +24985404_256802,20:46:00,20:47:00,1474667,7, +24985404_256802,20:51:00,20:51:00,1474666,8, +24985404_256802,20:57:00,20:58:00,1474665,9, +24985404_256802,21:01:00,21:02:00,1474664,10, +24985404_256802,21:04:00,21:05:00,1474663,11, +24985404_256802,21:09:00,21:09:00,1474662,12, +24985404_256802,21:13:00,21:18:00,1474698,13, +24985404_256802,21:22:00,21:22:00,1474699,14, +24985404_256802,21:26:00,21:26:00,1474700,15, +24985404_256802,21:34:00,21:42:00,1474640,16, +24985404_256802,21:47:00,21:48:00,1474701,17, +24985404_256802,21:50:00,21:50:00,1474702,18, +24985404_256802,21:52:00,21:53:00,1474703,19, +24985404_256802,21:57:00,21:58:00,1474704,20, +24985404_256802,22:01:00,22:01:00,1474705,21, +24985404_256802,22:03:00,22:04:00,1474706,22, +24985404_256802,22:06:00,22:06:00,1474707,23, +24985404_256802,22:10:00,22:10:00,1474708,24, +24985404_256802,22:12:00,22:13:00,1474709,25, +24985404_256802,22:16:00,22:17:00,1474710,26, +24985404_256802,22:20:00,22:20:00,1474711,27, +24985404_256802,22:23:00,22:23:00,1474712,28, +24985404_256802,22:28:00,22:28:00,1474713,29, +24985408_256806,12:14:00,12:14:00,1474651,0, +24985408_256806,12:23:00,12:23:00,1474653,1, +24985408_256806,12:26:00,12:27:00,1474654,2, +24985408_256806,12:33:00,12:33:00,1474663,3, +24985408_256806,12:47:00,12:48:00,1474667,4, +24985408_256806,13:04:00,13:04:00,1474670,5, +24985408_256806,13:11:00,13:12:00,1474672,6, +24985408_256806,13:15:00,13:25:00,1474673,7, +24985408_256806,13:51:00,13:52:00,1474685,8, +24985408_256806,13:57:00,13:58:00,1474686,9, +24985408_256806,14:00:00,14:00:00,1474687,10, +24985409_256807,12:14:00,12:14:00,1474651,0, +24985409_256807,12:23:00,12:23:00,1474653,1, +24985409_256807,12:26:00,12:27:00,1474654,2, +24985409_256807,12:33:00,12:33:00,1474663,3, +24985409_256807,12:47:00,12:48:00,1474667,4, +24985409_256807,13:04:00,13:04:00,1474670,5, +24985409_256807,13:11:00,13:12:00,1474672,6, +24985409_256807,13:15:00,13:25:00,1474688,7, +24985409_256807,13:51:00,13:52:00,1474685,8, +24985409_256807,13:57:00,13:58:00,1474686,9, +24985409_256807,14:00:00,14:00:00,1474687,10, +24985410_256808,08:30:00,08:30:00,1474614,0, +24985410_256808,08:34:00,08:34:00,1474613,1, +24985410_256808,08:45:00,08:45:00,1474612,2, +24985411_256809,09:30:00,09:30:00,1474614,0, +24985411_256809,09:34:00,09:34:00,1474613,1, +24985411_256809,09:45:00,09:45:00,1474612,2, +24985412_256810,10:30:00,10:30:00,1474614,0, +24985412_256810,10:34:00,10:34:00,1474613,1, +24985412_256810,10:45:00,10:45:00,1474612,2, +24985413_256811,11:30:00,11:30:00,1474614,0, +24985413_256811,11:34:00,11:34:00,1474613,1, +24985413_256811,11:45:00,11:45:00,1474612,2, +24985414_256812,12:30:00,12:30:00,1474614,0, +24985414_256812,12:34:00,12:34:00,1474613,1, +24985414_256812,12:45:00,12:45:00,1474612,2, +24985415_256813,14:30:00,14:30:00,1474614,0, +24985415_256813,14:34:00,14:34:00,1474613,1, +24985415_256813,14:45:00,14:45:00,1474612,2, +24985420_256818,15:30:00,15:30:00,1474614,0, +24985420_256818,15:34:00,15:34:00,1474613,1, +24985420_256818,15:45:00,15:45:00,1474612,2, +24985421_256819,16:30:00,16:30:00,1474614,0, +24985421_256819,16:34:00,16:34:00,1474613,1, +24985421_256819,16:45:00,16:45:00,1474612,2, +24985422_256820,17:30:00,17:30:00,1474614,0, +24985422_256820,17:34:00,17:34:00,1474613,1, +24985422_256820,17:45:00,17:45:00,1474612,2, +24985423_256821,18:30:00,18:30:00,1474614,0, +24985423_256821,18:34:00,18:34:00,1474613,1, +24985423_256821,18:45:00,18:45:00,1474612,2, +24985425_256823,06:34:00,06:34:00,1474739,0, +24985425_256823,06:41:00,06:41:00,1474740,1, +24985425_256823,06:46:00,06:46:00,1474741,2, +24985425_256823,06:52:00,06:52:00,1474742,3, +24985425_256823,06:56:00,06:56:00,1474743,4, +24985425_256823,07:03:00,07:03:00,1474744,5, +24985425_256823,07:06:00,07:06:00,1474745,6, +24985425_256823,07:11:00,07:11:00,1474746,7, +24985425_256823,07:27:00,07:27:00,1474747,8, +24985426_256824,07:11:00,07:11:00,1474746,0, +24985426_256824,07:27:00,07:27:00,1474747,1, +24985428_256826,08:55:00,08:55:00,1474739,0, +24985428_256826,09:02:00,09:02:00,1474740,1, +24985428_256826,09:07:00,09:07:00,1474741,2, +24985428_256826,09:13:00,09:13:00,1474742,3, +24985428_256826,09:17:00,09:17:00,1474743,4, +24985428_256826,09:24:00,09:24:00,1474744,5, +24985428_256826,09:27:00,09:27:00,1474745,6, +24985428_256826,09:32:00,09:32:00,1474746,7, +24985428_256826,09:46:00,09:46:00,1474747,8, +24985429_256827,09:30:00,09:30:00,1474746,0, +24985429_256827,09:44:00,09:44:00,1474747,1, +24985431_256829,10:37:00,10:37:00,1474739,0, +24985431_256829,10:44:00,10:44:00,1474740,1, +24985431_256829,10:49:00,10:49:00,1474741,2, +24985431_256829,10:55:00,10:55:00,1474742,3, +24985431_256829,10:59:00,10:59:00,1474743,4, +24985431_256829,11:06:00,11:06:00,1474744,5, +24985431_256829,11:09:00,11:09:00,1474745,6, +24985431_256829,11:14:00,11:14:00,1474746,7, +24985431_256829,11:28:00,11:28:00,1474747,8, +24985432_256830,11:11:00,11:11:00,1474746,0, +24985432_256830,11:25:00,11:25:00,1474747,1, +24985434_256832,13:34:00,13:34:00,1474739,0, +24985434_256832,13:41:00,13:41:00,1474740,1, +24985434_256832,13:46:00,13:46:00,1474741,2, +24985434_256832,13:52:00,13:52:00,1474742,3, +24985434_256832,13:56:00,13:56:00,1474743,4, +24985434_256832,14:03:00,14:03:00,1474744,5, +24985434_256832,14:06:00,14:06:00,1474745,6, +24985434_256832,14:11:00,14:11:00,1474746,7, +24985434_256832,14:25:00,14:25:00,1474747,8, +24985435_256833,14:10:00,14:10:00,1474746,0, +24985435_256833,14:24:00,14:24:00,1474747,1, +24985437_256835,15:40:00,15:40:00,1474739,0, +24985437_256835,15:47:00,15:47:00,1474740,1, +24985437_256835,15:52:00,15:52:00,1474741,2, +24985437_256835,15:58:00,15:58:00,1474742,3, +24985437_256835,16:02:00,16:02:00,1474743,4, +24985437_256835,16:09:00,16:09:00,1474744,5, +24985437_256835,16:12:00,16:12:00,1474745,6, +24985437_256835,16:17:00,16:17:00,1474746,7, +24985437_256835,16:31:00,16:31:00,1474747,8, +24985438_256836,16:20:00,16:20:00,1474746,0, +24985438_256836,16:34:00,16:34:00,1474747,1, +24985440_256838,18:14:00,18:14:00,1474739,0, +24985440_256838,18:21:00,18:21:00,1474740,1, +24985440_256838,18:26:00,18:26:00,1474741,2, +24985440_256838,18:32:00,18:32:00,1474742,3, +24985440_256838,18:36:00,18:36:00,1474743,4, +24985440_256838,18:43:00,18:43:00,1474744,5, +24985440_256838,18:46:00,18:46:00,1474745,6, +24985440_256838,18:51:00,18:51:00,1474746,7, +24985440_256838,19:05:00,19:05:00,1474747,8, +24985441_256839,19:05:00,19:05:00,1474746,0, +24985441_256839,19:19:00,19:19:00,1474747,1, +24985443_256841,20:30:00,20:30:00,1474739,0, +24985443_256841,20:37:00,20:37:00,1474740,1, +24985443_256841,20:42:00,20:42:00,1474741,2, +24985443_256841,20:48:00,20:48:00,1474742,3, +24985443_256841,20:52:00,20:52:00,1474743,4, +24985443_256841,20:59:00,20:59:00,1474744,5, +24985443_256841,21:02:00,21:02:00,1474745,6, +24985443_256841,21:07:00,21:07:00,1474746,7, +24985443_256841,21:21:00,21:21:00,1474747,8, +24985444_256842,21:07:00,21:07:00,1474746,0, +24985444_256842,21:21:00,21:21:00,1474747,1, +24985445_256843,08:07:00,08:07:00,1474612,0, +24985445_256843,08:17:00,08:17:00,1474613,1, +24985445_256843,08:22:00,08:22:00,1474614,2, +24985446_256844,09:07:00,09:07:00,1474612,0, +24985446_256844,09:17:00,09:17:00,1474613,1, +24985446_256844,09:22:00,09:22:00,1474614,2, +24985447_256845,10:07:00,10:07:00,1474612,0, +24985447_256845,10:17:00,10:17:00,1474613,1, +24985447_256845,10:22:00,10:22:00,1474614,2, +24985448_256846,11:07:00,11:07:00,1474612,0, +24985448_256846,11:17:00,11:17:00,1474613,1, +24985448_256846,11:22:00,11:22:00,1474614,2, +24985449_256847,12:07:00,12:07:00,1474612,0, +24985449_256847,12:17:00,12:17:00,1474613,1, +24985449_256847,12:22:00,12:22:00,1474614,2, +24985450_256848,13:57:00,13:57:00,1474612,0, +24985450_256848,14:07:00,14:07:00,1474613,1, +24985450_256848,14:12:00,14:12:00,1474614,2, +24985451_256849,15:07:00,15:07:00,1474612,0, +24985451_256849,15:17:00,15:17:00,1474613,1, +24985451_256849,15:22:00,15:22:00,1474614,2, +24985452_256850,16:07:00,16:07:00,1474612,0, +24985452_256850,16:17:00,16:17:00,1474613,1, +24985452_256850,16:22:00,16:22:00,1474614,2, +24985453_256851,17:07:00,17:07:00,1474612,0, +24985453_256851,17:17:00,17:17:00,1474613,1, +24985453_256851,17:22:00,17:22:00,1474614,2, +24985454_256852,18:07:00,18:07:00,1474612,0, +24985454_256852,18:17:00,18:17:00,1474613,1, +24985454_256852,18:22:00,18:22:00,1474614,2, +24985455_256853,19:50:00,19:50:00,1474612,0, +24985455_256853,20:00:00,20:00:00,1474613,1, +24985455_256853,20:05:00,20:05:00,1474614,2, +24985458_256856,05:19:00,05:19:00,1474645,0, +24985458_256856,05:21:00,05:22:00,1474646,1, +24985458_256856,05:24:00,05:25:00,1474749,2, +24985458_256856,05:27:00,05:28:00,1474750,3, +24985458_256856,05:31:00,05:31:00,1474751,4, +24985458_256856,05:36:00,05:36:00,1474752,5, +24985458_256856,05:44:00,05:44:00,1474648,6, +24985458_256856,05:53:00,05:54:00,1474649,7, +24985458_256856,06:00:00,06:00:00,1474753,8, +24985458_256856,06:11:00,06:12:00,1474754,9, +24985458_256856,06:17:00,06:17:00,1474650,10, +24985459_256857,05:19:00,05:19:00,1474645,0, +24985459_256857,05:21:00,05:22:00,1474646,1, +24985459_256857,05:24:00,05:25:00,1474749,2, +24985459_256857,05:27:00,05:27:00,1474750,3, +24985459_256857,05:30:00,05:31:00,1474751,4, +24985459_256857,05:36:00,05:36:00,1474752,5, +24985459_256857,05:44:00,05:44:00,1474648,6, +24985459_256857,05:53:00,05:54:00,1474649,7, +24985459_256857,06:00:00,06:00:00,1474753,8, +24985459_256857,06:11:00,06:12:00,1474754,9, +24985459_256857,06:17:00,06:17:00,1474650,10, +24985463_256861,05:27:00,05:27:00,1474755,0, +24985463_256861,05:37:00,05:37:00,1474756,1, +24985463_256861,05:44:00,05:44:00,1474757,2, +24985463_256861,05:53:00,05:53:00,1474758,3, +24985463_256861,06:05:00,06:05:00,1474759,4, +24985463_256861,06:13:00,06:23:00,1474760,5, +24985463_256861,06:27:00,06:28:00,1474761,6, +24985463_256861,06:31:00,06:31:00,1474762,7, +24985463_256861,06:36:00,06:36:00,1474763,8, +24985463_256861,06:38:00,06:39:00,1474764,9, +24985463_256861,06:43:00,06:44:00,1474765,10, +24985463_256861,06:46:00,06:46:00,1474766,11, +24985463_256861,06:50:00,06:51:00,1474767,12, +24985463_256861,06:56:00,06:56:00,1474768,13, +24985463_256861,07:03:00,07:03:00,1474769,14, +24985463_256861,07:07:00,07:08:00,1474770,15, +24985463_256861,07:15:00,07:15:00,1474771,16, +24985463_256861,07:20:00,07:21:00,1474772,17, +24985463_256861,07:23:00,07:24:00,1474773,18, +24985463_256861,07:29:00,07:30:00,1474645,19, +24985463_256861,07:33:00,07:33:00,1474774,20, +24985465_256863,05:30:00,05:30:00,1474755,0, +24985465_256863,05:40:00,05:40:00,1474756,1, +24985465_256863,05:47:00,05:47:00,1474757,2, +24985465_256863,05:54:00,05:54:00,1474758,3, +24985465_256863,06:05:00,06:05:00,1474759,4, +24985465_256863,06:13:00,06:21:00,1474760,5, +24985465_256863,06:25:00,06:26:00,1474761,6, +24985465_256863,06:29:00,06:30:00,1474762,7, +24985465_256863,06:34:00,06:34:00,1474763,8, +24985465_256863,06:36:00,06:37:00,1474764,9, +24985465_256863,06:41:00,06:42:00,1474765,10, +24985465_256863,06:44:00,06:44:00,1474766,11, +24985465_256863,06:48:00,06:49:00,1474767,12, +24985465_256863,06:54:00,06:54:00,1474768,13, +24985465_256863,07:01:00,07:01:00,1474769,14, +24985465_256863,07:05:00,07:05:00,1474770,15, +24985465_256863,07:13:00,07:13:00,1474771,16, +24985465_256863,07:18:00,07:18:00,1474772,17, +24985465_256863,07:21:00,07:21:00,1474773,18, +24985465_256863,07:26:00,07:27:00,1474645,19, +24985465_256863,07:30:00,07:30:00,1474646,20, +24985468_256866,07:53:00,07:53:00,1474774,0, +24985468_256866,07:56:00,07:56:00,1474749,1, +24985468_256866,07:59:00,07:59:00,1474750,2, +24985468_256866,08:02:00,08:02:00,1474751,3, +24985468_256866,08:07:00,08:08:00,1474752,4, +24985468_256866,08:15:00,08:16:00,1474648,5, +24985468_256866,08:25:00,08:25:00,1474649,6, +24985468_256866,08:32:00,08:32:00,1474753,7, +24985468_256866,08:44:00,08:44:00,1474754,8, +24985468_256866,08:49:00,08:49:00,1474650,9, +24985469_256867,07:53:00,07:53:00,1474646,0, +24985469_256867,07:56:00,07:56:00,1474749,1, +24985469_256867,07:58:00,07:59:00,1474750,2, +24985469_256867,08:02:00,08:02:00,1474751,3, +24985469_256867,08:07:00,08:07:00,1474752,4, +24985469_256867,08:15:00,08:15:00,1474648,5, +24985469_256867,08:24:00,08:25:00,1474649,6, +24985469_256867,08:31:00,08:31:00,1474753,7, +24985469_256867,08:42:00,08:43:00,1474754,8, +24985469_256867,08:48:00,08:48:00,1474650,9, +24985472_256870,08:29:00,08:29:00,1474779,0, +24985472_256870,08:32:00,08:32:00,1474816,1, +24985472_256870,08:42:00,08:48:00,1474781,2, +24985472_256870,08:53:00,08:53:00,1474761,3, +24985472_256870,08:57:00,09:05:00,1474817,4, +24985472_256870,09:09:00,09:09:00,1474763,5, +24985472_256870,09:11:00,09:12:00,1474764,6, +24985472_256870,09:16:00,09:17:00,1474765,7, +24985472_256870,09:19:00,09:19:00,1474766,8, +24985472_256870,09:23:00,09:24:00,1474767,9, +24985472_256870,09:29:00,09:29:00,1474768,10, +24985472_256870,09:36:00,09:37:00,1474769,11, +24985472_256870,09:40:00,09:41:00,1474770,12, +24985472_256870,09:48:00,09:48:00,1474771,13, +24985472_256870,09:53:00,09:53:00,1474772,14, +24985472_256870,09:56:00,09:56:00,1474773,15, +24985472_256870,10:01:00,10:02:00,1474645,16, +24985472_256870,10:05:00,10:24:00,1474774,17, +24985472_256870,10:27:00,10:27:00,1474749,18, +24985472_256870,10:30:00,10:30:00,1474750,19, +24985472_256870,10:33:00,10:33:00,1474751,20, +24985472_256870,10:38:00,10:39:00,1474752,21, +24985472_256870,10:46:00,10:46:00,1474648,22, +24985472_256870,10:56:00,10:57:00,1474649,23, +24985472_256870,11:03:00,11:04:00,1474753,24, +24985472_256870,11:14:00,11:15:00,1474754,25, +24985472_256870,11:20:00,11:20:00,1474650,26, +24985473_256871,08:24:00,08:24:00,1474779,0, +24985473_256871,08:26:00,08:27:00,1474780,1, +24985473_256871,08:36:00,08:42:00,1474781,2, +24985473_256871,08:46:00,08:47:00,1474761,3, +24985473_256871,08:50:00,08:55:00,1474762,4, +24985473_256871,08:59:00,09:00:00,1474763,5, +24985473_256871,09:02:00,09:03:00,1474764,6, +24985473_256871,09:07:00,09:08:00,1474765,7, +24985473_256871,09:10:00,09:11:00,1474766,8, +24985473_256871,09:15:00,09:16:00,1474767,9, +24985473_256871,09:21:00,09:21:00,1474768,10, +24985473_256871,09:28:00,09:29:00,1474769,11, +24985473_256871,09:32:00,09:33:00,1474770,12, +24985473_256871,09:40:00,09:41:00,1474771,13, +24985473_256871,09:46:00,09:46:00,1474772,14, +24985473_256871,09:49:00,09:49:00,1474773,15, +24985473_256871,09:54:00,09:55:00,1474645,16, +24985473_256871,09:58:00,10:13:00,1474646,17, +24985473_256871,10:16:00,10:16:00,1474749,18, +24985473_256871,10:18:00,10:19:00,1474750,19, +24985473_256871,10:22:00,10:22:00,1474751,20, +24985473_256871,10:27:00,10:27:00,1474752,21, +24985473_256871,10:34:00,10:35:00,1474648,22, +24985473_256871,10:44:00,10:44:00,1474649,23, +24985473_256871,10:50:00,10:51:00,1474753,24, +24985473_256871,11:01:00,11:02:00,1474754,25, +24985473_256871,11:07:00,11:07:00,1474650,26, +24985475_256873,08:29:00,08:29:00,1474779,0, +24985475_256873,08:32:00,08:32:00,1474816,1, +24985475_256873,08:42:00,08:48:00,1474781,2, +24985475_256873,08:53:00,08:53:00,1474761,3, +24985475_256873,08:57:00,09:05:00,1474817,4, +24985475_256873,09:09:00,09:09:00,1474763,5, +24985475_256873,09:11:00,09:12:00,1474764,6, +24985475_256873,09:16:00,09:17:00,1474765,7, +24985475_256873,09:19:00,09:19:00,1474766,8, +24985475_256873,09:23:00,09:24:00,1474767,9, +24985475_256873,09:29:00,09:29:00,1474768,10, +24985475_256873,09:36:00,09:37:00,1474769,11, +24985475_256873,09:40:00,09:41:00,1474770,12, +24985475_256873,09:48:00,09:48:00,1474771,13, +24985475_256873,09:53:00,09:53:00,1474772,14, +24985475_256873,09:56:00,09:56:00,1474773,15, +24985475_256873,10:01:00,10:02:00,1474645,16, +24985475_256873,10:05:00,10:05:00,1474774,17, +24985476_256874,08:24:00,08:24:00,1474779,0, +24985476_256874,08:26:00,08:27:00,1474780,1, +24985476_256874,08:36:00,08:42:00,1474781,2, +24985476_256874,08:46:00,08:47:00,1474761,3, +24985476_256874,08:50:00,08:55:00,1474762,4, +24985476_256874,08:59:00,09:00:00,1474763,5, +24985476_256874,09:02:00,09:03:00,1474764,6, +24985476_256874,09:07:00,09:08:00,1474765,7, +24985476_256874,09:10:00,09:11:00,1474766,8, +24985476_256874,09:15:00,09:16:00,1474767,9, +24985476_256874,09:21:00,09:21:00,1474768,10, +24985476_256874,09:28:00,09:29:00,1474769,11, +24985476_256874,09:32:00,09:33:00,1474770,12, +24985476_256874,09:40:00,09:41:00,1474771,13, +24985476_256874,09:46:00,09:46:00,1474772,14, +24985476_256874,09:49:00,09:49:00,1474773,15, +24985476_256874,09:54:00,09:55:00,1474645,16, +24985476_256874,09:58:00,09:58:00,1474646,17, +24985478_256876,10:39:00,10:39:00,1474760,0, +24985478_256876,10:43:00,10:43:00,1474761,1, +24985478_256876,10:47:00,10:47:00,1474762,2, +24985478_256876,10:51:00,10:51:00,1474763,3, +24985478_256876,10:54:00,10:54:00,1474764,4, +24985478_256876,10:59:00,10:59:00,1474765,5, +24985478_256876,11:01:00,11:02:00,1474766,6, +24985478_256876,11:06:00,11:06:00,1474767,7, +24985478_256876,11:11:00,11:11:00,1474768,8, +24985478_256876,11:18:00,11:19:00,1474769,9, +24985478_256876,11:22:00,11:23:00,1474770,10, +24985478_256876,11:30:00,11:30:00,1474771,11, +24985478_256876,11:35:00,11:36:00,1474772,12, +24985478_256876,11:38:00,11:39:00,1474773,13, +24985478_256876,11:44:00,11:45:00,1474645,14, +24985478_256876,11:48:00,11:48:00,1474774,15, +24985479_256877,10:44:00,10:44:00,1474760,0, +24985479_256877,10:48:00,10:49:00,1474761,1, +24985479_256877,10:52:00,10:52:00,1474762,2, +24985479_256877,10:57:00,10:57:00,1474763,3, +24985479_256877,10:59:00,11:00:00,1474764,4, +24985479_256877,11:04:00,11:05:00,1474765,5, +24985479_256877,11:07:00,11:07:00,1474766,6, +24985479_256877,11:11:00,11:12:00,1474767,7, +24985479_256877,11:17:00,11:17:00,1474768,8, +24985479_256877,11:24:00,11:24:00,1474769,9, +24985479_256877,11:28:00,11:28:00,1474770,10, +24985479_256877,11:35:00,11:36:00,1474771,11, +24985479_256877,11:41:00,11:41:00,1474772,12, +24985479_256877,11:44:00,11:44:00,1474773,13, +24985479_256877,11:49:00,11:50:00,1474645,14, +24985479_256877,11:53:00,11:53:00,1474646,15, +24985481_256879,10:39:00,10:39:00,1474760,0, +24985481_256879,10:43:00,10:43:00,1474761,1, +24985481_256879,10:47:00,10:47:00,1474762,2, +24985481_256879,10:51:00,10:51:00,1474763,3, +24985481_256879,10:54:00,10:54:00,1474764,4, +24985481_256879,10:59:00,10:59:00,1474765,5, +24985481_256879,11:01:00,11:02:00,1474766,6, +24985481_256879,11:06:00,11:06:00,1474767,7, +24985481_256879,11:11:00,11:12:00,1474768,8, +24985481_256879,11:18:00,11:19:00,1474769,9, +24985481_256879,11:22:00,11:23:00,1474770,10, +24985481_256879,11:30:00,11:30:00,1474771,11, +24985481_256879,11:35:00,11:36:00,1474772,12, +24985481_256879,11:38:00,11:39:00,1474773,13, +24985481_256879,11:44:00,11:45:00,1474645,14, +24985481_256879,11:48:00,11:48:00,1474774,15, +24985482_256880,10:44:00,10:44:00,1474760,0, +24985482_256880,10:48:00,10:49:00,1474761,1, +24985482_256880,10:52:00,10:52:00,1474762,2, +24985482_256880,10:57:00,10:57:00,1474763,3, +24985482_256880,10:59:00,11:00:00,1474764,4, +24985482_256880,11:04:00,11:05:00,1474765,5, +24985482_256880,11:07:00,11:07:00,1474766,6, +24985482_256880,11:11:00,11:12:00,1474767,7, +24985482_256880,11:17:00,11:17:00,1474768,8, +24985482_256880,11:24:00,11:24:00,1474769,9, +24985482_256880,11:28:00,11:28:00,1474770,10, +24985482_256880,11:35:00,11:36:00,1474771,11, +24985482_256880,11:41:00,11:41:00,1474772,12, +24985482_256880,11:44:00,11:44:00,1474773,13, +24985482_256880,11:49:00,11:50:00,1474645,14, +24985482_256880,11:53:00,11:53:00,1474646,15, +24985488_256886,12:34:00,12:34:00,1474774,0, +24985488_256886,12:38:00,12:39:00,1474749,1, +24985488_256886,12:42:00,12:42:00,1474750,2, +24985488_256886,12:45:00,12:45:00,1474751,3, +24985488_256886,12:51:00,12:52:00,1474752,4, +24985488_256886,12:59:00,12:59:00,1474648,5, +24985488_256886,13:08:00,13:09:00,1474649,6, +24985488_256886,13:15:00,13:16:00,1474753,7, +24985488_256886,13:27:00,13:27:00,1474754,8, +24985488_256886,13:33:00,13:33:00,1474650,9, +24985489_256887,12:34:00,12:34:00,1474774,0, +24985489_256887,12:38:00,12:39:00,1474749,1, +24985489_256887,12:42:00,12:42:00,1474750,2, +24985489_256887,12:45:00,12:45:00,1474751,3, +24985489_256887,12:51:00,12:52:00,1474752,4, +24985489_256887,12:59:00,12:59:00,1474648,5, +24985489_256887,13:08:00,13:09:00,1474649,6, +24985489_256887,13:15:00,13:16:00,1474753,7, +24985489_256887,13:27:00,13:27:00,1474754,8, +24985489_256887,13:33:00,13:33:00,1474650,9, +24985491_256889,12:34:00,12:34:00,1474774,0, +24985491_256889,12:37:00,12:37:00,1474749,1, +24985491_256889,12:40:00,12:40:00,1474750,2, +24985491_256889,12:43:00,12:43:00,1474751,3, +24985491_256889,12:48:00,12:49:00,1474752,4, +24985491_256889,12:56:00,12:56:00,1474648,5, +24985491_256889,13:05:00,13:06:00,1474649,6, +24985491_256889,13:12:00,13:12:00,1474753,7, +24985491_256889,13:23:00,13:24:00,1474754,8, +24985491_256889,13:29:00,13:29:00,1474650,9, +24985493_256891,16:37:00,16:37:00,1474760,0, +24985493_256891,16:41:00,16:42:00,1474761,1, +24985493_256891,16:45:00,16:45:00,1474762,2, +24985493_256891,16:49:00,16:50:00,1474763,3, +24985493_256891,16:52:00,16:52:00,1474764,4, +24985493_256891,16:57:00,16:57:00,1474765,5, +24985493_256891,17:00:00,17:00:00,1474766,6, +24985493_256891,17:04:00,17:04:00,1474767,7, +24985493_256891,17:09:00,17:10:00,1474768,8, +24985493_256891,17:17:00,17:17:00,1474769,9, +24985493_256891,17:21:00,17:21:00,1474770,10, +24985493_256891,17:28:00,17:28:00,1474771,11, +24985493_256891,17:34:00,17:34:00,1474772,12, +24985493_256891,17:37:00,17:37:00,1474773,13, +24985493_256891,17:42:00,17:43:00,1474645,14, +24985493_256891,17:46:00,17:46:00,1474774,15, +24985494_256892,16:21:00,16:21:00,1474779,0, +24985494_256892,16:23:00,16:23:00,1474780,1, +24985494_256892,16:33:00,16:37:00,1474781,2, +24985494_256892,16:41:00,16:42:00,1474761,3, +24985494_256892,16:45:00,16:45:00,1474762,4, +24985494_256892,16:49:00,16:50:00,1474763,5, +24985494_256892,16:52:00,16:52:00,1474764,6, +24985494_256892,16:57:00,16:57:00,1474765,7, +24985494_256892,17:00:00,17:00:00,1474766,8, +24985494_256892,17:04:00,17:04:00,1474767,9, +24985494_256892,17:09:00,17:10:00,1474768,10, +24985494_256892,17:17:00,17:17:00,1474769,11, +24985494_256892,17:21:00,17:21:00,1474770,12, +24985494_256892,17:28:00,17:28:00,1474771,13, +24985494_256892,17:34:00,17:34:00,1474772,14, +24985494_256892,17:37:00,17:37:00,1474773,15, +24985494_256892,17:42:00,17:43:00,1474645,16, +24985494_256892,17:46:00,17:46:00,1474774,17, +24985496_256894,21:07:00,21:07:00,1474760,0, +24985496_256894,21:11:00,21:12:00,1474761,1, +24985496_256894,21:15:00,21:15:00,1474762,2, +24985496_256894,21:19:00,21:19:00,1474763,3, +24985496_256894,21:22:00,21:22:00,1474764,4, +24985496_256894,21:26:00,21:27:00,1474765,5, +24985496_256894,21:29:00,21:29:00,1474766,6, +24985496_256894,21:33:00,21:34:00,1474767,7, +24985496_256894,21:39:00,21:39:00,1474768,8, +24985496_256894,21:46:00,21:46:00,1474769,9, +24985496_256894,21:50:00,21:50:00,1474770,10, +24985496_256894,21:57:00,21:58:00,1474771,11, +24985496_256894,22:03:00,22:03:00,1474772,12, +24985496_256894,22:06:00,22:06:00,1474773,13, +24985496_256894,22:12:00,22:12:00,1474645,14, +24985497_256895,20:47:00,20:47:00,1474779,0, +24985497_256895,20:49:00,20:49:00,1474780,1, +24985497_256895,20:59:00,21:05:00,1474781,2, +24985497_256895,21:09:00,21:10:00,1474761,3, +24985497_256895,21:13:00,21:13:00,1474762,4, +24985497_256895,21:17:00,21:17:00,1474763,5, +24985497_256895,21:20:00,21:20:00,1474764,6, +24985497_256895,21:24:00,21:25:00,1474765,7, +24985497_256895,21:27:00,21:27:00,1474766,8, +24985497_256895,21:31:00,21:32:00,1474767,9, +24985497_256895,21:37:00,21:37:00,1474768,10, +24985497_256895,21:44:00,21:44:00,1474769,11, +24985497_256895,21:48:00,21:48:00,1474770,12, +24985497_256895,21:55:00,21:56:00,1474771,13, +24985497_256895,22:01:00,22:01:00,1474772,14, +24985497_256895,22:04:00,22:04:00,1474773,15, +24985497_256895,22:10:00,22:10:00,1474810,16, +24985499_256897,05:39:00,05:39:00,1474810,0, +24985499_256897,05:44:00,05:44:00,1474773,1, +24985499_256897,05:47:00,05:47:00,1474772,2, +24985499_256897,05:52:00,05:53:00,1474771,3, +24985499_256897,06:00:00,06:00:00,1474811,4, +24985499_256897,06:04:00,06:04:00,1474769,5, +24985499_256897,06:11:00,06:12:00,1474768,6, +24985499_256897,06:17:00,06:17:00,1474767,7, +24985499_256897,06:21:00,06:22:00,1474812,8, +24985499_256897,06:24:00,06:24:00,1474813,9, +24985499_256897,06:29:00,06:30:00,1474814,10, +24985499_256897,06:33:00,06:38:00,1474815,11, +24985499_256897,06:41:00,06:42:00,1474762,12, +24985499_256897,06:45:00,06:45:00,1474761,13, +24985499_256897,06:50:00,06:56:00,1474781,14, +24985499_256897,07:04:00,07:04:00,1474816,15, +24985499_256897,07:08:00,07:08:00,1474779,16, +24985500_256898,05:40:00,05:40:00,1474810,0, +24985500_256898,05:45:00,05:45:00,1474773,1, +24985500_256898,05:48:00,05:48:00,1474772,2, +24985500_256898,05:54:00,05:54:00,1474771,3, +24985500_256898,06:02:00,06:02:00,1474811,4, +24985500_256898,06:07:00,06:07:00,1474769,5, +24985500_256898,06:14:00,06:14:00,1474768,6, +24985500_256898,06:19:00,06:19:00,1474767,7, +24985500_256898,06:24:00,06:24:00,1474812,8, +24985500_256898,06:27:00,06:27:00,1474813,9, +24985500_256898,06:32:00,06:33:00,1474814,10, +24985500_256898,06:37:00,06:38:00,1474815,11, +24985500_256898,06:41:00,06:42:00,1474817,12, +24985500_256898,06:45:00,06:45:00,1474761,13, +24985500_256898,06:50:00,06:56:00,1474781,14, +24985500_256898,07:03:00,07:03:00,1474816,15, +24985500_256898,07:07:00,07:07:00,1474779,16, +24985503_256901,06:31:00,06:31:00,1474650,0, +24985503_256901,06:36:00,06:36:00,1474754,1, +24985503_256901,06:47:00,06:47:00,1474753,2, +24985503_256901,06:54:00,06:55:00,1474649,3, +24985503_256901,07:04:00,07:04:00,1474648,4, +24985503_256901,07:12:00,07:13:00,1474647,5, +24985503_256901,07:18:00,07:18:00,1474751,6, +24985503_256901,07:21:00,07:21:00,1474750,7, +24985503_256901,07:23:00,07:24:00,1474749,8, +24985503_256901,07:28:00,07:28:00,1474774,9, +24985504_256902,06:31:00,06:31:00,1474650,0, +24985504_256902,06:36:00,06:36:00,1474754,1, +24985504_256902,06:47:00,06:47:00,1474753,2, +24985504_256902,06:54:00,06:55:00,1474649,3, +24985504_256902,07:04:00,07:04:00,1474648,4, +24985504_256902,07:12:00,07:13:00,1474752,5, +24985504_256902,07:17:00,07:17:00,1474751,6, +24985504_256902,07:20:00,07:20:00,1474750,7, +24985504_256902,07:22:00,07:23:00,1474749,8, +24985504_256902,07:27:00,07:27:00,1474774,9, +24985506_256904,07:51:00,07:51:00,1474774,0, +24985506_256904,07:53:00,07:54:00,1474810,1, +24985506_256904,07:59:00,07:59:00,1474773,2, +24985506_256904,08:02:00,08:03:00,1474772,3, +24985506_256904,08:08:00,08:08:00,1474771,4, +24985506_256904,08:16:00,08:17:00,1474811,5, +24985506_256904,08:21:00,08:21:00,1474769,6, +24985506_256904,08:28:00,08:28:00,1474768,7, +24985506_256904,08:33:00,08:34:00,1474767,8, +24985506_256904,08:38:00,08:38:00,1474812,9, +24985506_256904,08:41:00,08:41:00,1474813,10, +24985506_256904,08:46:00,08:46:00,1474814,11, +24985506_256904,08:49:00,08:49:00,1474815,12, +24985506_256904,08:53:00,08:59:00,1474762,13, +24985506_256904,09:02:00,09:02:00,1474761,14, +24985506_256904,09:07:00,09:07:00,1474760,15, +24985507_256905,07:51:00,07:51:00,1474774,0, +24985507_256905,07:53:00,07:54:00,1474810,1, +24985507_256905,07:59:00,07:59:00,1474773,2, +24985507_256905,08:02:00,08:03:00,1474772,3, +24985507_256905,08:08:00,08:08:00,1474771,4, +24985507_256905,08:16:00,08:17:00,1474811,5, +24985507_256905,08:21:00,08:21:00,1474769,6, +24985507_256905,08:28:00,08:28:00,1474768,7, +24985507_256905,08:33:00,08:34:00,1474767,8, +24985507_256905,08:38:00,08:38:00,1474812,9, +24985507_256905,08:41:00,08:41:00,1474813,10, +24985507_256905,08:46:00,08:46:00,1474814,11, +24985507_256905,08:49:00,08:49:00,1474815,12, +24985507_256905,08:53:00,08:54:00,1474817,13, +24985507_256905,08:57:00,08:57:00,1474761,14, +24985507_256905,09:02:00,09:08:00,1474781,15, +24985507_256905,09:16:00,09:16:00,1474816,16, +24985507_256905,09:20:00,09:20:00,1474779,17, +24985512_256910,13:39:00,13:39:00,1474650,0, +24985512_256910,13:44:00,13:44:00,1474754,1, +24985512_256910,13:55:00,13:56:00,1474753,2, +24985512_256910,14:02:00,14:03:00,1474649,3, +24985512_256910,14:12:00,14:12:00,1474648,4, +24985512_256910,14:19:00,14:20:00,1474647,5, +24985512_256910,14:25:00,14:25:00,1474751,6, +24985512_256910,14:28:00,14:28:00,1474750,7, +24985512_256910,14:30:00,14:31:00,1474749,8, +24985512_256910,14:35:00,14:35:00,1474774,9, +24985514_256912,13:36:00,13:36:00,1474650,0, +24985514_256912,13:41:00,13:41:00,1474754,1, +24985514_256912,13:52:00,13:53:00,1474753,2, +24985514_256912,13:59:00,13:59:00,1474649,3, +24985514_256912,14:09:00,14:09:00,1474648,4, +24985514_256912,14:16:00,14:17:00,1474752,5, +24985514_256912,14:21:00,14:21:00,1474751,6, +24985514_256912,14:24:00,14:24:00,1474750,7, +24985514_256912,14:26:00,14:26:00,1474749,8, +24985514_256912,14:30:00,14:30:00,1474774,9, +24985517_256915,15:44:00,15:44:00,1474650,0, +24985517_256915,15:48:00,15:49:00,1474754,1, +24985517_256915,15:59:00,16:00:00,1474753,2, +24985517_256915,16:06:00,16:07:00,1474649,3, +24985517_256915,16:16:00,16:16:00,1474648,4, +24985517_256915,16:23:00,16:28:00,1474647,5, +24985517_256915,16:33:00,16:33:00,1474751,6, +24985517_256915,16:36:00,16:37:00,1474750,7, +24985517_256915,16:39:00,16:39:00,1474749,8, +24985517_256915,16:43:00,16:59:00,1474646,9, +24985517_256915,17:01:00,17:02:00,1474810,10, +24985517_256915,17:07:00,17:07:00,1474773,11, +24985517_256915,17:11:00,17:11:00,1474772,12, +24985517_256915,17:16:00,17:17:00,1474771,13, +24985517_256915,17:25:00,17:25:00,1474811,14, +24985517_256915,17:29:00,17:29:00,1474769,15, +24985517_256915,17:36:00,17:37:00,1474768,16, +24985517_256915,17:42:00,17:42:00,1474767,17, +24985517_256915,17:46:00,17:46:00,1474812,18, +24985517_256915,17:49:00,17:49:00,1474813,19, +24985517_256915,17:53:00,17:54:00,1474814,20, +24985517_256915,17:56:00,17:57:00,1474815,21, +24985517_256915,18:00:00,18:01:00,1474762,22, +24985517_256915,18:04:00,18:04:00,1474761,23, +24985517_256915,18:09:00,18:09:00,1474760,24, +24985518_256916,15:42:00,15:42:00,1474650,0, +24985518_256916,15:47:00,15:47:00,1474754,1, +24985518_256916,15:58:00,15:58:00,1474753,2, +24985518_256916,16:04:00,16:05:00,1474649,3, +24985518_256916,16:14:00,16:14:00,1474648,4, +24985518_256916,16:22:00,16:32:00,1474752,5, +24985518_256916,16:36:00,16:36:00,1474751,6, +24985518_256916,16:39:00,16:40:00,1474750,7, +24985518_256916,16:42:00,16:43:00,1474749,8, +24985518_256916,16:47:00,16:59:00,1474646,9, +24985518_256916,17:01:00,17:02:00,1474810,10, +24985518_256916,17:07:00,17:07:00,1474773,11, +24985518_256916,17:11:00,17:11:00,1474772,12, +24985518_256916,17:16:00,17:17:00,1474771,13, +24985518_256916,17:25:00,17:25:00,1474811,14, +24985518_256916,17:29:00,17:29:00,1474769,15, +24985518_256916,17:36:00,17:37:00,1474768,16, +24985518_256916,17:42:00,17:42:00,1474767,17, +24985518_256916,17:46:00,17:46:00,1474812,18, +24985518_256916,17:49:00,17:49:00,1474813,19, +24985518_256916,17:53:00,17:54:00,1474814,20, +24985518_256916,17:56:00,17:57:00,1474815,21, +24985518_256916,18:00:00,18:01:00,1474762,22, +24985518_256916,18:04:00,18:04:00,1474761,23, +24985518_256916,18:09:00,18:09:00,1474760,24, +24985521_256919,15:44:00,15:44:00,1474650,0, +24985521_256919,15:48:00,15:49:00,1474754,1, +24985521_256919,15:59:00,16:00:00,1474753,2, +24985521_256919,16:06:00,16:07:00,1474649,3, +24985521_256919,16:16:00,16:16:00,1474648,4, +24985521_256919,16:23:00,16:28:00,1474647,5, +24985521_256919,16:33:00,16:33:00,1474751,6, +24985521_256919,16:36:00,16:37:00,1474750,7, +24985521_256919,16:39:00,16:39:00,1474749,8, +24985521_256919,16:43:00,16:43:00,1474646,9, +24985522_256920,15:42:00,15:42:00,1474650,0, +24985522_256920,15:47:00,15:47:00,1474754,1, +24985522_256920,15:58:00,15:58:00,1474753,2, +24985522_256920,16:04:00,16:05:00,1474649,3, +24985522_256920,16:14:00,16:14:00,1474648,4, +24985522_256920,16:22:00,16:32:00,1474752,5, +24985522_256920,16:36:00,16:36:00,1474751,6, +24985522_256920,16:39:00,16:40:00,1474750,7, +24985522_256920,16:42:00,16:43:00,1474749,8, +24985522_256920,16:47:00,16:47:00,1474774,9, +24985526_256924,19:10:00,19:10:00,1474774,0, +24985526_256924,19:12:00,19:13:00,1474810,1, +24985526_256924,19:18:00,19:18:00,1474773,2, +24985526_256924,19:21:00,19:21:00,1474772,3, +24985526_256924,19:27:00,19:27:00,1474771,4, +24985526_256924,19:35:00,19:35:00,1474811,5, +24985526_256924,19:38:00,19:39:00,1474769,6, +24985526_256924,19:46:00,19:46:00,1474768,7, +24985526_256924,19:51:00,19:51:00,1474767,8, +24985526_256924,19:56:00,19:56:00,1474812,9, +24985526_256924,19:58:00,19:59:00,1474813,10, +24985526_256924,20:03:00,20:03:00,1474814,11, +24985526_256924,20:06:00,20:11:00,1474815,12, +24985526_256924,20:14:00,20:15:00,1474762,13, +24985526_256924,20:18:00,20:18:00,1474761,14, +24985526_256924,20:23:00,20:25:00,1474760,15, +24985526_256924,20:33:00,20:34:00,1474820,16, +24985526_256924,20:45:00,20:45:00,1474821,17, +24985526_256924,20:54:00,20:54:00,1474757,18, +24985526_256924,21:02:00,21:02:00,1474822,19, +24985526_256924,21:14:00,21:14:00,1474823,20, +24985529_256927,19:10:00,19:10:00,1474774,0, +24985529_256927,19:12:00,19:13:00,1474810,1, +24985529_256927,19:18:00,19:18:00,1474773,2, +24985529_256927,19:21:00,19:21:00,1474772,3, +24985529_256927,19:27:00,19:27:00,1474771,4, +24985529_256927,19:35:00,19:35:00,1474811,5, +24985529_256927,19:39:00,19:39:00,1474769,6, +24985529_256927,19:46:00,19:47:00,1474768,7, +24985529_256927,19:52:00,19:52:00,1474767,8, +24985529_256927,19:56:00,19:57:00,1474812,9, +24985529_256927,19:59:00,19:59:00,1474813,10, +24985529_256927,20:04:00,20:04:00,1474814,11, +24985529_256927,20:07:00,20:12:00,1474815,12, +24985529_256927,20:15:00,20:16:00,1474762,13, +24985529_256927,20:19:00,20:19:00,1474761,14, +24985529_256927,20:24:00,20:24:00,1474760,15, +24985529_256927,20:32:00,20:32:00,1474820,16, +24985529_256927,20:43:00,20:43:00,1474821,17, +24985529_256927,20:50:00,20:50:00,1474757,18, +24985529_256927,20:58:00,20:58:00,1474822,19, +24985529_256927,21:10:00,21:10:00,1474823,20, +24985532_256930,20:27:00,20:27:00,1474650,0, +24985532_256930,20:32:00,20:32:00,1474754,1, +24985532_256930,20:43:00,20:43:00,1474753,2, +24985532_256930,20:50:00,20:50:00,1474649,3, +24985532_256930,20:59:00,20:59:00,1474648,4, +24985532_256930,21:07:00,21:07:00,1474647,5, +24985532_256930,21:12:00,21:12:00,1474751,6, +24985532_256930,21:15:00,21:15:00,1474750,7, +24985532_256930,21:18:00,21:18:00,1474749,8, +24985532_256930,21:21:00,21:22:00,1474646,9, +24985532_256930,21:25:00,21:25:00,1474810,10, +24985533_256931,20:25:00,20:25:00,1474650,0, +24985533_256931,20:30:00,20:30:00,1474754,1, +24985533_256931,20:41:00,20:41:00,1474753,2, +24985533_256931,20:48:00,20:48:00,1474649,3, +24985533_256931,20:57:00,20:57:00,1474648,4, +24985533_256931,21:05:00,21:05:00,1474752,5, +24985533_256931,21:09:00,21:09:00,1474751,6, +24985533_256931,21:12:00,21:12:00,1474750,7, +24985533_256931,21:14:00,21:15:00,1474749,8, +24985533_256931,21:18:00,21:18:00,1474774,9, +24985533_256931,21:21:00,21:21:00,1474645,10, +24985535_256933,06:48:00,06:48:00,1474758,0, +24985535_256933,06:55:00,06:55:00,1474832,1, +24985535_256933,07:02:00,07:02:00,1474831,2, +24985535_256933,07:08:00,07:08:00,1474830,3, +24985535_256933,07:15:00,07:15:00,1474829,4, +24985536_256934,06:47:00,06:47:00,1474758,0, +24985536_256934,06:54:00,06:54:00,1474832,1, +24985536_256934,07:01:00,07:01:00,1474831,2, +24985536_256934,07:07:00,07:07:00,1474830,3, +24985536_256934,07:14:00,07:14:00,1474829,4, +24985537_256935,07:57:00,07:57:00,1474758,0, +24985537_256935,08:04:00,08:05:00,1474832,1, +24985537_256935,08:11:00,08:12:00,1474831,2, +24985537_256935,08:17:00,08:18:00,1474830,3, +24985537_256935,08:24:00,08:24:00,1474829,4, +24985538_256936,07:57:00,07:57:00,1474758,0, +24985538_256936,08:04:00,08:05:00,1474832,1, +24985538_256936,08:11:00,08:12:00,1474831,2, +24985538_256936,08:17:00,08:18:00,1474830,3, +24985538_256936,08:24:00,08:25:00,1474829,4, +24985538_256936,08:29:00,08:29:00,1474828,5, +24985538_256936,08:32:00,08:32:00,1474827,6, +24985538_256936,08:46:00,08:46:00,1474825,7, +24985538_256936,08:50:00,08:50:00,1474824,8, +24985539_256937,07:57:00,07:57:00,1474758,0, +24985539_256937,08:04:00,08:05:00,1474832,1, +24985539_256937,08:11:00,08:12:00,1474831,2, +24985539_256937,08:17:00,08:18:00,1474830,3, +24985539_256937,08:24:00,08:24:00,1474829,4, +24985542_256940,10:06:00,10:06:00,1474758,0, +24985542_256940,10:13:00,10:14:00,1474832,1, +24985542_256940,10:20:00,10:21:00,1474831,2, +24985542_256940,10:26:00,10:27:00,1474830,3, +24985542_256940,10:34:00,10:34:00,1474829,4, +24985544_256942,10:08:00,10:08:00,1474758,0, +24985544_256942,10:16:00,10:19:00,1474832,1, +24985544_256942,10:25:00,10:25:00,1474831,2, +24985544_256942,10:31:00,10:31:00,1474830,3, +24985544_256942,10:38:00,10:38:00,1474829,4, +24985547_256945,12:04:00,12:04:00,1474758,0, +24985547_256945,12:11:00,12:14:00,1474832,1, +24985547_256945,12:20:00,12:21:00,1474831,2, +24985547_256945,12:26:00,12:27:00,1474830,3, +24985547_256945,12:34:00,12:35:00,1474829,4, +24985547_256945,12:39:00,12:39:00,1474828,5, +24985547_256945,12:42:00,12:42:00,1474827,6, +24985547_256945,12:48:00,12:48:00,1474826,7, +24985547_256945,12:56:00,12:56:00,1474825,8, +24985547_256945,13:00:00,13:00:00,1474824,9, +24985548_256946,12:06:00,12:06:00,1474758,0, +24985548_256946,12:13:00,12:14:00,1474832,1, +24985548_256946,12:20:00,12:21:00,1474831,2, +24985548_256946,12:26:00,12:27:00,1474830,3, +24985548_256946,12:34:00,12:34:00,1474829,4, +24985550_256948,15:03:00,15:03:00,1474758,0, +24985550_256948,15:11:00,15:14:00,1474832,1, +24985550_256948,15:20:00,15:21:00,1474831,2, +24985550_256948,15:26:00,15:27:00,1474830,3, +24985550_256948,15:34:00,15:34:00,1474829,4, +24985551_256949,15:06:00,15:06:00,1474758,0, +24985551_256949,15:13:00,15:14:00,1474832,1, +24985551_256949,15:20:00,15:21:00,1474831,2, +24985551_256949,15:26:00,15:27:00,1474830,3, +24985551_256949,15:34:00,15:34:00,1474829,4, +24985553_256951,17:00:00,17:00:00,1474758,0, +24985553_256951,17:07:00,17:07:00,1474832,1, +24985553_256951,17:14:00,17:14:00,1474831,2, +24985553_256951,17:20:00,17:20:00,1474830,3, +24985553_256951,17:27:00,17:27:00,1474829,4, +24985554_256952,17:00:00,17:00:00,1474758,0, +24985554_256952,17:07:00,17:07:00,1474832,1, +24985554_256952,17:14:00,17:14:00,1474831,2, +24985554_256952,17:20:00,17:20:00,1474830,3, +24985554_256952,17:27:00,17:28:00,1474829,4, +24985554_256952,17:32:00,17:32:00,1474828,5, +24985554_256952,17:35:00,17:35:00,1474827,6, +24985554_256952,17:53:00,17:53:00,1474825,7, +24985554_256952,17:57:00,17:57:00,1474824,8, +24985555_256953,17:00:00,17:00:00,1474758,0, +24985555_256953,17:07:00,17:07:00,1474832,1, +24985555_256953,17:14:00,17:14:00,1474831,2, +24985555_256953,17:20:00,17:20:00,1474830,3, +24985555_256953,17:27:00,17:27:00,1474829,4, +24985557_256955,19:10:00,19:10:00,1474758,0, +24985557_256955,19:17:00,19:18:00,1474832,1, +24985557_256955,19:24:00,19:25:00,1474831,2, +24985557_256955,19:30:00,19:31:00,1474830,3, +24985557_256955,19:37:00,19:38:00,1474829,4, +24985557_256955,19:42:00,19:42:00,1474828,5, +24985557_256955,19:45:00,19:45:00,1474827,6, +24985557_256955,19:51:00,19:51:00,1474826,7, +24985557_256955,19:59:00,19:59:00,1474825,8, +24985557_256955,20:03:00,20:03:00,1474824,9, +24985558_256956,19:10:00,19:10:00,1474758,0, +24985558_256956,19:17:00,19:18:00,1474832,1, +24985558_256956,19:24:00,19:25:00,1474831,2, +24985558_256956,19:30:00,19:31:00,1474830,3, +24985558_256956,19:37:00,19:37:00,1474829,4, +24985561_256959,05:28:00,05:28:00,1474836,0, +24985561_256959,05:33:00,05:33:00,1474837,1, +24985561_256959,05:37:00,05:37:00,1474838,2, +24985561_256959,05:44:00,05:45:00,1474839,3, +24985561_256959,05:48:00,05:49:00,1474840,4, +24985561_256959,05:55:00,05:55:00,1474841,5, +24985561_256959,06:06:00,06:06:00,1474842,6, +24985562_256960,05:28:00,05:28:00,1657886,0, +24985562_256960,05:33:00,05:33:00,1474837,1, +24985562_256960,05:36:00,05:37:00,1474838,2, +24985562_256960,05:44:00,05:45:00,1474839,3, +24985562_256960,05:48:00,05:49:00,1474840,4, +24985562_256960,05:55:00,05:55:00,1474841,5, +24985562_256960,06:06:00,06:06:00,1474842,6, +24985563_256961,07:45:00,07:45:00,1474836,0, +24985563_256961,07:50:00,07:50:00,1474837,1, +24985563_256961,07:53:00,07:54:00,1474838,2, +24985563_256961,08:01:00,08:02:00,1474839,3, +24985563_256961,08:05:00,08:06:00,1474840,4, +24985563_256961,08:12:00,08:12:00,1474841,5, +24985563_256961,08:23:00,08:23:00,1474842,6, +24985564_256962,07:45:00,07:45:00,1657886,0, +24985564_256962,07:50:00,07:50:00,1474837,1, +24985564_256962,07:53:00,07:54:00,1474838,2, +24985564_256962,08:01:00,08:02:00,1474839,3, +24985564_256962,08:05:00,08:06:00,1474840,4, +24985564_256962,08:12:00,08:12:00,1474841,5, +24985564_256962,08:23:00,08:23:00,1474842,6, +24985566_256964,11:04:00,11:04:00,1474836,0, +24985566_256964,11:09:00,11:09:00,1474837,1, +24985566_256964,11:13:00,11:13:00,1474838,2, +24985566_256964,11:20:00,11:21:00,1474839,3, +24985566_256964,11:24:00,11:25:00,1474840,4, +24985566_256964,11:31:00,11:32:00,1474841,5, +24985566_256964,11:42:00,11:42:00,1474842,6, +24985567_256965,11:04:00,11:04:00,1657886,0, +24985567_256965,11:09:00,11:09:00,1474837,1, +24985567_256965,11:13:00,11:13:00,1474838,2, +24985567_256965,11:20:00,11:21:00,1474839,3, +24985567_256965,11:24:00,11:25:00,1474840,4, +24985567_256965,11:31:00,11:32:00,1474841,5, +24985567_256965,11:42:00,11:42:00,1474842,6, +24985569_256967,13:27:00,13:27:00,1657886,0, +24985569_256967,13:32:00,13:32:00,1474837,1, +24985569_256967,13:35:00,13:36:00,1474838,2, +24985569_256967,13:43:00,13:44:00,1474839,3, +24985569_256967,13:47:00,13:48:00,1474840,4, +24985569_256967,13:54:00,13:54:00,1474841,5, +24985569_256967,14:05:00,14:05:00,1474842,6, +24985570_256968,15:05:00,15:05:00,1474836,0, +24985570_256968,15:09:00,15:10:00,1474837,1, +24985570_256968,15:13:00,15:13:00,1474838,2, +24985570_256968,15:20:00,15:21:00,1474839,3, +24985570_256968,15:24:00,15:25:00,1474840,4, +24985570_256968,15:31:00,15:32:00,1474841,5, +24985570_256968,15:43:00,15:43:00,1474842,6, +24985571_256969,15:05:00,15:05:00,1657886,0, +24985571_256969,15:09:00,15:10:00,1474837,1, +24985571_256969,15:13:00,15:13:00,1474838,2, +24985571_256969,15:20:00,15:21:00,1474839,3, +24985571_256969,15:24:00,15:25:00,1474840,4, +24985571_256969,15:31:00,15:32:00,1474841,5, +24985571_256969,15:43:00,15:43:00,1474842,6, +24985573_256971,17:01:00,17:01:00,1474836,0, +24985573_256971,17:06:00,17:06:00,1474837,1, +24985573_256971,17:10:00,17:10:00,1474838,2, +24985573_256971,17:18:00,17:19:00,1474839,3, +24985573_256971,17:23:00,17:23:00,1474840,4, +24985573_256971,17:30:00,17:30:00,1474841,5, +24985573_256971,17:40:00,17:40:00,1474842,6, +24985574_256972,16:59:00,16:59:00,1657886,0, +24985574_256972,17:04:00,17:04:00,1474837,1, +24985574_256972,17:07:00,17:08:00,1474838,2, +24985574_256972,17:16:00,17:17:00,1474839,3, +24985574_256972,17:21:00,17:21:00,1474840,4, +24985574_256972,17:28:00,17:28:00,1474841,5, +24985574_256972,17:38:00,17:38:00,1474842,6, +24985575_256973,19:04:00,19:04:00,1474836,0, +24985575_256973,19:09:00,19:09:00,1474837,1, +24985575_256973,19:12:00,19:13:00,1474838,2, +24985575_256973,19:21:00,19:22:00,1474839,3, +24985575_256973,19:25:00,19:25:00,1474840,4, +24985575_256973,19:32:00,19:32:00,1474841,5, +24985575_256973,19:42:00,19:42:00,1474842,6, +24985576_256974,19:04:00,19:04:00,1657886,0, +24985576_256974,19:09:00,19:09:00,1474837,1, +24985576_256974,19:12:00,19:13:00,1474838,2, +24985576_256974,19:21:00,19:22:00,1474839,3, +24985576_256974,19:25:00,19:25:00,1474840,4, +24985576_256974,19:32:00,19:32:00,1474841,5, +24985576_256974,19:42:00,19:42:00,1474842,6, +24985578_256976,20:52:00,20:52:00,1474836,0, +24985578_256976,20:57:00,20:57:00,1474837,1, +24985578_256976,21:01:00,21:01:00,1474838,2, +24985578_256976,21:09:00,21:10:00,1474839,3, +24985578_256976,21:13:00,21:13:00,1474840,4, +24985578_256976,21:21:00,21:21:00,1474841,5, +24985578_256976,21:31:00,21:31:00,1474842,6, +24985579_256977,20:50:00,20:50:00,1657886,0, +24985579_256977,20:54:00,20:55:00,1474837,1, +24985579_256977,20:58:00,20:58:00,1474838,2, +24985579_256977,21:06:00,21:07:00,1474839,3, +24985579_256977,21:10:00,21:10:00,1474840,4, +24985579_256977,21:17:00,21:17:00,1474841,5, +24985579_256977,21:28:00,21:28:00,1474842,6, +24985582_256980,06:32:00,06:32:00,1474842,0, +24985582_256980,06:42:00,06:42:00,1474841,1, +24985582_256980,06:48:00,06:48:00,1474840,2, +24985582_256980,06:52:00,06:58:00,1474839,3, +24985582_256980,07:05:00,07:06:00,1474845,4, +24985582_256980,07:09:00,07:09:00,1474846,5, +24985582_256980,07:16:00,07:16:00,1474836,6, +24985583_256981,06:32:00,06:32:00,1474842,0, +24985583_256981,06:43:00,06:43:00,1474841,1, +24985583_256981,06:49:00,06:49:00,1474840,2, +24985583_256981,06:53:00,06:57:00,1474839,3, +24985583_256981,07:04:00,07:05:00,1474845,4, +24985583_256981,07:08:00,07:08:00,1474846,5, +24985583_256981,07:14:00,07:14:00,1474843,6, +24985586_256984,08:37:00,08:37:00,1474842,0, +24985586_256984,08:47:00,08:47:00,1474841,1, +24985586_256984,08:53:00,08:54:00,1474840,2, +24985586_256984,08:57:00,08:58:00,1474839,3, +24985586_256984,09:05:00,09:06:00,1474845,4, +24985586_256984,09:09:00,09:09:00,1474846,5, +24985586_256984,09:15:00,09:15:00,1474836,6, +24985587_256985,08:37:00,08:37:00,1474842,0, +24985587_256985,08:47:00,08:48:00,1474841,1, +24985587_256985,08:54:00,08:54:00,1474840,2, +24985587_256985,08:57:00,08:58:00,1474839,3, +24985587_256985,09:06:00,09:06:00,1474845,4, +24985587_256985,09:09:00,09:10:00,1474846,5, +24985587_256985,09:16:00,09:16:00,1657886,6, +24985589_256987,11:52:00,11:52:00,1474842,0, +24985589_256987,12:02:00,12:02:00,1474841,1, +24985589_256987,12:08:00,12:09:00,1474840,2, +24985589_256987,12:12:00,12:13:00,1474839,3, +24985589_256987,12:20:00,12:21:00,1474845,4, +24985589_256987,12:24:00,12:24:00,1474846,5, +24985589_256987,12:30:00,12:30:00,1474836,6, +24985590_256988,11:52:00,11:52:00,1474842,0, +24985590_256988,12:02:00,12:03:00,1474841,1, +24985590_256988,12:09:00,12:09:00,1474840,2, +24985590_256988,12:13:00,12:14:00,1474839,3, +24985590_256988,12:21:00,12:21:00,1474845,4, +24985590_256988,12:25:00,12:25:00,1474846,5, +24985590_256988,12:31:00,12:31:00,1657886,6, +24985591_256989,14:12:00,14:12:00,1474842,0, +24985591_256989,14:22:00,14:22:00,1474841,1, +24985591_256989,14:28:00,14:28:00,1474840,2, +24985591_256989,14:32:00,14:33:00,1474839,3, +24985591_256989,14:40:00,14:41:00,1474845,4, +24985591_256989,14:44:00,14:44:00,1474846,5, +24985591_256989,14:51:00,14:51:00,1474836,6, +24985592_256990,14:12:00,14:12:00,1474842,0, +24985592_256990,14:22:00,14:22:00,1474841,1, +24985592_256990,14:28:00,14:28:00,1474840,2, +24985592_256990,14:32:00,14:33:00,1474839,3, +24985592_256990,14:40:00,14:41:00,1474845,4, +24985592_256990,14:44:00,14:44:00,1474846,5, +24985592_256990,14:51:00,14:51:00,1657886,6, +24985593_256991,15:51:00,15:51:00,1474842,0, +24985593_256991,16:01:00,16:01:00,1474841,1, +24985593_256991,16:07:00,16:08:00,1474840,2, +24985593_256991,16:11:00,16:12:00,1474839,3, +24985593_256991,16:19:00,16:20:00,1474845,4, +24985593_256991,16:23:00,16:24:00,1474846,5, +24985593_256991,16:30:00,16:30:00,1474836,6, +24985594_256992,15:51:00,15:51:00,1474842,0, +24985594_256992,16:01:00,16:01:00,1474841,1, +24985594_256992,16:07:00,16:08:00,1474840,2, +24985594_256992,16:11:00,16:12:00,1474839,3, +24985594_256992,16:19:00,16:20:00,1474845,4, +24985594_256992,16:23:00,16:24:00,1474846,5, +24985594_256992,16:30:00,16:30:00,1657886,6, +24985595_256993,17:59:00,17:59:00,1474842,0, +24985595_256993,18:09:00,18:10:00,1474841,1, +24985595_256993,18:16:00,18:16:00,1474840,2, +24985595_256993,18:20:00,18:21:00,1474839,3, +24985595_256993,18:28:00,18:28:00,1474845,4, +24985595_256993,18:32:00,18:32:00,1474846,5, +24985595_256993,18:38:00,18:38:00,1474836,6, +24985596_256994,17:59:00,17:59:00,1474842,0, +24985596_256994,18:09:00,18:10:00,1474841,1, +24985596_256994,18:16:00,18:16:00,1474840,2, +24985596_256994,18:20:00,18:21:00,1474839,3, +24985596_256994,18:28:00,18:28:00,1474845,4, +24985596_256994,18:32:00,18:32:00,1474846,5, +24985596_256994,18:38:00,18:38:00,1657886,6, +24985597_256995,19:49:00,19:49:00,1474842,0, +24985597_256995,19:59:00,20:00:00,1474841,1, +24985597_256995,20:06:00,20:06:00,1474840,2, +24985597_256995,20:09:00,20:10:00,1474839,3, +24985597_256995,20:18:00,20:18:00,1474845,4, +24985597_256995,20:21:00,20:22:00,1474846,5, +24985597_256995,20:28:00,20:28:00,1474836,6, +24985598_256996,19:49:00,19:49:00,1474842,0, +24985598_256996,19:59:00,20:00:00,1474841,1, +24985598_256996,20:06:00,20:06:00,1474840,2, +24985598_256996,20:09:00,20:10:00,1474839,3, +24985598_256996,20:18:00,20:18:00,1474845,4, +24985598_256996,20:21:00,20:22:00,1474846,5, +24985598_256996,20:28:00,20:28:00,1657886,6, +24985600_256998,22:09:00,22:09:00,1474842,0, +24985600_256998,22:19:00,22:20:00,1474841,1, +24985600_256998,22:26:00,22:26:00,1474840,2, +24985600_256998,22:30:00,22:31:00,1474839,3, +24985600_256998,22:38:00,22:38:00,1474845,4, +24985600_256998,22:42:00,22:42:00,1474846,5, +24985600_256998,22:48:00,22:48:00,1474836,6, +24985601_256999,22:09:00,22:09:00,1474842,0, +24985601_256999,22:19:00,22:20:00,1474841,1, +24985601_256999,22:26:00,22:26:00,1474840,2, +24985601_256999,22:30:00,22:31:00,1474839,3, +24985601_256999,22:38:00,22:38:00,1474845,4, +24985601_256999,22:42:00,22:42:00,1474846,5, +24985601_256999,22:48:00,22:48:00,1657886,6, +24985604_257002,03:45:00,03:45:00,1474810,0, +24985604_257002,03:48:00,03:48:00,1474847,1, +24985604_257002,03:54:00,03:54:00,1474848,2, +24985604_257002,03:56:00,03:56:00,1474849,3, +24985604_257002,04:03:00,04:04:00,1474850,4, +24985604_257002,04:08:00,04:09:00,1474851,5, +24985604_257002,04:15:00,04:16:00,1474642,6, +24985604_257002,04:21:00,04:21:00,1474852,7, +24985604_257002,04:26:00,04:26:00,1474853,8, +24985604_257002,04:31:00,04:32:00,1474641,9, +24985604_257002,04:35:00,04:35:00,1474854,10, +24985604_257002,04:39:00,04:40:00,1474855,11, +24985604_257002,04:44:00,04:44:00,1474856,12, +24985604_257002,04:49:00,04:49:00,1474857,13, +24985604_257002,04:53:00,04:54:00,1474858,14, +24985604_257002,04:56:00,04:57:00,1474859,15, +24985604_257002,05:04:00,05:04:00,1536279,16, +24985605_257003,03:45:00,03:45:00,1474810,0, +24985605_257003,03:48:00,03:48:00,1474847,1, +24985605_257003,03:54:00,03:54:00,1474848,2, +24985605_257003,03:56:00,03:56:00,1474849,3, +24985605_257003,04:03:00,04:04:00,1474850,4, +24985605_257003,04:08:00,04:09:00,1474851,5, +24985605_257003,04:15:00,04:16:00,1474642,6, +24985605_257003,04:21:00,04:21:00,1474852,7, +24985605_257003,04:26:00,04:26:00,1474853,8, +24985605_257003,04:31:00,04:32:00,1474641,9, +24985605_257003,04:35:00,04:35:00,1474854,10, +24985605_257003,04:39:00,04:40:00,1474855,11, +24985605_257003,04:44:00,04:44:00,1474856,12, +24985605_257003,04:49:00,04:49:00,1474857,13, +24985605_257003,04:53:00,04:54:00,1474858,14, +24985605_257003,04:56:00,04:57:00,1474859,15, +24985605_257003,05:04:00,05:04:00,1536279,16, +24985606_257004,03:45:00,03:45:00,1474810,0, +24985606_257004,03:48:00,03:48:00,1474847,1, +24985606_257004,03:54:00,03:54:00,1474848,2, +24985606_257004,03:56:00,03:56:00,1474849,3, +24985606_257004,04:03:00,04:04:00,1474850,4, +24985606_257004,04:08:00,04:09:00,1474851,5, +24985606_257004,04:15:00,04:16:00,1474642,6, +24985606_257004,04:21:00,04:21:00,1474852,7, +24985606_257004,04:26:00,04:26:00,1474853,8, +24985606_257004,04:31:00,04:32:00,1474641,9, +24985606_257004,04:35:00,04:35:00,1474854,10, +24985606_257004,04:39:00,04:40:00,1474855,11, +24985606_257004,04:44:00,04:44:00,1474856,12, +24985606_257004,04:49:00,04:49:00,1474857,13, +24985606_257004,04:53:00,04:54:00,1474858,14, +24985606_257004,04:56:00,04:57:00,1474859,15, +24985606_257004,05:04:00,05:04:00,1474640,16, +24985607_257005,03:45:00,03:45:00,1474810,0, +24985607_257005,03:48:00,03:48:00,1474847,1, +24985607_257005,03:54:00,03:54:00,1474848,2, +24985607_257005,03:56:00,03:56:00,1474849,3, +24985607_257005,04:03:00,04:04:00,1474850,4, +24985607_257005,04:08:00,04:09:00,1474851,5, +24985607_257005,04:15:00,04:16:00,1474642,6, +24985607_257005,04:21:00,04:21:00,1474852,7, +24985607_257005,04:26:00,04:26:00,1474853,8, +24985607_257005,04:31:00,04:32:00,1474641,9, +24985607_257005,04:35:00,04:35:00,1474854,10, +24985607_257005,04:39:00,04:40:00,1474855,11, +24985607_257005,04:44:00,04:44:00,1474856,12, +24985607_257005,04:49:00,04:49:00,1474857,13, +24985607_257005,04:53:00,04:54:00,1474858,14, +24985607_257005,04:56:00,04:57:00,1474859,15, +24985607_257005,05:04:00,05:04:00,1474640,16, +24985610_257008,04:37:00,04:37:00,1474646,0, +24985610_257008,04:39:00,04:40:00,1474810,1, +24985610_257008,04:43:00,04:44:00,1474847,2, +24985610_257008,04:49:00,04:49:00,1474848,3, +24985610_257008,04:51:00,04:52:00,1474849,4, +24985610_257008,04:58:00,04:59:00,1474850,5, +24985610_257008,05:03:00,05:04:00,1474851,6, +24985610_257008,05:10:00,05:11:00,1474890,7, +24985610_257008,05:15:00,05:16:00,1474852,8, +24985610_257008,05:20:00,05:21:00,1474853,9, +24985610_257008,05:26:00,05:27:00,1474641,10, +24985610_257008,05:30:00,05:31:00,1474854,11, +24985610_257008,05:34:00,05:35:00,1474855,12, +24985610_257008,05:39:00,05:39:00,1474856,13, +24985610_257008,05:43:00,05:44:00,1474857,14, +24985610_257008,05:47:00,05:48:00,1474858,15, +24985610_257008,05:50:00,05:51:00,1474859,16, +24985610_257008,05:57:00,06:02:00,1474640,17, +24985610_257008,06:06:00,06:07:00,1474701,18, +24985610_257008,06:09:00,06:09:00,1474862,19, +24985610_257008,06:11:00,06:11:00,1474863,20, +24985610_257008,06:14:00,06:14:00,1474864,21, +24985610_257008,06:17:00,06:17:00,1474865,22, +24985610_257008,06:19:00,06:20:00,1474866,23, +24985610_257008,06:22:00,06:23:00,1474867,24, +24985610_257008,06:28:00,06:29:00,1474868,25, +24985610_257008,06:32:00,06:33:00,1474869,26, +24985610_257008,06:36:00,06:37:00,1474870,27, +24985610_257008,06:43:00,06:44:00,1474871,28, +24985610_257008,06:47:00,06:47:00,1474872,29, +24985610_257008,06:50:00,06:50:00,1474873,30, +24985610_257008,06:56:00,06:56:00,1474874,31, +24985611_257009,04:37:00,04:37:00,1474646,0, +24985611_257009,04:39:00,04:40:00,1474810,1, +24985611_257009,04:43:00,04:44:00,1474847,2, +24985611_257009,04:49:00,04:49:00,1474848,3, +24985611_257009,04:51:00,04:52:00,1474849,4, +24985611_257009,04:58:00,04:59:00,1474850,5, +24985611_257009,05:03:00,05:04:00,1474851,6, +24985611_257009,05:10:00,05:11:00,1474890,7, +24985611_257009,05:15:00,05:16:00,1474852,8, +24985611_257009,05:20:00,05:21:00,1474853,9, +24985611_257009,05:26:00,05:27:00,1474641,10, +24985611_257009,05:30:00,05:31:00,1474854,11, +24985611_257009,05:34:00,05:35:00,1474855,12, +24985611_257009,05:39:00,05:39:00,1474856,13, +24985611_257009,05:43:00,05:44:00,1474857,14, +24985611_257009,05:47:00,05:48:00,1474858,15, +24985611_257009,05:50:00,05:51:00,1474859,16, +24985611_257009,05:57:00,06:08:00,1474861,17, +24985611_257009,06:13:00,06:14:00,1474701,18, +24985611_257009,06:15:00,06:15:00,1474862,19, +24985611_257009,06:17:00,06:17:00,1474863,20, +24985611_257009,06:20:00,06:20:00,1474864,21, +24985611_257009,06:23:00,06:23:00,1474865,22, +24985611_257009,06:25:00,06:26:00,1474866,23, +24985611_257009,06:28:00,06:29:00,1474867,24, +24985611_257009,06:33:00,06:34:00,1474868,25, +24985611_257009,06:37:00,06:37:00,1474869,26, +24985611_257009,06:41:00,06:41:00,1474870,27, +24985611_257009,06:47:00,06:48:00,1474871,28, +24985611_257009,06:51:00,06:52:00,1474872,29, +24985611_257009,06:54:00,06:55:00,1474873,30, +24985611_257009,07:00:00,07:00:00,1474874,31, +24985613_257011,04:37:00,04:37:00,1474646,0, +24985613_257011,04:39:00,04:40:00,1474810,1, +24985613_257011,04:43:00,04:44:00,1474847,2, +24985613_257011,04:49:00,04:49:00,1474848,3, +24985613_257011,04:51:00,04:52:00,1474849,4, +24985613_257011,04:58:00,04:59:00,1474850,5, +24985613_257011,05:03:00,05:04:00,1474851,6, +24985613_257011,05:10:00,05:11:00,1474642,7, +24985613_257011,05:15:00,05:16:00,1474852,8, +24985613_257011,05:20:00,05:21:00,1474853,9, +24985613_257011,05:26:00,05:27:00,1474641,10, +24985613_257011,05:30:00,05:31:00,1474854,11, +24985613_257011,05:34:00,05:35:00,1474855,12, +24985613_257011,05:39:00,05:39:00,1474856,13, +24985613_257011,05:43:00,05:44:00,1474857,14, +24985613_257011,05:47:00,05:48:00,1474858,15, +24985613_257011,05:50:00,05:51:00,1474859,16, +24985613_257011,05:57:00,05:57:00,1474640,17, +24985614_257012,05:29:00,05:29:00,1474642,0, +24985614_257012,05:34:00,05:34:00,1474852,1, +24985614_257012,05:39:00,05:45:00,1703011,2, +24985614_257012,05:49:00,05:50:00,1474641,3, +24985614_257012,05:54:00,05:54:00,1474854,4, +24985614_257012,05:58:00,05:59:00,1474855,5, +24985614_257012,06:02:00,06:03:00,1474856,6, +24985614_257012,06:07:00,06:07:00,1474857,7, +24985614_257012,06:11:00,06:11:00,1474858,8, +24985614_257012,06:14:00,06:14:00,1474859,9, +24985614_257012,06:21:00,06:21:00,1536279,10, +24985615_257013,05:29:00,05:29:00,1474642,0, +24985615_257013,05:34:00,05:34:00,1474852,1, +24985615_257013,05:39:00,05:45:00,1703011,2, +24985615_257013,05:49:00,05:50:00,1474641,3, +24985615_257013,05:54:00,05:54:00,1474854,4, +24985615_257013,05:58:00,05:59:00,1474855,5, +24985615_257013,06:02:00,06:03:00,1474856,6, +24985615_257013,06:07:00,06:07:00,1474857,7, +24985615_257013,06:11:00,06:11:00,1474858,8, +24985615_257013,06:14:00,06:14:00,1474859,9, +24985615_257013,06:21:00,06:21:00,1474640,10, +24985617_257015,04:59:00,04:59:00,1474875,0, +24985617_257015,05:03:00,05:04:00,1474876,1, +24985617_257015,05:06:00,05:07:00,1474877,2, +24985617_257015,05:10:00,05:11:00,1474878,3, +24985617_257015,05:15:00,05:16:00,1474879,4, +24985617_257015,05:17:00,05:18:00,1474880,5, +24985617_257015,05:22:00,05:23:00,1474881,6, +24985617_257015,05:26:00,05:27:00,1474882,7, +24985617_257015,05:31:00,05:32:00,1474646,8, +24985617_257015,05:34:00,05:42:00,1474810,9, +24985617_257015,05:45:00,05:45:00,1474847,10, +24985617_257015,05:51:00,05:51:00,1474848,11, +24985617_257015,05:53:00,05:54:00,1474849,12, +24985617_257015,06:00:00,06:01:00,1474850,13, +24985617_257015,06:06:00,06:06:00,1474851,14, +24985617_257015,06:12:00,06:13:00,1474890,15, +24985617_257015,06:17:00,06:18:00,1474852,16, +24985617_257015,06:23:00,06:23:00,1474853,17, +24985617_257015,06:28:00,06:29:00,1474641,18, +24985617_257015,06:33:00,06:34:00,1474854,19, +24985617_257015,06:38:00,06:38:00,1474855,20, +24985617_257015,06:42:00,06:42:00,1474856,21, +24985617_257015,06:47:00,06:48:00,1474857,22, +24985617_257015,06:52:00,06:52:00,1474858,23, +24985617_257015,06:55:00,06:55:00,1474859,24, +24985617_257015,07:02:00,07:20:00,1474640,25, +24985617_257015,07:25:00,07:25:00,1474701,26, +24985617_257015,07:27:00,07:27:00,1474862,27, +24985617_257015,07:29:00,07:29:00,1474863,28, +24985617_257015,07:32:00,07:32:00,1474864,29, +24985617_257015,07:35:00,07:36:00,1474865,30, +24985617_257015,07:38:00,07:38:00,1474866,31, +24985617_257015,07:41:00,07:42:00,1474867,32, +24985617_257015,07:46:00,07:47:00,1474868,33, +24985617_257015,07:50:00,07:51:00,1474869,34, +24985617_257015,07:54:00,07:55:00,1474870,35, +24985617_257015,08:01:00,08:01:00,1474871,36, +24985617_257015,08:04:00,08:05:00,1474872,37, +24985617_257015,08:08:00,08:08:00,1474873,38, +24985617_257015,08:14:00,08:14:00,1474874,39, +24985619_257017,05:00:00,05:00:00,1474875,0, +24985619_257017,05:04:00,05:05:00,1474876,1, +24985619_257017,05:07:00,05:08:00,1474877,2, +24985619_257017,05:11:00,05:11:00,1474878,3, +24985619_257017,05:15:00,05:16:00,1474879,4, +24985619_257017,05:17:00,05:18:00,1474880,5, +24985619_257017,05:22:00,05:23:00,1474881,6, +24985619_257017,05:26:00,05:27:00,1474882,7, +24985619_257017,05:31:00,05:32:00,1474646,8, +24985619_257017,05:34:00,05:42:00,1474810,9, +24985619_257017,05:45:00,05:45:00,1474847,10, +24985619_257017,05:51:00,05:51:00,1474848,11, +24985619_257017,05:53:00,05:54:00,1474849,12, +24985619_257017,06:00:00,06:01:00,1474850,13, +24985619_257017,06:06:00,06:06:00,1474851,14, +24985619_257017,06:12:00,06:13:00,1474890,15, +24985619_257017,06:17:00,06:18:00,1474852,16, +24985619_257017,06:23:00,06:23:00,1474853,17, +24985619_257017,06:28:00,06:29:00,1474641,18, +24985619_257017,06:33:00,06:34:00,1474854,19, +24985619_257017,06:38:00,06:38:00,1474855,20, +24985619_257017,06:42:00,06:42:00,1474856,21, +24985619_257017,06:47:00,06:48:00,1474857,22, +24985619_257017,06:52:00,06:52:00,1474858,23, +24985619_257017,06:55:00,06:55:00,1474859,24, +24985619_257017,07:02:00,07:20:00,1474861,25, +24985619_257017,07:25:00,07:26:00,1474701,26, +24985619_257017,07:28:00,07:28:00,1474862,27, +24985619_257017,07:30:00,07:30:00,1474863,28, +24985619_257017,07:33:00,07:33:00,1474864,29, +24985619_257017,07:36:00,07:36:00,1474865,30, +24985619_257017,07:38:00,07:39:00,1474866,31, +24985619_257017,07:41:00,07:42:00,1474867,32, +24985619_257017,07:46:00,07:47:00,1474868,33, +24985619_257017,07:50:00,07:51:00,1474869,34, +24985619_257017,07:54:00,07:55:00,1474870,35, +24985619_257017,08:01:00,08:01:00,1474871,36, +24985619_257017,08:04:00,08:05:00,1474872,37, +24985619_257017,08:08:00,08:08:00,1474873,38, +24985619_257017,08:14:00,08:14:00,1474874,39, +24985621_257019,04:59:00,04:59:00,1474875,0, +24985621_257019,05:03:00,05:04:00,1474876,1, +24985621_257019,05:06:00,05:07:00,1474877,2, +24985621_257019,05:10:00,05:11:00,1474878,3, +24985621_257019,05:15:00,05:16:00,1474879,4, +24985621_257019,05:17:00,05:18:00,1474880,5, +24985621_257019,05:22:00,05:23:00,1474881,6, +24985621_257019,05:26:00,05:27:00,1474882,7, +24985621_257019,05:31:00,05:32:00,1474646,8, +24985621_257019,05:34:00,05:42:00,1474810,9, +24985621_257019,05:45:00,05:45:00,1474847,10, +24985621_257019,05:51:00,05:51:00,1474848,11, +24985621_257019,05:53:00,05:54:00,1474849,12, +24985621_257019,06:00:00,06:01:00,1474850,13, +24985621_257019,06:06:00,06:06:00,1474851,14, +24985621_257019,06:12:00,06:13:00,1474642,15, +24985621_257019,06:17:00,06:18:00,1474852,16, +24985621_257019,06:23:00,06:23:00,1474853,17, +24985621_257019,06:28:00,06:29:00,1474641,18, +24985621_257019,06:33:00,06:34:00,1474854,19, +24985621_257019,06:38:00,06:38:00,1474855,20, +24985621_257019,06:42:00,06:42:00,1474856,21, +24985621_257019,06:47:00,06:48:00,1474857,22, +24985621_257019,06:52:00,06:52:00,1474858,23, +24985621_257019,06:55:00,06:55:00,1474859,24, +24985621_257019,07:02:00,07:02:00,1474640,25, +24985622_257020,05:00:00,05:00:00,1474875,0, +24985622_257020,05:04:00,05:05:00,1474876,1, +24985622_257020,05:07:00,05:08:00,1474877,2, +24985622_257020,05:11:00,05:11:00,1474878,3, +24985622_257020,05:15:00,05:16:00,1474879,4, +24985622_257020,05:17:00,05:18:00,1474880,5, +24985622_257020,05:22:00,05:23:00,1474881,6, +24985622_257020,05:26:00,05:27:00,1474882,7, +24985622_257020,05:31:00,05:32:00,1474646,8, +24985622_257020,05:34:00,05:42:00,1474810,9, +24985622_257020,05:45:00,05:45:00,1474847,10, +24985622_257020,05:51:00,05:51:00,1474848,11, +24985622_257020,05:53:00,05:54:00,1474849,12, +24985622_257020,06:00:00,06:01:00,1474850,13, +24985622_257020,06:06:00,06:06:00,1474851,14, +24985622_257020,06:12:00,06:13:00,1474642,15, +24985622_257020,06:17:00,06:18:00,1474852,16, +24985622_257020,06:23:00,06:23:00,1474853,17, +24985622_257020,06:28:00,06:29:00,1474641,18, +24985622_257020,06:33:00,06:34:00,1474854,19, +24985622_257020,06:38:00,06:38:00,1474855,20, +24985622_257020,06:42:00,06:42:00,1474856,21, +24985622_257020,06:47:00,06:48:00,1474857,22, +24985622_257020,06:52:00,06:52:00,1474858,23, +24985622_257020,06:55:00,06:55:00,1474859,24, +24985622_257020,07:02:00,07:02:00,1474640,25, +24985624_257022,06:06:00,06:06:00,1474646,0, +24985624_257022,06:08:00,06:09:00,1474810,1, +24985624_257022,06:17:00,06:18:00,1474848,2, +24985624_257022,06:26:00,06:29:00,1474850,3, +24985624_257022,06:39:00,06:40:00,1474642,4, +24985624_257022,06:45:00,06:51:00,1474860,5, +24985624_257022,06:56:00,06:56:00,1474853,6, +24985624_257022,07:01:00,07:02:00,1474641,7, +24985624_257022,07:05:00,07:06:00,1474854,8, +24985624_257022,07:10:00,07:10:00,1474855,9, +24985624_257022,07:14:00,07:15:00,1474856,10, +24985624_257022,07:19:00,07:19:00,1474857,11, +24985624_257022,07:23:00,07:24:00,1474858,12, +24985624_257022,07:26:00,07:27:00,1474859,13, +24985624_257022,07:33:00,07:33:00,1474651,14, +24985625_257023,06:07:00,06:07:00,1474646,0, +24985625_257023,06:09:00,06:10:00,1474810,1, +24985625_257023,06:18:00,06:19:00,1474848,2, +24985625_257023,06:27:00,06:29:00,1474850,3, +24985625_257023,06:39:00,06:40:00,1474642,4, +24985625_257023,06:45:00,06:51:00,1474860,5, +24985625_257023,06:56:00,06:56:00,1474853,6, +24985625_257023,07:01:00,07:02:00,1474641,7, +24985625_257023,07:05:00,07:06:00,1474854,8, +24985625_257023,07:10:00,07:10:00,1474855,9, +24985625_257023,07:14:00,07:15:00,1474856,10, +24985625_257023,07:19:00,07:19:00,1474857,11, +24985625_257023,07:23:00,07:24:00,1474858,12, +24985625_257023,07:26:00,07:27:00,1474859,13, +24985625_257023,07:33:00,07:33:00,1474640,14, +24985627_257025,05:57:00,05:57:00,1474875,0, +24985627_257025,06:01:00,06:02:00,1474876,1, +24985627_257025,06:04:00,06:05:00,1474877,2, +24985627_257025,06:08:00,06:09:00,1474878,3, +24985627_257025,06:13:00,06:13:00,1474879,4, +24985627_257025,06:15:00,06:16:00,1474880,5, +24985627_257025,06:21:00,06:27:00,1657891,6, +24985627_257025,06:31:00,06:31:00,1474882,7, +24985627_257025,06:36:00,06:39:00,1474646,8, +24985627_257025,06:42:00,06:43:00,1474810,9, +24985627_257025,06:46:00,06:47:00,1474847,10, +24985627_257025,06:52:00,06:53:00,1474848,11, +24985627_257025,06:55:00,06:55:00,1474849,12, +24985627_257025,06:59:00,06:59:00,1474885,13, +24985627_257025,07:04:00,07:06:00,1474850,14, +24985627_257025,07:11:00,07:11:00,1474851,15, +24985627_257025,07:17:00,07:18:00,1474642,16, +24985627_257025,07:22:00,07:23:00,1474852,17, +24985627_257025,07:28:00,07:28:00,1474853,18, +24985627_257025,07:33:00,07:34:00,1474641,19, +24985627_257025,07:37:00,07:38:00,1474854,20, +24985627_257025,07:42:00,07:42:00,1474855,21, +24985627_257025,07:46:00,07:46:00,1474856,22, +24985627_257025,07:50:00,07:51:00,1474857,23, +24985627_257025,07:54:00,07:55:00,1474858,24, +24985627_257025,07:57:00,07:58:00,1474859,25, +24985627_257025,08:04:00,08:08:00,1474861,26, +24985627_257025,08:12:00,08:13:00,1474701,27, +24985627_257025,08:14:00,08:15:00,1474862,28, +24985627_257025,08:16:00,08:17:00,1474863,29, +24985627_257025,08:19:00,08:20:00,1474864,30, +24985627_257025,08:22:00,08:23:00,1474865,31, +24985627_257025,08:25:00,08:25:00,1474866,32, +24985627_257025,08:28:00,08:28:00,1474867,33, +24985627_257025,08:33:00,08:34:00,1474868,34, +24985627_257025,08:37:00,08:38:00,1474869,35, +24985627_257025,08:41:00,08:42:00,1474870,36, +24985627_257025,08:48:00,08:49:00,1474871,37, +24985627_257025,08:52:00,08:53:00,1474872,38, +24985627_257025,08:55:00,08:56:00,1474873,39, +24985627_257025,09:02:00,09:02:00,1474874,40, +24985628_257026,05:58:00,05:58:00,1474875,0, +24985628_257026,06:02:00,06:02:00,1474876,1, +24985628_257026,06:05:00,06:05:00,1474877,2, +24985628_257026,06:08:00,06:09:00,1474878,3, +24985628_257026,06:13:00,06:13:00,1474879,4, +24985628_257026,06:15:00,06:16:00,1474880,5, +24985628_257026,06:20:00,06:27:00,1474881,6, +24985628_257026,06:30:00,06:31:00,1474882,7, +24985628_257026,06:35:00,06:39:00,1474646,8, +24985628_257026,06:42:00,06:43:00,1474810,9, +24985628_257026,06:46:00,06:47:00,1474847,10, +24985628_257026,06:52:00,06:53:00,1474848,11, +24985628_257026,06:55:00,06:55:00,1474849,12, +24985628_257026,06:59:00,06:59:00,1474885,13, +24985628_257026,07:04:00,07:06:00,1474850,14, +24985628_257026,07:11:00,07:11:00,1474851,15, +24985628_257026,07:17:00,07:18:00,1474642,16, +24985628_257026,07:22:00,07:23:00,1474852,17, +24985628_257026,07:28:00,07:28:00,1474853,18, +24985628_257026,07:33:00,07:34:00,1474641,19, +24985628_257026,07:37:00,07:38:00,1474854,20, +24985628_257026,07:42:00,07:42:00,1474855,21, +24985628_257026,07:46:00,07:46:00,1474856,22, +24985628_257026,07:50:00,07:51:00,1474857,23, +24985628_257026,07:54:00,07:55:00,1474858,24, +24985628_257026,07:57:00,07:58:00,1474859,25, +24985628_257026,08:04:00,08:07:00,1474861,26, +24985628_257026,08:11:00,08:12:00,1474701,27, +24985628_257026,08:13:00,08:13:00,1474862,28, +24985628_257026,08:15:00,08:16:00,1474863,29, +24985628_257026,08:18:00,08:19:00,1474864,30, +24985628_257026,08:21:00,08:22:00,1474865,31, +24985628_257026,08:24:00,08:24:00,1474866,32, +24985628_257026,08:27:00,08:27:00,1474867,33, +24985628_257026,08:32:00,08:33:00,1474868,34, +24985628_257026,08:36:00,08:36:00,1474869,35, +24985628_257026,08:40:00,08:41:00,1474870,36, +24985628_257026,08:47:00,08:48:00,1474871,37, +24985628_257026,08:51:00,08:51:00,1474872,38, +24985628_257026,08:54:00,08:55:00,1474873,39, +24985628_257026,09:00:00,09:00:00,1474874,40, +24985630_257028,06:39:00,06:39:00,1474646,0, +24985630_257028,06:42:00,06:43:00,1474810,1, +24985630_257028,06:46:00,06:47:00,1474847,2, +24985630_257028,06:52:00,06:53:00,1474848,3, +24985630_257028,06:55:00,06:55:00,1474849,4, +24985630_257028,06:59:00,06:59:00,1474885,5, +24985630_257028,07:04:00,07:06:00,1474850,6, +24985630_257028,07:11:00,07:11:00,1474851,7, +24985630_257028,07:17:00,07:18:00,1474642,8, +24985630_257028,07:22:00,07:23:00,1474852,9, +24985630_257028,07:28:00,07:28:00,1474853,10, +24985630_257028,07:33:00,07:34:00,1474641,11, +24985630_257028,07:37:00,07:38:00,1474854,12, +24985630_257028,07:42:00,07:42:00,1474855,13, +24985630_257028,07:46:00,07:46:00,1474856,14, +24985630_257028,07:50:00,07:51:00,1474857,15, +24985630_257028,07:54:00,07:55:00,1474858,16, +24985630_257028,07:57:00,07:58:00,1474859,17, +24985630_257028,08:04:00,08:08:00,1474861,18, +24985630_257028,08:12:00,08:13:00,1474701,19, +24985630_257028,08:14:00,08:15:00,1474862,20, +24985630_257028,08:16:00,08:17:00,1474863,21, +24985630_257028,08:19:00,08:20:00,1474864,22, +24985630_257028,08:22:00,08:23:00,1474865,23, +24985630_257028,08:25:00,08:25:00,1474866,24, +24985630_257028,08:28:00,08:28:00,1474867,25, +24985630_257028,08:33:00,08:34:00,1474868,26, +24985630_257028,08:37:00,08:38:00,1474869,27, +24985630_257028,08:41:00,08:42:00,1474870,28, +24985630_257028,08:48:00,08:49:00,1474871,29, +24985630_257028,08:52:00,08:53:00,1474872,30, +24985630_257028,08:55:00,08:56:00,1474873,31, +24985630_257028,09:02:00,09:02:00,1474874,32, +24985631_257029,06:39:00,06:39:00,1474646,0, +24985631_257029,06:42:00,06:43:00,1474810,1, +24985631_257029,06:46:00,06:47:00,1474847,2, +24985631_257029,06:52:00,06:53:00,1474848,3, +24985631_257029,06:55:00,06:55:00,1474849,4, +24985631_257029,06:59:00,06:59:00,1474885,5, +24985631_257029,07:04:00,07:06:00,1474850,6, +24985631_257029,07:11:00,07:11:00,1474851,7, +24985631_257029,07:17:00,07:18:00,1474642,8, +24985631_257029,07:22:00,07:23:00,1474852,9, +24985631_257029,07:28:00,07:28:00,1474853,10, +24985631_257029,07:33:00,07:34:00,1474641,11, +24985631_257029,07:37:00,07:38:00,1474854,12, +24985631_257029,07:42:00,07:42:00,1474855,13, +24985631_257029,07:46:00,07:46:00,1474856,14, +24985631_257029,07:50:00,07:51:00,1474857,15, +24985631_257029,07:54:00,07:55:00,1474858,16, +24985631_257029,07:57:00,07:58:00,1474859,17, +24985631_257029,08:04:00,08:07:00,1474861,18, +24985631_257029,08:11:00,08:12:00,1474701,19, +24985631_257029,08:13:00,08:13:00,1474862,20, +24985631_257029,08:15:00,08:16:00,1474863,21, +24985631_257029,08:18:00,08:19:00,1474864,22, +24985631_257029,08:21:00,08:22:00,1474865,23, +24985631_257029,08:24:00,08:24:00,1474866,24, +24985631_257029,08:27:00,08:27:00,1474867,25, +24985631_257029,08:32:00,08:33:00,1474868,26, +24985631_257029,08:36:00,08:36:00,1474869,27, +24985631_257029,08:40:00,08:41:00,1474870,28, +24985631_257029,08:47:00,08:48:00,1474871,29, +24985631_257029,08:51:00,08:51:00,1474872,30, +24985631_257029,08:54:00,08:55:00,1474873,31, +24985631_257029,09:00:00,09:00:00,1474874,32, +24985632_257030,08:00:00,08:00:00,1474886,0, +24985632_257030,08:05:00,08:05:00,1474854,1, +24985632_257030,08:10:00,08:10:00,1474855,2, +24985632_257030,08:14:00,08:15:00,1474856,3, +24985632_257030,08:19:00,08:20:00,1474857,4, +24985632_257030,08:24:00,08:25:00,1474858,5, +24985632_257030,08:27:00,08:28:00,1474859,6, +24985632_257030,08:35:00,08:35:00,1474640,7, +24985634_257032,06:58:00,06:58:00,1474875,0, +24985634_257032,07:02:00,07:03:00,1474876,1, +24985634_257032,07:06:00,07:12:00,1474887,2, +24985634_257032,07:15:00,07:15:00,1474878,3, +24985634_257032,07:19:00,07:20:00,1474879,4, +24985634_257032,07:22:00,07:22:00,1474880,5, +24985634_257032,07:27:00,07:27:00,1474881,6, +24985634_257032,07:31:00,07:32:00,1474882,7, +24985634_257032,07:36:00,07:38:00,1474646,8, +24985634_257032,07:41:00,07:42:00,1474810,9, +24985634_257032,07:45:00,07:45:00,1474847,10, +24985634_257032,07:51:00,07:51:00,1474848,11, +24985634_257032,07:53:00,07:54:00,1474849,12, +24985634_257032,08:01:00,08:02:00,1474850,13, +24985634_257032,08:06:00,08:07:00,1474851,14, +24985634_257032,08:13:00,08:14:00,1474642,15, +24985634_257032,08:18:00,08:18:00,1474852,16, +24985634_257032,08:24:00,08:24:00,1474853,17, +24985634_257032,08:29:00,08:30:00,1474641,18, +24985634_257032,08:34:00,08:34:00,1474854,19, +24985634_257032,08:38:00,08:39:00,1474855,20, +24985634_257032,08:43:00,08:43:00,1474856,21, +24985634_257032,08:48:00,08:48:00,1474857,22, +24985634_257032,08:52:00,08:53:00,1474858,23, +24985634_257032,08:55:00,08:56:00,1474859,24, +24985634_257032,09:03:00,09:03:00,1474640,25, +24985635_257033,07:04:00,07:04:00,1474875,0, +24985635_257033,07:08:00,07:09:00,1474876,1, +24985635_257033,07:12:00,07:12:00,1474887,2, +24985635_257033,07:15:00,07:16:00,1474878,3, +24985635_257033,07:20:00,07:20:00,1474879,4, +24985635_257033,07:22:00,07:23:00,1474880,5, +24985635_257033,07:27:00,07:28:00,1474881,6, +24985635_257033,07:31:00,07:32:00,1474882,7, +24985635_257033,07:36:00,07:37:00,1474646,8, +24985635_257033,07:40:00,07:41:00,1474810,9, +24985635_257033,07:44:00,07:44:00,1474847,10, +24985635_257033,07:50:00,07:50:00,1474848,11, +24985635_257033,07:52:00,07:53:00,1474849,12, +24985635_257033,08:00:00,08:01:00,1474850,13, +24985635_257033,08:05:00,08:06:00,1474851,14, +24985635_257033,08:12:00,08:13:00,1474642,15, +24985635_257033,08:17:00,08:18:00,1474852,16, +24985635_257033,08:23:00,08:23:00,1474853,17, +24985635_257033,08:28:00,08:29:00,1474641,18, +24985635_257033,08:33:00,08:33:00,1474854,19, +24985635_257033,08:37:00,08:38:00,1474855,20, +24985635_257033,08:42:00,08:42:00,1474856,21, +24985635_257033,08:47:00,08:47:00,1474857,22, +24985635_257033,08:51:00,08:52:00,1474858,23, +24985635_257033,08:54:00,08:55:00,1474859,24, +24985635_257033,09:02:00,09:02:00,1474640,25, +24985637_257035,08:11:00,08:11:00,1474875,0, +24985637_257035,08:15:00,08:16:00,1474876,1, +24985637_257035,08:18:00,08:19:00,1474877,2, +24985637_257035,08:22:00,08:22:00,1474878,3, +24985637_257035,08:27:00,08:27:00,1474879,4, +24985637_257035,08:29:00,08:29:00,1474880,5, +24985637_257035,08:34:00,08:34:00,1474881,6, +24985637_257035,08:38:00,08:38:00,1474882,7, +24985637_257035,08:43:00,08:43:00,1474646,8, +24985637_257035,08:45:00,08:46:00,1474810,9, +24985637_257035,08:49:00,08:50:00,1474847,10, +24985637_257035,08:55:00,08:55:00,1474848,11, +24985637_257035,08:57:00,08:58:00,1474849,12, +24985637_257035,09:05:00,09:06:00,1474850,13, +24985637_257035,09:10:00,09:16:00,1474883,14, +24985637_257035,09:22:00,09:23:00,1474642,15, +24985637_257035,09:27:00,09:27:00,1474852,16, +24985637_257035,09:32:00,09:32:00,1474853,17, +24985637_257035,09:37:00,09:38:00,1474641,18, +24985637_257035,09:41:00,09:42:00,1474854,19, +24985637_257035,09:45:00,09:46:00,1474855,20, +24985637_257035,09:50:00,09:50:00,1474856,21, +24985637_257035,09:54:00,09:55:00,1474857,22, +24985637_257035,09:58:00,09:59:00,1474858,23, +24985637_257035,10:01:00,10:02:00,1474859,24, +24985637_257035,10:08:00,10:08:00,1474640,25, +24985640_257038,08:11:00,08:11:00,1474889,0, +24985640_257038,08:15:00,08:16:00,1474876,1, +24985640_257038,08:18:00,08:19:00,1474877,2, +24985640_257038,08:22:00,08:22:00,1474878,3, +24985640_257038,08:27:00,08:27:00,1474879,4, +24985640_257038,08:29:00,08:29:00,1474880,5, +24985640_257038,08:34:00,08:34:00,1474881,6, +24985640_257038,08:38:00,08:38:00,1474882,7, +24985640_257038,08:43:00,08:43:00,1474646,8, +24985640_257038,08:45:00,08:46:00,1474810,9, +24985640_257038,08:49:00,08:50:00,1474847,10, +24985640_257038,08:55:00,08:55:00,1474848,11, +24985640_257038,08:57:00,08:58:00,1474849,12, +24985640_257038,09:05:00,09:06:00,1474850,13, +24985640_257038,09:10:00,09:16:00,1474883,14, +24985640_257038,09:22:00,09:23:00,1474642,15, +24985640_257038,09:27:00,09:27:00,1474852,16, +24985640_257038,09:32:00,09:32:00,1474853,17, +24985640_257038,09:37:00,09:38:00,1474641,18, +24985640_257038,09:41:00,09:42:00,1474854,19, +24985640_257038,09:45:00,09:46:00,1474855,20, +24985640_257038,09:50:00,09:50:00,1474856,21, +24985640_257038,09:54:00,09:55:00,1474857,22, +24985640_257038,09:58:00,09:59:00,1474858,23, +24985640_257038,10:01:00,10:02:00,1474859,24, +24985640_257038,10:08:00,10:08:00,1474640,25, +24985641_257039,08:43:00,08:43:00,1474646,0, +24985641_257039,08:45:00,08:46:00,1474810,1, +24985641_257039,08:49:00,08:50:00,1474847,2, +24985641_257039,08:55:00,08:55:00,1474848,3, +24985641_257039,08:57:00,08:58:00,1474849,4, +24985641_257039,09:05:00,09:06:00,1474850,5, +24985641_257039,09:10:00,09:16:00,1474883,6, +24985641_257039,09:22:00,09:23:00,1474642,7, +24985641_257039,09:27:00,09:27:00,1474852,8, +24985641_257039,09:32:00,09:32:00,1474853,9, +24985641_257039,09:37:00,09:38:00,1474641,10, +24985641_257039,09:41:00,09:42:00,1474854,11, +24985641_257039,09:45:00,09:46:00,1474855,12, +24985641_257039,09:50:00,09:50:00,1474856,13, +24985641_257039,09:54:00,09:55:00,1474857,14, +24985641_257039,09:58:00,09:59:00,1474858,15, +24985641_257039,10:01:00,10:02:00,1474859,16, +24985641_257039,10:08:00,10:08:00,1474640,17, +24985643_257041,12:25:00,12:25:00,1474642,0, +24985643_257041,12:30:00,12:31:00,1474852,1, +24985643_257041,12:36:00,12:36:00,1474853,2, +24985643_257041,12:41:00,12:42:00,1474641,3, +24985643_257041,12:45:00,12:46:00,1474854,4, +24985643_257041,12:50:00,12:50:00,1474855,5, +24985643_257041,12:54:00,12:54:00,1474856,6, +24985643_257041,12:59:00,12:59:00,1474857,7, +24985643_257041,13:03:00,13:03:00,1474858,8, +24985643_257041,13:06:00,13:06:00,1474859,9, +24985643_257041,13:13:00,13:28:00,1474861,10, +24985643_257041,13:32:00,13:33:00,1474701,11, +24985643_257041,13:35:00,13:35:00,1474862,12, +24985643_257041,13:37:00,13:37:00,1474863,13, +24985643_257041,13:40:00,13:40:00,1474864,14, +24985643_257041,13:43:00,13:44:00,1474865,15, +24985643_257041,13:46:00,13:46:00,1474866,16, +24985643_257041,13:49:00,13:49:00,1474867,17, +24985643_257041,13:54:00,13:55:00,1474868,18, +24985643_257041,13:59:00,13:59:00,1474869,19, +24985643_257041,14:03:00,14:03:00,1474870,20, +24985643_257041,14:10:00,14:11:00,1474871,21, +24985643_257041,14:14:00,14:14:00,1474872,22, +24985643_257041,14:17:00,14:18:00,1474873,23, +24985643_257041,14:24:00,14:24:00,1474874,24, +24985644_257042,12:11:00,12:11:00,1474642,0, +24985644_257042,12:16:00,12:17:00,1474852,1, +24985644_257042,12:22:00,12:22:00,1474853,2, +24985644_257042,12:27:00,12:28:00,1474641,3, +24985644_257042,12:31:00,12:32:00,1474854,4, +24985644_257042,12:36:00,12:36:00,1474855,5, +24985644_257042,12:40:00,12:40:00,1474856,6, +24985644_257042,12:45:00,12:45:00,1474857,7, +24985644_257042,12:49:00,12:49:00,1474858,8, +24985644_257042,12:52:00,12:52:00,1474859,9, +24985644_257042,12:59:00,13:17:00,1474861,10, +24985644_257042,13:22:00,13:23:00,1474701,11, +24985644_257042,13:25:00,13:25:00,1474862,12, +24985644_257042,13:27:00,13:27:00,1474863,13, +24985644_257042,13:30:00,13:30:00,1474864,14, +24985644_257042,13:33:00,13:34:00,1474865,15, +24985644_257042,13:36:00,13:36:00,1474866,16, +24985644_257042,13:39:00,13:40:00,1474867,17, +24985644_257042,13:44:00,13:45:00,1474868,18, +24985644_257042,13:49:00,13:49:00,1474869,19, +24985644_257042,13:53:00,13:53:00,1474870,20, +24985644_257042,13:59:00,14:00:00,1474871,21, +24985644_257042,14:03:00,14:04:00,1474872,22, +24985644_257042,14:06:00,14:07:00,1474873,23, +24985644_257042,14:12:00,14:12:00,1474874,24, +24985650_257048,12:17:00,12:17:00,1474889,0, +24985650_257048,12:22:00,12:23:00,1474876,1, +24985650_257048,12:26:00,12:26:00,1474877,2, +24985650_257048,12:30:00,12:30:00,1474878,3, +24985650_257048,12:35:00,12:35:00,1474879,4, +24985650_257048,12:37:00,12:38:00,1474880,5, +24985650_257048,12:43:00,12:43:00,1474881,6, +24985650_257048,12:47:00,12:47:00,1474882,7, +24985650_257048,12:52:00,12:53:00,1474646,8, +24985650_257048,12:55:00,12:56:00,1474810,9, +24985650_257048,13:03:00,13:04:00,1474848,10, +24985650_257048,13:11:00,13:12:00,1474850,11, +24985650_257048,13:22:00,13:23:00,1474642,12, +24985650_257048,13:36:00,13:40:00,1474641,13, +24985650_257048,13:47:00,13:47:00,1474855,14, +24985650_257048,13:54:00,13:55:00,1474857,15, +24985650_257048,14:06:00,14:10:00,1474640,16, +24985650_257048,14:14:00,14:15:00,1474701,17, +24985650_257048,14:16:00,14:17:00,1474862,18, +24985650_257048,14:18:00,14:19:00,1474863,19, +24985650_257048,14:21:00,14:22:00,1474864,20, +24985650_257048,14:25:00,14:25:00,1474865,21, +24985650_257048,14:27:00,14:27:00,1474866,22, +24985650_257048,14:30:00,14:31:00,1474867,23, +24985650_257048,14:35:00,14:36:00,1474868,24, +24985650_257048,14:39:00,14:40:00,1474869,25, +24985650_257048,14:43:00,14:44:00,1474870,26, +24985650_257048,14:50:00,14:51:00,1474871,27, +24985650_257048,14:54:00,14:54:00,1474872,28, +24985650_257048,14:57:00,14:57:00,1474873,29, +24985650_257048,15:03:00,15:03:00,1474874,30, +24985652_257050,12:20:00,12:20:00,1474875,0, +24985652_257050,12:24:00,12:25:00,1474876,1, +24985652_257050,12:27:00,12:28:00,1474877,2, +24985652_257050,12:31:00,12:31:00,1474878,3, +24985652_257050,12:35:00,12:36:00,1474879,4, +24985652_257050,12:38:00,12:38:00,1474880,5, +24985652_257050,12:43:00,12:43:00,1474881,6, +24985652_257050,12:46:00,12:47:00,1474882,7, +24985652_257050,12:51:00,12:53:00,1474646,8, +24985652_257050,12:55:00,12:56:00,1474810,9, +24985652_257050,13:04:00,13:04:00,1474848,10, +24985652_257050,13:12:00,13:13:00,1474850,11, +24985652_257050,13:22:00,13:23:00,1474642,12, +24985652_257050,13:36:00,13:40:00,1474641,13, +24985652_257050,13:47:00,13:47:00,1474855,14, +24985652_257050,13:54:00,13:55:00,1474857,15, +24985652_257050,14:06:00,14:10:00,1474861,16, +24985652_257050,14:14:00,14:15:00,1474701,17, +24985652_257050,14:16:00,14:17:00,1474862,18, +24985652_257050,14:18:00,14:19:00,1474863,19, +24985652_257050,14:21:00,14:22:00,1474864,20, +24985652_257050,14:24:00,14:25:00,1474865,21, +24985652_257050,14:27:00,14:27:00,1474866,22, +24985652_257050,14:30:00,14:30:00,1474867,23, +24985652_257050,14:35:00,14:36:00,1474868,24, +24985652_257050,14:39:00,14:39:00,1474869,25, +24985652_257050,14:43:00,14:43:00,1474870,26, +24985652_257050,14:49:00,14:50:00,1474871,27, +24985652_257050,14:54:00,14:54:00,1474872,28, +24985652_257050,14:57:00,14:57:00,1474873,29, +24985652_257050,15:03:00,15:03:00,1474874,30, +24985654_257052,12:17:00,12:17:00,1474889,0, +24985654_257052,12:22:00,12:23:00,1474876,1, +24985654_257052,12:26:00,12:26:00,1474877,2, +24985654_257052,12:30:00,12:30:00,1474878,3, +24985654_257052,12:35:00,12:35:00,1474879,4, +24985654_257052,12:37:00,12:38:00,1474880,5, +24985654_257052,12:43:00,12:43:00,1474881,6, +24985654_257052,12:47:00,12:47:00,1474882,7, +24985654_257052,12:52:00,12:53:00,1474646,8, +24985654_257052,12:55:00,12:56:00,1474810,9, +24985654_257052,13:03:00,13:04:00,1474848,10, +24985654_257052,13:11:00,13:12:00,1474850,11, +24985654_257052,13:22:00,13:23:00,1474642,12, +24985654_257052,13:36:00,13:40:00,1474641,13, +24985654_257052,13:47:00,13:47:00,1474855,14, +24985654_257052,13:54:00,13:55:00,1474857,15, +24985654_257052,14:06:00,14:06:00,1474640,16, +24985655_257053,12:20:00,12:20:00,1474875,0, +24985655_257053,12:24:00,12:25:00,1474876,1, +24985655_257053,12:27:00,12:28:00,1474877,2, +24985655_257053,12:31:00,12:31:00,1474878,3, +24985655_257053,12:35:00,12:36:00,1474879,4, +24985655_257053,12:38:00,12:38:00,1474880,5, +24985655_257053,12:43:00,12:43:00,1474881,6, +24985655_257053,12:46:00,12:47:00,1474882,7, +24985655_257053,12:51:00,12:53:00,1474646,8, +24985655_257053,12:55:00,12:56:00,1474810,9, +24985655_257053,13:04:00,13:04:00,1474848,10, +24985655_257053,13:12:00,13:13:00,1474850,11, +24985655_257053,13:22:00,13:23:00,1474642,12, +24985655_257053,13:36:00,13:40:00,1474641,13, +24985655_257053,13:47:00,13:47:00,1474855,14, +24985655_257053,13:54:00,13:55:00,1474857,15, +24985655_257053,14:06:00,14:06:00,1474640,16, +24985658_257056,14:21:00,14:21:00,1474642,0, +24985658_257056,14:27:00,14:27:00,1474852,1, +24985658_257056,14:32:00,14:33:00,1703011,2, +24985658_257056,14:38:00,14:39:00,1474641,3, +24985658_257056,14:42:00,14:43:00,1474854,4, +24985658_257056,14:47:00,14:47:00,1474855,5, +24985658_257056,14:51:00,14:52:00,1474856,6, +24985658_257056,14:56:00,14:57:00,1474857,7, +24985658_257056,15:01:00,15:01:00,1474858,8, +24985658_257056,15:04:00,15:04:00,1474859,9, +24985658_257056,15:11:00,15:15:00,1474861,10, +24985658_257056,15:20:00,15:21:00,1474701,11, +24985658_257056,15:23:00,15:23:00,1474862,12, +24985658_257056,15:25:00,15:25:00,1474863,13, +24985658_257056,15:28:00,15:28:00,1474864,14, +24985658_257056,15:31:00,15:32:00,1474865,15, +24985658_257056,15:34:00,15:34:00,1474866,16, +24985658_257056,15:37:00,15:38:00,1474867,17, +24985658_257056,15:43:00,15:44:00,1474868,18, +24985658_257056,15:47:00,15:48:00,1474869,19, +24985658_257056,15:52:00,15:52:00,1474870,20, +24985658_257056,15:59:00,16:00:00,1474871,21, +24985658_257056,16:03:00,16:04:00,1474872,22, +24985658_257056,16:07:00,16:07:00,1474873,23, +24985658_257056,16:14:00,16:14:00,1474891,24, +24985659_257057,14:21:00,14:21:00,1474642,0, +24985659_257057,14:27:00,14:27:00,1474852,1, +24985659_257057,14:32:00,14:33:00,1474853,2, +24985659_257057,14:38:00,14:39:00,1474641,3, +24985659_257057,14:42:00,14:43:00,1474854,4, +24985659_257057,14:47:00,14:47:00,1474855,5, +24985659_257057,14:51:00,14:52:00,1474856,6, +24985659_257057,14:56:00,14:57:00,1474857,7, +24985659_257057,15:01:00,15:01:00,1474858,8, +24985659_257057,15:04:00,15:04:00,1474859,9, +24985659_257057,15:11:00,15:15:00,1474861,10, +24985659_257057,15:20:00,15:21:00,1474701,11, +24985659_257057,15:22:00,15:23:00,1474862,12, +24985659_257057,15:24:00,15:25:00,1474863,13, +24985659_257057,15:27:00,15:28:00,1474864,14, +24985659_257057,15:31:00,15:31:00,1474865,15, +24985659_257057,15:33:00,15:34:00,1474866,16, +24985659_257057,15:37:00,15:37:00,1474867,17, +24985659_257057,15:42:00,15:43:00,1474868,18, +24985659_257057,15:47:00,15:47:00,1474869,19, +24985659_257057,15:51:00,15:51:00,1474870,20, +24985659_257057,15:58:00,15:59:00,1474871,21, +24985659_257057,16:02:00,16:02:00,1474872,22, +24985659_257057,16:05:00,16:06:00,1474873,23, +24985659_257057,16:12:00,16:12:00,1474891,24, +24985664_257062,15:15:00,15:15:00,1474861,0, +24985664_257062,15:20:00,15:21:00,1474701,1, +24985664_257062,15:23:00,15:23:00,1474862,2, +24985664_257062,15:25:00,15:25:00,1474863,3, +24985664_257062,15:28:00,15:28:00,1474864,4, +24985664_257062,15:31:00,15:32:00,1474865,5, +24985664_257062,15:34:00,15:34:00,1474866,6, +24985664_257062,15:37:00,15:38:00,1474867,7, +24985664_257062,15:43:00,15:44:00,1474868,8, +24985664_257062,15:47:00,15:48:00,1474869,9, +24985664_257062,15:52:00,15:52:00,1474870,10, +24985664_257062,15:59:00,16:00:00,1474871,11, +24985664_257062,16:03:00,16:04:00,1474872,12, +24985664_257062,16:07:00,16:07:00,1474873,13, +24985664_257062,16:14:00,16:14:00,1474891,14, +24985668_257066,15:42:00,15:42:00,1474738,0, +24985668_257066,15:46:00,15:47:00,1474701,1, +24985668_257066,15:48:00,15:49:00,1474862,2, +24985668_257066,15:50:00,15:51:00,1474863,3, +24985668_257066,15:54:00,16:01:00,1474864,4, +24985668_257066,16:04:00,16:05:00,1474865,5, +24985668_257066,16:07:00,16:07:00,1474866,6, +24985668_257066,16:10:00,16:11:00,1474867,7, +24985668_257066,16:16:00,16:17:00,1474868,8, +24985668_257066,16:20:00,16:21:00,1474869,9, +24985668_257066,16:25:00,16:25:00,1474870,10, +24985668_257066,16:32:00,16:33:00,1474871,11, +24985668_257066,16:36:00,16:36:00,1474872,12, +24985668_257066,16:39:00,16:40:00,1474873,13, +24985668_257066,16:46:00,16:46:00,1474874,14, +24985669_257067,15:39:00,15:39:00,1474738,0, +24985669_257067,15:44:00,15:45:00,1474701,1, +24985669_257067,15:47:00,15:47:00,1474862,2, +24985669_257067,15:49:00,15:49:00,1474863,3, +24985669_257067,15:52:00,15:59:00,1474864,4, +24985669_257067,16:02:00,16:03:00,1474865,5, +24985669_257067,16:05:00,16:05:00,1474866,6, +24985669_257067,16:08:00,16:09:00,1474867,7, +24985669_257067,16:13:00,16:14:00,1474868,8, +24985669_257067,16:18:00,16:18:00,1474869,9, +24985669_257067,16:22:00,16:23:00,1474870,10, +24985669_257067,16:29:00,16:30:00,1474871,11, +24985669_257067,16:34:00,16:34:00,1474872,12, +24985669_257067,16:37:00,16:38:00,1474873,13, +24985669_257067,16:43:00,16:43:00,1474874,14, +24985674_257072,15:45:00,15:45:00,1474886,0, +24985674_257072,15:49:00,15:50:00,1474854,1, +24985674_257072,15:53:00,15:54:00,1474855,2, +24985674_257072,15:58:00,15:58:00,1474856,3, +24985674_257072,16:03:00,16:03:00,1474857,4, +24985674_257072,16:07:00,16:08:00,1474858,5, +24985674_257072,16:10:00,16:11:00,1474859,6, +24985674_257072,16:17:00,16:23:00,1536279,7, +24985674_257072,16:27:00,16:28:00,1474701,8, +24985674_257072,16:29:00,16:30:00,1474862,9, +24985674_257072,16:31:00,16:32:00,1474863,10, +24985674_257072,16:34:00,16:34:00,1474864,11, +24985674_257072,16:37:00,16:38:00,1474865,12, +24985674_257072,16:40:00,16:40:00,1474866,13, +24985674_257072,16:43:00,16:43:00,1474867,14, +24985674_257072,16:48:00,16:49:00,1474868,15, +24985674_257072,16:52:00,16:52:00,1474869,16, +24985674_257072,16:56:00,16:56:00,1474870,17, +24985674_257072,17:03:00,17:04:00,1474871,18, +24985674_257072,17:07:00,17:07:00,1474872,19, +24985674_257072,17:10:00,17:10:00,1474873,20, +24985674_257072,17:16:00,17:16:00,1474874,21, +24985675_257073,15:34:00,15:34:00,1474886,0, +24985675_257073,15:38:00,15:39:00,1474854,1, +24985675_257073,15:42:00,15:43:00,1474855,2, +24985675_257073,15:47:00,15:47:00,1474856,3, +24985675_257073,15:51:00,15:52:00,1474857,4, +24985675_257073,15:55:00,15:56:00,1474858,5, +24985675_257073,15:58:00,15:59:00,1474859,6, +24985675_257073,16:05:00,16:09:00,1474861,7, +24985675_257073,16:14:00,16:18:00,1474701,8, +24985675_257073,16:19:00,16:20:00,1474862,9, +24985675_257073,16:21:00,16:21:00,1474863,10, +24985675_257073,16:24:00,16:24:00,1474864,11, +24985675_257073,16:27:00,16:28:00,1474865,12, +24985675_257073,16:30:00,16:30:00,1474866,13, +24985675_257073,16:33:00,16:33:00,1474867,14, +24985675_257073,16:38:00,16:39:00,1474868,15, +24985675_257073,16:42:00,16:42:00,1474869,16, +24985675_257073,16:46:00,16:46:00,1474870,17, +24985675_257073,16:52:00,16:53:00,1474871,18, +24985675_257073,16:56:00,16:57:00,1474872,19, +24985675_257073,16:59:00,17:00:00,1474873,20, +24985675_257073,17:05:00,17:05:00,1474874,21, +24985684_257082,17:14:00,17:14:00,1474886,0, +24985684_257082,17:19:00,17:19:00,1474854,1, +24985684_257082,17:23:00,17:23:00,1474855,2, +24985684_257082,17:27:00,17:28:00,1474856,3, +24985684_257082,17:32:00,17:32:00,1474857,4, +24985684_257082,17:36:00,17:36:00,1474858,5, +24985684_257082,17:39:00,17:39:00,1474859,6, +24985684_257082,17:46:00,17:51:00,1474738,7, +24985684_257082,17:55:00,17:56:00,1474701,8, +24985684_257082,17:57:00,17:58:00,1474862,9, +24985684_257082,17:59:00,17:59:00,1474863,10, +24985684_257082,18:02:00,18:02:00,1474864,11, +24985684_257082,18:05:00,18:06:00,1474865,12, +24985684_257082,18:08:00,18:08:00,1474866,13, +24985684_257082,18:11:00,18:12:00,1474867,14, +24985684_257082,18:16:00,18:17:00,1474868,15, +24985684_257082,18:20:00,18:21:00,1474869,16, +24985684_257082,18:24:00,18:25:00,1474870,17, +24985684_257082,18:31:00,18:32:00,1474871,18, +24985684_257082,18:35:00,18:36:00,1474872,19, +24985684_257082,18:39:00,18:39:00,1474873,20, +24985684_257082,18:44:00,18:44:00,1474874,21, +24985685_257083,17:14:00,17:14:00,1474886,0, +24985685_257083,17:19:00,17:19:00,1474854,1, +24985685_257083,17:23:00,17:23:00,1474855,2, +24985685_257083,17:27:00,17:28:00,1474856,3, +24985685_257083,17:32:00,17:32:00,1474857,4, +24985685_257083,17:36:00,17:36:00,1474858,5, +24985685_257083,17:39:00,17:39:00,1474859,6, +24985685_257083,17:46:00,17:51:00,1474861,7, +24985685_257083,17:55:00,17:56:00,1474701,8, +24985685_257083,17:57:00,17:58:00,1474862,9, +24985685_257083,17:59:00,18:00:00,1474863,10, +24985685_257083,18:02:00,18:03:00,1474864,11, +24985685_257083,18:06:00,18:06:00,1474865,12, +24985685_257083,18:08:00,18:09:00,1474866,13, +24985685_257083,18:11:00,18:12:00,1474867,14, +24985685_257083,18:16:00,18:17:00,1474868,15, +24985685_257083,18:20:00,18:21:00,1474869,16, +24985685_257083,18:24:00,18:25:00,1474870,17, +24985685_257083,18:31:00,18:32:00,1474871,18, +24985685_257083,18:35:00,18:35:00,1474872,19, +24985685_257083,18:38:00,18:38:00,1474873,20, +24985685_257083,18:44:00,18:44:00,1474874,21, +24985687_257085,16:53:00,16:53:00,1474875,0, +24985687_257085,16:57:00,16:58:00,1474876,1, +24985687_257085,17:00:00,17:05:00,1474887,2, +24985687_257085,17:09:00,17:09:00,1474878,3, +24985687_257085,17:13:00,17:14:00,1474879,4, +24985687_257085,17:16:00,17:16:00,1474880,5, +24985687_257085,17:21:00,17:21:00,1474881,6, +24985687_257085,17:25:00,17:25:00,1474882,7, +24985687_257085,17:29:00,17:30:00,1474646,8, +24985687_257085,17:32:00,17:32:00,1474645,9, +24985689_257087,18:53:00,18:53:00,1474875,0, +24985689_257087,18:58:00,18:58:00,1474876,1, +24985689_257087,19:01:00,19:01:00,1474877,2, +24985689_257087,19:05:00,19:05:00,1474878,3, +24985689_257087,19:09:00,19:10:00,1474879,4, +24985689_257087,19:12:00,19:12:00,1474880,5, +24985689_257087,19:17:00,19:17:00,1474881,6, +24985689_257087,19:21:00,19:21:00,1474882,7, +24985689_257087,19:26:00,19:29:00,1474646,8, +24985689_257087,19:32:00,19:33:00,1474810,9, +24985689_257087,19:36:00,19:36:00,1474847,10, +24985689_257087,19:42:00,19:42:00,1474848,11, +24985689_257087,19:44:00,19:45:00,1474849,12, +24985689_257087,19:52:00,19:53:00,1474850,13, +24985689_257087,19:57:00,19:57:00,1474851,14, +24985689_257087,20:04:00,20:05:00,1474642,15, +24985689_257087,20:09:00,20:09:00,1474852,16, +24985689_257087,20:14:00,20:15:00,1474853,17, +24985689_257087,20:20:00,20:21:00,1474641,18, +24985689_257087,20:24:00,20:25:00,1474854,19, +24985689_257087,20:29:00,20:29:00,1474855,20, +24985689_257087,20:33:00,20:34:00,1474856,21, +24985689_257087,20:38:00,20:38:00,1474857,22, +24985689_257087,20:42:00,20:43:00,1474858,23, +24985689_257087,20:45:00,20:46:00,1474859,24, +24985689_257087,20:52:00,20:52:00,1474640,25, +24985693_257091,20:55:00,20:55:00,1474642,0, +24985693_257091,21:00:00,21:01:00,1474852,1, +24985693_257091,21:05:00,21:06:00,1474853,2, +24985693_257091,21:10:00,21:11:00,1474641,3, +24985693_257091,21:15:00,21:15:00,1474854,4, +24985693_257091,21:19:00,21:20:00,1474855,5, +24985693_257091,21:23:00,21:24:00,1474856,6, +24985693_257091,21:28:00,21:29:00,1474857,7, +24985693_257091,21:32:00,21:33:00,1474858,8, +24985693_257091,21:35:00,21:36:00,1474859,9, +24985693_257091,21:42:00,21:42:00,1536279,10, +24985694_257092,20:55:00,20:55:00,1474642,0, +24985694_257092,21:00:00,21:01:00,1474852,1, +24985694_257092,21:05:00,21:06:00,1474853,2, +24985694_257092,21:10:00,21:11:00,1474641,3, +24985694_257092,21:15:00,21:15:00,1474854,4, +24985694_257092,21:19:00,21:20:00,1474855,5, +24985694_257092,21:23:00,21:24:00,1474856,6, +24985694_257092,21:28:00,21:29:00,1474857,7, +24985694_257092,21:32:00,21:33:00,1474858,8, +24985694_257092,21:35:00,21:36:00,1474859,9, +24985694_257092,21:42:00,21:42:00,1474640,10, +24985697_257095,21:58:00,21:58:00,1474738,0, +24985697_257095,22:02:00,22:03:00,1474701,1, +24985697_257095,22:04:00,22:04:00,1474862,2, +24985697_257095,22:06:00,22:06:00,1474863,3, +24985697_257095,22:09:00,22:09:00,1474864,4, +24985697_257095,22:12:00,22:12:00,1474865,5, +24985697_257095,22:14:00,22:15:00,1474866,6, +24985697_257095,22:17:00,22:18:00,1474867,7, +24985697_257095,22:22:00,22:23:00,1474868,8, +24985697_257095,22:27:00,22:27:00,1474869,9, +24985697_257095,22:31:00,22:31:00,1474870,10, +24985697_257095,22:37:00,22:38:00,1474871,11, +24985697_257095,22:41:00,22:42:00,1474872,12, +24985697_257095,22:44:00,22:45:00,1474873,13, +24985697_257095,22:51:00,22:51:00,1474891,14, +24985698_257096,21:59:00,21:59:00,1474738,0, +24985698_257096,22:03:00,22:04:00,1474701,1, +24985698_257096,22:05:00,22:06:00,1474862,2, +24985698_257096,22:07:00,22:08:00,1474863,3, +24985698_257096,22:10:00,22:11:00,1474864,4, +24985698_257096,22:13:00,22:14:00,1474865,5, +24985698_257096,22:16:00,22:16:00,1474866,6, +24985698_257096,22:19:00,22:19:00,1474867,7, +24985698_257096,22:24:00,22:25:00,1474868,8, +24985698_257096,22:28:00,22:29:00,1474869,9, +24985698_257096,22:32:00,22:33:00,1474870,10, +24985698_257096,22:39:00,22:40:00,1474871,11, +24985698_257096,22:43:00,22:43:00,1474872,12, +24985698_257096,22:46:00,22:46:00,1474873,13, +24985698_257096,22:52:00,22:52:00,1474891,14, +24985700_257098,23:10:00,23:10:00,1474738,0, +24985700_257098,23:14:00,23:15:00,1474701,1, +24985700_257098,23:16:00,23:17:00,1474862,2, +24985700_257098,23:18:00,23:19:00,1474863,3, +24985700_257098,23:21:00,23:22:00,1474864,4, +24985700_257098,23:25:00,23:25:00,1474865,5, +24985700_257098,23:27:00,23:28:00,1474866,6, +24985700_257098,23:31:00,23:31:00,1474867,7, +24985700_257098,23:36:00,23:37:00,1474868,8, +24985700_257098,23:40:00,23:41:00,1474869,9, +24985700_257098,23:44:00,23:45:00,1474870,10, +24985700_257098,23:51:00,23:52:00,1474871,11, +24985700_257098,23:55:00,23:56:00,1474872,12, +24985700_257098,23:59:00,23:59:00,1474873,13, +24985700_257098,24:05:00,24:05:00,1474891,14, +24985701_257099,23:02:00,23:02:00,1474738,0, +24985701_257099,23:06:00,23:07:00,1474701,1, +24985701_257099,23:09:00,23:09:00,1474862,2, +24985701_257099,23:11:00,23:11:00,1474863,3, +24985701_257099,23:14:00,23:14:00,1474864,4, +24985701_257099,23:17:00,23:18:00,1474865,5, +24985701_257099,23:20:00,23:20:00,1474866,6, +24985701_257099,23:23:00,23:24:00,1474867,7, +24985701_257099,23:28:00,23:29:00,1474868,8, +24985701_257099,23:33:00,23:33:00,1474869,9, +24985701_257099,23:37:00,23:37:00,1474870,10, +24985701_257099,23:44:00,23:45:00,1474871,11, +24985701_257099,23:48:00,23:48:00,1474872,12, +24985701_257099,23:51:00,23:52:00,1474873,13, +24985701_257099,23:57:00,23:57:00,1474891,14, +24985703_257101,06:33:00,06:33:00,1475094,0, +24985703_257101,06:39:00,06:39:00,1475092,1, +24985703_257101,06:45:00,06:45:00,1475098,2, +24985703_257101,06:51:00,06:52:00,1475215,3, +24985703_257101,06:58:00,06:59:00,1475216,4, +24985703_257101,07:03:00,07:03:00,1475099,5, +24985703_257101,07:13:00,07:13:00,1475212,6, +24985703_257101,07:18:00,07:18:00,1474705,7, +24985703_257101,07:21:00,07:21:00,1475214,8, +24985703_257101,07:25:00,07:26:00,1474703,9, +24985703_257101,07:30:00,07:31:00,1475181,10, +24985703_257101,07:37:00,07:55:00,1536279,11, +24985703_257101,08:00:00,08:00:00,1474903,12, +24985703_257101,08:05:00,08:06:00,1474904,13, +24985703_257101,08:09:00,08:10:00,1474905,14, +24985703_257101,08:15:00,08:15:00,1474906,15, +24985703_257101,08:19:00,08:20:00,1474907,16, +24985703_257101,08:24:00,08:24:00,1474908,17, +24985704_257102,06:33:00,06:33:00,1475094,0, +24985704_257102,06:39:00,06:39:00,1475092,1, +24985704_257102,06:44:00,06:45:00,1475098,2, +24985704_257102,06:49:00,06:50:00,1475215,3, +24985704_257102,06:55:00,06:56:00,1475216,4, +24985704_257102,07:00:00,07:02:00,1475099,5, +24985704_257102,07:12:00,07:13:00,1475212,6, +24985704_257102,07:18:00,07:18:00,1474705,7, +24985704_257102,07:21:00,07:21:00,1475214,8, +24985704_257102,07:25:00,07:28:00,1474703,9, +24985704_257102,07:32:00,07:33:00,1475181,10, +24985704_257102,07:38:00,07:44:00,1474861,11, +24985704_257102,07:49:00,07:49:00,1474903,12, +24985704_257102,07:55:00,08:03:00,1474904,13, +24985704_257102,08:06:00,08:07:00,1474905,14, +24985704_257102,08:12:00,08:12:00,1474906,15, +24985704_257102,08:16:00,08:17:00,1474907,16, +24985704_257102,08:21:00,08:21:00,1474908,17, +24985705_257103,06:26:00,06:26:00,1536279,0, +24985705_257103,06:32:00,06:33:00,1474794,1, +24985705_257103,06:35:00,06:36:00,1474892,2, +24985705_257103,06:38:00,06:39:00,1474893,3, +24985705_257103,06:41:00,06:42:00,1474894,4, +24985705_257103,06:45:00,06:46:00,1474895,5, +24985705_257103,06:51:00,06:51:00,1474795,6, +24985706_257104,06:26:00,06:26:00,1474738,0, +24985706_257104,06:32:00,06:33:00,1474794,1, +24985706_257104,06:35:00,06:36:00,1474892,2, +24985706_257104,06:38:00,06:39:00,1474893,3, +24985706_257104,06:41:00,06:42:00,1474894,4, +24985706_257104,06:45:00,06:46:00,1474895,5, +24985706_257104,06:51:00,06:51:00,1474795,6, +24985708_257106,06:49:00,06:49:00,1536277,0, +24985708_257106,06:54:00,06:55:00,1474794,1, +24985708_257106,06:57:00,06:57:00,1474892,2, +24985708_257106,07:00:00,07:00:00,1474893,3, +24985708_257106,07:02:00,07:02:00,1474894,4, +24985708_257106,07:05:00,07:06:00,1474895,5, +24985708_257106,07:11:00,07:11:00,1474795,6, +24985709_257107,06:49:00,06:49:00,1474640,0, +24985709_257107,06:54:00,06:55:00,1474794,1, +24985709_257107,06:57:00,06:57:00,1474892,2, +24985709_257107,07:00:00,07:00:00,1474893,3, +24985709_257107,07:02:00,07:02:00,1474894,4, +24985709_257107,07:05:00,07:06:00,1474895,5, +24985709_257107,07:11:00,07:11:00,1474795,6, +24985711_257109,07:55:00,07:55:00,1474651,0, +24985711_257109,08:01:00,08:02:00,1474794,1, +24985711_257109,08:04:00,08:05:00,1474892,2, +24985711_257109,08:07:00,08:08:00,1474893,3, +24985711_257109,08:09:00,08:10:00,1474894,4, +24985711_257109,08:13:00,08:13:00,1474895,5, +24985711_257109,08:18:00,08:18:00,1474795,6, +24985712_257110,07:55:00,07:55:00,1474738,0, +24985712_257110,08:01:00,08:02:00,1474794,1, +24985712_257110,08:04:00,08:05:00,1474892,2, +24985712_257110,08:07:00,08:08:00,1474893,3, +24985712_257110,08:09:00,08:10:00,1474894,4, +24985712_257110,08:13:00,08:13:00,1474895,5, +24985712_257110,08:18:00,08:18:00,1474795,6, +24985713_257111,09:55:00,09:55:00,1536277,0, +24985713_257111,10:00:00,10:01:00,1474794,1, +24985713_257111,10:03:00,10:03:00,1474892,2, +24985713_257111,10:06:00,10:06:00,1474893,3, +24985713_257111,10:08:00,10:09:00,1474894,4, +24985713_257111,10:12:00,10:12:00,1474895,5, +24985713_257111,10:17:00,10:17:00,1474795,6, +24985714_257112,09:58:00,09:58:00,1474640,0, +24985714_257112,10:03:00,10:04:00,1474794,1, +24985714_257112,10:06:00,10:06:00,1474892,2, +24985714_257112,10:09:00,10:09:00,1474893,3, +24985714_257112,10:11:00,10:12:00,1474894,4, +24985714_257112,10:15:00,10:15:00,1474895,5, +24985714_257112,10:20:00,10:20:00,1474795,6, +24985716_257114,20:01:00,20:01:00,1474651,0, +24985716_257114,20:06:00,20:07:00,1474794,1, +24985716_257114,20:09:00,20:10:00,1474892,2, +24985716_257114,20:12:00,20:13:00,1474893,3, +24985716_257114,20:14:00,20:15:00,1474894,4, +24985716_257114,20:18:00,20:18:00,1474895,5, +24985716_257114,20:23:00,20:23:00,1474795,6, +24985717_257115,20:01:00,20:01:00,1474640,0, +24985717_257115,20:06:00,20:07:00,1474794,1, +24985717_257115,20:09:00,20:10:00,1474892,2, +24985717_257115,20:12:00,20:13:00,1474893,3, +24985717_257115,20:14:00,20:15:00,1474894,4, +24985717_257115,20:18:00,20:18:00,1474895,5, +24985717_257115,20:23:00,20:23:00,1474795,6, +24985719_257117,07:04:00,07:04:00,1474818,0, +24985719_257117,07:08:00,07:08:00,1474899,1, +24985719_257117,07:11:00,07:12:00,1474900,2, +24985719_257117,07:14:00,07:15:00,1474901,3, +24985719_257117,07:17:00,07:18:00,1474902,4, +24985719_257117,07:20:00,07:21:00,1474819,5, +24985719_257117,07:27:00,07:27:00,1474640,6, +24985720_257118,07:04:00,07:04:00,1474795,0, +24985720_257118,07:08:00,07:08:00,1474899,1, +24985720_257118,07:11:00,07:12:00,1474900,2, +24985720_257118,07:14:00,07:15:00,1474901,3, +24985720_257118,07:17:00,07:18:00,1474902,4, +24985720_257118,07:20:00,07:21:00,1474819,5, +24985720_257118,07:27:00,07:27:00,1474640,6, +24985722_257120,07:34:00,07:34:00,1474818,0, +24985722_257120,07:38:00,07:38:00,1474899,1, +24985722_257120,07:41:00,07:42:00,1474900,2, +24985722_257120,07:44:00,07:45:00,1474901,3, +24985722_257120,07:47:00,07:48:00,1474902,4, +24985722_257120,07:50:00,07:51:00,1474819,5, +24985722_257120,07:57:00,07:57:00,1536277,6, +24985723_257121,07:34:00,07:34:00,1474795,0, +24985723_257121,07:38:00,07:38:00,1474899,1, +24985723_257121,07:41:00,07:42:00,1474900,2, +24985723_257121,07:44:00,07:45:00,1474901,3, +24985723_257121,07:47:00,07:48:00,1474902,4, +24985723_257121,07:50:00,07:51:00,1474819,5, +24985723_257121,07:57:00,07:57:00,1474640,6, +24985725_257123,08:31:00,08:31:00,1474818,0, +24985725_257123,08:35:00,08:35:00,1474899,1, +24985725_257123,08:38:00,08:39:00,1474900,2, +24985725_257123,08:41:00,08:42:00,1474901,3, +24985725_257123,08:44:00,08:46:00,1474902,4, +24985725_257123,08:48:00,08:50:00,1474819,5, +24985725_257123,08:57:00,08:57:00,1536277,6, +24985726_257124,08:39:00,08:39:00,1474795,0, +24985726_257124,08:43:00,08:43:00,1474899,1, +24985726_257124,08:46:00,08:47:00,1474900,2, +24985726_257124,08:49:00,08:50:00,1474901,3, +24985726_257124,08:52:00,08:53:00,1474902,4, +24985726_257124,08:55:00,08:56:00,1474819,5, +24985726_257124,09:03:00,09:03:00,1474640,6, +24985728_257126,10:42:00,10:42:00,1474818,0, +24985728_257126,10:46:00,10:46:00,1474899,1, +24985728_257126,10:49:00,10:50:00,1474900,2, +24985728_257126,10:52:00,10:53:00,1474901,3, +24985728_257126,10:55:00,10:56:00,1474902,4, +24985728_257126,10:58:00,10:59:00,1474819,5, +24985728_257126,11:05:00,11:05:00,1474640,6, +24985729_257127,10:32:00,10:32:00,1474795,0, +24985729_257127,10:36:00,10:36:00,1474899,1, +24985729_257127,10:39:00,10:40:00,1474900,2, +24985729_257127,10:42:00,10:43:00,1474901,3, +24985729_257127,10:45:00,10:46:00,1474902,4, +24985729_257127,10:48:00,10:49:00,1474819,5, +24985729_257127,10:55:00,10:55:00,1474640,6, +24985731_257129,20:40:00,20:40:00,1474818,0, +24985731_257129,20:44:00,20:44:00,1474899,1, +24985731_257129,20:47:00,20:48:00,1474900,2, +24985731_257129,20:50:00,20:51:00,1474901,3, +24985731_257129,20:53:00,20:54:00,1474902,4, +24985731_257129,20:55:00,20:56:00,1474819,5, +24985731_257129,21:03:00,21:03:00,1536277,6, +24985732_257130,20:40:00,20:40:00,1474795,0, +24985732_257130,20:44:00,20:44:00,1474899,1, +24985732_257130,20:47:00,20:48:00,1474900,2, +24985732_257130,20:50:00,20:51:00,1474901,3, +24985732_257130,20:53:00,20:54:00,1474902,4, +24985732_257130,20:55:00,20:56:00,1474819,5, +24985732_257130,21:03:00,21:03:00,1474640,6, +24985735_257133,03:46:00,03:46:00,1536279,0, +24985735_257133,03:50:00,03:51:00,1474903,1, +24985735_257133,03:56:00,03:56:00,1474904,2, +24985735_257133,04:00:00,04:00:00,1474905,3, +24985735_257133,04:05:00,04:05:00,1474906,4, +24985735_257133,04:09:00,04:09:00,1474907,5, +24985735_257133,04:14:00,04:14:00,1474908,6, +24985736_257134,03:50:00,03:50:00,1474861,0, +24985736_257134,03:55:00,03:55:00,1474903,1, +24985736_257134,04:00:00,04:01:00,1474904,2, +24985736_257134,04:04:00,04:05:00,1474905,3, +24985736_257134,04:10:00,04:10:00,1474906,4, +24985736_257134,04:14:00,04:15:00,1474907,5, +24985736_257134,04:18:00,04:18:00,1474908,6, +24985738_257136,14:04:00,14:04:00,1474836,0, +24985738_257136,14:09:00,14:09:00,1474909,1, +24985738_257136,14:14:00,14:15:00,1474910,2, +24985738_257136,14:20:00,14:21:00,1474911,3, +24985738_257136,14:27:00,14:27:00,1474912,4, +24985738_257136,14:32:00,14:33:00,1474715,5, +24985738_257136,14:41:00,14:41:00,1845555,6, +24985738_257136,14:44:00,14:44:00,1474717,7, +24985738_257136,14:48:00,14:48:00,1474718,8, +24985738_257136,14:53:00,14:53:00,1474719,9, +24985738_257136,14:59:00,15:02:00,1474720,10, +24985738_257136,15:10:00,15:11:00,1474697,11, +24985738_257136,15:15:00,15:16:00,1474688,12, +24985738_257136,15:22:00,15:22:00,1474797,13, +24985738_257136,15:25:00,15:25:00,1474798,14, +24985738_257136,15:28:00,15:28:00,1474799,15, +24985738_257136,15:33:00,15:33:00,1474800,16, +24985738_257136,15:37:00,15:37:00,1474801,17, +24985738_257136,15:43:00,15:43:00,1474802,18, +24985738_257136,15:48:00,15:48:00,1474817,19, +24985738_257136,15:53:00,15:53:00,1474763,20, +24985739_257137,14:04:00,14:04:00,1609726,0, +24985739_257137,14:09:00,14:09:00,1474909,1, +24985739_257137,14:14:00,14:15:00,1474910,2, +24985739_257137,14:20:00,14:21:00,1474911,3, +24985739_257137,14:27:00,14:27:00,1474912,4, +24985739_257137,14:32:00,14:33:00,1474715,5, +24985739_257137,14:41:00,14:41:00,1845555,6, +24985739_257137,14:44:00,14:44:00,1474717,7, +24985739_257137,14:48:00,14:49:00,1474718,8, +24985739_257137,14:53:00,14:54:00,1474719,9, +24985739_257137,15:00:00,15:03:00,1474720,10, +24985739_257137,15:11:00,15:12:00,1474697,11, +24985739_257137,15:16:00,15:17:00,1474688,12, +24985739_257137,15:23:00,15:23:00,1474797,13, +24985739_257137,15:26:00,15:26:00,1474798,14, +24985739_257137,15:29:00,15:29:00,1474799,15, +24985739_257137,15:34:00,15:34:00,1474800,16, +24985739_257137,15:38:00,15:38:00,1474801,17, +24985739_257137,15:44:00,15:44:00,1474802,18, +24985739_257137,15:49:00,15:49:00,1474817,19, +24985739_257137,15:54:00,15:54:00,1474763,20, +24985742_257140,04:18:00,04:18:00,1474760,0, +24985742_257140,04:24:00,04:25:00,1474916,1, +24985742_257140,04:27:00,04:27:00,1474820,2, +24985742_257140,04:30:00,04:31:00,1474917,3, +24985742_257140,04:35:00,04:35:00,1474918,4, +24985742_257140,04:40:00,04:41:00,1474821,5, +24985742_257140,04:49:00,04:49:00,1474757,6, +24985742_257140,04:52:00,04:52:00,1474919,7, +24985742_257140,04:58:00,04:58:00,1474822,8, +24985742_257140,05:01:00,05:02:00,1609772,9, +24985742_257140,05:05:00,05:05:00,1474921,10, +24985742_257140,05:11:00,05:11:00,1474823,11, +24985743_257141,04:33:00,04:33:00,1474781,0, +24985743_257141,04:39:00,04:40:00,1474916,1, +24985743_257141,04:42:00,04:42:00,1474820,2, +24985743_257141,04:45:00,04:45:00,1474917,3, +24985743_257141,04:49:00,04:50:00,1474918,4, +24985743_257141,04:55:00,04:56:00,1474821,5, +24985743_257141,05:02:00,05:02:00,1474757,6, +24985743_257141,05:05:00,05:05:00,1474919,7, +24985743_257141,05:10:00,05:11:00,1474822,8, +24985743_257141,05:14:00,05:15:00,1609772,9, +24985743_257141,05:18:00,05:18:00,1474921,10, +24985743_257141,05:24:00,05:24:00,1474823,11, +24985751_257149,18:03:00,18:03:00,1474937,0, +24985751_257149,18:06:00,18:07:00,1474936,1, +24985751_257149,18:09:00,18:09:00,1474935,2, +24985751_257149,18:13:00,18:13:00,1474934,3, +24985751_257149,18:19:00,18:20:00,1474933,4, +24985751_257149,18:24:00,18:33:00,1474932,5, +24985751_257149,18:36:00,18:37:00,1474938,6, +24985751_257149,18:41:00,18:41:00,1474939,7, +24985751_257149,18:52:00,18:52:00,1474940,8, +24985751_257149,18:59:00,18:59:00,1474941,9, +24985751_257149,19:04:00,19:05:00,1474942,10, +24985751_257149,19:08:00,19:09:00,1474943,11, +24985751_257149,19:15:00,19:15:00,1474944,12, +24985751_257149,19:22:00,19:23:00,1474616,13, +24985751_257149,19:27:00,19:27:00,1474617,14, +24985752_257150,18:03:00,18:03:00,1474937,0, +24985752_257150,18:06:00,18:07:00,1474936,1, +24985752_257150,18:09:00,18:09:00,1474935,2, +24985752_257150,18:13:00,18:13:00,1474934,3, +24985752_257150,18:19:00,18:20:00,1474933,4, +24985752_257150,18:24:00,18:34:00,1474932,5, +24985752_257150,18:37:00,18:37:00,1474938,6, +24985752_257150,18:41:00,18:42:00,1474939,7, +24985752_257150,18:52:00,18:53:00,1474940,8, +24985752_257150,18:59:00,19:00:00,1474941,9, +24985752_257150,19:04:00,19:05:00,1474942,10, +24985752_257150,19:08:00,19:09:00,1474943,11, +24985752_257150,19:15:00,19:15:00,1474944,12, +24985752_257150,19:22:00,19:23:00,1474616,13, +24985752_257150,19:27:00,19:27:00,1474617,14, +24985755_257153,08:52:00,08:52:00,1474888,0, +24985755_257153,09:00:00,09:24:00,1474875,1, +24985755_257153,09:28:00,09:29:00,1474876,2, +24985755_257153,09:31:00,09:32:00,1474877,3, +24985755_257153,09:35:00,09:36:00,1474878,4, +24985755_257153,09:40:00,09:40:00,1474879,5, +24985755_257153,09:42:00,09:42:00,1474880,6, +24985755_257153,09:47:00,09:52:00,1657891,7, +24985755_257153,09:56:00,09:56:00,1474882,8, +24985755_257153,10:00:00,10:01:00,1474646,9, +24985755_257153,10:04:00,10:06:00,1474810,10, +24985755_257153,10:09:00,10:10:00,1474847,11, +24985755_257153,10:15:00,10:15:00,1474848,12, +24985755_257153,10:17:00,10:18:00,1474849,13, +24985755_257153,10:24:00,10:25:00,1474850,14, +24985755_257153,10:29:00,10:30:00,1474851,15, +24985755_257153,10:35:00,10:36:00,1474642,16, +24985755_257153,10:40:00,10:41:00,1474852,17, +24985755_257153,10:45:00,10:46:00,1474853,18, +24985755_257153,10:50:00,10:51:00,1474641,19, +24985755_257153,10:55:00,10:55:00,1474854,20, +24985755_257153,10:59:00,10:59:00,1474855,21, +24985755_257153,11:03:00,11:04:00,1474856,22, +24985755_257153,11:08:00,11:09:00,1474857,23, +24985755_257153,11:13:00,11:13:00,1474858,24, +24985755_257153,11:16:00,11:16:00,1474859,25, +24985755_257153,11:23:00,11:33:00,1474738,26, +24985755_257153,11:37:00,11:38:00,1474701,27, +24985755_257153,11:39:00,11:40:00,1474862,28, +24985755_257153,11:41:00,11:42:00,1474863,29, +24985755_257153,11:44:00,11:45:00,1474864,30, +24985755_257153,11:47:00,11:48:00,1474865,31, +24985755_257153,11:50:00,11:50:00,1474866,32, +24985755_257153,11:53:00,11:53:00,1474867,33, +24985755_257153,11:58:00,11:59:00,1474868,34, +24985755_257153,12:02:00,12:03:00,1474869,35, +24985755_257153,12:07:00,12:07:00,1474870,36, +24985755_257153,12:13:00,12:14:00,1474871,37, +24985755_257153,12:17:00,12:18:00,1474872,38, +24985755_257153,12:20:00,12:21:00,1474873,39, +24985755_257153,12:27:00,12:27:00,1474874,40, +24985756_257154,08:52:00,08:52:00,1474888,0, +24985756_257154,09:00:00,09:24:00,1474875,1, +24985756_257154,09:28:00,09:29:00,1474876,2, +24985756_257154,09:31:00,09:32:00,1474877,3, +24985756_257154,09:35:00,09:36:00,1474878,4, +24985756_257154,09:40:00,09:40:00,1474879,5, +24985756_257154,09:42:00,09:42:00,1474880,6, +24985756_257154,09:47:00,09:52:00,1657891,7, +24985756_257154,09:56:00,09:56:00,1474882,8, +24985756_257154,10:00:00,10:01:00,1474646,9, +24985756_257154,10:04:00,10:05:00,1474810,10, +24985756_257154,10:08:00,10:08:00,1474847,11, +24985756_257154,10:13:00,10:14:00,1474848,12, +24985756_257154,10:16:00,10:16:00,1474849,13, +24985756_257154,10:23:00,10:24:00,1474850,14, +24985756_257154,10:28:00,10:28:00,1474851,15, +24985756_257154,10:34:00,10:35:00,1474642,16, +24985756_257154,10:39:00,10:39:00,1474852,17, +24985756_257154,10:44:00,10:44:00,1474853,18, +24985756_257154,10:49:00,10:50:00,1474641,19, +24985756_257154,10:53:00,10:54:00,1474854,20, +24985756_257154,10:57:00,10:58:00,1474855,21, +24985756_257154,11:02:00,11:02:00,1474856,22, +24985756_257154,11:07:00,11:07:00,1474857,23, +24985756_257154,11:11:00,11:12:00,1474858,24, +24985756_257154,11:14:00,11:15:00,1474859,25, +24985756_257154,11:21:00,11:32:00,1474861,26, +24985756_257154,11:36:00,11:37:00,1474701,27, +24985756_257154,11:38:00,11:38:00,1474862,28, +24985756_257154,11:40:00,11:41:00,1474863,29, +24985756_257154,11:43:00,11:44:00,1474864,30, +24985756_257154,11:47:00,11:47:00,1474865,31, +24985756_257154,11:49:00,11:50:00,1474866,32, +24985756_257154,11:53:00,11:53:00,1474867,33, +24985756_257154,11:59:00,12:08:00,1474868,34, +24985756_257154,12:11:00,12:11:00,1474869,35, +24985756_257154,12:15:00,12:16:00,1474870,36, +24985756_257154,12:22:00,12:23:00,1474871,37, +24985756_257154,12:26:00,12:26:00,1474872,38, +24985756_257154,12:29:00,12:29:00,1474873,39, +24985756_257154,12:35:00,12:35:00,1474874,40, +24985759_257157,13:36:00,13:36:00,1474888,0, +24985759_257157,13:44:00,13:45:00,1474875,1, +24985759_257157,13:49:00,13:50:00,1474876,2, +24985759_257157,13:52:00,13:53:00,1474877,3, +24985759_257157,13:56:00,13:57:00,1474878,4, +24985759_257157,14:01:00,14:01:00,1474879,5, +24985759_257157,14:03:00,14:04:00,1474880,6, +24985759_257157,14:08:00,14:09:00,1474881,7, +24985759_257157,14:12:00,14:13:00,1474882,8, +24985759_257157,14:17:00,14:40:00,1474646,9, +24985759_257157,14:42:00,14:43:00,1474810,10, +24985759_257157,14:46:00,14:46:00,1474847,11, +24985759_257157,14:51:00,14:52:00,1474848,12, +24985759_257157,14:54:00,14:54:00,1474849,13, +24985759_257157,14:58:00,14:58:00,1474885,14, +24985759_257157,15:02:00,15:03:00,1474850,15, +24985759_257157,15:07:00,15:11:00,1474883,16, +24985759_257157,15:16:00,15:17:00,1474642,17, +24985759_257157,15:22:00,15:22:00,1474852,18, +24985759_257157,15:27:00,15:28:00,1474853,19, +24985759_257157,15:32:00,15:33:00,1474641,20, +24985759_257157,15:37:00,15:37:00,1474854,21, +24985759_257157,15:41:00,15:42:00,1474855,22, +24985759_257157,15:45:00,15:46:00,1474856,23, +24985759_257157,15:50:00,15:50:00,1474857,24, +24985759_257157,15:54:00,15:55:00,1474858,25, +24985759_257157,15:57:00,15:58:00,1474859,26, +24985759_257157,16:05:00,16:05:00,1474640,27, +24985761_257159,13:36:00,13:36:00,1474888,0, +24985761_257159,13:44:00,13:45:00,1474875,1, +24985761_257159,13:49:00,13:50:00,1474876,2, +24985761_257159,13:52:00,13:53:00,1474877,3, +24985761_257159,13:56:00,13:57:00,1474878,4, +24985761_257159,14:01:00,14:01:00,1474879,5, +24985761_257159,14:03:00,14:04:00,1474880,6, +24985761_257159,14:09:00,14:09:00,1474881,7, +24985761_257159,14:13:00,14:13:00,1474882,8, +24985761_257159,14:18:00,14:35:00,1474646,9, +24985761_257159,14:37:00,14:38:00,1474810,10, +24985761_257159,14:41:00,14:41:00,1474847,11, +24985761_257159,14:47:00,14:47:00,1474848,12, +24985761_257159,14:49:00,14:49:00,1474849,13, +24985761_257159,14:53:00,14:53:00,1474885,14, +24985761_257159,14:57:00,14:58:00,1474850,15, +24985761_257159,15:02:00,15:02:00,1474851,16, +24985761_257159,15:08:00,15:09:00,1474890,17, +24985761_257159,15:13:00,15:14:00,1474852,18, +24985761_257159,15:18:00,15:19:00,1474853,19, +24985761_257159,15:23:00,15:24:00,1474641,20, +24985761_257159,15:27:00,15:28:00,1474854,21, +24985761_257159,15:32:00,15:32:00,1474855,22, +24985761_257159,15:36:00,15:37:00,1474856,23, +24985761_257159,15:41:00,15:41:00,1474857,24, +24985761_257159,15:47:00,15:47:00,1474858,25, +24985761_257159,15:50:00,15:50:00,1474859,26, +24985761_257159,15:56:00,15:56:00,1474651,27, +24985763_257161,15:52:00,15:52:00,1474888,0, +24985763_257161,16:00:00,16:03:00,1474875,1, +24985763_257161,16:08:00,16:08:00,1474876,2, +24985763_257161,16:11:00,16:12:00,1474877,3, +24985763_257161,16:15:00,16:16:00,1474878,4, +24985763_257161,16:20:00,16:21:00,1474879,5, +24985763_257161,16:23:00,16:23:00,1474880,6, +24985763_257161,16:28:00,16:28:00,1474881,7, +24985763_257161,16:32:00,16:32:00,1474882,8, +24985763_257161,16:37:00,16:52:00,1474646,9, +24985763_257161,16:54:00,16:55:00,1474810,10, +24985763_257161,16:58:00,16:58:00,1474847,11, +24985763_257161,17:03:00,17:04:00,1474848,12, +24985763_257161,17:06:00,17:06:00,1474849,13, +24985763_257161,17:13:00,17:18:00,1474850,14, +24985763_257161,17:22:00,17:22:00,1474851,15, +24985763_257161,17:28:00,17:29:00,1474890,16, +24985763_257161,17:33:00,17:33:00,1474852,17, +24985763_257161,17:38:00,17:45:00,1474853,18, +24985763_257161,17:50:00,17:54:00,1474641,19, +24985763_257161,17:58:00,17:58:00,1474854,20, +24985763_257161,18:03:00,18:03:00,1474855,21, +24985763_257161,18:07:00,18:07:00,1474856,22, +24985763_257161,18:11:00,18:12:00,1474857,23, +24985763_257161,18:15:00,18:16:00,1474858,24, +24985763_257161,18:18:00,18:19:00,1474859,25, +24985763_257161,18:25:00,18:35:00,1474738,26, +24985763_257161,18:39:00,18:40:00,1474701,27, +24985763_257161,18:42:00,18:42:00,1474862,28, +24985763_257161,18:44:00,18:44:00,1474863,29, +24985763_257161,18:47:00,18:47:00,1474864,30, +24985763_257161,18:50:00,18:51:00,1474865,31, +24985763_257161,18:53:00,18:54:00,1474866,32, +24985763_257161,18:56:00,18:57:00,1474867,33, +24985763_257161,19:02:00,19:03:00,1474868,34, +24985763_257161,19:06:00,19:07:00,1474869,35, +24985763_257161,19:10:00,19:11:00,1474870,36, +24985763_257161,19:17:00,19:18:00,1474871,37, +24985763_257161,19:21:00,19:22:00,1474872,38, +24985763_257161,19:25:00,19:25:00,1474873,39, +24985763_257161,19:31:00,19:31:00,1474874,40, +24985765_257163,15:52:00,15:52:00,1474888,0, +24985765_257163,16:00:00,16:01:00,1474875,1, +24985765_257163,16:05:00,16:05:00,1474876,2, +24985765_257163,16:08:00,16:13:00,1474877,3, +24985765_257163,16:16:00,16:16:00,1474878,4, +24985765_257163,16:20:00,16:21:00,1474879,5, +24985765_257163,16:23:00,16:23:00,1474880,6, +24985765_257163,16:28:00,16:28:00,1474881,7, +24985765_257163,16:32:00,16:32:00,1474882,8, +24985765_257163,16:37:00,16:52:00,1474646,9, +24985765_257163,16:54:00,16:55:00,1474810,10, +24985765_257163,16:58:00,16:58:00,1474847,11, +24985765_257163,17:03:00,17:04:00,1474848,12, +24985765_257163,17:06:00,17:06:00,1474849,13, +24985765_257163,17:13:00,17:18:00,1474850,14, +24985765_257163,17:22:00,17:22:00,1474851,15, +24985765_257163,17:28:00,17:29:00,1474890,16, +24985765_257163,17:33:00,17:33:00,1474852,17, +24985765_257163,17:38:00,17:45:00,1703011,18, +24985765_257163,17:50:00,17:53:00,1474641,19, +24985765_257163,17:57:00,17:57:00,1474854,20, +24985765_257163,18:02:00,18:02:00,1474855,21, +24985765_257163,18:06:00,18:06:00,1474856,22, +24985765_257163,18:10:00,18:11:00,1474857,23, +24985765_257163,18:14:00,18:15:00,1474858,24, +24985765_257163,18:17:00,18:18:00,1474859,25, +24985765_257163,18:24:00,18:29:00,1474861,26, +24985765_257163,18:33:00,18:34:00,1474701,27, +24985765_257163,18:36:00,18:36:00,1474862,28, +24985765_257163,18:38:00,18:38:00,1474863,29, +24985765_257163,18:41:00,18:41:00,1474864,30, +24985765_257163,18:44:00,18:44:00,1474865,31, +24985765_257163,18:46:00,18:47:00,1474866,32, +24985765_257163,18:49:00,18:50:00,1474867,33, +24985765_257163,18:54:00,18:55:00,1474868,34, +24985765_257163,18:58:00,18:59:00,1474869,35, +24985765_257163,19:02:00,19:03:00,1474870,36, +24985765_257163,19:09:00,19:10:00,1474871,37, +24985765_257163,19:13:00,19:13:00,1474872,38, +24985765_257163,19:16:00,19:17:00,1474873,39, +24985765_257163,19:22:00,19:22:00,1474874,40, +24985767_257165,15:52:00,15:52:00,1474888,0, +24985767_257165,16:00:00,16:03:00,1474875,1, +24985767_257165,16:08:00,16:08:00,1474876,2, +24985767_257165,16:11:00,16:12:00,1474877,3, +24985767_257165,16:15:00,16:16:00,1474878,4, +24985767_257165,16:20:00,16:21:00,1474879,5, +24985767_257165,16:23:00,16:23:00,1474880,6, +24985767_257165,16:28:00,16:28:00,1474881,7, +24985767_257165,16:32:00,16:32:00,1474882,8, +24985767_257165,16:37:00,16:52:00,1474646,9, +24985767_257165,16:54:00,16:55:00,1474810,10, +24985767_257165,16:58:00,16:58:00,1474847,11, +24985767_257165,17:03:00,17:04:00,1474848,12, +24985767_257165,17:06:00,17:06:00,1474849,13, +24985767_257165,17:13:00,17:18:00,1474850,14, +24985767_257165,17:22:00,17:22:00,1474851,15, +24985767_257165,17:28:00,17:29:00,1474890,16, +24985767_257165,17:33:00,17:33:00,1474852,17, +24985767_257165,17:38:00,17:45:00,1474853,18, +24985767_257165,17:50:00,17:54:00,1474641,19, +24985767_257165,17:58:00,17:58:00,1474854,20, +24985767_257165,18:03:00,18:03:00,1474855,21, +24985767_257165,18:07:00,18:07:00,1474856,22, +24985767_257165,18:11:00,18:12:00,1474857,23, +24985767_257165,18:15:00,18:16:00,1474858,24, +24985767_257165,18:18:00,18:19:00,1474859,25, +24985767_257165,18:25:00,18:25:00,1474640,26, +24985768_257166,15:52:00,15:52:00,1474888,0, +24985768_257166,16:00:00,16:01:00,1474875,1, +24985768_257166,16:05:00,16:05:00,1474876,2, +24985768_257166,16:08:00,16:13:00,1474877,3, +24985768_257166,16:16:00,16:16:00,1474878,4, +24985768_257166,16:20:00,16:21:00,1474879,5, +24985768_257166,16:23:00,16:23:00,1474880,6, +24985768_257166,16:28:00,16:28:00,1474881,7, +24985768_257166,16:32:00,16:32:00,1474882,8, +24985768_257166,16:37:00,16:52:00,1474646,9, +24985768_257166,16:54:00,16:55:00,1474810,10, +24985768_257166,16:58:00,16:58:00,1474847,11, +24985768_257166,17:03:00,17:04:00,1474848,12, +24985768_257166,17:06:00,17:06:00,1474849,13, +24985768_257166,17:13:00,17:18:00,1474850,14, +24985768_257166,17:22:00,17:22:00,1474851,15, +24985768_257166,17:28:00,17:29:00,1474890,16, +24985768_257166,17:33:00,17:33:00,1474852,17, +24985768_257166,17:38:00,17:45:00,1703011,18, +24985768_257166,17:50:00,17:53:00,1474641,19, +24985768_257166,17:57:00,17:57:00,1474854,20, +24985768_257166,18:02:00,18:02:00,1474855,21, +24985768_257166,18:06:00,18:06:00,1474856,22, +24985768_257166,18:10:00,18:11:00,1474857,23, +24985768_257166,18:14:00,18:15:00,1474858,24, +24985768_257166,18:17:00,18:18:00,1474859,25, +24985768_257166,18:24:00,18:24:00,1474640,26, +24985770_257168,17:36:00,17:36:00,1474888,0, +24985770_257168,17:44:00,17:45:00,1474875,1, +24985770_257168,17:59:00,18:00:00,1474880,2, +24985770_257168,18:18:00,18:24:00,1474646,3, +24985770_257168,18:26:00,18:27:00,1474810,4, +24985770_257168,18:35:00,18:35:00,1474848,5, +24985770_257168,18:44:00,18:48:00,1474850,6, +24985770_257168,18:57:00,18:58:00,1474642,7, +24985770_257168,19:10:00,19:11:00,1474641,8, +24985770_257168,19:18:00,19:18:00,1474855,9, +24985770_257168,19:25:00,19:26:00,1474857,10, +24985770_257168,19:37:00,19:37:00,1474640,11, +24985772_257170,17:36:00,17:36:00,1474888,0, +24985772_257170,17:44:00,17:49:00,1474875,1, +24985772_257170,18:01:00,18:02:00,1474880,2, +24985772_257170,18:18:00,18:24:00,1474646,3, +24985772_257170,18:26:00,18:27:00,1474810,4, +24985772_257170,18:38:00,18:39:00,1474848,5, +24985772_257170,18:47:00,18:48:00,1474850,6, +24985772_257170,18:57:00,18:58:00,1474642,7, +24985772_257170,19:10:00,19:11:00,1474641,8, +24985772_257170,19:18:00,19:18:00,1474855,9, +24985772_257170,19:25:00,19:26:00,1474857,10, +24985772_257170,19:37:00,19:37:00,1474640,11, +24985774_257172,08:43:00,08:43:00,1474640,0, +24985774_257172,08:49:00,08:50:00,1474794,1, +24985774_257172,09:00:00,09:01:00,1474795,2, +24985774_257172,09:14:00,09:14:00,1474796,3, +24985774_257172,09:19:00,09:25:00,1474714,4, +24985774_257172,09:33:00,09:34:00,1474697,5, +24985774_257172,09:37:00,09:38:00,1474688,6, +24985774_257172,09:44:00,09:44:00,1474797,7, +24985774_257172,09:47:00,09:47:00,1474798,8, +24985774_257172,09:49:00,09:50:00,1474799,9, +24985774_257172,09:54:00,09:55:00,1474800,10, +24985774_257172,09:58:00,09:59:00,1474801,11, +24985774_257172,10:04:00,10:05:00,1474802,12, +24985774_257172,10:08:00,10:09:00,1474817,13, +24985774_257172,10:14:00,10:14:00,1474763,14, +24985777_257175,12:06:00,12:06:00,1536277,0, +24985777_257175,12:11:00,12:12:00,1474794,1, +24985777_257175,12:23:00,12:24:00,1474795,2, +24985777_257175,12:37:00,12:37:00,1474796,3, +24985777_257175,12:42:00,12:48:00,1474714,4, +24985777_257175,12:56:00,12:57:00,1474697,5, +24985777_257175,13:00:00,13:01:00,1474688,6, +24985777_257175,13:07:00,13:07:00,1474797,7, +24985777_257175,13:10:00,13:10:00,1474798,8, +24985777_257175,13:12:00,13:13:00,1474799,9, +24985777_257175,13:17:00,13:18:00,1474800,10, +24985777_257175,13:21:00,13:22:00,1474801,11, +24985777_257175,13:27:00,13:28:00,1474802,12, +24985777_257175,13:32:00,13:33:00,1474817,13, +24985777_257175,13:37:00,13:37:00,1474763,14, +24985777_257175,13:39:00,13:40:00,1474764,15, +24985777_257175,13:44:00,13:44:00,1474765,16, +24985777_257175,13:47:00,13:47:00,1474766,17, +24985777_257175,13:51:00,13:51:00,1474767,18, +24985777_257175,13:56:00,13:57:00,1474768,19, +24985777_257175,14:07:00,14:07:00,1474770,20, +24985777_257175,14:15:00,14:15:00,1474771,21, +24985777_257175,14:26:00,14:27:00,1474645,22, +24985777_257175,14:29:00,14:31:00,1474646,23, +24985777_257175,14:41:00,14:41:00,1474751,24, +24985777_257175,14:47:00,14:47:00,1474752,25, +24985777_257175,14:54:00,14:55:00,1474648,26, +24985777_257175,15:04:00,15:10:00,1474649,27, +24985777_257175,15:26:00,15:27:00,1474754,28, +24985777_257175,15:32:00,15:32:00,1474650,29, +24985778_257176,12:05:00,12:05:00,1474640,0, +24985778_257176,12:10:00,12:11:00,1474794,1, +24985778_257176,12:22:00,12:23:00,1474795,2, +24985778_257176,12:36:00,12:36:00,1474796,3, +24985778_257176,12:41:00,12:47:00,1474714,4, +24985778_257176,12:55:00,12:56:00,1474697,5, +24985778_257176,12:59:00,13:00:00,1474688,6, +24985778_257176,13:06:00,13:06:00,1474797,7, +24985778_257176,13:09:00,13:09:00,1474798,8, +24985778_257176,13:11:00,13:12:00,1474799,9, +24985778_257176,13:16:00,13:17:00,1474800,10, +24985778_257176,13:20:00,13:21:00,1474801,11, +24985778_257176,13:26:00,13:27:00,1474802,12, +24985778_257176,13:31:00,13:31:00,1474817,13, +24985778_257176,13:36:00,13:36:00,1474763,14, +24985778_257176,13:38:00,13:39:00,1474764,15, +24985778_257176,13:43:00,13:43:00,1474765,16, +24985778_257176,13:46:00,13:46:00,1474766,17, +24985778_257176,13:50:00,13:50:00,1474767,18, +24985778_257176,13:55:00,13:56:00,1474768,19, +24985778_257176,14:06:00,14:06:00,1474770,20, +24985778_257176,14:14:00,14:14:00,1474771,21, +24985778_257176,14:25:00,14:26:00,1474645,22, +24985778_257176,14:29:00,14:39:00,1474774,23, +24985778_257176,14:45:00,14:46:00,1474751,24, +24985778_257176,14:50:00,14:51:00,1474752,25, +24985778_257176,14:58:00,14:58:00,1474648,26, +24985778_257176,15:07:00,15:08:00,1474649,27, +24985778_257176,15:24:00,15:24:00,1474754,28, +24985778_257176,15:30:00,15:30:00,1474650,29, +24985780_257178,20:30:00,20:30:00,1474640,0, +24985780_257178,20:36:00,20:37:00,1474794,1, +24985780_257178,20:48:00,20:49:00,1474795,2, +24985780_257178,21:02:00,21:02:00,1474796,3, +24985780_257178,21:07:00,21:15:00,1474714,4, +24985780_257178,21:23:00,21:24:00,1474697,5, +24985780_257178,21:27:00,21:28:00,1474688,6, +24985780_257178,21:34:00,21:34:00,1474797,7, +24985780_257178,21:37:00,21:37:00,1474798,8, +24985780_257178,21:40:00,21:40:00,1474799,9, +24985780_257178,21:45:00,21:45:00,1474800,10, +24985780_257178,21:49:00,21:49:00,1474801,11, +24985780_257178,21:55:00,21:55:00,1474802,12, +24985780_257178,21:59:00,21:59:00,1474817,13, +24985780_257178,22:03:00,22:04:00,1474763,14, +24985780_257178,22:06:00,22:06:00,1474764,15, +24985780_257178,22:11:00,22:11:00,1474765,16, +24985780_257178,22:13:00,22:14:00,1474766,17, +24985780_257178,22:18:00,22:18:00,1474767,18, +24985780_257178,22:23:00,22:23:00,1474768,19, +24985780_257178,22:30:00,22:31:00,1474769,20, +24985780_257178,22:34:00,22:35:00,1474770,21, +24985780_257178,22:42:00,22:42:00,1474771,22, +24985780_257178,22:47:00,22:47:00,1474772,23, +24985780_257178,22:50:00,22:50:00,1474773,24, +24985780_257178,22:56:00,22:56:00,1474645,25, +24985781_257179,20:31:00,20:31:00,1474640,0, +24985781_257179,20:36:00,20:37:00,1474794,1, +24985781_257179,20:48:00,20:49:00,1474795,2, +24985781_257179,21:02:00,21:02:00,1474796,3, +24985781_257179,21:07:00,21:15:00,1474714,4, +24985781_257179,21:23:00,21:24:00,1474697,5, +24985781_257179,21:27:00,21:28:00,1474688,6, +24985781_257179,21:34:00,21:34:00,1474797,7, +24985781_257179,21:37:00,21:37:00,1474798,8, +24985781_257179,21:40:00,21:40:00,1474799,9, +24985781_257179,21:45:00,21:45:00,1474800,10, +24985781_257179,21:49:00,21:49:00,1474801,11, +24985781_257179,21:55:00,21:55:00,1474802,12, +24985781_257179,21:59:00,21:59:00,1474817,13, +24985781_257179,22:03:00,22:04:00,1474763,14, +24985781_257179,22:06:00,22:06:00,1474764,15, +24985781_257179,22:11:00,22:11:00,1474765,16, +24985781_257179,22:13:00,22:14:00,1474766,17, +24985781_257179,22:18:00,22:18:00,1474767,18, +24985781_257179,22:23:00,22:23:00,1474768,19, +24985781_257179,22:30:00,22:31:00,1474769,20, +24985781_257179,22:34:00,22:35:00,1474770,21, +24985781_257179,22:42:00,22:42:00,1474771,22, +24985781_257179,22:47:00,22:47:00,1474772,23, +24985781_257179,22:50:00,22:50:00,1474773,24, +24985781_257179,22:56:00,22:56:00,1474645,25, +24985784_257182,09:01:00,09:01:00,1474650,0, +24985784_257182,09:05:00,09:06:00,1474754,1, +24985784_257182,09:22:00,09:22:00,1474649,2, +24985784_257182,09:31:00,09:31:00,1474648,3, +24985784_257182,09:39:00,09:40:00,1474647,4, +24985784_257182,09:45:00,09:45:00,1474751,5, +24985784_257182,09:53:00,10:07:00,1474646,6, +24985784_257182,10:09:00,10:10:00,1474810,7, +24985784_257182,10:21:00,10:21:00,1474771,8, +24985784_257182,10:29:00,10:29:00,1474811,9, +24985784_257182,10:40:00,10:40:00,1474768,10, +24985784_257182,10:45:00,10:46:00,1474767,11, +24985784_257182,10:50:00,10:51:00,1474812,12, +24985784_257182,10:53:00,10:54:00,1474813,13, +24985784_257182,10:59:00,10:59:00,1474814,14, +24985784_257182,11:01:00,11:02:00,1474815,15, +24985784_257182,11:06:00,11:06:00,1474817,16, +24985784_257182,11:10:00,11:10:00,1474802,17, +24985784_257182,11:15:00,11:16:00,1474801,18, +24985784_257182,11:19:00,11:20:00,1474800,19, +24985784_257182,11:24:00,11:24:00,1474799,20, +24985784_257182,11:27:00,11:27:00,1474798,21, +24985784_257182,11:29:00,11:29:00,1474797,22, +24985784_257182,11:36:00,11:37:00,1474688,23, +24985784_257182,11:39:00,11:39:00,1474689,24, +24985784_257182,11:48:00,11:58:00,1474714,25, +24985784_257182,12:02:00,12:03:00,1474796,26, +24985784_257182,12:17:00,12:18:00,1474818,27, +24985784_257182,12:28:00,12:29:00,1474819,28, +24985784_257182,12:36:00,12:36:00,1474651,29, +24985785_257183,09:16:00,09:16:00,1474650,0, +24985785_257183,09:21:00,09:21:00,1474754,1, +24985785_257183,09:38:00,09:43:00,1474649,2, +24985785_257183,09:52:00,09:52:00,1474648,3, +24985785_257183,10:00:00,10:00:00,1474752,4, +24985785_257183,10:04:00,10:04:00,1474751,5, +24985785_257183,10:12:00,10:14:00,1474646,6, +24985785_257183,10:16:00,10:17:00,1474810,7, +24985785_257183,10:28:00,10:28:00,1474771,8, +24985785_257183,10:36:00,10:36:00,1474811,9, +24985785_257183,10:47:00,10:47:00,1474768,10, +24985785_257183,10:52:00,10:53:00,1474767,11, +24985785_257183,10:57:00,10:58:00,1474812,12, +24985785_257183,11:00:00,11:01:00,1474813,13, +24985785_257183,11:05:00,11:05:00,1474814,14, +24985785_257183,11:08:00,11:08:00,1474815,15, +24985785_257183,11:12:00,11:12:00,1474817,16, +24985785_257183,11:16:00,11:16:00,1474802,17, +24985785_257183,11:21:00,11:22:00,1474801,18, +24985785_257183,11:25:00,11:26:00,1474800,19, +24985785_257183,11:30:00,11:30:00,1474799,20, +24985785_257183,11:33:00,11:33:00,1474798,21, +24985785_257183,11:35:00,11:35:00,1474797,22, +24985785_257183,11:42:00,11:43:00,1474688,23, +24985785_257183,11:45:00,11:45:00,1474689,24, +24985785_257183,11:54:00,12:00:00,1474714,25, +24985785_257183,12:04:00,12:04:00,1474796,26, +24985785_257183,12:18:00,12:19:00,1474818,27, +24985785_257183,12:29:00,12:30:00,1474819,28, +24985785_257183,12:37:00,12:37:00,1474640,29, +24985787_257185,16:59:00,16:59:00,1474646,0, +24985787_257185,17:01:00,17:02:00,1474810,1, +24985787_257185,17:07:00,17:07:00,1474773,2, +24985787_257185,17:11:00,17:11:00,1474772,3, +24985787_257185,17:16:00,17:17:00,1474771,4, +24985787_257185,17:25:00,17:25:00,1474811,5, +24985787_257185,17:29:00,17:29:00,1474769,6, +24985787_257185,17:36:00,17:37:00,1474768,7, +24985787_257185,17:42:00,17:42:00,1474767,8, +24985787_257185,17:46:00,17:46:00,1474812,9, +24985787_257185,17:49:00,17:49:00,1474813,10, +24985787_257185,17:53:00,17:54:00,1474814,11, +24985787_257185,17:56:00,17:57:00,1474815,12, +24985787_257185,18:00:00,18:01:00,1474817,13, +24985787_257185,18:04:00,18:05:00,1474802,14, +24985787_257185,18:10:00,18:10:00,1474801,15, +24985787_257185,18:14:00,18:15:00,1474800,16, +24985787_257185,18:19:00,18:19:00,1474799,17, +24985787_257185,18:22:00,18:22:00,1474798,18, +24985787_257185,18:24:00,18:24:00,1474797,19, +24985787_257185,18:30:00,18:31:00,1474688,20, +24985787_257185,18:33:00,18:34:00,1474689,21, +24985787_257185,18:43:00,18:49:00,1474714,22, +24985787_257185,18:53:00,18:54:00,1474796,23, +24985787_257185,19:07:00,19:08:00,1474818,24, +24985787_257185,19:19:00,19:20:00,1474819,25, +24985787_257185,19:26:00,19:26:00,1536277,26, +24985788_257186,16:59:00,16:59:00,1474646,0, +24985788_257186,17:01:00,17:02:00,1474810,1, +24985788_257186,17:07:00,17:07:00,1474773,2, +24985788_257186,17:11:00,17:11:00,1474772,3, +24985788_257186,17:16:00,17:17:00,1474771,4, +24985788_257186,17:25:00,17:25:00,1474811,5, +24985788_257186,17:29:00,17:29:00,1474769,6, +24985788_257186,17:36:00,17:37:00,1474768,7, +24985788_257186,17:42:00,17:42:00,1474767,8, +24985788_257186,17:46:00,17:46:00,1474812,9, +24985788_257186,17:49:00,17:49:00,1474813,10, +24985788_257186,17:53:00,17:54:00,1474814,11, +24985788_257186,17:56:00,17:57:00,1474815,12, +24985788_257186,18:00:00,18:01:00,1474817,13, +24985788_257186,18:04:00,18:05:00,1474802,14, +24985788_257186,18:10:00,18:10:00,1474801,15, +24985788_257186,18:14:00,18:15:00,1474800,16, +24985788_257186,18:19:00,18:19:00,1474799,17, +24985788_257186,18:22:00,18:22:00,1474798,18, +24985788_257186,18:24:00,18:24:00,1474797,19, +24985788_257186,18:30:00,18:31:00,1474688,20, +24985788_257186,18:33:00,18:34:00,1474689,21, +24985788_257186,18:43:00,18:49:00,1474714,22, +24985788_257186,18:53:00,18:54:00,1474796,23, +24985788_257186,19:07:00,19:08:00,1474818,24, +24985788_257186,19:19:00,19:20:00,1474819,25, +24985788_257186,19:26:00,19:26:00,1474738,26, +24985793_257191,10:38:00,10:38:00,1474650,0, +24985793_257191,10:59:00,10:59:00,1474649,1, +24985793_257191,11:08:00,11:08:00,1474648,2, +24985793_257191,11:15:00,11:16:00,1474647,3, +24985793_257191,11:28:00,11:33:00,1474646,4, +24985793_257191,11:36:00,11:37:00,1474810,5, +24985793_257191,11:45:00,11:45:00,1474848,6, +24985793_257191,11:53:00,11:53:00,1474850,7, +24985793_257191,12:03:00,12:04:00,1474642,8, +24985793_257191,12:16:00,12:17:00,1474641,9, +24985793_257191,12:40:00,12:40:00,1474640,10, +24985794_257192,11:09:00,11:09:00,1474650,0, +24985794_257192,11:30:00,11:30:00,1474649,1, +24985794_257192,11:39:00,11:40:00,1474648,2, +24985794_257192,11:47:00,11:47:00,1474752,3, +24985794_257192,11:57:00,11:58:00,1474646,4, +24985794_257192,12:01:00,12:01:00,1474810,5, +24985794_257192,12:09:00,12:09:00,1474848,6, +24985794_257192,12:17:00,12:18:00,1474850,7, +24985794_257192,12:28:00,12:28:00,1474642,8, +24985794_257192,12:40:00,12:41:00,1474641,9, +24985794_257192,13:04:00,13:04:00,1474640,10, +24985797_257195,17:47:00,17:47:00,1474650,0, +24985797_257195,18:07:00,18:08:00,1474649,1, +24985797_257195,18:17:00,18:17:00,1474648,2, +24985797_257195,18:24:00,18:24:00,1474647,3, +24985797_257195,18:36:00,18:37:00,1474646,4, +24985797_257195,18:39:00,18:40:00,1474810,5, +24985797_257195,18:47:00,18:48:00,1474848,6, +24985797_257195,18:56:00,18:57:00,1474850,7, +24985797_257195,19:07:00,19:08:00,1474642,8, +24985797_257195,19:20:00,19:21:00,1474641,9, +24985797_257195,19:45:00,19:45:00,1474640,10, +24985798_257196,17:48:00,17:48:00,1474650,0, +24985798_257196,18:09:00,18:09:00,1474649,1, +24985798_257196,18:18:00,18:19:00,1474648,2, +24985798_257196,18:26:00,18:26:00,1474752,3, +24985798_257196,18:36:00,18:37:00,1474646,4, +24985798_257196,18:39:00,18:40:00,1474810,5, +24985798_257196,18:47:00,18:48:00,1474848,6, +24985798_257196,18:56:00,18:57:00,1474850,7, +24985798_257196,19:07:00,19:08:00,1474642,8, +24985798_257196,19:20:00,19:21:00,1474641,9, +24985798_257196,19:44:00,19:44:00,1474640,10, +24985800_257198,20:58:00,20:58:00,1474875,0, +24985800_257198,21:03:00,21:03:00,1474876,1, +24985800_257198,21:06:00,21:06:00,1474877,2, +24985800_257198,21:09:00,21:10:00,1474878,3, +24985800_257198,21:14:00,21:15:00,1474879,4, +24985800_257198,21:16:00,21:17:00,1474880,5, +24985800_257198,21:21:00,21:22:00,1474881,6, +24985800_257198,21:25:00,21:26:00,1474882,7, +24985800_257198,21:30:00,21:31:00,1474646,8, +24985800_257198,21:33:00,21:34:00,1474810,9, +24985800_257198,21:41:00,21:42:00,1474848,10, +24985800_257198,21:51:00,21:53:00,1474850,11, +24985800_257198,22:02:00,22:03:00,1474642,12, +24985800_257198,22:14:00,22:15:00,1474641,13, +24985800_257198,22:38:00,22:38:00,1474640,14, +24985801_257199,21:01:00,21:01:00,1474875,0, +24985801_257199,21:05:00,21:06:00,1474876,1, +24985801_257199,21:08:00,21:09:00,1474877,2, +24985801_257199,21:11:00,21:12:00,1474878,3, +24985801_257199,21:16:00,21:17:00,1474879,4, +24985801_257199,21:18:00,21:19:00,1474880,5, +24985801_257199,21:23:00,21:24:00,1474881,6, +24985801_257199,21:27:00,21:27:00,1474882,7, +24985801_257199,21:31:00,21:32:00,1474646,8, +24985801_257199,21:34:00,21:35:00,1474810,9, +24985801_257199,21:43:00,21:43:00,1474848,10, +24985801_257199,21:52:00,21:53:00,1474850,11, +24985801_257199,22:02:00,22:03:00,1474642,12, +24985801_257199,22:14:00,22:15:00,1474641,13, +24985801_257199,22:38:00,22:38:00,1474640,14, +24985802_257200,16:14:00,16:14:00,1474951,0, +24985802_257200,16:22:00,16:22:00,1474952,1, +24985802_257200,16:29:00,16:30:00,1474953,2, +24985802_257200,16:33:00,16:33:00,1474954,3, +24985802_257200,16:37:00,16:37:00,1474955,4, +24985802_257200,16:41:00,16:48:00,1474956,5, +24985802_257200,16:52:00,16:52:00,1474957,6, +24985802_257200,16:54:00,16:55:00,1474958,7, +24985802_257200,16:59:00,16:59:00,1474959,8, +24985802_257200,17:02:00,17:02:00,1474960,9, +24985802_257200,17:05:00,17:05:00,1474961,10, +24985802_257200,17:09:00,17:10:00,1474962,11, +24985802_257200,17:15:00,17:17:00,1474843,12, +24985802_257200,17:32:00,17:32:00,1474949,13, +24985802_257200,17:45:00,17:46:00,1474950,14, +24985802_257200,17:48:00,17:49:00,1474793,15, +24985802_257200,17:54:00,17:54:00,1474738,16, +24985804_257202,14:35:00,14:35:00,1474948,0, +24985804_257202,14:39:00,14:39:00,1474959,1, +24985804_257202,14:42:00,14:42:00,1474960,2, +24985804_257202,14:45:00,14:45:00,1474961,3, +24985804_257202,14:49:00,14:50:00,1474962,4, +24985804_257202,14:55:00,14:57:00,1474947,5, +24985804_257202,15:12:00,15:12:00,1474949,6, +24985804_257202,15:25:00,15:26:00,1474950,7, +24985804_257202,15:28:00,15:28:00,1474793,8, +24985804_257202,15:34:00,15:34:00,1474640,9, +24985805_257203,14:35:00,14:35:00,1474948,0, +24985805_257203,14:39:00,14:39:00,1474959,1, +24985805_257203,14:42:00,14:42:00,1474960,2, +24985805_257203,14:45:00,14:45:00,1474961,3, +24985805_257203,14:49:00,14:50:00,1474962,4, +24985805_257203,14:55:00,14:56:00,1609726,5, +24985805_257203,15:11:00,15:11:00,1474949,6, +24985805_257203,15:24:00,15:25:00,1474950,7, +24985805_257203,15:27:00,15:27:00,1474793,8, +24985805_257203,15:33:00,15:33:00,1474640,9, +24985807_257205,16:13:00,16:13:00,1474951,0, +24985807_257205,16:21:00,16:21:00,1474952,1, +24985807_257205,16:28:00,16:29:00,1474953,2, +24985807_257205,16:32:00,16:32:00,1474954,3, +24985807_257205,16:36:00,16:36:00,1474955,4, +24985807_257205,16:39:00,16:47:00,1474956,5, +24985807_257205,16:51:00,16:52:00,1474957,6, +24985807_257205,16:54:00,16:57:00,1474958,7, +24985807_257205,17:01:00,17:01:00,1474959,8, +24985807_257205,17:04:00,17:04:00,1474960,9, +24985807_257205,17:07:00,17:07:00,1474961,10, +24985807_257205,17:11:00,17:12:00,1474962,11, +24985807_257205,17:17:00,17:18:00,1609726,12, +24985807_257205,17:33:00,17:33:00,1474949,13, +24985807_257205,17:46:00,17:47:00,1474950,14, +24985807_257205,17:49:00,17:49:00,1474793,15, +24985807_257205,17:55:00,17:55:00,1474651,16, +24985810_257208,18:36:00,18:36:00,1474951,0, +24985810_257208,18:43:00,18:44:00,1474952,1, +24985810_257208,18:50:00,18:51:00,1474953,2, +24985810_257208,18:54:00,18:54:00,1474954,3, +24985810_257208,18:58:00,18:58:00,1474955,4, +24985810_257208,19:01:00,19:01:00,1474956,5, +24985810_257208,19:05:00,19:06:00,1474957,6, +24985810_257208,19:08:00,19:09:00,1474958,7, +24985810_257208,19:13:00,19:13:00,1474959,8, +24985810_257208,19:15:00,19:16:00,1474960,9, +24985810_257208,19:18:00,19:19:00,1474961,10, +24985810_257208,19:23:00,19:23:00,1474962,11, +24985810_257208,19:29:00,19:30:00,1474947,12, +24985810_257208,19:45:00,19:45:00,1474949,13, +24985810_257208,19:58:00,19:59:00,1474950,14, +24985810_257208,20:01:00,20:01:00,1474793,15, +24985810_257208,20:07:00,20:07:00,1474640,16, +24985811_257209,17:35:00,17:35:00,1474951,0, +24985811_257209,17:42:00,17:43:00,1474952,1, +24985811_257209,17:52:00,17:52:00,1474954,2, +24985811_257209,18:00:00,18:00:00,1474957,3, +24985811_257209,18:03:00,18:10:00,1474958,4, +24985811_257209,18:24:00,18:25:00,1474947,5, +24985811_257209,18:40:00,18:40:00,1474949,6, +24985811_257209,18:53:00,18:54:00,1474950,7, +24985811_257209,18:56:00,18:57:00,1474793,8, +24985811_257209,19:02:00,19:02:00,1474640,9, +24985812_257210,18:36:00,18:36:00,1474951,0, +24985812_257210,18:43:00,18:44:00,1474952,1, +24985812_257210,18:50:00,18:51:00,1474953,2, +24985812_257210,18:54:00,18:54:00,1474954,3, +24985812_257210,18:58:00,18:58:00,1474955,4, +24985812_257210,19:01:00,19:01:00,1474956,5, +24985812_257210,19:05:00,19:06:00,1474957,6, +24985812_257210,19:08:00,19:09:00,1474958,7, +24985812_257210,19:13:00,19:13:00,1474959,8, +24985812_257210,19:15:00,19:16:00,1474960,9, +24985812_257210,19:18:00,19:19:00,1474961,10, +24985812_257210,19:23:00,19:23:00,1474962,11, +24985812_257210,19:29:00,19:30:00,1609726,12, +24985812_257210,19:45:00,19:45:00,1474949,13, +24985812_257210,19:58:00,19:59:00,1474950,14, +24985812_257210,20:01:00,20:01:00,1474793,15, +24985812_257210,20:07:00,20:07:00,1474738,16, +24985813_257211,17:35:00,17:35:00,1474951,0, +24985813_257211,17:42:00,17:43:00,1474952,1, +24985813_257211,17:52:00,17:52:00,1474954,2, +24985813_257211,18:00:00,18:00:00,1474957,3, +24985813_257211,18:03:00,18:09:00,1474958,4, +24985813_257211,18:24:00,18:25:00,1474915,5, +24985813_257211,18:40:00,18:40:00,1474949,6, +24985813_257211,18:53:00,18:54:00,1474950,7, +24985813_257211,18:56:00,18:57:00,1474793,8, +24985813_257211,19:02:00,19:02:00,1474640,9, +24985815_257213,20:42:00,20:42:00,1474948,0, +24985815_257213,20:57:00,20:57:00,1609726,1, +24985816_257214,20:42:00,20:42:00,1474948,0, +24985816_257214,20:57:00,20:57:00,1657886,1, +24985818_257216,12:09:00,12:09:00,1474640,0, +24985818_257216,12:14:00,12:14:00,1474963,1, +24985818_257216,12:17:00,12:17:00,1474964,2, +24985818_257216,12:30:00,12:31:00,1474965,3, +24985818_257216,12:46:00,12:47:00,1609726,4, +24985818_257216,13:01:00,13:01:00,1474948,5, +24985819_257217,12:09:00,12:09:00,1474738,0, +24985819_257217,12:14:00,12:14:00,1474963,1, +24985819_257217,12:17:00,12:17:00,1474964,2, +24985819_257217,12:30:00,12:31:00,1474965,3, +24985819_257217,12:46:00,12:47:00,1657886,4, +24985819_257217,13:01:00,13:01:00,1474948,5, +24985821_257219,16:14:00,16:14:00,1536277,0, +24985821_257219,16:19:00,16:19:00,1474963,1, +24985821_257219,16:21:00,16:22:00,1474964,2, +24985821_257219,16:37:00,16:37:00,1474965,3, +24985821_257219,16:54:00,16:55:00,1609726,4, +24985821_257219,16:59:00,17:00:00,1474962,5, +24985821_257219,17:04:00,17:09:00,1474961,6, +24985821_257219,17:11:00,17:12:00,1474960,7, +24985821_257219,17:14:00,17:15:00,1474959,8, +24985821_257219,17:19:00,17:20:00,1474958,9, +24985821_257219,17:22:00,17:22:00,1474957,10, +24985821_257219,17:26:00,17:26:00,1474966,11, +24985821_257219,17:28:00,17:29:00,1474955,12, +24985821_257219,17:32:00,17:32:00,1474954,13, +24985821_257219,17:35:00,17:36:00,1474967,14, +24985821_257219,17:42:00,17:43:00,1474968,15, +24985821_257219,17:51:00,17:51:00,1474951,16, +24985823_257221,16:14:00,16:14:00,1474640,0, +24985823_257221,16:19:00,16:19:00,1474963,1, +24985823_257221,16:21:00,16:22:00,1474964,2, +24985823_257221,16:36:00,16:37:00,1474965,3, +24985823_257221,16:53:00,16:54:00,1657886,4, +24985823_257221,16:58:00,16:58:00,1474962,5, +24985823_257221,17:02:00,17:07:00,1474961,6, +24985823_257221,17:10:00,17:10:00,1474960,7, +24985823_257221,17:13:00,17:13:00,1474959,8, +24985823_257221,17:17:00,17:18:00,1474958,9, +24985823_257221,17:20:00,17:21:00,1474957,10, +24985823_257221,17:24:00,17:25:00,1474966,11, +24985823_257221,17:27:00,17:27:00,1474955,12, +24985823_257221,17:30:00,17:31:00,1474954,13, +24985823_257221,17:34:00,17:34:00,1474967,14, +24985823_257221,17:41:00,17:41:00,1474968,15, +24985823_257221,17:51:00,17:51:00,1474951,16, +24985824_257222,16:14:00,16:14:00,1474640,0, +24985824_257222,16:19:00,16:19:00,1474963,1, +24985824_257222,16:21:00,16:22:00,1474964,2, +24985824_257222,16:36:00,16:37:00,1474965,3, +24985824_257222,16:53:00,16:54:00,1474836,4, +24985824_257222,16:58:00,16:58:00,1474962,5, +24985824_257222,17:02:00,17:07:00,1474961,6, +24985824_257222,17:10:00,17:10:00,1474960,7, +24985824_257222,17:13:00,17:13:00,1474959,8, +24985824_257222,17:17:00,17:18:00,1474958,9, +24985824_257222,17:20:00,17:21:00,1474957,10, +24985824_257222,17:24:00,17:25:00,1474966,11, +24985824_257222,17:27:00,17:27:00,1474955,12, +24985824_257222,17:30:00,17:31:00,1474954,13, +24985824_257222,17:34:00,17:34:00,1474967,14, +24985824_257222,17:41:00,17:41:00,1474968,15, +24985824_257222,17:51:00,17:51:00,1474951,16, +24985827_257225,21:31:00,21:31:00,1474640,0, +24985827_257225,21:36:00,21:37:00,1474963,1, +24985827_257225,21:39:00,21:39:00,1474964,2, +24985827_257225,21:52:00,21:53:00,1474965,3, +24985827_257225,22:08:00,22:13:00,1474843,4, +24985827_257225,22:21:00,22:22:00,1475019,5, +24985827_257225,22:30:00,22:31:00,1475018,6, +24985827_257225,22:33:00,22:34:00,1475017,7, +24985827_257225,22:36:00,22:37:00,1475016,8, +24985827_257225,22:51:00,22:51:00,1474948,9, +24985828_257226,21:33:00,21:33:00,1474738,0, +24985828_257226,21:38:00,21:39:00,1474963,1, +24985828_257226,21:41:00,21:41:00,1474964,2, +24985828_257226,21:54:00,21:55:00,1474965,3, +24985828_257226,22:10:00,22:11:00,1657886,4, +24985828_257226,22:15:00,22:16:00,1474962,5, +24985828_257226,22:20:00,22:20:00,1474961,6, +24985828_257226,22:23:00,22:23:00,1474960,7, +24985828_257226,22:25:00,22:26:00,1474959,8, +24985828_257226,22:31:00,22:31:00,1474948,9, +24985830_257228,22:27:00,22:27:00,1474945,0, +24985830_257228,22:41:00,22:42:00,1474946,1, +24985830_257228,22:53:00,22:53:00,1657886,2, +24985831_257229,22:30:00,22:30:00,1474945,0, +24985831_257229,22:44:00,22:45:00,1474946,1, +24985831_257229,22:56:00,22:56:00,1657886,2, +24985833_257231,19:02:00,19:02:00,1474979,0, +24985833_257231,19:14:00,19:14:00,1475138,1, +24985833_257231,19:18:00,19:19:00,1475139,2, +24985833_257231,19:31:00,19:43:00,1475136,3, +24985833_257231,19:47:00,19:47:00,1475140,4, +24985833_257231,19:52:00,19:52:00,1475137,5, +24985833_257231,19:59:00,20:00:00,1474945,6, +24985833_257231,20:06:00,20:06:00,1475141,7, +24985833_257231,20:10:00,20:11:00,1475142,8, +24985833_257231,20:14:00,20:15:00,1475143,9, +24985833_257231,20:20:00,20:21:00,1474946,10, +24985833_257231,20:26:00,20:27:00,1474845,11, +24985833_257231,20:34:00,20:35:00,1609726,12, +24985833_257231,20:50:00,20:51:00,1474949,13, +24985833_257231,21:05:00,21:06:00,1474950,14, +24985833_257231,21:08:00,21:09:00,1474793,15, +24985833_257231,21:14:00,21:14:00,1474640,16, +24985834_257232,19:06:00,19:06:00,1474979,0, +24985834_257232,19:18:00,19:18:00,1475138,1, +24985834_257232,19:22:00,19:23:00,1475139,2, +24985834_257232,19:35:00,19:43:00,1475136,3, +24985834_257232,19:47:00,19:47:00,1475140,4, +24985834_257232,19:52:00,19:52:00,1475137,5, +24985834_257232,19:59:00,20:00:00,1474945,6, +24985834_257232,20:06:00,20:06:00,1475141,7, +24985834_257232,20:10:00,20:11:00,1475142,8, +24985834_257232,20:14:00,20:15:00,1475143,9, +24985834_257232,20:19:00,20:20:00,1474946,10, +24985834_257232,20:25:00,20:26:00,1474845,11, +24985834_257232,20:33:00,20:35:00,1609726,12, +24985834_257232,20:50:00,20:51:00,1474949,13, +24985834_257232,21:04:00,21:05:00,1474950,14, +24985834_257232,21:07:00,21:07:00,1474793,15, +24985834_257232,21:13:00,21:13:00,1474738,16, +24985835_257233,19:00:00,19:00:00,1474713,0, +24985835_257233,19:04:00,19:04:00,1474712,1, +24985835_257233,19:07:00,19:07:00,1474711,2, +24985835_257233,19:10:00,19:11:00,1474710,3, +24985835_257233,19:14:00,19:14:00,1474709,4, +24985835_257233,19:16:00,19:17:00,1474733,5, +24985835_257233,19:20:00,19:20:00,1474732,6, +24985835_257233,19:22:00,19:23:00,1474731,7, +24985835_257233,19:25:00,19:26:00,1474730,8, +24985835_257233,19:30:00,19:30:00,1474729,9, +24985835_257233,19:34:00,19:35:00,1474728,10, +24985835_257233,19:37:00,19:38:00,1474727,11, +24985835_257233,19:40:00,19:41:00,1474726,12, +24985835_257233,19:46:00,19:46:00,1474738,13, +24985843_257241,20:16:00,20:16:00,1474691,0, +24985843_257241,20:25:00,20:26:00,1474718,1, +24985843_257241,20:40:00,20:41:00,1475023,2, +24985843_257241,21:01:00,21:02:00,1474909,3, +24985843_257241,21:07:00,21:07:00,1474836,4, +24985844_257242,20:16:00,20:16:00,1474691,0, +24985844_257242,20:25:00,20:26:00,1474718,1, +24985844_257242,20:39:00,20:40:00,1475023,2, +24985844_257242,21:01:00,21:02:00,1474909,3, +24985844_257242,21:07:00,21:07:00,1609726,4, +24985845_257243,20:16:00,20:16:00,1474691,0, +24985845_257243,20:25:00,20:26:00,1474718,1, +24985845_257243,20:39:00,20:40:00,1475023,2, +24985845_257243,21:01:00,21:02:00,1474909,3, +24985845_257243,21:07:00,21:07:00,1609726,4, +24985850_257248,15:15:00,15:15:00,1474738,0, +24985850_257248,15:20:00,15:21:00,1474701,1, +24985850_257248,15:22:00,15:23:00,1609750,2, +24985850_257248,15:24:00,15:25:00,1474863,3, +24985850_257248,15:27:00,15:28:00,1474864,4, +24985850_257248,15:31:00,15:31:00,1474865,5, +24985850_257248,15:33:00,15:34:00,1474866,6, +24985850_257248,15:37:00,15:37:00,1474867,7, +24985850_257248,15:42:00,15:43:00,1474868,8, +24985850_257248,15:47:00,15:47:00,1474869,9, +24985850_257248,15:51:00,15:51:00,1474870,10, +24985850_257248,15:58:00,15:59:00,1474871,11, +24985850_257248,16:02:00,16:02:00,1474872,12, +24985850_257248,16:05:00,16:06:00,1474873,13, +24985850_257248,16:12:00,16:12:00,1474891,14, +24985851_257249,18:58:00,18:58:00,1474875,0, +24985851_257249,19:02:00,19:02:00,1474876,1, +24985851_257249,19:05:00,19:05:00,1474877,2, +24985851_257249,19:08:00,19:09:00,1474878,3, +24985851_257249,19:13:00,19:13:00,1474879,4, +24985851_257249,19:15:00,19:15:00,1474880,5, +24985851_257249,19:20:00,19:20:00,1474881,6, +24985851_257249,19:23:00,19:24:00,1474882,7, +24985851_257249,19:28:00,19:29:00,1474646,8, +24985851_257249,19:31:00,19:32:00,1474810,9, +24985851_257249,19:35:00,19:36:00,1474847,10, +24985851_257249,19:41:00,19:42:00,1474848,11, +24985851_257249,19:44:00,19:44:00,1474849,12, +24985851_257249,19:51:00,19:52:00,1474850,13, +24985851_257249,19:56:00,19:56:00,1474851,14, +24985851_257249,20:02:00,20:03:00,1474642,15, +24985851_257249,20:07:00,20:08:00,1474852,16, +24985851_257249,20:13:00,20:13:00,1474853,17, +24985851_257249,20:18:00,20:19:00,1474641,18, +24985851_257249,20:22:00,20:23:00,1474854,19, +24985851_257249,20:26:00,20:27:00,1474855,20, +24985851_257249,20:31:00,20:31:00,1474856,21, +24985851_257249,20:35:00,20:36:00,1474857,22, +24985851_257249,20:39:00,20:40:00,1474858,23, +24985851_257249,20:42:00,20:43:00,1474859,24, +24985851_257249,20:49:00,20:49:00,1474640,25, +24985858_257256,18:37:00,18:37:00,1475124,0, +24985858_257256,18:40:00,18:41:00,1475123,1, +24985858_257256,18:46:00,18:46:00,1475122,2, +24985858_257256,18:54:00,18:54:00,1475156,3, +24985858_257256,18:59:00,19:00:00,1475121,4, +24985858_257256,19:02:00,19:02:00,1475157,5, +24985858_257256,19:05:00,19:06:00,1475120,6, +24985858_257256,19:08:00,19:08:00,1475158,7, +24985858_257256,19:12:00,19:12:00,1475119,8, +24985858_257256,19:16:00,19:16:00,1475159,9, +24985858_257256,19:19:00,19:19:00,1475160,10, +24985858_257256,19:24:00,19:25:00,1475118,11, +24985858_257256,19:27:00,19:32:00,1474755,12, +24985858_257256,19:37:00,19:38:00,1475154,13, +24985858_257256,19:41:00,19:41:00,1474920,14, +24985858_257256,19:44:00,19:45:00,1474756,15, +24985858_257256,19:49:00,19:50:00,1475155,16, +24985858_257256,19:53:00,19:53:00,1474757,17, +24985858_257256,20:01:00,20:02:00,1474758,18, +24985858_257256,20:07:00,20:07:00,1475151,19, +24985858_257256,20:11:00,20:12:00,1475152,20, +24985858_257256,20:14:00,20:15:00,1474759,21, +24985858_257256,20:17:00,20:17:00,1475153,22, +24985858_257256,20:23:00,20:28:00,1474760,23, +24985858_257256,20:32:00,20:33:00,1475147,24, +24985858_257256,20:37:00,20:37:00,1474816,25, +24985858_257256,20:41:00,20:42:00,1474779,26, +24985858_257256,20:45:00,20:46:00,1475125,27, +24985858_257256,20:55:00,20:56:00,1475126,28, +24985858_257256,21:03:00,21:13:00,1474720,29, +24985858_257256,21:16:00,21:17:00,1474796,30, +24985858_257256,21:22:00,21:22:00,1475148,31, +24985858_257256,21:27:00,21:27:00,1475146,32, +24985858_257256,21:33:00,21:34:00,1474818,33, +24985858_257256,21:37:00,21:38:00,1474899,34, +24985858_257256,21:41:00,21:42:00,1474900,35, +24985858_257256,21:44:00,21:44:00,1474901,36, +24985858_257256,21:47:00,21:47:00,1474902,37, +24985858_257256,21:49:00,21:49:00,1474819,38, +24985858_257256,21:56:00,21:56:00,1474651,39, +24985859_257257,18:37:00,18:37:00,1475124,0, +24985859_257257,18:40:00,18:41:00,1475123,1, +24985859_257257,18:45:00,18:46:00,1475122,2, +24985859_257257,18:53:00,18:54:00,1475156,3, +24985859_257257,18:59:00,19:00:00,1475121,4, +24985859_257257,19:02:00,19:02:00,1475157,5, +24985859_257257,19:05:00,19:05:00,1475120,6, +24985859_257257,19:08:00,19:08:00,1475158,7, +24985859_257257,19:11:00,19:12:00,1475119,8, +24985859_257257,19:16:00,19:16:00,1475159,9, +24985859_257257,19:19:00,19:19:00,1475160,10, +24985859_257257,19:24:00,19:24:00,1475118,11, +24985859_257257,19:27:00,19:41:00,1474755,12, +24985859_257257,19:46:00,19:46:00,1475154,13, +24985859_257257,19:49:00,19:50:00,1474920,14, +24985859_257257,19:52:00,19:53:00,1474756,15, +24985859_257257,19:58:00,19:58:00,1475155,16, +24985859_257257,20:01:00,20:01:00,1474757,17, +24985859_257257,20:07:00,20:08:00,1474758,18, +24985859_257257,20:13:00,20:13:00,1475151,19, +24985859_257257,20:18:00,20:18:00,1475152,20, +24985859_257257,20:21:00,20:21:00,1474759,21, +24985859_257257,20:23:00,20:24:00,1475153,22, +24985859_257257,20:30:00,20:32:00,1474760,23, +24985859_257257,20:36:00,20:36:00,1475147,24, +24985859_257257,20:40:00,20:41:00,1474816,25, +24985859_257257,20:44:00,20:45:00,1474779,26, +24985859_257257,20:49:00,20:50:00,1475125,27, +24985859_257257,20:59:00,20:59:00,1475126,28, +24985859_257257,21:07:00,21:13:00,1474720,29, +24985859_257257,21:16:00,21:17:00,1474796,30, +24985859_257257,21:21:00,21:22:00,1475148,31, +24985859_257257,21:26:00,21:27:00,1475146,32, +24985859_257257,21:32:00,21:33:00,1474818,33, +24985859_257257,21:37:00,21:38:00,1474899,34, +24985859_257257,21:41:00,21:41:00,1474900,35, +24985859_257257,21:43:00,21:44:00,1474901,36, +24985859_257257,21:46:00,21:47:00,1474902,37, +24985859_257257,21:49:00,21:49:00,1474819,38, +24985859_257257,21:56:00,21:56:00,1474640,39, +24985860_257258,20:03:00,20:03:00,1474937,0, +24985860_257258,20:06:00,20:07:00,1474936,1, +24985860_257258,20:09:00,20:09:00,1474935,2, +24985860_257258,20:13:00,20:13:00,1474934,3, +24985860_257258,20:19:00,20:20:00,1474933,4, +24985860_257258,20:24:00,20:24:00,1474932,5, +24985861_257259,06:06:00,06:06:00,1474937,0, +24985861_257259,06:09:00,06:10:00,1474936,1, +24985861_257259,06:12:00,06:12:00,1474935,2, +24985861_257259,06:16:00,06:16:00,1474934,3, +24985861_257259,06:22:00,06:23:00,1474933,4, +24985861_257259,06:27:00,06:27:00,1474932,5, +24985863_257261,21:51:00,21:51:00,1474755,0, +24985863_257261,21:56:00,21:57:00,1475154,1, +24985863_257261,22:00:00,22:01:00,1474920,2, +24985863_257261,22:04:00,22:05:00,1474756,3, +24985863_257261,22:10:00,22:10:00,1475155,4, +24985863_257261,22:13:00,22:14:00,1474757,5, +24985863_257261,22:22:00,22:22:00,1474758,6, +24985863_257261,22:28:00,22:28:00,1475151,7, +24985863_257261,22:33:00,22:33:00,1475152,8, +24985863_257261,22:36:00,22:37:00,1474759,9, +24985863_257261,22:39:00,22:39:00,1475153,10, +24985863_257261,22:46:00,22:46:00,1474760,11, +24985864_257262,21:47:00,21:47:00,1474755,0, +24985864_257262,21:52:00,21:53:00,1475154,1, +24985864_257262,21:56:00,21:57:00,1474920,2, +24985864_257262,22:00:00,22:01:00,1474756,3, +24985864_257262,22:06:00,22:06:00,1475155,4, +24985864_257262,22:09:00,22:09:00,1474757,5, +24985864_257262,22:16:00,22:16:00,1474758,6, +24985864_257262,22:22:00,22:22:00,1475151,7, +24985864_257262,22:26:00,22:27:00,1475152,8, +24985864_257262,22:30:00,22:30:00,1474759,9, +24985864_257262,22:32:00,22:33:00,1475153,10, +24985864_257262,22:40:00,22:40:00,1474760,11, +24985866_257264,13:50:00,13:50:00,1474779,0, +24985866_257264,13:54:00,13:54:00,1475125,1, +24985866_257264,14:03:00,14:04:00,1475126,2, +24985866_257264,14:10:00,14:11:00,1474720,3, +24985866_257264,14:15:00,14:16:00,1474796,4, +24985866_257264,14:20:00,14:20:00,1475148,5, +24985866_257264,14:25:00,14:26:00,1475146,6, +24985866_257264,14:32:00,14:33:00,1474818,7, +24985866_257264,14:37:00,14:37:00,1474899,8, +24985866_257264,14:40:00,14:41:00,1474900,9, +24985866_257264,14:43:00,14:44:00,1474901,10, +24985866_257264,14:46:00,14:47:00,1474902,11, +24985866_257264,14:49:00,14:49:00,1474819,12, +24985866_257264,14:56:00,14:56:00,1474651,13, +24985867_257265,13:55:00,13:55:00,1474779,0, +24985867_257265,13:59:00,13:59:00,1475125,1, +24985867_257265,14:08:00,14:09:00,1475126,2, +24985867_257265,14:15:00,14:16:00,1474720,3, +24985867_257265,14:20:00,14:20:00,1474796,4, +24985867_257265,14:25:00,14:26:00,1475148,5, +24985867_257265,14:30:00,14:31:00,1475146,6, +24985867_257265,14:36:00,14:37:00,1474818,7, +24985867_257265,14:41:00,14:42:00,1474899,8, +24985867_257265,14:46:00,14:46:00,1474900,9, +24985867_257265,14:48:00,14:48:00,1474901,10, +24985867_257265,14:51:00,14:51:00,1474902,11, +24985867_257265,14:54:00,14:54:00,1474819,12, +24985867_257265,15:01:00,15:01:00,1474640,13, +24985870_257268,06:54:00,06:54:00,1475022,0, +24985870_257268,07:04:00,07:05:00,1475020,1, +24985870_257268,07:17:00,07:17:00,1474981,2, +24985870_257268,07:23:00,07:23:00,1474975,3, +24985870_257268,07:26:00,07:26:00,1764609,4, +24985870_257268,07:29:00,07:29:00,1474976,5, +24985870_257268,07:41:00,07:41:00,1474977,6, +24985871_257269,06:55:00,06:55:00,1475022,0, +24985871_257269,07:05:00,07:06:00,1475020,1, +24985871_257269,07:18:00,07:18:00,1474981,2, +24985873_257271,16:44:00,16:44:00,1475124,0, +24985873_257271,16:47:00,16:48:00,1475123,1, +24985873_257271,16:52:00,16:53:00,1475122,2, +24985873_257271,17:00:00,17:00:00,1475156,3, +24985873_257271,17:06:00,17:06:00,1475161,4, +24985873_257271,17:08:00,17:09:00,1475157,5, +24985873_257271,17:11:00,17:12:00,1475120,6, +24985873_257271,17:14:00,17:15:00,1475158,7, +24985873_257271,17:18:00,17:18:00,1475119,8, +24985873_257271,17:22:00,17:22:00,1475159,9, +24985873_257271,17:25:00,17:25:00,1475160,10, +24985873_257271,17:30:00,17:30:00,1475118,11, +24985873_257271,17:33:00,17:34:00,1474755,12, +24985873_257271,17:38:00,17:39:00,1475154,13, +24985873_257271,17:42:00,17:42:00,1474920,14, +24985873_257271,17:45:00,17:45:00,1474756,15, +24985873_257271,17:50:00,17:51:00,1475155,16, +24985873_257271,17:53:00,17:54:00,1474757,17, +24985873_257271,18:02:00,18:02:00,1474758,18, +24985873_257271,18:07:00,18:08:00,1475151,19, +24985873_257271,18:12:00,18:12:00,1475152,20, +24985873_257271,18:15:00,18:15:00,1474759,21, +24985873_257271,18:17:00,18:17:00,1475153,22, +24985873_257271,18:23:00,18:28:00,1474760,23, +24985873_257271,18:32:00,18:35:00,1475147,24, +24985873_257271,18:39:00,18:40:00,1474816,25, +24985873_257271,18:43:00,18:44:00,1474779,26, +24985873_257271,18:48:00,18:48:00,1475125,27, +24985873_257271,18:58:00,18:58:00,1475126,28, +24985873_257271,19:05:00,19:06:00,1474720,29, +24985873_257271,19:10:00,19:11:00,1474796,30, +24985873_257271,19:16:00,19:16:00,1475148,31, +24985873_257271,19:21:00,19:22:00,1475146,32, +24985873_257271,19:28:00,19:29:00,1474818,33, +24985873_257271,19:33:00,19:33:00,1474899,34, +24985873_257271,19:37:00,19:37:00,1474900,35, +24985873_257271,19:39:00,19:40:00,1474901,36, +24985873_257271,19:42:00,19:43:00,1474902,37, +24985873_257271,19:46:00,19:46:00,1474819,38, +24985873_257271,19:53:00,19:53:00,1536277,39, +24985874_257272,16:40:00,16:40:00,1475124,0, +24985874_257272,16:44:00,16:44:00,1475123,1, +24985874_257272,16:49:00,16:49:00,1475122,2, +24985874_257272,16:57:00,16:57:00,1475156,3, +24985874_257272,17:03:00,17:03:00,1475161,4, +24985874_257272,17:05:00,17:06:00,1475157,5, +24985874_257272,17:08:00,17:09:00,1475120,6, +24985874_257272,17:11:00,17:12:00,1475158,7, +24985874_257272,17:15:00,17:15:00,1475119,8, +24985874_257272,17:19:00,17:20:00,1475159,9, +24985874_257272,17:22:00,17:23:00,1475160,10, +24985874_257272,17:27:00,17:28:00,1475118,11, +24985874_257272,17:30:00,17:34:00,1474755,12, +24985874_257272,17:39:00,17:39:00,1475154,13, +24985874_257272,17:42:00,17:43:00,1474920,14, +24985874_257272,17:45:00,17:46:00,1474756,15, +24985874_257272,17:51:00,17:51:00,1475155,16, +24985874_257272,17:54:00,17:54:00,1474757,17, +24985874_257272,18:01:00,18:01:00,1474758,18, +24985874_257272,18:06:00,18:07:00,1475151,19, +24985874_257272,18:11:00,18:12:00,1475152,20, +24985874_257272,18:14:00,18:15:00,1474759,21, +24985874_257272,18:16:00,18:17:00,1475153,22, +24985874_257272,18:23:00,18:24:00,1474760,23, +24985874_257272,18:28:00,18:28:00,1475147,24, +24985874_257272,18:32:00,18:33:00,1474816,25, +24985874_257272,18:37:00,18:39:00,1474779,26, +24985874_257272,18:43:00,18:43:00,1475125,27, +24985874_257272,18:52:00,18:53:00,1475126,28, +24985874_257272,19:00:00,19:02:00,1474720,29, +24985874_257272,19:05:00,19:06:00,1474796,30, +24985874_257272,19:10:00,19:11:00,1475148,31, +24985874_257272,19:15:00,19:16:00,1475146,32, +24985874_257272,19:21:00,19:22:00,1474818,33, +24985874_257272,19:26:00,19:26:00,1474899,34, +24985874_257272,19:29:00,19:30:00,1474900,35, +24985874_257272,19:31:00,19:32:00,1474901,36, +24985874_257272,19:34:00,19:35:00,1474902,37, +24985874_257272,19:36:00,19:37:00,1474819,38, +24985874_257272,19:43:00,19:43:00,1474640,39, +24985876_257274,20:29:00,20:29:00,1475124,0, +24985876_257274,20:32:00,20:33:00,1475123,1, +24985876_257274,20:37:00,20:38:00,1475122,2, +24985876_257274,20:45:00,20:46:00,1475156,3, +24985876_257274,20:51:00,20:51:00,1475121,4, +24985876_257274,20:53:00,20:54:00,1475157,5, +24985876_257274,20:57:00,20:57:00,1475120,6, +24985876_257274,21:00:00,21:00:00,1475158,7, +24985876_257274,21:03:00,21:04:00,1475119,8, +24985876_257274,21:07:00,21:08:00,1475159,9, +24985876_257274,21:10:00,21:11:00,1475160,10, +24985876_257274,21:15:00,21:16:00,1475118,11, +24985876_257274,21:19:00,21:19:00,1475162,12, +24985877_257275,20:27:00,20:27:00,1475124,0, +24985877_257275,20:30:00,20:31:00,1475123,1, +24985877_257275,20:35:00,20:36:00,1475122,2, +24985877_257275,20:43:00,20:44:00,1475156,3, +24985877_257275,20:49:00,20:49:00,1475121,4, +24985877_257275,20:51:00,20:52:00,1475157,5, +24985877_257275,20:54:00,20:55:00,1475120,6, +24985877_257275,20:57:00,20:58:00,1475158,7, +24985877_257275,21:01:00,21:01:00,1475119,8, +24985877_257275,21:05:00,21:06:00,1475159,9, +24985877_257275,21:08:00,21:09:00,1475160,10, +24985877_257275,21:13:00,21:14:00,1475118,11, +24985877_257275,21:18:00,21:18:00,1475162,12, +24985879_257277,12:59:00,12:59:00,1475133,0, +24985879_257277,13:01:00,13:02:00,1475134,1, +24985879_257277,13:04:00,13:04:00,1475187,2, +24985879_257277,13:09:00,13:10:00,1475135,3, +24985879_257277,13:19:00,13:19:00,1474983,4, +24985880_257278,12:59:00,12:59:00,1475133,0, +24985880_257278,13:01:00,13:02:00,1475134,1, +24985880_257278,13:04:00,13:04:00,1475187,2, +24985880_257278,13:09:00,13:10:00,1475135,3, +24985880_257278,13:19:00,13:19:00,1475136,4, +24985882_257280,13:37:00,13:37:00,1474983,0, +24985882_257280,13:46:00,13:46:00,1474984,1, +24985882_257280,13:51:00,13:52:00,1474985,2, +24985882_257280,13:54:00,13:55:00,1474986,3, +24985882_257280,13:58:00,13:58:00,1475133,4, +24985883_257281,13:37:00,13:37:00,1475190,0, +24985883_257281,13:46:00,13:46:00,1474984,1, +24985883_257281,13:51:00,13:52:00,1474985,2, +24985883_257281,13:54:00,13:55:00,1474986,3, +24985883_257281,13:58:00,13:58:00,1474987,4, +24985885_257283,19:27:00,19:27:00,1474673,0, +24985885_257283,19:29:00,19:30:00,1474689,1, +24985885_257283,19:33:00,19:34:00,1474690,2, +24985885_257283,19:40:00,19:40:00,1474691,3, +24985886_257284,19:27:00,19:27:00,1474688,0, +24985886_257284,19:29:00,19:30:00,1474689,1, +24985886_257284,19:33:00,19:34:00,1474690,2, +24985886_257284,19:40:00,19:40:00,1474714,3, +24985888_257286,12:57:00,12:57:00,1474782,0, +24985888_257286,13:07:00,13:08:00,1474777,1, +24985888_257286,13:17:00,13:17:00,1474778,2, +24985888_257286,13:24:00,13:24:00,1474972,3, +24985889_257287,12:59:00,12:59:00,1474782,0, +24985889_257287,13:09:00,13:10:00,1474777,1, +24985889_257287,13:19:00,13:19:00,1474778,2, +24985889_257287,13:26:00,13:26:00,1474972,3, +24985891_257289,13:40:00,13:40:00,1474972,0, +24985891_257289,13:45:00,13:46:00,1474778,1, +24985891_257289,13:56:00,13:57:00,1474777,2, +24985891_257289,14:09:00,14:09:00,1474782,3, +24985892_257290,13:43:00,13:43:00,1474972,0, +24985892_257290,13:48:00,13:49:00,1474778,1, +24985892_257290,13:59:00,14:00:00,1474777,2, +24985892_257290,14:12:00,14:12:00,1474782,3, +24985894_257292,22:04:00,22:04:00,1474972,0, +24985894_257292,22:09:00,22:10:00,1474778,1, +24985894_257292,22:20:00,22:21:00,1474777,2, +24985894_257292,22:31:00,22:31:00,1474782,3, +24985895_257293,21:15:00,21:15:00,1474782,0, +24985895_257293,21:25:00,21:28:00,1474777,1, +24985895_257293,21:38:00,21:38:00,1474778,2, +24985895_257293,21:47:00,21:47:00,1474972,3, +24985896_257294,21:17:00,21:17:00,1474782,0, +24985896_257294,21:27:00,21:28:00,1474777,1, +24985896_257294,21:38:00,21:38:00,1474778,2, +24985896_257294,21:47:00,21:47:00,1474972,3, +24985898_257296,04:46:00,04:46:00,1474714,0, +24985898_257296,04:53:00,04:54:00,1474989,1, +24985898_257296,05:03:00,05:04:00,1474990,2, +24985898_257296,05:08:00,05:08:00,1474779,3, +24985899_257297,04:48:00,04:48:00,1474714,0, +24985899_257297,04:55:00,04:56:00,1474989,1, +24985899_257297,05:05:00,05:06:00,1474990,2, +24985899_257297,05:10:00,05:10:00,1474779,3, +24985901_257299,11:03:00,11:03:00,1475210,0, +24985901_257299,11:09:00,11:09:00,1475211,1, +24985901_257299,11:13:00,11:14:00,1475212,2, +24985901_257299,11:16:00,11:16:00,1475213,3, +24985901_257299,11:19:00,11:19:00,1474705,4, +24985901_257299,11:22:00,11:22:00,1475214,5, +24985901_257299,11:27:00,11:28:00,1474703,6, +24985901_257299,11:30:00,11:30:00,1475180,7, +24985901_257299,11:32:00,11:33:00,1475181,8, +24985901_257299,11:39:00,11:39:00,1474861,9, +24985902_257300,11:12:00,11:12:00,1475210,0, +24985902_257300,11:17:00,11:18:00,1475211,1, +24985902_257300,11:22:00,11:22:00,1475212,2, +24985902_257300,11:24:00,11:25:00,1475213,3, +24985902_257300,11:28:00,11:28:00,1474705,4, +24985902_257300,11:31:00,11:31:00,1475214,5, +24985902_257300,11:35:00,11:37:00,1474703,6, +24985902_257300,11:39:00,11:39:00,1475180,7, +24985902_257300,11:42:00,11:43:00,1475181,8, +24985902_257300,11:48:00,11:48:00,1474738,9, +24985904_257302,16:42:00,16:42:00,1474747,0, +24985904_257302,16:54:00,16:54:00,1474746,1, +24985904_257302,16:58:00,16:58:00,1474745,2, +24985904_257302,17:01:00,17:01:00,1474744,3, +24985904_257302,17:08:00,17:08:00,1474743,4, +24985904_257302,17:12:00,17:12:00,1474742,5, +24985904_257302,17:20:00,17:20:00,1474741,6, +24985904_257302,17:23:00,17:23:00,1474740,7, +24985904_257302,17:28:00,17:28:00,1474739,8, +24985905_257303,16:42:00,16:42:00,1474747,0, +24985905_257303,16:54:00,16:54:00,1474746,1, +24985907_257305,16:42:00,16:42:00,1474747,0, +24985907_257305,16:54:00,16:54:00,1474746,1, +24985907_257305,16:58:00,16:58:00,1474745,2, +24985907_257305,17:01:00,17:01:00,1474744,3, +24985907_257305,17:08:00,17:08:00,1474743,4, +24985907_257305,17:12:00,17:12:00,1474742,5, +24985907_257305,17:20:00,17:20:00,1474741,6, +24985907_257305,17:23:00,17:23:00,1474740,7, +24985907_257305,17:28:00,17:28:00,1474739,8, +24985908_257306,16:42:00,16:42:00,1474747,0, +24985908_257306,16:54:00,16:54:00,1474746,1, +24985910_257308,14:45:00,14:45:00,1474774,0, +24985910_257308,14:47:00,14:48:00,1474810,1, +24985910_257308,14:53:00,14:53:00,1474773,2, +24985910_257308,14:56:00,14:57:00,1474772,3, +24985910_257308,15:02:00,15:02:00,1474771,4, +24985910_257308,15:10:00,15:11:00,1474811,5, +24985910_257308,15:15:00,15:15:00,1474769,6, +24985910_257308,15:22:00,15:22:00,1474768,7, +24985910_257308,15:27:00,15:28:00,1474767,8, +24985910_257308,15:32:00,15:32:00,1474812,9, +24985910_257308,15:35:00,15:35:00,1474813,10, +24985910_257308,15:40:00,15:40:00,1474814,11, +24985910_257308,15:42:00,15:42:00,1474815,12, +24985910_257308,15:46:00,15:53:00,1474762,13, +24985910_257308,15:57:00,15:57:00,1474761,14, +24985910_257308,16:02:00,16:02:00,1474760,15, +24985911_257309,14:45:00,14:45:00,1474774,0, +24985911_257309,14:47:00,14:48:00,1474810,1, +24985911_257309,14:53:00,14:53:00,1474773,2, +24985911_257309,14:56:00,14:57:00,1474772,3, +24985911_257309,15:02:00,15:02:00,1474771,4, +24985911_257309,15:10:00,15:11:00,1474811,5, +24985911_257309,15:15:00,15:15:00,1474769,6, +24985911_257309,15:22:00,15:22:00,1474768,7, +24985911_257309,15:27:00,15:28:00,1474767,8, +24985911_257309,15:32:00,15:32:00,1474812,9, +24985911_257309,15:35:00,15:35:00,1474813,10, +24985911_257309,15:40:00,15:40:00,1474814,11, +24985911_257309,15:42:00,15:42:00,1474815,12, +24985911_257309,15:46:00,15:46:00,1474762,13, +24985911_257309,15:50:00,15:50:00,1474761,14, +24985911_257309,15:55:00,15:59:00,1474781,15, +24985911_257309,16:07:00,16:07:00,1474816,16, +24985911_257309,16:11:00,16:11:00,1474779,17, +24985913_257311,05:37:00,05:37:00,1474747,0, +24985913_257311,05:49:00,05:49:00,1474746,1, +24985913_257311,05:53:00,05:53:00,1474745,2, +24985913_257311,05:56:00,05:56:00,1474744,3, +24985913_257311,06:03:00,06:03:00,1474743,4, +24985913_257311,06:07:00,06:07:00,1474742,5, +24985913_257311,06:15:00,06:15:00,1474741,6, +24985913_257311,06:18:00,06:18:00,1474740,7, +24985913_257311,06:23:00,06:23:00,1474739,8, +24985914_257312,05:30:00,05:30:00,1474991,0, +24985914_257312,05:36:00,05:37:00,1474747,1, +24985914_257312,05:49:00,05:49:00,1474746,2, +24985916_257314,07:42:00,07:42:00,1474747,0, +24985916_257314,07:54:00,07:54:00,1474746,1, +24985916_257314,07:58:00,07:58:00,1474745,2, +24985916_257314,08:01:00,08:01:00,1474744,3, +24985916_257314,08:08:00,08:08:00,1474743,4, +24985916_257314,08:12:00,08:12:00,1474742,5, +24985916_257314,08:20:00,08:20:00,1474741,6, +24985916_257314,08:23:00,08:23:00,1474740,7, +24985916_257314,08:28:00,08:28:00,1474739,8, +24985917_257315,07:42:00,07:42:00,1474747,0, +24985917_257315,07:54:00,07:54:00,1474746,1, +24985919_257317,09:46:00,09:46:00,1474747,0, +24985919_257317,09:58:00,09:58:00,1474746,1, +24985919_257317,10:02:00,10:02:00,1474745,2, +24985919_257317,10:05:00,10:05:00,1474744,3, +24985919_257317,10:12:00,10:12:00,1474743,4, +24985919_257317,10:16:00,10:16:00,1474742,5, +24985919_257317,10:24:00,10:24:00,1474741,6, +24985919_257317,10:27:00,10:27:00,1474740,7, +24985919_257317,10:32:00,10:32:00,1474739,8, +24985920_257318,09:47:00,09:47:00,1474747,0, +24985920_257318,09:59:00,09:59:00,1474746,1, +24985922_257320,11:53:00,11:53:00,1474747,0, +24985922_257320,12:05:00,12:05:00,1474746,1, +24985922_257320,12:09:00,12:09:00,1474745,2, +24985922_257320,12:12:00,12:12:00,1474744,3, +24985922_257320,12:19:00,12:19:00,1474743,4, +24985922_257320,12:23:00,12:23:00,1474742,5, +24985922_257320,12:31:00,12:31:00,1474741,6, +24985922_257320,12:34:00,12:34:00,1474740,7, +24985922_257320,12:39:00,12:39:00,1474739,8, +24985923_257321,12:06:00,12:06:00,1474747,0, +24985923_257321,12:18:00,12:18:00,1474746,1, +24985925_257323,14:40:00,14:40:00,1474747,0, +24985925_257323,14:52:00,14:52:00,1474746,1, +24985925_257323,14:56:00,14:56:00,1474745,2, +24985925_257323,14:59:00,14:59:00,1474744,3, +24985925_257323,15:06:00,15:06:00,1474743,4, +24985925_257323,15:10:00,15:10:00,1474742,5, +24985925_257323,15:18:00,15:18:00,1474741,6, +24985925_257323,15:21:00,15:21:00,1474740,7, +24985925_257323,15:26:00,15:26:00,1474739,8, +24985926_257324,14:42:00,14:42:00,1474747,0, +24985926_257324,14:54:00,14:54:00,1474746,1, +24985928_257326,19:20:00,19:20:00,1474747,0, +24985928_257326,19:32:00,19:32:00,1474746,1, +24985928_257326,19:36:00,19:36:00,1474745,2, +24985928_257326,19:39:00,19:39:00,1474744,3, +24985928_257326,19:46:00,19:46:00,1474743,4, +24985928_257326,19:50:00,19:50:00,1474742,5, +24985928_257326,19:58:00,19:58:00,1474741,6, +24985928_257326,20:01:00,20:01:00,1474740,7, +24985928_257326,20:06:00,20:06:00,1474739,8, +24985929_257327,19:32:00,19:32:00,1474747,0, +24985929_257327,19:44:00,19:44:00,1474746,1, +24985930_257328,10:24:00,10:24:00,1474815,0, +24985930_257328,10:28:00,10:28:00,1474762,1, +24985930_257328,10:31:00,10:31:00,1474761,2, +24985930_257328,10:37:00,10:37:00,1474760,3, +24985932_257330,18:07:00,18:07:00,1474815,0, +24985932_257330,18:11:00,18:11:00,1474762,1, +24985932_257330,18:14:00,18:14:00,1474761,2, +24985932_257330,18:20:00,18:20:00,1474760,3, +24985933_257331,18:06:00,18:06:00,1474815,0, +24985933_257331,18:10:00,18:10:00,1474762,1, +24985933_257331,18:13:00,18:13:00,1474761,2, +24985933_257331,18:19:00,18:19:00,1474760,3, +24985935_257333,18:51:00,18:51:00,1474760,0, +24985935_257333,18:55:00,18:56:00,1474761,1, +24985935_257333,18:59:00,18:59:00,1474762,2, +24985935_257333,19:04:00,19:04:00,1474763,3, +24985939_257337,03:57:00,03:57:00,1474843,0, +24985939_257337,04:05:00,04:06:00,1475019,1, +24985939_257337,04:14:00,04:15:00,1475018,2, +24985939_257337,04:17:00,04:18:00,1475017,3, +24985939_257337,04:20:00,04:21:00,1475016,4, +24985939_257337,04:35:00,04:40:00,1474958,5, +24985939_257337,04:41:00,04:42:00,1474957,6, +24985939_257337,04:46:00,04:46:00,1474966,7, +24985939_257337,04:49:00,04:49:00,1474955,8, +24985939_257337,04:52:00,04:53:00,1474954,9, +24985939_257337,04:57:00,04:57:00,1474967,10, +24985939_257337,05:04:00,05:05:00,1474968,11, +24985939_257337,05:14:00,05:14:00,1474951,12, +24985940_257338,04:20:00,04:20:00,1657886,0, +24985940_257338,04:24:00,04:25:00,1474962,1, +24985940_257338,04:29:00,04:29:00,1474961,2, +24985940_257338,04:32:00,04:32:00,1474960,3, +24985940_257338,04:34:00,04:35:00,1474959,4, +24985940_257338,04:39:00,04:40:00,1474958,5, +24985940_257338,04:42:00,04:42:00,1474957,6, +24985940_257338,04:46:00,04:46:00,1474966,7, +24985940_257338,04:49:00,04:49:00,1474955,8, +24985940_257338,04:52:00,04:53:00,1474954,9, +24985940_257338,04:56:00,04:57:00,1474967,10, +24985940_257338,05:03:00,05:03:00,1474968,11, +24985940_257338,05:12:00,05:12:00,1474951,12, +24985943_257341,04:34:00,04:34:00,1657886,0, +24985943_257341,04:49:00,04:49:00,1474948,1, +24985945_257343,05:46:00,05:46:00,1657886,0, +24985945_257343,06:01:00,06:01:00,1474948,1, +24985946_257344,05:49:00,05:49:00,1657886,0, +24985946_257344,06:04:00,06:04:00,1474948,1, +24985949_257347,05:45:00,05:45:00,1536279,0, +24985949_257347,05:50:00,05:50:00,1474963,1, +24985949_257347,05:53:00,05:54:00,1474964,2, +24985949_257347,05:56:00,05:56:00,1474992,3, +24985949_257347,05:59:00,06:00:00,1474993,4, +24985949_257347,06:05:00,06:05:00,1474994,5, +24985949_257347,06:08:00,06:09:00,1474995,6, +24985949_257347,06:12:00,06:12:00,1474996,7, +24985949_257347,06:15:00,06:16:00,1474965,8, +24985949_257347,06:22:00,06:22:00,1474997,9, +24985949_257347,06:28:00,06:29:00,1474998,10, +24985949_257347,06:31:00,06:31:00,1474999,11, +24985949_257347,06:38:00,06:43:00,1657886,12, +24985949_257347,06:47:00,06:48:00,1474962,13, +24985949_257347,06:51:00,06:52:00,1474961,14, +24985949_257347,06:54:00,06:55:00,1474960,15, +24985949_257347,06:57:00,06:58:00,1474959,16, +24985949_257347,07:03:00,07:08:00,1474958,17, +24985949_257347,07:09:00,07:10:00,1474957,18, +24985949_257347,07:14:00,07:14:00,1474966,19, +24985949_257347,07:16:00,07:17:00,1474955,20, +24985949_257347,07:20:00,07:20:00,1474954,21, +24985949_257347,07:23:00,07:24:00,1474967,22, +24985949_257347,07:30:00,07:31:00,1474968,23, +24985949_257347,07:40:00,07:40:00,1475056,24, +24985950_257348,05:45:00,05:45:00,1474640,0, +24985950_257348,05:50:00,05:50:00,1474963,1, +24985950_257348,05:53:00,05:54:00,1474964,2, +24985950_257348,05:56:00,05:56:00,1474992,3, +24985950_257348,05:59:00,06:00:00,1474993,4, +24985950_257348,06:05:00,06:05:00,1474994,5, +24985950_257348,06:08:00,06:09:00,1474995,6, +24985950_257348,06:12:00,06:13:00,1474996,7, +24985950_257348,06:15:00,06:16:00,1474965,8, +24985950_257348,06:21:00,06:22:00,1474997,9, +24985950_257348,06:27:00,06:27:00,1474998,10, +24985950_257348,06:29:00,06:30:00,1474999,11, +24985950_257348,06:38:00,06:42:00,1474843,12, +24985950_257348,06:46:00,06:47:00,1474962,13, +24985950_257348,06:51:00,06:51:00,1474961,14, +24985950_257348,06:54:00,06:54:00,1474960,15, +24985950_257348,06:57:00,06:57:00,1474959,16, +24985950_257348,07:02:00,07:09:00,1474958,17, +24985950_257348,07:10:00,07:11:00,1474957,18, +24985950_257348,07:14:00,07:15:00,1474966,19, +24985950_257348,07:17:00,07:17:00,1474955,20, +24985950_257348,07:21:00,07:21:00,1474954,21, +24985950_257348,07:24:00,07:25:00,1474967,22, +24985950_257348,07:31:00,07:31:00,1474968,23, +24985950_257348,07:40:00,07:40:00,1474951,24, +24985951_257349,06:36:00,06:36:00,1474640,0, +24985951_257349,06:41:00,06:42:00,1474963,1, +24985951_257349,06:44:00,06:45:00,1474964,2, +24985951_257349,06:47:00,06:48:00,1474992,3, +24985951_257349,06:51:00,06:52:00,1474993,4, +24985951_257349,06:56:00,06:57:00,1474994,5, +24985951_257349,07:00:00,07:01:00,1474995,6, +24985951_257349,07:04:00,07:05:00,1474996,7, +24985951_257349,07:08:00,07:09:00,1474965,8, +24985951_257349,07:14:00,07:15:00,1474997,9, +24985951_257349,07:21:00,07:21:00,1474998,10, +24985951_257349,07:23:00,07:24:00,1474999,11, +24985951_257349,07:31:00,07:33:00,1657886,12, +24985951_257349,07:37:00,07:38:00,1474962,13, +24985951_257349,07:42:00,07:42:00,1474961,14, +24985951_257349,07:45:00,07:45:00,1474960,15, +24985951_257349,07:48:00,07:48:00,1474959,16, +24985951_257349,07:53:00,07:53:00,1474948,17, +24985953_257351,06:36:00,06:36:00,1474738,0, +24985953_257351,06:41:00,06:42:00,1474963,1, +24985953_257351,06:44:00,06:45:00,1474964,2, +24985953_257351,06:47:00,06:48:00,1474992,3, +24985953_257351,06:51:00,06:52:00,1474993,4, +24985953_257351,06:56:00,06:56:00,1474994,5, +24985953_257351,06:59:00,07:00:00,1474995,6, +24985953_257351,07:03:00,07:04:00,1474996,7, +24985953_257351,07:07:00,07:08:00,1474965,8, +24985953_257351,07:13:00,07:13:00,1474997,9, +24985953_257351,07:19:00,07:19:00,1474998,10, +24985953_257351,07:22:00,07:22:00,1474999,11, +24985953_257351,07:31:00,07:33:00,1474843,12, +24985953_257351,07:37:00,07:38:00,1474962,13, +24985953_257351,07:42:00,07:43:00,1474961,14, +24985953_257351,07:45:00,07:46:00,1474960,15, +24985953_257351,07:49:00,07:49:00,1474959,16, +24985953_257351,07:54:00,07:54:00,1474948,17, +24985955_257353,10:26:00,10:26:00,1536277,0, +24985955_257353,10:32:00,10:32:00,1474963,1, +24985955_257353,10:34:00,10:35:00,1474964,2, +24985955_257353,10:37:00,10:37:00,1474992,3, +24985955_257353,10:40:00,10:41:00,1474993,4, +24985955_257353,10:45:00,10:46:00,1474994,5, +24985955_257353,10:48:00,10:49:00,1474995,6, +24985955_257353,10:52:00,10:53:00,1474996,7, +24985955_257353,10:56:00,10:56:00,1474965,8, +24985955_257353,11:01:00,11:02:00,1474997,9, +24985955_257353,11:07:00,11:07:00,1474998,10, +24985955_257353,11:09:00,11:10:00,1474999,11, +24985955_257353,11:16:00,11:17:00,1609726,12, +24985955_257353,11:21:00,11:22:00,1474962,13, +24985955_257353,11:26:00,11:31:00,1474961,14, +24985955_257353,11:33:00,11:34:00,1474960,15, +24985955_257353,11:36:00,11:37:00,1474959,16, +24985955_257353,11:41:00,11:42:00,1474958,17, +24985955_257353,11:44:00,11:44:00,1474957,18, +24985955_257353,11:48:00,11:55:00,1474966,19, +24985955_257353,11:57:00,11:58:00,1474955,20, +24985955_257353,12:01:00,12:01:00,1474954,21, +24985955_257353,12:04:00,12:04:00,1474967,22, +24985955_257353,12:11:00,12:11:00,1474968,23, +24985955_257353,12:21:00,12:21:00,1474951,24, +24985957_257355,10:26:00,10:26:00,1474738,0, +24985957_257355,10:31:00,10:32:00,1474963,1, +24985957_257355,10:34:00,10:35:00,1474964,2, +24985957_257355,10:37:00,10:37:00,1474992,3, +24985957_257355,10:40:00,10:41:00,1474993,4, +24985957_257355,10:45:00,10:46:00,1474994,5, +24985957_257355,10:48:00,10:49:00,1474995,6, +24985957_257355,10:52:00,10:53:00,1474996,7, +24985957_257355,10:56:00,10:56:00,1474965,8, +24985957_257355,11:02:00,11:02:00,1474997,9, +24985957_257355,11:08:00,11:08:00,1474998,10, +24985957_257355,11:11:00,11:11:00,1474999,11, +24985957_257355,11:19:00,11:21:00,1474843,12, +24985957_257355,11:26:00,11:26:00,1474962,13, +24985957_257355,11:30:00,11:31:00,1474961,14, +24985957_257355,11:33:00,11:34:00,1474960,15, +24985957_257355,11:36:00,11:37:00,1474959,16, +24985957_257355,11:41:00,11:42:00,1474958,17, +24985957_257355,11:44:00,11:44:00,1474957,18, +24985957_257355,11:48:00,11:54:00,1474966,19, +24985957_257355,11:56:00,11:57:00,1474955,20, +24985957_257355,12:00:00,12:01:00,1474954,21, +24985957_257355,12:04:00,12:05:00,1474967,22, +24985957_257355,12:11:00,12:11:00,1474968,23, +24985957_257355,12:20:00,12:20:00,1474951,24, +24985958_257356,13:38:00,13:38:00,1657886,0, +24985958_257356,13:53:00,13:53:00,1474948,1, +24985959_257357,13:38:00,13:38:00,1474843,0, +24985959_257357,13:42:00,13:43:00,1474962,1, +24985959_257357,13:47:00,13:47:00,1474961,2, +24985959_257357,13:50:00,13:50:00,1474960,3, +24985959_257357,13:53:00,13:53:00,1474959,4, +24985959_257357,13:58:00,13:58:00,1474948,5, +24985961_257359,13:03:00,13:03:00,1474640,0, +24985961_257359,13:09:00,13:09:00,1474963,1, +24985961_257359,13:12:00,13:12:00,1474964,2, +24985961_257359,13:16:00,13:17:00,1474993,3, +24985961_257359,13:23:00,13:23:00,1474995,4, +24985961_257359,13:28:00,13:29:00,1474965,5, +24985961_257359,13:34:00,13:34:00,1474997,6, +24985961_257359,13:45:00,13:47:00,1609726,7, +24985961_257359,13:52:00,13:52:00,1474962,8, +24985961_257359,13:56:00,13:57:00,1474961,9, +24985961_257359,13:59:00,14:00:00,1474960,10, +24985961_257359,14:02:00,14:03:00,1474959,11, +24985961_257359,14:07:00,14:14:00,1474958,12, +24985961_257359,14:15:00,14:16:00,1474957,13, +24985961_257359,14:20:00,14:20:00,1474966,14, +24985961_257359,14:23:00,14:23:00,1474955,15, +24985961_257359,14:26:00,14:27:00,1474954,16, +24985961_257359,14:30:00,14:31:00,1474967,17, +24985961_257359,14:37:00,14:38:00,1474968,18, +24985961_257359,14:47:00,14:47:00,1474951,19, +24985962_257360,13:12:00,13:12:00,1474640,0, +24985962_257360,13:17:00,13:17:00,1474963,1, +24985962_257360,13:20:00,13:20:00,1474964,2, +24985962_257360,13:24:00,13:25:00,1474993,3, +24985962_257360,13:30:00,13:31:00,1474995,4, +24985962_257360,13:35:00,13:36:00,1474965,5, +24985962_257360,13:40:00,13:41:00,1474997,6, +24985962_257360,13:53:00,13:54:00,1474843,7, +24985962_257360,14:08:00,14:14:00,1474958,8, +24985962_257360,14:16:00,14:16:00,1474957,9, +24985962_257360,14:20:00,14:21:00,1474966,10, +24985962_257360,14:23:00,14:24:00,1474955,11, +24985962_257360,14:27:00,14:28:00,1474954,12, +24985962_257360,14:31:00,14:31:00,1474967,13, +24985962_257360,14:38:00,14:38:00,1474968,14, +24985962_257360,14:47:00,14:47:00,1474951,15, +24985965_257363,14:12:00,14:12:00,1536277,0, +24985965_257363,14:17:00,14:17:00,1474963,1, +24985965_257363,14:20:00,14:20:00,1474964,2, +24985965_257363,14:24:00,14:25:00,1474993,3, +24985965_257363,14:31:00,14:31:00,1474995,4, +24985965_257363,14:37:00,14:38:00,1474965,5, +24985965_257363,14:43:00,14:43:00,1474997,6, +24985965_257363,14:55:00,15:00:00,1657886,7, +24985965_257363,15:04:00,15:04:00,1474962,8, +24985965_257363,15:08:00,15:09:00,1474961,9, +24985965_257363,15:11:00,15:12:00,1474960,10, +24985965_257363,15:14:00,15:14:00,1474959,11, +24985965_257363,15:18:00,15:19:00,1474958,12, +24985965_257363,15:21:00,15:22:00,1474957,13, +24985965_257363,15:26:00,15:32:00,1474966,14, +24985965_257363,15:34:00,15:35:00,1474955,15, +24985965_257363,15:38:00,15:39:00,1474954,16, +24985965_257363,15:42:00,15:43:00,1474967,17, +24985965_257363,15:49:00,15:50:00,1474968,18, +24985965_257363,15:59:00,15:59:00,1474951,19, +24985966_257364,14:11:00,14:11:00,1474640,0, +24985966_257364,14:16:00,14:17:00,1474963,1, +24985966_257364,14:19:00,14:19:00,1474964,2, +24985966_257364,14:24:00,14:24:00,1474993,3, +24985966_257364,14:30:00,14:31:00,1474995,4, +24985966_257364,14:36:00,14:37:00,1474965,5, +24985966_257364,14:42:00,14:42:00,1474997,6, +24985966_257364,14:54:00,15:00:00,1474843,7, +24985966_257364,15:04:00,15:05:00,1474962,8, +24985966_257364,15:09:00,15:09:00,1474961,9, +24985966_257364,15:11:00,15:12:00,1474960,10, +24985966_257364,15:14:00,15:15:00,1474959,11, +24985966_257364,15:19:00,15:20:00,1474958,12, +24985966_257364,15:22:00,15:22:00,1474957,13, +24985966_257364,15:26:00,15:32:00,1474966,14, +24985966_257364,15:34:00,15:35:00,1474955,15, +24985966_257364,15:38:00,15:39:00,1474954,16, +24985966_257364,15:42:00,15:43:00,1474967,17, +24985966_257364,15:49:00,15:50:00,1474968,18, +24985966_257364,15:59:00,15:59:00,1474951,19, +24985968_257366,15:15:00,15:15:00,1474651,0, +24985968_257366,15:20:00,15:21:00,1474963,1, +24985968_257366,15:23:00,15:23:00,1474964,2, +24985968_257366,15:25:00,15:26:00,1474992,3, +24985968_257366,15:29:00,15:29:00,1474993,4, +24985968_257366,15:34:00,15:35:00,1474994,5, +24985968_257366,15:37:00,15:38:00,1474995,6, +24985968_257366,15:41:00,15:42:00,1474996,7, +24985968_257366,15:45:00,15:46:00,1474965,8, +24985968_257366,15:51:00,15:52:00,1474997,9, +24985968_257366,15:57:00,15:58:00,1474998,10, +24985968_257366,16:00:00,16:01:00,1474999,11, +24985968_257366,16:08:00,16:19:00,1657886,12, +24985968_257366,16:23:00,16:23:00,1474962,13, +24985968_257366,16:27:00,16:28:00,1474961,14, +24985968_257366,16:30:00,16:31:00,1474960,15, +24985968_257366,16:33:00,16:33:00,1474959,16, +24985968_257366,16:38:00,16:39:00,1474958,17, +24985968_257366,16:40:00,16:41:00,1474957,18, +24985968_257366,16:45:00,16:46:00,1474966,19, +24985968_257366,16:48:00,16:48:00,1474955,20, +24985968_257366,16:52:00,16:52:00,1474954,21, +24985968_257366,16:55:00,16:56:00,1474967,22, +24985968_257366,17:03:00,17:03:00,1474968,23, +24985968_257366,17:12:00,17:12:00,1474951,24, +24985969_257367,15:15:00,15:15:00,1474640,0, +24985969_257367,15:20:00,15:20:00,1474963,1, +24985969_257367,15:22:00,15:23:00,1474964,2, +24985969_257367,15:26:00,15:26:00,1474992,3, +24985969_257367,15:29:00,15:30:00,1474993,4, +24985969_257367,15:34:00,15:35:00,1474994,5, +24985969_257367,15:37:00,15:38:00,1474995,6, +24985969_257367,15:42:00,15:42:00,1474996,7, +24985969_257367,15:46:00,15:47:00,1474965,8, +24985969_257367,15:52:00,15:53:00,1474997,9, +24985969_257367,15:58:00,15:59:00,1474998,10, +24985969_257367,16:01:00,16:02:00,1474999,11, +24985969_257367,16:10:00,16:19:00,1474843,12, +24985969_257367,16:23:00,16:24:00,1474962,13, +24985969_257367,16:28:00,16:28:00,1474961,14, +24985969_257367,16:31:00,16:31:00,1474960,15, +24985969_257367,16:34:00,16:34:00,1474959,16, +24985969_257367,16:38:00,16:39:00,1474958,17, +24985969_257367,16:41:00,16:42:00,1474957,18, +24985969_257367,16:46:00,16:46:00,1474966,19, +24985969_257367,16:48:00,16:49:00,1474955,20, +24985969_257367,16:52:00,16:53:00,1474954,21, +24985969_257367,16:56:00,16:56:00,1474967,22, +24985969_257367,17:03:00,17:03:00,1474968,23, +24985969_257367,17:13:00,17:13:00,1474951,24, +24985971_257369,18:54:00,18:54:00,1474651,0, +24985971_257369,18:59:00,19:00:00,1474963,1, +24985971_257369,19:02:00,19:03:00,1474964,2, +24985971_257369,19:06:00,19:06:00,1474992,3, +24985971_257369,19:09:00,19:10:00,1474993,4, +24985971_257369,19:15:00,19:15:00,1474994,5, +24985971_257369,19:18:00,19:19:00,1474995,6, +24985971_257369,19:23:00,19:23:00,1474996,7, +24985971_257369,19:27:00,19:28:00,1474965,8, +24985971_257369,19:33:00,19:33:00,1474997,9, +24985971_257369,19:39:00,19:39:00,1474998,10, +24985971_257369,19:42:00,19:42:00,1474999,11, +24985971_257369,19:49:00,19:51:00,1609726,12, +24985971_257369,19:56:00,19:56:00,1474962,13, +24985971_257369,20:00:00,20:08:00,1474961,14, +24985971_257369,20:10:00,20:11:00,1474960,15, +24985971_257369,20:13:00,20:14:00,1474959,16, +24985971_257369,20:19:00,20:19:00,1474948,17, +24985972_257370,18:53:00,18:53:00,1474738,0, +24985972_257370,18:58:00,18:59:00,1474963,1, +24985972_257370,19:01:00,19:02:00,1474964,2, +24985972_257370,19:05:00,19:05:00,1474992,3, +24985972_257370,19:08:00,19:09:00,1474993,4, +24985972_257370,19:14:00,19:14:00,1474994,5, +24985972_257370,19:17:00,19:18:00,1474995,6, +24985972_257370,19:22:00,19:22:00,1474996,7, +24985972_257370,19:26:00,19:27:00,1474965,8, +24985972_257370,19:32:00,19:32:00,1474997,9, +24985972_257370,19:38:00,19:38:00,1474998,10, +24985972_257370,19:41:00,19:41:00,1474999,11, +24985972_257370,19:50:00,19:52:00,1474843,12, +24985972_257370,19:56:00,19:57:00,1474962,13, +24985972_257370,20:01:00,20:07:00,1474961,14, +24985972_257370,20:10:00,20:10:00,1474960,15, +24985972_257370,20:13:00,20:13:00,1474959,16, +24985972_257370,20:18:00,20:18:00,1474948,17, +24985974_257372,21:13:00,21:13:00,1609726,0, +24985974_257372,21:17:00,21:18:00,1474962,1, +24985974_257372,21:22:00,21:23:00,1474961,2, +24985974_257372,21:25:00,21:26:00,1474960,3, +24985974_257372,21:28:00,21:29:00,1474959,4, +24985974_257372,21:33:00,21:34:00,1474958,5, +24985974_257372,21:36:00,21:36:00,1474957,6, +24985974_257372,21:40:00,21:41:00,1474966,7, +24985974_257372,21:43:00,21:44:00,1474955,8, +24985974_257372,21:47:00,21:48:00,1474954,9, +24985974_257372,21:51:00,21:51:00,1474967,10, +24985974_257372,21:58:00,21:58:00,1474968,11, +24985974_257372,22:07:00,22:07:00,1474951,12, +24985975_257373,21:10:00,21:10:00,1657886,0, +24985975_257373,21:14:00,21:15:00,1474962,1, +24985975_257373,21:19:00,21:20:00,1474961,2, +24985975_257373,21:22:00,21:23:00,1474960,3, +24985975_257373,21:25:00,21:26:00,1474959,4, +24985975_257373,21:30:00,21:31:00,1474958,5, +24985975_257373,21:33:00,21:33:00,1474957,6, +24985975_257373,21:37:00,21:38:00,1474966,7, +24985975_257373,21:40:00,21:41:00,1474955,8, +24985975_257373,21:44:00,21:45:00,1474954,9, +24985975_257373,21:48:00,21:48:00,1474967,10, +24985975_257373,21:55:00,21:55:00,1474968,11, +24985975_257373,22:04:00,22:04:00,1474951,12, +24985977_257375,04:41:00,04:41:00,1475015,0, +24985977_257375,04:51:00,04:52:00,1475016,1, +24985977_257375,04:54:00,04:55:00,1475017,2, +24985977_257375,04:57:00,04:58:00,1475018,3, +24985977_257375,05:06:00,05:07:00,1475019,4, +24985977_257375,05:19:00,05:24:00,1609726,5, +24985977_257375,05:30:00,05:31:00,1475000,6, +24985977_257375,05:33:00,05:34:00,1475001,7, +24985977_257375,05:39:00,05:40:00,1475002,8, +24985977_257375,05:46:00,05:47:00,1474949,9, +24985977_257375,05:50:00,05:50:00,1475003,10, +24985977_257375,05:54:00,05:55:00,1475004,11, +24985977_257375,05:58:00,05:58:00,1475005,12, +24985977_257375,06:03:00,06:04:00,1475006,13, +24985977_257375,06:07:00,06:07:00,1475007,14, +24985977_257375,06:09:00,06:10:00,1474950,15, +24985977_257375,06:13:00,06:13:00,1474793,16, +24985977_257375,06:19:00,06:19:00,1474640,17, +24985978_257376,05:01:00,05:01:00,1474948,0, +24985978_257376,05:05:00,05:05:00,1474959,1, +24985978_257376,05:08:00,05:08:00,1474960,2, +24985978_257376,05:11:00,05:11:00,1474961,3, +24985978_257376,05:15:00,05:16:00,1474962,4, +24985978_257376,05:22:00,05:23:00,1474843,5, +24985978_257376,05:31:00,05:31:00,1475000,6, +24985978_257376,05:34:00,05:34:00,1475001,7, +24985978_257376,05:40:00,05:40:00,1475002,8, +24985978_257376,05:46:00,05:47:00,1474949,9, +24985978_257376,05:50:00,05:51:00,1475003,10, +24985978_257376,05:54:00,05:55:00,1475004,11, +24985978_257376,05:58:00,05:58:00,1475005,12, +24985978_257376,06:03:00,06:04:00,1475006,13, +24985978_257376,06:07:00,06:08:00,1475007,14, +24985978_257376,06:10:00,06:11:00,1474950,15, +24985978_257376,06:13:00,06:13:00,1474793,16, +24985978_257376,06:19:00,06:19:00,1474640,17, +24985980_257378,06:13:00,06:13:00,1474948,0, +24985980_257378,06:17:00,06:18:00,1474959,1, +24985980_257378,06:20:00,06:21:00,1474960,2, +24985980_257378,06:23:00,06:24:00,1474961,3, +24985980_257378,06:29:00,06:29:00,1474962,4, +24985980_257378,06:35:00,06:40:00,1609726,5, +24985980_257378,06:46:00,06:46:00,1475000,6, +24985980_257378,06:49:00,06:49:00,1475001,7, +24985980_257378,06:54:00,06:55:00,1475002,8, +24985980_257378,07:00:00,07:01:00,1474949,9, +24985980_257378,07:04:00,07:05:00,1475003,10, +24985980_257378,07:08:00,07:09:00,1475004,11, +24985980_257378,07:12:00,07:13:00,1475005,12, +24985980_257378,07:17:00,07:18:00,1475006,13, +24985980_257378,07:21:00,07:22:00,1475007,14, +24985980_257378,07:24:00,07:25:00,1474950,15, +24985980_257378,07:27:00,07:27:00,1474793,16, +24985980_257378,07:33:00,07:33:00,1474640,17, +24985982_257380,06:15:00,06:15:00,1474948,0, +24985982_257380,06:19:00,06:20:00,1474959,1, +24985982_257380,06:23:00,06:23:00,1474960,2, +24985982_257380,06:26:00,06:26:00,1474961,3, +24985982_257380,06:30:00,06:31:00,1474962,4, +24985982_257380,06:36:00,06:37:00,1474843,5, +24985982_257380,06:45:00,06:45:00,1475000,6, +24985982_257380,06:48:00,06:48:00,1475001,7, +24985982_257380,06:54:00,06:54:00,1475002,8, +24985982_257380,06:59:00,07:00:00,1474949,9, +24985982_257380,07:03:00,07:04:00,1475003,10, +24985982_257380,07:08:00,07:09:00,1475004,11, +24985982_257380,07:11:00,07:12:00,1475005,12, +24985982_257380,07:16:00,07:17:00,1475006,13, +24985982_257380,07:20:00,07:20:00,1475007,14, +24985982_257380,07:23:00,07:24:00,1474950,15, +24985982_257380,07:27:00,07:27:00,1474793,16, +24985982_257380,07:33:00,07:33:00,1474640,17, +24985984_257382,06:33:00,06:33:00,1474951,0, +24985984_257382,06:41:00,06:41:00,1474952,1, +24985984_257382,06:48:00,06:48:00,1474953,2, +24985984_257382,06:51:00,06:52:00,1474954,3, +24985984_257382,06:55:00,06:56:00,1474955,4, +24985984_257382,06:59:00,06:59:00,1474956,5, +24985984_257382,07:03:00,07:04:00,1474957,6, +24985984_257382,07:06:00,07:07:00,1474958,7, +24985984_257382,07:10:00,07:11:00,1474959,8, +24985984_257382,07:13:00,07:14:00,1474960,9, +24985984_257382,07:17:00,07:17:00,1474961,10, +24985984_257382,07:21:00,07:22:00,1474962,11, +24985984_257382,07:27:00,07:31:00,1609726,12, +24985984_257382,07:42:00,07:43:00,1475002,13, +24985984_257382,07:48:00,07:49:00,1474949,14, +24985984_257382,07:54:00,07:54:00,1475004,15, +24985984_257382,08:00:00,08:02:00,1475006,16, +24985984_257382,08:06:00,08:06:00,1474950,17, +24985984_257382,08:09:00,08:09:00,1474793,18, +24985984_257382,08:15:00,08:15:00,1474640,19, +24985985_257383,06:34:00,06:34:00,1474951,0, +24985985_257383,06:42:00,06:42:00,1474952,1, +24985985_257383,06:49:00,06:49:00,1474953,2, +24985985_257383,06:52:00,06:53:00,1474954,3, +24985985_257383,06:56:00,06:57:00,1474955,4, +24985985_257383,07:00:00,07:00:00,1474956,5, +24985985_257383,07:04:00,07:05:00,1474957,6, +24985985_257383,07:07:00,07:08:00,1474958,7, +24985985_257383,07:11:00,07:12:00,1474959,8, +24985985_257383,07:14:00,07:15:00,1474960,9, +24985985_257383,07:18:00,07:18:00,1474961,10, +24985985_257383,07:22:00,07:23:00,1474962,11, +24985985_257383,07:28:00,07:32:00,1474915,12, +24985985_257383,07:43:00,07:44:00,1475002,13, +24985985_257383,07:49:00,07:50:00,1474949,14, +24985985_257383,07:55:00,07:55:00,1475004,15, +24985985_257383,08:01:00,08:02:00,1475006,16, +24985985_257383,08:06:00,08:06:00,1474950,17, +24985985_257383,08:09:00,08:09:00,1474793,18, +24985985_257383,08:15:00,08:15:00,1474738,19, +24985988_257386,08:09:00,08:09:00,1474948,0, +24985988_257386,08:23:00,08:24:00,1609726,1, +24985988_257386,08:35:00,08:36:00,1475002,2, +24985988_257386,08:41:00,08:42:00,1474949,3, +24985988_257386,08:47:00,08:47:00,1475004,4, +24985988_257386,08:53:00,08:54:00,1475006,5, +24985988_257386,08:58:00,08:59:00,1474950,6, +24985988_257386,09:01:00,09:02:00,1474793,7, +24985988_257386,09:08:00,09:08:00,1536277,8, +24985990_257388,08:09:00,08:09:00,1474948,0, +24985990_257388,08:23:00,08:24:00,1609726,1, +24985990_257388,08:35:00,08:36:00,1475002,2, +24985990_257388,08:41:00,08:42:00,1474949,3, +24985990_257388,08:47:00,08:47:00,1475004,4, +24985990_257388,08:53:00,08:54:00,1475006,5, +24985990_257388,08:58:00,08:59:00,1474950,6, +24985990_257388,09:01:00,09:02:00,1474793,7, +24985990_257388,09:08:00,09:08:00,1474640,8, +24985995_257393,08:31:00,08:31:00,1474951,0, +24985995_257393,08:38:00,08:39:00,1474952,1, +24985995_257393,08:46:00,08:46:00,1474953,2, +24985995_257393,08:49:00,08:49:00,1474954,3, +24985995_257393,08:53:00,08:53:00,1474955,4, +24985995_257393,08:56:00,08:56:00,1474956,5, +24985995_257393,09:00:00,09:01:00,1474957,6, +24985995_257393,09:03:00,09:04:00,1474958,7, +24985995_257393,09:07:00,09:08:00,1474959,8, +24985995_257393,09:10:00,09:11:00,1474960,9, +24985995_257393,09:14:00,09:14:00,1474961,10, +24985995_257393,09:18:00,09:19:00,1474962,11, +24985995_257393,09:24:00,09:27:00,1609726,12, +24985995_257393,09:33:00,09:34:00,1475000,13, +24985995_257393,09:36:00,09:36:00,1475001,14, +24985995_257393,09:42:00,09:42:00,1475002,15, +24985995_257393,09:48:00,09:48:00,1474949,16, +24985995_257393,09:51:00,09:52:00,1475003,17, +24985995_257393,09:55:00,09:56:00,1475004,18, +24985995_257393,09:58:00,09:59:00,1475005,19, +24985995_257393,10:03:00,10:04:00,1475006,20, +24985995_257393,10:06:00,10:07:00,1475007,21, +24985995_257393,10:09:00,10:09:00,1474950,22, +24985995_257393,10:12:00,10:12:00,1474793,23, +24985995_257393,10:18:00,10:18:00,1474651,24, +24985996_257394,08:28:00,08:28:00,1474951,0, +24985996_257394,08:35:00,08:36:00,1474952,1, +24985996_257394,08:42:00,08:43:00,1474953,2, +24985996_257394,08:46:00,08:46:00,1474954,3, +24985996_257394,08:49:00,08:50:00,1474955,4, +24985996_257394,08:52:00,08:53:00,1474956,5, +24985996_257394,08:57:00,08:57:00,1474957,6, +24985996_257394,08:59:00,09:00:00,1474958,7, +24985996_257394,09:04:00,09:05:00,1474959,8, +24985996_257394,09:07:00,09:07:00,1474960,9, +24985996_257394,09:10:00,09:10:00,1474961,10, +24985996_257394,09:14:00,09:15:00,1474962,11, +24985996_257394,09:20:00,09:25:00,1474843,12, +24985996_257394,09:33:00,09:33:00,1475000,13, +24985996_257394,09:35:00,09:36:00,1475001,14, +24985996_257394,09:41:00,09:42:00,1475002,15, +24985996_257394,09:47:00,09:48:00,1474949,16, +24985996_257394,09:51:00,09:51:00,1475003,17, +24985996_257394,09:55:00,09:56:00,1475004,18, +24985996_257394,09:58:00,09:59:00,1475005,19, +24985996_257394,10:03:00,10:04:00,1475006,20, +24985996_257394,10:07:00,10:08:00,1475007,21, +24985996_257394,10:10:00,10:11:00,1474950,22, +24985996_257394,10:13:00,10:13:00,1474793,23, +24985996_257394,10:19:00,10:19:00,1474640,24, +24985998_257396,12:33:00,12:33:00,1474951,0, +24985998_257396,12:40:00,12:41:00,1474952,1, +24985998_257396,12:48:00,12:48:00,1474953,2, +24985998_257396,12:51:00,12:52:00,1474954,3, +24985998_257396,12:55:00,12:55:00,1474955,4, +24985998_257396,12:58:00,12:58:00,1474956,5, +24985998_257396,13:02:00,13:03:00,1474957,6, +24985998_257396,13:05:00,13:06:00,1474958,7, +24985998_257396,13:10:00,13:10:00,1474959,8, +24985998_257396,13:13:00,13:13:00,1474960,9, +24985998_257396,13:16:00,13:16:00,1474961,10, +24985998_257396,13:20:00,13:21:00,1474962,11, +24985998_257396,13:26:00,13:30:00,1474947,12, +24985998_257396,13:37:00,13:37:00,1475000,13, +24985998_257396,13:39:00,13:40:00,1475001,14, +24985998_257396,13:46:00,13:46:00,1475002,15, +24985998_257396,13:52:00,13:53:00,1474949,16, +24985998_257396,13:56:00,13:56:00,1475003,17, +24985998_257396,14:00:00,14:01:00,1475004,18, +24985998_257396,14:04:00,14:04:00,1475005,19, +24985998_257396,14:09:00,14:10:00,1475006,20, +24985998_257396,14:13:00,14:13:00,1475007,21, +24985998_257396,14:16:00,14:17:00,1474950,22, +24985998_257396,14:20:00,14:20:00,1474793,23, +24985998_257396,14:27:00,14:27:00,1474651,24, +24986000_257398,12:33:00,12:33:00,1474951,0, +24986000_257398,12:40:00,12:41:00,1474952,1, +24986000_257398,12:48:00,12:48:00,1474953,2, +24986000_257398,12:51:00,12:51:00,1474954,3, +24986000_257398,12:55:00,12:55:00,1474955,4, +24986000_257398,12:58:00,12:58:00,1474956,5, +24986000_257398,13:02:00,13:03:00,1474957,6, +24986000_257398,13:05:00,13:06:00,1474958,7, +24986000_257398,13:10:00,13:10:00,1474959,8, +24986000_257398,13:13:00,13:13:00,1474960,9, +24986000_257398,13:16:00,13:16:00,1474961,10, +24986000_257398,13:20:00,13:21:00,1474962,11, +24986000_257398,13:26:00,13:29:00,1474843,12, +24986000_257398,13:37:00,13:37:00,1475000,13, +24986000_257398,13:39:00,13:40:00,1475001,14, +24986000_257398,13:45:00,13:46:00,1475002,15, +24986000_257398,13:51:00,13:52:00,1474949,16, +24986000_257398,13:55:00,13:56:00,1475003,17, +24986000_257398,14:00:00,14:01:00,1475004,18, +24986000_257398,14:03:00,14:04:00,1475005,19, +24986000_257398,14:09:00,14:10:00,1475006,20, +24986000_257398,14:13:00,14:13:00,1475007,21, +24986000_257398,14:16:00,14:17:00,1474950,22, +24986000_257398,14:19:00,14:20:00,1474793,23, +24986000_257398,14:26:00,14:26:00,1474640,24, +24986006_257404,15:04:00,15:04:00,1474951,0, +24986006_257404,15:13:00,15:14:00,1474952,1, +24986006_257404,15:20:00,15:20:00,1474953,2, +24986006_257404,15:23:00,15:23:00,1474954,3, +24986006_257404,15:27:00,15:27:00,1474955,4, +24986006_257404,15:30:00,15:30:00,1474956,5, +24986006_257404,15:34:00,15:35:00,1474957,6, +24986006_257404,15:37:00,15:38:00,1474958,7, +24986006_257404,15:42:00,15:42:00,1474959,8, +24986006_257404,15:45:00,15:45:00,1474960,9, +24986006_257404,15:48:00,15:55:00,1474961,10, +24986006_257404,15:59:00,16:00:00,1474962,11, +24986006_257404,16:05:00,16:06:00,1609726,12, +24986006_257404,16:16:00,16:17:00,1475002,13, +24986006_257404,16:22:00,16:23:00,1474949,14, +24986006_257404,16:28:00,16:28:00,1475004,15, +24986006_257404,16:34:00,16:35:00,1475006,16, +24986006_257404,16:39:00,16:40:00,1474950,17, +24986006_257404,16:42:00,16:43:00,1474793,18, +24986006_257404,16:48:00,16:48:00,1474640,19, +24986007_257405,15:02:00,15:02:00,1474951,0, +24986007_257405,15:11:00,15:12:00,1474952,1, +24986007_257405,15:18:00,15:19:00,1474953,2, +24986007_257405,15:22:00,15:22:00,1474954,3, +24986007_257405,15:26:00,15:26:00,1474955,4, +24986007_257405,15:30:00,15:30:00,1474956,5, +24986007_257405,15:34:00,15:35:00,1474957,6, +24986007_257405,15:37:00,15:38:00,1474958,7, +24986007_257405,15:42:00,15:42:00,1474959,8, +24986007_257405,15:45:00,15:45:00,1474960,9, +24986007_257405,15:48:00,15:55:00,1474961,10, +24986007_257405,15:59:00,16:00:00,1474962,11, +24986007_257405,16:05:00,16:06:00,1609726,12, +24986007_257405,16:16:00,16:17:00,1475002,13, +24986007_257405,16:22:00,16:23:00,1474949,14, +24986007_257405,16:28:00,16:28:00,1475004,15, +24986007_257405,16:34:00,16:35:00,1475006,16, +24986007_257405,16:39:00,16:40:00,1474950,17, +24986007_257405,16:42:00,16:43:00,1474793,18, +24986007_257405,16:48:00,16:48:00,1474640,19, +24986009_257407,18:36:00,18:36:00,1474951,0, +24986009_257407,18:43:00,18:44:00,1474952,1, +24986009_257407,18:50:00,18:51:00,1474953,2, +24986009_257407,18:54:00,18:54:00,1474954,3, +24986009_257407,18:58:00,18:58:00,1474955,4, +24986009_257407,19:01:00,19:01:00,1474956,5, +24986009_257407,19:05:00,19:06:00,1474957,6, +24986009_257407,19:08:00,19:09:00,1474958,7, +24986009_257407,19:13:00,19:13:00,1474959,8, +24986009_257407,19:15:00,19:16:00,1474960,9, +24986009_257407,19:18:00,19:19:00,1474961,10, +24986009_257407,19:23:00,19:23:00,1474962,11, +24986009_257407,19:29:00,19:29:00,1474947,12, +24986010_257408,18:36:00,18:36:00,1474951,0, +24986010_257408,18:43:00,18:44:00,1474952,1, +24986010_257408,18:50:00,18:51:00,1474953,2, +24986010_257408,18:54:00,18:54:00,1474954,3, +24986010_257408,18:58:00,18:58:00,1474955,4, +24986010_257408,19:01:00,19:01:00,1474956,5, +24986010_257408,19:05:00,19:06:00,1474957,6, +24986010_257408,19:08:00,19:09:00,1474958,7, +24986010_257408,19:13:00,19:13:00,1474959,8, +24986010_257408,19:15:00,19:16:00,1474960,9, +24986010_257408,19:18:00,19:19:00,1474961,10, +24986010_257408,19:23:00,19:23:00,1474962,11, +24986010_257408,19:29:00,19:29:00,1657886,12, +24986012_257410,20:22:00,20:22:00,1474951,0, +24986012_257410,20:29:00,20:29:00,1474952,1, +24986012_257410,20:39:00,20:40:00,1474954,2, +24986012_257410,20:47:00,20:48:00,1474957,3, +24986012_257410,20:50:00,20:52:00,1474958,4, +24986012_257410,21:07:00,21:07:00,1609726,5, +24986013_257411,20:22:00,20:22:00,1474951,0, +24986013_257411,20:29:00,20:30:00,1474952,1, +24986013_257411,20:39:00,20:39:00,1474954,2, +24986013_257411,20:47:00,20:48:00,1474957,3, +24986013_257411,20:51:00,20:53:00,1474958,4, +24986013_257411,21:08:00,21:08:00,1474843,5, +24986015_257413,20:56:00,20:56:00,1474951,0, +24986015_257413,21:04:00,21:04:00,1474952,1, +24986015_257413,21:11:00,21:11:00,1474953,2, +24986015_257413,21:14:00,21:15:00,1474954,3, +24986015_257413,21:18:00,21:19:00,1474955,4, +24986015_257413,21:22:00,21:22:00,1474956,5, +24986015_257413,21:26:00,21:27:00,1474957,6, +24986015_257413,21:29:00,21:35:00,1474958,7, +24986015_257413,21:39:00,21:39:00,1474959,8, +24986015_257413,21:42:00,21:42:00,1474960,9, +24986015_257413,21:45:00,21:45:00,1474961,10, +24986015_257413,21:49:00,21:50:00,1474962,11, +24986015_257413,21:56:00,21:58:00,1474947,12, +24986015_257413,22:04:00,22:04:00,1475000,13, +24986015_257413,22:07:00,22:07:00,1475001,14, +24986015_257413,22:13:00,22:13:00,1475002,15, +24986015_257413,22:19:00,22:20:00,1474949,16, +24986015_257413,22:23:00,22:23:00,1475003,17, +24986015_257413,22:27:00,22:28:00,1475004,18, +24986015_257413,22:31:00,22:31:00,1475005,19, +24986015_257413,22:36:00,22:37:00,1475006,20, +24986015_257413,22:40:00,22:40:00,1475007,21, +24986015_257413,22:43:00,22:44:00,1474950,22, +24986015_257413,22:46:00,22:46:00,1474793,23, +24986015_257413,22:52:00,22:52:00,1474651,24, +24986016_257414,20:54:00,20:54:00,1474951,0, +24986016_257414,21:02:00,21:02:00,1474952,1, +24986016_257414,21:09:00,21:09:00,1474953,2, +24986016_257414,21:12:00,21:13:00,1474954,3, +24986016_257414,21:16:00,21:17:00,1474955,4, +24986016_257414,21:20:00,21:20:00,1474956,5, +24986016_257414,21:24:00,21:25:00,1474957,6, +24986016_257414,21:27:00,21:32:00,1474958,7, +24986016_257414,21:36:00,21:36:00,1474959,8, +24986016_257414,21:39:00,21:39:00,1474960,9, +24986016_257414,21:42:00,21:42:00,1474961,10, +24986016_257414,21:46:00,21:47:00,1474962,11, +24986016_257414,21:53:00,21:55:00,1474843,12, +24986016_257414,22:03:00,22:04:00,1475000,13, +24986016_257414,22:06:00,22:06:00,1475001,14, +24986016_257414,22:12:00,22:12:00,1475002,15, +24986016_257414,22:18:00,22:19:00,1474949,16, +24986016_257414,22:22:00,22:22:00,1475003,17, +24986016_257414,22:26:00,22:27:00,1475004,18, +24986016_257414,22:30:00,22:30:00,1475005,19, +24986016_257414,22:35:00,22:36:00,1475006,20, +24986016_257414,22:39:00,22:39:00,1475007,21, +24986016_257414,22:41:00,22:42:00,1474950,22, +24986016_257414,22:44:00,22:45:00,1474793,23, +24986016_257414,22:51:00,22:51:00,1474640,24, +24986018_257416,20:56:00,20:56:00,1474951,0, +24986018_257416,21:04:00,21:04:00,1474952,1, +24986018_257416,21:11:00,21:11:00,1474953,2, +24986018_257416,21:14:00,21:15:00,1474954,3, +24986018_257416,21:18:00,21:19:00,1474955,4, +24986018_257416,21:22:00,21:22:00,1474956,5, +24986018_257416,21:26:00,21:27:00,1474957,6, +24986018_257416,21:29:00,21:35:00,1474958,7, +24986018_257416,21:39:00,21:39:00,1474959,8, +24986018_257416,21:42:00,21:42:00,1474960,9, +24986018_257416,21:45:00,21:45:00,1474961,10, +24986018_257416,21:49:00,21:50:00,1474962,11, +24986018_257416,21:56:00,21:56:00,1474947,12, +24986019_257417,20:54:00,20:54:00,1474951,0, +24986019_257417,21:02:00,21:02:00,1474952,1, +24986019_257417,21:09:00,21:09:00,1474953,2, +24986019_257417,21:12:00,21:13:00,1474954,3, +24986019_257417,21:16:00,21:17:00,1474955,4, +24986019_257417,21:20:00,21:20:00,1474956,5, +24986019_257417,21:24:00,21:25:00,1474957,6, +24986019_257417,21:27:00,21:32:00,1474958,7, +24986019_257417,21:36:00,21:36:00,1474959,8, +24986019_257417,21:39:00,21:39:00,1474960,9, +24986019_257417,21:42:00,21:42:00,1474961,10, +24986019_257417,21:46:00,21:47:00,1474962,11, +24986019_257417,21:53:00,21:53:00,1657886,12, +24986023_257421,14:07:00,14:07:00,1657886,0, +24986023_257421,14:30:00,14:30:00,1474948,1, +24986024_257422,14:06:00,14:06:00,1657886,0, +24986024_257422,14:10:00,14:11:00,1474962,1, +24986024_257422,14:15:00,14:21:00,1474961,2, +24986024_257422,14:23:00,14:24:00,1474960,3, +24986024_257422,14:26:00,14:26:00,1474959,4, +24986024_257422,14:31:00,14:31:00,1474948,5, +24986027_257425,22:51:00,22:51:00,1475015,0, +24986027_257425,23:01:00,23:02:00,1475016,1, +24986027_257425,23:04:00,23:05:00,1475017,2, +24986027_257425,23:07:00,23:08:00,1475018,3, +24986027_257425,23:16:00,23:17:00,1475019,4, +24986027_257425,23:29:00,23:29:00,1474843,5, +24986028_257426,22:43:00,22:43:00,1474948,0, +24986028_257426,22:47:00,22:47:00,1474959,1, +24986028_257426,22:50:00,22:50:00,1474960,2, +24986028_257426,22:53:00,22:53:00,1474961,3, +24986028_257426,22:57:00,22:58:00,1474962,4, +24986028_257426,23:03:00,23:03:00,1657886,5, +24986031_257429,04:05:00,04:05:00,1475020,0, +24986031_257429,04:17:00,04:17:00,1474981,1, +24986031_257429,04:23:00,04:23:00,1474975,2, +24986031_257429,04:26:00,04:26:00,1764609,3, +24986031_257429,04:29:00,04:29:00,1474976,4, +24986031_257429,04:41:00,04:41:00,1474977,5, +24986032_257430,04:09:00,04:09:00,1475020,0, +24986032_257430,04:21:00,04:21:00,1474981,1, +24986035_257433,05:04:00,05:04:00,1475020,0, +24986035_257433,05:16:00,05:16:00,1474981,1, +24986035_257433,05:22:00,05:22:00,1474975,2, +24986035_257433,05:25:00,05:25:00,1764609,3, +24986035_257433,05:28:00,05:28:00,1474976,4, +24986035_257433,05:40:00,05:40:00,1474977,5, +24986036_257434,05:09:00,05:09:00,1475020,0, +24986036_257434,05:21:00,05:21:00,1474981,1, +24986039_257437,06:01:00,06:01:00,1475020,0, +24986039_257437,06:13:00,06:13:00,1474981,1, +24986039_257437,06:19:00,06:19:00,1474975,2, +24986039_257437,06:22:00,06:22:00,1764609,3, +24986039_257437,06:25:00,06:25:00,1474976,4, +24986039_257437,06:37:00,06:37:00,1474977,5, +24986040_257438,06:02:00,06:02:00,1475020,0, +24986040_257438,06:14:00,06:14:00,1474981,1, +24986043_257441,07:57:00,07:57:00,1475020,0, +24986043_257441,08:09:00,08:09:00,1474981,1, +24986043_257441,08:15:00,08:15:00,1474975,2, +24986043_257441,08:18:00,08:18:00,1764609,3, +24986043_257441,08:21:00,08:21:00,1474976,4, +24986043_257441,08:33:00,08:33:00,1474977,5, +24986044_257442,07:59:00,07:59:00,1475020,0, +24986044_257442,08:11:00,08:11:00,1474981,1, +24986047_257445,09:35:00,09:35:00,1475020,0, +24986047_257445,09:47:00,09:47:00,1474981,1, +24986047_257445,09:53:00,09:53:00,1474975,2, +24986047_257445,09:56:00,09:56:00,1764609,3, +24986047_257445,09:59:00,09:59:00,1474976,4, +24986047_257445,10:11:00,10:11:00,1474977,5, +24986048_257446,09:40:00,09:40:00,1475020,0, +24986048_257446,09:52:00,09:52:00,1474981,1, +24986051_257449,12:00:00,12:00:00,1475022,0, +24986051_257449,12:10:00,12:11:00,1475020,1, +24986051_257449,12:23:00,12:23:00,1474981,2, +24986051_257449,12:29:00,12:29:00,1474975,3, +24986051_257449,12:32:00,12:32:00,1764609,4, +24986051_257449,12:35:00,12:35:00,1474976,5, +24986051_257449,12:47:00,12:47:00,1474977,6, +24986052_257450,12:08:00,12:08:00,1475022,0, +24986052_257450,12:18:00,12:19:00,1475020,1, +24986052_257450,12:31:00,12:31:00,1474981,2, +24986055_257453,15:06:00,15:06:00,1475020,0, +24986055_257453,15:18:00,15:18:00,1474981,1, +24986055_257453,15:24:00,15:24:00,1474975,2, +24986055_257453,15:27:00,15:27:00,1764609,3, +24986055_257453,15:30:00,15:30:00,1474976,4, +24986055_257453,15:42:00,15:42:00,1474977,5, +24986056_257454,15:05:00,15:05:00,1475020,0, +24986056_257454,15:17:00,15:17:00,1474981,1, +24986060_257458,16:01:00,16:01:00,1475020,0, +24986060_257458,16:13:00,16:13:00,1474981,1, +24986060_257458,16:19:00,16:19:00,1474975,2, +24986060_257458,16:22:00,16:22:00,1764609,3, +24986060_257458,16:25:00,16:25:00,1474976,4, +24986060_257458,16:37:00,16:37:00,1474977,5, +24986061_257459,16:28:00,16:28:00,1475020,0, +24986061_257459,16:40:00,16:40:00,1474981,1, +24986061_257459,16:46:00,16:46:00,1474975,2, +24986061_257459,16:49:00,16:49:00,1764609,3, +24986061_257459,16:52:00,16:52:00,1474976,4, +24986061_257459,17:04:00,17:04:00,1474977,5, +24986062_257460,16:28:00,16:28:00,1475020,0, +24986062_257460,16:40:00,16:40:00,1474981,1, +24986065_257463,18:29:00,18:29:00,1475020,0, +24986065_257463,18:41:00,18:41:00,1474981,1, +24986065_257463,18:47:00,18:47:00,1474975,2, +24986065_257463,18:50:00,18:50:00,1764609,3, +24986065_257463,18:53:00,18:53:00,1474976,4, +24986065_257463,19:05:00,19:05:00,1474977,5, +24986066_257464,18:39:00,18:39:00,1475020,0, +24986066_257464,18:51:00,18:51:00,1474981,1, +24986069_257467,20:14:00,20:14:00,1475020,0, +24986069_257467,20:26:00,20:26:00,1474981,1, +24986069_257467,20:32:00,20:32:00,1474975,2, +24986069_257467,20:35:00,20:35:00,1764609,3, +24986069_257467,20:38:00,20:38:00,1474976,4, +24986069_257467,20:50:00,20:50:00,1474977,5, +24986070_257468,20:09:00,20:09:00,1475020,0, +24986070_257468,20:21:00,20:21:00,1474981,1, +24986073_257471,05:13:00,05:13:00,1474977,0, +24986073_257471,05:22:00,05:22:00,1474976,1, +24986073_257471,05:25:00,05:25:00,1764609,2, +24986073_257471,05:28:00,05:28:00,1474975,3, +24986073_257471,05:34:00,05:34:00,1474981,4, +24986073_257471,05:49:00,05:49:00,1475020,5, +24986074_257472,05:35:00,05:35:00,1474981,0, +24986074_257472,05:50:00,05:50:00,1475020,1, +24986077_257475,06:06:00,06:06:00,1474977,0, +24986077_257475,06:15:00,06:15:00,1474976,1, +24986077_257475,06:18:00,06:18:00,1764609,2, +24986077_257475,06:21:00,06:21:00,1474975,3, +24986077_257475,06:27:00,06:27:00,1474981,4, +24986077_257475,06:42:00,06:43:00,1475020,5, +24986077_257475,06:53:00,06:53:00,1475022,6, +24986078_257476,06:25:00,06:25:00,1474981,0, +24986078_257476,06:40:00,06:41:00,1475020,1, +24986078_257476,06:51:00,06:51:00,1475022,2, +24986081_257479,06:37:00,06:37:00,1474977,0, +24986081_257479,06:46:00,06:46:00,1474976,1, +24986081_257479,06:49:00,06:49:00,1764609,2, +24986081_257479,06:52:00,06:52:00,1474975,3, +24986081_257479,06:58:00,06:58:00,1474981,4, +24986081_257479,07:13:00,07:13:00,1475020,5, +24986082_257480,07:04:00,07:04:00,1474981,0, +24986082_257480,07:19:00,07:19:00,1475020,1, +24986085_257483,08:40:00,08:40:00,1474977,0, +24986085_257483,08:49:00,08:49:00,1474976,1, +24986085_257483,08:52:00,08:52:00,1764609,2, +24986085_257483,08:55:00,08:55:00,1474975,3, +24986085_257483,09:01:00,09:01:00,1474981,4, +24986085_257483,09:16:00,09:16:00,1475020,5, +24986086_257484,09:03:00,09:03:00,1474981,0, +24986086_257484,09:18:00,09:18:00,1475020,1, +24986089_257487,11:08:00,11:08:00,1474977,0, +24986089_257487,11:17:00,11:17:00,1474976,1, +24986089_257487,11:20:00,11:20:00,1764609,2, +24986089_257487,11:23:00,11:23:00,1474975,3, +24986089_257487,11:29:00,11:29:00,1474981,4, +24986089_257487,11:44:00,11:45:00,1475020,5, +24986089_257487,11:55:00,11:55:00,1475022,6, +24986090_257488,11:23:00,11:23:00,1474981,0, +24986090_257488,11:38:00,11:39:00,1475020,1, +24986090_257488,11:49:00,11:49:00,1475022,2, +24986093_257491,12:57:00,12:57:00,1474977,0, +24986093_257491,13:06:00,13:06:00,1474976,1, +24986093_257491,13:09:00,13:09:00,1764609,2, +24986093_257491,13:12:00,13:12:00,1474975,3, +24986093_257491,13:18:00,13:18:00,1474981,4, +24986093_257491,13:33:00,13:33:00,1475020,5, +24986094_257492,13:18:00,13:18:00,1474981,0, +24986094_257492,13:33:00,13:33:00,1475020,1, +24986097_257495,15:42:00,15:42:00,1474977,0, +24986097_257495,15:51:00,15:51:00,1474976,1, +24986097_257495,15:54:00,15:54:00,1764609,2, +24986097_257495,15:57:00,15:57:00,1474975,3, +24986097_257495,16:03:00,16:03:00,1474981,4, +24986097_257495,16:18:00,16:18:00,1475020,5, +24986098_257496,16:03:00,16:03:00,1474981,0, +24986098_257496,16:18:00,16:18:00,1475020,1, +24986101_257499,17:19:00,17:19:00,1474977,0, +24986101_257499,17:28:00,17:28:00,1474976,1, +24986101_257499,17:31:00,17:31:00,1764609,2, +24986101_257499,17:34:00,17:34:00,1474975,3, +24986101_257499,17:40:00,17:40:00,1474981,4, +24986101_257499,17:55:00,17:55:00,1475020,5, +24986102_257500,17:23:00,17:23:00,1474981,0, +24986102_257500,17:38:00,17:38:00,1475020,1, +24986105_257503,19:34:00,19:34:00,1474977,0, +24986105_257503,19:43:00,19:43:00,1474976,1, +24986105_257503,19:46:00,19:46:00,1764609,2, +24986105_257503,19:49:00,19:49:00,1474975,3, +24986105_257503,19:55:00,19:55:00,1474981,4, +24986105_257503,20:10:00,20:10:00,1475020,5, +24986106_257504,19:40:00,19:40:00,1474981,0, +24986106_257504,19:55:00,19:55:00,1475020,1, +24986109_257507,21:39:00,21:39:00,1474977,0, +24986109_257507,21:48:00,21:48:00,1474976,1, +24986109_257507,21:51:00,21:51:00,1764609,2, +24986109_257507,21:54:00,21:54:00,1474975,3, +24986109_257507,22:00:00,22:00:00,1474981,4, +24986109_257507,22:15:00,22:15:00,1475020,5, +24986110_257508,21:56:00,21:56:00,1474981,0, +24986110_257508,22:11:00,22:11:00,1475020,1, +24986111_257509,05:28:00,05:28:00,1475023,0, +24986111_257509,05:32:00,05:32:00,1474912,1, +24986111_257509,05:39:00,05:39:00,1475024,2, +24986111_257509,05:45:00,05:45:00,1474910,3, +24986111_257509,05:51:00,05:51:00,1474909,4, +24986111_257509,05:57:00,05:57:00,1657886,5, +24986112_257510,05:28:00,05:28:00,1475023,0, +24986112_257510,05:32:00,05:32:00,1474912,1, +24986112_257510,05:39:00,05:39:00,1475024,2, +24986112_257510,05:45:00,05:45:00,1474910,3, +24986112_257510,05:51:00,05:51:00,1474909,4, +24986112_257510,05:57:00,05:57:00,1609726,5, +24986113_257511,23:27:00,23:27:00,1474687,0, +24986113_257511,23:29:00,23:29:00,1474686,1, +24986113_257511,23:35:00,23:35:00,1474685,2, +24986114_257512,23:20:00,23:20:00,1474687,0, +24986114_257512,23:22:00,23:22:00,1474686,1, +24986114_257512,23:28:00,23:28:00,1474685,2, +24986121_257519,04:00:00,04:00:00,1474836,0, +24986121_257519,04:05:00,04:05:00,1474909,1, +24986121_257519,04:27:00,04:28:00,1474715,2, +24986121_257519,04:41:00,04:42:00,1474718,3, +24986121_257519,04:52:00,04:52:00,1474691,4, +24986122_257520,04:00:00,04:00:00,1474843,0, +24986122_257520,04:05:00,04:05:00,1474909,1, +24986122_257520,04:26:00,04:27:00,1474715,2, +24986122_257520,04:41:00,04:41:00,1474718,3, +24986122_257520,04:52:00,04:52:00,1474691,4, +24986124_257522,04:20:00,04:20:00,1474836,0, +24986124_257522,04:25:00,04:25:00,1474909,1, +24986124_257522,04:47:00,04:47:00,1475023,2, +24986125_257523,04:50:00,04:50:00,1474843,0, +24986125_257523,04:55:00,04:55:00,1474909,1, +24986125_257523,05:17:00,05:17:00,1475023,2, +24986127_257525,04:36:00,04:36:00,1474836,0, +24986127_257525,04:41:00,04:41:00,1474909,1, +24986127_257525,04:47:00,04:48:00,1474910,2, +24986127_257525,04:53:00,04:54:00,1474911,3, +24986127_257525,05:01:00,05:01:00,1474912,4, +24986127_257525,05:06:00,05:06:00,1474715,5, +24986128_257526,04:32:00,04:32:00,1474843,0, +24986128_257526,04:37:00,04:37:00,1474909,1, +24986128_257526,04:43:00,04:44:00,1474910,2, +24986128_257526,04:49:00,04:50:00,1474911,3, +24986128_257526,04:57:00,04:57:00,1474912,4, +24986128_257526,05:02:00,05:02:00,1474715,5, +24986130_257528,18:37:00,18:37:00,1475023,0, +24986130_257528,18:58:00,18:58:00,1474909,1, +24986130_257528,19:04:00,19:04:00,1474915,2, +24986131_257529,18:35:00,18:35:00,1475023,0, +24986131_257529,18:56:00,18:56:00,1474909,1, +24986131_257529,19:02:00,19:02:00,1609726,2, +24986132_257530,08:34:00,08:34:00,1474925,0, +24986132_257530,08:36:00,08:36:00,1474926,1, +24986132_257530,08:52:00,08:58:00,1474928,2, +24986132_257530,09:07:00,09:08:00,1474930,3, +24986132_257530,09:20:00,09:29:00,1474932,4, +24986132_257530,09:38:00,09:39:00,1474934,5, +24986132_257530,09:48:00,09:48:00,1474937,6, +24986134_257532,11:45:00,11:45:00,1474925,0, +24986134_257532,11:47:00,11:47:00,1474926,1, +24986134_257532,11:57:00,11:57:00,1474927,2, +24986134_257532,12:03:00,12:04:00,1474928,3, +24986134_257532,12:08:00,12:09:00,1474929,4, +24986134_257532,12:14:00,12:15:00,1474930,5, +24986134_257532,12:20:00,12:21:00,1474931,6, +24986134_257532,12:28:00,12:36:00,1474932,7, +24986134_257532,12:40:00,12:40:00,1474933,8, +24986134_257532,12:46:00,12:47:00,1474934,9, +24986134_257532,12:51:00,12:51:00,1474935,10, +24986134_257532,12:53:00,12:54:00,1474936,11, +24986134_257532,12:58:00,12:58:00,1474937,12, +24986135_257533,11:45:00,11:45:00,1474925,0, +24986135_257533,11:47:00,11:47:00,1474926,1, +24986135_257533,11:57:00,11:57:00,1474927,2, +24986135_257533,12:03:00,12:04:00,1474928,3, +24986135_257533,12:08:00,12:09:00,1474929,4, +24986135_257533,12:14:00,12:15:00,1474930,5, +24986135_257533,12:20:00,12:21:00,1474931,6, +24986135_257533,12:28:00,12:37:00,1474932,7, +24986135_257533,12:40:00,12:41:00,1474933,8, +24986135_257533,12:47:00,12:47:00,1474934,9, +24986135_257533,12:51:00,12:51:00,1474935,10, +24986135_257533,12:54:00,12:54:00,1474936,11, +24986135_257533,12:59:00,12:59:00,1474937,12, +24986143_257541,12:03:00,12:03:00,1474937,0, +24986143_257541,12:06:00,12:07:00,1474936,1, +24986143_257541,12:09:00,12:09:00,1474935,2, +24986143_257541,12:13:00,12:13:00,1474934,3, +24986143_257541,12:19:00,12:20:00,1474933,4, +24986143_257541,12:24:00,12:33:00,1474932,5, +24986143_257541,12:36:00,12:37:00,1474938,6, +24986143_257541,12:41:00,12:41:00,1474939,7, +24986143_257541,12:52:00,12:52:00,1474940,8, +24986143_257541,12:59:00,12:59:00,1474941,9, +24986143_257541,13:04:00,13:05:00,1474942,10, +24986143_257541,13:08:00,13:09:00,1474943,11, +24986143_257541,13:15:00,13:15:00,1474944,12, +24986143_257541,13:22:00,13:23:00,1474616,13, +24986143_257541,13:27:00,13:27:00,1474617,14, +24986144_257542,12:03:00,12:03:00,1474937,0, +24986144_257542,12:06:00,12:07:00,1474936,1, +24986144_257542,12:09:00,12:09:00,1474935,2, +24986144_257542,12:13:00,12:13:00,1474934,3, +24986144_257542,12:19:00,12:20:00,1474933,4, +24986144_257542,12:24:00,12:33:00,1474932,5, +24986144_257542,12:37:00,12:37:00,1474938,6, +24986144_257542,12:41:00,12:41:00,1474939,7, +24986144_257542,12:52:00,12:52:00,1474940,8, +24986144_257542,12:59:00,12:59:00,1474941,9, +24986144_257542,13:04:00,13:04:00,1474942,10, +24986144_257542,13:08:00,13:09:00,1474943,11, +24986144_257542,13:15:00,13:15:00,1474944,12, +24986144_257542,13:22:00,13:23:00,1474616,13, +24986144_257542,13:27:00,13:27:00,1474617,14, +24986145_257543,14:33:00,14:33:00,1474925,0, +24986145_257543,14:35:00,14:35:00,1474926,1, +24986145_257543,14:44:00,14:45:00,1474927,2, +24986145_257543,14:52:00,14:58:00,1474928,3, +24986145_257543,15:02:00,15:03:00,1474929,4, +24986145_257543,15:08:00,15:09:00,1474930,5, +24986145_257543,15:14:00,15:14:00,1474931,6, +24986145_257543,15:22:00,15:26:00,1474932,7, +24986145_257543,15:29:00,15:30:00,1474933,8, +24986145_257543,15:36:00,15:36:00,1474934,9, +24986145_257543,15:40:00,15:40:00,1474935,10, +24986145_257543,15:43:00,15:43:00,1474936,11, +24986145_257543,15:48:00,15:48:00,1474937,12, +24986147_257545,16:34:00,16:34:00,1474925,0, +24986147_257545,16:36:00,16:36:00,1474926,1, +24986147_257545,16:52:00,16:58:00,1474928,2, +24986147_257545,17:07:00,17:07:00,1474930,3, +24986147_257545,17:19:00,17:23:00,1474932,4, +24986147_257545,17:32:00,17:33:00,1474934,5, +24986147_257545,17:43:00,17:43:00,1474937,6, +24986148_257546,17:45:00,17:45:00,1474925,0, +24986148_257546,17:47:00,17:47:00,1474926,1, +24986148_257546,17:57:00,17:57:00,1474927,2, +24986148_257546,18:03:00,18:04:00,1474928,3, +24986148_257546,18:09:00,18:09:00,1474929,4, +24986148_257546,18:14:00,18:15:00,1474930,5, +24986148_257546,18:20:00,18:21:00,1474931,6, +24986148_257546,18:28:00,18:37:00,1474932,7, +24986148_257546,18:40:00,18:41:00,1474933,8, +24986148_257546,18:47:00,18:47:00,1474934,9, +24986148_257546,18:51:00,18:51:00,1474935,10, +24986148_257546,18:54:00,18:54:00,1474936,11, +24986148_257546,18:59:00,18:59:00,1474937,12, +24986150_257548,07:13:00,07:13:00,1474937,0, +24986150_257548,07:16:00,07:17:00,1474936,1, +24986150_257548,07:19:00,07:19:00,1474935,2, +24986150_257548,07:23:00,07:23:00,1474934,3, +24986150_257548,07:29:00,07:30:00,1474933,4, +24986150_257548,07:34:00,07:38:00,1474932,5, +24986150_257548,07:44:00,07:45:00,1474931,6, +24986150_257548,07:50:00,07:51:00,1474930,7, +24986150_257548,07:56:00,07:56:00,1474929,8, +24986150_257548,08:01:00,08:06:00,1474928,9, +24986150_257548,08:12:00,08:13:00,1474927,10, +24986150_257548,08:22:00,08:22:00,1474926,11, +24986150_257548,08:25:00,08:25:00,1474925,12, +24986151_257549,10:06:00,10:06:00,1474937,0, +24986151_257549,10:09:00,10:10:00,1474936,1, +24986151_257549,10:12:00,10:12:00,1474935,2, +24986151_257549,10:16:00,10:16:00,1474934,3, +24986151_257549,10:22:00,10:23:00,1474933,4, +24986151_257549,10:27:00,10:38:00,1474932,5, +24986151_257549,10:44:00,10:45:00,1474931,6, +24986151_257549,10:50:00,10:51:00,1474930,7, +24986151_257549,10:56:00,10:56:00,1474929,8, +24986151_257549,11:00:00,11:01:00,1474928,9, +24986151_257549,11:07:00,11:08:00,1474927,10, +24986151_257549,11:17:00,11:17:00,1474926,11, +24986151_257549,11:21:00,11:21:00,1474925,12, +24986153_257551,13:04:00,13:04:00,1474937,0, +24986153_257551,13:12:00,13:12:00,1474934,1, +24986153_257551,13:22:00,13:26:00,1474932,2, +24986153_257551,13:38:00,13:38:00,1474930,3, +24986153_257551,13:47:00,13:47:00,1474928,4, +24986153_257551,14:08:00,14:08:00,1474926,5, +24986153_257551,14:12:00,14:12:00,1474925,6, +24986154_257552,13:05:00,13:05:00,1474937,0, +24986154_257552,13:13:00,13:13:00,1474934,1, +24986154_257552,13:23:00,13:27:00,1474932,2, +24986154_257552,13:39:00,13:39:00,1474930,3, +24986154_257552,13:49:00,13:49:00,1474928,4, +24986154_257552,14:05:00,14:05:00,1474926,5, +24986154_257552,14:08:00,14:08:00,1474925,6, +24986156_257554,15:15:00,15:15:00,1474937,0, +24986156_257554,15:23:00,15:23:00,1474934,1, +24986156_257554,15:33:00,15:37:00,1474932,2, +24986156_257554,15:49:00,15:49:00,1474930,3, +24986156_257554,15:59:00,15:59:00,1474928,4, +24986156_257554,16:15:00,16:15:00,1474926,5, +24986156_257554,16:18:00,16:18:00,1474925,6, +24986157_257555,15:17:00,15:17:00,1474937,0, +24986157_257555,15:25:00,15:25:00,1474934,1, +24986157_257555,15:35:00,15:39:00,1474932,2, +24986157_257555,15:50:00,15:51:00,1474930,3, +24986157_257555,16:01:00,16:06:00,1474928,4, +24986157_257555,16:21:00,16:21:00,1474926,5, +24986157_257555,16:24:00,16:24:00,1474925,6, +24986158_257556,20:38:00,20:38:00,1474978,0, +24986158_257556,20:44:00,20:45:00,1474931,1, +24986158_257556,20:50:00,20:51:00,1474930,2, +24986158_257556,20:56:00,20:56:00,1474929,3, +24986158_257556,21:01:00,21:01:00,1474928,4, +24986158_257556,21:08:00,21:08:00,1474927,5, +24986158_257556,21:17:00,21:18:00,1474926,6, +24986158_257556,21:21:00,21:21:00,1474755,7, +24986159_257557,12:11:00,12:11:00,1474687,0, +24986159_257557,12:13:00,12:13:00,1474686,1, +24986159_257557,12:20:00,12:20:00,1474685,2, +24986160_257558,14:44:00,14:44:00,1474687,0, +24986160_257558,14:46:00,14:46:00,1474686,1, +24986160_257558,14:52:00,14:52:00,1474685,2, +24986162_257560,05:36:00,05:36:00,1474691,0, +24986162_257560,05:44:00,05:45:00,1474697,1, +24986162_257560,05:48:00,05:49:00,1474688,2, +24986162_257560,05:55:00,05:56:00,1474797,3, +24986162_257560,05:58:00,05:59:00,1474798,4, +24986162_257560,06:01:00,06:01:00,1474799,5, +24986162_257560,06:06:00,06:07:00,1474800,6, +24986162_257560,06:10:00,06:11:00,1474801,7, +24986162_257560,06:16:00,06:17:00,1474802,8, +24986162_257560,06:21:00,06:21:00,1474817,9, +24986162_257560,06:26:00,06:26:00,1474763,10, +24986163_257561,07:55:00,07:55:00,1474714,0, +24986163_257561,08:03:00,08:04:00,1474697,1, +24986163_257561,08:07:00,08:08:00,1474688,2, +24986163_257561,08:14:00,08:15:00,1474797,3, +24986163_257561,08:17:00,08:18:00,1474798,4, +24986163_257561,08:20:00,08:20:00,1474799,5, +24986163_257561,08:25:00,08:26:00,1474800,6, +24986163_257561,08:29:00,08:30:00,1474801,7, +24986163_257561,08:36:00,08:36:00,1474802,8, +24986163_257561,08:40:00,08:40:00,1474817,9, +24986163_257561,08:45:00,08:45:00,1474763,10, +24986167_257565,07:55:00,07:55:00,1474691,0, +24986167_257565,08:03:00,08:04:00,1474697,1, +24986167_257565,08:07:00,08:08:00,1474688,2, +24986167_257565,08:14:00,08:15:00,1474797,3, +24986167_257565,08:17:00,08:18:00,1474798,4, +24986167_257565,08:20:00,08:20:00,1474799,5, +24986167_257565,08:25:00,08:26:00,1474800,6, +24986167_257565,08:29:00,08:30:00,1474801,7, +24986167_257565,08:36:00,08:36:00,1474802,8, +24986167_257565,08:40:00,08:40:00,1474817,9, +24986167_257565,08:45:00,08:45:00,1474763,10, +24986168_257566,17:02:00,17:02:00,1474714,0, +24986168_257566,17:10:00,17:11:00,1474697,1, +24986168_257566,17:14:00,17:15:00,1474688,2, +24986168_257566,17:21:00,17:22:00,1474797,3, +24986168_257566,17:24:00,17:25:00,1474798,4, +24986168_257566,17:27:00,17:27:00,1474799,5, +24986168_257566,17:32:00,17:33:00,1474800,6, +24986168_257566,17:36:00,17:37:00,1474801,7, +24986168_257566,17:43:00,17:43:00,1474802,8, +24986168_257566,17:47:00,17:48:00,1474817,9, +24986168_257566,17:53:00,17:53:00,1474763,10, +24986173_257571,19:19:00,19:19:00,1474714,0, +24986173_257571,19:27:00,19:28:00,1474697,1, +24986173_257571,19:31:00,19:32:00,1474688,2, +24986173_257571,19:38:00,19:39:00,1474797,3, +24986173_257571,19:41:00,19:42:00,1474798,4, +24986173_257571,19:44:00,19:44:00,1474799,5, +24986173_257571,19:49:00,19:50:00,1474800,6, +24986173_257571,19:53:00,19:54:00,1474801,7, +24986173_257571,20:00:00,20:00:00,1474802,8, +24986173_257571,20:04:00,20:04:00,1474817,9, +24986173_257571,20:09:00,20:09:00,1474763,10, +24986174_257572,19:20:00,19:20:00,1474691,0, +24986174_257572,19:28:00,19:29:00,1474697,1, +24986174_257572,19:32:00,19:33:00,1474688,2, +24986174_257572,19:39:00,19:40:00,1474797,3, +24986174_257572,19:42:00,19:43:00,1474798,4, +24986174_257572,19:45:00,19:45:00,1474799,5, +24986174_257572,19:50:00,19:51:00,1474800,6, +24986174_257572,19:54:00,19:55:00,1474801,7, +24986174_257572,20:01:00,20:01:00,1474802,8, +24986174_257572,20:05:00,20:05:00,1474817,9, +24986174_257572,20:10:00,20:10:00,1474763,10, +24986175_257573,14:06:00,14:06:00,1474937,0, +24986175_257573,14:09:00,14:10:00,1474936,1, +24986175_257573,14:12:00,14:12:00,1474935,2, +24986175_257573,14:16:00,14:16:00,1474934,3, +24986175_257573,14:22:00,14:23:00,1474933,4, +24986175_257573,14:27:00,14:27:00,1474932,5, +24986176_257574,16:06:00,16:06:00,1474937,0, +24986176_257574,16:09:00,16:10:00,1474936,1, +24986176_257574,16:12:00,16:12:00,1474935,2, +24986176_257574,16:16:00,16:16:00,1474934,3, +24986176_257574,16:22:00,16:23:00,1474933,4, +24986176_257574,16:27:00,16:27:00,1474932,5, +24986181_257579,06:48:00,06:48:00,1474815,0, +24986181_257579,06:52:00,06:52:00,1474817,1, +24986181_257579,06:56:00,06:56:00,1474802,2, +24986181_257579,07:02:00,07:02:00,1474801,3, +24986181_257579,07:06:00,07:06:00,1474800,4, +24986181_257579,07:11:00,07:11:00,1474799,5, +24986181_257579,07:14:00,07:14:00,1474798,6, +24986181_257579,07:17:00,07:17:00,1474797,7, +24986181_257579,07:23:00,07:24:00,1474688,8, +24986181_257579,07:26:00,07:27:00,1474689,9, +24986181_257579,07:36:00,07:36:00,1474714,10, +24986182_257580,06:48:00,06:48:00,1474815,0, +24986182_257580,06:52:00,06:52:00,1474817,1, +24986182_257580,06:56:00,06:56:00,1474802,2, +24986182_257580,07:02:00,07:02:00,1474801,3, +24986182_257580,07:06:00,07:06:00,1474800,4, +24986182_257580,07:11:00,07:11:00,1474799,5, +24986182_257580,07:13:00,07:14:00,1474798,6, +24986182_257580,07:16:00,07:16:00,1474797,7, +24986182_257580,07:23:00,07:24:00,1474688,8, +24986182_257580,07:26:00,07:26:00,1474689,9, +24986182_257580,07:36:00,07:36:00,1474691,10, +24986184_257582,08:59:00,08:59:00,1474815,0, +24986184_257582,09:03:00,09:03:00,1474817,1, +24986184_257582,09:07:00,09:07:00,1474802,2, +24986184_257582,09:13:00,09:13:00,1474801,3, +24986184_257582,09:17:00,09:17:00,1474800,4, +24986184_257582,09:21:00,09:22:00,1474799,5, +24986184_257582,09:24:00,09:24:00,1474798,6, +24986184_257582,09:27:00,09:27:00,1474797,7, +24986184_257582,09:33:00,09:38:00,1474688,8, +24986184_257582,09:40:00,09:41:00,1474689,9, +24986184_257582,09:50:00,09:51:00,1474714,10, +24986184_257582,09:56:00,09:57:00,1474719,11, +24986184_257582,10:01:00,10:02:00,1474718,12, +24986184_257582,10:06:00,10:06:00,1474717,13, +24986184_257582,10:09:00,10:09:00,1845555,14, +24986184_257582,10:17:00,10:18:00,1475023,15, +24986184_257582,10:22:00,10:22:00,1474912,16, +24986184_257582,10:29:00,10:29:00,1475024,17, +24986184_257582,10:35:00,10:35:00,1474910,18, +24986184_257582,10:41:00,10:41:00,1474909,19, +24986184_257582,10:47:00,10:47:00,1474915,20, +24986185_257583,09:02:00,09:02:00,1474815,0, +24986185_257583,09:06:00,09:06:00,1474817,1, +24986185_257583,09:10:00,09:10:00,1474802,2, +24986185_257583,09:16:00,09:16:00,1474801,3, +24986185_257583,09:20:00,09:20:00,1474800,4, +24986185_257583,09:24:00,09:25:00,1474799,5, +24986185_257583,09:27:00,09:27:00,1474798,6, +24986185_257583,09:30:00,09:30:00,1474797,7, +24986185_257583,09:36:00,09:37:00,1474688,8, +24986185_257583,09:39:00,09:40:00,1474689,9, +24986185_257583,09:49:00,09:51:00,1474714,10, +24986185_257583,09:56:00,09:57:00,1474719,11, +24986185_257583,10:01:00,10:02:00,1474718,12, +24986185_257583,10:06:00,10:06:00,1474717,13, +24986185_257583,10:09:00,10:09:00,1845555,14, +24986185_257583,10:17:00,10:18:00,1475023,15, +24986185_257583,10:22:00,10:22:00,1474912,16, +24986185_257583,10:29:00,10:29:00,1475024,17, +24986185_257583,10:35:00,10:35:00,1474910,18, +24986185_257583,10:41:00,10:41:00,1474909,19, +24986185_257583,10:47:00,10:47:00,1657886,20, +24986187_257585,16:03:00,16:03:00,1474815,0, +24986187_257585,16:07:00,16:07:00,1474817,1, +24986187_257585,16:11:00,16:11:00,1474802,2, +24986187_257585,16:17:00,16:17:00,1474801,3, +24986187_257585,16:21:00,16:21:00,1474800,4, +24986187_257585,16:25:00,16:26:00,1474799,5, +24986187_257585,16:28:00,16:28:00,1474798,6, +24986187_257585,16:31:00,16:31:00,1474797,7, +24986187_257585,16:38:00,16:38:00,1474688,8, +24986187_257585,16:40:00,16:41:00,1474689,9, +24986187_257585,16:50:00,16:50:00,1474714,10, +24986188_257586,16:03:00,16:03:00,1474815,0, +24986188_257586,16:07:00,16:07:00,1474817,1, +24986188_257586,16:11:00,16:11:00,1474802,2, +24986188_257586,16:17:00,16:17:00,1474801,3, +24986188_257586,16:21:00,16:21:00,1474800,4, +24986188_257586,16:26:00,16:26:00,1474799,5, +24986188_257586,16:28:00,16:29:00,1474798,6, +24986188_257586,16:31:00,16:31:00,1474797,7, +24986188_257586,16:38:00,16:39:00,1474688,8, +24986188_257586,16:41:00,16:41:00,1474689,9, +24986188_257586,16:51:00,16:51:00,1474714,10, +24986193_257591,18:22:00,18:22:00,1474815,0, +24986193_257591,18:27:00,18:27:00,1474817,1, +24986193_257591,18:31:00,18:31:00,1474802,2, +24986193_257591,18:37:00,18:37:00,1474801,3, +24986193_257591,18:41:00,18:41:00,1474800,4, +24986193_257591,18:46:00,18:46:00,1474799,5, +24986193_257591,18:48:00,18:49:00,1474798,6, +24986193_257591,18:51:00,18:51:00,1474797,7, +24986193_257591,18:58:00,18:59:00,1474688,8, +24986193_257591,19:01:00,19:01:00,1474689,9, +24986193_257591,19:10:00,19:10:00,1474714,10, +24986194_257592,18:23:00,18:23:00,1474815,0, +24986194_257592,18:27:00,18:27:00,1474817,1, +24986194_257592,18:31:00,18:31:00,1474802,2, +24986194_257592,18:37:00,18:37:00,1474801,3, +24986194_257592,18:41:00,18:41:00,1474800,4, +24986194_257592,18:46:00,18:46:00,1474799,5, +24986194_257592,18:48:00,18:49:00,1474798,6, +24986194_257592,18:51:00,18:51:00,1474797,7, +24986194_257592,18:58:00,18:59:00,1474688,8, +24986194_257592,19:01:00,19:01:00,1474689,9, +24986194_257592,19:11:00,19:11:00,1474691,10, +24986196_257594,19:15:00,19:15:00,1474815,0, +24986196_257594,19:19:00,19:19:00,1474817,1, +24986196_257594,19:23:00,19:23:00,1474802,2, +24986196_257594,19:29:00,19:29:00,1474801,3, +24986196_257594,19:33:00,19:33:00,1474800,4, +24986196_257594,19:38:00,19:38:00,1474799,5, +24986196_257594,19:41:00,19:41:00,1474798,6, +24986196_257594,19:44:00,19:44:00,1474797,7, +24986196_257594,19:50:00,19:51:00,1474688,8, +24986196_257594,19:53:00,19:54:00,1474689,9, +24986196_257594,20:03:00,20:03:00,1474691,10, +24986197_257595,19:14:00,19:14:00,1474815,0, +24986197_257595,19:18:00,19:18:00,1474817,1, +24986197_257595,19:22:00,19:22:00,1474802,2, +24986197_257595,19:28:00,19:28:00,1474801,3, +24986197_257595,19:32:00,19:32:00,1474800,4, +24986197_257595,19:37:00,19:37:00,1474799,5, +24986197_257595,19:39:00,19:40:00,1474798,6, +24986197_257595,19:42:00,19:42:00,1474797,7, +24986197_257595,19:49:00,19:50:00,1474688,8, +24986197_257595,19:52:00,19:52:00,1474689,9, +24986197_257595,20:02:00,20:02:00,1474714,10, +24986199_257597,20:20:00,20:20:00,1474815,0, +24986199_257597,20:24:00,20:24:00,1474817,1, +24986199_257597,20:28:00,20:28:00,1474802,2, +24986199_257597,20:34:00,20:34:00,1474801,3, +24986199_257597,20:38:00,20:38:00,1474800,4, +24986199_257597,20:42:00,20:43:00,1474799,5, +24986199_257597,20:45:00,20:45:00,1474798,6, +24986199_257597,20:48:00,20:48:00,1474797,7, +24986199_257597,20:54:00,20:55:00,1474688,8, +24986199_257597,20:58:00,20:58:00,1474689,9, +24986199_257597,21:08:00,21:08:00,1474691,10, +24986200_257598,20:20:00,20:20:00,1474815,0, +24986200_257598,20:24:00,20:24:00,1474817,1, +24986200_257598,20:28:00,20:28:00,1474802,2, +24986200_257598,20:34:00,20:34:00,1474801,3, +24986200_257598,20:38:00,20:38:00,1474800,4, +24986200_257598,20:42:00,20:43:00,1474799,5, +24986200_257598,20:45:00,20:45:00,1474798,6, +24986200_257598,20:48:00,20:48:00,1474797,7, +24986200_257598,20:54:00,20:55:00,1474688,8, +24986200_257598,20:58:00,20:58:00,1474689,9, +24986200_257598,21:08:00,21:08:00,1474714,10, +24986201_257599,06:37:00,06:37:00,1474932,0, +24986201_257599,06:40:00,06:41:00,1474933,1, +24986201_257599,06:47:00,06:47:00,1474934,2, +24986201_257599,06:51:00,06:51:00,1474935,3, +24986201_257599,06:54:00,06:54:00,1474936,4, +24986201_257599,06:59:00,06:59:00,1474937,5, +24986202_257600,20:37:00,20:37:00,1474932,0, +24986202_257600,20:40:00,20:41:00,1474933,1, +24986202_257600,20:47:00,20:47:00,1474934,2, +24986202_257600,20:51:00,20:51:00,1474935,3, +24986202_257600,20:54:00,20:54:00,1474936,4, +24986202_257600,20:59:00,20:59:00,1474937,5, +24986203_257601,14:37:00,14:37:00,1474932,0, +24986203_257601,14:40:00,14:41:00,1474933,1, +24986203_257601,14:47:00,14:47:00,1474934,2, +24986203_257601,14:51:00,14:51:00,1474935,3, +24986203_257601,14:54:00,14:54:00,1474936,4, +24986203_257601,14:59:00,14:59:00,1474937,5, +24986204_257602,16:37:00,16:37:00,1474932,0, +24986204_257602,16:40:00,16:41:00,1474933,1, +24986204_257602,16:47:00,16:47:00,1474934,2, +24986204_257602,16:51:00,16:51:00,1474935,3, +24986204_257602,16:54:00,16:54:00,1474936,4, +24986204_257602,16:59:00,16:59:00,1474937,5, +24986208_257606,05:25:00,05:25:00,1536277,0, +24986208_257606,05:30:00,05:31:00,1474963,1, +24986208_257606,05:33:00,05:33:00,1474964,2, +24986208_257606,05:48:00,05:49:00,1474965,3, +24986208_257606,06:08:00,06:10:00,1657886,4, +24986208_257606,06:14:00,06:15:00,1474837,5, +24986208_257606,06:18:00,06:19:00,1475026,6, +24986208_257606,06:31:00,06:38:00,1475039,7, +24986208_257606,06:44:00,06:45:00,1475027,8, +24986208_257606,06:49:00,06:50:00,1475028,9, +24986208_257606,06:54:00,06:55:00,1536285,10, +24986208_257606,07:01:00,07:02:00,1475029,11, +24986208_257606,07:13:00,07:14:00,1475030,12, +24986208_257606,07:23:00,07:24:00,1475031,13, +24986208_257606,07:34:00,07:35:00,1475032,14, +24986208_257606,07:39:00,07:40:00,1475033,15, +24986208_257606,07:43:00,07:44:00,1475034,16, +24986208_257606,07:49:00,07:50:00,1475035,17, +24986208_257606,07:54:00,07:55:00,1475036,18, +24986208_257606,08:05:00,08:06:00,1475037,19, +24986208_257606,08:10:00,08:10:00,1475038,20, +24986209_257607,05:25:00,05:25:00,1474640,0, +24986209_257607,05:30:00,05:30:00,1474963,1, +24986209_257607,05:33:00,05:33:00,1474964,2, +24986209_257607,05:49:00,05:50:00,1474965,3, +24986209_257607,06:08:00,06:10:00,1657886,4, +24986209_257607,06:14:00,06:15:00,1474837,5, +24986209_257607,06:18:00,06:19:00,1475026,6, +24986209_257607,06:31:00,06:38:00,1475039,7, +24986209_257607,06:44:00,06:44:00,1475027,8, +24986209_257607,06:49:00,06:50:00,1475028,9, +24986209_257607,06:55:00,06:55:00,1536285,10, +24986209_257607,07:01:00,07:02:00,1475029,11, +24986209_257607,07:13:00,07:13:00,1475030,12, +24986209_257607,07:22:00,07:23:00,1475031,13, +24986209_257607,07:33:00,07:34:00,1475032,14, +24986209_257607,07:39:00,07:39:00,1475033,15, +24986209_257607,07:43:00,07:43:00,1475034,16, +24986209_257607,07:49:00,07:49:00,1475035,17, +24986209_257607,07:54:00,07:55:00,1475036,18, +24986209_257607,08:05:00,08:06:00,1475037,19, +24986209_257607,08:10:00,08:10:00,1475038,20, +24986210_257608,05:25:00,05:25:00,1474640,0, +24986210_257608,05:30:00,05:30:00,1474963,1, +24986210_257608,05:33:00,05:33:00,1474964,2, +24986210_257608,05:49:00,05:50:00,1474965,3, +24986210_257608,06:08:00,06:10:00,1474843,4, +24986210_257608,06:14:00,06:15:00,1475049,5, +24986210_257608,06:18:00,06:19:00,1475050,6, +24986210_257608,06:31:00,06:38:00,1475051,7, +24986210_257608,06:44:00,06:44:00,1475052,8, +24986210_257608,06:49:00,06:50:00,1475053,9, +24986210_257608,07:01:00,07:02:00,1475029,10, +24986210_257608,07:13:00,07:13:00,1475030,11, +24986210_257608,07:22:00,07:23:00,1475031,12, +24986210_257608,07:33:00,07:34:00,1475032,13, +24986210_257608,07:39:00,07:39:00,1475033,14, +24986210_257608,07:43:00,07:43:00,1475034,15, +24986210_257608,07:49:00,07:49:00,1475035,16, +24986210_257608,07:54:00,07:55:00,1475036,17, +24986210_257608,08:05:00,08:06:00,1475037,18, +24986210_257608,08:10:00,08:10:00,1475038,19, +24986212_257610,15:34:00,15:34:00,1474640,0, +24986212_257610,15:39:00,15:39:00,1474963,1, +24986212_257610,15:42:00,15:42:00,1474964,2, +24986212_257610,15:58:00,15:59:00,1474965,3, +24986212_257610,16:18:00,16:20:00,1657886,4, +24986212_257610,16:24:00,16:25:00,1474837,5, +24986212_257610,16:29:00,16:29:00,1475026,6, +24986212_257610,16:41:00,16:42:00,1475039,7, +24986212_257610,16:48:00,16:48:00,1475027,8, +24986212_257610,16:52:00,16:53:00,1475028,9, +24986212_257610,17:03:00,17:04:00,1475029,10, +24986212_257610,17:15:00,17:15:00,1475030,11, +24986212_257610,17:25:00,17:26:00,1475031,12, +24986212_257610,17:36:00,17:39:00,1475032,13, +24986212_257610,17:43:00,17:44:00,1475033,14, +24986212_257610,17:47:00,17:48:00,1475034,15, +24986212_257610,17:53:00,17:54:00,1475035,16, +24986212_257610,17:58:00,17:59:00,1475036,17, +24986212_257610,18:09:00,18:10:00,1475037,18, +24986212_257610,18:14:00,18:14:00,1475038,19, +24986213_257611,15:35:00,15:35:00,1474640,0, +24986213_257611,15:40:00,15:40:00,1474963,1, +24986213_257611,15:43:00,15:43:00,1474964,2, +24986213_257611,15:59:00,16:00:00,1474965,3, +24986213_257611,16:19:00,16:20:00,1657886,4, +24986213_257611,16:24:00,16:25:00,1474837,5, +24986213_257611,16:29:00,16:29:00,1475026,6, +24986213_257611,16:41:00,16:42:00,1475039,7, +24986213_257611,16:48:00,16:48:00,1475027,8, +24986213_257611,16:52:00,16:53:00,1475028,9, +24986213_257611,17:03:00,17:04:00,1475029,10, +24986213_257611,17:15:00,17:15:00,1475030,11, +24986213_257611,17:24:00,17:25:00,1475031,12, +24986213_257611,17:35:00,17:38:00,1475032,13, +24986213_257611,17:43:00,17:43:00,1475033,14, +24986213_257611,17:47:00,17:47:00,1475034,15, +24986213_257611,17:53:00,17:53:00,1475035,16, +24986213_257611,17:58:00,17:59:00,1475036,17, +24986213_257611,18:09:00,18:10:00,1475037,18, +24986213_257611,18:14:00,18:14:00,1475038,19, +24986215_257613,09:10:00,09:10:00,1536279,0, +24986215_257613,09:15:00,09:15:00,1474963,1, +24986215_257613,09:17:00,09:18:00,1474964,2, +24986215_257613,09:31:00,09:31:00,1474965,3, +24986215_257613,09:47:00,09:49:00,1609726,4, +24986215_257613,09:53:00,09:54:00,1474962,5, +24986215_257613,09:58:00,09:58:00,1474961,6, +24986215_257613,10:01:00,10:01:00,1474960,7, +24986215_257613,10:04:00,10:04:00,1474959,8, +24986215_257613,10:08:00,10:09:00,1474958,9, +24986215_257613,10:11:00,10:12:00,1474957,10, +24986215_257613,10:16:00,10:16:00,1474966,11, +24986215_257613,10:19:00,10:19:00,1474955,12, +24986215_257613,10:23:00,10:23:00,1474954,13, +24986215_257613,10:26:00,10:27:00,1474967,14, +24986215_257613,10:33:00,10:34:00,1474968,15, +24986215_257613,10:42:00,10:43:00,1475056,16, +24986215_257613,10:56:00,10:57:00,1475057,17, +24986215_257613,11:04:00,11:05:00,1475081,18, +24986215_257613,11:20:00,11:20:00,1536287,19, +24986216_257614,08:54:00,08:54:00,1474640,0, +24986216_257614,08:59:00,08:59:00,1474963,1, +24986216_257614,09:01:00,09:02:00,1474964,2, +24986216_257614,09:15:00,09:15:00,1474965,3, +24986216_257614,09:31:00,09:33:00,1657886,4, +24986216_257614,09:37:00,09:38:00,1474962,5, +24986216_257614,09:42:00,09:42:00,1474961,6, +24986216_257614,09:45:00,09:45:00,1474960,7, +24986216_257614,09:48:00,09:48:00,1474959,8, +24986216_257614,09:52:00,09:53:00,1474958,9, +24986216_257614,09:55:00,09:56:00,1474957,10, +24986216_257614,10:00:00,10:00:00,1474966,11, +24986216_257614,10:03:00,10:03:00,1474955,12, +24986216_257614,10:07:00,10:07:00,1474954,13, +24986216_257614,10:10:00,10:11:00,1474967,14, +24986216_257614,10:17:00,10:18:00,1474968,15, +24986216_257614,10:27:00,10:28:00,1475056,16, +24986216_257614,10:41:00,10:41:00,1475057,17, +24986216_257614,10:48:00,10:49:00,1475081,18, +24986216_257614,11:04:00,11:04:00,1536287,19, +24986218_257616,17:15:00,17:15:00,1474738,0, +24986218_257616,17:20:00,17:21:00,1474963,1, +24986218_257616,17:23:00,17:24:00,1474964,2, +24986218_257616,17:37:00,17:37:00,1474965,3, +24986218_257616,17:52:00,17:54:00,1609726,4, +24986218_257616,18:08:00,18:09:00,1474958,5, +24986218_257616,18:10:00,18:11:00,1474957,6, +24986218_257616,18:26:00,18:27:00,1474954,7, +24986218_257616,18:36:00,18:36:00,1474968,8, +24986218_257616,18:44:00,18:45:00,1475056,9, +24986218_257616,18:58:00,18:59:00,1475057,10, +24986218_257616,19:06:00,19:07:00,1475081,11, +24986218_257616,19:22:00,19:22:00,1845557,12, +24986219_257617,17:15:00,17:15:00,1474640,0, +24986219_257617,17:21:00,17:21:00,1474963,1, +24986219_257617,17:24:00,17:24:00,1474964,2, +24986219_257617,17:36:00,17:37:00,1474965,3, +24986219_257617,17:51:00,17:52:00,1657886,4, +24986219_257617,18:06:00,18:07:00,1474958,5, +24986219_257617,18:08:00,18:09:00,1474957,6, +24986219_257617,18:23:00,18:24:00,1474954,7, +24986219_257617,18:33:00,18:34:00,1474968,8, +24986219_257617,18:42:00,18:43:00,1475056,9, +24986219_257617,18:57:00,18:57:00,1475057,10, +24986219_257617,19:05:00,19:06:00,1475081,11, +24986219_257617,19:20:00,19:20:00,1845557,12, +24986224_257622,13:39:00,13:39:00,1474640,0, +24986224_257622,13:44:00,13:45:00,1474963,1, +24986224_257622,13:47:00,13:47:00,1474964,2, +24986224_257622,14:03:00,14:04:00,1474965,3, +24986224_257622,14:23:00,14:25:00,1657886,4, +24986224_257622,14:29:00,14:30:00,1474837,5, +24986224_257622,14:34:00,14:34:00,1475026,6, +24986224_257622,14:46:00,14:47:00,1475039,7, +24986224_257622,14:53:00,14:53:00,1475027,8, +24986224_257622,14:57:00,14:58:00,1475028,9, +24986224_257622,15:09:00,15:16:00,1475239,10, +24986224_257622,15:27:00,15:28:00,1475030,11, +24986224_257622,15:37:00,15:39:00,1475031,12, +24986224_257622,15:49:00,15:59:00,1475032,13, +24986224_257622,16:04:00,16:04:00,1475033,14, +24986224_257622,16:08:00,16:08:00,1475034,15, +24986224_257622,16:14:00,16:14:00,1475035,16, +24986224_257622,16:20:00,16:20:00,1475036,17, +24986225_257623,13:39:00,13:39:00,1474738,0, +24986225_257623,13:44:00,13:45:00,1474963,1, +24986225_257623,13:47:00,13:47:00,1474964,2, +24986225_257623,14:03:00,14:04:00,1474965,3, +24986225_257623,14:23:00,14:29:00,1657886,4, +24986225_257623,14:33:00,14:34:00,1474837,5, +24986225_257623,14:38:00,14:38:00,1475026,6, +24986225_257623,14:50:00,14:51:00,1475039,7, +24986225_257623,14:57:00,14:57:00,1475027,8, +24986225_257623,15:01:00,15:02:00,1475028,9, +24986225_257623,15:13:00,15:13:00,1475029,10, +24986225_257623,15:24:00,15:25:00,1475030,11, +24986225_257623,15:34:00,15:37:00,1475031,12, +24986225_257623,15:48:00,16:00:00,1475032,13, +24986225_257623,16:04:00,16:05:00,1475033,14, +24986225_257623,16:08:00,16:09:00,1475034,15, +24986225_257623,16:14:00,16:15:00,1475035,16, +24986225_257623,16:20:00,16:20:00,1475036,17, +24986229_257627,20:11:00,20:11:00,1474651,0, +24986229_257627,20:16:00,20:17:00,1474963,1, +24986229_257627,20:19:00,20:19:00,1474964,2, +24986229_257627,20:35:00,20:36:00,1474965,3, +24986229_257627,20:55:00,20:57:00,1657886,4, +24986229_257627,21:01:00,21:02:00,1474837,5, +24986229_257627,21:06:00,21:06:00,1475026,6, +24986229_257627,21:18:00,21:18:00,1475039,7, +24986229_257627,21:25:00,21:25:00,1475027,8, +24986229_257627,21:29:00,21:30:00,1475028,9, +24986229_257627,21:41:00,21:41:00,1475029,10, +24986229_257627,21:52:00,21:53:00,1475030,11, +24986229_257627,22:02:00,22:03:00,1475031,12, +24986229_257627,22:14:00,22:15:00,1475032,13, +24986229_257627,22:19:00,22:20:00,1475033,14, +24986229_257627,22:23:00,22:24:00,1475034,15, +24986229_257627,22:30:00,22:30:00,1475035,16, +24986229_257627,22:36:00,22:36:00,1475036,17, +24986230_257628,20:11:00,20:11:00,1474651,0, +24986230_257628,20:16:00,20:17:00,1474963,1, +24986230_257628,20:19:00,20:19:00,1474964,2, +24986230_257628,20:35:00,20:36:00,1474965,3, +24986230_257628,20:55:00,20:57:00,1657886,4, +24986230_257628,21:01:00,21:02:00,1474837,5, +24986230_257628,21:06:00,21:06:00,1475026,6, +24986230_257628,21:18:00,21:18:00,1475039,7, +24986230_257628,21:25:00,21:25:00,1475027,8, +24986230_257628,21:29:00,21:30:00,1475028,9, +24986230_257628,21:41:00,21:41:00,1475029,10, +24986230_257628,21:52:00,21:53:00,1475030,11, +24986230_257628,22:02:00,22:03:00,1475031,12, +24986230_257628,22:14:00,22:15:00,1475032,13, +24986230_257628,22:20:00,22:20:00,1475033,14, +24986230_257628,22:24:00,22:24:00,1475034,15, +24986230_257628,22:30:00,22:31:00,1475035,16, +24986230_257628,22:36:00,22:36:00,1475036,17, +24986231_257629,20:11:00,20:11:00,1474738,0, +24986231_257629,20:16:00,20:17:00,1474963,1, +24986231_257629,20:19:00,20:19:00,1474964,2, +24986231_257629,20:35:00,20:36:00,1474965,3, +24986231_257629,20:55:00,21:00:00,1657886,4, +24986231_257629,21:04:00,21:05:00,1474837,5, +24986231_257629,21:09:00,21:09:00,1475026,6, +24986231_257629,21:21:00,21:21:00,1475039,7, +24986231_257629,21:28:00,21:28:00,1475027,8, +24986231_257629,21:32:00,21:33:00,1475028,9, +24986231_257629,21:44:00,21:44:00,1475029,10, +24986231_257629,21:55:00,21:56:00,1475030,11, +24986231_257629,22:05:00,22:06:00,1475031,12, +24986231_257629,22:17:00,22:18:00,1475032,13, +24986231_257629,22:23:00,22:23:00,1475033,14, +24986231_257629,22:27:00,22:27:00,1475034,15, +24986231_257629,22:33:00,22:33:00,1475035,16, +24986231_257629,22:39:00,22:39:00,1475036,17, +24986233_257631,06:10:00,06:10:00,1657886,0, +24986233_257631,06:14:00,06:15:00,1474837,1, +24986233_257631,06:18:00,06:19:00,1474838,2, +24986233_257631,06:26:00,06:27:00,1474839,3, +24986233_257631,06:30:00,06:30:00,1474840,4, +24986233_257631,06:37:00,06:38:00,1474841,5, +24986233_257631,06:44:00,06:45:00,1475027,6, +24986233_257631,06:49:00,06:50:00,1475028,7, +24986233_257631,06:55:00,06:55:00,1536285,8, +24986233_257631,07:01:00,07:02:00,1475029,9, +24986233_257631,07:13:00,07:14:00,1475030,10, +24986233_257631,07:23:00,07:24:00,1475031,11, +24986233_257631,07:36:00,07:36:00,1475064,12, +24986234_257632,06:10:00,06:10:00,1657886,0, +24986234_257632,06:14:00,06:15:00,1474837,1, +24986234_257632,06:18:00,06:19:00,1474838,2, +24986234_257632,06:26:00,06:27:00,1474839,3, +24986234_257632,06:30:00,06:30:00,1474840,4, +24986234_257632,06:37:00,06:38:00,1475039,5, +24986234_257632,06:44:00,06:44:00,1475027,6, +24986234_257632,06:49:00,06:50:00,1475028,7, +24986234_257632,06:55:00,06:55:00,1536285,8, +24986234_257632,07:01:00,07:02:00,1475029,9, +24986234_257632,07:12:00,07:13:00,1475030,10, +24986234_257632,07:22:00,07:23:00,1475031,11, +24986234_257632,07:36:00,07:36:00,1475064,12, +24986235_257633,06:10:00,06:10:00,1474843,0, +24986235_257633,06:14:00,06:15:00,1475049,1, +24986235_257633,06:18:00,06:19:00,1475050,2, +24986235_257633,06:26:00,06:27:00,1475062,3, +24986235_257633,06:30:00,06:30:00,1475063,4, +24986235_257633,06:37:00,06:38:00,1475051,5, +24986235_257633,06:44:00,06:44:00,1475052,6, +24986235_257633,06:49:00,06:50:00,1475053,7, +24986235_257633,07:01:00,07:02:00,1475029,8, +24986235_257633,07:12:00,07:13:00,1475030,9, +24986235_257633,07:22:00,07:23:00,1475031,10, +24986235_257633,07:36:00,07:36:00,1475064,11, +24986237_257635,09:52:00,09:52:00,1657886,0, +24986237_257635,09:57:00,09:57:00,1474837,1, +24986237_257635,10:01:00,10:01:00,1474838,2, +24986237_257635,10:08:00,10:09:00,1474839,3, +24986237_257635,10:12:00,10:13:00,1474840,4, +24986237_257635,10:19:00,10:19:00,1474841,5, +24986237_257635,10:26:00,10:26:00,1475027,6, +24986237_257635,10:30:00,10:30:00,1475028,7, +24986237_257635,10:36:00,10:36:00,1536285,8, +24986237_257635,10:43:00,10:43:00,1475029,9, +24986237_257635,10:55:00,10:55:00,1475030,10, +24986237_257635,11:05:00,11:06:00,1475031,11, +24986237_257635,11:17:00,11:17:00,1475064,12, +24986238_257636,09:52:00,09:52:00,1657886,0, +24986238_257636,09:57:00,09:57:00,1474837,1, +24986238_257636,10:01:00,10:01:00,1474838,2, +24986238_257636,10:08:00,10:09:00,1474839,3, +24986238_257636,10:12:00,10:13:00,1474840,4, +24986238_257636,10:19:00,10:19:00,1475039,5, +24986238_257636,10:26:00,10:26:00,1475027,6, +24986238_257636,10:30:00,10:30:00,1475028,7, +24986238_257636,10:36:00,10:36:00,1536285,8, +24986238_257636,10:43:00,10:43:00,1475029,9, +24986238_257636,10:54:00,10:55:00,1475030,10, +24986238_257636,11:04:00,11:05:00,1475031,11, +24986238_257636,11:17:00,11:17:00,1475064,12, +24986239_257637,09:52:00,09:52:00,1474843,0, +24986239_257637,09:57:00,09:57:00,1475049,1, +24986239_257637,10:01:00,10:01:00,1475050,2, +24986239_257637,10:08:00,10:09:00,1475062,3, +24986239_257637,10:12:00,10:13:00,1475063,4, +24986239_257637,10:19:00,10:19:00,1475051,5, +24986239_257637,10:26:00,10:26:00,1475052,6, +24986239_257637,10:30:00,10:30:00,1475053,7, +24986239_257637,10:43:00,10:43:00,1475029,8, +24986239_257637,10:54:00,10:55:00,1475030,9, +24986239_257637,11:04:00,11:05:00,1475031,10, +24986239_257637,11:17:00,11:17:00,1475064,11, +24986240_257638,12:57:00,12:57:00,1657886,0, +24986240_257638,13:01:00,13:02:00,1474837,1, +24986240_257638,13:05:00,13:05:00,1474838,2, +24986240_257638,13:12:00,13:13:00,1474839,3, +24986240_257638,13:16:00,13:17:00,1474840,4, +24986240_257638,13:23:00,13:23:00,1474841,5, +24986240_257638,13:30:00,13:30:00,1475027,6, +24986240_257638,13:34:00,13:35:00,1475028,7, +24986240_257638,13:45:00,13:45:00,1475029,8, +24986240_257638,13:57:00,13:57:00,1475030,9, +24986240_257638,14:06:00,14:07:00,1475031,10, +24986240_257638,14:19:00,14:19:00,1475064,11, +24986241_257639,12:57:00,12:57:00,1657886,0, +24986241_257639,13:01:00,13:02:00,1474837,1, +24986241_257639,13:05:00,13:05:00,1474838,2, +24986241_257639,13:12:00,13:13:00,1474839,3, +24986241_257639,13:16:00,13:17:00,1474840,4, +24986241_257639,13:23:00,13:23:00,1475039,5, +24986241_257639,13:30:00,13:30:00,1475027,6, +24986241_257639,13:34:00,13:35:00,1475028,7, +24986241_257639,13:45:00,13:45:00,1475029,8, +24986241_257639,13:56:00,13:57:00,1475030,9, +24986241_257639,14:06:00,14:07:00,1475031,10, +24986241_257639,14:19:00,14:19:00,1475064,11, +24986244_257642,16:15:00,16:15:00,1474947,0, +24986244_257642,16:19:00,16:20:00,1474837,1, +24986244_257642,16:23:00,16:24:00,1474838,2, +24986244_257642,16:30:00,16:31:00,1474839,3, +24986244_257642,16:34:00,16:35:00,1474840,4, +24986244_257642,16:41:00,16:42:00,1474841,5, +24986244_257642,16:48:00,16:48:00,1475027,6, +24986244_257642,16:52:00,16:53:00,1475028,7, +24986244_257642,17:03:00,17:04:00,1475029,8, +24986244_257642,17:15:00,17:15:00,1475030,9, +24986244_257642,17:25:00,17:26:00,1475031,10, +24986244_257642,17:38:00,17:38:00,1475061,11, +24986245_257643,16:15:00,16:15:00,1657886,0, +24986245_257643,16:19:00,16:20:00,1474837,1, +24986245_257643,16:23:00,16:24:00,1474838,2, +24986245_257643,16:30:00,16:31:00,1474839,3, +24986245_257643,16:34:00,16:35:00,1474840,4, +24986245_257643,16:41:00,16:42:00,1474841,5, +24986245_257643,16:48:00,16:48:00,1475027,6, +24986245_257643,16:52:00,16:53:00,1475028,7, +24986245_257643,17:03:00,17:04:00,1475029,8, +24986245_257643,17:15:00,17:15:00,1475030,9, +24986245_257643,17:25:00,17:26:00,1475031,10, +24986245_257643,17:38:00,17:38:00,1475061,11, +24986247_257645,20:57:00,20:57:00,1657886,0, +24986247_257645,21:01:00,21:02:00,1474837,1, +24986247_257645,21:06:00,21:06:00,1475026,2, +24986247_257645,21:18:00,21:18:00,1475039,3, +24986247_257645,21:25:00,21:25:00,1475027,4, +24986247_257645,21:29:00,21:30:00,1475028,5, +24986247_257645,21:41:00,21:41:00,1475029,6, +24986247_257645,21:52:00,21:53:00,1475030,7, +24986247_257645,22:02:00,22:03:00,1475031,8, +24986247_257645,22:14:00,22:15:00,1475032,9, +24986247_257645,22:19:00,22:20:00,1475033,10, +24986247_257645,22:23:00,22:24:00,1475034,11, +24986247_257645,22:30:00,22:30:00,1475035,12, +24986247_257645,22:36:00,22:36:00,1475036,13, +24986248_257646,21:00:00,21:00:00,1657886,0, +24986248_257646,21:04:00,21:05:00,1474837,1, +24986248_257646,21:09:00,21:09:00,1475026,2, +24986248_257646,21:21:00,21:21:00,1475039,3, +24986248_257646,21:28:00,21:28:00,1475027,4, +24986248_257646,21:32:00,21:33:00,1475028,5, +24986248_257646,21:44:00,21:44:00,1475029,6, +24986248_257646,21:55:00,21:56:00,1475030,7, +24986248_257646,22:05:00,22:06:00,1475031,8, +24986248_257646,22:17:00,22:18:00,1475032,9, +24986248_257646,22:23:00,22:23:00,1475033,10, +24986248_257646,22:27:00,22:27:00,1475034,11, +24986248_257646,22:33:00,22:33:00,1475035,12, +24986248_257646,22:39:00,22:39:00,1475036,13, +24986249_257647,04:30:00,04:30:00,1475082,0, +24986249_257647,04:36:00,04:36:00,1475077,1, +24986249_257647,04:39:00,04:39:00,1475078,2, +24986249_257647,04:42:00,04:42:00,1475079,3, +24986249_257647,04:45:00,04:45:00,1475080,4, +24986249_257647,04:49:00,04:49:00,1475057,5, +24986249_257647,04:57:00,04:57:00,1475081,6, +24986249_257647,05:02:00,05:03:00,1536289,7, +24986249_257647,05:07:00,05:07:00,1536290,8, +24986249_257647,05:10:00,05:11:00,1536291,9, +24986249_257647,05:16:00,05:16:00,1536287,10, +24986251_257649,05:24:00,05:24:00,1475082,0, +24986251_257649,05:30:00,05:30:00,1475077,1, +24986251_257649,05:33:00,05:33:00,1475078,2, +24986251_257649,05:36:00,05:36:00,1475079,3, +24986251_257649,05:39:00,05:39:00,1475080,4, +24986251_257649,05:43:00,05:43:00,1475057,5, +24986251_257649,05:51:00,05:51:00,1475081,6, +24986251_257649,05:56:00,05:57:00,1536289,7, +24986251_257649,06:01:00,06:01:00,1536290,8, +24986251_257649,06:04:00,06:05:00,1536291,9, +24986251_257649,06:10:00,06:10:00,1536287,10, +24986252_257650,05:32:00,05:32:00,1475082,0, +24986252_257650,05:38:00,05:38:00,1475077,1, +24986252_257650,05:41:00,05:41:00,1475078,2, +24986252_257650,05:44:00,05:44:00,1475079,3, +24986252_257650,05:47:00,05:47:00,1475080,4, +24986252_257650,05:51:00,05:51:00,1475057,5, +24986252_257650,05:59:00,06:00:00,1475081,6, +24986252_257650,06:05:00,06:05:00,1536289,7, +24986252_257650,06:09:00,06:10:00,1536290,8, +24986252_257650,06:13:00,06:13:00,1536291,9, +24986252_257650,06:18:00,06:18:00,1536287,10, +24986255_257653,06:00:00,06:00:00,1474651,0, +24986255_257653,06:05:00,06:05:00,1474963,1, +24986255_257653,06:08:00,06:08:00,1474792,2, +24986255_257653,06:10:00,06:10:00,1475065,3, +24986255_257653,06:14:00,06:14:00,1475066,4, +24986255_257653,06:19:00,06:19:00,1475067,5, +24986255_257653,06:21:00,06:22:00,1475068,6, +24986255_257653,06:24:00,06:25:00,1475069,7, +24986255_257653,06:29:00,06:30:00,1474786,8, +24986255_257653,06:35:00,06:35:00,1475070,9, +24986255_257653,06:42:00,06:43:00,1474784,10, +24986255_257653,06:51:00,06:51:00,1475071,11, +24986255_257653,06:53:00,06:54:00,1475072,12, +24986255_257653,06:58:00,06:59:00,1475073,13, +24986255_257653,07:05:00,07:05:00,1475074,14, +24986255_257653,07:12:00,07:12:00,1475075,15, +24986255_257653,07:15:00,07:15:00,1474967,16, +24986255_257653,07:22:00,07:22:00,1474968,17, +24986255_257653,07:27:00,07:27:00,1475076,18, +24986255_257653,07:31:00,07:32:00,1475056,19, +24986255_257653,07:38:00,07:38:00,1475077,20, +24986255_257653,07:41:00,07:41:00,1475078,21, +24986255_257653,07:43:00,07:44:00,1475079,22, +24986255_257653,07:46:00,07:46:00,1475080,23, +24986255_257653,07:50:00,07:51:00,1475057,24, +24986255_257653,07:59:00,08:01:00,1475081,25, +24986255_257653,08:06:00,08:07:00,1536289,26, +24986255_257653,08:11:00,08:12:00,1536290,27, +24986255_257653,08:16:00,08:16:00,1536291,28, +24986255_257653,08:21:00,08:21:00,1536287,29, +24986256_257654,06:00:00,06:00:00,1474651,0, +24986256_257654,06:05:00,06:05:00,1474963,1, +24986256_257654,06:08:00,06:08:00,1474792,2, +24986256_257654,06:10:00,06:10:00,1475065,3, +24986256_257654,06:13:00,06:14:00,1475066,4, +24986256_257654,06:18:00,06:19:00,1475067,5, +24986256_257654,06:21:00,06:22:00,1475068,6, +24986256_257654,06:24:00,06:24:00,1475069,7, +24986256_257654,06:29:00,06:30:00,1474786,8, +24986256_257654,06:35:00,06:35:00,1475070,9, +24986256_257654,06:42:00,06:43:00,1474784,10, +24986256_257654,06:51:00,06:51:00,1475071,11, +24986256_257654,06:53:00,06:54:00,1475072,12, +24986256_257654,06:58:00,06:59:00,1475073,13, +24986256_257654,07:05:00,07:05:00,1475074,14, +24986256_257654,07:12:00,07:12:00,1475075,15, +24986256_257654,07:15:00,07:15:00,1474967,16, +24986256_257654,07:22:00,07:22:00,1474968,17, +24986256_257654,07:27:00,07:27:00,1475076,18, +24986256_257654,07:31:00,07:32:00,1475056,19, +24986256_257654,07:38:00,07:38:00,1475077,20, +24986256_257654,07:41:00,07:41:00,1475078,21, +24986256_257654,07:43:00,07:44:00,1475079,22, +24986256_257654,07:46:00,07:46:00,1475080,23, +24986256_257654,07:50:00,07:51:00,1475057,24, +24986256_257654,07:59:00,08:01:00,1475081,25, +24986256_257654,08:06:00,08:07:00,1536289,26, +24986256_257654,08:11:00,08:12:00,1536290,27, +24986256_257654,08:16:00,08:16:00,1536291,28, +24986256_257654,08:21:00,08:21:00,1536287,29, +24986257_257655,05:52:00,05:52:00,1474640,0, +24986257_257655,05:57:00,05:57:00,1474963,1, +24986257_257655,06:00:00,06:00:00,1474792,2, +24986257_257655,06:01:00,06:02:00,1475065,3, +24986257_257655,06:05:00,06:06:00,1475066,4, +24986257_257655,06:10:00,06:11:00,1475067,5, +24986257_257655,06:13:00,06:14:00,1475068,6, +24986257_257655,06:16:00,06:17:00,1475069,7, +24986257_257655,06:21:00,06:22:00,1474786,8, +24986257_257655,06:25:00,06:26:00,1475070,9, +24986257_257655,06:30:00,06:31:00,1474784,10, +24986257_257655,06:39:00,06:39:00,1475071,11, +24986257_257655,06:41:00,06:42:00,1475072,12, +24986257_257655,06:46:00,06:47:00,1475073,13, +24986257_257655,06:52:00,06:52:00,1475074,14, +24986257_257655,07:00:00,07:00:00,1475075,15, +24986257_257655,07:03:00,07:04:00,1474967,16, +24986257_257655,07:10:00,07:11:00,1474968,17, +24986257_257655,07:15:00,07:16:00,1475076,18, +24986257_257655,07:20:00,07:21:00,1475056,19, +24986257_257655,07:27:00,07:27:00,1475077,20, +24986257_257655,07:30:00,07:30:00,1475078,21, +24986257_257655,07:32:00,07:33:00,1475079,22, +24986257_257655,07:35:00,07:35:00,1475080,23, +24986257_257655,07:39:00,07:40:00,1475057,24, +24986257_257655,07:47:00,07:47:00,1475081,25, +24986257_257655,07:52:00,07:53:00,1536289,26, +24986257_257655,07:57:00,07:58:00,1536290,27, +24986257_257655,08:01:00,08:01:00,1536291,28, +24986257_257655,08:06:00,08:06:00,1536287,29, +24986262_257660,07:39:00,07:39:00,1474640,0, +24986262_257660,07:44:00,07:45:00,1474963,1, +24986262_257660,07:47:00,07:48:00,1474792,2, +24986262_257660,07:49:00,07:50:00,1475065,3, +24986262_257660,07:53:00,07:53:00,1475066,4, +24986262_257660,07:58:00,07:59:00,1475067,5, +24986262_257660,08:01:00,08:01:00,1475068,6, +24986262_257660,08:04:00,08:04:00,1475069,7, +24986262_257660,08:08:00,08:09:00,1474786,8, +24986262_257660,08:14:00,08:15:00,1475070,9, +24986262_257660,08:22:00,08:23:00,1474784,10, +24986262_257660,08:30:00,08:30:00,1475071,11, +24986262_257660,08:32:00,08:33:00,1475072,12, +24986262_257660,08:38:00,08:38:00,1475073,13, +24986262_257660,08:44:00,08:44:00,1475074,14, +24986262_257660,08:51:00,08:51:00,1475075,15, +24986262_257660,08:54:00,08:54:00,1474967,16, +24986262_257660,09:01:00,09:01:00,1474968,17, +24986262_257660,09:06:00,09:06:00,1475076,18, +24986262_257660,09:11:00,09:11:00,1475056,19, +24986262_257660,09:17:00,09:17:00,1475077,20, +24986262_257660,09:20:00,09:20:00,1475078,21, +24986262_257660,09:22:00,09:22:00,1475079,22, +24986262_257660,09:25:00,09:25:00,1475080,23, +24986262_257660,09:29:00,09:30:00,1475057,24, +24986262_257660,09:37:00,09:37:00,1475081,25, +24986262_257660,09:42:00,09:43:00,1536289,26, +24986262_257660,09:47:00,09:47:00,1536290,27, +24986262_257660,09:50:00,09:51:00,1536291,28, +24986262_257660,09:56:00,09:56:00,1536287,29, +24986265_257663,07:39:00,07:39:00,1474640,0, +24986265_257663,07:44:00,07:45:00,1474963,1, +24986265_257663,07:47:00,07:48:00,1474792,2, +24986265_257663,07:49:00,07:50:00,1475065,3, +24986265_257663,07:53:00,07:53:00,1475066,4, +24986265_257663,07:58:00,07:58:00,1475067,5, +24986265_257663,08:00:00,08:01:00,1475068,6, +24986265_257663,08:03:00,08:04:00,1475069,7, +24986265_257663,08:08:00,08:09:00,1474786,8, +24986265_257663,08:14:00,08:15:00,1475070,9, +24986265_257663,08:22:00,08:23:00,1474784,10, +24986265_257663,08:30:00,08:30:00,1475071,11, +24986265_257663,08:32:00,08:33:00,1475072,12, +24986265_257663,08:38:00,08:38:00,1475073,13, +24986265_257663,08:44:00,08:44:00,1475074,14, +24986265_257663,08:51:00,08:51:00,1475075,15, +24986265_257663,08:54:00,08:54:00,1474967,16, +24986265_257663,09:01:00,09:01:00,1474968,17, +24986265_257663,09:06:00,09:06:00,1475076,18, +24986265_257663,09:11:00,09:11:00,1475056,19, +24986265_257663,09:17:00,09:17:00,1475077,20, +24986265_257663,09:20:00,09:20:00,1475078,21, +24986265_257663,09:22:00,09:22:00,1475079,22, +24986265_257663,09:25:00,09:25:00,1475080,23, +24986265_257663,09:29:00,09:30:00,1475057,24, +24986265_257663,09:37:00,09:37:00,1475081,25, +24986265_257663,09:42:00,09:43:00,1536289,26, +24986265_257663,09:47:00,09:47:00,1536290,27, +24986265_257663,09:50:00,09:51:00,1536291,28, +24986265_257663,09:55:00,09:55:00,1536287,29, +24986266_257664,07:40:00,07:40:00,1474640,0, +24986266_257664,07:45:00,07:45:00,1474963,1, +24986266_257664,07:48:00,07:48:00,1474792,2, +24986266_257664,07:50:00,07:50:00,1475065,3, +24986266_257664,07:53:00,07:54:00,1475066,4, +24986266_257664,07:58:00,07:59:00,1475067,5, +24986266_257664,08:01:00,08:01:00,1475068,6, +24986266_257664,08:04:00,08:04:00,1475069,7, +24986266_257664,08:08:00,08:09:00,1474786,8, +24986266_257664,08:13:00,08:14:00,1475070,9, +24986266_257664,08:18:00,08:19:00,1474784,10, +24986266_257664,08:26:00,08:26:00,1475071,11, +24986266_257664,08:28:00,08:29:00,1475072,12, +24986266_257664,08:33:00,08:34:00,1475073,13, +24986266_257664,08:39:00,08:39:00,1475074,14, +24986266_257664,08:47:00,08:47:00,1475075,15, +24986266_257664,08:51:00,08:51:00,1474967,16, +24986266_257664,08:58:00,08:59:00,1474968,17, +24986266_257664,09:03:00,09:04:00,1475076,18, +24986266_257664,09:08:00,09:09:00,1475056,19, +24986266_257664,09:14:00,09:15:00,1475077,20, +24986266_257664,09:17:00,09:18:00,1475078,21, +24986266_257664,09:20:00,09:20:00,1475079,22, +24986266_257664,09:23:00,09:23:00,1475080,23, +24986266_257664,09:27:00,09:28:00,1475057,24, +24986266_257664,09:35:00,09:36:00,1475081,25, +24986266_257664,09:41:00,09:42:00,1536289,26, +24986266_257664,09:46:00,09:46:00,1536290,27, +24986266_257664,09:49:00,09:50:00,1536291,28, +24986266_257664,09:55:00,09:55:00,1536287,29, +24986268_257666,10:31:00,10:31:00,1474640,0, +24986268_257666,10:36:00,10:37:00,1474963,1, +24986268_257666,10:39:00,10:40:00,1474792,2, +24986268_257666,10:41:00,10:42:00,1475065,3, +24986268_257666,10:45:00,10:45:00,1475066,4, +24986268_257666,10:50:00,10:51:00,1475067,5, +24986268_257666,10:53:00,10:54:00,1475068,6, +24986268_257666,10:56:00,10:57:00,1475069,7, +24986268_257666,11:01:00,11:03:00,1474786,8, +24986268_257666,11:08:00,11:09:00,1475070,9, +24986268_257666,11:16:00,11:17:00,1474784,10, +24986268_257666,11:24:00,11:25:00,1475071,11, +24986268_257666,11:27:00,11:28:00,1475072,12, +24986268_257666,11:32:00,11:33:00,1475073,13, +24986268_257666,11:39:00,11:39:00,1475074,14, +24986268_257666,11:46:00,11:47:00,1475075,15, +24986268_257666,11:49:00,11:50:00,1474967,16, +24986268_257666,11:56:00,11:57:00,1474968,17, +24986268_257666,12:01:00,12:02:00,1475076,18, +24986268_257666,12:06:00,12:08:00,1475056,19, +24986268_257666,12:14:00,12:15:00,1475077,20, +24986268_257666,12:17:00,12:17:00,1475078,21, +24986268_257666,12:20:00,12:20:00,1475079,22, +24986268_257666,12:22:00,12:23:00,1475080,23, +24986268_257666,12:27:00,12:27:00,1475057,24, +24986268_257666,12:35:00,12:36:00,1475081,25, +24986268_257666,12:41:00,12:41:00,1536289,26, +24986268_257666,12:45:00,12:46:00,1536290,27, +24986268_257666,12:49:00,12:49:00,1536291,28, +24986268_257666,12:55:00,12:55:00,1536287,29, +24986269_257667,10:37:00,10:37:00,1474640,0, +24986269_257667,10:42:00,10:42:00,1474963,1, +24986269_257667,10:45:00,10:45:00,1474792,2, +24986269_257667,10:47:00,10:47:00,1475065,3, +24986269_257667,10:51:00,10:51:00,1475066,4, +24986269_257667,10:56:00,10:57:00,1475067,5, +24986269_257667,10:59:00,10:59:00,1475068,6, +24986269_257667,11:02:00,11:02:00,1475069,7, +24986269_257667,11:07:00,11:08:00,1474786,8, +24986269_257667,11:12:00,11:12:00,1475070,9, +24986269_257667,11:16:00,11:17:00,1474784,10, +24986269_257667,11:25:00,11:25:00,1475071,11, +24986269_257667,11:27:00,11:28:00,1475072,12, +24986269_257667,11:32:00,11:33:00,1475073,13, +24986269_257667,11:38:00,11:39:00,1475074,14, +24986269_257667,11:46:00,11:47:00,1475075,15, +24986269_257667,11:50:00,11:50:00,1474967,16, +24986269_257667,11:57:00,11:57:00,1474968,17, +24986269_257667,12:02:00,12:02:00,1475076,18, +24986269_257667,12:07:00,12:08:00,1475056,19, +24986269_257667,12:14:00,12:14:00,1475077,20, +24986269_257667,12:17:00,12:17:00,1475078,21, +24986269_257667,12:20:00,12:20:00,1475079,22, +24986269_257667,12:23:00,12:23:00,1475080,23, +24986269_257667,12:27:00,12:27:00,1475057,24, +24986269_257667,12:34:00,12:35:00,1475081,25, +24986269_257667,12:40:00,12:41:00,1536289,26, +24986269_257667,12:45:00,12:45:00,1536290,27, +24986269_257667,12:48:00,12:49:00,1536291,28, +24986269_257667,12:55:00,12:55:00,1536287,29, +24986271_257669,12:58:00,12:58:00,1474651,0, +24986271_257669,13:03:00,13:04:00,1474963,1, +24986271_257669,13:06:00,13:07:00,1474792,2, +24986271_257669,13:09:00,13:09:00,1475065,3, +24986271_257669,13:13:00,13:13:00,1475066,4, +24986271_257669,13:18:00,13:19:00,1475067,5, +24986271_257669,13:21:00,13:21:00,1475068,6, +24986271_257669,13:24:00,13:24:00,1475069,7, +24986271_257669,13:29:00,13:30:00,1474786,8, +24986271_257669,13:35:00,13:35:00,1475070,9, +24986271_257669,13:43:00,13:44:00,1474784,10, +24986271_257669,13:51:00,13:52:00,1475071,11, +24986271_257669,13:54:00,13:55:00,1475072,12, +24986271_257669,13:59:00,14:00:00,1475073,13, +24986271_257669,14:06:00,14:06:00,1475074,14, +24986271_257669,14:13:00,14:14:00,1475075,15, +24986271_257669,14:16:00,14:17:00,1474967,16, +24986271_257669,14:23:00,14:24:00,1474968,17, +24986271_257669,14:28:00,14:29:00,1475076,18, +24986271_257669,14:33:00,14:34:00,1475056,19, +24986271_257669,14:40:00,14:40:00,1475077,20, +24986271_257669,14:43:00,14:43:00,1475078,21, +24986271_257669,14:45:00,14:46:00,1475079,22, +24986271_257669,14:48:00,14:49:00,1475080,23, +24986271_257669,14:52:00,14:53:00,1475057,24, +24986271_257669,15:00:00,15:01:00,1475081,25, +24986271_257669,15:07:00,15:08:00,1536289,26, +24986271_257669,15:12:00,15:12:00,1536290,27, +24986271_257669,15:15:00,15:16:00,1536291,28, +24986271_257669,15:21:00,15:21:00,1536287,29, +24986272_257670,12:57:00,12:57:00,1474738,0, +24986272_257670,13:02:00,13:03:00,1474963,1, +24986272_257670,13:06:00,13:06:00,1474792,2, +24986272_257670,13:08:00,13:08:00,1475065,3, +24986272_257670,13:12:00,13:12:00,1475066,4, +24986272_257670,13:17:00,13:18:00,1475067,5, +24986272_257670,13:20:00,13:20:00,1475068,6, +24986272_257670,13:23:00,13:23:00,1475069,7, +24986272_257670,13:27:00,13:28:00,1474786,8, +24986272_257670,13:32:00,13:33:00,1475070,9, +24986272_257670,13:37:00,13:38:00,1474784,10, +24986272_257670,13:45:00,13:46:00,1475071,11, +24986272_257670,13:48:00,13:49:00,1475072,12, +24986272_257670,13:53:00,13:54:00,1475073,13, +24986272_257670,13:59:00,13:59:00,1475074,14, +24986272_257670,14:07:00,14:08:00,1475075,15, +24986272_257670,14:11:00,14:11:00,1474967,16, +24986272_257670,14:18:00,14:18:00,1474968,17, +24986272_257670,14:23:00,14:24:00,1475076,18, +24986272_257670,14:28:00,14:29:00,1475056,19, +24986272_257670,14:34:00,14:35:00,1475077,20, +24986272_257670,14:37:00,14:38:00,1475078,21, +24986272_257670,14:40:00,14:40:00,1475079,22, +24986272_257670,14:43:00,14:43:00,1475080,23, +24986272_257670,14:47:00,14:48:00,1475057,24, +24986272_257670,14:55:00,14:56:00,1475081,25, +24986272_257670,15:01:00,15:02:00,1536289,26, +24986272_257670,15:06:00,15:06:00,1536290,27, +24986272_257670,15:09:00,15:10:00,1536291,28, +24986272_257670,15:15:00,15:15:00,1536287,29, +24986274_257672,13:50:00,13:50:00,1474640,0, +24986274_257672,13:55:00,13:56:00,1474963,1, +24986274_257672,13:58:00,13:59:00,1474792,2, +24986274_257672,14:00:00,14:01:00,1475065,3, +24986274_257672,14:04:00,14:05:00,1475066,4, +24986274_257672,14:09:00,14:10:00,1475067,5, +24986274_257672,14:12:00,14:13:00,1475068,6, +24986274_257672,14:15:00,14:16:00,1475069,7, +24986274_257672,14:20:00,14:21:00,1474786,8, +24986274_257672,14:25:00,14:26:00,1475070,9, +24986274_257672,14:31:00,14:32:00,1474784,10, +24986274_257672,14:39:00,14:40:00,1475071,11, +24986274_257672,14:42:00,14:43:00,1475072,12, +24986274_257672,14:47:00,14:48:00,1475073,13, +24986274_257672,14:54:00,14:54:00,1475074,14, +24986274_257672,15:01:00,15:02:00,1475075,15, +24986274_257672,15:04:00,15:05:00,1474967,16, +24986274_257672,15:11:00,15:12:00,1474968,17, +24986274_257672,15:16:00,15:17:00,1475076,18, +24986274_257672,15:21:00,15:22:00,1475056,19, +24986274_257672,15:28:00,15:28:00,1475077,20, +24986274_257672,15:31:00,15:31:00,1475078,21, +24986274_257672,15:33:00,15:34:00,1475079,22, +24986274_257672,15:36:00,15:37:00,1475080,23, +24986274_257672,15:41:00,15:41:00,1475057,24, +24986274_257672,15:49:00,15:49:00,1475081,25, +24986274_257672,15:54:00,15:55:00,1536289,26, +24986274_257672,15:59:00,15:59:00,1536290,27, +24986274_257672,16:02:00,16:03:00,1536291,28, +24986274_257672,16:08:00,16:08:00,1536287,29, +24986275_257673,13:52:00,13:52:00,1474738,0, +24986275_257673,13:57:00,13:58:00,1474963,1, +24986275_257673,14:00:00,14:01:00,1474792,2, +24986275_257673,14:02:00,14:03:00,1475065,3, +24986275_257673,14:06:00,14:07:00,1475066,4, +24986275_257673,14:12:00,14:12:00,1475067,5, +24986275_257673,14:14:00,14:15:00,1475068,6, +24986275_257673,14:17:00,14:18:00,1475069,7, +24986275_257673,14:22:00,14:23:00,1474786,8, +24986275_257673,14:27:00,14:28:00,1475070,9, +24986275_257673,14:32:00,14:33:00,1474784,10, +24986275_257673,14:41:00,14:41:00,1475071,11, +24986275_257673,14:43:00,14:44:00,1475072,12, +24986275_257673,14:48:00,14:49:00,1475073,13, +24986275_257673,14:54:00,14:54:00,1475074,14, +24986275_257673,15:02:00,15:03:00,1475075,15, +24986275_257673,15:06:00,15:06:00,1474967,16, +24986275_257673,15:13:00,15:13:00,1474968,17, +24986275_257673,15:18:00,15:19:00,1475076,18, +24986275_257673,15:23:00,15:24:00,1475056,19, +24986275_257673,15:29:00,15:30:00,1475077,20, +24986275_257673,15:32:00,15:33:00,1475078,21, +24986275_257673,15:35:00,15:35:00,1475079,22, +24986275_257673,15:38:00,15:38:00,1475080,23, +24986275_257673,15:42:00,15:43:00,1475057,24, +24986275_257673,15:50:00,15:51:00,1475081,25, +24986275_257673,15:56:00,15:57:00,1536289,26, +24986275_257673,16:01:00,16:01:00,1536290,27, +24986275_257673,16:04:00,16:05:00,1536291,28, +24986275_257673,16:10:00,16:10:00,1536287,29, +24986277_257675,14:39:00,14:39:00,1474640,0, +24986277_257675,14:44:00,14:45:00,1474963,1, +24986277_257675,14:47:00,14:47:00,1474792,2, +24986277_257675,14:49:00,14:49:00,1475065,3, +24986277_257675,14:53:00,14:53:00,1475066,4, +24986277_257675,14:58:00,14:59:00,1475067,5, +24986277_257675,15:01:00,15:02:00,1475068,6, +24986277_257675,15:05:00,15:05:00,1475069,7, +24986277_257675,15:10:00,15:11:00,1474786,8, +24986277_257675,15:16:00,15:17:00,1475070,9, +24986277_257675,15:24:00,15:25:00,1474784,10, +24986277_257675,15:33:00,15:33:00,1475071,11, +24986277_257675,15:35:00,15:36:00,1475072,12, +24986277_257675,15:41:00,15:45:00,1475073,13, +24986277_257675,15:51:00,15:51:00,1475074,14, +24986277_257675,15:58:00,15:58:00,1475075,15, +24986277_257675,16:01:00,16:02:00,1474967,16, +24986277_257675,16:08:00,16:09:00,1474968,17, +24986277_257675,16:13:00,16:14:00,1475076,18, +24986277_257675,16:19:00,16:37:00,1475056,19, +24986277_257675,16:42:00,16:43:00,1475077,20, +24986277_257675,16:45:00,16:46:00,1475078,21, +24986277_257675,16:48:00,16:48:00,1475079,22, +24986277_257675,16:51:00,16:51:00,1475080,23, +24986277_257675,16:55:00,16:55:00,1475057,24, +24986277_257675,17:03:00,17:05:00,1475081,25, +24986277_257675,17:10:00,17:10:00,1536289,26, +24986277_257675,17:14:00,17:15:00,1536290,27, +24986277_257675,17:18:00,17:19:00,1536291,28, +24986277_257675,17:25:00,17:25:00,1536287,29, +24986279_257677,14:50:00,14:50:00,1474640,0, +24986279_257677,14:55:00,14:55:00,1474963,1, +24986279_257677,14:58:00,14:58:00,1474792,2, +24986279_257677,15:00:00,15:00:00,1475065,3, +24986279_257677,15:03:00,15:04:00,1475066,4, +24986279_257677,15:09:00,15:09:00,1475067,5, +24986279_257677,15:11:00,15:12:00,1475068,6, +24986279_257677,15:14:00,15:15:00,1475069,7, +24986279_257677,15:19:00,15:20:00,1474786,8, +24986279_257677,15:24:00,15:24:00,1475070,9, +24986279_257677,15:28:00,15:29:00,1474784,10, +24986279_257677,15:37:00,15:37:00,1475071,11, +24986279_257677,15:40:00,15:40:00,1475072,12, +24986279_257677,15:45:00,15:46:00,1475073,13, +24986279_257677,15:51:00,15:51:00,1475074,14, +24986279_257677,15:58:00,15:59:00,1475075,15, +24986279_257677,16:02:00,16:02:00,1474967,16, +24986279_257677,16:09:00,16:10:00,1474968,17, +24986279_257677,16:15:00,16:15:00,1475076,18, +24986279_257677,16:21:00,16:36:00,1475056,19, +24986279_257677,16:41:00,16:42:00,1475077,20, +24986279_257677,16:44:00,16:45:00,1475078,21, +24986279_257677,16:47:00,16:47:00,1475079,22, +24986279_257677,16:50:00,16:50:00,1475080,23, +24986279_257677,16:54:00,16:54:00,1475057,24, +24986279_257677,17:02:00,17:03:00,1475081,25, +24986279_257677,17:08:00,17:09:00,1536289,26, +24986279_257677,17:13:00,17:14:00,1536290,27, +24986279_257677,17:17:00,17:17:00,1536291,28, +24986279_257677,17:22:00,17:22:00,1536287,29, +24986281_257679,15:51:00,15:51:00,1536277,0, +24986281_257679,15:56:00,15:57:00,1474963,1, +24986281_257679,15:59:00,16:00:00,1474792,2, +24986281_257679,16:01:00,16:02:00,1475065,3, +24986281_257679,16:05:00,16:05:00,1475066,4, +24986281_257679,16:10:00,16:11:00,1475067,5, +24986281_257679,16:13:00,16:14:00,1475068,6, +24986281_257679,16:16:00,16:17:00,1475069,7, +24986281_257679,16:21:00,16:22:00,1474786,8, +24986281_257679,16:26:00,16:27:00,1475070,9, +24986281_257679,16:32:00,16:33:00,1474784,10, +24986281_257679,16:41:00,16:41:00,1475071,11, +24986281_257679,16:43:00,16:44:00,1475072,12, +24986281_257679,16:48:00,16:49:00,1475073,13, +24986281_257679,16:55:00,16:56:00,1475074,14, +24986281_257679,17:02:00,17:03:00,1475075,15, +24986281_257679,17:05:00,17:06:00,1474967,16, +24986281_257679,17:12:00,17:13:00,1474968,17, +24986281_257679,17:17:00,17:18:00,1475076,18, +24986281_257679,17:23:00,17:24:00,1475056,19, +24986281_257679,17:29:00,17:30:00,1475077,20, +24986281_257679,17:32:00,17:33:00,1475078,21, +24986281_257679,17:35:00,17:35:00,1475079,22, +24986281_257679,17:38:00,17:38:00,1475080,23, +24986281_257679,17:42:00,17:42:00,1475057,24, +24986281_257679,17:50:00,17:51:00,1475081,25, +24986281_257679,17:56:00,17:57:00,1536289,26, +24986281_257679,18:01:00,18:01:00,1536290,27, +24986281_257679,18:04:00,18:05:00,1536291,28, +24986281_257679,18:10:00,18:10:00,1536287,29, +24986282_257680,15:52:00,15:52:00,1474738,0, +24986282_257680,15:57:00,15:58:00,1474963,1, +24986282_257680,16:00:00,16:01:00,1474792,2, +24986282_257680,16:02:00,16:03:00,1475065,3, +24986282_257680,16:06:00,16:07:00,1475066,4, +24986282_257680,16:12:00,16:12:00,1475067,5, +24986282_257680,16:15:00,16:15:00,1475068,6, +24986282_257680,16:18:00,16:18:00,1475069,7, +24986282_257680,16:22:00,16:23:00,1474786,8, +24986282_257680,16:27:00,16:28:00,1475070,9, +24986282_257680,16:32:00,16:33:00,1474784,10, +24986282_257680,16:40:00,16:41:00,1475071,11, +24986282_257680,16:43:00,16:43:00,1475072,12, +24986282_257680,16:48:00,16:49:00,1475073,13, +24986282_257680,16:54:00,16:54:00,1475074,14, +24986282_257680,17:02:00,17:02:00,1475075,15, +24986282_257680,17:05:00,17:05:00,1474967,16, +24986282_257680,17:12:00,17:12:00,1474968,17, +24986282_257680,17:17:00,17:17:00,1475076,18, +24986282_257680,17:22:00,17:28:00,1475056,19, +24986282_257680,17:34:00,17:34:00,1475077,20, +24986282_257680,17:37:00,17:37:00,1475078,21, +24986282_257680,17:40:00,17:40:00,1475079,22, +24986282_257680,17:43:00,17:43:00,1475080,23, +24986282_257680,17:47:00,17:47:00,1475057,24, +24986282_257680,17:55:00,17:56:00,1475081,25, +24986282_257680,18:01:00,18:01:00,1536289,26, +24986282_257680,18:05:00,18:06:00,1536290,27, +24986282_257680,18:09:00,18:09:00,1536291,28, +24986282_257680,18:15:00,18:15:00,1536287,29, +24986286_257684,17:10:00,17:10:00,1474640,0, +24986286_257684,17:15:00,17:15:00,1474963,1, +24986286_257684,17:18:00,17:20:00,1474792,2, +24986286_257684,17:21:00,17:22:00,1475065,3, +24986286_257684,17:25:00,17:25:00,1475066,4, +24986286_257684,17:30:00,17:31:00,1475067,5, +24986286_257684,17:33:00,17:34:00,1475068,6, +24986286_257684,17:36:00,17:37:00,1475069,7, +24986286_257684,17:41:00,17:43:00,1474786,8, +24986286_257684,17:48:00,17:48:00,1475070,9, +24986286_257684,17:56:00,18:04:00,1474784,10, +24986286_257684,18:12:00,18:12:00,1475071,11, +24986286_257684,18:14:00,18:15:00,1475072,12, +24986286_257684,18:20:00,18:21:00,1475073,13, +24986286_257684,18:26:00,18:27:00,1475074,14, +24986286_257684,18:33:00,18:34:00,1475075,15, +24986286_257684,18:37:00,18:38:00,1474967,16, +24986286_257684,18:44:00,18:45:00,1474968,17, +24986286_257684,18:49:00,18:50:00,1475076,18, +24986286_257684,18:54:00,18:55:00,1475056,19, +24986286_257684,19:01:00,19:01:00,1475077,20, +24986286_257684,19:04:00,19:04:00,1475078,21, +24986286_257684,19:06:00,19:07:00,1475079,22, +24986286_257684,19:09:00,19:10:00,1475080,23, +24986286_257684,19:14:00,19:14:00,1475057,24, +24986286_257684,19:22:00,19:23:00,1475081,25, +24986286_257684,19:28:00,19:28:00,1536289,26, +24986286_257684,19:32:00,19:33:00,1536290,27, +24986286_257684,19:36:00,19:36:00,1536291,28, +24986286_257684,19:42:00,19:42:00,1536287,29, +24986287_257685,17:05:00,17:05:00,1474738,0, +24986287_257685,17:10:00,17:10:00,1474963,1, +24986287_257685,17:13:00,17:13:00,1474792,2, +24986287_257685,17:15:00,17:15:00,1475065,3, +24986287_257685,17:19:00,17:19:00,1475066,4, +24986287_257685,17:24:00,17:25:00,1475067,5, +24986287_257685,17:27:00,17:27:00,1475068,6, +24986287_257685,17:30:00,17:30:00,1475069,7, +24986287_257685,17:35:00,17:36:00,1474786,8, +24986287_257685,17:40:00,17:40:00,1475070,9, +24986287_257685,17:44:00,17:45:00,1474784,10, +24986287_257685,17:53:00,17:53:00,1475071,11, +24986287_257685,17:56:00,17:56:00,1475072,12, +24986287_257685,18:00:00,18:01:00,1475073,13, +24986287_257685,18:06:00,18:07:00,1475074,14, +24986287_257685,18:14:00,18:15:00,1475075,15, +24986287_257685,18:18:00,18:18:00,1474967,16, +24986287_257685,18:25:00,18:25:00,1474968,17, +24986287_257685,18:30:00,18:30:00,1475076,18, +24986287_257685,18:36:00,18:50:00,1475056,19, +24986287_257685,18:56:00,18:56:00,1475077,20, +24986287_257685,18:59:00,18:59:00,1475078,21, +24986287_257685,19:01:00,19:02:00,1475079,22, +24986287_257685,19:04:00,19:05:00,1475080,23, +24986287_257685,19:09:00,19:09:00,1475057,24, +24986287_257685,19:17:00,19:18:00,1475081,25, +24986287_257685,19:23:00,19:24:00,1536289,26, +24986287_257685,19:28:00,19:28:00,1536290,27, +24986287_257685,19:31:00,19:32:00,1536291,28, +24986287_257685,19:37:00,19:37:00,1536287,29, +24986288_257686,17:05:00,17:05:00,1474738,0, +24986288_257686,17:10:00,17:10:00,1474963,1, +24986288_257686,17:13:00,17:13:00,1474792,2, +24986288_257686,17:15:00,17:15:00,1475065,3, +24986288_257686,17:19:00,17:19:00,1475066,4, +24986288_257686,17:24:00,17:25:00,1475067,5, +24986288_257686,17:27:00,17:27:00,1475068,6, +24986288_257686,17:30:00,17:30:00,1475069,7, +24986288_257686,17:35:00,17:36:00,1474786,8, +24986288_257686,17:40:00,17:40:00,1475070,9, +24986288_257686,17:44:00,17:45:00,1474784,10, +24986288_257686,17:53:00,17:53:00,1475071,11, +24986288_257686,17:56:00,17:56:00,1475072,12, +24986288_257686,18:00:00,18:01:00,1475073,13, +24986288_257686,18:06:00,18:07:00,1475074,14, +24986288_257686,18:14:00,18:15:00,1475075,15, +24986288_257686,18:18:00,18:18:00,1474967,16, +24986288_257686,18:25:00,18:25:00,1474968,17, +24986288_257686,18:30:00,18:30:00,1475076,18, +24986288_257686,18:36:00,18:50:00,1475056,19, +24986288_257686,18:56:00,18:56:00,1475077,20, +24986288_257686,18:59:00,18:59:00,1475078,21, +24986288_257686,19:01:00,19:02:00,1475079,22, +24986288_257686,19:04:00,19:05:00,1475080,23, +24986288_257686,19:09:00,19:09:00,1475057,24, +24986288_257686,19:17:00,19:18:00,1475081,25, +24986288_257686,19:23:00,19:24:00,1536289,26, +24986288_257686,19:28:00,19:28:00,1536290,27, +24986288_257686,19:31:00,19:32:00,1536291,28, +24986288_257686,19:37:00,19:37:00,1536287,29, +24986289_257687,17:05:00,17:05:00,1474738,0, +24986289_257687,17:10:00,17:10:00,1474963,1, +24986289_257687,17:13:00,17:13:00,1474792,2, +24986289_257687,17:15:00,17:15:00,1475065,3, +24986289_257687,17:19:00,17:19:00,1475066,4, +24986289_257687,17:24:00,17:25:00,1475067,5, +24986289_257687,17:27:00,17:27:00,1475068,6, +24986289_257687,17:30:00,17:30:00,1475069,7, +24986289_257687,17:35:00,17:36:00,1474786,8, +24986289_257687,17:40:00,17:40:00,1475070,9, +24986289_257687,17:44:00,17:45:00,1474784,10, +24986289_257687,17:53:00,17:53:00,1475071,11, +24986289_257687,17:56:00,17:56:00,1475072,12, +24986289_257687,18:00:00,18:01:00,1475073,13, +24986289_257687,18:06:00,18:07:00,1475074,14, +24986289_257687,18:14:00,18:15:00,1475075,15, +24986289_257687,18:18:00,18:18:00,1474967,16, +24986289_257687,18:25:00,18:25:00,1474968,17, +24986289_257687,18:30:00,18:30:00,1475076,18, +24986289_257687,18:36:00,18:50:00,1475056,19, +24986289_257687,18:56:00,18:56:00,1475077,20, +24986289_257687,18:59:00,18:59:00,1475078,21, +24986289_257687,19:01:00,19:02:00,1475079,22, +24986289_257687,19:04:00,19:05:00,1475080,23, +24986289_257687,19:09:00,19:09:00,1475057,24, +24986289_257687,19:17:00,19:18:00,1475081,25, +24986289_257687,19:23:00,19:24:00,1536289,26, +24986289_257687,19:28:00,19:28:00,1536290,27, +24986289_257687,19:31:00,19:32:00,1536291,28, +24986289_257687,19:37:00,19:37:00,1536287,29, +24986294_257692,19:07:00,19:07:00,1474651,0, +24986294_257692,19:12:00,19:12:00,1474963,1, +24986294_257692,19:15:00,19:16:00,1474792,2, +24986294_257692,19:17:00,19:18:00,1475065,3, +24986294_257692,19:21:00,19:21:00,1475066,4, +24986294_257692,19:26:00,19:26:00,1475067,5, +24986294_257692,19:29:00,19:29:00,1475068,6, +24986294_257692,19:31:00,19:32:00,1475069,7, +24986294_257692,19:36:00,19:39:00,1474786,8, +24986294_257692,19:44:00,19:44:00,1475070,9, +24986294_257692,19:51:00,19:52:00,1474784,10, +24986294_257692,20:00:00,20:00:00,1475071,11, +24986294_257692,20:02:00,20:03:00,1475072,12, +24986294_257692,20:07:00,20:08:00,1475073,13, +24986294_257692,20:14:00,20:14:00,1475074,14, +24986294_257692,20:20:00,20:21:00,1475075,15, +24986294_257692,20:23:00,20:24:00,1474967,16, +24986294_257692,20:30:00,20:30:00,1474968,17, +24986294_257692,20:34:00,20:35:00,1475076,18, +24986294_257692,20:39:00,20:40:00,1475056,19, +24986294_257692,20:46:00,20:47:00,1475077,20, +24986294_257692,20:49:00,20:50:00,1475078,21, +24986294_257692,20:52:00,20:52:00,1475079,22, +24986294_257692,20:55:00,20:55:00,1475080,23, +24986294_257692,20:59:00,20:59:00,1475057,24, +24986294_257692,21:07:00,21:08:00,1475081,25, +24986294_257692,21:13:00,21:13:00,1536289,26, +24986294_257692,21:17:00,21:18:00,1536290,27, +24986294_257692,21:21:00,21:21:00,1536291,28, +24986294_257692,21:26:00,21:26:00,1536287,29, +24986295_257693,19:07:00,19:07:00,1474738,0, +24986295_257693,19:12:00,19:12:00,1474963,1, +24986295_257693,19:15:00,19:16:00,1474792,2, +24986295_257693,19:17:00,19:18:00,1475065,3, +24986295_257693,19:21:00,19:21:00,1475066,4, +24986295_257693,19:26:00,19:26:00,1475067,5, +24986295_257693,19:28:00,19:29:00,1475068,6, +24986295_257693,19:31:00,19:31:00,1475069,7, +24986295_257693,19:36:00,19:37:00,1474786,8, +24986295_257693,19:40:00,19:41:00,1475070,9, +24986295_257693,19:45:00,19:46:00,1474784,10, +24986295_257693,19:53:00,19:54:00,1475071,11, +24986295_257693,19:56:00,19:56:00,1475072,12, +24986295_257693,20:01:00,20:02:00,1475073,13, +24986295_257693,20:07:00,20:07:00,1475074,14, +24986295_257693,20:15:00,20:15:00,1475075,15, +24986295_257693,20:18:00,20:18:00,1474967,16, +24986295_257693,20:25:00,20:25:00,1474968,17, +24986295_257693,20:29:00,20:30:00,1475076,18, +24986295_257693,20:34:00,20:35:00,1475056,19, +24986295_257693,20:41:00,20:42:00,1475077,20, +24986295_257693,20:44:00,20:45:00,1475078,21, +24986295_257693,20:47:00,20:47:00,1475079,22, +24986295_257693,20:49:00,20:50:00,1475080,23, +24986295_257693,20:54:00,20:54:00,1475057,24, +24986295_257693,21:01:00,21:02:00,1475081,25, +24986295_257693,21:07:00,21:08:00,1536289,26, +24986295_257693,21:12:00,21:13:00,1536290,27, +24986295_257693,21:15:00,21:16:00,1536291,28, +24986295_257693,21:21:00,21:21:00,1536287,29, +24986297_257695,21:00:00,21:00:00,1474640,0, +24986297_257695,21:05:00,21:06:00,1474963,1, +24986297_257695,21:09:00,21:09:00,1474792,2, +24986297_257695,21:11:00,21:12:00,1475065,3, +24986297_257695,21:15:00,21:15:00,1475066,4, +24986297_257695,21:20:00,21:21:00,1475067,5, +24986297_257695,21:23:00,21:24:00,1475068,6, +24986297_257695,21:26:00,21:27:00,1475069,7, +24986297_257695,21:31:00,21:34:00,1474786,8, +24986297_257695,21:39:00,21:39:00,1475070,9, +24986297_257695,21:44:00,21:45:00,1474784,10, +24986297_257695,21:53:00,21:53:00,1475071,11, +24986297_257695,21:55:00,21:56:00,1475072,12, +24986297_257695,22:00:00,22:01:00,1475073,13, +24986297_257695,22:07:00,22:08:00,1475074,14, +24986297_257695,22:14:00,22:15:00,1475075,15, +24986297_257695,22:18:00,22:18:00,1474967,16, +24986297_257695,22:25:00,22:25:00,1474968,17, +24986297_257695,22:30:00,22:30:00,1475076,18, +24986297_257695,22:34:00,22:35:00,1475056,19, +24986297_257695,22:41:00,22:42:00,1475077,20, +24986297_257695,22:44:00,22:45:00,1475078,21, +24986297_257695,22:47:00,22:47:00,1475079,22, +24986297_257695,22:49:00,22:50:00,1475080,23, +24986297_257695,22:54:00,22:54:00,1475057,24, +24986297_257695,23:02:00,23:03:00,1475081,25, +24986297_257695,23:08:00,23:08:00,1536289,26, +24986297_257695,23:12:00,23:13:00,1536290,27, +24986297_257695,23:16:00,23:16:00,1536291,28, +24986297_257695,23:22:00,23:22:00,1536287,29, +24986298_257696,20:54:00,20:54:00,1474640,0, +24986298_257696,20:59:00,20:59:00,1474963,1, +24986298_257696,21:02:00,21:02:00,1474792,2, +24986298_257696,21:04:00,21:04:00,1475065,3, +24986298_257696,21:08:00,21:08:00,1475066,4, +24986298_257696,21:13:00,21:14:00,1475067,5, +24986298_257696,21:16:00,21:16:00,1475068,6, +24986298_257696,21:19:00,21:19:00,1475069,7, +24986298_257696,21:24:00,21:25:00,1474786,8, +24986298_257696,21:29:00,21:29:00,1475070,9, +24986298_257696,21:33:00,21:34:00,1474784,10, +24986298_257696,21:42:00,21:43:00,1475071,11, +24986298_257696,21:45:00,21:45:00,1475072,12, +24986298_257696,21:49:00,21:50:00,1475073,13, +24986298_257696,21:55:00,21:56:00,1475074,14, +24986298_257696,22:04:00,22:04:00,1475075,15, +24986298_257696,22:07:00,22:08:00,1474967,16, +24986298_257696,22:14:00,22:15:00,1474968,17, +24986298_257696,22:20:00,22:20:00,1475076,18, +24986298_257696,22:25:00,22:26:00,1475056,19, +24986298_257696,22:31:00,22:32:00,1475077,20, +24986298_257696,22:34:00,22:35:00,1475078,21, +24986298_257696,22:37:00,22:37:00,1475079,22, +24986298_257696,22:40:00,22:40:00,1475080,23, +24986298_257696,22:44:00,22:45:00,1475057,24, +24986298_257696,22:53:00,22:54:00,1475081,25, +24986298_257696,22:59:00,22:59:00,1536289,26, +24986298_257696,23:03:00,23:04:00,1536290,27, +24986298_257696,23:07:00,23:07:00,1536291,28, +24986298_257696,23:12:00,23:12:00,1536287,29, +24986306_257704,05:32:00,05:32:00,1474947,0, +24986306_257704,05:36:00,05:37:00,1474962,1, +24986306_257704,05:41:00,05:41:00,1474961,2, +24986306_257704,05:43:00,05:44:00,1474960,3, +24986306_257704,05:46:00,05:47:00,1474959,4, +24986306_257704,05:51:00,05:52:00,1474958,5, +24986306_257704,05:53:00,05:54:00,1474957,6, +24986306_257704,05:58:00,05:58:00,1474966,7, +24986306_257704,06:00:00,06:01:00,1474955,8, +24986306_257704,06:04:00,06:04:00,1474954,9, +24986306_257704,06:08:00,06:08:00,1474967,10, +24986306_257704,06:15:00,06:15:00,1474968,11, +24986306_257704,06:24:00,06:45:00,1474951,12, +24986306_257704,06:51:00,06:51:00,1475077,13, +24986306_257704,06:53:00,06:54:00,1475078,14, +24986306_257704,06:56:00,06:56:00,1475079,15, +24986306_257704,06:59:00,06:59:00,1475080,16, +24986306_257704,07:03:00,07:03:00,1475057,17, +24986306_257704,07:11:00,07:11:00,1475081,18, +24986306_257704,07:16:00,07:17:00,1536289,19, +24986306_257704,07:22:00,07:22:00,1536290,20, +24986306_257704,07:26:00,07:26:00,1536291,21, +24986306_257704,07:31:00,07:31:00,1536287,22, +24986308_257706,05:35:00,05:35:00,1657886,0, +24986308_257706,05:39:00,05:40:00,1474962,1, +24986308_257706,05:44:00,05:44:00,1474961,2, +24986308_257706,05:46:00,05:47:00,1474960,3, +24986308_257706,05:49:00,05:50:00,1474959,4, +24986308_257706,05:54:00,05:55:00,1474958,5, +24986308_257706,05:56:00,05:57:00,1474957,6, +24986308_257706,06:01:00,06:01:00,1474966,7, +24986308_257706,06:03:00,06:04:00,1474955,8, +24986308_257706,06:07:00,06:07:00,1474954,9, +24986308_257706,06:11:00,06:11:00,1474967,10, +24986308_257706,06:18:00,06:18:00,1474968,11, +24986308_257706,06:26:00,06:46:00,1475056,12, +24986308_257706,06:51:00,06:52:00,1475077,13, +24986308_257706,06:54:00,06:54:00,1475078,14, +24986308_257706,06:56:00,06:57:00,1475079,15, +24986308_257706,06:59:00,07:00:00,1475080,16, +24986308_257706,07:03:00,07:04:00,1475057,17, +24986308_257706,07:11:00,07:11:00,1475081,18, +24986308_257706,07:16:00,07:17:00,1536289,19, +24986308_257706,07:21:00,07:21:00,1536290,20, +24986308_257706,07:24:00,07:24:00,1536291,21, +24986308_257706,07:30:00,07:30:00,1536287,22, +24986312_257710,05:34:00,05:34:00,1474908,0, +24986312_257710,05:37:00,05:38:00,1474907,1, +24986312_257710,05:41:00,05:42:00,1474906,2, +24986312_257710,05:47:00,05:47:00,1474905,3, +24986312_257710,05:51:00,05:52:00,1474904,4, +24986312_257710,05:57:00,05:57:00,1474903,5, +24986312_257710,06:03:00,06:07:00,1474738,6, +24986312_257710,06:11:00,06:12:00,1474701,7, +24986312_257710,06:16:00,06:17:00,1474703,8, +24986312_257710,06:21:00,06:22:00,1474704,9, +24986312_257710,06:24:00,06:25:00,1475083,10, +24986312_257710,06:29:00,06:30:00,1475085,11, +24986312_257710,06:39:00,06:40:00,1475099,12, +24986312_257710,06:46:00,06:48:00,1475089,13, +24986312_257710,06:55:00,06:55:00,1475090,14, +24986312_257710,07:00:00,07:01:00,1475098,15, +24986312_257710,07:06:00,07:07:00,1475092,16, +24986312_257710,07:12:00,07:13:00,1475094,17, +24986312_257710,07:21:00,07:21:00,1475095,18, +24986312_257710,07:23:00,07:24:00,1475096,19, +24986312_257710,07:30:00,07:30:00,1475097,20, +24986313_257711,05:36:00,05:36:00,1474908,0, +24986313_257711,05:38:00,05:39:00,1474907,1, +24986313_257711,05:43:00,05:43:00,1474906,2, +24986313_257711,05:48:00,05:49:00,1474905,3, +24986313_257711,05:52:00,05:53:00,1474904,4, +24986313_257711,05:59:00,06:00:00,1474903,5, +24986313_257711,06:05:00,06:13:00,1474861,6, +24986313_257711,06:17:00,06:18:00,1474701,7, +24986313_257711,06:22:00,06:23:00,1474703,8, +24986313_257711,06:27:00,06:28:00,1474704,9, +24986313_257711,06:30:00,06:31:00,1475083,10, +24986313_257711,06:35:00,06:36:00,1475085,11, +24986313_257711,06:45:00,06:46:00,1475099,12, +24986313_257711,06:51:00,06:51:00,1475089,13, +24986313_257711,06:57:00,06:58:00,1475090,14, +24986313_257711,07:03:00,07:03:00,1475098,15, +24986313_257711,07:09:00,07:09:00,1475092,16, +24986313_257711,07:15:00,07:16:00,1475094,17, +24986313_257711,07:24:00,07:24:00,1475095,18, +24986313_257711,07:26:00,07:27:00,1475096,19, +24986313_257711,07:33:00,07:33:00,1475097,20, +24986317_257715,08:36:00,08:36:00,1536279,0, +24986317_257715,08:40:00,08:41:00,1474701,1, +24986317_257715,08:45:00,08:46:00,1474703,2, +24986317_257715,08:50:00,08:51:00,1474704,3, +24986317_257715,08:53:00,08:54:00,1475083,4, +24986317_257715,08:58:00,08:59:00,1475085,5, +24986317_257715,09:08:00,09:09:00,1475099,6, +24986317_257715,09:16:00,09:16:00,1475089,7, +24986317_257715,09:22:00,09:22:00,1475090,8, +24986317_257715,09:27:00,09:27:00,1475098,9, +24986317_257715,09:33:00,09:33:00,1475092,10, +24986317_257715,09:39:00,09:40:00,1475094,11, +24986317_257715,09:48:00,09:48:00,1475095,12, +24986317_257715,09:50:00,09:52:00,1475096,13, +24986317_257715,09:58:00,09:58:00,1475097,14, +24986318_257716,07:40:00,07:40:00,1474908,0, +24986318_257716,07:43:00,07:44:00,1474907,1, +24986318_257716,07:48:00,07:49:00,1474906,2, +24986318_257716,07:54:00,07:54:00,1474905,3, +24986318_257716,07:58:00,07:58:00,1474904,4, +24986318_257716,08:04:00,08:04:00,1474903,5, +24986318_257716,08:09:00,08:35:00,1474861,6, +24986318_257716,08:40:00,08:41:00,1474701,7, +24986318_257716,08:44:00,08:45:00,1474703,8, +24986318_257716,08:49:00,08:50:00,1474704,9, +24986318_257716,08:52:00,08:53:00,1475083,10, +24986318_257716,08:57:00,08:58:00,1475085,11, +24986318_257716,09:07:00,09:08:00,1475099,12, +24986318_257716,09:13:00,09:13:00,1475089,13, +24986318_257716,09:19:00,09:19:00,1475090,14, +24986318_257716,09:24:00,09:24:00,1475098,15, +24986318_257716,09:30:00,09:30:00,1475092,16, +24986318_257716,09:36:00,09:37:00,1475094,17, +24986318_257716,09:45:00,09:45:00,1475095,18, +24986318_257716,09:48:00,09:49:00,1475096,19, +24986318_257716,09:55:00,09:55:00,1475097,20, +24986322_257720,08:36:00,08:36:00,1536279,0, +24986322_257720,08:40:00,08:41:00,1474701,1, +24986322_257720,08:45:00,08:46:00,1474703,2, +24986322_257720,08:50:00,08:51:00,1474704,3, +24986322_257720,08:53:00,08:54:00,1475083,4, +24986322_257720,08:58:00,08:59:00,1475085,5, +24986322_257720,09:08:00,09:09:00,1475099,6, +24986322_257720,09:16:00,09:16:00,1475089,7, +24986322_257720,09:22:00,09:22:00,1475090,8, +24986322_257720,09:27:00,09:27:00,1475098,9, +24986322_257720,09:33:00,09:33:00,1475092,10, +24986322_257720,09:39:00,09:40:00,1475094,11, +24986322_257720,09:48:00,09:48:00,1475095,12, +24986322_257720,09:50:00,09:52:00,1475096,13, +24986322_257720,09:58:00,09:58:00,1475097,14, +24986323_257721,08:35:00,08:35:00,1474738,0, +24986323_257721,08:40:00,08:41:00,1474701,1, +24986323_257721,08:44:00,08:45:00,1474703,2, +24986323_257721,08:49:00,08:50:00,1474704,3, +24986323_257721,08:52:00,08:53:00,1475083,4, +24986323_257721,08:57:00,08:58:00,1475085,5, +24986323_257721,09:07:00,09:08:00,1475099,6, +24986323_257721,09:13:00,09:13:00,1475089,7, +24986323_257721,09:19:00,09:19:00,1475090,8, +24986323_257721,09:24:00,09:24:00,1475098,9, +24986323_257721,09:30:00,09:30:00,1475092,10, +24986323_257721,09:36:00,09:37:00,1475094,11, +24986323_257721,09:45:00,09:45:00,1475095,12, +24986323_257721,09:48:00,09:49:00,1475096,13, +24986323_257721,09:55:00,09:55:00,1475097,14, +24986325_257723,09:44:00,09:44:00,1536279,0, +24986325_257723,09:49:00,09:50:00,1474701,1, +24986325_257723,09:55:00,09:56:00,1474703,2, +24986325_257723,10:00:00,10:00:00,1474704,3, +24986325_257723,10:03:00,10:03:00,1475083,4, +24986325_257723,10:08:00,10:08:00,1475085,5, +24986325_257723,10:18:00,10:18:00,1475099,6, +24986325_257723,10:24:00,10:24:00,1475089,7, +24986325_257723,10:30:00,10:31:00,1475090,8, +24986325_257723,10:36:00,10:36:00,1475098,9, +24986325_257723,10:42:00,10:42:00,1475092,10, +24986325_257723,10:49:00,10:49:00,1475094,11, +24986325_257723,10:58:00,10:58:00,1475095,12, +24986325_257723,11:00:00,11:01:00,1475096,13, +24986325_257723,11:07:00,11:07:00,1475097,14, +24986326_257724,09:45:00,09:45:00,1474738,0, +24986326_257724,09:51:00,09:53:00,1474701,1, +24986326_257724,09:57:00,09:59:00,1474703,2, +24986326_257724,10:04:00,10:05:00,1474704,3, +24986326_257724,10:08:00,10:09:00,1475083,4, +24986326_257724,10:14:00,10:15:00,1475085,5, +24986326_257724,10:24:00,10:25:00,1475099,6, +24986326_257724,10:30:00,10:30:00,1475089,7, +24986326_257724,10:36:00,10:37:00,1475090,8, +24986326_257724,10:42:00,10:42:00,1475098,9, +24986326_257724,10:48:00,10:48:00,1475092,10, +24986326_257724,10:54:00,10:55:00,1475094,11, +24986326_257724,11:03:00,11:04:00,1475095,12, +24986326_257724,11:06:00,11:06:00,1475096,13, +24986326_257724,11:13:00,11:13:00,1475097,14, +24986330_257728,10:42:00,10:42:00,1474908,0, +24986330_257728,10:45:00,10:46:00,1474907,1, +24986330_257728,10:49:00,10:50:00,1474906,2, +24986330_257728,10:55:00,10:55:00,1474905,3, +24986330_257728,10:59:00,11:00:00,1474904,4, +24986330_257728,11:05:00,11:06:00,1474903,5, +24986330_257728,11:12:00,11:22:00,1474861,6, +24986330_257728,11:27:00,11:28:00,1474701,7, +24986330_257728,11:32:00,11:33:00,1474703,8, +24986330_257728,11:37:00,11:37:00,1474704,9, +24986330_257728,11:40:00,11:40:00,1475083,10, +24986330_257728,11:44:00,11:45:00,1475085,11, +24986330_257728,11:55:00,11:55:00,1475099,12, +24986330_257728,12:03:00,12:04:00,1475089,13, +24986330_257728,12:10:00,12:10:00,1475090,14, +24986330_257728,12:15:00,12:16:00,1475098,15, +24986330_257728,12:21:00,12:22:00,1475092,16, +24986330_257728,12:28:00,12:28:00,1475094,17, +24986330_257728,12:36:00,12:37:00,1475095,18, +24986330_257728,12:39:00,12:40:00,1475096,19, +24986330_257728,12:46:00,12:46:00,1475097,20, +24986331_257729,10:48:00,10:48:00,1474908,0, +24986331_257729,10:51:00,10:51:00,1474907,1, +24986331_257729,10:55:00,10:56:00,1474906,2, +24986331_257729,11:01:00,11:01:00,1474905,3, +24986331_257729,11:05:00,11:07:00,1474904,4, +24986331_257729,11:12:00,11:13:00,1474903,5, +24986331_257729,11:18:00,11:22:00,1474861,6, +24986331_257729,11:27:00,11:28:00,1474701,7, +24986331_257729,11:32:00,11:33:00,1474703,8, +24986331_257729,11:37:00,11:37:00,1474704,9, +24986331_257729,11:40:00,11:40:00,1475083,10, +24986331_257729,11:44:00,11:45:00,1475085,11, +24986331_257729,11:54:00,11:54:00,1475099,12, +24986331_257729,12:01:00,12:01:00,1475089,13, +24986331_257729,12:07:00,12:07:00,1475090,14, +24986331_257729,12:12:00,12:12:00,1475098,15, +24986331_257729,12:18:00,12:18:00,1475092,16, +24986331_257729,12:24:00,12:25:00,1475094,17, +24986331_257729,12:33:00,12:33:00,1475095,18, +24986331_257729,12:35:00,12:36:00,1475096,19, +24986331_257729,12:42:00,12:42:00,1475097,20, +24986341_257739,12:35:00,12:35:00,1474908,0, +24986341_257739,12:38:00,12:39:00,1474907,1, +24986341_257739,12:43:00,12:43:00,1474906,2, +24986341_257739,12:48:00,12:49:00,1474905,3, +24986341_257739,12:52:00,12:58:00,1474904,4, +24986341_257739,13:03:00,13:04:00,1474903,5, +24986341_257739,13:09:00,13:13:00,1474738,6, +24986341_257739,13:17:00,13:18:00,1474701,7, +24986341_257739,13:20:00,13:21:00,1474702,8, +24986341_257739,13:22:00,13:23:00,1474703,9, +24986341_257739,13:27:00,13:28:00,1474704,10, +24986341_257739,13:30:00,13:31:00,1475083,11, +24986341_257739,13:33:00,13:34:00,1475084,12, +24986341_257739,13:36:00,13:36:00,1475085,13, +24986341_257739,13:40:00,13:41:00,1475086,14, +24986341_257739,13:48:00,14:00:00,1475210,15, +24986341_257739,14:04:00,14:04:00,1475088,16, +24986341_257739,14:10:00,14:10:00,1475089,17, +24986341_257739,14:16:00,14:17:00,1475090,18, +24986341_257739,14:21:00,14:22:00,1475098,19, +24986341_257739,14:27:00,14:27:00,1475092,20, +24986341_257739,14:33:00,14:34:00,1475094,21, +24986341_257739,14:42:00,14:42:00,1475095,22, +24986341_257739,14:44:00,14:45:00,1475096,23, +24986341_257739,14:51:00,14:51:00,1475097,24, +24986342_257740,12:40:00,12:40:00,1474908,0, +24986342_257740,12:43:00,12:44:00,1474907,1, +24986342_257740,12:47:00,12:48:00,1474906,2, +24986342_257740,12:53:00,12:53:00,1474905,3, +24986342_257740,12:57:00,12:57:00,1474904,4, +24986342_257740,13:02:00,13:03:00,1474903,5, +24986342_257740,13:08:00,13:12:00,1474861,6, +24986342_257740,13:17:00,13:18:00,1474701,7, +24986342_257740,13:20:00,13:20:00,1474702,8, +24986342_257740,13:22:00,13:23:00,1474703,9, +24986342_257740,13:27:00,13:28:00,1474704,10, +24986342_257740,13:30:00,13:30:00,1475083,11, +24986342_257740,13:33:00,13:34:00,1475084,12, +24986342_257740,13:36:00,13:36:00,1475085,13, +24986342_257740,13:41:00,13:41:00,1475086,14, +24986342_257740,13:47:00,13:57:00,1475210,15, +24986342_257740,14:01:00,14:01:00,1475088,16, +24986342_257740,14:06:00,14:07:00,1475089,17, +24986342_257740,14:13:00,14:13:00,1475090,18, +24986342_257740,14:18:00,14:18:00,1475098,19, +24986342_257740,14:23:00,14:24:00,1475092,20, +24986342_257740,14:30:00,14:30:00,1475094,21, +24986342_257740,14:38:00,14:38:00,1475095,22, +24986342_257740,14:40:00,14:41:00,1475096,23, +24986342_257740,14:47:00,14:47:00,1475097,24, +24986347_257745,14:36:00,14:36:00,1474908,0, +24986347_257745,14:39:00,14:40:00,1474907,1, +24986347_257745,14:43:00,14:44:00,1474906,2, +24986347_257745,14:49:00,14:49:00,1474905,3, +24986347_257745,14:54:00,15:00:00,1474904,4, +24986347_257745,15:05:00,15:05:00,1474903,5, +24986347_257745,15:11:00,15:20:00,1474738,6, +24986347_257745,15:24:00,15:25:00,1474701,7, +24986347_257745,15:27:00,15:28:00,1474702,8, +24986347_257745,15:30:00,15:31:00,1474703,9, +24986347_257745,15:35:00,15:35:00,1474704,10, +24986347_257745,15:38:00,15:38:00,1475083,11, +24986347_257745,15:41:00,15:42:00,1475084,12, +24986347_257745,15:44:00,15:44:00,1475085,13, +24986347_257745,15:49:00,15:49:00,1475086,14, +24986347_257745,15:55:00,16:03:00,1475210,15, +24986347_257745,16:07:00,16:08:00,1475088,16, +24986347_257745,16:13:00,16:14:00,1475089,17, +24986347_257745,16:19:00,16:20:00,1475090,18, +24986347_257745,16:25:00,16:25:00,1475098,19, +24986347_257745,16:30:00,16:31:00,1475092,20, +24986347_257745,16:34:00,16:34:00,1475093,21, +24986347_257745,16:38:00,16:39:00,1475094,22, +24986347_257745,16:47:00,16:47:00,1475095,23, +24986347_257745,16:49:00,16:50:00,1475096,24, +24986347_257745,16:56:00,16:56:00,1475097,25, +24986348_257746,14:31:00,14:31:00,1474908,0, +24986348_257746,14:33:00,14:34:00,1474907,1, +24986348_257746,14:38:00,14:38:00,1474906,2, +24986348_257746,14:43:00,14:44:00,1474905,3, +24986348_257746,14:48:00,14:53:00,1474904,4, +24986348_257746,14:58:00,14:58:00,1474903,5, +24986348_257746,15:04:00,15:20:00,1474861,6, +24986348_257746,15:25:00,15:26:00,1474701,7, +24986348_257746,15:28:00,15:28:00,1474702,8, +24986348_257746,15:30:00,15:31:00,1474703,9, +24986348_257746,15:35:00,15:36:00,1474704,10, +24986348_257746,15:39:00,15:39:00,1475083,11, +24986348_257746,15:42:00,15:43:00,1475084,12, +24986348_257746,15:45:00,15:46:00,1475085,13, +24986348_257746,15:50:00,15:51:00,1475086,14, +24986348_257746,15:56:00,16:04:00,1475210,15, +24986348_257746,16:08:00,16:08:00,1475088,16, +24986348_257746,16:13:00,16:14:00,1475089,17, +24986348_257746,16:20:00,16:20:00,1475090,18, +24986348_257746,16:25:00,16:25:00,1475098,19, +24986348_257746,16:30:00,16:31:00,1475092,20, +24986348_257746,16:34:00,16:34:00,1475093,21, +24986348_257746,16:38:00,16:39:00,1475094,22, +24986348_257746,16:47:00,16:47:00,1475095,23, +24986348_257746,16:49:00,16:50:00,1475096,24, +24986348_257746,16:56:00,16:56:00,1475097,25, +24986357_257755,18:57:00,18:57:00,1474908,0, +24986357_257755,19:00:00,19:01:00,1474907,1, +24986357_257755,19:04:00,19:05:00,1474906,2, +24986357_257755,19:09:00,19:10:00,1474905,3, +24986357_257755,19:14:00,19:14:00,1474904,4, +24986357_257755,19:19:00,19:20:00,1474903,5, +24986357_257755,19:26:00,19:35:00,1474738,6, +24986357_257755,19:39:00,19:40:00,1474701,7, +24986357_257755,19:42:00,19:43:00,1474702,8, +24986357_257755,19:45:00,19:46:00,1474703,9, +24986357_257755,19:49:00,19:50:00,1474704,10, +24986357_257755,19:52:00,19:53:00,1475083,11, +24986357_257755,19:55:00,19:56:00,1475084,12, +24986357_257755,19:58:00,19:58:00,1475085,13, +24986357_257755,20:02:00,20:03:00,1475086,14, +24986357_257755,20:08:00,20:18:00,1475210,15, +24986357_257755,20:22:00,20:22:00,1475088,16, +24986357_257755,20:28:00,20:28:00,1475089,17, +24986357_257755,20:34:00,20:34:00,1475090,18, +24986357_257755,20:39:00,20:39:00,1475098,19, +24986357_257755,20:44:00,20:45:00,1475092,20, +24986357_257755,20:48:00,20:48:00,1475093,21, +24986357_257755,20:52:00,20:53:00,1475094,22, +24986357_257755,21:01:00,21:01:00,1475095,23, +24986357_257755,21:03:00,21:04:00,1475096,24, +24986357_257755,21:10:00,21:10:00,1475097,25, +24986358_257756,18:57:00,18:57:00,1474908,0, +24986358_257756,19:00:00,19:00:00,1474907,1, +24986358_257756,19:04:00,19:04:00,1474906,2, +24986358_257756,19:09:00,19:10:00,1474905,3, +24986358_257756,19:13:00,19:14:00,1474904,4, +24986358_257756,19:19:00,19:20:00,1474903,5, +24986358_257756,19:25:00,19:30:00,1474861,6, +24986358_257756,19:34:00,19:35:00,1474701,7, +24986358_257756,19:37:00,19:38:00,1474702,8, +24986358_257756,19:40:00,19:41:00,1474703,9, +24986358_257756,19:44:00,19:45:00,1474704,10, +24986358_257756,19:47:00,19:48:00,1475083,11, +24986358_257756,19:50:00,19:51:00,1475084,12, +24986358_257756,19:53:00,19:53:00,1475085,13, +24986358_257756,19:57:00,19:58:00,1475086,14, +24986358_257756,20:03:00,20:13:00,1475210,15, +24986358_257756,20:17:00,20:17:00,1475088,16, +24986358_257756,20:22:00,20:23:00,1475089,17, +24986358_257756,20:29:00,20:29:00,1475090,18, +24986358_257756,20:34:00,20:34:00,1475098,19, +24986358_257756,20:40:00,20:40:00,1475092,20, +24986358_257756,20:43:00,20:43:00,1475093,21, +24986358_257756,20:47:00,20:48:00,1475094,22, +24986358_257756,20:56:00,20:56:00,1475095,23, +24986358_257756,20:58:00,20:59:00,1475096,24, +24986358_257756,21:05:00,21:05:00,1475097,25, +24986362_257760,22:31:00,22:31:00,1474908,0, +24986362_257760,22:34:00,22:35:00,1474907,1, +24986362_257760,22:38:00,22:39:00,1474906,2, +24986362_257760,22:44:00,22:44:00,1474905,3, +24986362_257760,22:48:00,22:49:00,1474904,4, +24986362_257760,22:54:00,22:54:00,1474903,5, +24986362_257760,23:00:00,23:04:00,1474738,6, +24986362_257760,23:08:00,23:09:00,1474701,7, +24986362_257760,23:11:00,23:12:00,1474702,8, +24986362_257760,23:14:00,23:15:00,1474703,9, +24986362_257760,23:19:00,23:20:00,1474704,10, +24986362_257760,23:22:00,23:23:00,1475083,11, +24986362_257760,23:26:00,23:26:00,1475084,12, +24986362_257760,23:28:00,23:29:00,1475085,13, +24986362_257760,23:33:00,23:34:00,1475086,14, +24986362_257760,23:40:00,23:48:00,1475210,15, +24986362_257760,23:51:00,23:52:00,1475088,16, +24986362_257760,23:57:00,23:58:00,1475089,17, +24986362_257760,24:03:00,24:04:00,1475090,18, +24986362_257760,24:09:00,24:09:00,1475098,19, +24986362_257760,24:15:00,24:15:00,1475092,20, +24986362_257760,24:21:00,24:22:00,1475094,21, +24986362_257760,24:30:00,24:30:00,1475095,22, +24986362_257760,24:32:00,24:33:00,1475096,23, +24986362_257760,24:39:00,24:39:00,1475097,24, +24986363_257761,22:24:00,22:24:00,1474908,0, +24986363_257761,22:27:00,22:27:00,1474907,1, +24986363_257761,22:32:00,22:32:00,1474906,2, +24986363_257761,22:37:00,22:38:00,1474905,3, +24986363_257761,22:41:00,22:42:00,1474904,4, +24986363_257761,22:47:00,22:48:00,1474903,5, +24986363_257761,22:53:00,22:57:00,1474861,6, +24986363_257761,23:02:00,23:03:00,1474701,7, +24986363_257761,23:05:00,23:05:00,1474702,8, +24986363_257761,23:07:00,23:08:00,1474703,9, +24986363_257761,23:12:00,23:13:00,1474704,10, +24986363_257761,23:15:00,23:16:00,1475083,11, +24986363_257761,23:19:00,23:19:00,1475084,12, +24986363_257761,23:21:00,23:22:00,1475085,13, +24986363_257761,23:26:00,23:27:00,1475086,14, +24986363_257761,23:33:00,23:41:00,1475210,15, +24986363_257761,23:44:00,23:45:00,1475088,16, +24986363_257761,23:50:00,23:51:00,1475089,17, +24986363_257761,23:56:00,23:57:00,1475090,18, +24986363_257761,24:02:00,24:02:00,1475098,19, +24986363_257761,24:07:00,24:08:00,1475092,20, +24986363_257761,24:14:00,24:14:00,1475094,21, +24986363_257761,24:22:00,24:23:00,1475095,22, +24986363_257761,24:25:00,24:26:00,1475096,23, +24986363_257761,24:32:00,24:32:00,1475097,24, +24986367_257765,23:04:00,23:04:00,1474738,0, +24986367_257765,23:08:00,23:09:00,1474701,1, +24986367_257765,23:11:00,23:12:00,1474702,2, +24986367_257765,23:14:00,23:15:00,1474703,3, +24986367_257765,23:19:00,23:20:00,1474704,4, +24986367_257765,23:22:00,23:23:00,1475083,5, +24986367_257765,23:26:00,23:26:00,1475084,6, +24986367_257765,23:28:00,23:29:00,1475085,7, +24986367_257765,23:33:00,23:34:00,1475086,8, +24986367_257765,23:40:00,23:48:00,1475210,9, +24986367_257765,23:51:00,23:52:00,1475088,10, +24986367_257765,23:57:00,23:58:00,1475089,11, +24986367_257765,24:03:00,24:04:00,1475090,12, +24986367_257765,24:09:00,24:09:00,1475098,13, +24986367_257765,24:15:00,24:15:00,1475092,14, +24986367_257765,24:21:00,24:22:00,1475094,15, +24986367_257765,24:30:00,24:30:00,1475095,16, +24986367_257765,24:32:00,24:33:00,1475096,17, +24986367_257765,24:39:00,24:39:00,1475097,18, +24986368_257766,22:57:00,22:57:00,1474738,0, +24986368_257766,23:02:00,23:03:00,1474701,1, +24986368_257766,23:05:00,23:05:00,1474702,2, +24986368_257766,23:07:00,23:08:00,1474703,3, +24986368_257766,23:12:00,23:13:00,1474704,4, +24986368_257766,23:15:00,23:16:00,1475083,5, +24986368_257766,23:19:00,23:19:00,1475084,6, +24986368_257766,23:21:00,23:22:00,1475085,7, +24986368_257766,23:26:00,23:27:00,1475086,8, +24986368_257766,23:33:00,23:41:00,1475210,9, +24986368_257766,23:44:00,23:45:00,1475088,10, +24986368_257766,23:50:00,23:51:00,1475089,11, +24986368_257766,23:56:00,23:57:00,1475090,12, +24986368_257766,24:02:00,24:02:00,1475098,13, +24986368_257766,24:07:00,24:08:00,1475092,14, +24986368_257766,24:14:00,24:14:00,1475094,15, +24986368_257766,24:22:00,24:23:00,1475095,16, +24986368_257766,24:25:00,24:26:00,1475096,17, +24986368_257766,24:32:00,24:32:00,1475097,18, +24986369_257767,06:31:00,06:31:00,1474738,0, +24986369_257767,07:04:00,07:06:00,1474843,1, +24986369_257767,07:27:00,07:28:00,1474958,2, +24986369_257767,07:53:00,07:54:00,1475056,3, +24986369_257767,08:26:00,08:27:00,1536288,4, +24986369_257767,10:28:00,10:29:00,1970856,5, +24986369_257767,11:18:00,11:19:00,1475103,6, +24986369_257767,11:30:00,11:30:00,1657890,7, +24986370_257768,08:00:00,08:00:00,1474640,0, +24986370_257768,08:06:00,08:07:00,1474794,1, +24986370_257768,08:17:00,08:18:00,1474795,2, +24986370_257768,08:31:00,08:32:00,1474796,3, +24986370_257768,08:37:00,08:38:00,1474714,4, +24986370_257768,08:45:00,08:45:00,1474989,5, +24986370_257768,08:55:00,08:55:00,1474990,6, +24986370_257768,08:59:00,09:04:00,1474779,7, +24986370_257768,09:07:00,09:08:00,1474816,8, +24986370_257768,09:17:00,09:18:00,1474781,9, +24986370_257768,09:24:00,09:24:00,1536270,10, +24986370_257768,09:27:00,09:28:00,1536269,11, +24986370_257768,09:31:00,09:32:00,1536268,12, +24986370_257768,09:37:00,09:38:00,1536267,13, +24986370_257768,09:46:00,09:47:00,1475111,14, +24986370_257768,10:00:00,10:00:00,1536276,15, +24986370_257768,10:03:00,10:03:00,1536275,16, +24986370_257768,10:07:00,10:07:00,1536274,17, +24986370_257768,10:12:00,10:12:00,1536273,18, +24986371_257769,08:00:00,08:00:00,1474738,0, +24986371_257769,08:06:00,08:07:00,1474794,1, +24986371_257769,08:18:00,08:19:00,1474795,2, +24986371_257769,08:32:00,08:32:00,1474796,3, +24986371_257769,08:37:00,08:38:00,1474714,4, +24986371_257769,08:45:00,08:45:00,1474989,5, +24986371_257769,08:55:00,08:55:00,1474990,6, +24986371_257769,08:59:00,09:00:00,1474779,7, +24986371_257769,09:03:00,09:03:00,1474780,8, +24986371_257769,09:12:00,09:13:00,1474781,9, +24986371_257769,09:19:00,09:19:00,1536270,10, +24986371_257769,09:22:00,09:23:00,1536269,11, +24986371_257769,09:26:00,09:26:00,1536268,12, +24986371_257769,09:32:00,09:38:00,1536267,13, +24986371_257769,09:46:00,09:46:00,1475111,14, +24986372_257770,15:40:00,15:40:00,1474640,0, +24986372_257770,15:46:00,15:46:00,1474794,1, +24986372_257770,15:57:00,15:58:00,1474795,2, +24986372_257770,16:11:00,16:11:00,1474796,3, +24986372_257770,16:16:00,16:17:00,1474714,4, +24986372_257770,16:24:00,16:24:00,1474989,5, +24986372_257770,16:34:00,16:34:00,1474990,6, +24986372_257770,16:38:00,16:39:00,1474779,7, +24986372_257770,16:42:00,16:43:00,1474816,8, +24986372_257770,16:52:00,16:59:00,1474781,9, +24986372_257770,17:06:00,17:06:00,1536270,10, +24986372_257770,17:10:00,17:11:00,1536269,11, +24986372_257770,17:14:00,17:16:00,1536268,12, +24986372_257770,17:22:00,17:36:00,1536267,13, +24986372_257770,17:46:00,17:47:00,1475111,14, +24986372_257770,18:00:00,18:00:00,1536276,15, +24986372_257770,18:03:00,18:03:00,1536275,16, +24986372_257770,18:07:00,18:07:00,1536274,17, +24986372_257770,18:12:00,18:12:00,1536273,18, +24986373_257771,15:50:00,15:50:00,1474640,0, +24986373_257771,15:56:00,15:56:00,1474794,1, +24986373_257771,16:06:00,16:07:00,1474795,2, +24986373_257771,16:20:00,16:21:00,1474796,3, +24986373_257771,16:25:00,16:27:00,1474714,4, +24986373_257771,16:34:00,16:35:00,1474989,5, +24986373_257771,16:44:00,16:45:00,1474990,6, +24986373_257771,16:49:00,16:51:00,1474779,7, +24986373_257771,16:53:00,16:54:00,1474780,8, +24986373_257771,17:03:00,17:09:00,1474781,9, +24986373_257771,17:15:00,17:15:00,1536270,10, +24986373_257771,17:18:00,17:19:00,1536269,11, +24986373_257771,17:22:00,17:23:00,1536268,12, +24986373_257771,17:29:00,17:37:00,1536267,13, +24986373_257771,17:46:00,17:46:00,1475111,14, +24986379_257777,18:02:00,18:02:00,1474988,0, +24986379_257777,18:48:00,18:48:00,1475114,1, +24986379_257777,19:25:00,19:25:00,1475115,2, +24986379_257777,21:22:00,21:22:00,1475116,3, +24986379_257777,21:31:00,21:31:00,1475117,4, +24986380_257778,16:04:00,16:04:00,1474651,0, +24986380_257778,16:47:00,17:15:00,1657886,1, +24986380_257778,17:26:00,17:27:00,1474839,2, +24986380_257778,17:43:00,17:44:00,1475112,3, +24986380_257778,17:59:00,18:02:00,1475113,4, +24986380_257778,18:48:00,18:48:00,1475114,5, +24986380_257778,19:25:00,19:25:00,1475115,6, +24986380_257778,21:22:00,21:22:00,1475116,7, +24986380_257778,21:31:00,21:31:00,1475117,8, +24986381_257779,16:34:00,16:34:00,1474738,0, +24986381_257779,17:13:00,17:15:00,1657886,1, +24986381_257779,17:26:00,17:27:00,1474839,2, +24986381_257779,17:43:00,17:44:00,1475112,3, +24986381_257779,18:00:00,18:00:00,1475190,4, +24986386_257784,19:35:00,19:35:00,1536277,0, +24986386_257784,20:15:00,20:17:00,1657886,1, +24986386_257784,20:28:00,20:29:00,1474839,2, +24986386_257784,20:45:00,20:46:00,1475112,3, +24986386_257784,21:01:00,21:04:00,1475113,4, +24986386_257784,21:48:00,21:48:00,1475114,5, +24986386_257784,22:25:00,22:25:00,1475115,6, +24986386_257784,23:40:00,23:40:00,1475116,7, +24986386_257784,23:48:00,23:48:00,1475117,8, +24986387_257785,19:35:00,19:35:00,1474640,0, +24986387_257785,20:15:00,20:17:00,1657886,1, +24986387_257785,20:28:00,20:29:00,1474839,2, +24986387_257785,20:45:00,20:46:00,1475112,3, +24986387_257785,21:01:00,21:01:00,1475113,4, +24986388_257786,19:35:00,19:35:00,1474640,0, +24986388_257786,20:15:00,20:17:00,1657886,1, +24986388_257786,20:28:00,20:29:00,1474839,2, +24986388_257786,20:45:00,20:46:00,1475112,3, +24986388_257786,21:01:00,21:01:00,1475113,4, +24986389_257787,19:35:00,19:35:00,1474640,0, +24986389_257787,20:15:00,20:17:00,1657886,1, +24986389_257787,20:28:00,20:29:00,1474839,2, +24986389_257787,20:45:00,20:46:00,1475112,3, +24986389_257787,21:01:00,21:01:00,1475113,4, +24986392_257790,06:26:00,06:26:00,1536277,0, +24986392_257790,06:31:00,06:32:00,1474794,1, +24986392_257790,06:41:00,06:42:00,1474795,2, +24986392_257790,06:54:00,06:54:00,1474796,3, +24986392_257790,06:58:00,06:59:00,1474714,4, +24986392_257790,07:05:00,07:06:00,1474989,5, +24986392_257790,07:15:00,07:15:00,1474990,6, +24986392_257790,07:19:00,07:20:00,1474779,7, +24986392_257790,07:23:00,07:24:00,1474816,8, +24986392_257790,07:41:00,07:41:00,1474820,9, +24986392_257790,07:52:00,07:53:00,1474821,10, +24986392_257790,08:01:00,08:02:00,1474757,11, +24986392_257790,08:09:00,08:10:00,1474822,12, +24986392_257790,08:20:00,08:27:00,1474823,13, +24986392_257790,08:29:00,08:29:00,1475118,14, +24986392_257790,08:40:00,08:40:00,1475119,15, +24986392_257790,08:45:00,08:46:00,1475120,16, +24986392_257790,08:51:00,08:57:00,1475121,17, +24986392_257790,09:09:00,09:10:00,1475122,18, +24986392_257790,09:14:00,09:15:00,1475123,19, +24986392_257790,09:19:00,09:19:00,1475124,20, +24986393_257791,06:26:00,06:26:00,1474640,0, +24986393_257791,06:31:00,06:32:00,1474794,1, +24986393_257791,06:42:00,06:42:00,1474795,2, +24986393_257791,06:55:00,06:55:00,1474796,3, +24986393_257791,06:59:00,07:00:00,1474714,4, +24986393_257791,07:07:00,07:07:00,1474989,5, +24986393_257791,07:17:00,07:17:00,1474990,6, +24986393_257791,07:21:00,07:22:00,1474779,7, +24986393_257791,07:24:00,07:25:00,1474780,8, +24986393_257791,07:41:00,07:41:00,1474820,9, +24986393_257791,07:52:00,07:52:00,1474821,10, +24986393_257791,07:58:00,07:58:00,1474757,11, +24986393_257791,08:06:00,08:06:00,1474822,12, +24986393_257791,08:17:00,08:27:00,1474823,13, +24986393_257791,08:29:00,08:30:00,1475118,14, +24986393_257791,08:40:00,08:40:00,1475119,15, +24986393_257791,08:45:00,08:46:00,1475120,16, +24986393_257791,08:51:00,08:57:00,1475121,17, +24986393_257791,09:09:00,09:10:00,1475122,18, +24986393_257791,09:14:00,09:15:00,1475123,19, +24986393_257791,09:19:00,09:19:00,1475124,20, +24986399_257797,08:22:00,08:22:00,1474651,0, +24986399_257797,08:27:00,08:28:00,1474794,1, +24986399_257797,08:37:00,08:38:00,1474795,2, +24986399_257797,08:51:00,08:52:00,1474796,3, +24986399_257797,08:56:00,08:57:00,1474714,4, +24986399_257797,09:04:00,09:04:00,1474989,5, +24986399_257797,09:14:00,09:14:00,1474990,6, +24986399_257797,09:19:00,09:27:00,1474779,7, +24986399_257797,09:30:00,09:30:00,1474816,8, +24986399_257797,09:48:00,09:49:00,1474820,9, +24986399_257797,09:59:00,10:00:00,1474821,10, +24986399_257797,10:08:00,10:09:00,1474757,11, +24986399_257797,10:16:00,10:16:00,1474822,12, +24986399_257797,10:25:00,10:27:00,1474823,13, +24986399_257797,10:29:00,10:30:00,1475118,14, +24986399_257797,10:40:00,10:40:00,1475119,15, +24986399_257797,10:45:00,10:46:00,1475120,16, +24986399_257797,10:51:00,10:57:00,1475121,17, +24986399_257797,11:09:00,11:09:00,1475122,18, +24986399_257797,11:14:00,11:14:00,1475123,19, +24986399_257797,11:19:00,11:19:00,1475127,20, +24986400_257798,08:36:00,08:36:00,1474640,0, +24986400_257798,08:41:00,08:42:00,1474794,1, +24986400_257798,08:51:00,08:52:00,1474795,2, +24986400_257798,09:04:00,09:05:00,1474796,3, +24986400_257798,09:09:00,09:09:00,1474714,4, +24986400_257798,09:16:00,09:16:00,1474989,5, +24986400_257798,09:25:00,09:26:00,1474990,6, +24986400_257798,09:30:00,09:31:00,1474779,7, +24986400_257798,09:33:00,09:34:00,1474780,8, +24986400_257798,09:50:00,09:50:00,1474820,9, +24986400_257798,10:00:00,10:01:00,1474821,10, +24986400_257798,10:06:00,10:07:00,1474757,11, +24986400_257798,10:14:00,10:14:00,1474822,12, +24986400_257798,10:24:00,10:29:00,1474823,13, +24986400_257798,10:31:00,10:32:00,1475118,14, +24986400_257798,10:42:00,10:42:00,1475119,15, +24986400_257798,10:47:00,10:48:00,1475120,16, +24986400_257798,10:53:00,10:59:00,1475121,17, +24986400_257798,11:11:00,11:12:00,1475122,18, +24986400_257798,11:16:00,11:17:00,1475123,19, +24986400_257798,11:21:00,11:21:00,1475124,20, +24986402_257800,13:42:00,13:42:00,1474651,0, +24986402_257800,13:47:00,13:48:00,1474794,1, +24986402_257800,13:59:00,13:59:00,1474795,2, +24986402_257800,14:11:00,14:12:00,1474796,3, +24986402_257800,14:16:00,14:16:00,1474714,4, +24986402_257800,14:23:00,14:23:00,1474989,5, +24986402_257800,14:32:00,14:33:00,1474990,6, +24986402_257800,14:37:00,14:37:00,1474779,7, +24986404_257802,13:42:00,13:42:00,1474640,0, +24986404_257802,13:47:00,13:48:00,1474794,1, +24986404_257802,13:58:00,13:58:00,1474795,2, +24986404_257802,14:11:00,14:11:00,1474796,3, +24986404_257802,14:15:00,14:16:00,1474714,4, +24986404_257802,14:22:00,14:23:00,1474989,5, +24986404_257802,14:32:00,14:33:00,1474990,6, +24986404_257802,14:37:00,14:37:00,1474779,7, +24986406_257804,17:27:00,17:27:00,1536277,0, +24986406_257804,17:32:00,17:33:00,1474794,1, +24986406_257804,17:44:00,17:44:00,1474795,2, +24986406_257804,17:56:00,17:57:00,1474796,3, +24986406_257804,18:01:00,18:01:00,1474714,4, +24986406_257804,18:08:00,18:10:00,1474989,5, +24986406_257804,18:19:00,18:20:00,1474990,6, +24986406_257804,18:24:00,18:25:00,1474779,7, +24986406_257804,18:28:00,18:28:00,1474816,8, +24986406_257804,18:39:00,18:45:00,1474781,9, +24986406_257804,18:53:00,18:54:00,1474820,10, +24986406_257804,19:05:00,19:05:00,1474821,11, +24986406_257804,19:13:00,19:14:00,1474757,12, +24986406_257804,19:21:00,19:22:00,1474822,13, +24986406_257804,19:30:00,19:31:00,1474823,14, +24986406_257804,19:34:00,19:34:00,1475118,15, +24986406_257804,19:44:00,19:45:00,1475119,16, +24986406_257804,19:50:00,19:50:00,1475120,17, +24986406_257804,19:55:00,19:55:00,1475121,18, +24986406_257804,20:07:00,20:08:00,1475122,19, +24986406_257804,20:12:00,20:13:00,1475123,20, +24986406_257804,20:17:00,20:17:00,1475124,21, +24986407_257805,17:37:00,17:37:00,1474640,0, +24986407_257805,17:42:00,17:43:00,1474794,1, +24986407_257805,17:53:00,17:53:00,1474795,2, +24986407_257805,18:06:00,18:06:00,1474796,3, +24986407_257805,18:10:00,18:11:00,1474714,4, +24986407_257805,18:18:00,18:18:00,1474989,5, +24986407_257805,18:28:00,18:28:00,1474990,6, +24986407_257805,18:32:00,18:33:00,1474779,7, +24986407_257805,18:35:00,18:36:00,1474780,8, +24986407_257805,18:45:00,18:46:00,1474781,9, +24986407_257805,18:53:00,18:54:00,1474820,10, +24986407_257805,19:05:00,19:05:00,1474821,11, +24986407_257805,19:11:00,19:11:00,1474757,12, +24986407_257805,19:18:00,19:19:00,1474822,13, +24986407_257805,19:27:00,19:28:00,1474823,14, +24986407_257805,19:31:00,19:31:00,1475118,15, +24986407_257805,19:41:00,19:42:00,1475119,16, +24986407_257805,19:47:00,19:47:00,1475120,17, +24986407_257805,19:52:00,19:52:00,1475121,18, +24986407_257805,20:04:00,20:05:00,1475122,19, +24986407_257805,20:09:00,20:10:00,1475123,20, +24986407_257805,20:14:00,20:14:00,1475124,21, +24986409_257807,08:52:00,08:52:00,1474755,0, +24986409_257807,09:01:00,09:02:00,1474756,1, +24986409_257807,09:09:00,09:09:00,1474757,2, +24986409_257807,09:18:00,09:18:00,1474758,3, +24986409_257807,09:29:00,09:29:00,1474759,4, +24986409_257807,09:36:00,09:37:00,1474760,5, +24986409_257807,09:44:00,09:45:00,1474816,6, +24986409_257807,09:48:00,09:49:00,1474779,7, +24986409_257807,09:53:00,09:54:00,1475125,8, +24986409_257807,10:03:00,10:03:00,1475126,9, +24986409_257807,10:10:00,10:11:00,1474720,10, +24986409_257807,10:14:00,10:15:00,1474796,11, +24986409_257807,10:28:00,10:28:00,1474818,12, +24986409_257807,10:38:00,10:39:00,1474819,13, +24986409_257807,10:45:00,10:45:00,1536277,14, +24986411_257809,08:40:00,08:40:00,1474755,0, +24986411_257809,08:49:00,08:50:00,1474756,1, +24986411_257809,08:56:00,08:57:00,1474757,2, +24986411_257809,09:03:00,09:04:00,1474758,3, +24986411_257809,09:14:00,09:15:00,1474759,4, +24986411_257809,09:29:00,09:29:00,1474816,5, +24986411_257809,09:33:00,09:34:00,1474779,6, +24986411_257809,09:37:00,09:38:00,1475125,7, +24986411_257809,09:47:00,09:48:00,1475126,8, +24986411_257809,09:54:00,09:55:00,1474720,9, +24986411_257809,09:58:00,09:59:00,1474796,10, +24986411_257809,10:12:00,10:13:00,1474818,11, +24986411_257809,10:22:00,10:23:00,1474819,12, +24986411_257809,10:30:00,10:30:00,1474640,13, +24986413_257811,10:47:00,10:47:00,1474760,0, +24986413_257811,10:55:00,10:55:00,1474816,1, +24986413_257811,10:59:00,11:00:00,1474779,2, +24986413_257811,11:03:00,11:04:00,1475125,3, +24986413_257811,11:13:00,11:13:00,1475126,4, +24986413_257811,11:20:00,11:20:00,1474720,5, +24986413_257811,11:24:00,11:25:00,1474796,6, +24986413_257811,11:39:00,11:39:00,1474818,7, +24986413_257811,11:49:00,11:50:00,1474819,8, +24986413_257811,11:57:00,11:57:00,1536277,9, +24986414_257812,10:47:00,10:47:00,1474760,0, +24986414_257812,10:54:00,10:54:00,1474816,1, +24986414_257812,10:58:00,10:59:00,1474779,2, +24986414_257812,11:02:00,11:03:00,1475125,3, +24986414_257812,11:12:00,11:12:00,1475126,4, +24986414_257812,11:19:00,11:19:00,1474720,5, +24986414_257812,11:23:00,11:23:00,1474796,6, +24986414_257812,11:37:00,11:38:00,1474818,7, +24986414_257812,11:48:00,11:50:00,1474819,8, +24986414_257812,11:57:00,11:57:00,1474640,9, +24986416_257814,13:23:00,13:23:00,1475127,0, +24986416_257814,13:26:00,13:27:00,1475123,1, +24986416_257814,13:31:00,13:32:00,1475122,2, +24986416_257814,13:44:00,13:50:00,1475121,3, +24986416_257814,13:54:00,13:55:00,1475120,4, +24986416_257814,14:00:00,14:01:00,1475119,5, +24986416_257814,14:11:00,14:12:00,1475118,6, +24986416_257814,14:15:00,14:28:00,1474755,7, +24986416_257814,14:37:00,14:38:00,1474756,8, +24986416_257814,14:44:00,14:45:00,1474757,9, +24986416_257814,14:53:00,14:54:00,1474758,10, +24986416_257814,15:05:00,15:05:00,1474759,11, +24986416_257814,15:24:00,15:25:00,1474816,12, +24986416_257814,15:28:00,15:29:00,1474779,13, +24986416_257814,15:33:00,15:33:00,1475125,14, +24986416_257814,15:42:00,15:43:00,1475126,15, +24986416_257814,15:49:00,15:50:00,1474720,16, +24986416_257814,15:54:00,15:54:00,1474796,17, +24986416_257814,16:07:00,16:08:00,1474818,18, +24986416_257814,16:18:00,16:19:00,1474819,19, +24986416_257814,16:25:00,16:25:00,1536277,20, +24986417_257815,13:20:00,13:20:00,1475127,0, +24986417_257815,13:23:00,13:24:00,1475123,1, +24986417_257815,13:28:00,13:29:00,1475122,2, +24986417_257815,13:41:00,13:47:00,1475121,3, +24986417_257815,13:51:00,13:52:00,1475120,4, +24986417_257815,13:57:00,13:57:00,1475119,5, +24986417_257815,14:08:00,14:09:00,1475118,6, +24986417_257815,14:12:00,14:16:00,1474755,7, +24986417_257815,14:25:00,14:25:00,1474756,8, +24986417_257815,14:32:00,14:32:00,1474757,9, +24986417_257815,14:38:00,14:39:00,1474758,10, +24986417_257815,14:49:00,14:50:00,1474759,11, +24986417_257815,15:04:00,15:04:00,1474816,12, +24986417_257815,15:08:00,15:09:00,1474779,13, +24986417_257815,15:13:00,15:13:00,1475125,14, +24986417_257815,15:22:00,15:23:00,1475126,15, +24986417_257815,15:30:00,15:31:00,1474720,16, +24986417_257815,15:34:00,15:35:00,1474796,17, +24986417_257815,15:48:00,15:49:00,1474818,18, +24986417_257815,15:58:00,15:59:00,1474819,19, +24986417_257815,16:06:00,16:06:00,1474640,20, +24986420_257818,17:00:00,17:00:00,1474779,0, +24986420_257818,17:04:00,17:04:00,1475125,1, +24986420_257818,17:13:00,17:14:00,1475126,2, +24986420_257818,17:20:00,17:28:00,1474720,3, +24986420_257818,17:32:00,17:33:00,1474796,4, +24986420_257818,17:48:00,17:48:00,1474818,5, +24986420_257818,17:59:00,18:00:00,1474819,6, +24986420_257818,18:07:00,18:07:00,1536277,7, +24986421_257819,16:55:00,16:55:00,1474779,0, +24986421_257819,16:59:00,17:00:00,1475125,1, +24986421_257819,17:09:00,17:10:00,1475126,2, +24986421_257819,17:16:00,17:17:00,1474720,3, +24986421_257819,17:21:00,17:22:00,1474796,4, +24986421_257819,17:35:00,17:36:00,1474818,5, +24986421_257819,17:46:00,17:47:00,1474819,6, +24986421_257819,17:54:00,17:54:00,1474640,7, +24986423_257821,19:14:00,19:14:00,1474779,0, +24986423_257821,19:18:00,19:18:00,1475125,1, +24986423_257821,19:27:00,19:28:00,1475126,2, +24986423_257821,19:35:00,19:36:00,1474720,3, +24986423_257821,19:40:00,19:41:00,1474796,4, +24986423_257821,19:54:00,19:55:00,1474818,5, +24986423_257821,20:05:00,20:06:00,1474819,6, +24986423_257821,20:12:00,20:12:00,1536277,7, +24986424_257822,19:13:00,19:13:00,1474779,0, +24986424_257822,19:17:00,19:17:00,1475125,1, +24986424_257822,19:26:00,19:27:00,1475126,2, +24986424_257822,19:34:00,19:35:00,1474720,3, +24986424_257822,19:39:00,19:40:00,1474796,4, +24986424_257822,19:53:00,19:54:00,1474818,5, +24986424_257822,20:04:00,20:05:00,1474819,6, +24986424_257822,20:11:00,20:11:00,1474640,7, +24986426_257824,19:19:00,19:19:00,1474760,0, +24986426_257824,19:27:00,19:27:00,1474816,1, +24986426_257824,19:31:00,19:32:00,1474779,2, +24986426_257824,19:35:00,19:36:00,1475125,3, +24986426_257824,19:45:00,19:46:00,1475126,4, +24986426_257824,19:52:00,19:53:00,1474720,5, +24986426_257824,19:56:00,19:57:00,1474796,6, +24986426_257824,20:10:00,20:10:00,1474818,7, +24986426_257824,20:20:00,20:20:00,1474819,8, +24986426_257824,20:27:00,20:27:00,1474640,9, +24986427_257825,05:40:00,05:40:00,1474947,0, +24986427_257825,05:58:00,05:59:00,1474949,1, +24986427_257825,06:14:00,06:15:00,1474950,2, +24986427_257825,06:18:00,06:18:00,1474793,3, +24986427_257825,06:24:00,06:24:00,1474640,4, +24986428_257826,19:10:00,19:10:00,1474760,0, +24986428_257826,19:18:00,19:18:00,1474816,1, +24986428_257826,19:22:00,19:23:00,1474779,2, +24986428_257826,19:27:00,19:28:00,1475125,3, +24986428_257826,19:37:00,19:38:00,1475126,4, +24986428_257826,19:44:00,19:45:00,1474720,5, +24986428_257826,19:48:00,19:49:00,1474796,6, +24986428_257826,20:02:00,20:02:00,1474818,7, +24986428_257826,20:12:00,20:13:00,1474819,8, +24986428_257826,20:19:00,20:19:00,1474640,9, +24986430_257828,17:37:00,17:37:00,1475124,0, +24986430_257828,17:40:00,17:41:00,1475123,1, +24986430_257828,17:45:00,17:46:00,1475122,2, +24986430_257828,17:58:00,18:04:00,1475121,3, +24986430_257828,18:08:00,18:09:00,1475120,4, +24986430_257828,18:14:00,18:14:00,1475119,5, +24986430_257828,18:25:00,18:25:00,1475118,6, +24986430_257828,18:28:00,18:35:00,1474755,7, +24986430_257828,18:44:00,18:44:00,1474756,8, +24986430_257828,18:51:00,18:52:00,1474757,9, +24986430_257828,19:00:00,19:02:00,1474758,10, +24986430_257828,19:12:00,19:12:00,1474759,11, +24986430_257828,19:27:00,19:27:00,1474816,12, +24986430_257828,19:31:00,19:32:00,1474779,13, +24986430_257828,19:35:00,19:36:00,1475125,14, +24986430_257828,19:45:00,19:46:00,1475126,15, +24986430_257828,19:52:00,19:53:00,1474720,16, +24986430_257828,19:56:00,19:57:00,1474796,17, +24986430_257828,20:10:00,20:10:00,1474818,18, +24986430_257828,20:20:00,20:20:00,1474819,19, +24986430_257828,20:27:00,20:27:00,1474640,20, +24986431_257829,17:35:00,17:35:00,1475127,0, +24986431_257829,17:38:00,17:39:00,1475123,1, +24986431_257829,17:43:00,17:44:00,1475122,2, +24986431_257829,17:56:00,18:02:00,1475121,3, +24986431_257829,18:07:00,18:07:00,1475120,4, +24986431_257829,18:12:00,18:13:00,1475119,5, +24986431_257829,18:23:00,18:24:00,1475118,6, +24986431_257829,18:27:00,18:38:00,1474755,7, +24986431_257829,18:47:00,18:47:00,1474756,8, +24986431_257829,18:54:00,18:55:00,1474757,9, +24986431_257829,19:01:00,19:02:00,1474758,10, +24986431_257829,19:12:00,19:13:00,1474759,11, +24986431_257829,19:27:00,19:27:00,1474816,12, +24986431_257829,19:31:00,19:32:00,1474779,13, +24986431_257829,19:35:00,19:36:00,1475125,14, +24986431_257829,19:45:00,19:46:00,1475126,15, +24986431_257829,19:52:00,19:53:00,1474720,16, +24986431_257829,19:56:00,19:57:00,1474796,17, +24986431_257829,20:10:00,20:11:00,1474818,18, +24986431_257829,20:21:00,20:22:00,1474819,19, +24986431_257829,20:29:00,20:29:00,1474640,20, +24986434_257832,20:29:00,20:29:00,1475124,0, +24986434_257832,20:32:00,20:33:00,1475123,1, +24986434_257832,20:37:00,20:38:00,1475122,2, +24986434_257832,20:45:00,20:46:00,1475156,3, +24986434_257832,20:51:00,20:51:00,1475121,4, +24986434_257832,20:53:00,20:54:00,1475157,5, +24986434_257832,20:57:00,20:57:00,1475120,6, +24986434_257832,21:00:00,21:00:00,1475158,7, +24986434_257832,21:03:00,21:04:00,1475119,8, +24986434_257832,21:07:00,21:08:00,1475159,9, +24986434_257832,21:10:00,21:11:00,1475160,10, +24986434_257832,21:15:00,21:16:00,1475118,11, +24986434_257832,21:19:00,21:39:00,1475162,12, +24986434_257832,21:48:00,21:48:00,1474756,13, +24986434_257832,21:55:00,21:56:00,1474757,14, +24986434_257832,22:04:00,22:04:00,1474758,15, +24986434_257832,22:14:00,22:15:00,1474759,16, +24986434_257832,22:30:00,22:31:00,1474816,17, +24986434_257832,22:35:00,22:39:00,1474779,18, +24986434_257832,22:42:00,22:43:00,1475125,19, +24986434_257832,22:52:00,22:53:00,1475126,20, +24986434_257832,23:00:00,23:02:00,1474720,21, +24986434_257832,23:06:00,23:06:00,1474796,22, +24986434_257832,23:20:00,23:20:00,1474818,23, +24986434_257832,23:30:00,23:31:00,1474819,24, +24986434_257832,23:37:00,23:37:00,1536277,25, +24986435_257833,20:27:00,20:27:00,1475124,0, +24986435_257833,20:30:00,20:31:00,1475123,1, +24986435_257833,20:35:00,20:36:00,1475122,2, +24986435_257833,20:43:00,20:44:00,1475156,3, +24986435_257833,20:49:00,20:49:00,1475121,4, +24986435_257833,20:51:00,20:52:00,1475157,5, +24986435_257833,20:54:00,20:55:00,1475120,6, +24986435_257833,20:57:00,20:58:00,1475158,7, +24986435_257833,21:01:00,21:01:00,1475119,8, +24986435_257833,21:05:00,21:06:00,1475159,9, +24986435_257833,21:08:00,21:09:00,1475160,10, +24986435_257833,21:13:00,21:14:00,1475118,11, +24986435_257833,21:18:00,21:26:00,1474755,12, +24986435_257833,21:35:00,21:35:00,1474756,13, +24986435_257833,21:42:00,21:43:00,1474757,14, +24986435_257833,21:49:00,21:49:00,1474758,15, +24986435_257833,22:00:00,22:00:00,1474759,16, +24986435_257833,22:14:00,22:14:00,1474816,17, +24986435_257833,22:18:00,22:19:00,1474779,18, +24986435_257833,22:22:00,22:23:00,1475125,19, +24986435_257833,22:32:00,22:32:00,1475126,20, +24986435_257833,22:39:00,22:40:00,1474720,21, +24986435_257833,22:43:00,22:44:00,1474796,22, +24986435_257833,22:57:00,22:58:00,1474818,23, +24986435_257833,23:07:00,23:08:00,1474819,24, +24986435_257833,23:15:00,23:15:00,1474640,25, +24986436_257834,10:06:00,10:06:00,1474947,0, +24986436_257834,10:24:00,10:25:00,1474949,1, +24986436_257834,10:41:00,10:41:00,1474950,2, +24986436_257834,10:43:00,10:44:00,1474793,3, +24986436_257834,10:50:00,10:50:00,1474640,4, +24986438_257836,22:51:00,22:51:00,1474760,0, +24986438_257836,22:59:00,22:59:00,1474816,1, +24986438_257836,23:03:00,23:04:00,1474779,2, +24986438_257836,23:08:00,23:08:00,1475125,3, +24986438_257836,23:17:00,23:18:00,1475126,4, +24986438_257836,23:24:00,23:25:00,1474720,5, +24986438_257836,23:28:00,23:29:00,1474796,6, +24986438_257836,23:42:00,23:43:00,1474818,7, +24986438_257836,23:53:00,23:54:00,1474819,8, +24986438_257836,24:00:00,24:00:00,1474651,9, +24986439_257837,22:45:00,22:45:00,1474760,0, +24986439_257837,22:52:00,22:53:00,1474816,1, +24986439_257837,22:56:00,22:57:00,1474779,2, +24986439_257837,23:01:00,23:01:00,1475125,3, +24986439_257837,23:11:00,23:11:00,1475126,4, +24986439_257837,23:18:00,23:18:00,1474720,5, +24986439_257837,23:22:00,23:22:00,1474796,6, +24986439_257837,23:36:00,23:36:00,1474818,7, +24986439_257837,23:46:00,23:47:00,1474819,8, +24986439_257837,23:54:00,23:54:00,1474640,9, +24986442_257840,18:31:00,18:31:00,1475112,0, +24986442_257840,18:48:00,18:49:00,1474946,1, +24986442_257840,19:02:00,19:02:00,1657886,2, +24986443_257841,18:33:00,18:33:00,1474945,0, +24986443_257841,18:48:00,18:49:00,1474946,1, +24986443_257841,19:02:00,19:02:00,1474843,2, +24986444_257842,18:33:00,18:33:00,1474945,0, +24986444_257842,18:48:00,18:49:00,1474946,1, +24986444_257842,19:02:00,19:02:00,1474843,2, +24986445_257843,18:33:00,18:33:00,1474945,0, +24986445_257843,18:48:00,18:49:00,1474946,1, +24986445_257843,19:02:00,19:02:00,1474843,2, +24986448_257846,20:18:00,20:18:00,1475133,0, +24986448_257846,20:20:00,20:21:00,1475134,1, +24986448_257846,20:26:00,20:27:00,1475135,2, +24986448_257846,20:34:00,20:34:00,1475136,3, +24986448_257846,20:41:00,20:41:00,1475137,4, +24986448_257846,20:48:00,20:49:00,1474945,5, +24986448_257846,21:02:00,21:02:00,1474946,6, +24986448_257846,21:14:00,21:15:00,1609726,7, +24986448_257846,21:30:00,21:31:00,1474949,8, +24986448_257846,21:43:00,21:45:00,1474950,9, +24986448_257846,21:47:00,21:48:00,1474793,10, +24986448_257846,21:53:00,21:53:00,1474640,11, +24986449_257847,20:18:00,20:18:00,1475133,0, +24986449_257847,20:20:00,20:21:00,1475134,1, +24986449_257847,20:26:00,20:27:00,1475135,2, +24986449_257847,20:34:00,20:34:00,1475136,3, +24986449_257847,20:41:00,20:41:00,1475137,4, +24986449_257847,20:48:00,20:49:00,1474945,5, +24986449_257847,21:02:00,21:02:00,1474946,6, +24986449_257847,21:14:00,21:15:00,1609726,7, +24986449_257847,21:30:00,21:31:00,1474949,8, +24986449_257847,21:43:00,21:44:00,1474950,9, +24986449_257847,21:46:00,21:47:00,1474793,10, +24986449_257847,21:52:00,21:52:00,1474738,11, +24986452_257850,06:05:00,06:05:00,1536277,0, +24986452_257850,06:11:00,06:11:00,1474963,1, +24986452_257850,06:14:00,06:14:00,1474964,2, +24986452_257850,06:28:00,06:28:00,1474965,3, +24986452_257850,06:43:00,06:45:00,1657886,4, +24986452_257850,06:51:00,06:51:00,1474838,5, +24986452_257850,06:56:00,06:57:00,1474839,6, +24986452_257850,07:01:00,07:01:00,1475128,7, +24986452_257850,07:05:00,07:05:00,1475129,8, +24986452_257850,07:09:00,07:10:00,1475130,9, +24986452_257850,07:14:00,07:15:00,1475112,10, +24986452_257850,07:22:00,07:22:00,1475131,11, +24986452_257850,07:26:00,07:27:00,1475132,12, +24986452_257850,07:31:00,07:31:00,1475113,13, +24986452_257850,07:38:00,07:39:00,1474984,14, +24986452_257850,07:43:00,07:44:00,1474985,15, +24986452_257850,07:46:00,07:46:00,1474986,16, +24986452_257850,07:49:00,07:49:00,1475133,17, +24986453_257851,06:05:00,06:05:00,1474640,0, +24986453_257851,06:11:00,06:11:00,1474963,1, +24986453_257851,06:14:00,06:14:00,1474964,2, +24986453_257851,06:28:00,06:28:00,1474965,3, +24986453_257851,06:43:00,06:44:00,1657886,4, +24986453_257851,06:50:00,06:50:00,1474838,5, +24986453_257851,06:55:00,06:58:00,1474839,6, +24986453_257851,07:02:00,07:02:00,1475128,7, +24986453_257851,07:06:00,07:06:00,1475129,8, +24986453_257851,07:10:00,07:11:00,1475130,9, +24986453_257851,07:15:00,07:16:00,1475112,10, +24986453_257851,07:23:00,07:23:00,1475131,11, +24986453_257851,07:27:00,07:28:00,1475132,12, +24986453_257851,07:31:00,07:32:00,1475113,13, +24986453_257851,07:39:00,07:40:00,1474984,14, +24986453_257851,07:44:00,07:45:00,1474985,15, +24986453_257851,07:47:00,07:48:00,1474986,16, +24986453_257851,07:50:00,07:50:00,1474987,17, +24986456_257854,08:20:00,08:20:00,1536279,0, +24986456_257854,08:25:00,08:26:00,1474963,1, +24986456_257854,08:28:00,08:29:00,1474964,2, +24986456_257854,08:42:00,08:42:00,1474965,3, +24986456_257854,08:57:00,09:01:00,1657886,4, +24986456_257854,09:11:00,09:12:00,1474839,5, +24986456_257854,09:24:00,09:25:00,1475112,6, +24986456_257854,09:31:00,09:32:00,1475131,7, +24986456_257854,09:39:00,09:39:00,1475113,8, +24986456_257854,09:46:00,09:47:00,1474984,9, +24986456_257854,09:53:00,09:53:00,1474986,10, +24986456_257854,09:56:00,09:56:00,1475133,11, +24986457_257855,08:20:00,08:20:00,1474738,0, +24986457_257855,08:25:00,08:25:00,1474963,1, +24986457_257855,08:28:00,08:28:00,1474964,2, +24986457_257855,08:42:00,08:42:00,1474965,3, +24986457_257855,08:57:00,08:59:00,1657886,4, +24986457_257855,09:09:00,09:10:00,1474839,5, +24986457_257855,09:22:00,09:23:00,1475112,6, +24986457_257855,09:29:00,09:30:00,1475131,7, +24986457_257855,09:37:00,09:37:00,1475113,8, +24986457_257855,09:44:00,09:45:00,1474984,9, +24986457_257855,09:51:00,09:51:00,1474986,10, +24986457_257855,09:54:00,09:54:00,1474987,11, +24986459_257857,18:20:00,18:20:00,1536277,0, +24986459_257857,18:25:00,18:25:00,1474963,1, +24986459_257857,18:28:00,18:29:00,1474964,2, +24986459_257857,18:42:00,18:43:00,1474965,3, +24986459_257857,18:58:00,18:59:00,1657886,4, +24986459_257857,19:10:00,19:10:00,1474839,5, +24986459_257857,19:23:00,19:24:00,1475112,6, +24986459_257857,19:30:00,19:30:00,1475131,7, +24986459_257857,19:37:00,19:38:00,1475113,8, +24986459_257857,19:45:00,19:45:00,1474984,9, +24986459_257857,19:50:00,19:51:00,1474986,10, +24986459_257857,19:54:00,19:54:00,1475133,11, +24986460_257858,18:20:00,18:20:00,1474640,0, +24986460_257858,18:25:00,18:25:00,1474963,1, +24986460_257858,18:28:00,18:29:00,1474964,2, +24986460_257858,18:42:00,18:43:00,1474965,3, +24986460_257858,18:58:00,18:59:00,1657886,4, +24986460_257858,19:09:00,19:09:00,1474839,5, +24986460_257858,19:22:00,19:23:00,1475112,6, +24986460_257858,19:30:00,19:30:00,1475131,7, +24986460_257858,19:37:00,19:38:00,1475190,8, +24986460_257858,19:45:00,19:45:00,1474984,9, +24986460_257858,19:51:00,19:52:00,1474986,10, +24986460_257858,19:55:00,19:55:00,1474987,11, +24986462_257860,22:34:00,22:34:00,1474640,0, +24986462_257860,22:39:00,22:40:00,1474963,1, +24986462_257860,22:42:00,22:42:00,1474964,2, +24986462_257860,22:58:00,22:59:00,1474965,3, +24986462_257860,23:18:00,23:18:00,1657886,4, +24986463_257861,22:30:00,22:30:00,1474640,0, +24986463_257861,22:35:00,22:36:00,1474963,1, +24986463_257861,22:38:00,22:38:00,1474964,2, +24986463_257861,22:54:00,22:55:00,1474965,3, +24986463_257861,23:14:00,23:14:00,1474947,4, +24986465_257863,10:20:00,10:20:00,1474640,0, +24986465_257863,10:26:00,10:26:00,1474963,1, +24986465_257863,10:29:00,10:30:00,1474964,2, +24986465_257863,10:43:00,10:44:00,1474965,3, +24986465_257863,10:59:00,11:00:00,1657886,4, +24986465_257863,11:10:00,11:11:00,1474839,5, +24986465_257863,11:23:00,11:24:00,1475112,6, +24986465_257863,11:30:00,11:30:00,1475131,7, +24986465_257863,11:37:00,11:38:00,1475113,8, +24986465_257863,11:45:00,11:45:00,1474984,9, +24986465_257863,11:51:00,11:52:00,1474986,10, +24986465_257863,11:55:00,11:55:00,1475133,11, +24986466_257864,10:20:00,10:20:00,1474738,0, +24986466_257864,10:26:00,10:26:00,1474963,1, +24986466_257864,10:29:00,10:30:00,1474964,2, +24986466_257864,10:43:00,10:44:00,1474965,3, +24986466_257864,10:59:00,11:00:00,1657886,4, +24986466_257864,11:10:00,11:11:00,1474839,5, +24986466_257864,11:23:00,11:24:00,1475112,6, +24986466_257864,11:30:00,11:30:00,1475131,7, +24986466_257864,11:37:00,11:38:00,1475113,8, +24986466_257864,11:45:00,11:45:00,1474984,9, +24986466_257864,11:51:00,11:52:00,1474986,10, +24986466_257864,11:55:00,11:55:00,1474987,11, +24986468_257866,08:09:00,08:09:00,1475133,0, +24986468_257866,08:11:00,08:12:00,1475134,1, +24986468_257866,08:18:00,08:18:00,1475135,2, +24986468_257866,08:26:00,08:26:00,1475136,3, +24986468_257866,08:33:00,08:33:00,1475137,4, +24986468_257866,08:40:00,08:41:00,1474945,5, +24986468_257866,08:54:00,08:54:00,1474946,6, +24986468_257866,09:05:00,09:06:00,1609726,7, +24986468_257866,09:21:00,09:21:00,1474949,8, +24986468_257866,09:34:00,09:35:00,1474950,9, +24986468_257866,09:37:00,09:38:00,1474793,10, +24986468_257866,09:43:00,09:43:00,1474640,11, +24986469_257867,08:09:00,08:09:00,1475133,0, +24986469_257867,08:11:00,08:12:00,1475134,1, +24986469_257867,08:18:00,08:18:00,1475135,2, +24986469_257867,08:26:00,08:26:00,1475136,3, +24986469_257867,08:33:00,08:33:00,1475137,4, +24986469_257867,08:40:00,08:41:00,1474945,5, +24986469_257867,08:54:00,08:54:00,1474946,6, +24986469_257867,09:05:00,09:06:00,1609726,7, +24986469_257867,09:21:00,09:21:00,1474949,8, +24986469_257867,09:34:00,09:35:00,1474950,9, +24986469_257867,09:37:00,09:37:00,1474793,10, +24986469_257867,09:43:00,09:43:00,1474640,11, +24986471_257869,10:08:00,10:08:00,1475133,0, +24986471_257869,10:10:00,10:10:00,1475134,1, +24986471_257869,10:16:00,10:16:00,1475135,2, +24986471_257869,10:24:00,10:24:00,1474983,3, +24986471_257869,10:31:00,10:31:00,1475137,4, +24986471_257869,10:38:00,10:38:00,1474945,5, +24986471_257869,10:51:00,10:52:00,1474946,6, +24986471_257869,11:03:00,11:06:00,1609726,7, +24986471_257869,11:21:00,11:21:00,1474949,8, +24986471_257869,11:35:00,11:35:00,1474950,9, +24986471_257869,11:38:00,11:38:00,1474793,10, +24986471_257869,11:44:00,11:44:00,1536279,11, +24986472_257870,10:08:00,10:08:00,1475133,0, +24986472_257870,10:10:00,10:10:00,1475134,1, +24986472_257870,10:16:00,10:16:00,1475135,2, +24986472_257870,10:24:00,10:24:00,1475136,3, +24986472_257870,10:31:00,10:31:00,1475137,4, +24986472_257870,10:38:00,10:38:00,1474945,5, +24986472_257870,10:51:00,10:52:00,1474946,6, +24986472_257870,11:03:00,11:06:00,1609726,7, +24986472_257870,11:21:00,11:21:00,1474949,8, +24986472_257870,11:35:00,11:35:00,1474950,9, +24986472_257870,11:38:00,11:38:00,1474793,10, +24986472_257870,11:44:00,11:44:00,1536279,11, +24986473_257871,10:10:00,10:10:00,1475133,0, +24986473_257871,10:12:00,10:12:00,1475134,1, +24986473_257871,10:18:00,10:18:00,1475135,2, +24986473_257871,10:26:00,10:27:00,1475136,3, +24986473_257871,10:33:00,10:34:00,1475137,4, +24986473_257871,10:40:00,10:41:00,1474945,5, +24986473_257871,10:54:00,10:55:00,1474946,6, +24986473_257871,11:06:00,11:08:00,1609726,7, +24986473_257871,11:23:00,11:23:00,1474949,8, +24986473_257871,11:37:00,11:37:00,1474950,9, +24986473_257871,11:40:00,11:40:00,1474793,10, +24986473_257871,11:46:00,11:46:00,1474738,11, +24986475_257873,12:57:00,12:57:00,1474980,0, +24986475_257873,13:08:00,13:09:00,1475138,1, +24986475_257873,13:13:00,13:13:00,1475139,2, +24986475_257873,13:24:00,13:32:00,1475136,3, +24986475_257873,13:36:00,13:36:00,1475140,4, +24986475_257873,13:41:00,13:41:00,1475137,5, +24986475_257873,13:48:00,13:49:00,1474945,6, +24986475_257873,13:55:00,13:55:00,1475141,7, +24986475_257873,13:59:00,14:00:00,1475142,8, +24986475_257873,14:03:00,14:04:00,1475143,9, +24986475_257873,14:08:00,14:09:00,1474946,10, +24986475_257873,14:14:00,14:15:00,1474845,11, +24986475_257873,14:22:00,14:23:00,1609726,12, +24986475_257873,14:38:00,14:39:00,1474949,13, +24986475_257873,14:52:00,14:53:00,1474950,14, +24986475_257873,14:55:00,14:55:00,1474793,15, +24986475_257873,15:01:00,15:01:00,1536277,16, +24986476_257874,12:57:00,12:57:00,1474980,0, +24986476_257874,13:08:00,13:09:00,1475138,1, +24986476_257874,13:13:00,13:13:00,1475139,2, +24986476_257874,13:24:00,13:32:00,1474983,3, +24986476_257874,13:36:00,13:36:00,1475140,4, +24986476_257874,13:40:00,13:41:00,1475137,5, +24986476_257874,13:48:00,13:49:00,1474945,6, +24986476_257874,13:53:00,13:54:00,1475141,7, +24986476_257874,13:58:00,13:59:00,1475142,8, +24986476_257874,14:02:00,14:02:00,1475143,9, +24986476_257874,14:07:00,14:08:00,1474946,10, +24986476_257874,14:13:00,14:14:00,1474845,11, +24986476_257874,14:21:00,14:22:00,1609726,12, +24986476_257874,14:37:00,14:38:00,1474949,13, +24986476_257874,14:52:00,14:53:00,1474950,14, +24986476_257874,14:55:00,14:55:00,1474793,15, +24986476_257874,15:01:00,15:01:00,1474738,16, +24986482_257880,07:50:00,07:50:00,1474651,0, +24986482_257880,07:55:00,07:56:00,1474794,1, +24986482_257880,08:00:00,08:01:00,1474894,2, +24986482_257880,08:07:00,08:07:00,1474795,3, +24986482_257880,08:13:00,08:14:00,1475144,4, +24986482_257880,08:22:00,08:22:00,1474796,5, +24986482_257880,08:27:00,08:36:00,1474714,6, +24986482_257880,08:45:00,08:45:00,1474697,7, +24986482_257880,08:49:00,08:50:00,1474688,8, +24986482_257880,09:11:00,09:12:00,1474685,9, +24986482_257880,09:17:00,09:18:00,1474686,10, +24986482_257880,09:21:00,09:21:00,1474687,11, +24986485_257883,07:50:00,07:50:00,1474738,0, +24986485_257883,07:55:00,07:56:00,1474794,1, +24986485_257883,08:00:00,08:01:00,1474894,2, +24986485_257883,08:07:00,08:07:00,1474795,3, +24986485_257883,08:13:00,08:14:00,1475144,4, +24986485_257883,08:22:00,08:22:00,1474796,5, +24986485_257883,08:27:00,08:36:00,1474714,6, +24986485_257883,08:45:00,08:45:00,1474697,7, +24986485_257883,08:49:00,08:50:00,1474688,8, +24986485_257883,09:11:00,09:12:00,1474685,9, +24986485_257883,09:17:00,09:18:00,1474686,10, +24986485_257883,09:21:00,09:21:00,1474687,11, +24986487_257885,15:57:00,15:57:00,1474651,0, +24986487_257885,16:03:00,16:03:00,1474794,1, +24986487_257885,16:08:00,16:09:00,1474894,2, +24986487_257885,16:16:00,16:16:00,1474795,3, +24986487_257885,16:23:00,16:23:00,1475144,4, +24986487_257885,16:32:00,16:33:00,1474796,5, +24986487_257885,16:38:00,16:47:00,1474714,6, +24986487_257885,16:55:00,16:56:00,1474697,7, +24986487_257885,17:00:00,17:01:00,1474688,8, +24986487_257885,17:22:00,17:23:00,1474685,9, +24986487_257885,17:28:00,17:29:00,1474686,10, +24986487_257885,17:32:00,17:32:00,1474687,11, +24986488_257886,15:57:00,15:57:00,1474640,0, +24986488_257886,16:03:00,16:03:00,1474794,1, +24986488_257886,16:08:00,16:09:00,1474894,2, +24986488_257886,16:16:00,16:16:00,1474795,3, +24986488_257886,16:23:00,16:23:00,1475144,4, +24986488_257886,16:32:00,16:33:00,1474796,5, +24986488_257886,16:38:00,16:47:00,1474714,6, +24986488_257886,16:55:00,16:56:00,1474697,7, +24986488_257886,17:00:00,17:01:00,1474688,8, +24986488_257886,17:22:00,17:23:00,1474685,9, +24986488_257886,17:28:00,17:29:00,1474686,10, +24986488_257886,17:32:00,17:32:00,1474687,11, +24986489_257887,06:37:00,06:37:00,1474687,0, +24986489_257887,06:38:00,06:39:00,1474686,1, +24986489_257887,06:45:00,06:48:00,1474685,2, +24986489_257887,07:08:00,07:09:00,1474688,3, +24986489_257887,07:11:00,07:12:00,1474689,4, +24986489_257887,07:21:00,07:29:00,1474714,5, +24986489_257887,07:33:00,07:34:00,1474796,6, +24986489_257887,07:42:00,07:43:00,1475146,7, +24986489_257887,07:49:00,07:50:00,1474818,8, +24986489_257887,07:56:00,07:57:00,1474900,9, +24986489_257887,08:02:00,08:03:00,1474819,10, +24986489_257887,08:09:00,08:09:00,1474651,11, +24986490_257888,06:37:00,06:37:00,1474687,0, +24986490_257888,06:38:00,06:39:00,1474686,1, +24986490_257888,06:45:00,06:48:00,1474685,2, +24986490_257888,07:08:00,07:09:00,1474688,3, +24986490_257888,07:11:00,07:12:00,1474689,4, +24986490_257888,07:21:00,07:30:00,1474714,5, +24986490_257888,07:34:00,07:35:00,1474796,6, +24986490_257888,07:43:00,07:44:00,1475146,7, +24986490_257888,07:50:00,07:51:00,1474818,8, +24986490_257888,07:57:00,07:58:00,1474900,9, +24986490_257888,08:03:00,08:04:00,1474819,10, +24986490_257888,08:10:00,08:10:00,1474640,11, +24986492_257890,20:02:00,20:02:00,1474687,0, +24986492_257890,20:04:00,20:04:00,1474686,1, +24986492_257890,20:11:00,20:14:00,1474685,2, +24986492_257890,20:34:00,20:37:00,1474688,3, +24986492_257890,20:39:00,20:40:00,1474689,4, +24986492_257890,20:49:00,20:59:00,1474714,5, +24986492_257890,21:03:00,21:04:00,1474796,6, +24986492_257890,21:13:00,21:14:00,1475146,7, +24986492_257890,21:20:00,21:21:00,1474818,8, +24986492_257890,21:27:00,21:28:00,1474900,9, +24986492_257890,21:34:00,21:35:00,1474819,10, +24986492_257890,21:41:00,21:41:00,1474651,11, +24986493_257891,19:50:00,19:50:00,1474687,0, +24986493_257891,19:52:00,19:52:00,1474686,1, +24986493_257891,19:59:00,20:02:00,1474685,2, +24986493_257891,20:22:00,20:23:00,1474688,3, +24986493_257891,20:25:00,20:26:00,1474689,4, +24986493_257891,20:34:00,20:40:00,1474714,5, +24986493_257891,20:44:00,20:45:00,1474796,6, +24986493_257891,20:53:00,20:53:00,1475146,7, +24986493_257891,20:59:00,21:00:00,1474818,8, +24986493_257891,21:06:00,21:07:00,1474900,9, +24986493_257891,21:12:00,21:13:00,1474819,10, +24986493_257891,21:20:00,21:20:00,1474640,11, +24986495_257893,03:48:00,03:48:00,1474760,0, +24986495_257893,03:52:00,03:53:00,1475147,1, +24986495_257893,03:57:00,03:58:00,1474816,2, +24986495_257893,04:01:00,04:02:00,1474779,3, +24986495_257893,04:06:00,04:06:00,1475125,4, +24986495_257893,04:15:00,04:16:00,1475126,5, +24986495_257893,04:22:00,04:23:00,1474720,6, +24986495_257893,04:27:00,04:27:00,1474796,7, +24986495_257893,04:32:00,04:32:00,1475148,8, +24986495_257893,04:37:00,04:37:00,1475146,9, +24986495_257893,04:43:00,04:44:00,1474818,10, +24986495_257893,04:48:00,04:48:00,1474899,11, +24986495_257893,04:51:00,04:52:00,1474900,12, +24986495_257893,04:54:00,04:55:00,1474901,13, +24986495_257893,04:57:00,04:58:00,1474902,14, +24986495_257893,05:00:00,05:01:00,1474819,15, +24986495_257893,05:07:00,05:07:00,1474651,16, +24986496_257894,03:49:00,03:49:00,1474760,0, +24986496_257894,03:53:00,03:53:00,1475147,1, +24986496_257894,03:57:00,03:58:00,1474816,2, +24986496_257894,04:01:00,04:02:00,1474779,3, +24986496_257894,04:05:00,04:06:00,1475125,4, +24986496_257894,04:15:00,04:16:00,1475126,5, +24986496_257894,04:22:00,04:23:00,1474720,6, +24986496_257894,04:27:00,04:27:00,1474796,7, +24986496_257894,04:32:00,04:32:00,1475148,8, +24986496_257894,04:37:00,04:37:00,1475146,9, +24986496_257894,04:43:00,04:44:00,1474818,10, +24986496_257894,04:48:00,04:48:00,1474899,11, +24986496_257894,04:51:00,04:52:00,1474900,12, +24986496_257894,04:54:00,04:55:00,1474901,13, +24986496_257894,04:57:00,04:58:00,1474902,14, +24986496_257894,05:00:00,05:01:00,1474819,15, +24986496_257894,05:07:00,05:07:00,1474640,16, +24986498_257896,03:49:00,03:49:00,1474823,0, +24986498_257896,03:54:00,03:54:00,1475154,1, +24986498_257896,03:57:00,03:58:00,1474920,2, +24986498_257896,04:00:00,04:01:00,1474756,3, +24986498_257896,04:06:00,04:06:00,1475155,4, +24986498_257896,04:08:00,04:09:00,1474757,5, +24986498_257896,04:17:00,04:18:00,1474758,6, +24986498_257896,04:23:00,04:23:00,1475151,7, +24986498_257896,04:27:00,04:28:00,1475152,8, +24986498_257896,04:30:00,04:31:00,1474759,9, +24986498_257896,04:33:00,04:33:00,1475153,10, +24986498_257896,04:39:00,04:39:00,1474760,11, +24986498_257896,04:44:00,04:44:00,1475147,12, +24986498_257896,04:49:00,04:49:00,1474816,13, +24986498_257896,04:53:00,04:54:00,1474779,14, +24986498_257896,04:57:00,04:58:00,1475125,15, +24986498_257896,05:07:00,05:08:00,1475126,16, +24986498_257896,05:14:00,05:15:00,1474720,17, +24986498_257896,05:19:00,05:19:00,1474796,18, +24986498_257896,05:24:00,05:24:00,1475148,19, +24986498_257896,05:29:00,05:29:00,1475146,20, +24986498_257896,05:35:00,05:36:00,1474818,21, +24986498_257896,05:39:00,05:40:00,1474899,22, +24986498_257896,05:43:00,05:44:00,1474900,23, +24986498_257896,05:45:00,05:46:00,1474901,24, +24986498_257896,05:48:00,05:49:00,1474902,25, +24986498_257896,05:51:00,05:52:00,1474819,26, +24986498_257896,05:58:00,05:58:00,1474640,27, +24986499_257897,03:52:00,03:52:00,1474823,0, +24986499_257897,03:57:00,03:57:00,1475154,1, +24986499_257897,04:00:00,04:01:00,1474920,2, +24986499_257897,04:03:00,04:04:00,1474756,3, +24986499_257897,04:09:00,04:09:00,1475155,4, +24986499_257897,04:12:00,04:12:00,1474757,5, +24986499_257897,04:18:00,04:19:00,1474758,6, +24986499_257897,04:24:00,04:24:00,1475151,7, +24986499_257897,04:29:00,04:29:00,1475152,8, +24986499_257897,04:32:00,04:32:00,1474759,9, +24986499_257897,04:34:00,04:34:00,1475153,10, +24986499_257897,04:40:00,04:41:00,1474760,11, +24986499_257897,04:45:00,04:45:00,1475147,12, +24986499_257897,04:49:00,04:50:00,1474816,13, +24986499_257897,04:53:00,04:54:00,1474779,14, +24986499_257897,04:58:00,04:58:00,1475125,15, +24986499_257897,05:08:00,05:08:00,1475126,16, +24986499_257897,05:15:00,05:16:00,1474720,17, +24986499_257897,05:19:00,05:20:00,1474796,18, +24986499_257897,05:25:00,05:25:00,1475148,19, +24986499_257897,05:30:00,05:30:00,1475146,20, +24986499_257897,05:36:00,05:37:00,1474818,21, +24986499_257897,05:41:00,05:41:00,1474899,22, +24986499_257897,05:45:00,05:46:00,1474900,23, +24986499_257897,05:48:00,05:48:00,1474901,24, +24986499_257897,05:51:00,05:51:00,1474902,25, +24986499_257897,05:53:00,05:54:00,1474819,26, +24986499_257897,06:01:00,06:01:00,1474640,27, +24986501_257899,05:22:00,05:22:00,1474779,0, +24986501_257899,05:26:00,05:27:00,1475125,1, +24986501_257899,05:36:00,05:37:00,1475126,2, +24986501_257899,05:44:00,05:45:00,1474720,3, +24986501_257899,05:48:00,05:49:00,1474796,4, +24986501_257899,05:54:00,05:54:00,1475148,5, +24986501_257899,05:59:00,05:59:00,1475146,6, +24986501_257899,06:05:00,06:06:00,1474818,7, +24986501_257899,06:10:00,06:10:00,1474899,8, +24986501_257899,06:13:00,06:14:00,1474900,9, +24986501_257899,06:16:00,06:17:00,1474901,10, +24986501_257899,06:19:00,06:20:00,1474902,11, +24986501_257899,06:22:00,06:23:00,1474819,12, +24986501_257899,06:30:00,06:30:00,1474640,13, +24986503_257901,04:55:00,04:55:00,1474823,0, +24986503_257901,05:00:00,05:01:00,1475154,1, +24986503_257901,05:04:00,05:04:00,1474920,2, +24986503_257901,05:07:00,05:07:00,1474756,3, +24986503_257901,05:12:00,05:13:00,1475155,4, +24986503_257901,05:15:00,05:16:00,1474757,5, +24986503_257901,05:24:00,05:24:00,1474758,6, +24986503_257901,05:29:00,05:30:00,1475151,7, +24986503_257901,05:34:00,05:35:00,1475152,8, +24986503_257901,05:37:00,05:38:00,1474759,9, +24986503_257901,05:39:00,05:40:00,1475153,10, +24986503_257901,05:46:00,05:46:00,1474760,11, +24986503_257901,05:51:00,05:51:00,1475147,12, +24986503_257901,05:55:00,05:56:00,1474816,13, +24986503_257901,05:59:00,06:00:00,1474779,14, +24986503_257901,06:04:00,06:05:00,1475125,15, +24986503_257901,06:15:00,06:16:00,1475126,16, +24986503_257901,06:23:00,06:25:00,1474720,17, +24986503_257901,06:29:00,06:29:00,1474796,18, +24986503_257901,06:34:00,06:34:00,1475148,19, +24986503_257901,06:39:00,06:39:00,1475146,20, +24986503_257901,06:45:00,06:46:00,1474818,21, +24986503_257901,06:50:00,06:50:00,1474899,22, +24986503_257901,06:53:00,06:54:00,1474900,23, +24986503_257901,06:56:00,06:57:00,1474901,24, +24986503_257901,07:00:00,07:00:00,1474902,25, +24986503_257901,07:02:00,07:03:00,1474819,26, +24986503_257901,07:10:00,07:10:00,1474640,27, +24986504_257902,05:00:00,05:00:00,1474823,0, +24986504_257902,05:05:00,05:06:00,1475154,1, +24986504_257902,05:09:00,05:09:00,1474920,2, +24986504_257902,05:12:00,05:12:00,1474756,3, +24986504_257902,05:17:00,05:18:00,1475155,4, +24986504_257902,05:20:00,05:21:00,1474757,5, +24986504_257902,05:27:00,05:27:00,1474758,6, +24986504_257902,05:32:00,05:33:00,1475151,7, +24986504_257902,05:37:00,05:38:00,1475152,8, +24986504_257902,05:40:00,05:41:00,1474759,9, +24986504_257902,05:42:00,05:43:00,1475153,10, +24986504_257902,05:49:00,05:49:00,1474760,11, +24986504_257902,05:53:00,05:54:00,1475147,12, +24986504_257902,05:57:00,05:58:00,1474816,13, +24986504_257902,06:01:00,06:03:00,1474779,14, +24986504_257902,06:07:00,06:08:00,1475125,15, +24986504_257902,06:17:00,06:17:00,1475126,16, +24986504_257902,06:24:00,06:26:00,1474720,17, +24986504_257902,06:30:00,06:30:00,1474796,18, +24986504_257902,06:35:00,06:35:00,1475148,19, +24986504_257902,06:40:00,06:40:00,1475146,20, +24986504_257902,06:46:00,06:47:00,1474818,21, +24986504_257902,06:51:00,06:51:00,1474899,22, +24986504_257902,06:54:00,06:55:00,1474900,23, +24986504_257902,06:57:00,06:58:00,1474901,24, +24986504_257902,07:01:00,07:01:00,1474902,25, +24986504_257902,07:03:00,07:04:00,1474819,26, +24986504_257902,07:11:00,07:11:00,1474640,27, +24986506_257904,06:18:00,06:18:00,1474760,0, +24986506_257904,06:22:00,06:23:00,1475147,1, +24986506_257904,06:27:00,06:27:00,1474816,2, +24986506_257904,06:31:00,06:32:00,1474779,3, +24986506_257904,06:35:00,06:36:00,1475125,4, +24986506_257904,06:45:00,06:46:00,1475126,5, +24986506_257904,06:52:00,06:53:00,1474720,6, +24986506_257904,06:57:00,06:58:00,1474796,7, +24986506_257904,07:02:00,07:03:00,1475148,8, +24986506_257904,07:07:00,07:08:00,1475146,9, +24986506_257904,07:14:00,07:15:00,1474818,10, +24986506_257904,07:19:00,07:19:00,1474899,11, +24986506_257904,07:22:00,07:23:00,1474900,12, +24986506_257904,07:25:00,07:26:00,1474901,13, +24986506_257904,07:28:00,07:29:00,1474902,14, +24986506_257904,07:31:00,07:32:00,1474819,15, +24986506_257904,07:38:00,07:38:00,1474738,16, +24986507_257905,06:18:00,06:18:00,1474760,0, +24986507_257905,06:22:00,06:23:00,1475147,1, +24986507_257905,06:26:00,06:27:00,1474816,2, +24986507_257905,06:30:00,06:31:00,1474779,3, +24986507_257905,06:35:00,06:35:00,1475125,4, +24986507_257905,06:45:00,06:45:00,1475126,5, +24986507_257905,06:52:00,06:53:00,1474720,6, +24986507_257905,06:57:00,06:58:00,1474796,7, +24986507_257905,07:02:00,07:03:00,1475148,8, +24986507_257905,07:07:00,07:08:00,1475146,9, +24986507_257905,07:14:00,07:15:00,1474818,10, +24986507_257905,07:19:00,07:19:00,1474899,11, +24986507_257905,07:22:00,07:23:00,1474900,12, +24986507_257905,07:25:00,07:26:00,1474901,13, +24986507_257905,07:28:00,07:29:00,1474902,14, +24986507_257905,07:31:00,07:32:00,1474819,15, +24986507_257905,07:38:00,07:38:00,1474640,16, +24986509_257907,05:22:00,05:22:00,1474978,0, +24986509_257907,05:29:00,05:29:00,1474931,1, +24986509_257907,05:35:00,05:35:00,1474930,2, +24986509_257907,05:40:00,05:41:00,1474929,3, +24986509_257907,05:45:00,05:46:00,1474928,4, +24986509_257907,05:52:00,05:58:00,1475236,5, +24986509_257907,06:07:00,06:08:00,1474926,6, +24986509_257907,06:11:00,06:12:00,1474755,7, +24986509_257907,06:16:00,06:17:00,1475154,8, +24986509_257907,06:20:00,06:20:00,1474920,9, +24986509_257907,06:23:00,06:23:00,1474756,10, +24986509_257907,06:28:00,06:28:00,1475155,11, +24986509_257907,06:31:00,06:31:00,1474757,12, +24986509_257907,06:39:00,06:40:00,1474758,13, +24986509_257907,06:45:00,06:45:00,1475151,14, +24986509_257907,06:50:00,06:50:00,1475152,15, +24986509_257907,06:53:00,06:53:00,1474759,16, +24986509_257907,06:56:00,06:56:00,1475153,17, +24986509_257907,07:02:00,07:04:00,1474760,18, +24986509_257907,07:09:00,07:10:00,1475147,19, +24986509_257907,07:14:00,07:14:00,1474816,20, +24986509_257907,07:18:00,07:19:00,1474779,21, +24986509_257907,07:22:00,07:23:00,1475125,22, +24986509_257907,07:32:00,07:32:00,1475126,23, +24986509_257907,07:39:00,07:41:00,1474720,24, +24986509_257907,07:44:00,07:45:00,1474796,25, +24986509_257907,07:49:00,07:50:00,1475148,26, +24986509_257907,07:54:00,07:55:00,1475146,27, +24986509_257907,08:01:00,08:02:00,1474818,28, +24986509_257907,08:05:00,08:06:00,1474899,29, +24986509_257907,08:08:00,08:09:00,1474900,30, +24986509_257907,08:11:00,08:11:00,1474901,31, +24986509_257907,08:14:00,08:14:00,1474902,32, +24986509_257907,08:16:00,08:17:00,1474819,33, +24986509_257907,08:23:00,08:23:00,1536277,34, +24986512_257910,05:22:00,05:22:00,1474978,0, +24986512_257910,05:29:00,05:29:00,1474931,1, +24986512_257910,05:35:00,05:35:00,1474930,2, +24986512_257910,05:40:00,05:41:00,1474929,3, +24986512_257910,05:45:00,05:46:00,1474928,4, +24986512_257910,05:52:00,05:58:00,1475236,5, +24986512_257910,06:07:00,06:08:00,1474926,6, +24986512_257910,06:11:00,06:14:00,1474755,7, +24986512_257910,06:19:00,06:20:00,1475154,8, +24986512_257910,06:23:00,06:23:00,1474920,9, +24986512_257910,06:26:00,06:27:00,1474756,10, +24986512_257910,06:32:00,06:32:00,1475155,11, +24986512_257910,06:35:00,06:36:00,1474757,12, +24986512_257910,06:42:00,06:42:00,1474758,13, +24986512_257910,06:48:00,06:48:00,1475151,14, +24986512_257910,06:52:00,06:53:00,1475152,15, +24986512_257910,06:55:00,06:56:00,1474759,16, +24986512_257910,06:58:00,06:58:00,1475153,17, +24986512_257910,07:04:00,07:05:00,1474760,18, +24986512_257910,07:09:00,07:09:00,1475147,19, +24986512_257910,07:13:00,07:14:00,1474816,20, +24986512_257910,07:17:00,07:18:00,1474779,21, +24986512_257910,07:22:00,07:22:00,1475125,22, +24986512_257910,07:31:00,07:32:00,1475126,23, +24986512_257910,07:39:00,07:41:00,1474720,24, +24986512_257910,07:44:00,07:45:00,1474796,25, +24986512_257910,07:50:00,07:50:00,1475148,26, +24986512_257910,07:55:00,07:55:00,1475146,27, +24986512_257910,08:01:00,08:02:00,1474818,28, +24986512_257910,08:05:00,08:06:00,1474899,29, +24986512_257910,08:09:00,08:09:00,1474900,30, +24986512_257910,08:11:00,08:11:00,1474901,31, +24986512_257910,08:14:00,08:14:00,1474902,32, +24986512_257910,08:16:00,08:17:00,1474819,33, +24986512_257910,08:23:00,08:23:00,1474640,34, +24986514_257912,06:25:00,06:25:00,1475124,0, +24986514_257912,06:28:00,06:29:00,1475123,1, +24986514_257912,06:34:00,06:34:00,1475122,2, +24986514_257912,06:42:00,06:42:00,1475156,3, +24986514_257912,06:47:00,06:48:00,1475121,4, +24986514_257912,06:50:00,06:50:00,1475157,5, +24986514_257912,06:53:00,06:54:00,1475120,6, +24986514_257912,06:56:00,06:57:00,1475158,7, +24986514_257912,07:00:00,07:00:00,1475119,8, +24986514_257912,07:04:00,07:04:00,1475159,9, +24986514_257912,07:07:00,07:08:00,1475160,10, +24986514_257912,07:13:00,07:13:00,1475118,11, +24986514_257912,07:17:00,07:22:00,1474755,12, +24986514_257912,07:26:00,07:27:00,1475154,13, +24986514_257912,07:30:00,07:30:00,1474920,14, +24986514_257912,07:33:00,07:33:00,1474756,15, +24986514_257912,07:38:00,07:38:00,1475155,16, +24986514_257912,07:40:00,07:41:00,1474757,17, +24986514_257912,07:49:00,07:51:00,1474758,18, +24986514_257912,07:56:00,07:56:00,1475151,19, +24986514_257912,08:00:00,08:01:00,1475152,20, +24986514_257912,08:03:00,08:04:00,1474759,21, +24986514_257912,08:05:00,08:06:00,1475153,22, +24986514_257912,08:12:00,08:12:00,1474760,23, +24986514_257912,08:16:00,08:19:00,1475147,24, +24986514_257912,08:23:00,08:23:00,1474816,25, +24986514_257912,08:27:00,08:28:00,1474779,26, +24986514_257912,08:32:00,08:32:00,1475125,27, +24986514_257912,08:41:00,08:42:00,1475126,28, +24986514_257912,08:48:00,08:50:00,1474720,29, +24986514_257912,08:54:00,08:54:00,1474796,30, +24986514_257912,08:59:00,08:59:00,1475148,31, +24986514_257912,09:04:00,09:04:00,1475146,32, +24986514_257912,09:10:00,09:11:00,1474818,33, +24986514_257912,09:14:00,09:15:00,1474899,34, +24986514_257912,09:18:00,09:19:00,1474900,35, +24986514_257912,09:21:00,09:21:00,1474901,36, +24986514_257912,09:24:00,09:24:00,1474902,37, +24986514_257912,09:26:00,09:27:00,1474819,38, +24986514_257912,09:33:00,09:33:00,1474651,39, +24986516_257914,06:32:00,06:32:00,1475124,0, +24986516_257914,06:35:00,06:36:00,1475123,1, +24986516_257914,06:41:00,06:41:00,1475122,2, +24986516_257914,06:49:00,06:49:00,1475156,3, +24986516_257914,06:54:00,06:55:00,1475121,4, +24986516_257914,06:57:00,06:57:00,1475157,5, +24986516_257914,07:00:00,07:01:00,1475120,6, +24986516_257914,07:03:00,07:04:00,1475158,7, +24986516_257914,07:07:00,07:07:00,1475119,8, +24986516_257914,07:11:00,07:11:00,1475159,9, +24986516_257914,07:14:00,07:14:00,1475160,10, +24986516_257914,07:19:00,07:19:00,1475118,11, +24986516_257914,07:22:00,07:23:00,1474755,12, +24986516_257914,07:28:00,07:28:00,1475154,13, +24986516_257914,07:31:00,07:32:00,1474920,14, +24986516_257914,07:34:00,07:35:00,1474756,15, +24986516_257914,07:39:00,07:40:00,1475155,16, +24986516_257914,07:42:00,07:43:00,1474757,17, +24986516_257914,07:49:00,07:50:00,1474758,18, +24986516_257914,07:55:00,07:55:00,1475151,19, +24986516_257914,08:00:00,08:00:00,1475152,20, +24986516_257914,08:03:00,08:03:00,1474759,21, +24986516_257914,08:05:00,08:05:00,1475153,22, +24986516_257914,08:11:00,08:12:00,1474760,23, +24986516_257914,08:16:00,08:16:00,1475147,24, +24986516_257914,08:20:00,08:21:00,1474816,25, +24986516_257914,08:24:00,08:25:00,1474779,26, +24986516_257914,08:29:00,08:30:00,1475125,27, +24986516_257914,08:39:00,08:39:00,1475126,28, +24986516_257914,08:46:00,08:47:00,1474720,29, +24986516_257914,08:51:00,08:51:00,1474796,30, +24986516_257914,08:56:00,08:56:00,1475148,31, +24986516_257914,09:01:00,09:01:00,1475146,32, +24986516_257914,09:07:00,09:08:00,1474818,33, +24986516_257914,09:12:00,09:12:00,1474899,34, +24986516_257914,09:16:00,09:17:00,1474900,35, +24986516_257914,09:19:00,09:19:00,1474901,36, +24986516_257914,09:22:00,09:22:00,1474902,37, +24986516_257914,09:24:00,09:25:00,1474819,38, +24986516_257914,09:32:00,09:32:00,1474640,39, +24986518_257916,08:32:00,08:32:00,1475124,0, +24986518_257916,08:36:00,08:36:00,1475123,1, +24986518_257916,08:41:00,08:42:00,1475122,2, +24986518_257916,08:49:00,08:50:00,1475156,3, +24986518_257916,08:55:00,08:55:00,1475161,4, +24986518_257916,08:57:00,08:58:00,1475157,5, +24986518_257916,09:00:00,09:01:00,1475120,6, +24986518_257916,09:03:00,09:03:00,1475158,7, +24986518_257916,09:06:00,09:07:00,1475119,8, +24986518_257916,09:11:00,09:11:00,1475159,9, +24986518_257916,09:14:00,09:14:00,1475160,10, +24986518_257916,09:19:00,09:19:00,1475118,11, +24986518_257916,09:22:00,09:27:00,1474755,12, +24986518_257916,09:31:00,09:32:00,1475154,13, +24986518_257916,09:35:00,09:35:00,1474920,14, +24986518_257916,09:38:00,09:39:00,1474756,15, +24986518_257916,09:43:00,09:44:00,1475155,16, +24986518_257916,09:46:00,09:47:00,1474757,17, +24986518_257916,09:55:00,09:56:00,1474758,18, +24986518_257916,10:01:00,10:02:00,1475151,19, +24986518_257916,10:06:00,10:06:00,1475152,20, +24986518_257916,10:09:00,10:09:00,1474759,21, +24986518_257916,10:11:00,10:12:00,1475153,22, +24986518_257916,10:18:00,10:27:00,1474760,23, +24986518_257916,10:32:00,10:32:00,1475147,24, +24986518_257916,10:37:00,10:37:00,1474816,25, +24986518_257916,10:41:00,10:42:00,1474779,26, +24986518_257916,10:45:00,10:46:00,1475125,27, +24986518_257916,10:55:00,10:55:00,1475126,28, +24986518_257916,11:02:00,11:03:00,1474720,29, +24986518_257916,11:06:00,11:07:00,1474796,30, +24986518_257916,11:11:00,11:11:00,1475148,31, +24986518_257916,11:16:00,11:16:00,1475146,32, +24986518_257916,11:22:00,11:22:00,1474818,33, +24986518_257916,11:26:00,11:26:00,1474899,34, +24986518_257916,11:29:00,11:30:00,1474900,35, +24986518_257916,11:31:00,11:32:00,1474901,36, +24986518_257916,11:34:00,11:35:00,1474902,37, +24986518_257916,11:36:00,11:37:00,1474819,38, +24986518_257916,11:43:00,11:43:00,1474651,39, +24986519_257917,08:32:00,08:32:00,1475124,0, +24986519_257917,08:36:00,08:36:00,1475123,1, +24986519_257917,08:41:00,08:42:00,1475122,2, +24986519_257917,08:49:00,08:49:00,1475156,3, +24986519_257917,08:55:00,08:55:00,1475161,4, +24986519_257917,08:57:00,08:58:00,1475157,5, +24986519_257917,09:00:00,09:01:00,1475120,6, +24986519_257917,09:03:00,09:03:00,1475158,7, +24986519_257917,09:06:00,09:07:00,1475119,8, +24986519_257917,09:11:00,09:11:00,1475159,9, +24986519_257917,09:14:00,09:14:00,1475160,10, +24986519_257917,09:19:00,09:19:00,1475118,11, +24986519_257917,09:22:00,09:30:00,1474755,12, +24986519_257917,09:34:00,09:35:00,1475154,13, +24986519_257917,09:38:00,09:38:00,1474920,14, +24986519_257917,09:41:00,09:42:00,1474756,15, +24986519_257917,09:46:00,09:47:00,1475155,16, +24986519_257917,09:49:00,09:50:00,1474757,17, +24986519_257917,09:56:00,09:56:00,1474758,18, +24986519_257917,10:01:00,10:02:00,1475151,19, +24986519_257917,10:06:00,10:06:00,1475152,20, +24986519_257917,10:09:00,10:09:00,1474759,21, +24986519_257917,10:11:00,10:11:00,1475153,22, +24986519_257917,10:17:00,10:18:00,1474760,23, +24986519_257917,10:22:00,10:22:00,1475147,24, +24986519_257917,10:26:00,10:26:00,1474816,25, +24986519_257917,10:30:00,10:31:00,1474779,26, +24986519_257917,10:34:00,10:35:00,1475125,27, +24986519_257917,10:44:00,10:44:00,1475126,28, +24986519_257917,10:52:00,10:53:00,1474720,29, +24986519_257917,10:57:00,10:57:00,1474796,30, +24986519_257917,11:01:00,11:02:00,1475148,31, +24986519_257917,11:06:00,11:07:00,1475146,32, +24986519_257917,11:12:00,11:13:00,1474818,33, +24986519_257917,11:17:00,11:17:00,1474899,34, +24986519_257917,11:20:00,11:21:00,1474900,35, +24986519_257917,11:23:00,11:24:00,1474901,36, +24986519_257917,11:26:00,11:27:00,1474902,37, +24986519_257917,11:28:00,11:29:00,1474819,38, +24986519_257917,11:35:00,11:35:00,1474640,39, +24986521_257919,10:32:00,10:32:00,1475124,0, +24986521_257919,10:36:00,10:36:00,1475123,1, +24986521_257919,10:41:00,10:41:00,1475122,2, +24986521_257919,10:49:00,10:49:00,1475156,3, +24986521_257919,10:55:00,10:55:00,1475161,4, +24986521_257919,10:57:00,10:58:00,1475157,5, +24986521_257919,11:01:00,11:01:00,1475120,6, +24986521_257919,11:03:00,11:04:00,1475158,7, +24986521_257919,11:07:00,11:08:00,1475119,8, +24986521_257919,11:11:00,11:12:00,1475159,9, +24986521_257919,11:15:00,11:15:00,1475160,10, +24986521_257919,11:20:00,11:21:00,1475118,11, +24986521_257919,11:24:00,11:26:00,1474755,12, +24986521_257919,11:31:00,11:31:00,1475154,13, +24986521_257919,11:34:00,11:34:00,1474920,14, +24986521_257919,11:37:00,11:38:00,1474756,15, +24986521_257919,11:42:00,11:43:00,1475155,16, +24986521_257919,11:46:00,11:46:00,1474757,17, +24986521_257919,11:54:00,11:55:00,1474758,18, +24986521_257919,12:00:00,12:00:00,1475151,19, +24986521_257919,12:04:00,12:05:00,1475152,20, +24986521_257919,12:07:00,12:07:00,1474759,21, +24986521_257919,12:09:00,12:10:00,1475153,22, +24986521_257919,12:15:00,12:16:00,1474760,23, +24986521_257919,12:20:00,12:21:00,1475147,24, +24986521_257919,12:25:00,12:25:00,1474816,25, +24986521_257919,12:29:00,12:30:00,1474779,26, +24986521_257919,12:34:00,12:34:00,1475125,27, +24986521_257919,12:44:00,12:45:00,1475126,28, +24986521_257919,12:52:00,12:54:00,1474720,29, +24986521_257919,12:58:00,12:58:00,1474796,30, +24986521_257919,13:03:00,13:04:00,1475148,31, +24986521_257919,13:08:00,13:09:00,1475146,32, +24986521_257919,13:14:00,13:15:00,1474818,33, +24986521_257919,13:19:00,13:20:00,1474899,34, +24986521_257919,13:23:00,13:24:00,1474900,35, +24986521_257919,13:27:00,13:27:00,1474901,36, +24986521_257919,13:30:00,13:30:00,1474902,37, +24986521_257919,13:32:00,13:33:00,1474819,38, +24986521_257919,13:40:00,13:40:00,1536277,39, +24986523_257921,10:35:00,10:35:00,1475124,0, +24986523_257921,10:38:00,10:39:00,1475123,1, +24986523_257921,10:43:00,10:44:00,1475122,2, +24986523_257921,10:51:00,10:52:00,1475156,3, +24986523_257921,10:57:00,10:57:00,1475161,4, +24986523_257921,10:59:00,11:00:00,1475157,5, +24986523_257921,11:02:00,11:03:00,1475120,6, +24986523_257921,11:05:00,11:06:00,1475158,7, +24986523_257921,11:09:00,11:09:00,1475119,8, +24986523_257921,11:13:00,11:13:00,1475159,9, +24986523_257921,11:16:00,11:16:00,1475160,10, +24986523_257921,11:21:00,11:21:00,1475118,11, +24986523_257921,11:25:00,11:29:00,1474755,12, +24986523_257921,11:33:00,11:34:00,1475154,13, +24986523_257921,11:37:00,11:37:00,1474920,14, +24986523_257921,11:40:00,11:41:00,1474756,15, +24986523_257921,11:45:00,11:46:00,1475155,16, +24986523_257921,11:48:00,11:49:00,1474757,17, +24986523_257921,11:55:00,11:55:00,1474758,18, +24986523_257921,12:00:00,12:01:00,1475151,19, +24986523_257921,12:05:00,12:05:00,1475152,20, +24986523_257921,12:08:00,12:08:00,1474759,21, +24986523_257921,12:10:00,12:11:00,1475153,22, +24986523_257921,12:17:00,12:18:00,1474760,23, +24986523_257921,12:22:00,12:22:00,1475147,24, +24986523_257921,12:26:00,12:26:00,1474816,25, +24986523_257921,12:30:00,12:31:00,1474779,26, +24986523_257921,12:34:00,12:35:00,1475125,27, +24986523_257921,12:44:00,12:44:00,1475126,28, +24986523_257921,12:51:00,12:52:00,1474720,29, +24986523_257921,12:56:00,12:56:00,1474796,30, +24986523_257921,13:01:00,13:01:00,1475148,31, +24986523_257921,13:06:00,13:06:00,1475146,32, +24986523_257921,13:12:00,13:13:00,1474818,33, +24986523_257921,13:17:00,13:18:00,1474899,34, +24986523_257921,13:21:00,13:22:00,1474900,35, +24986523_257921,13:24:00,13:24:00,1474901,36, +24986523_257921,13:27:00,13:28:00,1474902,37, +24986523_257921,13:30:00,13:31:00,1474819,38, +24986523_257921,13:38:00,13:38:00,1474640,39, +24986525_257923,13:30:00,13:30:00,1474779,0, +24986525_257923,13:35:00,13:35:00,1475125,1, +24986525_257923,13:44:00,13:45:00,1475126,2, +24986525_257923,13:51:00,13:52:00,1474720,3, +24986525_257923,13:55:00,13:56:00,1474796,4, +24986525_257923,14:00:00,14:00:00,1475148,5, +24986525_257923,14:05:00,14:05:00,1475146,6, +24986525_257923,14:10:00,14:11:00,1474818,7, +24986525_257923,14:15:00,14:15:00,1474899,8, +24986525_257923,14:18:00,14:19:00,1474900,9, +24986525_257923,14:20:00,14:21:00,1474901,10, +24986525_257923,14:23:00,14:24:00,1474902,11, +24986525_257923,14:26:00,14:26:00,1474819,12, +24986525_257923,14:33:00,14:33:00,1536277,13, +24986526_257924,13:27:00,13:27:00,1474779,0, +24986526_257924,13:31:00,13:32:00,1475125,1, +24986526_257924,13:41:00,13:41:00,1475126,2, +24986526_257924,13:48:00,13:49:00,1474720,3, +24986526_257924,13:53:00,13:53:00,1474796,4, +24986526_257924,13:58:00,13:58:00,1475148,5, +24986526_257924,14:03:00,14:03:00,1475146,6, +24986526_257924,14:09:00,14:10:00,1474818,7, +24986526_257924,14:13:00,14:14:00,1474899,8, +24986526_257924,14:17:00,14:18:00,1474900,9, +24986526_257924,14:20:00,14:20:00,1474901,10, +24986526_257924,14:23:00,14:23:00,1474902,11, +24986526_257924,14:25:00,14:26:00,1474819,12, +24986526_257924,14:32:00,14:32:00,1474640,13, +24986528_257926,13:12:00,13:12:00,1474755,0, +24986528_257926,13:17:00,13:17:00,1475154,1, +24986528_257926,13:20:00,13:21:00,1474920,2, +24986528_257926,13:24:00,13:24:00,1474756,3, +24986528_257926,13:29:00,13:30:00,1475155,4, +24986528_257926,13:33:00,13:33:00,1474757,5, +24986528_257926,13:41:00,13:42:00,1474758,6, +24986528_257926,13:47:00,13:47:00,1475151,7, +24986528_257926,13:51:00,13:52:00,1475152,8, +24986528_257926,13:54:00,13:54:00,1474759,9, +24986528_257926,13:56:00,13:57:00,1475153,10, +24986528_257926,14:02:00,14:03:00,1474760,11, +24986528_257926,14:07:00,14:07:00,1475147,12, +24986528_257926,14:12:00,14:12:00,1474816,13, +24986528_257926,14:16:00,14:17:00,1474779,14, +24986528_257926,14:21:00,14:21:00,1475125,15, +24986528_257926,14:31:00,14:31:00,1475126,16, +24986528_257926,14:38:00,14:40:00,1474720,17, +24986528_257926,14:44:00,14:45:00,1474796,18, +24986528_257926,14:49:00,14:50:00,1475148,19, +24986528_257926,14:54:00,14:55:00,1475146,20, +24986528_257926,15:01:00,15:01:00,1474818,21, +24986528_257926,15:05:00,15:06:00,1474899,22, +24986528_257926,15:09:00,15:10:00,1474900,23, +24986528_257926,15:12:00,15:12:00,1474901,24, +24986528_257926,15:15:00,15:15:00,1474902,25, +24986528_257926,15:17:00,15:18:00,1474819,26, +24986528_257926,15:24:00,15:24:00,1536277,27, +24986529_257927,12:52:00,12:52:00,1474755,0, +24986529_257927,12:57:00,12:57:00,1475154,1, +24986529_257927,13:00:00,13:01:00,1474920,2, +24986529_257927,13:03:00,13:04:00,1474756,3, +24986529_257927,13:09:00,13:09:00,1475155,4, +24986529_257927,13:12:00,13:12:00,1474757,5, +24986529_257927,13:19:00,13:19:00,1474758,6, +24986529_257927,13:24:00,13:25:00,1475151,7, +24986529_257927,13:29:00,13:30:00,1475152,8, +24986529_257927,13:32:00,13:33:00,1474759,9, +24986529_257927,13:34:00,13:35:00,1475153,10, +24986529_257927,13:41:00,13:41:00,1474760,11, +24986529_257927,13:45:00,13:46:00,1475147,12, +24986529_257927,13:49:00,13:50:00,1474816,13, +24986529_257927,13:54:00,13:55:00,1474779,14, +24986529_257927,13:58:00,13:59:00,1475125,15, +24986529_257927,14:08:00,14:09:00,1475126,16, +24986529_257927,14:15:00,14:16:00,1474720,17, +24986529_257927,14:20:00,14:20:00,1474796,18, +24986529_257927,14:25:00,14:26:00,1475148,19, +24986529_257927,14:30:00,14:31:00,1475146,20, +24986529_257927,14:36:00,14:37:00,1474818,21, +24986529_257927,14:41:00,14:42:00,1474899,22, +24986529_257927,14:45:00,14:46:00,1474900,23, +24986529_257927,14:48:00,14:48:00,1474901,24, +24986529_257927,14:51:00,14:51:00,1474902,25, +24986529_257927,14:53:00,14:54:00,1474819,26, +24986529_257927,15:01:00,15:01:00,1474640,27, +24986530_257928,14:50:00,14:50:00,1474779,0, +24986530_257928,14:54:00,14:54:00,1475125,1, +24986530_257928,15:03:00,15:04:00,1475126,2, +24986530_257928,15:10:00,15:11:00,1474720,3, +24986530_257928,15:15:00,15:16:00,1474796,4, +24986530_257928,15:20:00,15:21:00,1475148,5, +24986530_257928,15:25:00,15:26:00,1475146,6, +24986530_257928,15:31:00,15:32:00,1474818,7, +24986530_257928,15:36:00,15:36:00,1474899,8, +24986530_257928,15:39:00,15:40:00,1474900,9, +24986530_257928,15:42:00,15:43:00,1474901,10, +24986530_257928,15:45:00,15:46:00,1474902,11, +24986530_257928,15:47:00,15:48:00,1474819,12, +24986530_257928,15:55:00,15:55:00,1536277,13, +24986532_257930,14:50:00,14:50:00,1474779,0, +24986532_257930,14:54:00,14:54:00,1475125,1, +24986532_257930,15:03:00,15:04:00,1475126,2, +24986532_257930,15:10:00,15:11:00,1474720,3, +24986532_257930,15:15:00,15:16:00,1474796,4, +24986532_257930,15:20:00,15:21:00,1475148,5, +24986532_257930,15:25:00,15:26:00,1475146,6, +24986532_257930,15:31:00,15:32:00,1474818,7, +24986532_257930,15:36:00,15:36:00,1474899,8, +24986532_257930,15:39:00,15:40:00,1474900,9, +24986532_257930,15:42:00,15:43:00,1474901,10, +24986532_257930,15:45:00,15:46:00,1474902,11, +24986532_257930,15:47:00,15:48:00,1474819,12, +24986532_257930,15:55:00,15:55:00,1474640,13, +24986534_257932,16:07:00,16:07:00,1474779,0, +24986534_257932,16:11:00,16:11:00,1475125,1, +24986534_257932,16:20:00,16:21:00,1475126,2, +24986534_257932,16:28:00,16:29:00,1474720,3, +24986534_257932,16:33:00,16:33:00,1474796,4, +24986534_257932,16:38:00,16:38:00,1475148,5, +24986534_257932,16:43:00,16:43:00,1475146,6, +24986534_257932,16:49:00,16:50:00,1474818,7, +24986534_257932,16:53:00,16:54:00,1474899,8, +24986534_257932,16:57:00,16:58:00,1474900,9, +24986534_257932,17:00:00,17:00:00,1474901,10, +24986534_257932,17:02:00,17:03:00,1474902,11, +24986534_257932,17:05:00,17:06:00,1474819,12, +24986534_257932,17:12:00,17:12:00,1536277,13, +24986535_257933,16:00:00,16:00:00,1474779,0, +24986535_257933,16:04:00,16:04:00,1475125,1, +24986535_257933,16:13:00,16:14:00,1475126,2, +24986535_257933,16:20:00,16:21:00,1474720,3, +24986535_257933,16:25:00,16:25:00,1474796,4, +24986535_257933,16:30:00,16:30:00,1475148,5, +24986535_257933,16:35:00,16:35:00,1475146,6, +24986535_257933,16:41:00,16:42:00,1474818,7, +24986535_257933,16:45:00,16:46:00,1474899,8, +24986535_257933,16:49:00,16:50:00,1474900,9, +24986535_257933,16:52:00,16:52:00,1474901,10, +24986535_257933,16:55:00,16:55:00,1474902,11, +24986535_257933,16:57:00,16:58:00,1474819,12, +24986535_257933,17:05:00,17:05:00,1474640,13, +24986537_257935,14:27:00,14:27:00,1475124,0, +24986537_257935,14:30:00,14:31:00,1475123,1, +24986537_257935,14:35:00,14:36:00,1475122,2, +24986537_257935,14:43:00,14:44:00,1475156,3, +24986537_257935,14:49:00,14:50:00,1475121,4, +24986537_257935,14:52:00,14:52:00,1475157,5, +24986537_257935,14:55:00,14:56:00,1475120,6, +24986537_257935,14:59:00,14:59:00,1475158,7, +24986537_257935,15:02:00,15:03:00,1475119,8, +24986537_257935,15:06:00,15:07:00,1475159,9, +24986537_257935,15:10:00,15:10:00,1475160,10, +24986537_257935,15:15:00,15:15:00,1475118,11, +24986537_257935,15:19:00,15:31:00,1474755,12, +24986537_257935,15:36:00,15:36:00,1475154,13, +24986537_257935,15:39:00,15:40:00,1474920,14, +24986537_257935,15:43:00,15:43:00,1474756,15, +24986537_257935,15:48:00,15:48:00,1475155,16, +24986537_257935,15:51:00,15:52:00,1474757,17, +24986537_257935,16:00:00,16:01:00,1474758,18, +24986537_257935,16:06:00,16:06:00,1475151,19, +24986537_257935,16:10:00,16:10:00,1475152,20, +24986537_257935,16:13:00,16:13:00,1474759,21, +24986537_257935,16:15:00,16:16:00,1475153,22, +24986537_257935,16:21:00,16:22:00,1474760,23, +24986537_257935,16:26:00,16:26:00,1475147,24, +24986537_257935,16:30:00,16:31:00,1474816,25, +24986537_257935,16:34:00,16:35:00,1474779,26, +24986537_257935,16:39:00,16:40:00,1475125,27, +24986537_257935,16:49:00,16:49:00,1475126,28, +24986537_257935,16:56:00,16:58:00,1474720,29, +24986537_257935,17:02:00,17:03:00,1474796,30, +24986537_257935,17:08:00,17:09:00,1475148,31, +24986537_257935,17:14:00,17:14:00,1475146,32, +24986537_257935,17:21:00,17:22:00,1474818,33, +24986537_257935,17:25:00,17:26:00,1474899,34, +24986537_257935,17:29:00,17:30:00,1474900,35, +24986537_257935,17:32:00,17:32:00,1474901,36, +24986537_257935,17:35:00,17:35:00,1474902,37, +24986537_257935,17:37:00,17:38:00,1474819,38, +24986537_257935,17:44:00,17:44:00,1474640,39, +24986539_257937,14:28:00,14:28:00,1475124,0, +24986539_257937,14:31:00,14:32:00,1475123,1, +24986539_257937,14:37:00,14:37:00,1475122,2, +24986539_257937,14:44:00,14:45:00,1475156,3, +24986539_257937,14:50:00,14:51:00,1475121,4, +24986539_257937,14:53:00,14:53:00,1475157,5, +24986539_257937,14:56:00,14:57:00,1475120,6, +24986539_257937,14:59:00,14:59:00,1475158,7, +24986539_257937,15:02:00,15:03:00,1475119,8, +24986539_257937,15:06:00,15:07:00,1475159,9, +24986539_257937,15:10:00,15:10:00,1475160,10, +24986539_257937,15:15:00,15:15:00,1475118,11, +24986539_257937,15:18:00,15:20:00,1474755,12, +24986539_257937,15:25:00,15:25:00,1475154,13, +24986539_257937,15:28:00,15:29:00,1474920,14, +24986539_257937,15:31:00,15:32:00,1474756,15, +24986539_257937,15:37:00,15:37:00,1475155,16, +24986539_257937,15:40:00,15:40:00,1474757,17, +24986539_257937,15:46:00,15:47:00,1474758,18, +24986539_257937,15:52:00,15:52:00,1475151,19, +24986539_257937,15:56:00,15:57:00,1475152,20, +24986539_257937,15:59:00,16:00:00,1474759,21, +24986539_257937,16:02:00,16:02:00,1475153,22, +24986539_257937,16:08:00,16:08:00,1474760,23, +24986539_257937,16:12:00,16:13:00,1475147,24, +24986539_257937,16:17:00,16:17:00,1474816,25, +24986539_257937,16:21:00,16:22:00,1474779,26, +24986539_257937,16:25:00,16:26:00,1475125,27, +24986539_257937,16:35:00,16:35:00,1475126,28, +24986539_257937,16:42:00,16:45:00,1474720,29, +24986539_257937,16:49:00,16:50:00,1474796,30, +24986539_257937,16:54:00,16:55:00,1475148,31, +24986539_257937,16:59:00,17:00:00,1475146,32, +24986539_257937,17:06:00,17:07:00,1474818,33, +24986539_257937,17:11:00,17:11:00,1474899,34, +24986539_257937,17:15:00,17:16:00,1474900,35, +24986539_257937,17:18:00,17:19:00,1474901,36, +24986539_257937,17:21:00,17:22:00,1474902,37, +24986539_257937,17:24:00,17:25:00,1474819,38, +24986539_257937,17:32:00,17:32:00,1474640,39, +24986541_257939,16:23:00,16:23:00,1474755,0, +24986541_257939,16:28:00,16:28:00,1475154,1, +24986541_257939,16:31:00,16:31:00,1474920,2, +24986541_257939,16:34:00,16:35:00,1474756,3, +24986541_257939,16:39:00,16:40:00,1475155,4, +24986541_257939,16:42:00,16:43:00,1474757,5, +24986541_257939,16:51:00,16:52:00,1474758,6, +24986541_257939,16:57:00,16:58:00,1475151,7, +24986541_257939,17:03:00,17:05:00,1475152,8, +24986541_257939,17:08:00,17:09:00,1474759,9, +24986541_257939,17:11:00,17:12:00,1475153,10, +24986541_257939,17:17:00,17:22:00,1474760,11, +24986541_257939,17:27:00,17:27:00,1475147,12, +24986541_257939,17:32:00,17:32:00,1474816,13, +24986541_257939,17:36:00,17:37:00,1474779,14, +24986541_257939,17:40:00,17:41:00,1475125,15, +24986541_257939,17:50:00,17:50:00,1475126,16, +24986541_257939,17:57:00,17:58:00,1474720,17, +24986541_257939,18:01:00,18:02:00,1474796,18, +24986541_257939,18:06:00,18:07:00,1475148,19, +24986541_257939,18:11:00,18:12:00,1475146,20, +24986541_257939,18:17:00,18:18:00,1474818,21, +24986541_257939,18:22:00,18:22:00,1474899,22, +24986541_257939,18:26:00,18:27:00,1474900,23, +24986541_257939,18:29:00,18:30:00,1474901,24, +24986541_257939,18:32:00,18:33:00,1474902,25, +24986541_257939,18:35:00,18:36:00,1474819,26, +24986541_257939,18:42:00,18:42:00,1474640,27, +24986542_257940,16:29:00,16:29:00,1474755,0, +24986542_257940,16:34:00,16:34:00,1475154,1, +24986542_257940,16:37:00,16:37:00,1474920,2, +24986542_257940,16:40:00,16:41:00,1474756,3, +24986542_257940,16:45:00,16:46:00,1475155,4, +24986542_257940,16:48:00,16:49:00,1474757,5, +24986542_257940,16:55:00,16:55:00,1474758,6, +24986542_257940,17:00:00,17:01:00,1475151,7, +24986542_257940,17:05:00,17:05:00,1475152,8, +24986542_257940,17:08:00,17:08:00,1474759,9, +24986542_257940,17:10:00,17:11:00,1475153,10, +24986542_257940,17:16:00,17:17:00,1474760,11, +24986542_257940,17:21:00,17:21:00,1475147,12, +24986542_257940,17:25:00,17:25:00,1474816,13, +24986542_257940,17:29:00,17:30:00,1474779,14, +24986542_257940,17:34:00,17:34:00,1475125,15, +24986542_257940,17:43:00,17:44:00,1475126,16, +24986542_257940,17:50:00,17:51:00,1474720,17, +24986542_257940,17:55:00,17:55:00,1474796,18, +24986542_257940,18:00:00,18:01:00,1475148,19, +24986542_257940,18:05:00,18:06:00,1475146,20, +24986542_257940,18:12:00,18:13:00,1474818,21, +24986542_257940,18:17:00,18:17:00,1474899,22, +24986542_257940,18:21:00,18:22:00,1474900,23, +24986542_257940,18:24:00,18:24:00,1474901,24, +24986542_257940,18:27:00,18:27:00,1474902,25, +24986542_257940,18:30:00,18:31:00,1474819,26, +24986542_257940,18:38:00,18:38:00,1474640,27, +24986543_257941,05:22:00,05:22:00,1475162,0, +24986543_257941,05:24:00,05:25:00,1475118,1, +24986543_257941,05:29:00,05:30:00,1475160,2, +24986543_257941,05:32:00,05:33:00,1475159,3, +24986543_257941,05:36:00,05:37:00,1475119,4, +24986543_257941,05:40:00,05:41:00,1475158,5, +24986543_257941,05:43:00,05:43:00,1475120,6, +24986543_257941,05:46:00,05:47:00,1475157,7, +24986543_257941,05:49:00,05:49:00,1475121,8, +24986543_257941,05:55:00,05:55:00,1475156,9, +24986543_257941,06:03:00,06:03:00,1475122,10, +24986543_257941,06:08:00,06:08:00,1475123,11, +24986543_257941,06:13:00,06:13:00,1475124,12, +24986544_257942,05:29:00,05:29:00,1475162,0, +24986544_257942,05:31:00,05:32:00,1475118,1, +24986544_257942,05:36:00,05:37:00,1475160,2, +24986544_257942,05:39:00,05:40:00,1475159,3, +24986544_257942,05:43:00,05:44:00,1475119,4, +24986544_257942,05:47:00,05:48:00,1475158,5, +24986544_257942,05:50:00,05:50:00,1475120,6, +24986544_257942,05:53:00,05:54:00,1475157,7, +24986544_257942,05:56:00,05:56:00,1475121,8, +24986544_257942,06:02:00,06:02:00,1475156,9, +24986544_257942,06:10:00,06:10:00,1475122,10, +24986544_257942,06:15:00,06:15:00,1475123,11, +24986544_257942,06:20:00,06:20:00,1475124,12, +24986548_257946,04:51:00,04:51:00,1474640,0, +24986548_257946,04:56:00,04:57:00,1474794,1, +24986548_257946,04:59:00,04:59:00,1474892,2, +24986548_257946,05:01:00,05:02:00,1474893,3, +24986548_257946,05:04:00,05:04:00,1474894,4, +24986548_257946,05:07:00,05:07:00,1474895,5, +24986548_257946,05:11:00,05:12:00,1474795,6, +24986548_257946,05:17:00,05:18:00,1475144,7, +24986548_257946,05:22:00,05:22:00,1475163,8, +24986548_257946,05:26:00,05:27:00,1474796,9, +24986548_257946,05:31:00,05:35:00,1474714,10, +24986548_257946,05:42:00,05:45:00,1475126,11, +24986548_257946,05:55:00,05:56:00,1474990,12, +24986548_257946,06:00:00,06:01:00,1474779,13, +24986548_257946,06:04:00,06:05:00,1474816,14, +24986548_257946,06:10:00,06:10:00,1475164,15, +24986548_257946,06:15:00,06:18:00,1474781,16, +24986548_257946,06:25:00,06:25:00,1474916,17, +24986548_257946,06:27:00,06:28:00,1474820,18, +24986548_257946,06:31:00,06:32:00,1474917,19, +24986548_257946,06:36:00,06:37:00,1474918,20, +24986548_257946,06:43:00,06:43:00,1474821,21, +24986548_257946,06:52:00,06:53:00,1474757,22, +24986548_257946,06:55:00,06:56:00,1474919,23, +24986548_257946,07:01:00,07:01:00,1474822,24, +24986548_257946,07:04:00,07:05:00,1609772,25, +24986548_257946,07:08:00,07:08:00,1474921,26, +24986548_257946,07:13:00,07:26:00,1474823,27, +24986548_257946,07:28:00,07:29:00,1475118,28, +24986548_257946,07:33:00,07:34:00,1475160,29, +24986548_257946,07:36:00,07:37:00,1475159,30, +24986548_257946,07:40:00,07:41:00,1475119,31, +24986548_257946,07:44:00,07:44:00,1475158,32, +24986548_257946,07:46:00,07:47:00,1475120,33, +24986548_257946,07:50:00,07:50:00,1475157,34, +24986548_257946,07:52:00,07:53:00,1475121,35, +24986548_257946,07:58:00,07:58:00,1475156,36, +24986548_257946,08:05:00,08:06:00,1475122,37, +24986548_257946,08:11:00,08:11:00,1475123,38, +24986548_257946,08:15:00,08:15:00,1475124,39, +24986550_257948,04:51:00,04:51:00,1474640,0, +24986550_257948,04:56:00,04:57:00,1474794,1, +24986550_257948,04:59:00,04:59:00,1474892,2, +24986550_257948,05:02:00,05:02:00,1474893,3, +24986550_257948,05:04:00,05:04:00,1474894,4, +24986550_257948,05:07:00,05:08:00,1474895,5, +24986550_257948,05:11:00,05:12:00,1474795,6, +24986550_257948,05:17:00,05:18:00,1475144,7, +24986550_257948,05:22:00,05:22:00,1475163,8, +24986550_257948,05:26:00,05:27:00,1474796,9, +24986550_257948,05:31:00,05:34:00,1474714,10, +24986550_257948,05:42:00,05:45:00,1474989,11, +24986550_257948,05:54:00,05:54:00,1474990,12, +24986550_257948,05:58:00,06:00:00,1474779,13, +24986550_257948,06:02:00,06:03:00,1474780,14, +24986550_257948,06:07:00,06:08:00,1475164,15, +24986550_257948,06:13:00,06:16:00,1474781,16, +24986550_257948,06:22:00,06:23:00,1474916,17, +24986550_257948,06:25:00,06:25:00,1474820,18, +24986550_257948,06:28:00,06:28:00,1474917,19, +24986550_257948,06:32:00,06:33:00,1474918,20, +24986550_257948,06:38:00,06:39:00,1474821,21, +24986550_257948,06:46:00,06:50:00,1474757,22, +24986550_257948,06:53:00,06:53:00,1474919,23, +24986550_257948,06:58:00,06:59:00,1474822,24, +24986550_257948,07:02:00,07:02:00,1609772,25, +24986550_257948,07:05:00,07:06:00,1474921,26, +24986550_257948,07:11:00,07:24:00,1474823,27, +24986550_257948,07:26:00,07:27:00,1475118,28, +24986550_257948,07:31:00,07:32:00,1475160,29, +24986550_257948,07:34:00,07:35:00,1475159,30, +24986550_257948,07:38:00,07:39:00,1475119,31, +24986550_257948,07:42:00,07:42:00,1475158,32, +24986550_257948,07:44:00,07:45:00,1475120,33, +24986550_257948,07:48:00,07:48:00,1475157,34, +24986550_257948,07:50:00,07:51:00,1475121,35, +24986550_257948,07:56:00,07:56:00,1475156,36, +24986550_257948,08:04:00,08:04:00,1475122,37, +24986550_257948,08:09:00,08:09:00,1475123,38, +24986550_257948,08:14:00,08:14:00,1475124,39, +24986556_257954,06:10:00,06:10:00,1474640,0, +24986556_257954,06:15:00,06:16:00,1474794,1, +24986556_257954,06:18:00,06:18:00,1474892,2, +24986556_257954,06:21:00,06:22:00,1474893,3, +24986556_257954,06:24:00,06:25:00,1474894,4, +24986556_257954,06:28:00,06:28:00,1474895,5, +24986556_257954,06:32:00,06:33:00,1474795,6, +24986556_257954,06:39:00,06:39:00,1475144,7, +24986556_257954,06:43:00,06:44:00,1475163,8, +24986556_257954,06:48:00,06:49:00,1474796,9, +24986556_257954,06:55:00,06:56:00,1474714,10, +24986556_257954,07:03:00,07:03:00,1474989,11, +24986556_257954,07:14:00,07:14:00,1474990,12, +24986556_257954,07:19:00,07:20:00,1474779,13, +24986556_257954,07:23:00,07:23:00,1474816,14, +24986556_257954,07:28:00,07:28:00,1475164,15, +24986556_257954,07:33:00,07:34:00,1474781,16, +24986556_257954,07:40:00,07:40:00,1474916,17, +24986556_257954,07:42:00,07:42:00,1474820,18, +24986556_257954,07:44:00,07:45:00,1474917,19, +24986556_257954,07:49:00,07:49:00,1474918,20, +24986556_257954,07:54:00,07:54:00,1474821,21, +24986556_257954,08:03:00,08:03:00,1474757,22, +24986556_257954,08:06:00,08:06:00,1474919,23, +24986556_257954,08:11:00,08:12:00,1474822,24, +24986556_257954,08:14:00,08:15:00,1609772,25, +24986556_257954,08:18:00,08:18:00,1474921,26, +24986556_257954,08:24:00,08:24:00,1474755,27, +24986557_257955,06:10:00,06:10:00,1474640,0, +24986557_257955,06:15:00,06:16:00,1474794,1, +24986557_257955,06:18:00,06:19:00,1474892,2, +24986557_257955,06:21:00,06:22:00,1474893,3, +24986557_257955,06:24:00,06:24:00,1474894,4, +24986557_257955,06:27:00,06:28:00,1474895,5, +24986557_257955,06:32:00,06:33:00,1474795,6, +24986557_257955,06:38:00,06:39:00,1475144,7, +24986557_257955,06:43:00,06:43:00,1475163,8, +24986557_257955,06:48:00,06:48:00,1474796,9, +24986557_257955,06:53:00,06:54:00,1474714,10, +24986557_257955,07:01:00,07:01:00,1474989,11, +24986557_257955,07:11:00,07:11:00,1474990,12, +24986557_257955,07:15:00,07:16:00,1474779,13, +24986557_257955,07:19:00,07:19:00,1474780,14, +24986557_257955,07:24:00,07:24:00,1475164,15, +24986557_257955,07:29:00,07:30:00,1474781,16, +24986557_257955,07:36:00,07:36:00,1474916,17, +24986557_257955,07:38:00,07:39:00,1474820,18, +24986557_257955,07:41:00,07:42:00,1474917,19, +24986557_257955,07:46:00,07:46:00,1474918,20, +24986557_257955,07:52:00,07:52:00,1474821,21, +24986557_257955,07:58:00,07:58:00,1474757,22, +24986557_257955,08:01:00,08:01:00,1474919,23, +24986557_257955,08:06:00,08:06:00,1474822,24, +24986557_257955,08:09:00,08:09:00,1609772,25, +24986557_257955,08:12:00,08:13:00,1474921,26, +24986557_257955,08:18:00,08:18:00,1474755,27, +24986559_257957,07:01:00,07:01:00,1536277,0, +24986559_257957,07:07:00,07:08:00,1474794,1, +24986559_257957,07:10:00,07:10:00,1474892,2, +24986559_257957,07:13:00,07:13:00,1474893,3, +24986559_257957,07:15:00,07:16:00,1474894,4, +24986559_257957,07:19:00,07:19:00,1474895,5, +24986559_257957,07:24:00,07:25:00,1474795,6, +24986559_257957,07:30:00,07:31:00,1475144,7, +24986559_257957,07:35:00,07:35:00,1475163,8, +24986559_257957,07:40:00,07:41:00,1474796,9, +24986559_257957,07:45:00,07:46:00,1474714,10, +24986559_257957,07:53:00,07:53:00,1474989,11, +24986559_257957,08:03:00,08:03:00,1474990,12, +24986559_257957,08:07:00,08:08:00,1474779,13, +24986559_257957,08:11:00,08:12:00,1474816,14, +24986559_257957,08:17:00,08:17:00,1475164,15, +24986559_257957,08:22:00,08:23:00,1474781,16, +24986559_257957,08:29:00,08:29:00,1474916,17, +24986559_257957,08:31:00,08:32:00,1474820,18, +24986559_257957,08:34:00,08:35:00,1474917,19, +24986559_257957,08:38:00,08:39:00,1474918,20, +24986559_257957,08:44:00,08:45:00,1474821,21, +24986559_257957,08:53:00,08:54:00,1474757,22, +24986559_257957,08:56:00,08:57:00,1474919,23, +24986559_257957,09:02:00,09:02:00,1474822,24, +24986559_257957,09:05:00,09:06:00,1609772,25, +24986559_257957,09:09:00,09:09:00,1474921,26, +24986559_257957,09:14:00,09:24:00,1474823,27, +24986559_257957,09:26:00,09:27:00,1475118,28, +24986559_257957,09:31:00,09:32:00,1475160,29, +24986559_257957,09:34:00,09:35:00,1475159,30, +24986559_257957,09:38:00,09:39:00,1475119,31, +24986559_257957,09:42:00,09:43:00,1475158,32, +24986559_257957,09:45:00,09:45:00,1475120,33, +24986559_257957,09:48:00,09:49:00,1475157,34, +24986559_257957,09:51:00,09:51:00,1475121,35, +24986559_257957,09:57:00,09:57:00,1475156,36, +24986559_257957,10:05:00,10:05:00,1475122,37, +24986559_257957,10:10:00,10:10:00,1475123,38, +24986559_257957,10:15:00,10:15:00,1475124,39, +24986561_257959,07:02:00,07:02:00,1474640,0, +24986561_257959,07:08:00,07:09:00,1474794,1, +24986561_257959,07:11:00,07:11:00,1474892,2, +24986561_257959,07:14:00,07:14:00,1474893,3, +24986561_257959,07:16:00,07:17:00,1474894,4, +24986561_257959,07:20:00,07:20:00,1474895,5, +24986561_257959,07:25:00,07:26:00,1474795,6, +24986561_257959,07:31:00,07:32:00,1475144,7, +24986561_257959,07:36:00,07:36:00,1475163,8, +24986561_257959,07:41:00,07:42:00,1474796,9, +24986561_257959,07:47:00,07:52:00,1474714,10, +24986561_257959,07:59:00,07:59:00,1474989,11, +24986561_257959,08:09:00,08:09:00,1474990,12, +24986561_257959,08:13:00,08:14:00,1474779,13, +24986561_257959,08:17:00,08:17:00,1474780,14, +24986561_257959,08:22:00,08:22:00,1475164,15, +24986561_257959,08:27:00,08:28:00,1474781,16, +24986561_257959,08:34:00,08:34:00,1474916,17, +24986561_257959,08:36:00,08:37:00,1474820,18, +24986561_257959,08:39:00,08:40:00,1474917,19, +24986561_257959,08:44:00,08:44:00,1474918,20, +24986561_257959,08:50:00,08:50:00,1474821,21, +24986561_257959,08:56:00,08:57:00,1474757,22, +24986561_257959,09:00:00,09:00:00,1474919,23, +24986561_257959,09:05:00,09:06:00,1474822,24, +24986561_257959,09:09:00,09:09:00,1609772,25, +24986561_257959,09:12:00,09:13:00,1474921,26, +24986561_257959,09:18:00,09:24:00,1474823,27, +24986561_257959,09:26:00,09:27:00,1475118,28, +24986561_257959,09:31:00,09:32:00,1475160,29, +24986561_257959,09:34:00,09:35:00,1475159,30, +24986561_257959,09:38:00,09:39:00,1475119,31, +24986561_257959,09:42:00,09:43:00,1475158,32, +24986561_257959,09:45:00,09:45:00,1475120,33, +24986561_257959,09:48:00,09:49:00,1475157,34, +24986561_257959,09:51:00,09:51:00,1475121,35, +24986561_257959,09:57:00,09:57:00,1475156,36, +24986561_257959,10:05:00,10:05:00,1475122,37, +24986561_257959,10:10:00,10:10:00,1475123,38, +24986561_257959,10:15:00,10:15:00,1475124,39, +24986563_257961,08:14:00,08:14:00,1536279,0, +24986563_257961,08:19:00,08:20:00,1474794,1, +24986563_257961,08:22:00,08:22:00,1474892,2, +24986563_257961,08:25:00,08:25:00,1474893,3, +24986563_257961,08:27:00,08:27:00,1474894,4, +24986563_257961,08:30:00,08:31:00,1474895,5, +24986563_257961,08:35:00,08:36:00,1474795,6, +24986563_257961,08:41:00,08:42:00,1475144,7, +24986563_257961,08:46:00,08:46:00,1475163,8, +24986563_257961,08:51:00,08:52:00,1474796,9, +24986563_257961,08:56:00,08:57:00,1474714,10, +24986563_257961,09:04:00,09:04:00,1474989,11, +24986563_257961,09:14:00,09:14:00,1474990,12, +24986563_257961,09:19:00,09:27:00,1474779,13, +24986563_257961,09:30:00,09:30:00,1474816,14, +24986563_257961,09:35:00,09:36:00,1475164,15, +24986563_257961,09:41:00,09:41:00,1474781,16, +24986563_257961,09:47:00,09:48:00,1474916,17, +24986563_257961,09:50:00,09:50:00,1474820,18, +24986563_257961,09:53:00,09:53:00,1474917,19, +24986563_257961,09:57:00,09:57:00,1474918,20, +24986563_257961,10:03:00,10:03:00,1474821,21, +24986563_257961,10:12:00,10:13:00,1474757,22, +24986563_257961,10:16:00,10:16:00,1474919,23, +24986563_257961,10:22:00,10:23:00,1474822,24, +24986563_257961,10:26:00,10:26:00,1609772,25, +24986563_257961,10:29:00,10:30:00,1474921,26, +24986563_257961,10:36:00,10:36:00,1474755,27, +24986564_257962,08:12:00,08:12:00,1474640,0, +24986564_257962,08:17:00,08:18:00,1474794,1, +24986564_257962,08:20:00,08:20:00,1474892,2, +24986564_257962,08:23:00,08:23:00,1474893,3, +24986564_257962,08:25:00,08:25:00,1474894,4, +24986564_257962,08:28:00,08:29:00,1474895,5, +24986564_257962,08:33:00,08:34:00,1474795,6, +24986564_257962,08:39:00,08:39:00,1475144,7, +24986564_257962,08:43:00,08:44:00,1475163,8, +24986564_257962,08:48:00,08:49:00,1474796,9, +24986564_257962,08:53:00,08:54:00,1474714,10, +24986564_257962,09:01:00,09:01:00,1474989,11, +24986564_257962,09:11:00,09:11:00,1474990,12, +24986564_257962,09:15:00,09:16:00,1474779,13, +24986564_257962,09:19:00,09:19:00,1474780,14, +24986564_257962,09:24:00,09:24:00,1475164,15, +24986564_257962,09:29:00,09:30:00,1474781,16, +24986564_257962,09:36:00,09:37:00,1474916,17, +24986564_257962,09:39:00,09:39:00,1474820,18, +24986564_257962,09:42:00,09:42:00,1474917,19, +24986564_257962,09:46:00,09:47:00,1474918,20, +24986564_257962,09:52:00,09:52:00,1474821,21, +24986564_257962,09:58:00,09:59:00,1474757,22, +24986564_257962,10:02:00,10:02:00,1474919,23, +24986564_257962,10:08:00,10:08:00,1474822,24, +24986564_257962,10:11:00,10:12:00,1609772,25, +24986564_257962,10:15:00,10:16:00,1474921,26, +24986564_257962,10:22:00,10:22:00,1474755,27, +24986566_257964,10:55:00,10:55:00,1474640,0, +24986566_257964,11:01:00,11:02:00,1474794,1, +24986566_257964,11:04:00,11:04:00,1474892,2, +24986566_257964,11:07:00,11:07:00,1474893,3, +24986566_257964,11:09:00,11:10:00,1474894,4, +24986566_257964,11:13:00,11:13:00,1474895,5, +24986566_257964,11:17:00,11:18:00,1474795,6, +24986566_257964,11:24:00,11:25:00,1475144,7, +24986566_257964,11:30:00,11:31:00,1475163,8, +24986566_257964,11:36:00,11:37:00,1474796,9, +24986566_257964,11:42:00,11:49:00,1474714,10, +24986566_257964,11:56:00,11:56:00,1474989,11, +24986566_257964,12:05:00,12:06:00,1474990,12, +24986566_257964,12:09:00,12:10:00,1474779,13, +24986566_257964,12:13:00,12:14:00,1474816,14, +24986566_257964,12:19:00,12:19:00,1475164,15, +24986566_257964,12:24:00,12:25:00,1474781,16, +24986566_257964,12:31:00,12:31:00,1474916,17, +24986566_257964,12:33:00,12:34:00,1474820,18, +24986566_257964,12:36:00,12:37:00,1474917,19, +24986566_257964,12:41:00,12:42:00,1474918,20, +24986566_257964,12:48:00,12:49:00,1474821,21, +24986566_257964,12:57:00,12:58:00,1474757,22, +24986566_257964,13:00:00,13:01:00,1474919,23, +24986566_257964,13:05:00,13:06:00,1474822,24, +24986566_257964,13:09:00,13:09:00,1609772,25, +24986566_257964,13:12:00,13:13:00,1474921,26, +24986566_257964,13:17:00,13:20:00,1474823,27, +24986566_257964,13:22:00,13:23:00,1475118,28, +24986566_257964,13:27:00,13:28:00,1475160,29, +24986566_257964,13:30:00,13:31:00,1475159,30, +24986566_257964,13:34:00,13:35:00,1475119,31, +24986566_257964,13:38:00,13:38:00,1475158,32, +24986566_257964,13:41:00,13:41:00,1475120,33, +24986566_257964,13:44:00,13:44:00,1475157,34, +24986566_257964,13:47:00,13:47:00,1475161,35, +24986566_257964,13:52:00,13:53:00,1475156,36, +24986566_257964,14:00:00,14:01:00,1475122,37, +24986566_257964,14:05:00,14:06:00,1475123,38, +24986566_257964,14:10:00,14:10:00,1475124,39, +24986567_257965,10:58:00,10:58:00,1474640,0, +24986567_257965,11:04:00,11:05:00,1474794,1, +24986567_257965,11:07:00,11:07:00,1474892,2, +24986567_257965,11:10:00,11:10:00,1474893,3, +24986567_257965,11:12:00,11:13:00,1474894,4, +24986567_257965,11:16:00,11:16:00,1474895,5, +24986567_257965,11:20:00,11:21:00,1474795,6, +24986567_257965,11:27:00,11:27:00,1475144,7, +24986567_257965,11:31:00,11:32:00,1475163,8, +24986567_257965,11:37:00,11:37:00,1474796,9, +24986567_257965,11:42:00,11:50:00,1474714,10, +24986567_257965,11:56:00,11:57:00,1474989,11, +24986567_257965,12:06:00,12:06:00,1474990,12, +24986567_257965,12:10:00,12:11:00,1474779,13, +24986567_257965,12:13:00,12:14:00,1474780,14, +24986567_257965,12:18:00,12:19:00,1475164,15, +24986567_257965,12:24:00,12:24:00,1474781,16, +24986567_257965,12:30:00,12:31:00,1474916,17, +24986567_257965,12:33:00,12:33:00,1474820,18, +24986567_257965,12:36:00,12:36:00,1474917,19, +24986567_257965,12:41:00,12:41:00,1474918,20, +24986567_257965,12:47:00,12:48:00,1474821,21, +24986567_257965,12:54:00,12:54:00,1474757,22, +24986567_257965,12:57:00,12:57:00,1474919,23, +24986567_257965,13:02:00,13:03:00,1474822,24, +24986567_257965,13:05:00,13:06:00,1609772,25, +24986567_257965,13:09:00,13:09:00,1474921,26, +24986567_257965,13:15:00,13:17:00,1474823,27, +24986567_257965,13:19:00,13:20:00,1475118,28, +24986567_257965,13:24:00,13:25:00,1475160,29, +24986567_257965,13:27:00,13:28:00,1475159,30, +24986567_257965,13:31:00,13:32:00,1475119,31, +24986567_257965,13:35:00,13:36:00,1475158,32, +24986567_257965,13:38:00,13:39:00,1475120,33, +24986567_257965,13:41:00,13:42:00,1475157,34, +24986567_257965,13:44:00,13:45:00,1475161,35, +24986567_257965,13:50:00,13:51:00,1475156,36, +24986567_257965,13:58:00,13:59:00,1475122,37, +24986567_257965,14:04:00,14:04:00,1475123,38, +24986567_257965,14:09:00,14:09:00,1475124,39, +24986569_257967,11:45:00,11:45:00,1474640,0, +24986569_257967,11:50:00,11:51:00,1474794,1, +24986569_257967,11:53:00,11:53:00,1474892,2, +24986569_257967,11:56:00,11:56:00,1474893,3, +24986569_257967,11:58:00,11:58:00,1474894,4, +24986569_257967,12:01:00,12:02:00,1474895,5, +24986569_257967,12:06:00,12:07:00,1474795,6, +24986569_257967,12:12:00,12:13:00,1475144,7, +24986569_257967,12:17:00,12:17:00,1475163,8, +24986569_257967,12:22:00,12:22:00,1474796,9, +24986569_257967,12:26:00,12:27:00,1474714,10, +24986569_257967,12:34:00,12:35:00,1474989,11, +24986569_257967,12:44:00,12:45:00,1474990,12, +24986569_257967,12:49:00,12:49:00,1474779,13, +24986570_257968,11:48:00,11:48:00,1474640,0, +24986570_257968,11:53:00,11:54:00,1474794,1, +24986570_257968,11:56:00,11:57:00,1474892,2, +24986570_257968,11:59:00,12:00:00,1474893,3, +24986570_257968,12:02:00,12:02:00,1474894,4, +24986570_257968,12:05:00,12:06:00,1474895,5, +24986570_257968,12:10:00,12:11:00,1474795,6, +24986570_257968,12:16:00,12:17:00,1475144,7, +24986570_257968,12:21:00,12:22:00,1475163,8, +24986570_257968,12:26:00,12:27:00,1474796,9, +24986570_257968,12:31:00,12:32:00,1474714,10, +24986570_257968,12:39:00,12:40:00,1474989,11, +24986570_257968,12:49:00,12:50:00,1474990,12, +24986570_257968,12:54:00,12:54:00,1474779,13, +24986572_257970,13:07:00,13:07:00,1474651,0, +24986572_257970,13:13:00,13:14:00,1474794,1, +24986572_257970,13:16:00,13:16:00,1474892,2, +24986572_257970,13:19:00,13:19:00,1474893,3, +24986572_257970,13:21:00,13:22:00,1474894,4, +24986572_257970,13:25:00,13:25:00,1474895,5, +24986572_257970,13:29:00,13:30:00,1474795,6, +24986572_257970,13:36:00,13:36:00,1475144,7, +24986572_257970,13:41:00,13:41:00,1475163,8, +24986572_257970,13:46:00,13:46:00,1474796,9, +24986572_257970,13:51:00,13:58:00,1474714,10, +24986572_257970,14:05:00,14:05:00,1474989,11, +24986572_257970,14:15:00,14:16:00,1474990,12, +24986572_257970,14:20:00,14:21:00,1474779,13, +24986572_257970,14:24:00,14:24:00,1474816,14, +24986572_257970,14:29:00,14:30:00,1475164,15, +24986572_257970,14:35:00,14:35:00,1474781,16, +24986572_257970,14:41:00,14:42:00,1474916,17, +24986572_257970,14:44:00,14:44:00,1474820,18, +24986572_257970,14:47:00,14:47:00,1474917,19, +24986572_257970,14:51:00,14:52:00,1474918,20, +24986572_257970,14:57:00,14:57:00,1474821,21, +24986572_257970,15:06:00,15:06:00,1474757,22, +24986572_257970,15:09:00,15:09:00,1474919,23, +24986572_257970,15:14:00,15:15:00,1474822,24, +24986572_257970,15:17:00,15:18:00,1609772,25, +24986572_257970,15:21:00,15:21:00,1474921,26, +24986572_257970,15:25:00,15:26:00,1474823,27, +24986572_257970,15:28:00,15:29:00,1475118,28, +24986572_257970,15:33:00,15:34:00,1475160,29, +24986572_257970,15:36:00,15:37:00,1475159,30, +24986572_257970,15:40:00,15:41:00,1475119,31, +24986572_257970,15:44:00,15:44:00,1475158,32, +24986572_257970,15:47:00,15:47:00,1475120,33, +24986572_257970,15:50:00,15:51:00,1475157,34, +24986572_257970,15:54:00,15:54:00,1475121,35, +24986572_257970,16:00:00,16:00:00,1475156,36, +24986572_257970,16:08:00,16:08:00,1475122,37, +24986572_257970,16:13:00,16:14:00,1475123,38, +24986572_257970,16:18:00,16:18:00,1475124,39, +24986573_257971,13:07:00,13:07:00,1474640,0, +24986573_257971,13:12:00,13:13:00,1474794,1, +24986573_257971,13:15:00,13:15:00,1474892,2, +24986573_257971,13:18:00,13:18:00,1474893,3, +24986573_257971,13:20:00,13:20:00,1474894,4, +24986573_257971,13:23:00,13:24:00,1474895,5, +24986573_257971,13:28:00,13:29:00,1474795,6, +24986573_257971,13:34:00,13:34:00,1475144,7, +24986573_257971,13:38:00,13:39:00,1475163,8, +24986573_257971,13:44:00,13:44:00,1474796,9, +24986573_257971,13:49:00,13:50:00,1474714,10, +24986573_257971,13:56:00,13:57:00,1474989,11, +24986573_257971,14:06:00,14:06:00,1474990,12, +24986573_257971,14:10:00,14:11:00,1474779,13, +24986573_257971,14:14:00,14:14:00,1474780,14, +24986573_257971,14:19:00,14:19:00,1475164,15, +24986573_257971,14:25:00,14:25:00,1474781,16, +24986573_257971,14:32:00,14:32:00,1474916,17, +24986573_257971,14:34:00,14:35:00,1474820,18, +24986573_257971,14:37:00,14:38:00,1474917,19, +24986573_257971,14:42:00,14:42:00,1474918,20, +24986573_257971,14:48:00,14:48:00,1474821,21, +24986573_257971,14:54:00,14:55:00,1474757,22, +24986573_257971,14:58:00,14:58:00,1474919,23, +24986573_257971,15:03:00,15:04:00,1474822,24, +24986573_257971,15:07:00,15:07:00,1609772,25, +24986573_257971,15:10:00,15:11:00,1474921,26, +24986573_257971,15:16:00,15:22:00,1474823,27, +24986573_257971,15:24:00,15:25:00,1475118,28, +24986573_257971,15:29:00,15:30:00,1475160,29, +24986573_257971,15:32:00,15:33:00,1475159,30, +24986573_257971,15:36:00,15:37:00,1475119,31, +24986573_257971,15:40:00,15:41:00,1475158,32, +24986573_257971,15:43:00,15:44:00,1475120,33, +24986573_257971,15:46:00,15:47:00,1475157,34, +24986573_257971,15:49:00,15:50:00,1475121,35, +24986573_257971,15:55:00,15:55:00,1475156,36, +24986573_257971,16:03:00,16:03:00,1475122,37, +24986573_257971,16:08:00,16:09:00,1475123,38, +24986573_257971,16:13:00,16:13:00,1475124,39, +24986575_257973,13:53:00,13:53:00,1536277,0, +24986575_257973,13:58:00,13:59:00,1474794,1, +24986575_257973,14:01:00,14:02:00,1474892,2, +24986575_257973,14:04:00,14:05:00,1474893,3, +24986575_257973,14:07:00,14:07:00,1474894,4, +24986575_257973,14:10:00,14:11:00,1474895,5, +24986575_257973,14:15:00,14:16:00,1474795,6, +24986575_257973,14:21:00,14:22:00,1475144,7, +24986575_257973,14:26:00,14:26:00,1475163,8, +24986575_257973,14:31:00,14:31:00,1474796,9, +24986575_257973,14:35:00,14:36:00,1474714,10, +24986575_257973,14:43:00,14:44:00,1474989,11, +24986575_257973,14:53:00,14:54:00,1474990,12, +24986575_257973,14:58:00,14:59:00,1474779,13, +24986575_257973,15:02:00,15:03:00,1474816,14, +24986575_257973,15:08:00,15:08:00,1475164,15, +24986575_257973,15:14:00,15:18:00,1474781,16, +24986575_257973,15:24:00,15:25:00,1474916,17, +24986575_257973,15:27:00,15:27:00,1474820,18, +24986575_257973,15:30:00,15:30:00,1474917,19, +24986575_257973,15:34:00,15:35:00,1474918,20, +24986575_257973,15:40:00,15:41:00,1474821,21, +24986575_257973,15:49:00,15:50:00,1474757,22, +24986575_257973,15:52:00,15:53:00,1474919,23, +24986575_257973,15:58:00,15:59:00,1474822,24, +24986575_257973,16:02:00,16:02:00,1609772,25, +24986575_257973,16:05:00,16:06:00,1474921,26, +24986575_257973,16:11:00,16:11:00,1474755,27, +24986576_257974,14:00:00,14:00:00,1474640,0, +24986576_257974,14:05:00,14:06:00,1474794,1, +24986576_257974,14:08:00,14:09:00,1474892,2, +24986576_257974,14:11:00,14:12:00,1474893,3, +24986576_257974,14:14:00,14:14:00,1474894,4, +24986576_257974,14:17:00,14:18:00,1474895,5, +24986576_257974,14:22:00,14:23:00,1474795,6, +24986576_257974,14:28:00,14:29:00,1475144,7, +24986576_257974,14:33:00,14:33:00,1475163,8, +24986576_257974,14:38:00,14:38:00,1474796,9, +24986576_257974,14:42:00,14:43:00,1474714,10, +24986576_257974,14:50:00,14:51:00,1474989,11, +24986576_257974,15:00:00,15:01:00,1474990,12, +24986576_257974,15:05:00,15:06:00,1474779,13, +24986576_257974,15:08:00,15:09:00,1474780,14, +24986576_257974,15:13:00,15:13:00,1475164,15, +24986576_257974,15:19:00,15:19:00,1474781,16, +24986576_257974,15:25:00,15:26:00,1474916,17, +24986576_257974,15:28:00,15:28:00,1474820,18, +24986576_257974,15:31:00,15:31:00,1474917,19, +24986576_257974,15:35:00,15:36:00,1474918,20, +24986576_257974,15:41:00,15:42:00,1474821,21, +24986576_257974,15:48:00,15:48:00,1474757,22, +24986576_257974,15:51:00,15:52:00,1474919,23, +24986576_257974,15:57:00,15:57:00,1474822,24, +24986576_257974,16:00:00,16:01:00,1609772,25, +24986576_257974,16:04:00,16:04:00,1474921,26, +24986576_257974,16:11:00,16:11:00,1474755,27, +24986580_257978,14:45:00,14:45:00,1536277,0, +24986580_257978,14:50:00,14:51:00,1474794,1, +24986580_257978,14:53:00,14:53:00,1474892,2, +24986580_257978,14:56:00,14:56:00,1474893,3, +24986580_257978,14:58:00,14:58:00,1474894,4, +24986580_257978,15:01:00,15:02:00,1474895,5, +24986580_257978,15:06:00,15:07:00,1474795,6, +24986580_257978,15:12:00,15:13:00,1475144,7, +24986580_257978,15:17:00,15:17:00,1475163,8, +24986580_257978,15:22:00,15:22:00,1474796,9, +24986580_257978,15:27:00,15:28:00,1474714,10, +24986580_257978,15:34:00,15:35:00,1474989,11, +24986580_257978,15:44:00,15:45:00,1474990,12, +24986580_257978,15:49:00,15:49:00,1474779,13, +24986581_257979,14:44:00,14:44:00,1474640,0, +24986581_257979,14:49:00,14:50:00,1474794,1, +24986581_257979,14:52:00,14:52:00,1474892,2, +24986581_257979,14:55:00,14:55:00,1474893,3, +24986581_257979,14:57:00,14:57:00,1474894,4, +24986581_257979,15:00:00,15:01:00,1474895,5, +24986581_257979,15:05:00,15:06:00,1474795,6, +24986581_257979,15:11:00,15:12:00,1475144,7, +24986581_257979,15:16:00,15:16:00,1475163,8, +24986581_257979,15:21:00,15:21:00,1474796,9, +24986581_257979,15:26:00,15:27:00,1474714,10, +24986581_257979,15:33:00,15:34:00,1474989,11, +24986581_257979,15:43:00,15:44:00,1474990,12, +24986581_257979,15:48:00,15:48:00,1474779,13, +24986583_257981,15:05:00,15:05:00,1536277,0, +24986583_257981,15:11:00,15:12:00,1474794,1, +24986583_257981,15:13:00,15:14:00,1474892,2, +24986583_257981,15:16:00,15:17:00,1474893,3, +24986583_257981,15:19:00,15:19:00,1474894,4, +24986583_257981,15:22:00,15:23:00,1474895,5, +24986583_257981,15:27:00,15:28:00,1474795,6, +24986583_257981,15:33:00,15:33:00,1475144,7, +24986583_257981,15:38:00,15:38:00,1475163,8, +24986583_257981,15:43:00,15:43:00,1474796,9, +24986583_257981,15:48:00,15:50:00,1474714,10, +24986583_257981,15:57:00,15:58:00,1474989,11, +24986583_257981,16:07:00,16:08:00,1474990,12, +24986583_257981,16:12:00,16:13:00,1474779,13, +24986583_257981,16:16:00,16:16:00,1474816,14, +24986583_257981,16:21:00,16:22:00,1475164,15, +24986583_257981,16:27:00,16:28:00,1474781,16, +24986583_257981,16:34:00,16:35:00,1474916,17, +24986583_257981,16:37:00,16:38:00,1474820,18, +24986583_257981,16:41:00,16:43:00,1474917,19, +24986583_257981,16:48:00,16:49:00,1474918,20, +24986583_257981,16:55:00,16:55:00,1474821,21, +24986583_257981,17:04:00,17:04:00,1474757,22, +24986583_257981,17:07:00,17:07:00,1474919,23, +24986583_257981,17:13:00,17:13:00,1474822,24, +24986583_257981,17:16:00,17:17:00,1609772,25, +24986583_257981,17:20:00,17:20:00,1474921,26, +24986583_257981,17:25:00,17:35:00,1474823,27, +24986583_257981,17:37:00,17:37:00,1475118,28, +24986583_257981,17:42:00,17:42:00,1475160,29, +24986583_257981,17:45:00,17:45:00,1475159,30, +24986583_257981,17:49:00,17:50:00,1475119,31, +24986583_257981,17:53:00,17:53:00,1475158,32, +24986583_257981,17:56:00,17:56:00,1475120,33, +24986583_257981,17:59:00,17:59:00,1475157,34, +24986583_257981,18:02:00,18:02:00,1475161,35, +24986583_257981,18:07:00,18:08:00,1475156,36, +24986583_257981,18:15:00,18:16:00,1475122,37, +24986583_257981,18:20:00,18:21:00,1475123,38, +24986583_257981,18:25:00,18:25:00,1475124,39, +24986584_257982,15:05:00,15:05:00,1474640,0, +24986584_257982,15:10:00,15:11:00,1474794,1, +24986584_257982,15:13:00,15:13:00,1474892,2, +24986584_257982,15:16:00,15:16:00,1474893,3, +24986584_257982,15:18:00,15:19:00,1474894,4, +24986584_257982,15:22:00,15:22:00,1474895,5, +24986584_257982,15:26:00,15:27:00,1474795,6, +24986584_257982,15:33:00,15:33:00,1475144,7, +24986584_257982,15:38:00,15:38:00,1475163,8, +24986584_257982,15:43:00,15:43:00,1474796,9, +24986584_257982,15:48:00,15:49:00,1474714,10, +24986584_257982,15:55:00,15:56:00,1474989,11, +24986584_257982,16:05:00,16:06:00,1474990,12, +24986584_257982,16:10:00,16:11:00,1474779,13, +24986584_257982,16:13:00,16:14:00,1474780,14, +24986584_257982,16:18:00,16:18:00,1475164,15, +24986584_257982,16:24:00,16:24:00,1474781,16, +24986584_257982,16:30:00,16:31:00,1474916,17, +24986584_257982,16:33:00,16:33:00,1474820,18, +24986584_257982,16:36:00,16:36:00,1474917,19, +24986584_257982,16:40:00,16:41:00,1474918,20, +24986584_257982,16:47:00,16:52:00,1474821,21, +24986584_257982,16:58:00,16:58:00,1474757,22, +24986584_257982,17:01:00,17:02:00,1474919,23, +24986584_257982,17:07:00,17:07:00,1474822,24, +24986584_257982,17:10:00,17:11:00,1609772,25, +24986584_257982,17:14:00,17:15:00,1474921,26, +24986584_257982,17:20:00,17:33:00,1474823,27, +24986584_257982,17:35:00,17:36:00,1475118,28, +24986584_257982,17:40:00,17:41:00,1475160,29, +24986584_257982,17:43:00,17:44:00,1475159,30, +24986584_257982,17:47:00,17:48:00,1475119,31, +24986584_257982,17:51:00,17:51:00,1475158,32, +24986584_257982,17:54:00,17:54:00,1475120,33, +24986584_257982,17:57:00,17:57:00,1475157,34, +24986584_257982,18:00:00,18:00:00,1475161,35, +24986584_257982,18:05:00,18:06:00,1475156,36, +24986584_257982,18:13:00,18:14:00,1475122,37, +24986584_257982,18:18:00,18:19:00,1475123,38, +24986584_257982,18:23:00,18:23:00,1475124,39, +24986586_257984,15:41:00,15:41:00,1474651,0, +24986586_257984,15:46:00,15:47:00,1474794,1, +24986586_257984,15:49:00,15:50:00,1474892,2, +24986586_257984,15:52:00,15:53:00,1474893,3, +24986586_257984,15:55:00,15:55:00,1474894,4, +24986586_257984,15:58:00,15:59:00,1474895,5, +24986586_257984,16:03:00,16:04:00,1474795,6, +24986586_257984,16:09:00,16:10:00,1475144,7, +24986586_257984,16:14:00,16:14:00,1475163,8, +24986586_257984,16:19:00,16:20:00,1474796,9, +24986586_257984,16:24:00,16:25:00,1474714,10, +24986586_257984,16:31:00,16:32:00,1474989,11, +24986586_257984,16:41:00,16:42:00,1474990,12, +24986586_257984,16:46:00,16:46:00,1474779,13, +24986587_257985,15:37:00,15:37:00,1474640,0, +24986587_257985,15:42:00,15:43:00,1474794,1, +24986587_257985,15:45:00,15:45:00,1474892,2, +24986587_257985,15:48:00,15:48:00,1474893,3, +24986587_257985,15:50:00,15:50:00,1474894,4, +24986587_257985,15:53:00,15:54:00,1474895,5, +24986587_257985,15:58:00,15:59:00,1474795,6, +24986587_257985,16:05:00,16:05:00,1475144,7, +24986587_257985,16:10:00,16:10:00,1475163,8, +24986587_257985,16:15:00,16:15:00,1474796,9, +24986587_257985,16:20:00,16:21:00,1474714,10, +24986587_257985,16:28:00,16:29:00,1474989,11, +24986587_257985,16:38:00,16:39:00,1474990,12, +24986587_257985,16:43:00,16:43:00,1474779,13, +24986589_257987,16:09:00,16:09:00,1536279,0, +24986589_257987,16:14:00,16:15:00,1474794,1, +24986589_257987,16:17:00,16:18:00,1474892,2, +24986589_257987,16:20:00,16:21:00,1474893,3, +24986589_257987,16:23:00,16:23:00,1474894,4, +24986589_257987,16:27:00,16:27:00,1474895,5, +24986589_257987,16:31:00,16:32:00,1474795,6, +24986589_257987,16:38:00,16:39:00,1475144,7, +24986589_257987,16:43:00,16:44:00,1475163,8, +24986589_257987,16:49:00,16:49:00,1474796,9, +24986589_257987,16:54:00,16:55:00,1474714,10, +24986589_257987,17:01:00,17:02:00,1474989,11, +24986589_257987,17:11:00,17:12:00,1474990,12, +24986589_257987,17:16:00,17:17:00,1474779,13, +24986589_257987,17:20:00,17:20:00,1474816,14, +24986589_257987,17:25:00,17:26:00,1475164,15, +24986589_257987,17:31:00,17:42:00,1474781,16, +24986589_257987,17:48:00,17:49:00,1474916,17, +24986589_257987,17:53:00,17:53:00,1474820,18, +24986589_257987,17:56:00,17:56:00,1474917,19, +24986589_257987,18:00:00,18:01:00,1474918,20, +24986589_257987,18:06:00,18:07:00,1474821,21, +24986589_257987,18:15:00,18:16:00,1474757,22, +24986589_257987,18:18:00,18:19:00,1474919,23, +24986589_257987,18:24:00,18:25:00,1474822,24, +24986589_257987,18:27:00,18:28:00,1609772,25, +24986589_257987,18:31:00,18:31:00,1474921,26, +24986589_257987,18:37:00,18:37:00,1474823,27, +24986590_257988,16:09:00,16:09:00,1474640,0, +24986590_257988,16:14:00,16:15:00,1474794,1, +24986590_257988,16:17:00,16:18:00,1474892,2, +24986590_257988,16:20:00,16:21:00,1474893,3, +24986590_257988,16:23:00,16:23:00,1474894,4, +24986590_257988,16:27:00,16:27:00,1474895,5, +24986590_257988,16:31:00,16:32:00,1474795,6, +24986590_257988,16:38:00,16:39:00,1475144,7, +24986590_257988,16:43:00,16:44:00,1475163,8, +24986590_257988,16:49:00,16:49:00,1474796,9, +24986590_257988,16:54:00,16:56:00,1474714,10, +24986590_257988,17:02:00,17:03:00,1474989,11, +24986590_257988,17:12:00,17:13:00,1474990,12, +24986590_257988,17:17:00,17:18:00,1474779,13, +24986590_257988,17:20:00,17:21:00,1474780,14, +24986590_257988,17:25:00,17:26:00,1475164,15, +24986590_257988,17:31:00,17:31:00,1474781,16, +24986590_257988,17:37:00,17:38:00,1474916,17, +24986590_257988,17:39:00,17:40:00,1474820,18, +24986590_257988,17:43:00,17:43:00,1474917,19, +24986590_257988,17:47:00,17:48:00,1474918,20, +24986590_257988,17:53:00,17:53:00,1474821,21, +24986590_257988,17:59:00,18:00:00,1474757,22, +24986590_257988,18:03:00,18:03:00,1474919,23, +24986590_257988,18:08:00,18:09:00,1474822,24, +24986590_257988,18:12:00,18:12:00,1609772,25, +24986590_257988,18:15:00,18:16:00,1474921,26, +24986590_257988,18:21:00,18:21:00,1474823,27, +24986592_257990,16:45:00,16:45:00,1536277,0, +24986592_257990,16:50:00,16:51:00,1474794,1, +24986592_257990,16:53:00,16:53:00,1474892,2, +24986592_257990,16:56:00,16:56:00,1474893,3, +24986592_257990,16:58:00,16:59:00,1474894,4, +24986592_257990,17:02:00,17:02:00,1474895,5, +24986592_257990,17:06:00,17:07:00,1474795,6, +24986592_257990,17:13:00,17:13:00,1475144,7, +24986592_257990,17:17:00,17:18:00,1475163,8, +24986592_257990,17:22:00,17:23:00,1474796,9, +24986592_257990,17:28:00,17:29:00,1474714,10, +24986592_257990,17:36:00,17:36:00,1474989,11, +24986592_257990,17:46:00,17:46:00,1474990,12, +24986592_257990,17:50:00,17:51:00,1474779,13, +24986592_257990,17:54:00,17:55:00,1474816,14, +24986592_257990,18:00:00,18:00:00,1475164,15, +24986592_257990,18:06:00,18:06:00,1474781,16, +24986594_257992,16:55:00,16:55:00,1474640,0, +24986594_257992,17:00:00,17:01:00,1474794,1, +24986594_257992,17:03:00,17:04:00,1474892,2, +24986594_257992,17:06:00,17:07:00,1474893,3, +24986594_257992,17:09:00,17:09:00,1474894,4, +24986594_257992,17:12:00,17:13:00,1474895,5, +24986594_257992,17:17:00,17:18:00,1474795,6, +24986594_257992,17:23:00,17:24:00,1475144,7, +24986594_257992,17:28:00,17:29:00,1475163,8, +24986594_257992,17:33:00,17:34:00,1474796,9, +24986594_257992,17:38:00,17:39:00,1474714,10, +24986594_257992,17:46:00,17:47:00,1474989,11, +24986594_257992,17:56:00,17:57:00,1474990,12, +24986594_257992,18:01:00,18:02:00,1474779,13, +24986594_257992,18:04:00,18:05:00,1474780,14, +24986594_257992,18:09:00,18:10:00,1475164,15, +24986594_257992,18:16:00,18:16:00,1474781,16, +24986596_257994,17:57:00,17:57:00,1536279,0, +24986596_257994,18:02:00,18:03:00,1474794,1, +24986596_257994,18:05:00,18:06:00,1474892,2, +24986596_257994,18:08:00,18:09:00,1474893,3, +24986596_257994,18:12:00,18:12:00,1474894,4, +24986596_257994,18:16:00,18:16:00,1474895,5, +24986596_257994,18:20:00,18:21:00,1474795,6, +24986596_257994,18:26:00,18:27:00,1475144,7, +24986596_257994,18:31:00,18:31:00,1475163,8, +24986596_257994,18:36:00,18:36:00,1474796,9, +24986596_257994,18:41:00,18:41:00,1474714,10, +24986597_257995,17:57:00,17:57:00,1474640,0, +24986597_257995,18:02:00,18:03:00,1474794,1, +24986597_257995,18:05:00,18:05:00,1474892,2, +24986597_257995,18:08:00,18:08:00,1474893,3, +24986597_257995,18:10:00,18:10:00,1474894,4, +24986597_257995,18:13:00,18:14:00,1474895,5, +24986597_257995,18:18:00,18:19:00,1474795,6, +24986597_257995,18:25:00,18:25:00,1475144,7, +24986597_257995,18:29:00,18:30:00,1475163,8, +24986597_257995,18:34:00,18:35:00,1474796,9, +24986597_257995,18:40:00,18:40:00,1474714,10, +24986599_257997,17:57:00,17:57:00,1536279,0, +24986599_257997,18:02:00,18:03:00,1474794,1, +24986599_257997,18:05:00,18:06:00,1474892,2, +24986599_257997,18:08:00,18:09:00,1474893,3, +24986599_257997,18:12:00,18:12:00,1474894,4, +24986599_257997,18:16:00,18:16:00,1474895,5, +24986599_257997,18:20:00,18:21:00,1474795,6, +24986599_257997,18:26:00,18:27:00,1475144,7, +24986599_257997,18:31:00,18:31:00,1475163,8, +24986599_257997,18:36:00,18:36:00,1474796,9, +24986599_257997,18:41:00,18:42:00,1474714,10, +24986599_257997,18:48:00,18:49:00,1474989,11, +24986599_257997,18:58:00,18:58:00,1474990,12, +24986599_257997,19:02:00,19:02:00,1474779,13, +24986600_257998,17:57:00,17:57:00,1474640,0, +24986600_257998,18:02:00,18:03:00,1474794,1, +24986600_257998,18:05:00,18:05:00,1474892,2, +24986600_257998,18:08:00,18:08:00,1474893,3, +24986600_257998,18:10:00,18:10:00,1474894,4, +24986600_257998,18:13:00,18:14:00,1474895,5, +24986600_257998,18:18:00,18:19:00,1474795,6, +24986600_257998,18:25:00,18:25:00,1475144,7, +24986600_257998,18:29:00,18:30:00,1475163,8, +24986600_257998,18:34:00,18:35:00,1474796,9, +24986600_257998,18:40:00,18:41:00,1474714,10, +24986600_257998,18:47:00,18:48:00,1474989,11, +24986600_257998,18:57:00,18:57:00,1474990,12, +24986600_257998,19:01:00,19:01:00,1474779,13, +24986603_258001,18:30:00,18:30:00,1474640,0, +24986603_258001,18:36:00,18:37:00,1474794,1, +24986603_258001,18:39:00,18:39:00,1474892,2, +24986603_258001,18:42:00,18:42:00,1474893,3, +24986603_258001,18:44:00,18:45:00,1474894,4, +24986603_258001,18:48:00,18:49:00,1474895,5, +24986603_258001,18:53:00,18:54:00,1474795,6, +24986603_258001,18:59:00,18:59:00,1475144,7, +24986603_258001,19:04:00,19:04:00,1475163,8, +24986603_258001,19:09:00,19:09:00,1474796,9, +24986603_258001,19:13:00,19:17:00,1474714,10, +24986603_258001,19:25:00,19:25:00,1474989,11, +24986603_258001,19:35:00,19:36:00,1474990,12, +24986603_258001,19:40:00,19:41:00,1474779,13, +24986603_258001,19:44:00,19:44:00,1474816,14, +24986603_258001,19:49:00,19:50:00,1475164,15, +24986603_258001,19:56:00,19:56:00,1474781,16, +24986604_258002,18:33:00,18:33:00,1474640,0, +24986604_258002,18:39:00,18:40:00,1474794,1, +24986604_258002,18:42:00,18:42:00,1474892,2, +24986604_258002,18:45:00,18:45:00,1474893,3, +24986604_258002,18:47:00,18:48:00,1474894,4, +24986604_258002,18:51:00,18:52:00,1474895,5, +24986604_258002,18:56:00,18:57:00,1474795,6, +24986604_258002,19:02:00,19:02:00,1475144,7, +24986604_258002,19:07:00,19:07:00,1475163,8, +24986604_258002,19:12:00,19:12:00,1474796,9, +24986604_258002,19:16:00,19:17:00,1474714,10, +24986604_258002,19:25:00,19:25:00,1474989,11, +24986604_258002,19:35:00,19:36:00,1474990,12, +24986604_258002,19:40:00,19:41:00,1474779,13, +24986604_258002,19:44:00,19:44:00,1474816,14, +24986604_258002,19:49:00,19:50:00,1475164,15, +24986604_258002,19:56:00,19:56:00,1474781,16, +24986605_258003,18:49:00,18:49:00,1474640,0, +24986605_258003,18:54:00,18:55:00,1474794,1, +24986605_258003,18:57:00,18:57:00,1474892,2, +24986605_258003,19:00:00,19:00:00,1474893,3, +24986605_258003,19:02:00,19:03:00,1474894,4, +24986605_258003,19:06:00,19:07:00,1474895,5, +24986605_258003,19:11:00,19:12:00,1474795,6, +24986605_258003,19:18:00,19:18:00,1475144,7, +24986605_258003,19:22:00,19:23:00,1475163,8, +24986605_258003,19:28:00,19:28:00,1474796,9, +24986605_258003,19:32:00,19:33:00,1474714,10, +24986605_258003,19:40:00,19:41:00,1474989,11, +24986605_258003,19:50:00,19:51:00,1474990,12, +24986605_258003,19:54:00,19:55:00,1474779,13, +24986605_258003,19:58:00,19:58:00,1474780,14, +24986605_258003,20:03:00,20:03:00,1475164,15, +24986605_258003,20:10:00,20:10:00,1474781,16, +24986607_258005,18:30:00,18:30:00,1474640,0, +24986607_258005,18:36:00,18:37:00,1474794,1, +24986607_258005,18:39:00,18:39:00,1474892,2, +24986607_258005,18:42:00,18:42:00,1474893,3, +24986607_258005,18:44:00,18:45:00,1474894,4, +24986607_258005,18:48:00,18:49:00,1474895,5, +24986607_258005,18:53:00,18:54:00,1474795,6, +24986607_258005,18:59:00,18:59:00,1475144,7, +24986607_258005,19:04:00,19:04:00,1475163,8, +24986607_258005,19:09:00,19:09:00,1474796,9, +24986607_258005,19:13:00,19:17:00,1474714,10, +24986607_258005,19:25:00,19:25:00,1474989,11, +24986607_258005,19:35:00,19:36:00,1474990,12, +24986607_258005,19:40:00,19:41:00,1474779,13, +24986607_258005,19:44:00,19:44:00,1474816,14, +24986607_258005,19:49:00,19:50:00,1475164,15, +24986607_258005,19:56:00,19:58:00,1474781,16, +24986607_258005,20:06:00,20:07:00,1474820,17, +24986607_258005,20:18:00,20:18:00,1474821,18, +24986607_258005,20:27:00,20:27:00,1474757,19, +24986607_258005,20:34:00,20:35:00,1474822,20, +24986607_258005,20:45:00,20:45:00,1474823,21, +24986608_258006,18:33:00,18:33:00,1474640,0, +24986608_258006,18:39:00,18:40:00,1474794,1, +24986608_258006,18:42:00,18:42:00,1474892,2, +24986608_258006,18:45:00,18:45:00,1474893,3, +24986608_258006,18:47:00,18:48:00,1474894,4, +24986608_258006,18:51:00,18:52:00,1474895,5, +24986608_258006,18:56:00,18:57:00,1474795,6, +24986608_258006,19:02:00,19:02:00,1475144,7, +24986608_258006,19:07:00,19:07:00,1475163,8, +24986608_258006,19:12:00,19:12:00,1474796,9, +24986608_258006,19:16:00,19:17:00,1474714,10, +24986608_258006,19:25:00,19:25:00,1474989,11, +24986608_258006,19:35:00,19:36:00,1474990,12, +24986608_258006,19:40:00,19:41:00,1474779,13, +24986608_258006,19:44:00,19:44:00,1474816,14, +24986608_258006,19:49:00,19:50:00,1475164,15, +24986608_258006,19:56:00,19:58:00,1474781,16, +24986608_258006,20:06:00,20:07:00,1474820,17, +24986608_258006,20:18:00,20:18:00,1474821,18, +24986608_258006,20:27:00,20:27:00,1474757,19, +24986608_258006,20:34:00,20:35:00,1474822,20, +24986608_258006,20:45:00,20:45:00,1474823,21, +24986609_258007,18:49:00,18:49:00,1474640,0, +24986609_258007,18:54:00,18:55:00,1474794,1, +24986609_258007,18:57:00,18:57:00,1474892,2, +24986609_258007,19:00:00,19:00:00,1474893,3, +24986609_258007,19:02:00,19:03:00,1474894,4, +24986609_258007,19:06:00,19:07:00,1474895,5, +24986609_258007,19:11:00,19:12:00,1474795,6, +24986609_258007,19:18:00,19:18:00,1475144,7, +24986609_258007,19:22:00,19:23:00,1475163,8, +24986609_258007,19:28:00,19:28:00,1474796,9, +24986609_258007,19:32:00,19:33:00,1474714,10, +24986609_258007,19:40:00,19:41:00,1474989,11, +24986609_258007,19:50:00,19:51:00,1474990,12, +24986609_258007,19:54:00,19:55:00,1474779,13, +24986609_258007,19:58:00,19:58:00,1474780,14, +24986609_258007,20:03:00,20:03:00,1475164,15, +24986609_258007,20:10:00,20:11:00,1474781,16, +24986609_258007,20:18:00,20:18:00,1474820,17, +24986609_258007,20:29:00,20:29:00,1474821,18, +24986609_258007,20:36:00,20:36:00,1474757,19, +24986609_258007,20:44:00,20:44:00,1474822,20, +24986609_258007,20:55:00,20:55:00,1474823,21, +24986612_258010,19:30:00,19:30:00,1474640,0, +24986612_258010,19:35:00,19:36:00,1474794,1, +24986612_258010,19:38:00,19:38:00,1474892,2, +24986612_258010,19:41:00,19:41:00,1474893,3, +24986612_258010,19:43:00,19:44:00,1474894,4, +24986612_258010,19:47:00,19:47:00,1474895,5, +24986612_258010,19:51:00,19:52:00,1474795,6, +24986612_258010,19:57:00,19:57:00,1475144,7, +24986612_258010,20:01:00,20:02:00,1475163,8, +24986612_258010,20:06:00,20:07:00,1474796,9, +24986612_258010,20:11:00,20:20:00,1474714,10, +24986612_258010,20:27:00,20:29:00,1474989,11, +24986612_258010,20:40:00,20:41:00,1474990,12, +24986612_258010,20:45:00,20:46:00,1474779,13, +24986612_258010,20:49:00,20:49:00,1474816,14, +24986612_258010,20:54:00,20:55:00,1475164,15, +24986612_258010,21:00:00,21:00:00,1474781,16, +24986612_258010,21:06:00,21:07:00,1474916,17, +24986612_258010,21:09:00,21:09:00,1474820,18, +24986612_258010,21:11:00,21:12:00,1474917,19, +24986612_258010,21:16:00,21:16:00,1474918,20, +24986612_258010,21:21:00,21:22:00,1474821,21, +24986612_258010,21:30:00,21:31:00,1474757,22, +24986612_258010,21:33:00,21:34:00,1474919,23, +24986612_258010,21:39:00,21:39:00,1474822,24, +24986612_258010,21:42:00,21:43:00,1609772,25, +24986612_258010,21:46:00,21:46:00,1474921,26, +24986612_258010,21:51:00,21:53:00,1474823,27, +24986612_258010,21:55:00,21:55:00,1474926,28, +24986612_258010,22:04:00,22:05:00,1474927,29, +24986612_258010,22:11:00,22:12:00,1474928,30, +24986612_258010,22:17:00,22:17:00,1474929,31, +24986612_258010,22:22:00,22:23:00,1474930,32, +24986612_258010,22:28:00,22:29:00,1474931,33, +24986612_258010,22:36:00,22:36:00,1474978,34, +24986614_258012,19:30:00,19:30:00,1474640,0, +24986614_258012,19:35:00,19:36:00,1474794,1, +24986614_258012,19:38:00,19:38:00,1474892,2, +24986614_258012,19:41:00,19:41:00,1474893,3, +24986614_258012,19:43:00,19:44:00,1474894,4, +24986614_258012,19:47:00,19:47:00,1474895,5, +24986614_258012,19:51:00,19:52:00,1474795,6, +24986614_258012,19:57:00,19:57:00,1475144,7, +24986614_258012,20:01:00,20:02:00,1475163,8, +24986614_258012,20:06:00,20:07:00,1474796,9, +24986614_258012,20:11:00,20:12:00,1474714,10, +24986614_258012,20:19:00,20:20:00,1474989,11, +24986614_258012,20:29:00,20:30:00,1474990,12, +24986614_258012,20:34:00,20:35:00,1474779,13, +24986614_258012,20:37:00,20:38:00,1474780,14, +24986614_258012,20:42:00,20:43:00,1475164,15, +24986614_258012,20:48:00,20:49:00,1474781,16, +24986614_258012,20:54:00,20:55:00,1474916,17, +24986614_258012,20:57:00,20:57:00,1474820,18, +24986614_258012,21:00:00,21:00:00,1474917,19, +24986614_258012,21:04:00,21:05:00,1474918,20, +24986614_258012,21:10:00,21:11:00,1474821,21, +24986614_258012,21:17:00,21:17:00,1474757,22, +24986614_258012,21:20:00,21:20:00,1474919,23, +24986614_258012,21:25:00,21:26:00,1474822,24, +24986614_258012,21:29:00,21:29:00,1609772,25, +24986614_258012,21:32:00,21:33:00,1474921,26, +24986614_258012,21:38:00,21:45:00,1474823,27, +24986614_258012,21:47:00,21:48:00,1474926,28, +24986614_258012,21:57:00,21:58:00,1474927,29, +24986614_258012,22:04:00,22:05:00,1474928,30, +24986614_258012,22:10:00,22:10:00,1474929,31, +24986614_258012,22:15:00,22:16:00,1474930,32, +24986614_258012,22:21:00,22:22:00,1474931,33, +24986614_258012,22:29:00,22:29:00,1474978,34, +24986616_258014,20:39:00,20:39:00,1474640,0, +24986616_258014,20:46:00,20:47:00,1474794,1, +24986616_258014,20:49:00,20:49:00,1474892,2, +24986616_258014,20:52:00,20:53:00,1474893,3, +24986616_258014,20:55:00,20:55:00,1474894,4, +24986616_258014,20:58:00,20:59:00,1474895,5, +24986616_258014,21:03:00,21:04:00,1474795,6, +24986616_258014,21:09:00,21:10:00,1475144,7, +24986616_258014,21:14:00,21:14:00,1475163,8, +24986616_258014,21:19:00,21:19:00,1474796,9, +24986616_258014,21:23:00,21:27:00,1474714,10, +24986616_258014,21:33:00,21:34:00,1474989,11, +24986616_258014,21:43:00,21:44:00,1474990,12, +24986616_258014,21:48:00,21:49:00,1474779,13, +24986616_258014,21:52:00,21:52:00,1474816,14, +24986616_258014,21:57:00,21:58:00,1475164,15, +24986616_258014,22:04:00,22:04:00,1474781,16, +24986617_258015,20:39:00,20:39:00,1474640,0, +24986617_258015,20:46:00,20:47:00,1474794,1, +24986617_258015,20:49:00,20:49:00,1474892,2, +24986617_258015,20:52:00,20:53:00,1474893,3, +24986617_258015,20:55:00,20:55:00,1474894,4, +24986617_258015,20:58:00,20:59:00,1474895,5, +24986617_258015,21:03:00,21:04:00,1474795,6, +24986617_258015,21:09:00,21:10:00,1475144,7, +24986617_258015,21:14:00,21:14:00,1475163,8, +24986617_258015,21:19:00,21:19:00,1474796,9, +24986617_258015,21:23:00,21:27:00,1474714,10, +24986617_258015,21:33:00,21:34:00,1474989,11, +24986617_258015,21:43:00,21:44:00,1474990,12, +24986617_258015,21:47:00,21:48:00,1474779,13, +24986617_258015,21:51:00,21:51:00,1474780,14, +24986617_258015,21:56:00,21:56:00,1475164,15, +24986617_258015,22:02:00,22:02:00,1474781,16, +24986619_258017,21:32:00,21:32:00,1474651,0, +24986619_258017,21:38:00,21:39:00,1474794,1, +24986619_258017,21:41:00,21:41:00,1474892,2, +24986619_258017,21:44:00,21:44:00,1474893,3, +24986619_258017,21:46:00,21:46:00,1474894,4, +24986619_258017,21:50:00,21:50:00,1474895,5, +24986619_258017,21:54:00,21:55:00,1474795,6, +24986619_258017,22:00:00,22:01:00,1475144,7, +24986619_258017,22:05:00,22:05:00,1475163,8, +24986619_258017,22:10:00,22:11:00,1474796,9, +24986619_258017,22:15:00,22:17:00,1474714,10, +24986619_258017,22:24:00,22:25:00,1474989,11, +24986619_258017,22:35:00,22:38:00,1474990,12, +24986619_258017,22:42:00,22:43:00,1474779,13, +24986619_258017,22:46:00,22:46:00,1474816,14, +24986619_258017,22:51:00,22:52:00,1475164,15, +24986619_258017,22:57:00,22:57:00,1474781,16, +24986619_258017,23:04:00,23:04:00,1474916,17, +24986619_258017,23:06:00,23:07:00,1474820,18, +24986619_258017,23:09:00,23:10:00,1474917,19, +24986619_258017,23:14:00,23:14:00,1474918,20, +24986619_258017,23:19:00,23:20:00,1474821,21, +24986619_258017,23:28:00,23:29:00,1474757,22, +24986619_258017,23:31:00,23:32:00,1474919,23, +24986619_258017,23:37:00,23:37:00,1474822,24, +24986619_258017,23:40:00,23:41:00,1609772,25, +24986619_258017,23:44:00,23:44:00,1474921,26, +24986619_258017,23:50:00,23:50:00,1474823,27, +24986620_258018,21:30:00,21:30:00,1474640,0, +24986620_258018,21:35:00,21:36:00,1474794,1, +24986620_258018,21:38:00,21:39:00,1474892,2, +24986620_258018,21:41:00,21:42:00,1474893,3, +24986620_258018,21:44:00,21:44:00,1474894,4, +24986620_258018,21:47:00,21:48:00,1474895,5, +24986620_258018,21:52:00,21:53:00,1474795,6, +24986620_258018,21:58:00,21:59:00,1475144,7, +24986620_258018,22:03:00,22:03:00,1475163,8, +24986620_258018,22:08:00,22:09:00,1474796,9, +24986620_258018,22:13:00,22:14:00,1474714,10, +24986620_258018,22:20:00,22:21:00,1474989,11, +24986620_258018,22:30:00,22:31:00,1474990,12, +24986620_258018,22:34:00,22:35:00,1474779,13, +24986620_258018,22:37:00,22:38:00,1474780,14, +24986620_258018,22:42:00,22:42:00,1475164,15, +24986620_258018,22:47:00,22:48:00,1474781,16, +24986620_258018,22:54:00,22:54:00,1474916,17, +24986620_258018,22:56:00,22:57:00,1474820,18, +24986620_258018,22:59:00,23:00:00,1474917,19, +24986620_258018,23:04:00,23:04:00,1474918,20, +24986620_258018,23:09:00,23:10:00,1474821,21, +24986620_258018,23:15:00,23:16:00,1474757,22, +24986620_258018,23:18:00,23:19:00,1474919,23, +24986620_258018,23:24:00,23:24:00,1474822,24, +24986620_258018,23:27:00,23:28:00,1609772,25, +24986620_258018,23:31:00,23:31:00,1474921,26, +24986620_258018,23:37:00,23:37:00,1474823,27, +24986622_258020,22:54:00,22:54:00,1536277,0, +24986622_258020,23:00:00,23:01:00,1474794,1, +24986622_258020,23:02:00,23:03:00,1474892,2, +24986622_258020,23:05:00,23:06:00,1474893,3, +24986622_258020,23:08:00,23:08:00,1474894,4, +24986622_258020,23:12:00,23:12:00,1474895,5, +24986622_258020,23:16:00,23:17:00,1474795,6, +24986622_258020,23:23:00,23:23:00,1475144,7, +24986622_258020,23:28:00,23:28:00,1475163,8, +24986622_258020,23:33:00,23:33:00,1474796,9, +24986622_258020,23:38:00,23:39:00,1474714,10, +24986622_258020,23:46:00,23:46:00,1474989,11, +24986622_258020,23:56:00,23:56:00,1474990,12, +24986622_258020,24:00:00,24:01:00,1474779,13, +24986622_258020,24:04:00,24:05:00,1474816,14, +24986622_258020,24:10:00,24:10:00,1475164,15, +24986622_258020,24:16:00,24:16:00,1474781,16, +24986623_258021,22:55:00,22:55:00,1474640,0, +24986623_258021,23:00:00,23:01:00,1474794,1, +24986623_258021,23:03:00,23:03:00,1474892,2, +24986623_258021,23:06:00,23:06:00,1474893,3, +24986623_258021,23:08:00,23:09:00,1474894,4, +24986623_258021,23:12:00,23:12:00,1474895,5, +24986623_258021,23:16:00,23:17:00,1474795,6, +24986623_258021,23:23:00,23:23:00,1475144,7, +24986623_258021,23:27:00,23:28:00,1475163,8, +24986623_258021,23:32:00,23:33:00,1474796,9, +24986623_258021,23:37:00,23:38:00,1474714,10, +24986623_258021,23:45:00,23:45:00,1474989,11, +24986623_258021,23:55:00,23:56:00,1474990,12, +24986623_258021,23:59:00,24:00:00,1474779,13, +24986623_258021,24:02:00,24:03:00,1474780,14, +24986623_258021,24:07:00,24:07:00,1475164,15, +24986623_258021,24:13:00,24:13:00,1474781,16, +24986625_258023,22:54:00,22:54:00,1536277,0, +24986625_258023,23:00:00,23:01:00,1474794,1, +24986625_258023,23:02:00,23:03:00,1474892,2, +24986625_258023,23:05:00,23:06:00,1474893,3, +24986625_258023,23:08:00,23:08:00,1474894,4, +24986625_258023,23:12:00,23:12:00,1474895,5, +24986625_258023,23:16:00,23:17:00,1474795,6, +24986625_258023,23:23:00,23:23:00,1475144,7, +24986625_258023,23:28:00,23:28:00,1475163,8, +24986625_258023,23:33:00,23:33:00,1474796,9, +24986625_258023,23:38:00,23:39:00,1474714,10, +24986625_258023,23:46:00,23:46:00,1474989,11, +24986625_258023,23:56:00,23:56:00,1474990,12, +24986625_258023,24:00:00,24:01:00,1474779,13, +24986625_258023,24:04:00,24:05:00,1474816,14, +24986625_258023,24:10:00,24:10:00,1475164,15, +24986625_258023,24:16:00,24:16:00,1474781,16, +24986625_258023,24:25:00,24:25:00,1474820,17, +24986625_258023,24:36:00,24:36:00,1474821,18, +24986625_258023,24:45:00,24:45:00,1474757,19, +24986625_258023,24:52:00,24:53:00,1474822,20, +24986625_258023,25:03:00,25:03:00,1474823,21, +24986626_258024,22:54:00,22:54:00,1536277,0, +24986626_258024,23:00:00,23:01:00,1474794,1, +24986626_258024,23:02:00,23:03:00,1474892,2, +24986626_258024,23:05:00,23:06:00,1474893,3, +24986626_258024,23:08:00,23:08:00,1474894,4, +24986626_258024,23:12:00,23:12:00,1474895,5, +24986626_258024,23:16:00,23:17:00,1474795,6, +24986626_258024,23:23:00,23:23:00,1475144,7, +24986626_258024,23:28:00,23:28:00,1475163,8, +24986626_258024,23:33:00,23:33:00,1474796,9, +24986626_258024,23:38:00,23:39:00,1474714,10, +24986626_258024,23:46:00,23:46:00,1474989,11, +24986626_258024,23:56:00,23:56:00,1474990,12, +24986626_258024,24:00:00,24:01:00,1474779,13, +24986626_258024,24:04:00,24:05:00,1474780,14, +24986626_258024,24:10:00,24:10:00,1475164,15, +24986626_258024,24:16:00,24:16:00,1474781,16, +24986626_258024,24:25:00,24:25:00,1474820,17, +24986626_258024,24:36:00,24:36:00,1474821,18, +24986626_258024,24:45:00,24:45:00,1474757,19, +24986626_258024,24:52:00,24:53:00,1474822,20, +24986626_258024,25:03:00,25:03:00,1474823,21, +24986627_258025,22:55:00,22:55:00,1474640,0, +24986627_258025,23:00:00,23:01:00,1474794,1, +24986627_258025,23:03:00,23:03:00,1474892,2, +24986627_258025,23:06:00,23:06:00,1474893,3, +24986627_258025,23:08:00,23:09:00,1474894,4, +24986627_258025,23:12:00,23:12:00,1474895,5, +24986627_258025,23:16:00,23:17:00,1474795,6, +24986627_258025,23:23:00,23:23:00,1475144,7, +24986627_258025,23:27:00,23:28:00,1475163,8, +24986627_258025,23:32:00,23:33:00,1474796,9, +24986627_258025,23:37:00,23:38:00,1474714,10, +24986627_258025,23:45:00,23:46:00,1474989,11, +24986627_258025,23:55:00,23:56:00,1474990,12, +24986627_258025,23:59:00,24:00:00,1474779,13, +24986627_258025,24:02:00,24:03:00,1474780,14, +24986627_258025,24:07:00,24:07:00,1475164,15, +24986627_258025,24:13:00,24:13:00,1474781,16, +24986627_258025,24:20:00,24:21:00,1474820,17, +24986627_258025,24:31:00,24:32:00,1474821,18, +24986627_258025,24:38:00,24:38:00,1474757,19, +24986627_258025,24:45:00,24:46:00,1474822,20, +24986627_258025,24:57:00,24:57:00,1474823,21, +24986629_258027,04:07:00,04:07:00,1474738,0, +24986629_258027,04:11:00,04:12:00,1474701,1, +24986629_258027,04:14:00,04:15:00,1474702,2, +24986629_258027,04:17:00,04:18:00,1474703,3, +24986629_258027,04:22:00,04:23:00,1475166,4, +24986629_258027,04:25:00,04:25:00,1475167,5, +24986629_258027,04:27:00,04:27:00,1475168,6, +24986629_258027,04:29:00,04:30:00,1475179,7, +24986629_258027,04:32:00,04:32:00,1475170,8, +24986629_258027,04:34:00,04:34:00,1475171,9, +24986629_258027,04:36:00,04:36:00,1475172,10, +24986629_258027,04:38:00,04:39:00,1475173,11, +24986629_258027,04:42:00,04:42:00,1475174,12, +24986629_258027,04:44:00,04:45:00,1475175,13, +24986629_258027,04:47:00,04:47:00,1475176,14, +24986629_258027,04:51:00,04:52:00,1474907,15, +24986629_258027,04:56:00,04:56:00,1474908,16, +24986630_258028,04:10:00,04:10:00,1474738,0, +24986630_258028,04:15:00,04:16:00,1474701,1, +24986630_258028,04:18:00,04:19:00,1474702,2, +24986630_258028,04:21:00,04:22:00,1474703,3, +24986630_258028,04:26:00,04:26:00,1475166,4, +24986630_258028,04:28:00,04:29:00,1475167,5, +24986630_258028,04:31:00,04:31:00,1475168,6, +24986630_258028,04:33:00,04:33:00,1475179,7, +24986630_258028,04:36:00,04:36:00,1475170,8, +24986630_258028,04:38:00,04:38:00,1475171,9, +24986630_258028,04:40:00,04:40:00,1475172,10, +24986630_258028,04:42:00,04:43:00,1475173,11, +24986630_258028,04:46:00,04:46:00,1475174,12, +24986630_258028,04:48:00,04:49:00,1475175,13, +24986630_258028,04:51:00,04:52:00,1475176,14, +24986630_258028,04:56:00,04:56:00,1474907,15, +24986630_258028,05:00:00,05:00:00,1474908,16, +24986632_258030,04:50:00,04:50:00,1474738,0, +24986632_258030,04:54:00,04:55:00,1474701,1, +24986632_258030,04:57:00,04:58:00,1474702,2, +24986632_258030,05:00:00,05:01:00,1474703,3, +24986632_258030,05:05:00,05:06:00,1475166,4, +24986632_258030,05:08:00,05:08:00,1475167,5, +24986632_258030,05:10:00,05:10:00,1475168,6, +24986632_258030,05:12:00,05:13:00,1475179,7, +24986632_258030,05:15:00,05:15:00,1475170,8, +24986632_258030,05:17:00,05:17:00,1475171,9, +24986632_258030,05:19:00,05:19:00,1475172,10, +24986632_258030,05:21:00,05:28:00,1475178,11, +24986632_258030,05:32:00,05:32:00,1475174,12, +24986632_258030,05:35:00,05:36:00,1475175,13, +24986632_258030,05:38:00,05:39:00,1475176,14, +24986632_258030,05:44:00,05:44:00,1474907,15, +24986632_258030,05:49:00,05:49:00,1474908,16, +24986633_258031,04:51:00,04:51:00,1474738,0, +24986633_258031,04:56:00,04:57:00,1474701,1, +24986633_258031,04:59:00,05:00:00,1474702,2, +24986633_258031,05:02:00,05:03:00,1474703,3, +24986633_258031,05:07:00,05:07:00,1475166,4, +24986633_258031,05:09:00,05:10:00,1475167,5, +24986633_258031,05:11:00,05:12:00,1475168,6, +24986633_258031,05:13:00,05:14:00,1475179,7, +24986633_258031,05:16:00,05:17:00,1475170,8, +24986633_258031,05:18:00,05:19:00,1475171,9, +24986633_258031,05:20:00,05:21:00,1475172,10, +24986633_258031,05:23:00,05:30:00,1475178,11, +24986633_258031,05:33:00,05:34:00,1475174,12, +24986633_258031,05:36:00,05:36:00,1475175,13, +24986633_258031,05:39:00,05:39:00,1475176,14, +24986633_258031,05:44:00,05:45:00,1474907,15, +24986633_258031,05:49:00,05:49:00,1474908,16, +24986635_258033,06:21:00,06:21:00,1536279,0, +24986635_258033,06:25:00,06:26:00,1474701,1, +24986635_258033,06:29:00,06:29:00,1474702,2, +24986635_258033,06:31:00,06:32:00,1474703,3, +24986635_258033,06:37:00,06:37:00,1475166,4, +24986635_258033,06:40:00,06:40:00,1475167,5, +24986635_258033,06:42:00,06:43:00,1475168,6, +24986635_258033,06:45:00,06:51:00,1475179,7, +24986635_258033,06:53:00,06:53:00,1475170,8, +24986635_258033,06:55:00,06:56:00,1475171,9, +24986635_258033,06:57:00,06:58:00,1475172,10, +24986635_258033,07:00:00,07:01:00,1475173,11, +24986635_258033,07:04:00,07:05:00,1475174,12, +24986635_258033,07:07:00,07:08:00,1475175,13, +24986635_258033,07:10:00,07:10:00,1475176,14, +24986635_258033,07:14:00,07:15:00,1474907,15, +24986635_258033,07:19:00,07:19:00,1474908,16, +24986636_258034,06:21:00,06:21:00,1474738,0, +24986636_258034,06:26:00,06:27:00,1474701,1, +24986636_258034,06:30:00,06:30:00,1474702,2, +24986636_258034,06:32:00,06:33:00,1474703,3, +24986636_258034,06:37:00,06:38:00,1475166,4, +24986636_258034,06:40:00,06:40:00,1475167,5, +24986636_258034,06:42:00,06:43:00,1475168,6, +24986636_258034,06:44:00,06:49:00,1475179,7, +24986636_258034,06:52:00,06:52:00,1475170,8, +24986636_258034,06:54:00,06:55:00,1475171,9, +24986636_258034,06:56:00,06:57:00,1475172,10, +24986636_258034,06:59:00,07:00:00,1475173,11, +24986636_258034,07:03:00,07:03:00,1475174,12, +24986636_258034,07:06:00,07:06:00,1475175,13, +24986636_258034,07:09:00,07:09:00,1475176,14, +24986636_258034,07:13:00,07:14:00,1474907,15, +24986636_258034,07:17:00,07:17:00,1474908,16, +24986638_258036,07:40:00,07:40:00,1474861,0, +24986638_258036,07:45:00,07:46:00,1474701,1, +24986638_258036,07:48:00,07:49:00,1474702,2, +24986638_258036,07:51:00,07:52:00,1474703,3, +24986638_258036,07:56:00,07:57:00,1475166,4, +24986638_258036,07:59:00,08:00:00,1475167,5, +24986638_258036,08:02:00,08:02:00,1475168,6, +24986638_258036,08:04:00,08:09:00,1475179,7, +24986638_258036,08:11:00,08:12:00,1475170,8, +24986638_258036,08:13:00,08:14:00,1475171,9, +24986638_258036,08:15:00,08:16:00,1475172,10, +24986638_258036,08:18:00,08:18:00,1475173,11, +24986638_258036,08:21:00,08:22:00,1475174,12, +24986638_258036,08:24:00,08:24:00,1475175,13, +24986638_258036,08:26:00,08:27:00,1475176,14, +24986638_258036,08:31:00,08:32:00,1474907,15, +24986638_258036,08:36:00,08:36:00,1474908,16, +24986639_258037,07:40:00,07:40:00,1474738,0, +24986639_258037,07:45:00,07:46:00,1474701,1, +24986639_258037,07:48:00,07:49:00,1474702,2, +24986639_258037,07:51:00,07:52:00,1474703,3, +24986639_258037,07:56:00,07:57:00,1475166,4, +24986639_258037,07:59:00,07:59:00,1475167,5, +24986639_258037,08:01:00,08:02:00,1475168,6, +24986639_258037,08:03:00,08:04:00,1475179,7, +24986639_258037,08:07:00,08:08:00,1475170,8, +24986639_258037,08:09:00,08:10:00,1475171,9, +24986639_258037,08:12:00,08:13:00,1475172,10, +24986639_258037,08:15:00,08:16:00,1475173,11, +24986639_258037,08:19:00,08:20:00,1475174,12, +24986639_258037,08:22:00,08:23:00,1475175,13, +24986639_258037,08:26:00,08:27:00,1475176,14, +24986639_258037,08:31:00,08:32:00,1474907,15, +24986639_258037,08:36:00,08:36:00,1474908,16, +24986641_258039,08:47:00,08:47:00,1474738,0, +24986641_258039,08:51:00,08:52:00,1474701,1, +24986641_258039,08:54:00,08:55:00,1474702,2, +24986641_258039,08:57:00,08:58:00,1474703,3, +24986641_258039,09:02:00,09:03:00,1475166,4, +24986641_258039,09:05:00,09:06:00,1475167,5, +24986641_258039,09:08:00,09:08:00,1475168,6, +24986641_258039,09:10:00,09:15:00,1475179,7, +24986641_258039,09:17:00,09:17:00,1475170,8, +24986641_258039,09:19:00,09:19:00,1475171,9, +24986641_258039,09:21:00,09:21:00,1475172,10, +24986641_258039,09:23:00,09:24:00,1475173,11, +24986641_258039,09:27:00,09:27:00,1475174,12, +24986641_258039,09:29:00,09:30:00,1475175,13, +24986641_258039,09:32:00,09:32:00,1475176,14, +24986641_258039,09:36:00,09:37:00,1474907,15, +24986641_258039,09:42:00,09:42:00,1474908,16, +24986642_258040,08:52:00,08:52:00,1474738,0, +24986642_258040,08:56:00,08:57:00,1474701,1, +24986642_258040,09:00:00,09:00:00,1474702,2, +24986642_258040,09:02:00,09:03:00,1474703,3, +24986642_258040,09:07:00,09:07:00,1475166,4, +24986642_258040,09:09:00,09:10:00,1475167,5, +24986642_258040,09:11:00,09:12:00,1475168,6, +24986642_258040,09:14:00,09:20:00,1475179,7, +24986642_258040,09:22:00,09:23:00,1475170,8, +24986642_258040,09:24:00,09:25:00,1475171,9, +24986642_258040,09:26:00,09:27:00,1475172,10, +24986642_258040,09:29:00,09:29:00,1475173,11, +24986642_258040,09:32:00,09:33:00,1475174,12, +24986642_258040,09:35:00,09:35:00,1475175,13, +24986642_258040,09:38:00,09:38:00,1475176,14, +24986642_258040,09:42:00,09:43:00,1474907,15, +24986642_258040,09:47:00,09:47:00,1474908,16, +24986644_258042,10:17:00,10:17:00,1474738,0, +24986644_258042,10:22:00,10:23:00,1474701,1, +24986644_258042,10:25:00,10:26:00,1474702,2, +24986644_258042,10:29:00,10:30:00,1474703,3, +24986644_258042,10:34:00,10:35:00,1475166,4, +24986644_258042,10:37:00,10:37:00,1475167,5, +24986644_258042,10:39:00,10:39:00,1475168,6, +24986644_258042,10:41:00,10:42:00,1475179,7, +24986644_258042,10:44:00,10:44:00,1475170,8, +24986644_258042,10:46:00,10:46:00,1475171,9, +24986644_258042,10:48:00,10:48:00,1475172,10, +24986644_258042,10:50:00,10:51:00,1475173,11, +24986644_258042,10:54:00,10:54:00,1475174,12, +24986644_258042,10:56:00,10:57:00,1475175,13, +24986644_258042,10:59:00,10:59:00,1475176,14, +24986644_258042,11:03:00,11:04:00,1474907,15, +24986644_258042,11:08:00,11:08:00,1474908,16, +24986645_258043,09:55:00,09:55:00,1474738,0, +24986645_258043,10:00:00,10:02:00,1474701,1, +24986645_258043,10:04:00,10:05:00,1474702,2, +24986645_258043,10:07:00,10:09:00,1474703,3, +24986645_258043,10:13:00,10:14:00,1475166,4, +24986645_258043,10:16:00,10:16:00,1475167,5, +24986645_258043,10:18:00,10:19:00,1475168,6, +24986645_258043,10:21:00,10:26:00,1475179,7, +24986645_258043,10:28:00,10:29:00,1475170,8, +24986645_258043,10:30:00,10:31:00,1475171,9, +24986645_258043,10:32:00,10:33:00,1475172,10, +24986645_258043,10:35:00,10:35:00,1475173,11, +24986645_258043,10:38:00,10:39:00,1475174,12, +24986645_258043,10:41:00,10:41:00,1475175,13, +24986645_258043,10:43:00,10:44:00,1475176,14, +24986645_258043,10:48:00,10:48:00,1474907,15, +24986645_258043,10:52:00,10:52:00,1474908,16, +24986647_258045,11:15:00,11:15:00,1474738,0, +24986647_258045,11:19:00,11:20:00,1474701,1, +24986647_258045,11:23:00,11:23:00,1474702,2, +24986647_258045,11:25:00,11:26:00,1474703,3, +24986647_258045,11:31:00,11:31:00,1475166,4, +24986647_258045,11:34:00,11:34:00,1475167,5, +24986647_258045,11:36:00,11:37:00,1475168,6, +24986647_258045,11:38:00,11:39:00,1475179,7, +24986647_258045,11:41:00,11:41:00,1475170,8, +24986647_258045,11:43:00,11:43:00,1475171,9, +24986647_258045,11:45:00,11:45:00,1475172,10, +24986647_258045,11:47:00,11:48:00,1475178,11, +24986647_258045,11:51:00,11:51:00,1475174,12, +24986647_258045,11:53:00,11:54:00,1475175,13, +24986647_258045,11:56:00,11:56:00,1475176,14, +24986647_258045,12:01:00,12:01:00,1474907,15, +24986647_258045,12:05:00,12:05:00,1474908,16, +24986648_258046,11:15:00,11:15:00,1474738,0, +24986648_258046,11:20:00,11:21:00,1474701,1, +24986648_258046,11:23:00,11:24:00,1474702,2, +24986648_258046,11:26:00,11:27:00,1474703,3, +24986648_258046,11:31:00,11:31:00,1475166,4, +24986648_258046,11:33:00,11:34:00,1475167,5, +24986648_258046,11:36:00,11:36:00,1475168,6, +24986648_258046,11:38:00,11:38:00,1475179,7, +24986648_258046,11:41:00,11:41:00,1475170,8, +24986648_258046,11:43:00,11:43:00,1475171,9, +24986648_258046,11:45:00,11:45:00,1475172,10, +24986648_258046,11:47:00,11:48:00,1475178,11, +24986648_258046,11:51:00,11:51:00,1475174,12, +24986648_258046,11:53:00,11:54:00,1475175,13, +24986648_258046,11:56:00,11:56:00,1475176,14, +24986648_258046,12:00:00,12:01:00,1474907,15, +24986648_258046,12:05:00,12:05:00,1474908,16, +24986650_258048,13:07:00,13:07:00,1474640,0, +24986650_258048,13:11:00,13:12:00,1474701,1, +24986650_258048,13:14:00,13:15:00,1474702,2, +24986650_258048,13:17:00,13:18:00,1474703,3, +24986650_258048,13:22:00,13:23:00,1475166,4, +24986650_258048,13:25:00,13:25:00,1475167,5, +24986650_258048,13:27:00,13:27:00,1475168,6, +24986650_258048,13:29:00,13:30:00,1475179,7, +24986650_258048,13:32:00,13:32:00,1475170,8, +24986650_258048,13:34:00,13:34:00,1475171,9, +24986650_258048,13:36:00,13:36:00,1475172,10, +24986650_258048,13:38:00,13:39:00,1475173,11, +24986650_258048,13:42:00,13:42:00,1475174,12, +24986650_258048,13:44:00,13:45:00,1475175,13, +24986650_258048,13:47:00,13:47:00,1475176,14, +24986650_258048,13:51:00,13:52:00,1474907,15, +24986650_258048,13:56:00,13:56:00,1474908,16, +24986651_258049,13:06:00,13:06:00,1474738,0, +24986651_258049,13:11:00,13:12:00,1474701,1, +24986651_258049,13:14:00,13:14:00,1474702,2, +24986651_258049,13:16:00,13:17:00,1474703,3, +24986651_258049,13:21:00,13:22:00,1475166,4, +24986651_258049,13:24:00,13:24:00,1475167,5, +24986651_258049,13:26:00,13:27:00,1475168,6, +24986651_258049,13:28:00,13:29:00,1475179,7, +24986651_258049,13:31:00,13:32:00,1475170,8, +24986651_258049,13:33:00,13:34:00,1475171,9, +24986651_258049,13:35:00,13:36:00,1475172,10, +24986651_258049,13:38:00,13:38:00,1475173,11, +24986651_258049,13:41:00,13:42:00,1475174,12, +24986651_258049,13:44:00,13:44:00,1475175,13, +24986651_258049,13:47:00,13:47:00,1475176,14, +24986651_258049,13:51:00,13:52:00,1474907,15, +24986651_258049,13:56:00,13:56:00,1474908,16, +24986653_258051,14:15:00,14:15:00,1474738,0, +24986653_258051,14:19:00,14:20:00,1474701,1, +24986653_258051,14:22:00,14:23:00,1474702,2, +24986653_258051,14:25:00,14:26:00,1474703,3, +24986653_258051,14:30:00,14:31:00,1475166,4, +24986653_258051,14:33:00,14:33:00,1475167,5, +24986653_258051,14:35:00,14:36:00,1475168,6, +24986653_258051,14:37:00,14:38:00,1475179,7, +24986653_258051,14:40:00,14:40:00,1475170,8, +24986653_258051,14:42:00,14:42:00,1475171,9, +24986653_258051,14:44:00,14:44:00,1475172,10, +24986653_258051,14:46:00,14:47:00,1475173,11, +24986653_258051,14:50:00,14:50:00,1475174,12, +24986653_258051,14:52:00,14:53:00,1475175,13, +24986653_258051,14:55:00,14:55:00,1475176,14, +24986653_258051,15:00:00,15:00:00,1474907,15, +24986653_258051,15:04:00,15:04:00,1474908,16, +24986654_258052,14:15:00,14:15:00,1474738,0, +24986654_258052,14:20:00,14:21:00,1474701,1, +24986654_258052,14:23:00,14:24:00,1474702,2, +24986654_258052,14:26:00,14:27:00,1474703,3, +24986654_258052,14:31:00,14:31:00,1475166,4, +24986654_258052,14:33:00,14:34:00,1475167,5, +24986654_258052,14:36:00,14:36:00,1475168,6, +24986654_258052,14:38:00,14:38:00,1475179,7, +24986654_258052,14:41:00,14:41:00,1475170,8, +24986654_258052,14:43:00,14:43:00,1475171,9, +24986654_258052,14:45:00,14:45:00,1475172,10, +24986654_258052,14:47:00,14:47:00,1475173,11, +24986654_258052,14:50:00,14:51:00,1475174,12, +24986654_258052,14:53:00,14:53:00,1475175,13, +24986654_258052,14:55:00,14:56:00,1475176,14, +24986654_258052,15:00:00,15:00:00,1474907,15, +24986654_258052,15:04:00,15:04:00,1474908,16, +24986656_258054,15:25:00,15:25:00,1474640,0, +24986656_258054,15:30:00,15:31:00,1474701,1, +24986656_258054,15:33:00,15:34:00,1474702,2, +24986656_258054,15:36:00,15:37:00,1474703,3, +24986656_258054,15:42:00,15:42:00,1475166,4, +24986656_258054,15:44:00,15:45:00,1475167,5, +24986656_258054,15:47:00,15:47:00,1475168,6, +24986656_258054,15:49:00,15:49:00,1475179,7, +24986656_258054,15:51:00,15:52:00,1475170,8, +24986656_258054,15:53:00,15:54:00,1475171,9, +24986656_258054,15:55:00,15:56:00,1475172,10, +24986656_258054,15:58:00,15:58:00,1475173,11, +24986656_258054,16:01:00,16:02:00,1475174,12, +24986656_258054,16:04:00,16:04:00,1475175,13, +24986656_258054,16:06:00,16:07:00,1475176,14, +24986656_258054,16:11:00,16:11:00,1474907,15, +24986656_258054,16:16:00,16:16:00,1474908,16, +24986657_258055,15:26:00,15:26:00,1474738,0, +24986657_258055,15:31:00,15:32:00,1474701,1, +24986657_258055,15:34:00,15:34:00,1474702,2, +24986657_258055,15:36:00,15:37:00,1474703,3, +24986657_258055,15:41:00,15:42:00,1475166,4, +24986657_258055,15:44:00,15:44:00,1475167,5, +24986657_258055,15:46:00,15:47:00,1475168,6, +24986657_258055,15:48:00,15:49:00,1475179,7, +24986657_258055,15:51:00,15:51:00,1475170,8, +24986657_258055,15:53:00,15:53:00,1475171,9, +24986657_258055,15:55:00,15:55:00,1475172,10, +24986657_258055,15:57:00,15:58:00,1475173,11, +24986657_258055,16:01:00,16:01:00,1475174,12, +24986657_258055,16:03:00,16:04:00,1475175,13, +24986657_258055,16:06:00,16:06:00,1475176,14, +24986657_258055,16:10:00,16:11:00,1474907,15, +24986657_258055,16:15:00,16:15:00,1474908,16, +24986659_258057,16:33:00,16:33:00,1474738,0, +24986659_258057,16:37:00,16:38:00,1474701,1, +24986659_258057,16:41:00,16:41:00,1474702,2, +24986659_258057,16:43:00,16:44:00,1474703,3, +24986659_258057,16:49:00,16:49:00,1475166,4, +24986659_258057,16:51:00,16:52:00,1475167,5, +24986659_258057,16:53:00,16:54:00,1475168,6, +24986659_258057,16:56:00,16:57:00,1475179,7, +24986659_258057,16:59:00,17:00:00,1475170,8, +24986659_258057,17:01:00,17:02:00,1475171,9, +24986659_258057,17:04:00,17:05:00,1475172,10, +24986659_258057,17:07:00,17:08:00,1475173,11, +24986659_258057,17:11:00,17:12:00,1475174,12, +24986659_258057,17:14:00,17:15:00,1475175,13, +24986659_258057,17:18:00,17:19:00,1475176,14, +24986659_258057,17:23:00,17:24:00,1474907,15, +24986659_258057,17:28:00,17:28:00,1474908,16, +24986660_258058,16:31:00,16:31:00,1474738,0, +24986660_258058,16:36:00,16:37:00,1474701,1, +24986660_258058,16:39:00,16:39:00,1474702,2, +24986660_258058,16:41:00,16:42:00,1474703,3, +24986660_258058,16:46:00,16:47:00,1475166,4, +24986660_258058,16:49:00,16:49:00,1475167,5, +24986660_258058,16:51:00,16:51:00,1475168,6, +24986660_258058,16:53:00,16:58:00,1475179,7, +24986660_258058,17:00:00,17:01:00,1475170,8, +24986660_258058,17:02:00,17:03:00,1475171,9, +24986660_258058,17:05:00,17:05:00,1475172,10, +24986660_258058,17:07:00,17:08:00,1475173,11, +24986660_258058,17:11:00,17:11:00,1475174,12, +24986660_258058,17:13:00,17:14:00,1475175,13, +24986660_258058,17:16:00,17:17:00,1475176,14, +24986660_258058,17:21:00,17:21:00,1474907,15, +24986660_258058,17:25:00,17:25:00,1474908,16, +24986662_258060,17:40:00,17:40:00,1474861,0, +24986662_258060,17:45:00,17:46:00,1474701,1, +24986662_258060,17:48:00,17:48:00,1474702,2, +24986662_258060,17:50:00,17:51:00,1474703,3, +24986662_258060,17:55:00,17:56:00,1475166,4, +24986662_258060,17:58:00,17:58:00,1475167,5, +24986662_258060,18:00:00,18:00:00,1475168,6, +24986662_258060,18:02:00,18:07:00,1475179,7, +24986662_258060,18:09:00,18:10:00,1475170,8, +24986662_258060,18:11:00,18:11:00,1475171,9, +24986662_258060,18:13:00,18:13:00,1475172,10, +24986662_258060,18:15:00,18:16:00,1475173,11, +24986662_258060,18:19:00,18:19:00,1475174,12, +24986662_258060,18:21:00,18:22:00,1475175,13, +24986662_258060,18:24:00,18:25:00,1475176,14, +24986662_258060,18:28:00,18:29:00,1474907,15, +24986662_258060,18:33:00,18:33:00,1474908,16, +24986663_258061,17:40:00,17:40:00,1474738,0, +24986663_258061,17:45:00,17:46:00,1474701,1, +24986663_258061,17:48:00,17:48:00,1474702,2, +24986663_258061,17:50:00,17:51:00,1474703,3, +24986663_258061,17:55:00,17:56:00,1475166,4, +24986663_258061,17:58:00,17:58:00,1475167,5, +24986663_258061,18:00:00,18:00:00,1475168,6, +24986663_258061,18:02:00,18:07:00,1475179,7, +24986663_258061,18:09:00,18:10:00,1475170,8, +24986663_258061,18:11:00,18:12:00,1475171,9, +24986663_258061,18:13:00,18:14:00,1475172,10, +24986663_258061,18:16:00,18:16:00,1475173,11, +24986663_258061,18:19:00,18:20:00,1475174,12, +24986663_258061,18:22:00,18:22:00,1475175,13, +24986663_258061,18:24:00,18:25:00,1475176,14, +24986663_258061,18:29:00,18:30:00,1474907,15, +24986663_258061,18:33:00,18:33:00,1474908,16, +24986665_258063,18:48:00,18:48:00,1474738,0, +24986665_258063,18:53:00,18:54:00,1474701,1, +24986665_258063,18:56:00,18:57:00,1474702,2, +24986665_258063,18:59:00,19:00:00,1474703,3, +24986665_258063,19:04:00,19:05:00,1475166,4, +24986665_258063,19:07:00,19:07:00,1475167,5, +24986665_258063,19:09:00,19:10:00,1475168,6, +24986665_258063,19:12:00,19:17:00,1475179,7, +24986665_258063,19:19:00,19:20:00,1475170,8, +24986665_258063,19:21:00,19:22:00,1475171,9, +24986665_258063,19:23:00,19:24:00,1475172,10, +24986665_258063,19:26:00,19:26:00,1475173,11, +24986665_258063,19:29:00,19:30:00,1475174,12, +24986665_258063,19:32:00,19:32:00,1475175,13, +24986665_258063,19:35:00,19:35:00,1475176,14, +24986665_258063,19:39:00,19:40:00,1474907,15, +24986665_258063,19:44:00,19:44:00,1474908,16, +24986667_258065,20:06:00,20:06:00,1474738,0, +24986667_258065,20:11:00,20:12:00,1474701,1, +24986667_258065,20:14:00,20:14:00,1474702,2, +24986667_258065,20:16:00,20:18:00,1474703,3, +24986667_258065,20:22:00,20:23:00,1475166,4, +24986667_258065,20:25:00,20:25:00,1475167,5, +24986667_258065,20:27:00,20:28:00,1475168,6, +24986667_258065,20:29:00,20:30:00,1475179,7, +24986667_258065,20:32:00,20:33:00,1475170,8, +24986667_258065,20:34:00,20:35:00,1475171,9, +24986667_258065,20:36:00,20:37:00,1475172,10, +24986667_258065,20:39:00,20:39:00,1475178,11, +24986667_258065,20:42:00,20:43:00,1475174,12, +24986667_258065,20:45:00,20:45:00,1475175,13, +24986667_258065,20:48:00,20:48:00,1475176,14, +24986667_258065,20:52:00,20:53:00,1474907,15, +24986667_258065,20:57:00,20:57:00,1474908,16, +24986668_258066,20:05:00,20:05:00,1474738,0, +24986668_258066,20:10:00,20:11:00,1474701,1, +24986668_258066,20:13:00,20:13:00,1474702,2, +24986668_258066,20:15:00,20:16:00,1474703,3, +24986668_258066,20:20:00,20:21:00,1475166,4, +24986668_258066,20:23:00,20:23:00,1475167,5, +24986668_258066,20:25:00,20:26:00,1475168,6, +24986668_258066,20:27:00,20:28:00,1475179,7, +24986668_258066,20:30:00,20:31:00,1475170,8, +24986668_258066,20:32:00,20:33:00,1475171,9, +24986668_258066,20:34:00,20:35:00,1475172,10, +24986668_258066,20:37:00,20:37:00,1475173,11, +24986668_258066,20:40:00,20:41:00,1475174,12, +24986668_258066,20:43:00,20:43:00,1475175,13, +24986668_258066,20:46:00,20:46:00,1475176,14, +24986668_258066,20:50:00,20:51:00,1474907,15, +24986668_258066,20:55:00,20:55:00,1474908,16, +24986670_258068,22:03:00,22:03:00,1474861,0, +24986670_258068,22:07:00,22:08:00,1474701,1, +24986670_258068,22:10:00,22:11:00,1474702,2, +24986670_258068,22:13:00,22:14:00,1474703,3, +24986670_258068,22:18:00,22:19:00,1475166,4, +24986670_258068,22:21:00,22:21:00,1475167,5, +24986670_258068,22:23:00,22:23:00,1475168,6, +24986670_258068,22:25:00,22:25:00,1475179,7, +24986670_258068,22:28:00,22:28:00,1475170,8, +24986670_258068,22:30:00,22:30:00,1475171,9, +24986670_258068,22:31:00,22:32:00,1475172,10, +24986670_258068,22:34:00,22:34:00,1475173,11, +24986670_258068,22:37:00,22:38:00,1475174,12, +24986670_258068,22:40:00,22:40:00,1475175,13, +24986670_258068,22:43:00,22:43:00,1475176,14, +24986670_258068,22:47:00,22:48:00,1474907,15, +24986670_258068,22:52:00,22:52:00,1474908,16, +24986671_258069,22:04:00,22:04:00,1474738,0, +24986671_258069,22:09:00,22:10:00,1474701,1, +24986671_258069,22:12:00,22:12:00,1474702,2, +24986671_258069,22:14:00,22:15:00,1474703,3, +24986671_258069,22:19:00,22:20:00,1475166,4, +24986671_258069,22:22:00,22:22:00,1475167,5, +24986671_258069,22:24:00,22:25:00,1475168,6, +24986671_258069,22:26:00,22:26:00,1475179,7, +24986671_258069,22:29:00,22:29:00,1475170,8, +24986671_258069,22:31:00,22:31:00,1475171,9, +24986671_258069,22:33:00,22:33:00,1475172,10, +24986671_258069,22:35:00,22:35:00,1475173,11, +24986671_258069,22:38:00,22:39:00,1475174,12, +24986671_258069,22:41:00,22:42:00,1475175,13, +24986671_258069,22:44:00,22:44:00,1475176,14, +24986671_258069,22:48:00,22:49:00,1474907,15, +24986671_258069,22:53:00,22:53:00,1474908,16, +24986673_258071,05:08:00,05:08:00,1474908,0, +24986673_258071,05:11:00,05:12:00,1474907,1, +24986673_258071,05:15:00,05:16:00,1475176,2, +24986673_258071,05:18:00,05:19:00,1475175,3, +24986673_258071,05:21:00,05:21:00,1475174,4, +24986673_258071,05:24:00,05:25:00,1475173,5, +24986673_258071,05:26:00,05:27:00,1475172,6, +24986673_258071,05:28:00,05:29:00,1475171,7, +24986673_258071,05:30:00,05:30:00,1475170,8, +24986673_258071,05:33:00,05:33:00,1475179,9, +24986673_258071,05:35:00,05:35:00,1475168,10, +24986673_258071,05:37:00,05:37:00,1475167,11, +24986673_258071,05:40:00,05:40:00,1475166,12, +24986673_258071,05:45:00,05:46:00,1474703,13, +24986673_258071,05:49:00,05:49:00,1475180,14, +24986673_258071,05:52:00,05:53:00,1475181,15, +24986673_258071,05:59:00,05:59:00,1536279,16, +24986674_258072,05:12:00,05:12:00,1474908,0, +24986674_258072,05:15:00,05:15:00,1474907,1, +24986674_258072,05:19:00,05:20:00,1475176,2, +24986674_258072,05:22:00,05:23:00,1475175,3, +24986674_258072,05:25:00,05:25:00,1475174,4, +24986674_258072,05:28:00,05:28:00,1475173,5, +24986674_258072,05:30:00,05:30:00,1475172,6, +24986674_258072,05:32:00,05:32:00,1475171,7, +24986674_258072,05:34:00,05:34:00,1475170,8, +24986674_258072,05:37:00,05:37:00,1475179,9, +24986674_258072,05:39:00,05:39:00,1475168,10, +24986674_258072,05:41:00,05:42:00,1475167,11, +24986674_258072,05:44:00,05:45:00,1475166,12, +24986674_258072,05:49:00,05:50:00,1474703,13, +24986674_258072,05:52:00,05:52:00,1475180,14, +24986674_258072,05:55:00,05:56:00,1475181,15, +24986674_258072,06:01:00,06:01:00,1474738,16, +24986676_258074,06:23:00,06:23:00,1474908,0, +24986676_258074,06:26:00,06:27:00,1474907,1, +24986676_258074,06:30:00,06:31:00,1475176,2, +24986676_258074,06:33:00,06:34:00,1475175,3, +24986676_258074,06:36:00,06:37:00,1475174,4, +24986676_258074,06:40:00,06:40:00,1475173,5, +24986676_258074,06:42:00,06:42:00,1475172,6, +24986676_258074,06:43:00,06:44:00,1475171,7, +24986676_258074,06:45:00,06:46:00,1475170,8, +24986676_258074,06:48:00,06:49:00,1475179,9, +24986676_258074,06:50:00,06:50:00,1475168,10, +24986676_258074,06:52:00,06:53:00,1475167,11, +24986676_258074,06:55:00,06:55:00,1475166,12, +24986676_258074,06:59:00,07:00:00,1474703,13, +24986676_258074,07:02:00,07:03:00,1475180,14, +24986676_258074,07:05:00,07:06:00,1475181,15, +24986676_258074,07:12:00,07:12:00,1474861,16, +24986677_258075,06:22:00,06:22:00,1474908,0, +24986677_258075,06:25:00,06:26:00,1474907,1, +24986677_258075,06:29:00,06:30:00,1475176,2, +24986677_258075,06:32:00,06:33:00,1475175,3, +24986677_258075,06:35:00,06:36:00,1475174,4, +24986677_258075,06:38:00,06:39:00,1475173,5, +24986677_258075,06:40:00,06:41:00,1475172,6, +24986677_258075,06:42:00,06:43:00,1475171,7, +24986677_258075,06:44:00,06:45:00,1475170,8, +24986677_258075,06:47:00,06:48:00,1475179,9, +24986677_258075,06:49:00,06:49:00,1475168,10, +24986677_258075,06:51:00,06:52:00,1475167,11, +24986677_258075,06:54:00,06:54:00,1475166,12, +24986677_258075,06:58:00,06:59:00,1474703,13, +24986677_258075,07:02:00,07:02:00,1475180,14, +24986677_258075,07:05:00,07:06:00,1475181,15, +24986677_258075,07:11:00,07:11:00,1474738,16, +24986679_258077,07:41:00,07:41:00,1474908,0, +24986679_258077,07:44:00,07:45:00,1474907,1, +24986679_258077,07:48:00,07:49:00,1475176,2, +24986679_258077,07:51:00,07:52:00,1475175,3, +24986679_258077,07:54:00,07:55:00,1475174,4, +24986679_258077,07:58:00,07:58:00,1475173,5, +24986679_258077,08:00:00,08:01:00,1475172,6, +24986679_258077,08:02:00,08:03:00,1475171,7, +24986679_258077,08:04:00,08:05:00,1475170,8, +24986679_258077,08:07:00,08:14:00,1475179,9, +24986679_258077,08:16:00,08:16:00,1475168,10, +24986679_258077,08:18:00,08:19:00,1475167,11, +24986679_258077,08:21:00,08:22:00,1475166,12, +24986679_258077,08:26:00,08:27:00,1474703,13, +24986679_258077,08:29:00,08:29:00,1475180,14, +24986679_258077,08:32:00,08:33:00,1475181,15, +24986679_258077,08:38:00,08:38:00,1536277,16, +24986680_258078,07:35:00,07:35:00,1474908,0, +24986680_258078,07:38:00,07:39:00,1474907,1, +24986680_258078,07:42:00,07:43:00,1475176,2, +24986680_258078,07:45:00,07:46:00,1475175,3, +24986680_258078,07:48:00,07:48:00,1475174,4, +24986680_258078,07:51:00,07:52:00,1475173,5, +24986680_258078,07:53:00,07:54:00,1475172,6, +24986680_258078,07:55:00,07:56:00,1475171,7, +24986680_258078,07:57:00,07:58:00,1475170,8, +24986680_258078,08:00:00,08:05:00,1475179,9, +24986680_258078,08:07:00,08:07:00,1475168,10, +24986680_258078,08:09:00,08:10:00,1475167,11, +24986680_258078,08:12:00,08:12:00,1475166,12, +24986680_258078,08:16:00,08:17:00,1474703,13, +24986680_258078,08:19:00,08:20:00,1475180,14, +24986680_258078,08:22:00,08:23:00,1475181,15, +24986680_258078,08:29:00,08:29:00,1474738,16, +24986682_258080,08:48:00,08:48:00,1474908,0, +24986682_258080,08:51:00,08:52:00,1474907,1, +24986682_258080,08:55:00,08:56:00,1475176,2, +24986682_258080,08:58:00,08:59:00,1475175,3, +24986682_258080,09:01:00,09:01:00,1475174,4, +24986682_258080,09:04:00,09:05:00,1475173,5, +24986682_258080,09:06:00,09:07:00,1475172,6, +24986682_258080,09:08:00,09:08:00,1475171,7, +24986682_258080,09:10:00,09:10:00,1475170,8, +24986682_258080,09:13:00,09:13:00,1475179,9, +24986682_258080,09:15:00,09:15:00,1475168,10, +24986682_258080,09:17:00,09:18:00,1475167,11, +24986682_258080,09:20:00,09:20:00,1475166,12, +24986682_258080,09:25:00,09:26:00,1474703,13, +24986682_258080,09:28:00,09:28:00,1475180,14, +24986682_258080,09:30:00,09:31:00,1475181,15, +24986682_258080,09:37:00,09:37:00,1474861,16, +24986683_258081,08:51:00,08:51:00,1474908,0, +24986683_258081,08:54:00,08:55:00,1474907,1, +24986683_258081,08:59:00,08:59:00,1475176,2, +24986683_258081,09:02:00,09:02:00,1475175,3, +24986683_258081,09:05:00,09:05:00,1475174,4, +24986683_258081,09:08:00,09:09:00,1475173,5, +24986683_258081,09:10:00,09:11:00,1475172,6, +24986683_258081,09:12:00,09:13:00,1475171,7, +24986683_258081,09:14:00,09:15:00,1475170,8, +24986683_258081,09:18:00,09:20:00,1475179,9, +24986683_258081,09:22:00,09:22:00,1475168,10, +24986683_258081,09:24:00,09:25:00,1475167,11, +24986683_258081,09:27:00,09:28:00,1475166,12, +24986683_258081,09:32:00,09:33:00,1474703,13, +24986683_258081,09:35:00,09:35:00,1475180,14, +24986683_258081,09:37:00,09:38:00,1475181,15, +24986683_258081,09:43:00,09:43:00,1474738,16, +24986685_258083,09:57:00,09:57:00,1474908,0, +24986685_258083,10:00:00,10:01:00,1474907,1, +24986685_258083,10:04:00,10:05:00,1475176,2, +24986685_258083,10:07:00,10:08:00,1475175,3, +24986685_258083,10:10:00,10:10:00,1475174,4, +24986685_258083,10:13:00,10:14:00,1475173,5, +24986685_258083,10:15:00,10:16:00,1475172,6, +24986685_258083,10:17:00,10:18:00,1475171,7, +24986685_258083,10:19:00,10:19:00,1475170,8, +24986685_258083,10:22:00,10:23:00,1475179,9, +24986685_258083,10:24:00,10:24:00,1475168,10, +24986685_258083,10:26:00,10:27:00,1475167,11, +24986685_258083,10:29:00,10:29:00,1475166,12, +24986685_258083,10:34:00,10:35:00,1474703,13, +24986685_258083,10:37:00,10:37:00,1475180,14, +24986685_258083,10:39:00,10:40:00,1475181,15, +24986685_258083,10:46:00,10:46:00,1474738,16, +24986686_258084,09:59:00,09:59:00,1474908,0, +24986686_258084,10:02:00,10:03:00,1474907,1, +24986686_258084,10:06:00,10:07:00,1475176,2, +24986686_258084,10:09:00,10:10:00,1475175,3, +24986686_258084,10:12:00,10:12:00,1475174,4, +24986686_258084,10:15:00,10:15:00,1475173,5, +24986686_258084,10:17:00,10:18:00,1475172,6, +24986686_258084,10:19:00,10:19:00,1475171,7, +24986686_258084,10:21:00,10:21:00,1475170,8, +24986686_258084,10:24:00,10:24:00,1475179,9, +24986686_258084,10:26:00,10:26:00,1475168,10, +24986686_258084,10:28:00,10:29:00,1475167,11, +24986686_258084,10:31:00,10:31:00,1475166,12, +24986686_258084,10:35:00,10:36:00,1474703,13, +24986686_258084,10:38:00,10:39:00,1475180,14, +24986686_258084,10:41:00,10:42:00,1475181,15, +24986686_258084,10:47:00,10:47:00,1474738,16, +24986688_258086,11:28:00,11:28:00,1474908,0, +24986688_258086,11:31:00,11:31:00,1474907,1, +24986688_258086,11:35:00,11:35:00,1475176,2, +24986688_258086,11:38:00,11:38:00,1475175,3, +24986688_258086,11:41:00,11:41:00,1475174,4, +24986688_258086,11:44:00,11:49:00,1475173,5, +24986688_258086,11:51:00,11:52:00,1475172,6, +24986688_258086,11:53:00,11:54:00,1475171,7, +24986688_258086,11:55:00,11:56:00,1475170,8, +24986688_258086,11:58:00,11:59:00,1475179,9, +24986688_258086,12:00:00,12:00:00,1475168,10, +24986688_258086,12:02:00,12:03:00,1475167,11, +24986688_258086,12:05:00,12:05:00,1475166,12, +24986688_258086,12:09:00,12:10:00,1474703,13, +24986688_258086,12:12:00,12:13:00,1475180,14, +24986688_258086,12:15:00,12:16:00,1475181,15, +24986688_258086,12:22:00,12:22:00,1474640,16, +24986689_258087,11:28:00,11:28:00,1474908,0, +24986689_258087,11:31:00,11:31:00,1474907,1, +24986689_258087,11:35:00,11:35:00,1475176,2, +24986689_258087,11:38:00,11:38:00,1475175,3, +24986689_258087,11:41:00,11:41:00,1475174,4, +24986689_258087,11:44:00,11:49:00,1475173,5, +24986689_258087,11:51:00,11:52:00,1475172,6, +24986689_258087,11:53:00,11:54:00,1475171,7, +24986689_258087,11:55:00,11:56:00,1475170,8, +24986689_258087,11:58:00,11:59:00,1475179,9, +24986689_258087,12:00:00,12:00:00,1475168,10, +24986689_258087,12:02:00,12:03:00,1475167,11, +24986689_258087,12:05:00,12:05:00,1475166,12, +24986689_258087,12:09:00,12:10:00,1474703,13, +24986689_258087,12:12:00,12:13:00,1475180,14, +24986689_258087,12:15:00,12:16:00,1475181,15, +24986689_258087,12:22:00,12:22:00,1474738,16, +24986691_258089,12:30:00,12:30:00,1474908,0, +24986691_258089,12:33:00,12:34:00,1474907,1, +24986691_258089,12:37:00,12:38:00,1475176,2, +24986691_258089,12:40:00,12:41:00,1475175,3, +24986691_258089,12:43:00,12:43:00,1475174,4, +24986691_258089,12:46:00,12:47:00,1475173,5, +24986691_258089,12:49:00,12:49:00,1475172,6, +24986691_258089,12:51:00,12:51:00,1475171,7, +24986691_258089,12:52:00,12:53:00,1475170,8, +24986691_258089,12:56:00,12:57:00,1475179,9, +24986691_258089,12:58:00,12:59:00,1475168,10, +24986691_258089,13:01:00,13:01:00,1475167,11, +24986691_258089,13:04:00,13:04:00,1475166,12, +24986691_258089,13:09:00,13:10:00,1474703,13, +24986691_258089,13:12:00,13:13:00,1475180,14, +24986691_258089,13:15:00,13:16:00,1475181,15, +24986691_258089,13:22:00,13:22:00,1474738,16, +24986692_258090,12:33:00,12:33:00,1474908,0, +24986692_258090,12:36:00,12:37:00,1474907,1, +24986692_258090,12:41:00,12:41:00,1475176,2, +24986692_258090,12:44:00,12:44:00,1475175,3, +24986692_258090,12:46:00,12:47:00,1475174,4, +24986692_258090,12:49:00,12:50:00,1475173,5, +24986692_258090,12:51:00,12:52:00,1475172,6, +24986692_258090,12:53:00,12:54:00,1475171,7, +24986692_258090,12:55:00,12:56:00,1475170,8, +24986692_258090,12:58:00,12:59:00,1475179,9, +24986692_258090,13:00:00,13:00:00,1475168,10, +24986692_258090,13:02:00,13:03:00,1475167,11, +24986692_258090,13:05:00,13:05:00,1475166,12, +24986692_258090,13:10:00,13:11:00,1474703,13, +24986692_258090,13:13:00,13:14:00,1475180,14, +24986692_258090,13:16:00,13:17:00,1475181,15, +24986692_258090,13:22:00,13:22:00,1474738,16, +24986694_258092,14:08:00,14:08:00,1474908,0, +24986694_258092,14:12:00,14:12:00,1474907,1, +24986694_258092,14:16:00,14:16:00,1475176,2, +24986694_258092,14:19:00,14:19:00,1475175,3, +24986694_258092,14:21:00,14:22:00,1475174,4, +24986694_258092,14:25:00,14:26:00,1475173,5, +24986694_258092,14:27:00,14:28:00,1475172,6, +24986694_258092,14:29:00,14:30:00,1475171,7, +24986694_258092,14:31:00,14:32:00,1475170,8, +24986694_258092,14:34:00,14:39:00,1475179,9, +24986694_258092,14:40:00,14:41:00,1475168,10, +24986694_258092,14:43:00,14:43:00,1475167,11, +24986694_258092,14:45:00,14:46:00,1475166,12, +24986694_258092,14:50:00,14:51:00,1474703,13, +24986694_258092,14:53:00,14:53:00,1475180,14, +24986694_258092,14:55:00,14:56:00,1475181,15, +24986694_258092,15:01:00,15:01:00,1474640,16, +24986695_258093,14:09:00,14:09:00,1474908,0, +24986695_258093,14:12:00,14:13:00,1474907,1, +24986695_258093,14:17:00,14:17:00,1475176,2, +24986695_258093,14:20:00,14:20:00,1475175,3, +24986695_258093,14:22:00,14:23:00,1475174,4, +24986695_258093,14:25:00,14:26:00,1475173,5, +24986695_258093,14:28:00,14:28:00,1475172,6, +24986695_258093,14:30:00,14:30:00,1475171,7, +24986695_258093,14:32:00,14:32:00,1475170,8, +24986695_258093,14:35:00,14:40:00,1475179,9, +24986695_258093,14:41:00,14:41:00,1475168,10, +24986695_258093,14:43:00,14:44:00,1475167,11, +24986695_258093,14:46:00,14:46:00,1475166,12, +24986695_258093,14:50:00,14:51:00,1474703,13, +24986695_258093,14:53:00,14:54:00,1475180,14, +24986695_258093,14:56:00,14:57:00,1475181,15, +24986695_258093,15:02:00,15:02:00,1474738,16, +24986697_258095,15:20:00,15:20:00,1474908,0, +24986697_258095,15:24:00,15:24:00,1474907,1, +24986697_258095,15:28:00,15:28:00,1475176,2, +24986697_258095,15:31:00,15:31:00,1475175,3, +24986697_258095,15:33:00,15:34:00,1475174,4, +24986697_258095,15:37:00,15:37:00,1475173,5, +24986697_258095,15:39:00,15:39:00,1475172,6, +24986697_258095,15:41:00,15:41:00,1475171,7, +24986697_258095,15:43:00,15:43:00,1475170,8, +24986697_258095,15:46:00,15:51:00,1475179,9, +24986697_258095,15:52:00,15:52:00,1475168,10, +24986697_258095,15:54:00,15:55:00,1475167,11, +24986697_258095,15:57:00,15:57:00,1475166,12, +24986697_258095,16:02:00,16:05:00,1474703,13, +24986697_258095,16:07:00,16:08:00,1475180,14, +24986697_258095,16:11:00,16:12:00,1475181,15, +24986697_258095,16:17:00,16:17:00,1474738,16, +24986698_258096,15:20:00,15:20:00,1474908,0, +24986698_258096,15:23:00,15:24:00,1474907,1, +24986698_258096,15:27:00,15:28:00,1475176,2, +24986698_258096,15:30:00,15:31:00,1475175,3, +24986698_258096,15:33:00,15:33:00,1475174,4, +24986698_258096,15:36:00,15:37:00,1475173,5, +24986698_258096,15:38:00,15:39:00,1475172,6, +24986698_258096,15:40:00,15:41:00,1475171,7, +24986698_258096,15:42:00,15:43:00,1475170,8, +24986698_258096,15:45:00,15:50:00,1475179,9, +24986698_258096,15:52:00,15:52:00,1475168,10, +24986698_258096,15:54:00,15:55:00,1475167,11, +24986698_258096,15:57:00,15:57:00,1475166,12, +24986698_258096,16:02:00,16:03:00,1474703,13, +24986698_258096,16:05:00,16:06:00,1475180,14, +24986698_258096,16:09:00,16:10:00,1475181,15, +24986698_258096,16:15:00,16:15:00,1474738,16, +24986700_258098,16:28:00,16:28:00,1474908,0, +24986700_258098,16:31:00,16:32:00,1474907,1, +24986700_258098,16:35:00,16:36:00,1475176,2, +24986700_258098,16:38:00,16:38:00,1475175,3, +24986700_258098,16:41:00,16:41:00,1475174,4, +24986700_258098,16:44:00,16:44:00,1475173,5, +24986700_258098,16:46:00,16:46:00,1475172,6, +24986700_258098,16:48:00,16:48:00,1475171,7, +24986700_258098,16:49:00,16:50:00,1475170,8, +24986700_258098,16:53:00,16:58:00,1475179,9, +24986700_258098,16:59:00,16:59:00,1475168,10, +24986700_258098,17:01:00,17:02:00,1475167,11, +24986700_258098,17:04:00,17:04:00,1475166,12, +24986700_258098,17:08:00,17:09:00,1474703,13, +24986700_258098,17:11:00,17:12:00,1475180,14, +24986700_258098,17:14:00,17:15:00,1475181,15, +24986700_258098,17:20:00,17:20:00,1474861,16, +24986701_258099,16:31:00,16:31:00,1474908,0, +24986701_258099,16:34:00,16:35:00,1474907,1, +24986701_258099,16:38:00,16:39:00,1475176,2, +24986701_258099,16:41:00,16:42:00,1475175,3, +24986701_258099,16:44:00,16:44:00,1475174,4, +24986701_258099,16:47:00,16:47:00,1475173,5, +24986701_258099,16:49:00,16:50:00,1475172,6, +24986701_258099,16:51:00,16:51:00,1475171,7, +24986701_258099,16:53:00,16:53:00,1475170,8, +24986701_258099,16:56:00,16:56:00,1475179,9, +24986701_258099,16:58:00,16:58:00,1475168,10, +24986701_258099,17:00:00,17:01:00,1475167,11, +24986701_258099,17:04:00,17:04:00,1475166,12, +24986701_258099,17:08:00,17:09:00,1474703,13, +24986701_258099,17:11:00,17:12:00,1475180,14, +24986701_258099,17:14:00,17:15:00,1475181,15, +24986701_258099,17:20:00,17:20:00,1474738,16, +24986703_258101,17:40:00,17:40:00,1474908,0, +24986703_258101,17:43:00,17:44:00,1474907,1, +24986703_258101,17:47:00,17:48:00,1475176,2, +24986703_258101,17:50:00,17:51:00,1475175,3, +24986703_258101,17:53:00,17:53:00,1475174,4, +24986703_258101,17:56:00,17:56:00,1475173,5, +24986703_258101,17:58:00,17:58:00,1475172,6, +24986703_258101,18:00:00,18:00:00,1475171,7, +24986703_258101,18:01:00,18:02:00,1475170,8, +24986703_258101,18:05:00,18:06:00,1475179,9, +24986703_258101,18:07:00,18:08:00,1475168,10, +24986703_258101,18:10:00,18:10:00,1475167,11, +24986703_258101,18:13:00,18:13:00,1475166,12, +24986703_258101,18:17:00,18:18:00,1474703,13, +24986703_258101,18:20:00,18:20:00,1475180,14, +24986703_258101,18:22:00,18:23:00,1475181,15, +24986703_258101,18:28:00,18:28:00,1536279,16, +24986705_258103,17:40:00,17:40:00,1474908,0, +24986705_258103,17:43:00,17:43:00,1474907,1, +24986705_258103,17:47:00,17:47:00,1475176,2, +24986705_258103,17:50:00,17:50:00,1475175,3, +24986705_258103,17:52:00,17:53:00,1475174,4, +24986705_258103,17:55:00,17:56:00,1475173,5, +24986705_258103,17:58:00,17:58:00,1475172,6, +24986705_258103,18:00:00,18:00:00,1475171,7, +24986705_258103,18:02:00,18:02:00,1475170,8, +24986705_258103,18:05:00,18:05:00,1475179,9, +24986705_258103,18:07:00,18:07:00,1475168,10, +24986705_258103,18:09:00,18:10:00,1475167,11, +24986705_258103,18:12:00,18:13:00,1475166,12, +24986705_258103,18:17:00,18:18:00,1474703,13, +24986705_258103,18:20:00,18:21:00,1475180,14, +24986705_258103,18:23:00,18:24:00,1475181,15, +24986705_258103,18:29:00,18:29:00,1474738,16, +24986707_258105,18:48:00,18:48:00,1474908,0, +24986707_258105,18:52:00,18:52:00,1474907,1, +24986707_258105,18:56:00,18:57:00,1475176,2, +24986707_258105,18:59:00,19:00:00,1475175,3, +24986707_258105,19:02:00,19:03:00,1475174,4, +24986707_258105,19:06:00,19:06:00,1475173,5, +24986707_258105,19:08:00,19:08:00,1475172,6, +24986707_258105,19:10:00,19:10:00,1475171,7, +24986707_258105,19:12:00,19:12:00,1475170,8, +24986707_258105,19:15:00,19:18:00,1475179,9, +24986707_258105,19:19:00,19:20:00,1475168,10, +24986707_258105,19:22:00,19:23:00,1475167,11, +24986707_258105,19:25:00,19:25:00,1475166,12, +24986707_258105,19:29:00,19:30:00,1474703,13, +24986707_258105,19:32:00,19:33:00,1475180,14, +24986707_258105,19:35:00,19:36:00,1475181,15, +24986707_258105,19:41:00,19:41:00,1474738,16, +24986708_258106,18:49:00,18:49:00,1474908,0, +24986708_258106,18:52:00,18:53:00,1474907,1, +24986708_258106,18:57:00,18:57:00,1475176,2, +24986708_258106,18:59:00,19:00:00,1475175,3, +24986708_258106,19:02:00,19:03:00,1475174,4, +24986708_258106,19:06:00,19:06:00,1475173,5, +24986708_258106,19:08:00,19:08:00,1475172,6, +24986708_258106,19:10:00,19:10:00,1475171,7, +24986708_258106,19:12:00,19:12:00,1475170,8, +24986708_258106,19:15:00,19:16:00,1475179,9, +24986708_258106,19:18:00,19:19:00,1475168,10, +24986708_258106,19:21:00,19:22:00,1475167,11, +24986708_258106,19:24:00,19:25:00,1475166,12, +24986708_258106,19:29:00,19:30:00,1474703,13, +24986708_258106,19:32:00,19:32:00,1475180,14, +24986708_258106,19:35:00,19:36:00,1475181,15, +24986708_258106,19:41:00,19:41:00,1474738,16, +24986710_258108,20:18:00,20:18:00,1474908,0, +24986710_258108,20:22:00,20:22:00,1474907,1, +24986710_258108,20:26:00,20:27:00,1475176,2, +24986710_258108,20:29:00,20:30:00,1475175,3, +24986710_258108,20:32:00,20:33:00,1475174,4, +24986710_258108,20:36:00,20:41:00,1475173,5, +24986710_258108,20:43:00,20:43:00,1475172,6, +24986710_258108,20:45:00,20:46:00,1475171,7, +24986710_258108,20:47:00,20:47:00,1475170,8, +24986710_258108,20:50:00,20:51:00,1475179,9, +24986710_258108,20:52:00,20:53:00,1475168,10, +24986710_258108,20:55:00,20:55:00,1475167,11, +24986710_258108,20:57:00,20:58:00,1475166,12, +24986710_258108,21:02:00,21:03:00,1474703,13, +24986710_258108,21:05:00,21:06:00,1475180,14, +24986710_258108,21:08:00,21:09:00,1475181,15, +24986710_258108,21:14:00,21:14:00,1536279,16, +24986711_258109,20:17:00,20:17:00,1474908,0, +24986711_258109,20:20:00,20:20:00,1474907,1, +24986711_258109,20:24:00,20:25:00,1475176,2, +24986711_258109,20:27:00,20:28:00,1475175,3, +24986711_258109,20:30:00,20:31:00,1475174,4, +24986711_258109,20:33:00,20:39:00,1475178,5, +24986711_258109,20:41:00,20:41:00,1475172,6, +24986711_258109,20:43:00,20:43:00,1475171,7, +24986711_258109,20:45:00,20:45:00,1475170,8, +24986711_258109,20:48:00,20:48:00,1475179,9, +24986711_258109,20:50:00,20:50:00,1475168,10, +24986711_258109,20:52:00,20:53:00,1475167,11, +24986711_258109,20:55:00,20:56:00,1475166,12, +24986711_258109,21:00:00,21:02:00,1474703,13, +24986711_258109,21:04:00,21:05:00,1475180,14, +24986711_258109,21:08:00,21:09:00,1475181,15, +24986711_258109,21:14:00,21:14:00,1474738,16, +24986713_258111,21:32:00,21:32:00,1474908,0, +24986713_258111,21:36:00,21:36:00,1474907,1, +24986713_258111,21:40:00,21:41:00,1475176,2, +24986713_258111,21:43:00,21:44:00,1475175,3, +24986713_258111,21:46:00,21:47:00,1475174,4, +24986713_258111,21:49:00,21:50:00,1475173,5, +24986713_258111,21:52:00,21:52:00,1475172,6, +24986713_258111,21:54:00,21:54:00,1475171,7, +24986713_258111,21:56:00,21:56:00,1475170,8, +24986713_258111,21:59:00,21:59:00,1475179,9, +24986713_258111,22:00:00,22:01:00,1475168,10, +24986713_258111,22:03:00,22:03:00,1475167,11, +24986713_258111,22:05:00,22:06:00,1475166,12, +24986713_258111,22:10:00,22:11:00,1474703,13, +24986713_258111,22:13:00,22:13:00,1475180,14, +24986713_258111,22:16:00,22:17:00,1475181,15, +24986713_258111,22:22:00,22:22:00,1474861,16, +24986714_258112,21:29:00,21:29:00,1474908,0, +24986714_258112,21:32:00,21:32:00,1474907,1, +24986714_258112,21:36:00,21:37:00,1475176,2, +24986714_258112,21:39:00,21:40:00,1475175,3, +24986714_258112,21:42:00,21:43:00,1475174,4, +24986714_258112,21:45:00,21:46:00,1475173,5, +24986714_258112,21:48:00,21:48:00,1475172,6, +24986714_258112,21:50:00,21:50:00,1475171,7, +24986714_258112,21:52:00,21:52:00,1475170,8, +24986714_258112,21:55:00,21:55:00,1475179,9, +24986714_258112,21:56:00,21:57:00,1475168,10, +24986714_258112,21:59:00,21:59:00,1475167,11, +24986714_258112,22:01:00,22:02:00,1475166,12, +24986714_258112,22:06:00,22:07:00,1474703,13, +24986714_258112,22:09:00,22:09:00,1475180,14, +24986714_258112,22:12:00,22:13:00,1475181,15, +24986714_258112,22:18:00,22:18:00,1474738,16, +24986716_258114,23:05:00,23:05:00,1474908,0, +24986716_258114,23:09:00,23:09:00,1474907,1, +24986716_258114,23:13:00,23:14:00,1475176,2, +24986716_258114,23:16:00,23:17:00,1475175,3, +24986716_258114,23:19:00,23:20:00,1475174,4, +24986716_258114,23:22:00,23:23:00,1475173,5, +24986716_258114,23:25:00,23:25:00,1475172,6, +24986716_258114,23:27:00,23:27:00,1475171,7, +24986716_258114,23:29:00,23:29:00,1475170,8, +24986716_258114,23:32:00,23:32:00,1475179,9, +24986716_258114,23:33:00,23:34:00,1475168,10, +24986716_258114,23:36:00,23:36:00,1475167,11, +24986716_258114,23:38:00,23:39:00,1475166,12, +24986716_258114,23:43:00,23:44:00,1474703,13, +24986716_258114,23:46:00,23:46:00,1475180,14, +24986716_258114,23:48:00,23:49:00,1475181,15, +24986716_258114,23:54:00,23:54:00,1474640,16, +24986717_258115,23:05:00,23:05:00,1474908,0, +24986717_258115,23:08:00,23:08:00,1474907,1, +24986717_258115,23:12:00,23:13:00,1475176,2, +24986717_258115,23:15:00,23:16:00,1475175,3, +24986717_258115,23:18:00,23:19:00,1475174,4, +24986717_258115,23:21:00,23:22:00,1475173,5, +24986717_258115,23:24:00,23:24:00,1475172,6, +24986717_258115,23:26:00,23:26:00,1475171,7, +24986717_258115,23:28:00,23:28:00,1475170,8, +24986717_258115,23:31:00,23:31:00,1475179,9, +24986717_258115,23:32:00,23:33:00,1475168,10, +24986717_258115,23:35:00,23:35:00,1475167,11, +24986717_258115,23:37:00,23:38:00,1475166,12, +24986717_258115,23:42:00,23:43:00,1474703,13, +24986717_258115,23:45:00,23:45:00,1475180,14, +24986717_258115,23:47:00,23:48:00,1475181,15, +24986717_258115,23:53:00,23:53:00,1474738,16, +24986719_258117,04:09:00,04:09:00,1475183,0, +24986719_258117,04:13:00,04:14:00,1475184,1, +24986719_258117,04:16:00,04:17:00,1475185,2, +24986719_258117,04:25:00,04:26:00,1474784,3, +24986719_258117,04:30:00,04:31:00,1475070,4, +24986719_258117,04:36:00,04:37:00,1474786,5, +24986719_258117,04:40:00,04:40:00,1474787,6, +24986719_258117,04:44:00,04:44:00,1474788,7, +24986719_258117,04:46:00,04:47:00,1474789,8, +24986719_258117,04:52:00,04:52:00,1474790,9, +24986719_258117,04:56:00,04:56:00,1474791,10, +24986719_258117,04:58:00,04:59:00,1474792,11, +24986719_258117,05:01:00,05:02:00,1474793,12, +24986719_258117,05:08:00,05:08:00,1536277,13, +24986721_258119,04:17:00,04:17:00,1475183,0, +24986721_258119,04:21:00,04:21:00,1475184,1, +24986721_258119,04:24:00,04:24:00,1475185,2, +24986721_258119,04:32:00,04:33:00,1474784,3, +24986721_258119,04:37:00,04:38:00,1474785,4, +24986721_258119,04:42:00,04:43:00,1474786,5, +24986721_258119,04:46:00,04:47:00,1474787,6, +24986721_258119,04:50:00,04:50:00,1474788,7, +24986721_258119,04:52:00,04:53:00,1474789,8, +24986721_258119,04:57:00,04:58:00,1474790,9, +24986721_258119,05:01:00,05:02:00,1474791,10, +24986721_258119,05:03:00,05:04:00,1474792,11, +24986721_258119,05:06:00,05:06:00,1474793,12, +24986721_258119,05:12:00,05:12:00,1474640,13, +24986724_258122,04:17:00,04:17:00,1474951,0, +24986724_258122,04:21:00,04:22:00,1475076,1, +24986724_258122,04:26:00,04:27:00,1474952,2, +24986724_258122,04:34:00,04:34:00,1474953,3, +24986724_258122,04:37:00,04:37:00,1475075,4, +24986724_258122,04:44:00,04:45:00,1475186,5, +24986724_258122,04:50:00,04:51:00,1475073,6, +24986724_258122,04:55:00,04:55:00,1475184,7, +24986724_258122,04:58:00,04:58:00,1475185,8, +24986724_258122,05:06:00,05:07:00,1474784,9, +24986724_258122,05:12:00,05:13:00,1475070,10, +24986724_258122,05:18:00,05:19:00,1474786,11, +24986724_258122,05:22:00,05:23:00,1474787,12, +24986724_258122,05:26:00,05:26:00,1474788,13, +24986724_258122,05:28:00,05:29:00,1474789,14, +24986724_258122,05:34:00,05:34:00,1474790,15, +24986724_258122,05:38:00,05:38:00,1474791,16, +24986724_258122,05:40:00,05:41:00,1474792,17, +24986724_258122,05:43:00,05:43:00,1474793,18, +24986724_258122,05:49:00,05:49:00,1474640,19, +24986725_258123,04:30:00,04:30:00,1474951,0, +24986725_258123,04:34:00,04:34:00,1475076,1, +24986725_258123,04:39:00,04:39:00,1474952,2, +24986725_258123,04:46:00,04:46:00,1474953,3, +24986725_258123,04:49:00,04:50:00,1475075,4, +24986725_258123,04:57:00,04:58:00,1475186,5, +24986725_258123,05:03:00,05:04:00,1475073,6, +24986725_258123,05:07:00,05:08:00,1475184,7, +24986725_258123,05:10:00,05:11:00,1475185,8, +24986725_258123,05:19:00,05:20:00,1474784,9, +24986725_258123,05:24:00,05:24:00,1474785,10, +24986725_258123,05:28:00,05:29:00,1474786,11, +24986725_258123,05:33:00,05:34:00,1474787,12, +24986725_258123,05:37:00,05:37:00,1474788,13, +24986725_258123,05:40:00,05:40:00,1474789,14, +24986725_258123,05:45:00,05:46:00,1474790,15, +24986725_258123,05:49:00,05:50:00,1474791,16, +24986725_258123,05:52:00,05:52:00,1474792,17, +24986725_258123,05:55:00,05:55:00,1474793,18, +24986725_258123,06:01:00,06:01:00,1474738,19, +24986727_258125,05:32:00,05:32:00,1475183,0, +24986727_258125,05:36:00,05:36:00,1475184,1, +24986727_258125,05:39:00,05:39:00,1475185,2, +24986727_258125,05:48:00,05:49:00,1474784,3, +24986727_258125,05:56:00,05:56:00,1475070,4, +24986727_258125,06:01:00,06:03:00,1474786,5, +24986727_258125,06:07:00,06:07:00,1474787,6, +24986727_258125,06:10:00,06:10:00,1474788,7, +24986727_258125,06:13:00,06:13:00,1474789,8, +24986727_258125,06:18:00,06:19:00,1474790,9, +24986727_258125,06:23:00,06:23:00,1474791,10, +24986727_258125,06:25:00,06:25:00,1474792,11, +24986727_258125,06:28:00,06:29:00,1474793,12, +24986727_258125,06:35:00,06:35:00,1474651,13, +24986728_258126,05:37:00,05:37:00,1475183,0, +24986728_258126,05:41:00,05:41:00,1475184,1, +24986728_258126,05:44:00,05:44:00,1475185,2, +24986728_258126,05:52:00,05:53:00,1474784,3, +24986728_258126,05:57:00,05:58:00,1474785,4, +24986728_258126,06:02:00,06:03:00,1474786,5, +24986728_258126,06:07:00,06:07:00,1474787,6, +24986728_258126,06:10:00,06:11:00,1474788,7, +24986728_258126,06:13:00,06:14:00,1474789,8, +24986728_258126,06:19:00,06:19:00,1474790,9, +24986728_258126,06:23:00,06:23:00,1474791,10, +24986728_258126,06:25:00,06:26:00,1474792,11, +24986728_258126,06:28:00,06:29:00,1474793,12, +24986728_258126,06:35:00,06:35:00,1474640,13, +24986730_258128,05:28:00,05:28:00,1474951,0, +24986730_258128,05:32:00,05:33:00,1475076,1, +24986730_258128,05:37:00,05:38:00,1474952,2, +24986730_258128,05:44:00,05:45:00,1474953,3, +24986730_258128,05:48:00,05:48:00,1475075,4, +24986730_258128,05:55:00,05:55:00,1475186,5, +24986730_258128,06:00:00,06:01:00,1475073,6, +24986730_258128,06:05:00,06:06:00,1475184,7, +24986730_258128,06:08:00,06:08:00,1475185,8, +24986730_258128,06:17:00,06:18:00,1474784,9, +24986730_258128,06:22:00,06:23:00,1475070,10, +24986730_258128,06:28:00,06:33:00,1474786,11, +24986730_258128,06:37:00,06:37:00,1474787,12, +24986730_258128,06:40:00,06:40:00,1474788,13, +24986730_258128,06:43:00,06:43:00,1474789,14, +24986730_258128,06:48:00,06:49:00,1474790,15, +24986730_258128,06:52:00,06:52:00,1474791,16, +24986730_258128,06:54:00,06:55:00,1474792,17, +24986730_258128,06:57:00,06:57:00,1474793,18, +24986730_258128,07:03:00,07:03:00,1474651,19, +24986731_258129,05:34:00,05:34:00,1474951,0, +24986731_258129,05:38:00,05:38:00,1475076,1, +24986731_258129,05:43:00,05:43:00,1474952,2, +24986731_258129,05:50:00,05:50:00,1474953,3, +24986731_258129,05:53:00,05:53:00,1475075,4, +24986731_258129,06:01:00,06:01:00,1475186,5, +24986731_258129,06:06:00,06:07:00,1475073,6, +24986731_258129,06:11:00,06:11:00,1475184,7, +24986731_258129,06:14:00,06:14:00,1475185,8, +24986731_258129,06:22:00,06:23:00,1474784,9, +24986731_258129,06:27:00,06:28:00,1474785,10, +24986731_258129,06:32:00,06:33:00,1474786,11, +24986731_258129,06:37:00,06:37:00,1474787,12, +24986731_258129,06:40:00,06:41:00,1474788,13, +24986731_258129,06:43:00,06:43:00,1474789,14, +24986731_258129,06:48:00,06:49:00,1474790,15, +24986731_258129,06:52:00,06:53:00,1474791,16, +24986731_258129,06:55:00,06:55:00,1474792,17, +24986731_258129,06:58:00,06:59:00,1474793,18, +24986731_258129,07:05:00,07:05:00,1474738,19, +24986733_258131,06:43:00,06:43:00,1475183,0, +24986733_258131,06:47:00,06:47:00,1475184,1, +24986733_258131,06:49:00,06:50:00,1475185,2, +24986733_258131,06:58:00,06:59:00,1474784,3, +24986733_258131,07:06:00,07:06:00,1475070,4, +24986733_258131,07:12:00,07:15:00,1474786,5, +24986733_258131,07:18:00,07:19:00,1474787,6, +24986733_258131,07:21:00,07:22:00,1474788,7, +24986733_258131,07:24:00,07:24:00,1474789,8, +24986733_258131,07:30:00,07:30:00,1474790,9, +24986733_258131,07:34:00,07:34:00,1474791,10, +24986733_258131,07:36:00,07:36:00,1474792,11, +24986733_258131,07:38:00,07:39:00,1474793,12, +24986733_258131,07:45:00,07:45:00,1474640,13, +24986734_258132,06:43:00,06:43:00,1475183,0, +24986734_258132,06:47:00,06:48:00,1475184,1, +24986734_258132,06:50:00,06:51:00,1475185,2, +24986734_258132,06:59:00,07:00:00,1474784,3, +24986734_258132,07:04:00,07:04:00,1474785,4, +24986734_258132,07:09:00,07:10:00,1474786,5, +24986734_258132,07:14:00,07:14:00,1474787,6, +24986734_258132,07:17:00,07:18:00,1474788,7, +24986734_258132,07:20:00,07:21:00,1474789,8, +24986734_258132,07:26:00,07:27:00,1474790,9, +24986734_258132,07:30:00,07:31:00,1474791,10, +24986734_258132,07:33:00,07:33:00,1474792,11, +24986734_258132,07:36:00,07:37:00,1474793,12, +24986734_258132,07:43:00,07:43:00,1474738,13, +24986736_258134,07:57:00,07:57:00,1474784,0, +24986736_258134,08:02:00,08:02:00,1475070,1, +24986736_258134,08:07:00,08:10:00,1474786,2, +24986736_258134,08:14:00,08:14:00,1474787,3, +24986736_258134,08:17:00,08:18:00,1474788,4, +24986736_258134,08:20:00,08:20:00,1474789,5, +24986736_258134,08:25:00,08:26:00,1474790,6, +24986736_258134,08:29:00,08:30:00,1474791,7, +24986736_258134,08:31:00,08:32:00,1474792,8, +24986736_258134,08:34:00,08:35:00,1474793,9, +24986736_258134,08:41:00,08:41:00,1536279,10, +24986737_258135,07:59:00,07:59:00,1474784,0, +24986737_258135,08:04:00,08:04:00,1474785,1, +24986737_258135,08:09:00,08:10:00,1474786,2, +24986737_258135,08:14:00,08:14:00,1474787,3, +24986737_258135,08:17:00,08:17:00,1474788,4, +24986737_258135,08:19:00,08:20:00,1474789,5, +24986737_258135,08:25:00,08:25:00,1474790,6, +24986737_258135,08:28:00,08:29:00,1474791,7, +24986737_258135,08:30:00,08:31:00,1474792,8, +24986737_258135,08:33:00,08:34:00,1474793,9, +24986737_258135,08:39:00,08:39:00,1474640,10, +24986739_258137,10:57:00,10:57:00,1474951,0, +24986739_258137,11:05:00,11:05:00,1474952,1, +24986739_258137,11:14:00,11:15:00,1475075,2, +24986739_258137,11:26:00,11:27:00,1475073,3, +24986739_258137,11:40:00,11:41:00,1474784,4, +24986739_258137,11:53:00,11:54:00,1474786,5, +24986739_258137,12:12:00,12:12:00,1474793,6, +24986739_258137,12:18:00,12:18:00,1474640,7, +24986740_258138,11:06:00,11:06:00,1474951,0, +24986740_258138,11:13:00,11:14:00,1474952,1, +24986740_258138,11:23:00,11:23:00,1475075,2, +24986740_258138,11:35:00,11:36:00,1475073,3, +24986740_258138,11:48:00,11:49:00,1474784,4, +24986740_258138,11:56:00,11:57:00,1474786,5, +24986740_258138,12:16:00,12:17:00,1474793,6, +24986740_258138,12:23:00,12:23:00,1474738,7, +24986742_258140,11:49:00,11:49:00,1474951,0, +24986742_258140,11:53:00,11:54:00,1475076,1, +24986742_258140,11:58:00,11:59:00,1474952,2, +24986742_258140,12:07:00,12:07:00,1474953,3, +24986742_258140,12:10:00,12:10:00,1475075,4, +24986742_258140,12:17:00,12:18:00,1475186,5, +24986742_258140,12:23:00,12:24:00,1475073,6, +24986742_258140,12:27:00,12:28:00,1475184,7, +24986742_258140,12:30:00,12:31:00,1475185,8, +24986742_258140,12:39:00,12:40:00,1474784,9, +24986742_258140,12:47:00,12:47:00,1475070,10, +24986742_258140,12:53:00,12:54:00,1474786,11, +24986742_258140,12:57:00,12:58:00,1474787,12, +24986742_258140,13:01:00,13:01:00,1474788,13, +24986742_258140,13:03:00,13:04:00,1474789,14, +24986742_258140,13:09:00,13:09:00,1474790,15, +24986742_258140,13:13:00,13:13:00,1474791,16, +24986742_258140,13:15:00,13:16:00,1474792,17, +24986742_258140,13:18:00,13:18:00,1474793,18, +24986742_258140,13:24:00,13:24:00,1474640,19, +24986743_258141,11:53:00,11:53:00,1474951,0, +24986743_258141,11:57:00,11:57:00,1475076,1, +24986743_258141,12:02:00,12:02:00,1474952,2, +24986743_258141,12:09:00,12:10:00,1474953,3, +24986743_258141,12:12:00,12:13:00,1475075,4, +24986743_258141,12:21:00,12:21:00,1475186,5, +24986743_258141,12:26:00,12:27:00,1475073,6, +24986743_258141,12:31:00,12:32:00,1475184,7, +24986743_258141,12:34:00,12:35:00,1475185,8, +24986743_258141,12:43:00,12:44:00,1474784,9, +24986743_258141,12:48:00,12:48:00,1474785,10, +24986743_258141,12:52:00,12:53:00,1474786,11, +24986743_258141,12:57:00,12:58:00,1474787,12, +24986743_258141,13:00:00,13:01:00,1474788,13, +24986743_258141,13:03:00,13:04:00,1474789,14, +24986743_258141,13:09:00,13:09:00,1474790,15, +24986743_258141,13:13:00,13:13:00,1474791,16, +24986743_258141,13:15:00,13:15:00,1474792,17, +24986743_258141,13:18:00,13:18:00,1474793,18, +24986743_258141,13:24:00,13:24:00,1474640,19, +24986745_258143,14:08:00,14:08:00,1474951,0, +24986745_258143,14:12:00,14:13:00,1475076,1, +24986745_258143,14:17:00,14:18:00,1474952,2, +24986745_258143,14:24:00,14:25:00,1474953,3, +24986745_258143,14:27:00,14:28:00,1475075,4, +24986745_258143,14:34:00,14:35:00,1475186,5, +24986745_258143,14:40:00,14:41:00,1475073,6, +24986745_258143,14:45:00,14:45:00,1475184,7, +24986745_258143,14:48:00,14:48:00,1475185,8, +24986745_258143,14:56:00,14:57:00,1474784,9, +24986745_258143,15:02:00,15:02:00,1475070,10, +24986745_258143,15:07:00,15:12:00,1474786,11, +24986745_258143,15:16:00,15:16:00,1474787,12, +24986745_258143,15:19:00,15:19:00,1474788,13, +24986745_258143,15:21:00,15:22:00,1474789,14, +24986745_258143,15:27:00,15:28:00,1474790,15, +24986745_258143,15:31:00,15:32:00,1474791,16, +24986745_258143,15:33:00,15:34:00,1474792,17, +24986745_258143,15:36:00,15:36:00,1474793,18, +24986745_258143,15:42:00,15:42:00,1536279,19, +24986746_258144,13:54:00,13:54:00,1474951,0, +24986746_258144,13:58:00,13:58:00,1475076,1, +24986746_258144,14:03:00,14:03:00,1474952,2, +24986746_258144,14:10:00,14:11:00,1474953,3, +24986746_258144,14:14:00,14:14:00,1475075,4, +24986746_258144,14:21:00,14:21:00,1475186,5, +24986746_258144,14:26:00,14:27:00,1475073,6, +24986746_258144,14:31:00,14:31:00,1475184,7, +24986746_258144,14:34:00,14:34:00,1475185,8, +24986746_258144,14:42:00,14:43:00,1474784,9, +24986746_258144,14:48:00,14:49:00,1475070,10, +24986746_258144,14:54:00,15:12:00,1474786,11, +24986746_258144,15:16:00,15:16:00,1474787,12, +24986746_258144,15:19:00,15:19:00,1474788,13, +24986746_258144,15:21:00,15:22:00,1474789,14, +24986746_258144,15:27:00,15:28:00,1474790,15, +24986746_258144,15:31:00,15:32:00,1474791,16, +24986746_258144,15:33:00,15:34:00,1474792,17, +24986746_258144,15:36:00,15:36:00,1474793,18, +24986746_258144,15:42:00,15:42:00,1536279,19, +24986748_258146,14:04:00,14:04:00,1474951,0, +24986748_258146,14:08:00,14:08:00,1475076,1, +24986748_258146,14:13:00,14:13:00,1474952,2, +24986748_258146,14:20:00,14:20:00,1474953,3, +24986748_258146,14:23:00,14:24:00,1475075,4, +24986748_258146,14:31:00,14:32:00,1475186,5, +24986748_258146,14:37:00,14:38:00,1475073,6, +24986748_258146,14:42:00,14:43:00,1475184,7, +24986748_258146,14:45:00,14:46:00,1475185,8, +24986748_258146,14:54:00,14:55:00,1474784,9, +24986748_258146,14:59:00,14:59:00,1474785,10, +24986748_258146,15:04:00,15:06:00,1474786,11, +24986748_258146,15:10:00,15:10:00,1474787,12, +24986748_258146,15:13:00,15:14:00,1474788,13, +24986748_258146,15:16:00,15:17:00,1474789,14, +24986748_258146,15:22:00,15:22:00,1474790,15, +24986748_258146,15:26:00,15:26:00,1474791,16, +24986748_258146,15:28:00,15:29:00,1474792,17, +24986748_258146,15:32:00,15:32:00,1474793,18, +24986748_258146,15:38:00,15:38:00,1474738,19, +24986750_258148,15:26:00,15:26:00,1474784,0, +24986750_258148,15:32:00,15:33:00,1475070,1, +24986750_258148,15:38:00,15:39:00,1474786,2, +24986750_258148,15:43:00,15:43:00,1474787,3, +24986750_258148,15:46:00,15:46:00,1474788,4, +24986750_258148,15:48:00,15:49:00,1474789,5, +24986750_258148,15:54:00,15:54:00,1474790,6, +24986750_258148,15:58:00,15:58:00,1474791,7, +24986750_258148,16:00:00,16:01:00,1474792,8, +24986750_258148,16:03:00,16:07:00,1474793,9, +24986750_258148,16:12:00,16:12:00,1536279,10, +24986751_258149,15:44:00,15:44:00,1475183,0, +24986751_258149,15:48:00,15:48:00,1475184,1, +24986751_258149,15:50:00,15:51:00,1475185,2, +24986751_258149,15:59:00,16:00:00,1474784,3, +24986751_258149,16:04:00,16:04:00,1474785,4, +24986751_258149,16:08:00,16:09:00,1474786,5, +24986751_258149,16:13:00,16:13:00,1474787,6, +24986751_258149,16:16:00,16:17:00,1474788,7, +24986751_258149,16:19:00,16:19:00,1474789,8, +24986751_258149,16:24:00,16:25:00,1474790,9, +24986751_258149,16:28:00,16:29:00,1474791,10, +24986751_258149,16:30:00,16:31:00,1474792,11, +24986751_258149,16:33:00,16:33:00,1474793,12, +24986751_258149,16:39:00,16:39:00,1474640,13, +24986754_258152,15:42:00,15:42:00,1474951,0, +24986754_258152,15:45:00,15:46:00,1475076,1, +24986754_258152,15:50:00,15:51:00,1474952,2, +24986754_258152,15:58:00,15:58:00,1474953,3, +24986754_258152,16:01:00,16:01:00,1475075,4, +24986754_258152,16:08:00,16:08:00,1475186,5, +24986754_258152,16:13:00,16:14:00,1475073,6, +24986754_258152,16:18:00,16:18:00,1475184,7, +24986754_258152,16:21:00,16:21:00,1475185,8, +24986754_258152,16:30:00,16:39:00,1474784,9, +24986754_258152,16:45:00,16:46:00,1475070,10, +24986754_258152,16:51:00,16:56:00,1474786,11, +24986754_258152,16:59:00,16:59:00,1474787,12, +24986754_258152,17:02:00,17:03:00,1474788,13, +24986754_258152,17:05:00,17:05:00,1474789,14, +24986754_258152,17:10:00,17:11:00,1474790,15, +24986754_258152,17:14:00,17:14:00,1474791,16, +24986754_258152,17:16:00,17:17:00,1474792,17, +24986754_258152,17:19:00,17:19:00,1474793,18, +24986754_258152,17:25:00,17:25:00,1536279,19, +24986755_258153,15:52:00,15:52:00,1474951,0, +24986755_258153,15:55:00,15:56:00,1475076,1, +24986755_258153,16:00:00,16:00:00,1474952,2, +24986755_258153,16:06:00,16:07:00,1474953,3, +24986755_258153,16:09:00,16:10:00,1475075,4, +24986755_258153,16:18:00,16:18:00,1475186,5, +24986755_258153,16:23:00,16:24:00,1475073,6, +24986755_258153,16:28:00,16:28:00,1475184,7, +24986755_258153,16:31:00,16:31:00,1475185,8, +24986755_258153,16:40:00,16:41:00,1474784,9, +24986755_258153,16:45:00,16:45:00,1474785,10, +24986755_258153,16:50:00,16:53:00,1474786,11, +24986755_258153,16:56:00,16:57:00,1474787,12, +24986755_258153,17:00:00,17:00:00,1474788,13, +24986755_258153,17:03:00,17:04:00,1474789,14, +24986755_258153,17:09:00,17:10:00,1474790,15, +24986755_258153,17:13:00,17:14:00,1474791,16, +24986755_258153,17:15:00,17:16:00,1474792,17, +24986755_258153,17:18:00,17:19:00,1474793,18, +24986755_258153,17:25:00,17:25:00,1474640,19, +24986757_258155,17:42:00,17:42:00,1475183,0, +24986757_258155,17:56:00,17:58:00,1474784,1, +24986757_258155,18:09:00,18:10:00,1474786,2, +24986757_258155,18:27:00,18:28:00,1474793,3, +24986757_258155,18:33:00,18:33:00,1474651,4, +24986758_258156,17:42:00,17:42:00,1475183,0, +24986758_258156,17:55:00,17:56:00,1474784,1, +24986758_258156,18:03:00,18:04:00,1474786,2, +24986758_258156,18:22:00,18:22:00,1474793,3, +24986758_258156,18:28:00,18:28:00,1474640,4, +24986762_258160,17:42:00,17:42:00,1474951,0, +24986762_258160,17:46:00,17:46:00,1475076,1, +24986762_258160,17:51:00,17:51:00,1474952,2, +24986762_258160,17:58:00,17:59:00,1474953,3, +24986762_258160,18:01:00,18:02:00,1475075,4, +24986762_258160,18:09:00,18:09:00,1475186,5, +24986762_258160,18:14:00,18:15:00,1475073,6, +24986762_258160,18:19:00,18:20:00,1475184,7, +24986762_258160,18:22:00,18:22:00,1475185,8, +24986762_258160,18:31:00,18:32:00,1474784,9, +24986762_258160,18:39:00,18:39:00,1475070,10, +24986762_258160,18:45:00,18:46:00,1474786,11, +24986762_258160,18:49:00,18:50:00,1474787,12, +24986762_258160,18:53:00,18:53:00,1474788,13, +24986762_258160,18:55:00,18:56:00,1474789,14, +24986762_258160,19:01:00,19:01:00,1474790,15, +24986762_258160,19:05:00,19:05:00,1474791,16, +24986762_258160,19:07:00,19:13:00,1474792,17, +24986762_258160,19:16:00,19:16:00,1474793,18, +24986762_258160,19:22:00,19:22:00,1474651,19, +24986763_258161,17:25:00,17:25:00,1474951,0, +24986763_258161,17:28:00,17:29:00,1475076,1, +24986763_258161,17:33:00,17:34:00,1474952,2, +24986763_258161,17:40:00,17:40:00,1474953,3, +24986763_258161,17:43:00,17:44:00,1475075,4, +24986763_258161,17:51:00,17:52:00,1475186,5, +24986763_258161,17:57:00,18:12:00,1475073,6, +24986763_258161,18:15:00,18:16:00,1475184,7, +24986763_258161,18:18:00,18:19:00,1475185,8, +24986763_258161,18:27:00,18:29:00,1474784,9, +24986763_258161,18:33:00,18:33:00,1474785,10, +24986763_258161,18:38:00,18:43:00,1474786,11, +24986763_258161,18:47:00,18:47:00,1474787,12, +24986763_258161,18:50:00,18:51:00,1474788,13, +24986763_258161,18:53:00,18:54:00,1474789,14, +24986763_258161,18:59:00,19:00:00,1474790,15, +24986763_258161,19:03:00,19:04:00,1474791,16, +24986763_258161,19:06:00,19:08:00,1474792,17, +24986763_258161,19:12:00,19:12:00,1474793,18, +24986763_258161,19:18:00,19:18:00,1474640,19, +24986765_258163,20:04:00,20:04:00,1474951,0, +24986765_258163,20:07:00,20:08:00,1475076,1, +24986765_258163,20:12:00,20:13:00,1474952,2, +24986765_258163,20:19:00,20:20:00,1474953,3, +24986765_258163,20:22:00,20:23:00,1475075,4, +24986765_258163,20:29:00,20:30:00,1475186,5, +24986765_258163,20:35:00,20:36:00,1475073,6, +24986765_258163,20:40:00,20:40:00,1475184,7, +24986765_258163,20:42:00,20:43:00,1475185,8, +24986765_258163,20:51:00,20:52:00,1474784,9, +24986765_258163,20:59:00,20:59:00,1475070,10, +24986765_258163,21:04:00,21:05:00,1474786,11, +24986765_258163,21:09:00,21:09:00,1474787,12, +24986765_258163,21:12:00,21:13:00,1474788,13, +24986765_258163,21:15:00,21:15:00,1474789,14, +24986765_258163,21:20:00,21:21:00,1474790,15, +24986765_258163,21:24:00,21:25:00,1474791,16, +24986765_258163,21:26:00,21:27:00,1474792,17, +24986765_258163,21:29:00,21:29:00,1474793,18, +24986765_258163,21:35:00,21:35:00,1474640,19, +24986766_258164,20:12:00,20:12:00,1474951,0, +24986766_258164,20:16:00,20:16:00,1475076,1, +24986766_258164,20:21:00,20:21:00,1474952,2, +24986766_258164,20:28:00,20:28:00,1474953,3, +24986766_258164,20:31:00,20:31:00,1475075,4, +24986766_258164,20:39:00,20:39:00,1475186,5, +24986766_258164,20:44:00,20:45:00,1475073,6, +24986766_258164,20:49:00,20:49:00,1475184,7, +24986766_258164,20:52:00,20:52:00,1475185,8, +24986766_258164,21:00:00,21:01:00,1474784,9, +24986766_258164,21:05:00,21:06:00,1474785,10, +24986766_258164,21:10:00,21:11:00,1474786,11, +24986766_258164,21:14:00,21:15:00,1474787,12, +24986766_258164,21:17:00,21:18:00,1474788,13, +24986766_258164,21:20:00,21:21:00,1474789,14, +24986766_258164,21:26:00,21:26:00,1474790,15, +24986766_258164,21:30:00,21:30:00,1474791,16, +24986766_258164,21:32:00,21:32:00,1474792,17, +24986766_258164,21:35:00,21:36:00,1474793,18, +24986766_258164,21:42:00,21:42:00,1474640,19, +24986768_258166,04:24:00,04:24:00,1474640,0, +24986768_258166,04:29:00,04:30:00,1474963,1, +24986768_258166,04:48:00,04:49:00,1474786,2, +24986768_258166,04:58:00,04:59:00,1474784,3, +24986768_258166,05:13:00,05:13:00,1475183,4, +24986769_258167,04:35:00,04:35:00,1474640,0, +24986769_258167,04:40:00,04:41:00,1474963,1, +24986769_258167,04:59:00,05:00:00,1474786,2, +24986769_258167,05:07:00,05:08:00,1474784,3, +24986769_258167,05:22:00,05:22:00,1475183,4, +24986771_258169,05:32:00,05:32:00,1474651,0, +24986771_258169,05:37:00,05:37:00,1474963,1, +24986771_258169,05:40:00,05:40:00,1474792,2, +24986771_258169,05:42:00,05:42:00,1475065,3, +24986771_258169,05:46:00,05:46:00,1475066,4, +24986771_258169,05:51:00,05:51:00,1475067,5, +24986771_258169,05:53:00,05:54:00,1475068,6, +24986771_258169,05:56:00,05:57:00,1475069,7, +24986771_258169,06:01:00,06:03:00,1474786,8, +24986771_258169,06:08:00,06:09:00,1475070,9, +24986771_258169,06:14:00,06:15:00,1474784,10, +24986771_258169,06:23:00,06:23:00,1475071,11, +24986771_258169,06:25:00,06:25:00,1475072,12, +24986771_258169,06:31:00,06:31:00,1475183,13, +24986772_258170,05:25:00,05:25:00,1474640,0, +24986772_258170,05:30:00,05:31:00,1474963,1, +24986772_258170,05:33:00,05:34:00,1474792,2, +24986772_258170,05:35:00,05:36:00,1475065,3, +24986772_258170,05:39:00,05:40:00,1475066,4, +24986772_258170,05:45:00,05:46:00,1475067,5, +24986772_258170,05:48:00,05:49:00,1475068,6, +24986772_258170,05:51:00,05:52:00,1475069,7, +24986772_258170,05:56:00,05:57:00,1474786,8, +24986772_258170,06:01:00,06:01:00,1475070,9, +24986772_258170,06:05:00,06:06:00,1474784,10, +24986772_258170,06:14:00,06:14:00,1475071,11, +24986772_258170,06:17:00,06:17:00,1475072,12, +24986772_258170,06:22:00,06:22:00,1475183,13, +24986774_258172,06:54:00,06:54:00,1474651,0, +24986774_258172,06:59:00,06:59:00,1474963,1, +24986774_258172,07:02:00,07:05:00,1474792,2, +24986774_258172,07:07:00,07:07:00,1475065,3, +24986774_258172,07:10:00,07:11:00,1475066,4, +24986774_258172,07:16:00,07:16:00,1475067,5, +24986774_258172,07:19:00,07:19:00,1475068,6, +24986774_258172,07:22:00,07:22:00,1475069,7, +24986774_258172,07:27:00,07:28:00,1474786,8, +24986774_258172,07:32:00,07:33:00,1475070,9, +24986774_258172,07:39:00,07:39:00,1474784,10, +24986775_258173,06:54:00,06:54:00,1474640,0, +24986775_258173,06:59:00,07:00:00,1474963,1, +24986775_258173,07:02:00,07:03:00,1474792,2, +24986775_258173,07:04:00,07:05:00,1475065,3, +24986775_258173,07:08:00,07:09:00,1475066,4, +24986775_258173,07:14:00,07:14:00,1475067,5, +24986775_258173,07:16:00,07:17:00,1475068,6, +24986775_258173,07:19:00,07:20:00,1475069,7, +24986775_258173,07:24:00,07:25:00,1474786,8, +24986775_258173,07:29:00,07:30:00,1475070,9, +24986775_258173,07:35:00,07:35:00,1474784,10, +24986777_258175,08:40:00,08:40:00,1474640,0, +24986777_258175,08:45:00,08:46:00,1474963,1, +24986777_258175,09:03:00,09:04:00,1474786,2, +24986777_258175,09:16:00,09:17:00,1474784,3, +24986777_258175,09:30:00,09:31:00,1475073,4, +24986777_258175,09:42:00,09:43:00,1475075,5, +24986777_258175,09:52:00,09:52:00,1474968,6, +24986777_258175,10:01:00,10:01:00,1474951,7, +24986778_258176,08:36:00,08:36:00,1474738,0, +24986778_258176,08:41:00,08:41:00,1474963,1, +24986778_258176,09:00:00,09:01:00,1474786,2, +24986778_258176,09:08:00,09:09:00,1474784,3, +24986778_258176,09:21:00,09:22:00,1475073,4, +24986778_258176,09:34:00,09:35:00,1475075,5, +24986778_258176,09:44:00,09:44:00,1474968,6, +24986778_258176,09:53:00,09:53:00,1474951,7, +24986780_258178,09:35:00,09:35:00,1536277,0, +24986780_258178,09:40:00,09:41:00,1474963,1, +24986780_258178,09:43:00,09:44:00,1474792,2, +24986780_258178,09:45:00,09:46:00,1475065,3, +24986780_258178,09:49:00,09:50:00,1475066,4, +24986780_258178,09:55:00,09:55:00,1475067,5, +24986780_258178,09:58:00,09:58:00,1475068,6, +24986780_258178,10:01:00,10:02:00,1475069,7, +24986780_258178,10:06:00,10:07:00,1474786,8, +24986780_258178,10:11:00,10:12:00,1475070,9, +24986780_258178,10:17:00,10:25:00,1474784,10, +24986780_258178,10:33:00,10:34:00,1475071,11, +24986780_258178,10:36:00,10:36:00,1475072,12, +24986780_258178,10:42:00,10:46:00,1475073,13, +24986780_258178,10:52:00,10:52:00,1475074,14, +24986780_258178,10:59:00,10:59:00,1475075,15, +24986780_258178,11:02:00,11:03:00,1474967,16, +24986780_258178,11:09:00,11:10:00,1474968,17, +24986780_258178,11:14:00,11:15:00,1475076,18, +24986780_258178,11:19:00,11:19:00,1474951,19, +24986781_258179,09:35:00,09:35:00,1474640,0, +24986781_258179,09:40:00,09:41:00,1474963,1, +24986781_258179,09:43:00,09:44:00,1474792,2, +24986781_258179,09:45:00,09:46:00,1475065,3, +24986781_258179,09:49:00,09:50:00,1475066,4, +24986781_258179,09:55:00,09:55:00,1475067,5, +24986781_258179,09:57:00,09:58:00,1475068,6, +24986781_258179,10:00:00,10:01:00,1475069,7, +24986781_258179,10:05:00,10:06:00,1474786,8, +24986781_258179,10:10:00,10:11:00,1475070,9, +24986781_258179,10:15:00,10:16:00,1474784,10, +24986781_258179,10:23:00,10:24:00,1475071,11, +24986781_258179,10:26:00,10:27:00,1475072,12, +24986781_258179,10:31:00,10:31:00,1475073,13, +24986781_258179,10:36:00,10:37:00,1475074,14, +24986781_258179,10:45:00,10:45:00,1475075,15, +24986781_258179,10:48:00,10:48:00,1474967,16, +24986781_258179,10:55:00,10:55:00,1474968,17, +24986781_258179,11:00:00,11:00:00,1475076,18, +24986781_258179,11:05:00,11:05:00,1474951,19, +24986783_258181,11:50:00,11:50:00,1536277,0, +24986783_258181,11:55:00,11:55:00,1474963,1, +24986783_258181,11:58:00,11:59:00,1474792,2, +24986783_258181,12:00:00,12:01:00,1475065,3, +24986783_258181,12:04:00,12:04:00,1475066,4, +24986783_258181,12:09:00,12:10:00,1475067,5, +24986783_258181,12:12:00,12:13:00,1475068,6, +24986783_258181,12:15:00,12:16:00,1475069,7, +24986783_258181,12:20:00,12:20:00,1474786,8, +24986783_258181,12:25:00,12:25:00,1475070,9, +24986783_258181,12:30:00,12:31:00,1474784,10, +24986783_258181,12:38:00,12:38:00,1475071,11, +24986783_258181,12:41:00,12:41:00,1475072,12, +24986783_258181,12:46:00,12:46:00,1475073,13, +24986783_258181,12:52:00,12:52:00,1475074,14, +24986783_258181,12:59:00,13:00:00,1475075,15, +24986783_258181,13:02:00,13:03:00,1474967,16, +24986783_258181,13:09:00,13:10:00,1474968,17, +24986783_258181,13:14:00,13:15:00,1475076,18, +24986783_258181,13:20:00,13:20:00,1474951,19, +24986785_258183,11:48:00,11:48:00,1474738,0, +24986785_258183,11:53:00,11:53:00,1474963,1, +24986785_258183,11:56:00,11:56:00,1474792,2, +24986785_258183,11:58:00,11:59:00,1475065,3, +24986785_258183,12:02:00,12:03:00,1475066,4, +24986785_258183,12:08:00,12:08:00,1475067,5, +24986785_258183,12:10:00,12:11:00,1475068,6, +24986785_258183,12:13:00,12:14:00,1475069,7, +24986785_258183,12:18:00,12:19:00,1474786,8, +24986785_258183,12:23:00,12:23:00,1475070,9, +24986785_258183,12:27:00,12:28:00,1474784,10, +24986785_258183,12:36:00,12:36:00,1475071,11, +24986785_258183,12:39:00,12:39:00,1475072,12, +24986785_258183,12:43:00,12:44:00,1475073,13, +24986785_258183,12:49:00,12:49:00,1475074,14, +24986785_258183,12:57:00,12:57:00,1475075,15, +24986785_258183,13:00:00,13:01:00,1474967,16, +24986785_258183,13:07:00,13:08:00,1474968,17, +24986785_258183,13:12:00,13:13:00,1475076,18, +24986785_258183,13:17:00,13:17:00,1474951,19, +24986787_258185,13:50:00,13:50:00,1474640,0, +24986787_258185,13:55:00,13:56:00,1474963,1, +24986787_258185,13:58:00,13:59:00,1474792,2, +24986787_258185,14:00:00,14:01:00,1475065,3, +24986787_258185,14:04:00,14:05:00,1475066,4, +24986787_258185,14:09:00,14:10:00,1475067,5, +24986787_258185,14:12:00,14:13:00,1475068,6, +24986787_258185,14:15:00,14:16:00,1475069,7, +24986787_258185,14:20:00,14:21:00,1474786,8, +24986787_258185,14:25:00,14:26:00,1475070,9, +24986787_258185,14:31:00,14:32:00,1474784,10, +24986787_258185,14:39:00,14:40:00,1475071,11, +24986787_258185,14:42:00,14:43:00,1475072,12, +24986787_258185,14:47:00,14:48:00,1475073,13, +24986787_258185,14:54:00,14:54:00,1475074,14, +24986787_258185,15:01:00,15:02:00,1475075,15, +24986787_258185,15:04:00,15:05:00,1474967,16, +24986787_258185,15:11:00,15:12:00,1474968,17, +24986787_258185,15:16:00,15:17:00,1475076,18, +24986787_258185,15:21:00,15:21:00,1474951,19, +24986788_258186,13:52:00,13:52:00,1474738,0, +24986788_258186,13:57:00,13:58:00,1474963,1, +24986788_258186,14:00:00,14:01:00,1474792,2, +24986788_258186,14:02:00,14:03:00,1475065,3, +24986788_258186,14:06:00,14:07:00,1475066,4, +24986788_258186,14:12:00,14:12:00,1475067,5, +24986788_258186,14:14:00,14:15:00,1475068,6, +24986788_258186,14:17:00,14:18:00,1475069,7, +24986788_258186,14:22:00,14:23:00,1474786,8, +24986788_258186,14:27:00,14:28:00,1475070,9, +24986788_258186,14:32:00,14:33:00,1474784,10, +24986788_258186,14:41:00,14:41:00,1475071,11, +24986788_258186,14:43:00,14:44:00,1475072,12, +24986788_258186,14:48:00,14:49:00,1475073,13, +24986788_258186,14:54:00,14:54:00,1475074,14, +24986788_258186,15:02:00,15:03:00,1475075,15, +24986788_258186,15:06:00,15:06:00,1474967,16, +24986788_258186,15:13:00,15:13:00,1474968,17, +24986788_258186,15:18:00,15:19:00,1475076,18, +24986788_258186,15:23:00,15:23:00,1474951,19, +24986790_258188,14:26:00,14:26:00,1474640,0, +24986790_258188,14:31:00,14:31:00,1474963,1, +24986790_258188,14:34:00,14:34:00,1474792,2, +24986790_258188,14:36:00,14:36:00,1475065,3, +24986790_258188,14:39:00,14:40:00,1475066,4, +24986790_258188,14:45:00,14:45:00,1475067,5, +24986790_258188,14:48:00,14:48:00,1475068,6, +24986790_258188,14:50:00,14:51:00,1475069,7, +24986790_258188,14:55:00,14:56:00,1474786,8, +24986790_258188,15:01:00,15:01:00,1475070,9, +24986790_258188,15:07:00,15:07:00,1474784,10, +24986791_258189,14:25:00,14:25:00,1474738,0, +24986791_258189,14:29:00,14:30:00,1474963,1, +24986791_258189,14:33:00,14:33:00,1474792,2, +24986791_258189,14:35:00,14:35:00,1475065,3, +24986791_258189,14:38:00,14:39:00,1475066,4, +24986791_258189,14:44:00,14:44:00,1475067,5, +24986791_258189,14:46:00,14:47:00,1475068,6, +24986791_258189,14:49:00,14:50:00,1475069,7, +24986791_258189,14:54:00,14:55:00,1474786,8, +24986791_258189,14:59:00,14:59:00,1475070,9, +24986791_258189,15:03:00,15:04:00,1474784,10, +24986791_258189,15:12:00,15:12:00,1475071,11, +24986791_258189,15:14:00,15:15:00,1475072,12, +24986791_258189,15:20:00,15:20:00,1475183,13, +24986793_258191,15:20:00,15:20:00,1474640,0, +24986793_258191,15:25:00,15:26:00,1474963,1, +24986793_258191,15:28:00,15:29:00,1474792,2, +24986793_258191,15:30:00,15:31:00,1475065,3, +24986793_258191,15:34:00,15:35:00,1475066,4, +24986793_258191,15:40:00,15:40:00,1475067,5, +24986793_258191,15:42:00,15:43:00,1475068,6, +24986793_258191,15:46:00,15:46:00,1475069,7, +24986793_258191,15:51:00,15:55:00,1474786,8, +24986793_258191,16:00:00,16:00:00,1475070,9, +24986793_258191,16:08:00,16:09:00,1474784,10, +24986793_258191,16:16:00,16:17:00,1475071,11, +24986793_258191,16:19:00,16:20:00,1475072,12, +24986793_258191,16:24:00,16:25:00,1475073,13, +24986793_258191,16:30:00,16:31:00,1475074,14, +24986793_258191,16:38:00,16:38:00,1475075,15, +24986793_258191,16:41:00,16:41:00,1474967,16, +24986793_258191,16:48:00,16:48:00,1474968,17, +24986793_258191,16:53:00,16:53:00,1475076,18, +24986793_258191,16:58:00,16:58:00,1474951,19, +24986794_258192,15:20:00,15:20:00,1474640,0, +24986794_258192,15:25:00,15:25:00,1474963,1, +24986794_258192,15:28:00,15:29:00,1474792,2, +24986794_258192,15:30:00,15:31:00,1475065,3, +24986794_258192,15:34:00,15:35:00,1475066,4, +24986794_258192,15:40:00,15:40:00,1475067,5, +24986794_258192,15:42:00,15:43:00,1475068,6, +24986794_258192,15:45:00,15:46:00,1475069,7, +24986794_258192,15:50:00,15:51:00,1474786,8, +24986794_258192,15:55:00,15:56:00,1475070,9, +24986794_258192,16:00:00,16:01:00,1474784,10, +24986794_258192,16:08:00,16:09:00,1475071,11, +24986794_258192,16:11:00,16:11:00,1475072,12, +24986794_258192,16:15:00,16:16:00,1475073,13, +24986794_258192,16:21:00,16:22:00,1475074,14, +24986794_258192,16:29:00,16:30:00,1475075,15, +24986794_258192,16:33:00,16:33:00,1474967,16, +24986794_258192,16:40:00,16:40:00,1474968,17, +24986794_258192,16:45:00,16:45:00,1475076,18, +24986794_258192,16:50:00,16:50:00,1474951,19, +24986796_258194,16:21:00,16:21:00,1474640,0, +24986796_258194,16:26:00,16:26:00,1474963,1, +24986796_258194,16:29:00,16:29:00,1474792,2, +24986796_258194,16:31:00,16:31:00,1475065,3, +24986796_258194,16:35:00,16:35:00,1475066,4, +24986796_258194,16:40:00,16:41:00,1475067,5, +24986796_258194,16:43:00,16:43:00,1475068,6, +24986796_258194,16:46:00,16:46:00,1475069,7, +24986796_258194,16:51:00,16:53:00,1474786,8, +24986796_258194,16:58:00,16:59:00,1475070,9, +24986796_258194,17:06:00,17:07:00,1474784,10, +24986796_258194,17:15:00,17:15:00,1475071,11, +24986796_258194,17:17:00,17:18:00,1475072,12, +24986796_258194,17:23:00,17:23:00,1475183,13, +24986797_258195,16:20:00,16:20:00,1474738,0, +24986797_258195,16:25:00,16:26:00,1474963,1, +24986797_258195,16:28:00,16:28:00,1474792,2, +24986797_258195,16:30:00,16:30:00,1475065,3, +24986797_258195,16:34:00,16:34:00,1475066,4, +24986797_258195,16:39:00,16:40:00,1475067,5, +24986797_258195,16:42:00,16:42:00,1475068,6, +24986797_258195,16:45:00,16:45:00,1475069,7, +24986797_258195,16:50:00,16:51:00,1474786,8, +24986797_258195,16:54:00,16:55:00,1475070,9, +24986797_258195,16:59:00,17:00:00,1474784,10, +24986797_258195,17:08:00,17:08:00,1475071,11, +24986797_258195,17:10:00,17:11:00,1475072,12, +24986797_258195,17:16:00,17:16:00,1475183,13, +24986799_258197,17:10:00,17:10:00,1474640,0, +24986799_258197,17:15:00,17:15:00,1474963,1, +24986799_258197,17:18:00,17:20:00,1474792,2, +24986799_258197,17:21:00,17:22:00,1475065,3, +24986799_258197,17:25:00,17:25:00,1475066,4, +24986799_258197,17:30:00,17:31:00,1475067,5, +24986799_258197,17:33:00,17:34:00,1475068,6, +24986799_258197,17:36:00,17:37:00,1475069,7, +24986799_258197,17:41:00,17:43:00,1474786,8, +24986799_258197,17:48:00,17:48:00,1475070,9, +24986799_258197,17:56:00,18:04:00,1474784,10, +24986799_258197,18:11:00,18:12:00,1475071,11, +24986799_258197,18:14:00,18:15:00,1475072,12, +24986799_258197,18:20:00,18:21:00,1475073,13, +24986799_258197,18:26:00,18:27:00,1475074,14, +24986799_258197,18:33:00,18:34:00,1475075,15, +24986799_258197,18:37:00,18:38:00,1474967,16, +24986799_258197,18:44:00,18:45:00,1474968,17, +24986799_258197,18:49:00,18:50:00,1475076,18, +24986799_258197,18:54:00,18:54:00,1474951,19, +24986800_258198,17:05:00,17:05:00,1474738,0, +24986800_258198,17:10:00,17:10:00,1474963,1, +24986800_258198,17:13:00,17:13:00,1474792,2, +24986800_258198,17:15:00,17:15:00,1475065,3, +24986800_258198,17:19:00,17:19:00,1475066,4, +24986800_258198,17:24:00,17:25:00,1475067,5, +24986800_258198,17:27:00,17:27:00,1475068,6, +24986800_258198,17:30:00,17:30:00,1475069,7, +24986800_258198,17:35:00,17:36:00,1474786,8, +24986800_258198,17:40:00,17:40:00,1475070,9, +24986800_258198,17:44:00,17:45:00,1474784,10, +24986800_258198,17:53:00,17:53:00,1475071,11, +24986800_258198,17:56:00,17:56:00,1475072,12, +24986800_258198,18:00:00,18:01:00,1475073,13, +24986800_258198,18:06:00,18:07:00,1475074,14, +24986800_258198,18:14:00,18:15:00,1475075,15, +24986800_258198,18:18:00,18:18:00,1474967,16, +24986800_258198,18:25:00,18:25:00,1474968,17, +24986800_258198,18:30:00,18:30:00,1475076,18, +24986800_258198,18:36:00,18:36:00,1474951,19, +24986802_258200,18:09:00,18:09:00,1474651,0, +24986802_258200,18:14:00,18:15:00,1474963,1, +24986802_258200,18:18:00,18:19:00,1474792,2, +24986802_258200,18:21:00,18:21:00,1475065,3, +24986802_258200,18:25:00,18:25:00,1475066,4, +24986802_258200,18:30:00,18:30:00,1475067,5, +24986802_258200,18:33:00,18:33:00,1475068,6, +24986802_258200,18:36:00,18:36:00,1475069,7, +24986802_258200,18:41:00,18:47:00,1474786,8, +24986802_258200,18:51:00,18:52:00,1475070,9, +24986802_258200,18:56:00,18:57:00,1474784,10, +24986802_258200,19:05:00,19:05:00,1475071,11, +24986802_258200,19:08:00,19:08:00,1475072,12, +24986802_258200,19:12:00,19:13:00,1475073,13, +24986802_258200,19:19:00,19:19:00,1475074,14, +24986802_258200,19:26:00,19:26:00,1475075,15, +24986802_258200,19:29:00,19:29:00,1474967,16, +24986802_258200,19:36:00,19:36:00,1474968,17, +24986802_258200,19:41:00,19:41:00,1475076,18, +24986802_258200,19:46:00,19:46:00,1474951,19, +24986803_258201,18:08:00,18:08:00,1474640,0, +24986803_258201,18:13:00,18:13:00,1474963,1, +24986803_258201,18:16:00,18:16:00,1474792,2, +24986803_258201,18:18:00,18:18:00,1475065,3, +24986803_258201,18:21:00,18:22:00,1475066,4, +24986803_258201,18:27:00,18:27:00,1475067,5, +24986803_258201,18:30:00,18:30:00,1475068,6, +24986803_258201,18:33:00,18:34:00,1475069,7, +24986803_258201,18:38:00,18:40:00,1474786,8, +24986803_258201,18:44:00,18:44:00,1475070,9, +24986803_258201,18:48:00,18:50:00,1474784,10, +24986803_258201,18:58:00,18:59:00,1475071,11, +24986803_258201,19:01:00,19:03:00,1475072,12, +24986803_258201,19:08:00,19:10:00,1475073,13, +24986803_258201,19:15:00,19:15:00,1475074,14, +24986803_258201,19:23:00,19:24:00,1475075,15, +24986803_258201,19:26:00,19:27:00,1474967,16, +24986803_258201,19:33:00,19:33:00,1474968,17, +24986803_258201,19:37:00,19:38:00,1475076,18, +24986803_258201,19:42:00,19:42:00,1474951,19, +24986805_258203,19:51:00,19:51:00,1474640,0, +24986805_258203,19:56:00,19:57:00,1474963,1, +24986805_258203,19:59:00,20:00:00,1474792,2, +24986805_258203,20:01:00,20:02:00,1475065,3, +24986805_258203,20:05:00,20:06:00,1475066,4, +24986805_258203,20:11:00,20:11:00,1475067,5, +24986805_258203,20:13:00,20:14:00,1475068,6, +24986805_258203,20:16:00,20:17:00,1475069,7, +24986805_258203,20:21:00,20:22:00,1474786,8, +24986805_258203,20:27:00,20:27:00,1475070,9, +24986805_258203,20:32:00,20:33:00,1474784,10, +24986805_258203,20:41:00,20:41:00,1475071,11, +24986805_258203,20:43:00,20:44:00,1475072,12, +24986805_258203,20:48:00,20:49:00,1475073,13, +24986805_258203,20:55:00,20:55:00,1475074,14, +24986805_258203,21:02:00,21:02:00,1475075,15, +24986805_258203,21:05:00,21:06:00,1474967,16, +24986805_258203,21:12:00,21:13:00,1474968,17, +24986805_258203,21:17:00,21:18:00,1475076,18, +24986805_258203,21:23:00,21:23:00,1474951,19, +24986806_258204,19:50:00,19:50:00,1474640,0, +24986806_258204,19:55:00,19:55:00,1474963,1, +24986806_258204,19:58:00,19:58:00,1474792,2, +24986806_258204,20:00:00,20:00:00,1475065,3, +24986806_258204,20:03:00,20:04:00,1475066,4, +24986806_258204,20:09:00,20:09:00,1475067,5, +24986806_258204,20:11:00,20:12:00,1475068,6, +24986806_258204,20:14:00,20:15:00,1475069,7, +24986806_258204,20:19:00,20:20:00,1474786,8, +24986806_258204,20:24:00,20:24:00,1475070,9, +24986806_258204,20:28:00,20:29:00,1474784,10, +24986806_258204,20:37:00,20:38:00,1475071,11, +24986806_258204,20:40:00,20:41:00,1475072,12, +24986806_258204,20:45:00,20:45:00,1475073,13, +24986806_258204,20:50:00,20:51:00,1475074,14, +24986806_258204,20:59:00,20:59:00,1475075,15, +24986806_258204,21:02:00,21:03:00,1474967,16, +24986806_258204,21:09:00,21:10:00,1474968,17, +24986806_258204,21:15:00,21:15:00,1475076,18, +24986806_258204,21:20:00,21:20:00,1474951,19, +24986808_258206,21:45:00,21:45:00,1474640,0, +24986808_258206,21:50:00,21:50:00,1474963,1, +24986808_258206,21:53:00,21:53:00,1474792,2, +24986808_258206,21:55:00,21:55:00,1475065,3, +24986808_258206,21:58:00,21:59:00,1475066,4, +24986808_258206,22:03:00,22:04:00,1475067,5, +24986808_258206,22:06:00,22:06:00,1475068,6, +24986808_258206,22:09:00,22:09:00,1475069,7, +24986808_258206,22:13:00,22:18:00,1474786,8, +24986808_258206,22:22:00,22:23:00,1475070,9, +24986808_258206,22:27:00,22:28:00,1474784,10, +24986808_258206,22:36:00,22:37:00,1475071,11, +24986808_258206,22:39:00,22:39:00,1475072,12, +24986808_258206,22:45:00,22:45:00,1475183,13, +24986809_258207,21:47:00,21:47:00,1474738,0, +24986809_258207,21:51:00,21:52:00,1474963,1, +24986809_258207,21:55:00,21:55:00,1474792,2, +24986809_258207,21:57:00,21:57:00,1475065,3, +24986809_258207,22:00:00,22:01:00,1475066,4, +24986809_258207,22:05:00,22:06:00,1475067,5, +24986809_258207,22:08:00,22:09:00,1475068,6, +24986809_258207,22:11:00,22:11:00,1475069,7, +24986809_258207,22:16:00,22:17:00,1474786,8, +24986809_258207,22:20:00,22:21:00,1475070,9, +24986809_258207,22:25:00,22:26:00,1474784,10, +24986809_258207,22:33:00,22:34:00,1475071,11, +24986809_258207,22:36:00,22:36:00,1475072,12, +24986809_258207,22:42:00,22:42:00,1475183,13, +24986811_258209,23:00:00,23:00:00,1536279,0, +24986811_258209,23:05:00,23:06:00,1474963,1, +24986811_258209,23:08:00,23:09:00,1474792,2, +24986811_258209,23:10:00,23:11:00,1475065,3, +24986811_258209,23:14:00,23:15:00,1475066,4, +24986811_258209,23:20:00,23:20:00,1475067,5, +24986811_258209,23:22:00,23:23:00,1475068,6, +24986811_258209,23:25:00,23:26:00,1475069,7, +24986811_258209,23:30:00,23:31:00,1474786,8, +24986811_258209,23:36:00,23:37:00,1475070,9, +24986811_258209,23:42:00,23:43:00,1474784,10, +24986811_258209,23:50:00,23:51:00,1475071,11, +24986811_258209,23:53:00,23:53:00,1475072,12, +24986811_258209,23:58:00,23:58:00,1475073,13, +24986811_258209,24:04:00,24:05:00,1475074,14, +24986811_258209,24:11:00,24:12:00,1475075,15, +24986811_258209,24:14:00,24:15:00,1474967,16, +24986811_258209,24:21:00,24:22:00,1474968,17, +24986811_258209,24:27:00,24:27:00,1475076,18, +24986811_258209,24:32:00,24:32:00,1474951,19, +24986812_258210,23:00:00,23:00:00,1474640,0, +24986812_258210,23:05:00,23:05:00,1474963,1, +24986812_258210,23:08:00,23:08:00,1474792,2, +24986812_258210,23:10:00,23:10:00,1475065,3, +24986812_258210,23:14:00,23:14:00,1475066,4, +24986812_258210,23:19:00,23:20:00,1475067,5, +24986812_258210,23:22:00,23:22:00,1475068,6, +24986812_258210,23:25:00,23:25:00,1475069,7, +24986812_258210,23:30:00,23:31:00,1474786,8, +24986812_258210,23:35:00,23:35:00,1475070,9, +24986812_258210,23:39:00,23:40:00,1474784,10, +24986812_258210,23:48:00,23:49:00,1475071,11, +24986812_258210,23:51:00,23:51:00,1475072,12, +24986812_258210,23:55:00,23:56:00,1475073,13, +24986812_258210,24:01:00,24:01:00,1475074,14, +24986812_258210,24:09:00,24:10:00,1475075,15, +24986812_258210,24:13:00,24:13:00,1474967,16, +24986812_258210,24:20:00,24:20:00,1474968,17, +24986812_258210,24:25:00,24:26:00,1475076,18, +24986812_258210,24:30:00,24:30:00,1474951,19, +24986815_258213,04:03:00,04:03:00,1474947,0, +24986815_258213,04:10:00,04:11:00,1475000,1, +24986815_258213,04:13:00,04:14:00,1475001,2, +24986815_258213,04:20:00,04:21:00,1475002,3, +24986815_258213,04:26:00,04:27:00,1474949,4, +24986815_258213,04:31:00,04:31:00,1475003,5, +24986815_258213,04:35:00,04:36:00,1475004,6, +24986815_258213,04:39:00,04:40:00,1475005,7, +24986815_258213,04:45:00,04:46:00,1475006,8, +24986815_258213,04:49:00,04:49:00,1475007,9, +24986815_258213,04:52:00,04:53:00,1474950,10, +24986815_258213,04:55:00,04:56:00,1474793,11, +24986815_258213,05:02:00,05:02:00,1536277,12, +24986816_258214,04:02:00,04:02:00,1474843,0, +24986816_258214,04:10:00,04:11:00,1475000,1, +24986816_258214,04:13:00,04:14:00,1475001,2, +24986816_258214,04:20:00,04:21:00,1475002,3, +24986816_258214,04:27:00,04:28:00,1474949,4, +24986816_258214,04:31:00,04:32:00,1475003,5, +24986816_258214,04:36:00,04:37:00,1475004,6, +24986816_258214,04:40:00,04:40:00,1475005,7, +24986816_258214,04:45:00,04:46:00,1475006,8, +24986816_258214,04:49:00,04:50:00,1475007,9, +24986816_258214,04:52:00,04:53:00,1474950,10, +24986816_258214,04:56:00,04:56:00,1474793,11, +24986816_258214,05:02:00,05:02:00,1474640,12, +24986818_258216,04:05:00,04:05:00,1474983,0, +24986818_258216,04:09:00,04:10:00,1475140,1, +24986818_258216,04:14:00,04:15:00,1475137,2, +24986818_258216,04:23:00,04:24:00,1474945,3, +24986818_258216,04:29:00,04:29:00,1475141,4, +24986818_258216,04:34:00,04:34:00,1475142,5, +24986818_258216,04:38:00,04:38:00,1475143,6, +24986818_258216,04:43:00,04:43:00,1474946,7, +24986818_258216,04:49:00,04:49:00,1474845,8, +24986818_258216,04:57:00,04:59:00,1609726,9, +24986818_258216,05:05:00,05:06:00,1475000,10, +24986818_258216,05:08:00,05:09:00,1475001,11, +24986818_258216,05:15:00,05:15:00,1475002,12, +24986818_258216,05:21:00,05:22:00,1474949,13, +24986818_258216,05:25:00,05:25:00,1475003,14, +24986818_258216,05:29:00,05:29:00,1475004,15, +24986818_258216,05:32:00,05:33:00,1475005,16, +24986818_258216,05:37:00,05:38:00,1475006,17, +24986818_258216,05:41:00,05:42:00,1475007,18, +24986818_258216,05:44:00,05:45:00,1474950,19, +24986818_258216,05:48:00,05:48:00,1474793,20, +24986818_258216,05:54:00,05:54:00,1536279,21, +24986819_258217,04:05:00,04:05:00,1474988,0, +24986819_258217,04:09:00,04:10:00,1475140,1, +24986819_258217,04:14:00,04:15:00,1475137,2, +24986819_258217,04:23:00,04:24:00,1474945,3, +24986819_258217,04:28:00,04:29:00,1475141,4, +24986819_258217,04:33:00,04:34:00,1475142,5, +24986819_258217,04:37:00,04:38:00,1475143,6, +24986819_258217,04:42:00,04:42:00,1474946,7, +24986819_258217,04:48:00,04:48:00,1474845,8, +24986819_258217,04:56:00,04:58:00,1474843,9, +24986819_258217,05:06:00,05:06:00,1475000,10, +24986819_258217,05:09:00,05:09:00,1475001,11, +24986819_258217,05:15:00,05:15:00,1475002,12, +24986819_258217,05:21:00,05:22:00,1474949,13, +24986819_258217,05:25:00,05:26:00,1475003,14, +24986819_258217,05:29:00,05:30:00,1475004,15, +24986819_258217,05:32:00,05:33:00,1475005,16, +24986819_258217,05:38:00,05:39:00,1475006,17, +24986819_258217,05:42:00,05:42:00,1475007,18, +24986819_258217,05:44:00,05:45:00,1474950,19, +24986819_258217,05:47:00,05:48:00,1474793,20, +24986819_258217,05:54:00,05:54:00,1474738,21, +24986821_258219,04:39:00,04:39:00,1475133,0, +24986821_258219,04:41:00,04:42:00,1475134,1, +24986821_258219,04:44:00,04:45:00,1475187,2, +24986821_258219,04:50:00,04:50:00,1475135,3, +24986821_258219,04:58:00,04:59:00,1475136,4, +24986821_258219,05:03:00,05:03:00,1475140,5, +24986821_258219,05:08:00,05:08:00,1475137,6, +24986821_258219,05:16:00,05:17:00,1474945,7, +24986821_258219,05:22:00,05:23:00,1475141,8, +24986821_258219,05:27:00,05:28:00,1475142,9, +24986821_258219,05:31:00,05:32:00,1475143,10, +24986821_258219,05:36:00,05:36:00,1474946,11, +24986821_258219,05:43:00,05:43:00,1474845,12, +24986821_258219,05:50:00,05:52:00,1609726,13, +24986821_258219,05:58:00,05:59:00,1475000,14, +24986821_258219,06:01:00,06:02:00,1475001,15, +24986821_258219,06:07:00,06:08:00,1475002,16, +24986821_258219,06:14:00,06:15:00,1474949,17, +24986821_258219,06:18:00,06:18:00,1475003,18, +24986821_258219,06:22:00,06:22:00,1475004,19, +24986821_258219,06:25:00,06:26:00,1475005,20, +24986821_258219,06:30:00,06:31:00,1475006,21, +24986821_258219,06:34:00,06:35:00,1475007,22, +24986821_258219,06:37:00,06:38:00,1474950,23, +24986821_258219,06:40:00,06:41:00,1474793,24, +24986821_258219,06:47:00,06:47:00,1536279,25, +24986822_258220,04:38:00,04:38:00,1475133,0, +24986822_258220,04:40:00,04:41:00,1475134,1, +24986822_258220,04:43:00,04:43:00,1475187,2, +24986822_258220,04:48:00,04:49:00,1475135,3, +24986822_258220,04:58:00,04:59:00,1474988,4, +24986822_258220,05:03:00,05:03:00,1475140,5, +24986822_258220,05:08:00,05:08:00,1475137,6, +24986822_258220,05:16:00,05:17:00,1474945,7, +24986822_258220,05:22:00,05:23:00,1475141,8, +24986822_258220,05:27:00,05:28:00,1475142,9, +24986822_258220,05:31:00,05:32:00,1475143,10, +24986822_258220,05:36:00,05:36:00,1474946,11, +24986822_258220,05:42:00,05:43:00,1474845,12, +24986822_258220,05:50:00,05:52:00,1474843,13, +24986822_258220,05:59:00,06:00:00,1475000,14, +24986822_258220,06:02:00,06:03:00,1475001,15, +24986822_258220,06:08:00,06:09:00,1475002,16, +24986822_258220,06:14:00,06:15:00,1474949,17, +24986822_258220,06:18:00,06:19:00,1475003,18, +24986822_258220,06:22:00,06:23:00,1475004,19, +24986822_258220,06:26:00,06:26:00,1475005,20, +24986822_258220,06:31:00,06:32:00,1475006,21, +24986822_258220,06:35:00,06:35:00,1475007,22, +24986822_258220,06:37:00,06:38:00,1474950,23, +24986822_258220,06:41:00,06:41:00,1474793,24, +24986822_258220,06:47:00,06:47:00,1474640,25, +24986824_258222,05:05:00,05:05:00,1474979,0, +24986824_258222,05:17:00,05:17:00,1475138,1, +24986824_258222,05:21:00,05:22:00,1475139,2, +24986824_258222,05:32:00,05:43:00,1475113,3, +24986824_258222,05:50:00,05:51:00,1475137,4, +24986824_258222,05:59:00,06:00:00,1474945,5, +24986824_258222,06:15:00,06:16:00,1474946,6, +24986824_258222,06:22:00,06:23:00,1474845,7, +24986824_258222,06:30:00,06:33:00,1609726,8, +24986824_258222,06:45:00,06:45:00,1475002,9, +24986824_258222,06:51:00,06:52:00,1474949,10, +24986824_258222,06:57:00,06:58:00,1475004,11, +24986824_258222,07:04:00,07:06:00,1475006,12, +24986824_258222,07:11:00,07:12:00,1474950,13, +24986824_258222,07:14:00,07:15:00,1474793,14, +24986824_258222,07:22:00,07:22:00,1536277,15, +24986825_258223,05:05:00,05:05:00,1474979,0, +24986825_258223,05:17:00,05:17:00,1475138,1, +24986825_258223,05:21:00,05:22:00,1475139,2, +24986825_258223,05:32:00,05:43:00,1475113,3, +24986825_258223,05:50:00,05:51:00,1475137,4, +24986825_258223,05:59:00,06:00:00,1474945,5, +24986825_258223,06:15:00,06:16:00,1474946,6, +24986825_258223,06:22:00,06:23:00,1474845,7, +24986825_258223,06:30:00,06:32:00,1609726,8, +24986825_258223,06:44:00,06:44:00,1475002,9, +24986825_258223,06:50:00,06:51:00,1474949,10, +24986825_258223,06:56:00,06:57:00,1475004,11, +24986825_258223,07:04:00,07:05:00,1475006,12, +24986825_258223,07:10:00,07:11:00,1474950,13, +24986825_258223,07:14:00,07:15:00,1474793,14, +24986825_258223,07:22:00,07:22:00,1474640,15, +24986827_258225,06:16:00,06:16:00,1475133,0, +24986827_258225,06:18:00,06:19:00,1475134,1, +24986827_258225,06:21:00,06:22:00,1475187,2, +24986827_258225,06:27:00,06:27:00,1475135,3, +24986827_258225,06:36:00,06:40:00,1475136,4, +24986827_258225,06:44:00,06:45:00,1475140,5, +24986827_258225,06:49:00,06:49:00,1475137,6, +24986827_258225,06:57:00,06:58:00,1474945,7, +24986827_258225,07:03:00,07:03:00,1475141,8, +24986827_258225,07:08:00,07:08:00,1475142,9, +24986827_258225,07:12:00,07:12:00,1475143,10, +24986827_258225,07:17:00,07:17:00,1474946,11, +24986827_258225,07:23:00,07:23:00,1474845,12, +24986827_258225,07:31:00,07:37:00,1609726,13, +24986827_258225,07:43:00,07:44:00,1475000,14, +24986827_258225,07:46:00,07:47:00,1475001,15, +24986827_258225,07:52:00,07:53:00,1475002,16, +24986827_258225,07:59:00,08:00:00,1474949,17, +24986827_258225,08:03:00,08:03:00,1475003,18, +24986827_258225,08:07:00,08:07:00,1475004,19, +24986827_258225,08:10:00,08:11:00,1475005,20, +24986827_258225,08:15:00,08:16:00,1475006,21, +24986827_258225,08:19:00,08:20:00,1475007,22, +24986827_258225,08:22:00,08:23:00,1474950,23, +24986827_258225,08:25:00,08:26:00,1474793,24, +24986827_258225,08:31:00,08:31:00,1474640,25, +24986828_258226,06:16:00,06:16:00,1475133,0, +24986828_258226,06:18:00,06:19:00,1475134,1, +24986828_258226,06:21:00,06:22:00,1475187,2, +24986828_258226,06:27:00,06:27:00,1475135,3, +24986828_258226,06:36:00,06:40:00,1474988,4, +24986828_258226,06:44:00,06:44:00,1475140,5, +24986828_258226,06:49:00,06:49:00,1475137,6, +24986828_258226,06:57:00,06:58:00,1474945,7, +24986828_258226,07:03:00,07:04:00,1475141,8, +24986828_258226,07:08:00,07:09:00,1475142,9, +24986828_258226,07:12:00,07:13:00,1475143,10, +24986828_258226,07:17:00,07:17:00,1474946,11, +24986828_258226,07:23:00,07:24:00,1474845,12, +24986828_258226,07:31:00,07:38:00,1474843,13, +24986828_258226,07:46:00,07:46:00,1475000,14, +24986828_258226,07:49:00,07:49:00,1475001,15, +24986828_258226,07:55:00,07:55:00,1475002,16, +24986828_258226,08:00:00,08:01:00,1474949,17, +24986828_258226,08:04:00,08:05:00,1475003,18, +24986828_258226,08:08:00,08:09:00,1475004,19, +24986828_258226,08:12:00,08:12:00,1475005,20, +24986828_258226,08:17:00,08:18:00,1475006,21, +24986828_258226,08:21:00,08:21:00,1475007,22, +24986828_258226,08:24:00,08:25:00,1474950,23, +24986828_258226,08:27:00,08:27:00,1474793,24, +24986828_258226,08:33:00,08:33:00,1474640,25, +24986830_258228,07:00:00,07:00:00,1475133,0, +24986830_258228,07:02:00,07:03:00,1475134,1, +24986830_258228,07:05:00,07:05:00,1475187,2, +24986830_258228,07:10:00,07:11:00,1475135,3, +24986830_258228,07:19:00,07:20:00,1475136,4, +24986830_258228,07:24:00,07:24:00,1475140,5, +24986830_258228,07:28:00,07:29:00,1475137,6, +24986830_258228,07:36:00,07:37:00,1474945,7, +24986830_258228,07:42:00,07:43:00,1475141,8, +24986830_258228,07:47:00,07:48:00,1475142,9, +24986830_258228,07:51:00,07:52:00,1475143,10, +24986830_258228,07:56:00,07:56:00,1474946,11, +24986830_258228,08:02:00,08:02:00,1474845,12, +24986830_258228,08:10:00,08:10:00,1657886,13, +24986834_258232,09:12:00,09:12:00,1474979,0, +24986834_258232,09:24:00,09:24:00,1475138,1, +24986834_258232,09:28:00,09:29:00,1475139,2, +24986834_258232,09:39:00,09:47:00,1475136,3, +24986834_258232,09:51:00,09:51:00,1475140,4, +24986834_258232,09:55:00,09:56:00,1475137,5, +24986834_258232,10:03:00,10:04:00,1474945,6, +24986834_258232,10:09:00,10:09:00,1475141,7, +24986834_258232,10:13:00,10:14:00,1475142,8, +24986834_258232,10:17:00,10:18:00,1475143,9, +24986834_258232,10:22:00,10:23:00,1474946,10, +24986834_258232,10:29:00,10:29:00,1474845,11, +24986834_258232,10:37:00,10:38:00,1609726,12, +24986834_258232,10:44:00,10:45:00,1475000,13, +24986834_258232,10:47:00,10:47:00,1475001,14, +24986834_258232,10:53:00,10:53:00,1475002,15, +24986834_258232,10:58:00,10:59:00,1474949,16, +24986834_258232,11:02:00,11:03:00,1475003,17, +24986834_258232,11:06:00,11:07:00,1475004,18, +24986834_258232,11:09:00,11:10:00,1475005,19, +24986834_258232,11:14:00,11:15:00,1475006,20, +24986834_258232,11:18:00,11:18:00,1475007,21, +24986834_258232,11:21:00,11:22:00,1474950,22, +24986834_258232,11:24:00,11:24:00,1474793,23, +24986834_258232,11:30:00,11:30:00,1474640,24, +24986835_258233,09:12:00,09:12:00,1474979,0, +24986835_258233,09:24:00,09:24:00,1475138,1, +24986835_258233,09:28:00,09:29:00,1475139,2, +24986835_258233,09:39:00,09:47:00,1475136,3, +24986835_258233,09:51:00,09:51:00,1475140,4, +24986835_258233,09:55:00,09:56:00,1475137,5, +24986835_258233,10:03:00,10:04:00,1474945,6, +24986835_258233,10:09:00,10:09:00,1475141,7, +24986835_258233,10:13:00,10:14:00,1475142,8, +24986835_258233,10:17:00,10:18:00,1475143,9, +24986835_258233,10:22:00,10:23:00,1474946,10, +24986835_258233,10:29:00,10:29:00,1474845,11, +24986835_258233,10:37:00,10:38:00,1609726,12, +24986835_258233,10:44:00,10:45:00,1475000,13, +24986835_258233,10:47:00,10:47:00,1475001,14, +24986835_258233,10:53:00,10:53:00,1475002,15, +24986835_258233,10:58:00,10:59:00,1474949,16, +24986835_258233,11:02:00,11:02:00,1475003,17, +24986835_258233,11:06:00,11:07:00,1475004,18, +24986835_258233,11:09:00,11:10:00,1475005,19, +24986835_258233,11:14:00,11:15:00,1475006,20, +24986835_258233,11:18:00,11:18:00,1475007,21, +24986835_258233,11:20:00,11:21:00,1474950,22, +24986835_258233,11:23:00,11:24:00,1474793,23, +24986835_258233,11:30:00,11:30:00,1474640,24, +24986836_258234,09:12:00,09:12:00,1474979,0, +24986836_258234,09:24:00,09:24:00,1475138,1, +24986836_258234,09:28:00,09:29:00,1475139,2, +24986836_258234,09:39:00,09:47:00,1474988,3, +24986836_258234,09:51:00,09:52:00,1609788,4, +24986836_258234,09:56:00,09:56:00,1609789,5, +24986836_258234,10:03:00,10:04:00,1474945,6, +24986836_258234,10:09:00,10:09:00,1475141,7, +24986836_258234,10:14:00,10:14:00,1475142,8, +24986836_258234,10:17:00,10:18:00,1475143,9, +24986836_258234,10:22:00,10:23:00,1474946,10, +24986836_258234,10:28:00,10:28:00,1474845,11, +24986836_258234,10:36:00,10:38:00,1474843,12, +24986836_258234,10:45:00,10:46:00,1475000,13, +24986836_258234,10:48:00,10:48:00,1475001,14, +24986836_258234,10:53:00,10:54:00,1475002,15, +24986836_258234,10:59:00,11:00:00,1474949,16, +24986836_258234,11:02:00,11:03:00,1475003,17, +24986836_258234,11:06:00,11:07:00,1475004,18, +24986836_258234,11:09:00,11:10:00,1475005,19, +24986836_258234,11:14:00,11:15:00,1475006,20, +24986836_258234,11:18:00,11:18:00,1475007,21, +24986836_258234,11:20:00,11:21:00,1474950,22, +24986836_258234,11:24:00,11:24:00,1474793,23, +24986836_258234,11:30:00,11:30:00,1474640,24, +24986837_258235,11:03:00,11:03:00,1474979,0, +24986837_258235,11:15:00,11:15:00,1475138,1, +24986837_258235,11:20:00,11:20:00,1475139,2, +24986837_258235,11:30:00,11:43:00,1475136,3, +24986837_258235,11:47:00,11:47:00,1475140,4, +24986837_258235,11:52:00,11:52:00,1475137,5, +24986837_258235,12:00:00,12:01:00,1474945,6, +24986837_258235,12:06:00,12:07:00,1475141,7, +24986837_258235,12:11:00,12:12:00,1475142,8, +24986837_258235,12:15:00,12:16:00,1475143,9, +24986837_258235,12:20:00,12:21:00,1474946,10, +24986837_258235,12:27:00,12:27:00,1474845,11, +24986837_258235,12:35:00,12:37:00,1609726,12, +24986837_258235,12:43:00,12:44:00,1475000,13, +24986837_258235,12:46:00,12:47:00,1475001,14, +24986837_258235,12:52:00,12:53:00,1475002,15, +24986837_258235,12:59:00,13:00:00,1474949,16, +24986837_258235,13:03:00,13:03:00,1475003,17, +24986837_258235,13:07:00,13:08:00,1475004,18, +24986837_258235,13:11:00,13:11:00,1475005,19, +24986837_258235,13:16:00,13:17:00,1475006,20, +24986837_258235,13:20:00,13:20:00,1475007,21, +24986837_258235,13:23:00,13:24:00,1474950,22, +24986837_258235,13:26:00,13:27:00,1474793,23, +24986837_258235,13:33:00,13:33:00,1474640,24, +24986838_258236,11:03:00,11:03:00,1474979,0, +24986838_258236,11:15:00,11:15:00,1475138,1, +24986838_258236,11:19:00,11:20:00,1475139,2, +24986838_258236,11:30:00,11:42:00,1474988,3, +24986838_258236,11:46:00,11:47:00,1609788,4, +24986838_258236,11:51:00,11:52:00,1609789,5, +24986838_258236,12:00:00,12:01:00,1474945,6, +24986838_258236,12:06:00,12:07:00,1475141,7, +24986838_258236,12:11:00,12:12:00,1475142,8, +24986838_258236,12:15:00,12:16:00,1475143,9, +24986838_258236,12:20:00,12:21:00,1474946,10, +24986838_258236,12:27:00,12:27:00,1474845,11, +24986838_258236,12:35:00,12:37:00,1474843,12, +24986838_258236,12:44:00,12:45:00,1475000,13, +24986838_258236,12:47:00,12:48:00,1475001,14, +24986838_258236,12:53:00,12:54:00,1475002,15, +24986838_258236,12:59:00,13:00:00,1474949,16, +24986838_258236,13:04:00,13:04:00,1475003,17, +24986838_258236,13:07:00,13:08:00,1475004,18, +24986838_258236,13:11:00,13:11:00,1475005,19, +24986838_258236,13:16:00,13:17:00,1475006,20, +24986838_258236,13:20:00,13:21:00,1475007,21, +24986838_258236,13:23:00,13:24:00,1474950,22, +24986838_258236,13:26:00,13:26:00,1474793,23, +24986838_258236,13:32:00,13:32:00,1474640,24, +24986840_258238,14:36:00,14:36:00,1474947,0, +24986840_258238,14:42:00,14:43:00,1475000,1, +24986840_258238,14:45:00,14:46:00,1475001,2, +24986840_258238,14:51:00,14:52:00,1475002,3, +24986840_258238,14:58:00,14:58:00,1474949,4, +24986840_258238,15:01:00,15:02:00,1475003,5, +24986840_258238,15:05:00,15:06:00,1475004,6, +24986840_258238,15:09:00,15:09:00,1475005,7, +24986840_258238,15:14:00,15:14:00,1475006,8, +24986840_258238,15:17:00,15:18:00,1475007,9, +24986840_258238,15:20:00,15:20:00,1474950,10, +24986840_258238,15:23:00,15:23:00,1474793,11, +24986840_258238,15:29:00,15:29:00,1536279,12, +24986841_258239,14:33:00,14:33:00,1474843,0, +24986841_258239,14:41:00,14:41:00,1475000,1, +24986841_258239,14:44:00,14:44:00,1475001,2, +24986841_258239,14:50:00,14:50:00,1475002,3, +24986841_258239,14:56:00,14:56:00,1474949,4, +24986841_258239,15:00:00,15:00:00,1475003,5, +24986841_258239,15:04:00,15:04:00,1475004,6, +24986841_258239,15:07:00,15:07:00,1475005,7, +24986841_258239,15:12:00,15:13:00,1475006,8, +24986841_258239,15:16:00,15:16:00,1475007,9, +24986841_258239,15:19:00,15:19:00,1474950,10, +24986841_258239,15:22:00,15:22:00,1474793,11, +24986841_258239,15:28:00,15:28:00,1474640,12, +24986848_258246,15:20:00,15:20:00,1474947,0, +24986848_258246,15:31:00,15:32:00,1475002,1, +24986848_258246,15:37:00,15:38:00,1474949,2, +24986848_258246,15:43:00,15:43:00,1475004,3, +24986848_258246,15:49:00,15:50:00,1475006,4, +24986848_258246,15:54:00,15:55:00,1474950,5, +24986848_258246,15:57:00,15:57:00,1474793,6, +24986848_258246,16:03:00,16:03:00,1474640,7, +24986849_258247,14:57:00,14:57:00,1474948,0, +24986849_258247,15:19:00,15:20:00,1474947,1, +24986849_258247,15:31:00,15:32:00,1475002,2, +24986849_258247,15:37:00,15:38:00,1474949,3, +24986849_258247,15:43:00,15:43:00,1475004,4, +24986849_258247,15:49:00,15:50:00,1475006,5, +24986849_258247,15:54:00,15:55:00,1474950,6, +24986849_258247,15:57:00,15:57:00,1474793,7, +24986849_258247,16:03:00,16:03:00,1474640,8, +24986850_258248,15:20:00,15:20:00,1474947,0, +24986850_258248,15:31:00,15:32:00,1475002,1, +24986850_258248,15:37:00,15:38:00,1474949,2, +24986850_258248,15:43:00,15:43:00,1475004,3, +24986850_258248,15:49:00,15:50:00,1475006,4, +24986850_258248,15:54:00,15:55:00,1474950,5, +24986850_258248,15:57:00,15:57:00,1474793,6, +24986850_258248,16:03:00,16:03:00,1474738,7, +24986851_258249,14:58:00,14:58:00,1474948,0, +24986851_258249,15:19:00,15:20:00,1474843,1, +24986851_258249,15:31:00,15:32:00,1475002,2, +24986851_258249,15:37:00,15:38:00,1474949,3, +24986851_258249,15:43:00,15:43:00,1475004,4, +24986851_258249,15:49:00,15:50:00,1475006,5, +24986851_258249,15:54:00,15:55:00,1474950,6, +24986851_258249,15:57:00,15:57:00,1474793,7, +24986851_258249,16:03:00,16:03:00,1474738,8, +24986853_258251,14:17:00,14:17:00,1475133,0, +24986853_258251,14:19:00,14:20:00,1475134,1, +24986853_258251,14:22:00,14:22:00,1475187,2, +24986853_258251,14:27:00,14:28:00,1475135,3, +24986853_258251,14:36:00,14:37:00,1475136,4, +24986853_258251,14:41:00,14:42:00,1475140,5, +24986853_258251,14:46:00,14:47:00,1475137,6, +24986853_258251,14:54:00,14:55:00,1474945,7, +24986853_258251,15:01:00,15:01:00,1475141,8, +24986853_258251,15:06:00,15:06:00,1475142,9, +24986853_258251,15:10:00,15:10:00,1475143,10, +24986853_258251,15:15:00,15:16:00,1474946,11, +24986853_258251,15:21:00,15:22:00,1474845,12, +24986853_258251,15:29:00,15:31:00,1609726,13, +24986853_258251,15:37:00,15:38:00,1475000,14, +24986853_258251,15:40:00,15:41:00,1475001,15, +24986853_258251,15:46:00,15:47:00,1475002,16, +24986853_258251,15:53:00,15:54:00,1474949,17, +24986853_258251,15:57:00,15:58:00,1475003,18, +24986853_258251,16:01:00,16:02:00,1475004,19, +24986853_258251,16:05:00,16:05:00,1475005,20, +24986853_258251,16:10:00,16:11:00,1475006,21, +24986853_258251,16:14:00,16:15:00,1475007,22, +24986853_258251,16:17:00,16:18:00,1474950,23, +24986853_258251,16:20:00,16:21:00,1474793,24, +24986853_258251,16:26:00,16:26:00,1474640,25, +24986854_258252,14:17:00,14:17:00,1475133,0, +24986854_258252,14:19:00,14:20:00,1475134,1, +24986854_258252,14:22:00,14:22:00,1475187,2, +24986854_258252,14:27:00,14:28:00,1475135,3, +24986854_258252,14:36:00,14:37:00,1474988,4, +24986854_258252,14:41:00,14:42:00,1475140,5, +24986854_258252,14:46:00,14:47:00,1475137,6, +24986854_258252,14:54:00,14:55:00,1474945,7, +24986854_258252,15:01:00,15:01:00,1475141,8, +24986854_258252,15:06:00,15:06:00,1475142,9, +24986854_258252,15:10:00,15:10:00,1475143,10, +24986854_258252,15:14:00,15:15:00,1474946,11, +24986854_258252,15:21:00,15:21:00,1474845,12, +24986854_258252,15:29:00,15:37:00,1474843,13, +24986854_258252,15:45:00,15:45:00,1475000,14, +24986854_258252,15:48:00,15:48:00,1475001,15, +24986854_258252,15:54:00,15:54:00,1475002,16, +24986854_258252,16:00:00,16:01:00,1474949,17, +24986854_258252,16:04:00,16:05:00,1475003,18, +24986854_258252,16:08:00,16:09:00,1475004,19, +24986854_258252,16:11:00,16:12:00,1475005,20, +24986854_258252,16:17:00,16:18:00,1475006,21, +24986854_258252,16:21:00,16:21:00,1475007,22, +24986854_258252,16:24:00,16:25:00,1474950,23, +24986854_258252,16:27:00,16:28:00,1474793,24, +24986854_258252,16:33:00,16:33:00,1474640,25, +24986856_258254,15:09:00,15:09:00,1474979,0, +24986856_258254,15:21:00,15:21:00,1475138,1, +24986856_258254,15:25:00,15:26:00,1475139,2, +24986856_258254,15:36:00,15:47:00,1475136,3, +24986856_258254,15:51:00,15:51:00,1475140,4, +24986856_258254,15:56:00,15:56:00,1475137,5, +24986856_258254,16:04:00,16:05:00,1474945,6, +24986856_258254,16:10:00,16:11:00,1475141,7, +24986856_258254,16:15:00,16:16:00,1475142,8, +24986856_258254,16:19:00,16:20:00,1475143,9, +24986856_258254,16:24:00,16:25:00,1474946,10, +24986856_258254,16:31:00,16:31:00,1474845,11, +24986856_258254,16:38:00,16:39:00,1609726,12, +24986856_258254,16:45:00,16:46:00,1475000,13, +24986856_258254,16:48:00,16:49:00,1475001,14, +24986856_258254,16:54:00,16:55:00,1475002,15, +24986856_258254,17:01:00,17:02:00,1474949,16, +24986856_258254,17:05:00,17:05:00,1475003,17, +24986856_258254,17:09:00,17:10:00,1475004,18, +24986856_258254,17:13:00,17:13:00,1475005,19, +24986856_258254,17:18:00,17:19:00,1475006,20, +24986856_258254,17:22:00,17:22:00,1475007,21, +24986856_258254,17:24:00,17:25:00,1474950,22, +24986856_258254,17:28:00,17:28:00,1474793,23, +24986856_258254,17:34:00,17:34:00,1474651,24, +24986858_258256,15:09:00,15:09:00,1474979,0, +24986858_258256,15:21:00,15:21:00,1475138,1, +24986858_258256,15:25:00,15:26:00,1475139,2, +24986858_258256,15:36:00,15:44:00,1474988,3, +24986858_258256,15:48:00,15:48:00,1609788,4, +24986858_258256,15:53:00,15:53:00,1609789,5, +24986858_258256,16:01:00,16:02:00,1474945,6, +24986858_258256,16:07:00,16:08:00,1475141,7, +24986858_258256,16:12:00,16:13:00,1475142,8, +24986858_258256,16:16:00,16:17:00,1475143,9, +24986858_258256,16:21:00,16:22:00,1474946,10, +24986858_258256,16:28:00,16:28:00,1474845,11, +24986858_258256,16:35:00,16:36:00,1474843,12, +24986858_258256,16:44:00,16:44:00,1475000,13, +24986858_258256,16:47:00,16:47:00,1475001,14, +24986858_258256,16:53:00,16:53:00,1475002,15, +24986858_258256,16:59:00,17:00:00,1474949,16, +24986858_258256,17:03:00,17:04:00,1475003,17, +24986858_258256,17:07:00,17:08:00,1475004,18, +24986858_258256,17:11:00,17:11:00,1475005,19, +24986858_258256,17:16:00,17:17:00,1475006,20, +24986858_258256,17:20:00,17:21:00,1475007,21, +24986858_258256,17:23:00,17:24:00,1474950,22, +24986858_258256,17:26:00,17:26:00,1474793,23, +24986858_258256,17:32:00,17:32:00,1474738,24, +24986861_258259,16:13:00,16:13:00,1475133,0, +24986861_258259,16:15:00,16:16:00,1475134,1, +24986861_258259,16:18:00,16:19:00,1475187,2, +24986861_258259,16:24:00,16:25:00,1475135,3, +24986861_258259,16:34:00,16:35:00,1475136,4, +24986861_258259,16:39:00,16:40:00,1475140,5, +24986861_258259,16:45:00,16:45:00,1475137,6, +24986861_258259,16:53:00,16:54:00,1474945,7, +24986861_258259,16:58:00,16:59:00,1475141,8, +24986861_258259,17:03:00,17:04:00,1475142,9, +24986861_258259,17:07:00,17:08:00,1475143,10, +24986861_258259,17:12:00,17:12:00,1474946,11, +24986861_258259,17:18:00,17:18:00,1474845,12, +24986861_258259,17:25:00,17:27:00,1657886,13, +24986861_258259,17:33:00,17:33:00,1475000,14, +24986861_258259,17:35:00,17:36:00,1475001,15, +24986861_258259,17:41:00,17:42:00,1475002,16, +24986861_258259,17:47:00,17:48:00,1474949,17, +24986861_258259,17:50:00,17:51:00,1475003,18, +24986861_258259,17:54:00,17:55:00,1475004,19, +24986861_258259,17:57:00,17:58:00,1475005,20, +24986861_258259,18:02:00,18:03:00,1475006,21, +24986861_258259,18:06:00,18:07:00,1475007,22, +24986861_258259,18:09:00,18:10:00,1474950,23, +24986861_258259,18:12:00,18:13:00,1474793,24, +24986861_258259,18:18:00,18:18:00,1474640,25, +24986863_258261,16:14:00,16:14:00,1475133,0, +24986863_258261,16:16:00,16:17:00,1475134,1, +24986863_258261,16:18:00,16:19:00,1475187,2, +24986863_258261,16:23:00,16:24:00,1475135,3, +24986863_258261,16:32:00,16:33:00,1474988,4, +24986863_258261,16:37:00,16:37:00,1475140,5, +24986863_258261,16:41:00,16:42:00,1475137,6, +24986863_258261,16:49:00,16:50:00,1474945,7, +24986863_258261,16:55:00,16:56:00,1475141,8, +24986863_258261,17:00:00,17:01:00,1475142,9, +24986863_258261,17:04:00,17:05:00,1475143,10, +24986863_258261,17:09:00,17:09:00,1474946,11, +24986863_258261,17:14:00,17:15:00,1474845,12, +24986863_258261,17:22:00,17:24:00,1474843,13, +24986863_258261,17:32:00,17:32:00,1475000,14, +24986863_258261,17:34:00,17:35:00,1475001,15, +24986863_258261,17:40:00,17:41:00,1475002,16, +24986863_258261,17:46:00,17:47:00,1474949,17, +24986863_258261,17:50:00,17:50:00,1475003,18, +24986863_258261,17:54:00,17:54:00,1475004,19, +24986863_258261,17:57:00,17:57:00,1475005,20, +24986863_258261,18:02:00,18:03:00,1475006,21, +24986863_258261,18:06:00,18:07:00,1475007,22, +24986863_258261,18:09:00,18:10:00,1474950,23, +24986863_258261,18:12:00,18:13:00,1474793,24, +24986863_258261,18:18:00,18:18:00,1474640,25, +24986865_258263,17:05:00,17:05:00,1474979,0, +24986865_258263,17:17:00,17:17:00,1475138,1, +24986865_258263,17:21:00,17:22:00,1475139,2, +24986865_258263,17:32:00,17:50:00,1475136,3, +24986865_258263,17:54:00,17:55:00,1475140,4, +24986865_258263,18:00:00,18:01:00,1475137,5, +24986865_258263,18:09:00,18:11:00,1474945,6, +24986865_258263,18:16:00,18:16:00,1475141,7, +24986865_258263,18:21:00,18:22:00,1475142,8, +24986865_258263,18:26:00,18:27:00,1475143,9, +24986865_258263,18:31:00,18:33:00,1474946,10, +24986865_258263,18:38:00,18:38:00,1474845,11, +24986865_258263,18:46:00,18:52:00,1609726,12, +24986865_258263,18:58:00,18:59:00,1475000,13, +24986865_258263,19:01:00,19:02:00,1475001,14, +24986865_258263,19:07:00,19:08:00,1475002,15, +24986865_258263,19:14:00,19:15:00,1474949,16, +24986865_258263,19:18:00,19:18:00,1475003,17, +24986865_258263,19:22:00,19:23:00,1475004,18, +24986865_258263,19:26:00,19:26:00,1475005,19, +24986865_258263,19:31:00,19:32:00,1475006,20, +24986865_258263,19:35:00,19:35:00,1475007,21, +24986865_258263,19:38:00,19:39:00,1474950,22, +24986865_258263,19:41:00,19:42:00,1474793,23, +24986865_258263,19:48:00,19:48:00,1474651,24, +24986866_258264,17:05:00,17:05:00,1474979,0, +24986866_258264,17:17:00,17:17:00,1475138,1, +24986866_258264,17:21:00,17:22:00,1475139,2, +24986866_258264,17:32:00,17:50:00,1475136,3, +24986866_258264,17:54:00,17:55:00,1475140,4, +24986866_258264,18:00:00,18:01:00,1475131,5, +24986866_258264,18:09:00,18:11:00,1474945,6, +24986866_258264,18:16:00,18:16:00,1475141,7, +24986866_258264,18:21:00,18:22:00,1475142,8, +24986866_258264,18:26:00,18:27:00,1475143,9, +24986866_258264,18:31:00,18:33:00,1474946,10, +24986866_258264,18:38:00,18:38:00,1474845,11, +24986866_258264,18:46:00,18:52:00,1609726,12, +24986866_258264,18:58:00,18:59:00,1475000,13, +24986866_258264,19:01:00,19:02:00,1475001,14, +24986866_258264,19:07:00,19:08:00,1475002,15, +24986866_258264,19:14:00,19:15:00,1474949,16, +24986866_258264,19:18:00,19:18:00,1475003,17, +24986866_258264,19:22:00,19:23:00,1475004,18, +24986866_258264,19:26:00,19:26:00,1475005,19, +24986866_258264,19:31:00,19:32:00,1475006,20, +24986866_258264,19:35:00,19:35:00,1475007,21, +24986866_258264,19:38:00,19:39:00,1474950,22, +24986866_258264,19:41:00,19:42:00,1474793,23, +24986866_258264,19:48:00,19:48:00,1474651,24, +24986867_258265,17:05:00,17:05:00,1474979,0, +24986867_258265,17:17:00,17:17:00,1475138,1, +24986867_258265,17:21:00,17:22:00,1475139,2, +24986867_258265,17:32:00,17:50:00,1474988,3, +24986867_258265,17:54:00,17:55:00,1609788,4, +24986867_258265,18:00:00,18:01:00,1609789,5, +24986867_258265,18:09:00,18:10:00,1474945,6, +24986867_258265,18:16:00,18:16:00,1475141,7, +24986867_258265,18:21:00,18:22:00,1475142,8, +24986867_258265,18:26:00,18:26:00,1475143,9, +24986867_258265,18:31:00,18:32:00,1474946,10, +24986867_258265,18:38:00,18:38:00,1474845,11, +24986867_258265,18:46:00,18:51:00,1474843,12, +24986867_258265,18:59:00,18:59:00,1475000,13, +24986867_258265,19:02:00,19:02:00,1475001,14, +24986867_258265,19:08:00,19:08:00,1475002,15, +24986867_258265,19:14:00,19:15:00,1474949,16, +24986867_258265,19:18:00,19:19:00,1475003,17, +24986867_258265,19:22:00,19:23:00,1475004,18, +24986867_258265,19:26:00,19:26:00,1475005,19, +24986867_258265,19:31:00,19:32:00,1475006,20, +24986867_258265,19:35:00,19:36:00,1475007,21, +24986867_258265,19:38:00,19:39:00,1474950,22, +24986867_258265,19:41:00,19:42:00,1474793,23, +24986867_258265,19:48:00,19:48:00,1474640,24, +24986869_258267,18:35:00,18:35:00,1475133,0, +24986869_258267,18:37:00,18:38:00,1475134,1, +24986869_258267,18:40:00,18:40:00,1475187,2, +24986869_258267,18:45:00,18:46:00,1475135,3, +24986869_258267,18:54:00,18:55:00,1475136,4, +24986869_258267,18:59:00,19:00:00,1475140,5, +24986869_258267,19:04:00,19:04:00,1475137,6, +24986869_258267,19:12:00,19:13:00,1474945,7, +24986869_258267,19:18:00,19:19:00,1475141,8, +24986869_258267,19:23:00,19:24:00,1475142,9, +24986869_258267,19:28:00,19:28:00,1475143,10, +24986869_258267,19:32:00,19:33:00,1474946,11, +24986869_258267,19:38:00,19:39:00,1474845,12, +24986869_258267,19:46:00,19:48:00,1609726,13, +24986869_258267,19:55:00,19:55:00,1475000,14, +24986869_258267,19:58:00,19:58:00,1475001,15, +24986869_258267,20:04:00,20:04:00,1475002,16, +24986869_258267,20:10:00,20:11:00,1474949,17, +24986869_258267,20:14:00,20:14:00,1475003,18, +24986869_258267,20:18:00,20:18:00,1475004,19, +24986869_258267,20:21:00,20:21:00,1475005,20, +24986869_258267,20:26:00,20:27:00,1475006,21, +24986869_258267,20:30:00,20:30:00,1475007,22, +24986869_258267,20:32:00,20:33:00,1474950,23, +24986869_258267,20:35:00,20:36:00,1474793,24, +24986869_258267,20:42:00,20:42:00,1474651,25, +24986870_258268,18:35:00,18:35:00,1475133,0, +24986870_258268,18:37:00,18:38:00,1475134,1, +24986870_258268,18:39:00,18:40:00,1475187,2, +24986870_258268,18:45:00,18:45:00,1475135,3, +24986870_258268,18:53:00,18:54:00,1474988,4, +24986870_258268,18:58:00,18:59:00,1475140,5, +24986870_258268,19:03:00,19:03:00,1475137,6, +24986870_258268,19:11:00,19:12:00,1474945,7, +24986870_258268,19:17:00,19:18:00,1475141,8, +24986870_258268,19:22:00,19:23:00,1475142,9, +24986870_258268,19:27:00,19:27:00,1475143,10, +24986870_258268,19:32:00,19:32:00,1474946,11, +24986870_258268,19:38:00,19:39:00,1474845,12, +24986870_258268,19:47:00,19:49:00,1474843,13, +24986870_258268,19:57:00,19:58:00,1475000,14, +24986870_258268,20:00:00,20:00:00,1475001,15, +24986870_258268,20:05:00,20:06:00,1475002,16, +24986870_258268,20:11:00,20:12:00,1474949,17, +24986870_258268,20:15:00,20:15:00,1475003,18, +24986870_258268,20:19:00,20:19:00,1475004,19, +24986870_258268,20:22:00,20:22:00,1475005,20, +24986870_258268,20:27:00,20:28:00,1475006,21, +24986870_258268,20:30:00,20:31:00,1475007,22, +24986870_258268,20:33:00,20:34:00,1474950,23, +24986870_258268,20:37:00,20:37:00,1474793,24, +24986870_258268,20:44:00,20:44:00,1474738,25, +24986872_258270,19:02:00,19:02:00,1474979,0, +24986872_258270,19:14:00,19:14:00,1475138,1, +24986872_258270,19:18:00,19:19:00,1475139,2, +24986872_258270,19:31:00,19:43:00,1475136,3, +24986872_258270,19:47:00,19:47:00,1475140,4, +24986872_258270,19:52:00,19:52:00,1475137,5, +24986872_258270,19:59:00,20:00:00,1474945,6, +24986872_258270,20:06:00,20:06:00,1475141,7, +24986872_258270,20:10:00,20:11:00,1475142,8, +24986872_258270,20:14:00,20:15:00,1475143,9, +24986872_258270,20:20:00,20:21:00,1474946,10, +24986872_258270,20:26:00,20:27:00,1474845,11, +24986872_258270,20:34:00,20:34:00,1474947,12, +24986873_258271,19:06:00,19:06:00,1474979,0, +24986873_258271,19:18:00,19:18:00,1475138,1, +24986873_258271,19:22:00,19:23:00,1475139,2, +24986873_258271,19:35:00,19:43:00,1475136,3, +24986873_258271,19:47:00,19:47:00,1475140,4, +24986873_258271,19:52:00,19:52:00,1475137,5, +24986873_258271,19:59:00,20:00:00,1474945,6, +24986873_258271,20:06:00,20:06:00,1475141,7, +24986873_258271,20:10:00,20:11:00,1475142,8, +24986873_258271,20:14:00,20:15:00,1475143,9, +24986873_258271,20:19:00,20:20:00,1474946,10, +24986873_258271,20:25:00,20:26:00,1474845,11, +24986873_258271,20:33:00,20:33:00,1657886,12, +24986878_258276,22:22:00,22:22:00,1475136,0, +24986878_258276,22:27:00,22:27:00,1475140,1, +24986878_258276,22:32:00,22:33:00,1475137,2, +24986878_258276,22:41:00,22:42:00,1474945,3, +24986878_258276,22:48:00,22:48:00,1475141,4, +24986878_258276,22:53:00,22:53:00,1475142,5, +24986878_258276,22:58:00,22:58:00,1475143,6, +24986878_258276,23:03:00,23:03:00,1474946,7, +24986878_258276,23:09:00,23:10:00,1474845,8, +24986878_258276,23:17:00,23:17:00,1609726,9, +24986879_258277,22:22:00,22:22:00,1475136,0, +24986879_258277,22:27:00,22:27:00,1475140,1, +24986879_258277,22:32:00,22:33:00,1475137,2, +24986879_258277,22:41:00,22:42:00,1474945,3, +24986879_258277,22:48:00,22:48:00,1475141,4, +24986879_258277,22:53:00,22:53:00,1475142,5, +24986879_258277,22:58:00,22:58:00,1475143,6, +24986879_258277,23:03:00,23:03:00,1474946,7, +24986879_258277,23:09:00,23:10:00,1474845,8, +24986879_258277,23:17:00,23:17:00,1657886,9, +24986887_258285,03:55:00,03:55:00,1657886,0, +24986887_258285,04:02:00,04:02:00,1474838,1, +24986887_258285,04:08:00,04:09:00,1474839,2, +24986887_258285,04:14:00,04:14:00,1475128,3, +24986887_258285,04:18:00,04:19:00,1475129,4, +24986887_258285,04:24:00,04:24:00,1475130,5, +24986887_258285,04:30:00,04:31:00,1475112,6, +24986887_258285,04:39:00,04:40:00,1475131,7, +24986887_258285,04:44:00,04:45:00,1475132,8, +24986887_258285,04:49:00,04:50:00,1475113,9, +24986887_258285,04:58:00,04:59:00,1474984,10, +24986887_258285,05:01:00,05:02:00,1475189,11, +24986887_258285,05:06:00,05:07:00,1474985,12, +24986887_258285,05:09:00,05:10:00,1474986,13, +24986887_258285,05:14:00,05:15:00,1475133,14, +24986887_258285,05:19:00,05:19:00,1474617,15, +24986888_258286,03:55:00,03:55:00,1657886,0, +24986888_258286,04:02:00,04:02:00,1474838,1, +24986888_258286,04:08:00,04:09:00,1474839,2, +24986888_258286,04:14:00,04:14:00,1475128,3, +24986888_258286,04:18:00,04:19:00,1475129,4, +24986888_258286,04:24:00,04:24:00,1475130,5, +24986888_258286,04:30:00,04:31:00,1475112,6, +24986888_258286,04:39:00,04:40:00,1475131,7, +24986888_258286,04:44:00,04:45:00,1475132,8, +24986888_258286,04:49:00,04:50:00,1475113,9, +24986888_258286,04:58:00,04:59:00,1474984,10, +24986888_258286,05:01:00,05:02:00,1475189,11, +24986888_258286,05:06:00,05:07:00,1474985,12, +24986888_258286,05:09:00,05:10:00,1474986,13, +24986888_258286,05:13:00,05:15:00,1475133,14, +24986888_258286,05:19:00,05:19:00,1474617,15, +24986889_258287,05:35:00,05:35:00,1475112,0, +24986889_258287,05:42:00,05:43:00,1475131,1, +24986889_258287,05:47:00,05:48:00,1475132,2, +24986889_258287,05:52:00,05:53:00,1475113,3, +24986889_258287,06:01:00,06:01:00,1474984,4, +24986889_258287,06:06:00,06:07:00,1474985,5, +24986889_258287,06:09:00,06:10:00,1474986,6, +24986889_258287,06:12:00,06:12:00,1474987,7, +24986893_258291,04:30:00,04:30:00,1474651,0, +24986893_258291,04:35:00,04:35:00,1474963,1, +24986893_258291,04:37:00,04:38:00,1474964,2, +24986893_258291,04:40:00,04:41:00,1474992,3, +24986893_258291,04:44:00,04:45:00,1474993,4, +24986893_258291,04:49:00,04:50:00,1474994,5, +24986893_258291,04:52:00,04:53:00,1474995,6, +24986893_258291,04:57:00,04:57:00,1474996,7, +24986893_258291,05:00:00,05:01:00,1474965,8, +24986893_258291,05:06:00,05:07:00,1474997,9, +24986893_258291,05:12:00,05:13:00,1474998,10, +24986893_258291,05:15:00,05:16:00,1474999,11, +24986893_258291,05:23:00,05:35:00,1657886,12, +24986893_258291,05:41:00,05:42:00,1474838,13, +24986893_258291,05:48:00,05:50:00,1474839,14, +24986893_258291,05:54:00,05:54:00,1475128,15, +24986893_258291,05:58:00,05:58:00,1475129,16, +24986893_258291,06:02:00,06:03:00,1475130,17, +24986893_258291,06:08:00,06:11:00,1475112,18, +24986893_258291,06:18:00,06:19:00,1475131,19, +24986893_258291,06:23:00,06:24:00,1475132,20, +24986893_258291,06:30:00,06:45:00,1475113,21, +24986893_258291,06:54:00,06:54:00,1475139,22, +24986893_258291,06:58:00,06:59:00,1475138,23, +24986893_258291,07:12:00,07:12:00,1474979,24, +24986894_258292,04:30:00,04:30:00,1474651,0, +24986894_258292,04:35:00,04:35:00,1474963,1, +24986894_258292,04:37:00,04:38:00,1474964,2, +24986894_258292,04:41:00,04:41:00,1474992,3, +24986894_258292,04:44:00,04:45:00,1474993,4, +24986894_258292,04:49:00,04:50:00,1474994,5, +24986894_258292,04:52:00,04:53:00,1474995,6, +24986894_258292,04:57:00,04:57:00,1474996,7, +24986894_258292,05:00:00,05:01:00,1474965,8, +24986894_258292,05:06:00,05:07:00,1474997,9, +24986894_258292,05:12:00,05:13:00,1474998,10, +24986894_258292,05:15:00,05:16:00,1474999,11, +24986894_258292,05:23:00,05:35:00,1657886,12, +24986894_258292,05:41:00,05:42:00,1474838,13, +24986894_258292,05:48:00,05:50:00,1474839,14, +24986894_258292,05:54:00,05:54:00,1475128,15, +24986894_258292,05:58:00,05:58:00,1475129,16, +24986894_258292,06:02:00,06:03:00,1475130,17, +24986894_258292,06:08:00,06:11:00,1475112,18, +24986894_258292,06:18:00,06:19:00,1475137,19, +24986894_258292,06:23:00,06:24:00,1475132,20, +24986894_258292,06:30:00,06:45:00,1475113,21, +24986894_258292,06:54:00,06:54:00,1475139,22, +24986894_258292,06:58:00,06:59:00,1475138,23, +24986894_258292,07:12:00,07:12:00,1474979,24, +24986895_258293,04:30:00,04:30:00,1474651,0, +24986895_258293,04:35:00,04:35:00,1474963,1, +24986895_258293,04:37:00,04:38:00,1474964,2, +24986895_258293,04:41:00,04:41:00,1474992,3, +24986895_258293,04:44:00,04:45:00,1474993,4, +24986895_258293,04:49:00,04:50:00,1474994,5, +24986895_258293,04:52:00,04:53:00,1474995,6, +24986895_258293,04:57:00,04:57:00,1474996,7, +24986895_258293,05:00:00,05:01:00,1474965,8, +24986895_258293,05:06:00,05:07:00,1474997,9, +24986895_258293,05:12:00,05:13:00,1474998,10, +24986895_258293,05:15:00,05:16:00,1474999,11, +24986895_258293,05:23:00,05:35:00,1657886,12, +24986895_258293,05:41:00,05:42:00,1474838,13, +24986895_258293,05:48:00,05:50:00,1474839,14, +24986895_258293,05:54:00,05:54:00,1475128,15, +24986895_258293,05:58:00,05:58:00,1475129,16, +24986895_258293,06:02:00,06:03:00,1475130,17, +24986895_258293,06:08:00,06:11:00,1475112,18, +24986895_258293,06:18:00,06:19:00,1475131,19, +24986895_258293,06:23:00,06:24:00,1475132,20, +24986895_258293,06:30:00,06:45:00,1475113,21, +24986895_258293,06:54:00,06:54:00,1475139,22, +24986895_258293,06:58:00,06:59:00,1475138,23, +24986895_258293,07:12:00,07:12:00,1474979,24, +24986896_258294,04:30:00,04:30:00,1474640,0, +24986896_258294,04:35:00,04:35:00,1474963,1, +24986896_258294,04:37:00,04:38:00,1474964,2, +24986896_258294,04:41:00,04:41:00,1474992,3, +24986896_258294,04:44:00,04:45:00,1474993,4, +24986896_258294,04:49:00,04:50:00,1474994,5, +24986896_258294,04:52:00,04:53:00,1474995,6, +24986896_258294,04:57:00,04:57:00,1474996,7, +24986896_258294,05:00:00,05:01:00,1474965,8, +24986896_258294,05:06:00,05:07:00,1474997,9, +24986896_258294,05:12:00,05:12:00,1474998,10, +24986896_258294,05:14:00,05:15:00,1474999,11, +24986896_258294,05:23:00,05:40:00,1474843,12, +24986896_258294,05:46:00,05:46:00,1474838,13, +24986896_258294,05:52:00,05:53:00,1474839,14, +24986896_258294,05:57:00,05:57:00,1475128,15, +24986896_258294,06:01:00,06:01:00,1475129,16, +24986896_258294,06:06:00,06:06:00,1475130,17, +24986896_258294,06:11:00,06:13:00,1475112,18, +24986896_258294,06:21:00,06:21:00,1609789,19, +24986896_258294,06:25:00,06:26:00,1609788,20, +24986896_258294,06:31:00,06:45:00,1474988,21, +24986896_258294,06:54:00,06:54:00,1475139,22, +24986896_258294,06:58:00,06:59:00,1475138,23, +24986896_258294,07:12:00,07:12:00,1474979,24, +24986898_258296,07:27:00,07:27:00,1536279,0, +24986898_258296,07:32:00,07:33:00,1474963,1, +24986898_258296,07:35:00,07:36:00,1474964,2, +24986898_258296,07:40:00,07:41:00,1474993,3, +24986898_258296,07:48:00,07:49:00,1474995,4, +24986898_258296,07:55:00,07:56:00,1474965,5, +24986898_258296,08:01:00,08:02:00,1474997,6, +24986898_258296,08:16:00,08:16:00,1474947,7, +24986899_258297,07:27:00,07:27:00,1474738,0, +24986899_258297,07:32:00,07:33:00,1474963,1, +24986899_258297,07:35:00,07:36:00,1474964,2, +24986899_258297,07:40:00,07:41:00,1474993,3, +24986899_258297,07:48:00,07:49:00,1474995,4, +24986899_258297,07:55:00,07:56:00,1474965,5, +24986899_258297,08:01:00,08:02:00,1474997,6, +24986899_258297,08:16:00,08:16:00,1474947,7, +24986902_258300,07:45:00,07:45:00,1536277,0, +24986902_258300,07:50:00,07:51:00,1474963,1, +24986902_258300,07:53:00,07:54:00,1474964,2, +24986902_258300,07:56:00,07:56:00,1474992,3, +24986902_258300,07:59:00,08:00:00,1474993,4, +24986902_258300,08:05:00,08:06:00,1474994,5, +24986902_258300,08:08:00,08:09:00,1474995,6, +24986902_258300,08:13:00,08:13:00,1474996,7, +24986902_258300,08:17:00,08:18:00,1474965,8, +24986902_258300,08:23:00,08:24:00,1474997,9, +24986902_258300,08:29:00,08:30:00,1474998,10, +24986902_258300,08:32:00,08:33:00,1474999,11, +24986902_258300,08:40:00,08:42:00,1657886,12, +24986902_258300,08:48:00,08:49:00,1474838,13, +24986902_258300,08:54:00,08:55:00,1474839,14, +24986902_258300,09:00:00,09:00:00,1475128,15, +24986902_258300,09:04:00,09:04:00,1475129,16, +24986902_258300,09:09:00,09:09:00,1475130,17, +24986902_258300,09:14:00,09:15:00,1475112,18, +24986902_258300,09:23:00,09:24:00,1475131,19, +24986902_258300,09:28:00,09:28:00,1475132,20, +24986902_258300,09:33:00,09:41:00,1475190,21, +24986902_258300,09:50:00,09:51:00,1475139,22, +24986902_258300,09:55:00,09:55:00,1475138,23, +24986902_258300,10:08:00,10:08:00,1474979,24, +24986903_258301,07:45:00,07:45:00,1536277,0, +24986903_258301,07:50:00,07:51:00,1474963,1, +24986903_258301,07:53:00,07:54:00,1474964,2, +24986903_258301,07:56:00,07:56:00,1474992,3, +24986903_258301,07:59:00,08:00:00,1474993,4, +24986903_258301,08:05:00,08:06:00,1474994,5, +24986903_258301,08:08:00,08:09:00,1474995,6, +24986903_258301,08:13:00,08:13:00,1474996,7, +24986903_258301,08:17:00,08:18:00,1474965,8, +24986903_258301,08:23:00,08:24:00,1474997,9, +24986903_258301,08:29:00,08:30:00,1474998,10, +24986903_258301,08:32:00,08:33:00,1474999,11, +24986903_258301,08:40:00,08:42:00,1657886,12, +24986903_258301,08:48:00,08:49:00,1474838,13, +24986903_258301,08:54:00,08:55:00,1474839,14, +24986903_258301,09:00:00,09:00:00,1475128,15, +24986903_258301,09:04:00,09:04:00,1475129,16, +24986903_258301,09:09:00,09:09:00,1475130,17, +24986903_258301,09:14:00,09:15:00,1475112,18, +24986903_258301,09:23:00,09:24:00,1475137,19, +24986903_258301,09:28:00,09:28:00,1475132,20, +24986903_258301,09:33:00,09:41:00,1475190,21, +24986903_258301,09:50:00,09:51:00,1475139,22, +24986903_258301,09:55:00,09:55:00,1475138,23, +24986903_258301,10:08:00,10:08:00,1474979,24, +24986904_258302,07:45:00,07:45:00,1474738,0, +24986904_258302,07:50:00,07:51:00,1474963,1, +24986904_258302,07:53:00,07:54:00,1474964,2, +24986904_258302,07:56:00,07:57:00,1474992,3, +24986904_258302,08:00:00,08:01:00,1474993,4, +24986904_258302,08:05:00,08:06:00,1474994,5, +24986904_258302,08:08:00,08:09:00,1474995,6, +24986904_258302,08:13:00,08:14:00,1474996,7, +24986904_258302,08:17:00,08:18:00,1474965,8, +24986904_258302,08:23:00,08:24:00,1474997,9, +24986904_258302,08:29:00,08:30:00,1474998,10, +24986904_258302,08:32:00,08:33:00,1474999,11, +24986904_258302,08:42:00,08:43:00,1474843,12, +24986904_258302,08:49:00,08:50:00,1474838,13, +24986904_258302,08:55:00,08:56:00,1474839,14, +24986904_258302,09:00:00,09:01:00,1475128,15, +24986904_258302,09:04:00,09:05:00,1475129,16, +24986904_258302,09:10:00,09:10:00,1475130,17, +24986904_258302,09:15:00,09:16:00,1475112,18, +24986904_258302,09:24:00,09:24:00,1609789,19, +24986904_258302,09:28:00,09:29:00,1609788,20, +24986904_258302,09:33:00,09:41:00,1474988,21, +24986904_258302,09:50:00,09:51:00,1475139,22, +24986904_258302,09:55:00,09:56:00,1475138,23, +24986904_258302,10:08:00,10:08:00,1474979,24, +24986906_258304,09:45:00,09:45:00,1474640,0, +24986906_258304,09:50:00,09:51:00,1474963,1, +24986906_258304,09:53:00,09:54:00,1474964,2, +24986906_258304,09:56:00,09:56:00,1474992,3, +24986906_258304,09:59:00,10:00:00,1474993,4, +24986906_258304,10:04:00,10:05:00,1474994,5, +24986906_258304,10:08:00,10:09:00,1474995,6, +24986906_258304,10:12:00,10:13:00,1474996,7, +24986906_258304,10:16:00,10:17:00,1474965,8, +24986906_258304,10:22:00,10:22:00,1474997,9, +24986906_258304,10:28:00,10:28:00,1474998,10, +24986906_258304,10:30:00,10:31:00,1474999,11, +24986906_258304,10:38:00,10:39:00,1657886,12, +24986906_258304,10:45:00,10:46:00,1474838,13, +24986906_258304,10:51:00,10:52:00,1474839,14, +24986906_258304,10:56:00,10:57:00,1475128,15, +24986906_258304,11:00:00,11:01:00,1475129,16, +24986906_258304,11:05:00,11:06:00,1475130,17, +24986906_258304,11:11:00,11:11:00,1475112,18, +24986906_258304,11:19:00,11:20:00,1475131,19, +24986906_258304,11:24:00,11:24:00,1475132,20, +24986906_258304,11:30:00,11:40:00,1475190,21, +24986906_258304,11:49:00,11:50:00,1475139,22, +24986906_258304,11:54:00,11:55:00,1475138,23, +24986906_258304,12:08:00,12:08:00,1474980,24, +24986907_258305,09:45:00,09:45:00,1474640,0, +24986907_258305,09:50:00,09:51:00,1474963,1, +24986907_258305,09:53:00,09:54:00,1474964,2, +24986907_258305,09:56:00,09:56:00,1474992,3, +24986907_258305,09:59:00,10:00:00,1474993,4, +24986907_258305,10:04:00,10:05:00,1474994,5, +24986907_258305,10:08:00,10:09:00,1474995,6, +24986907_258305,10:12:00,10:13:00,1474996,7, +24986907_258305,10:16:00,10:17:00,1474965,8, +24986907_258305,10:22:00,10:22:00,1474997,9, +24986907_258305,10:28:00,10:28:00,1474998,10, +24986907_258305,10:30:00,10:31:00,1474999,11, +24986907_258305,10:38:00,10:39:00,1657886,12, +24986907_258305,10:45:00,10:46:00,1474838,13, +24986907_258305,10:51:00,10:52:00,1474839,14, +24986907_258305,10:56:00,10:57:00,1475128,15, +24986907_258305,11:00:00,11:01:00,1475129,16, +24986907_258305,11:05:00,11:06:00,1475130,17, +24986907_258305,11:11:00,11:11:00,1475112,18, +24986907_258305,11:19:00,11:20:00,1475137,19, +24986907_258305,11:24:00,11:24:00,1475132,20, +24986907_258305,11:30:00,11:40:00,1475190,21, +24986907_258305,11:49:00,11:50:00,1475139,22, +24986907_258305,11:54:00,11:55:00,1475138,23, +24986907_258305,12:08:00,12:08:00,1474980,24, +24986908_258306,09:45:00,09:45:00,1474738,0, +24986908_258306,09:50:00,09:51:00,1474963,1, +24986908_258306,09:53:00,09:53:00,1474964,2, +24986908_258306,09:56:00,09:56:00,1474992,3, +24986908_258306,09:59:00,10:00:00,1474993,4, +24986908_258306,10:04:00,10:05:00,1474994,5, +24986908_258306,10:08:00,10:09:00,1474995,6, +24986908_258306,10:12:00,10:13:00,1474996,7, +24986908_258306,10:16:00,10:17:00,1474965,8, +24986908_258306,10:22:00,10:23:00,1474997,9, +24986908_258306,10:29:00,10:29:00,1474998,10, +24986908_258306,10:31:00,10:32:00,1474999,11, +24986908_258306,10:41:00,10:43:00,1474843,12, +24986908_258306,10:49:00,10:49:00,1474838,13, +24986908_258306,10:55:00,10:55:00,1474839,14, +24986908_258306,10:59:00,11:00:00,1475128,15, +24986908_258306,11:03:00,11:04:00,1475129,16, +24986908_258306,11:08:00,11:09:00,1475130,17, +24986908_258306,11:14:00,11:14:00,1475112,18, +24986908_258306,11:21:00,11:22:00,1609789,19, +24986908_258306,11:26:00,11:26:00,1609788,20, +24986908_258306,11:32:00,11:40:00,1474988,21, +24986908_258306,11:49:00,11:50:00,1475139,22, +24986908_258306,11:54:00,11:55:00,1475138,23, +24986908_258306,12:07:00,12:07:00,1474980,24, +24986910_258308,11:45:00,11:45:00,1474640,0, +24986910_258308,11:50:00,11:51:00,1474963,1, +24986910_258308,11:53:00,11:54:00,1474964,2, +24986910_258308,11:56:00,11:56:00,1474992,3, +24986910_258308,11:59:00,12:00:00,1474993,4, +24986910_258308,12:05:00,12:06:00,1474994,5, +24986910_258308,12:08:00,12:09:00,1474995,6, +24986910_258308,12:12:00,12:13:00,1474996,7, +24986910_258308,12:16:00,12:17:00,1474965,8, +24986910_258308,12:22:00,12:23:00,1474997,9, +24986910_258308,12:28:00,12:28:00,1474998,10, +24986910_258308,12:31:00,12:31:00,1474999,11, +24986910_258308,12:38:00,12:39:00,1657886,12, +24986910_258308,12:45:00,12:46:00,1474838,13, +24986910_258308,12:52:00,12:53:00,1474839,14, +24986910_258308,12:57:00,12:58:00,1475128,15, +24986910_258308,13:01:00,13:02:00,1475129,16, +24986910_258308,13:06:00,13:07:00,1475130,17, +24986910_258308,13:12:00,13:13:00,1475112,18, +24986910_258308,13:20:00,13:21:00,1475131,19, +24986910_258308,13:25:00,13:25:00,1475132,20, +24986910_258308,13:31:00,13:41:00,1475113,21, +24986910_258308,13:50:00,13:51:00,1475139,22, +24986910_258308,13:55:00,13:55:00,1475138,23, +24986910_258308,14:08:00,14:08:00,1474979,24, +24986912_258310,11:45:00,11:45:00,1474640,0, +24986912_258310,11:50:00,11:51:00,1474963,1, +24986912_258310,11:53:00,11:54:00,1474964,2, +24986912_258310,11:56:00,11:56:00,1474992,3, +24986912_258310,11:59:00,12:00:00,1474993,4, +24986912_258310,12:05:00,12:06:00,1474994,5, +24986912_258310,12:08:00,12:09:00,1474995,6, +24986912_258310,12:12:00,12:13:00,1474996,7, +24986912_258310,12:16:00,12:17:00,1474965,8, +24986912_258310,12:22:00,12:23:00,1474997,9, +24986912_258310,12:28:00,12:28:00,1474998,10, +24986912_258310,12:31:00,12:31:00,1474999,11, +24986912_258310,12:38:00,12:39:00,1657886,12, +24986912_258310,12:45:00,12:46:00,1474838,13, +24986912_258310,12:52:00,12:53:00,1474839,14, +24986912_258310,12:57:00,12:58:00,1475128,15, +24986912_258310,13:01:00,13:02:00,1475129,16, +24986912_258310,13:06:00,13:07:00,1475130,17, +24986912_258310,13:12:00,13:13:00,1475112,18, +24986912_258310,13:20:00,13:21:00,1475137,19, +24986912_258310,13:25:00,13:25:00,1475132,20, +24986912_258310,13:31:00,13:41:00,1475113,21, +24986912_258310,13:50:00,13:51:00,1475139,22, +24986912_258310,13:55:00,13:55:00,1475138,23, +24986912_258310,14:08:00,14:08:00,1474979,24, +24986913_258311,11:43:00,11:43:00,1474640,0, +24986913_258311,11:48:00,11:48:00,1474963,1, +24986913_258311,11:51:00,11:52:00,1474964,2, +24986913_258311,11:54:00,11:54:00,1474992,3, +24986913_258311,11:57:00,11:58:00,1474993,4, +24986913_258311,12:03:00,12:03:00,1474994,5, +24986913_258311,12:06:00,12:07:00,1474995,6, +24986913_258311,12:11:00,12:11:00,1474996,7, +24986913_258311,12:14:00,12:15:00,1474965,8, +24986913_258311,12:21:00,12:21:00,1474997,9, +24986913_258311,12:27:00,12:28:00,1474998,10, +24986913_258311,12:30:00,12:30:00,1474999,11, +24986913_258311,12:39:00,12:41:00,1474843,12, +24986913_258311,12:47:00,12:48:00,1474838,13, +24986913_258311,12:53:00,12:54:00,1474839,14, +24986913_258311,12:58:00,12:59:00,1475128,15, +24986913_258311,13:02:00,13:03:00,1475129,16, +24986913_258311,13:08:00,13:08:00,1475130,17, +24986913_258311,13:13:00,13:14:00,1475112,18, +24986913_258311,13:22:00,13:22:00,1609789,19, +24986913_258311,13:27:00,13:27:00,1609788,20, +24986913_258311,13:32:00,13:41:00,1474988,21, +24986913_258311,13:50:00,13:51:00,1475139,22, +24986913_258311,13:55:00,13:55:00,1475138,23, +24986913_258311,14:08:00,14:08:00,1474979,24, +24986927_258325,12:29:00,12:29:00,1474640,0, +24986927_258325,12:34:00,12:35:00,1474963,1, +24986927_258325,12:37:00,12:38:00,1474964,2, +24986927_258325,12:40:00,12:40:00,1474992,3, +24986927_258325,12:43:00,12:44:00,1474993,4, +24986927_258325,12:49:00,12:49:00,1474994,5, +24986927_258325,12:52:00,12:53:00,1474995,6, +24986927_258325,12:56:00,12:57:00,1474996,7, +24986927_258325,13:00:00,13:01:00,1474965,8, +24986927_258325,13:06:00,13:06:00,1474997,9, +24986927_258325,13:12:00,13:13:00,1474998,10, +24986927_258325,13:15:00,13:15:00,1474999,11, +24986927_258325,13:22:00,13:40:00,1657886,12, +24986927_258325,13:46:00,13:46:00,1474838,13, +24986927_258325,13:52:00,13:54:00,1474839,14, +24986927_258325,13:58:00,13:58:00,1475128,15, +24986927_258325,14:02:00,14:02:00,1475129,16, +24986927_258325,14:06:00,14:07:00,1475130,17, +24986927_258325,14:13:00,14:14:00,1475112,18, +24986927_258325,14:22:00,14:23:00,1475131,19, +24986927_258325,14:27:00,14:27:00,1475132,20, +24986927_258325,14:32:00,14:33:00,1475113,21, +24986927_258325,14:41:00,14:41:00,1474984,22, +24986927_258325,14:46:00,14:47:00,1474985,23, +24986927_258325,14:48:00,14:49:00,1474986,24, +24986927_258325,14:52:00,14:52:00,1474987,25, +24986929_258327,12:29:00,12:29:00,1474738,0, +24986929_258327,12:34:00,12:34:00,1474963,1, +24986929_258327,12:37:00,12:38:00,1474964,2, +24986929_258327,12:40:00,12:40:00,1474992,3, +24986929_258327,12:43:00,12:44:00,1474993,4, +24986929_258327,12:49:00,12:49:00,1474994,5, +24986929_258327,12:52:00,12:53:00,1474995,6, +24986929_258327,12:56:00,12:57:00,1474996,7, +24986929_258327,13:00:00,13:01:00,1474965,8, +24986929_258327,13:05:00,13:06:00,1474997,9, +24986929_258327,13:11:00,13:11:00,1474998,10, +24986929_258327,13:14:00,13:14:00,1474999,11, +24986929_258327,13:22:00,13:40:00,1474843,12, +24986929_258327,13:46:00,13:46:00,1474838,13, +24986929_258327,13:52:00,13:52:00,1474839,14, +24986929_258327,13:56:00,13:57:00,1475128,15, +24986929_258327,14:00:00,14:01:00,1475129,16, +24986929_258327,14:05:00,14:06:00,1475130,17, +24986929_258327,14:11:00,14:13:00,1475112,18, +24986929_258327,14:20:00,14:21:00,1475131,19, +24986929_258327,14:25:00,14:26:00,1475132,20, +24986929_258327,14:30:00,14:31:00,1474988,21, +24986929_258327,14:39:00,14:39:00,1474984,22, +24986929_258327,14:44:00,14:45:00,1474985,23, +24986929_258327,14:47:00,14:48:00,1474986,24, +24986929_258327,14:51:00,14:51:00,1474987,25, +24986930_258328,13:45:00,13:45:00,1474640,0, +24986930_258328,13:50:00,13:51:00,1474963,1, +24986930_258328,13:53:00,13:54:00,1474964,2, +24986930_258328,13:56:00,13:57:00,1474992,3, +24986930_258328,14:00:00,14:01:00,1474993,4, +24986930_258328,14:05:00,14:06:00,1474994,5, +24986930_258328,14:09:00,14:10:00,1474995,6, +24986930_258328,14:13:00,14:14:00,1474996,7, +24986930_258328,14:17:00,14:18:00,1474965,8, +24986930_258328,14:23:00,14:24:00,1474997,9, +24986930_258328,14:30:00,14:30:00,1474998,10, +24986930_258328,14:32:00,14:33:00,1474999,11, +24986930_258328,14:40:00,14:42:00,1657886,12, +24986930_258328,14:48:00,14:49:00,1474838,13, +24986930_258328,14:54:00,14:55:00,1474839,14, +24986930_258328,14:59:00,15:00:00,1475128,15, +24986930_258328,15:03:00,15:04:00,1475129,16, +24986930_258328,15:08:00,15:09:00,1475130,17, +24986930_258328,15:14:00,15:15:00,1475112,18, +24986930_258328,15:22:00,15:23:00,1475131,19, +24986930_258328,15:27:00,15:27:00,1475132,20, +24986930_258328,15:33:00,15:41:00,1475113,21, +24986930_258328,15:50:00,15:51:00,1475139,22, +24986930_258328,15:55:00,15:55:00,1475138,23, +24986930_258328,16:08:00,16:08:00,1474979,24, +24986931_258329,13:45:00,13:45:00,1474738,0, +24986931_258329,13:50:00,13:51:00,1474963,1, +24986931_258329,13:53:00,13:54:00,1474964,2, +24986931_258329,13:56:00,13:57:00,1474992,3, +24986931_258329,14:00:00,14:01:00,1474993,4, +24986931_258329,14:05:00,14:06:00,1474994,5, +24986931_258329,14:09:00,14:10:00,1474995,6, +24986931_258329,14:13:00,14:14:00,1474996,7, +24986931_258329,14:17:00,14:18:00,1474965,8, +24986931_258329,14:23:00,14:24:00,1474997,9, +24986931_258329,14:30:00,14:30:00,1474998,10, +24986931_258329,14:32:00,14:33:00,1474999,11, +24986931_258329,14:41:00,14:42:00,1474843,12, +24986931_258329,14:48:00,14:49:00,1474838,13, +24986931_258329,14:54:00,14:55:00,1474839,14, +24986931_258329,14:59:00,15:00:00,1475128,15, +24986931_258329,15:03:00,15:04:00,1475129,16, +24986931_258329,15:09:00,15:09:00,1475130,17, +24986931_258329,15:14:00,15:15:00,1475112,18, +24986931_258329,15:23:00,15:23:00,1609789,19, +24986931_258329,15:28:00,15:28:00,1609788,20, +24986931_258329,15:33:00,15:41:00,1474988,21, +24986931_258329,15:50:00,15:51:00,1475139,22, +24986931_258329,15:55:00,15:55:00,1475138,23, +24986931_258329,16:08:00,16:08:00,1474979,24, +24986933_258331,14:45:00,14:45:00,1536279,0, +24986933_258331,14:50:00,14:51:00,1474963,1, +24986933_258331,14:53:00,14:54:00,1474964,2, +24986933_258331,14:56:00,14:57:00,1474992,3, +24986933_258331,15:00:00,15:01:00,1474993,4, +24986933_258331,15:05:00,15:06:00,1474994,5, +24986933_258331,15:09:00,15:10:00,1474995,6, +24986933_258331,15:13:00,15:14:00,1474996,7, +24986933_258331,15:17:00,15:18:00,1474965,8, +24986933_258331,15:23:00,15:23:00,1474997,9, +24986933_258331,15:29:00,15:29:00,1474998,10, +24986933_258331,15:31:00,15:32:00,1474999,11, +24986933_258331,15:39:00,15:41:00,1657886,12, +24986933_258331,15:47:00,15:48:00,1474838,13, +24986933_258331,15:53:00,15:54:00,1474839,14, +24986933_258331,15:58:00,15:58:00,1475128,15, +24986933_258331,16:02:00,16:02:00,1475129,16, +24986933_258331,16:07:00,16:07:00,1475130,17, +24986933_258331,16:13:00,16:14:00,1475112,18, +24986933_258331,16:21:00,16:22:00,1475131,19, +24986933_258331,16:26:00,16:26:00,1475132,20, +24986933_258331,16:32:00,16:33:00,1475113,21, +24986933_258331,16:41:00,16:41:00,1474984,22, +24986933_258331,16:46:00,16:47:00,1474985,23, +24986933_258331,16:49:00,16:50:00,1474986,24, +24986933_258331,16:53:00,16:53:00,1474987,25, +24986935_258333,14:45:00,14:45:00,1474738,0, +24986935_258333,14:50:00,14:51:00,1474963,1, +24986935_258333,14:53:00,14:54:00,1474964,2, +24986935_258333,14:56:00,14:57:00,1474992,3, +24986935_258333,15:00:00,15:01:00,1474993,4, +24986935_258333,15:05:00,15:06:00,1474994,5, +24986935_258333,15:09:00,15:10:00,1474995,6, +24986935_258333,15:13:00,15:14:00,1474996,7, +24986935_258333,15:17:00,15:18:00,1474965,8, +24986935_258333,15:23:00,15:23:00,1474997,9, +24986935_258333,15:29:00,15:29:00,1474998,10, +24986935_258333,15:31:00,15:32:00,1474999,11, +24986935_258333,15:39:00,15:41:00,1474843,12, +24986935_258333,15:48:00,15:48:00,1474838,13, +24986935_258333,15:54:00,15:55:00,1474839,14, +24986935_258333,15:59:00,16:00:00,1475128,15, +24986935_258333,16:03:00,16:04:00,1475129,16, +24986935_258333,16:09:00,16:09:00,1475130,17, +24986935_258333,16:15:00,16:16:00,1475112,18, +24986935_258333,16:23:00,16:23:00,1475131,19, +24986935_258333,16:28:00,16:28:00,1475132,20, +24986935_258333,16:33:00,16:34:00,1474988,21, +24986935_258333,16:42:00,16:43:00,1474984,22, +24986935_258333,16:48:00,16:49:00,1474985,23, +24986935_258333,16:51:00,16:52:00,1474986,24, +24986935_258333,16:54:00,16:54:00,1474987,25, +24986937_258335,15:46:00,15:46:00,1474640,0, +24986937_258335,15:51:00,15:52:00,1474963,1, +24986937_258335,15:54:00,15:55:00,1474964,2, +24986937_258335,15:57:00,15:57:00,1474992,3, +24986937_258335,16:00:00,16:01:00,1474993,4, +24986937_258335,16:06:00,16:07:00,1474994,5, +24986937_258335,16:09:00,16:10:00,1474995,6, +24986937_258335,16:14:00,16:14:00,1474996,7, +24986937_258335,16:18:00,16:19:00,1474965,8, +24986937_258335,16:24:00,16:25:00,1474997,9, +24986937_258335,16:30:00,16:31:00,1474998,10, +24986937_258335,16:33:00,16:34:00,1474999,11, +24986937_258335,16:41:00,16:42:00,1657886,12, +24986937_258335,16:49:00,16:49:00,1474838,13, +24986937_258335,16:56:00,16:57:00,1474839,14, +24986937_258335,17:01:00,17:01:00,1475128,15, +24986937_258335,17:05:00,17:05:00,1475129,16, +24986937_258335,17:10:00,17:10:00,1475130,17, +24986937_258335,17:15:00,17:16:00,1475112,18, +24986937_258335,17:23:00,17:24:00,1475131,19, +24986937_258335,17:28:00,17:28:00,1475132,20, +24986937_258335,17:33:00,17:41:00,1475113,21, +24986937_258335,17:50:00,17:51:00,1475139,22, +24986937_258335,17:55:00,17:55:00,1475138,23, +24986937_258335,18:08:00,18:08:00,1474979,24, +24986938_258336,15:45:00,15:45:00,1474640,0, +24986938_258336,15:50:00,15:51:00,1474963,1, +24986938_258336,15:53:00,15:54:00,1474964,2, +24986938_258336,15:56:00,15:57:00,1474992,3, +24986938_258336,16:00:00,16:01:00,1474993,4, +24986938_258336,16:05:00,16:06:00,1474994,5, +24986938_258336,16:09:00,16:10:00,1474995,6, +24986938_258336,16:13:00,16:14:00,1474996,7, +24986938_258336,16:17:00,16:18:00,1474965,8, +24986938_258336,16:23:00,16:24:00,1474997,9, +24986938_258336,16:30:00,16:30:00,1474998,10, +24986938_258336,16:32:00,16:33:00,1474999,11, +24986938_258336,16:41:00,16:42:00,1474843,12, +24986938_258336,16:48:00,16:49:00,1474838,13, +24986938_258336,16:54:00,16:55:00,1474839,14, +24986938_258336,16:59:00,17:00:00,1475128,15, +24986938_258336,17:03:00,17:04:00,1475129,16, +24986938_258336,17:09:00,17:09:00,1475130,17, +24986938_258336,17:14:00,17:15:00,1475112,18, +24986938_258336,17:23:00,17:23:00,1609789,19, +24986938_258336,17:28:00,17:28:00,1609788,20, +24986938_258336,17:33:00,17:41:00,1474988,21, +24986938_258336,17:50:00,17:51:00,1475139,22, +24986938_258336,17:55:00,17:55:00,1475138,23, +24986938_258336,18:08:00,18:08:00,1474979,24, +24986940_258338,16:33:00,16:33:00,1474861,0, +24986940_258338,16:38:00,16:39:00,1474963,1, +24986940_258338,16:41:00,16:42:00,1474964,2, +24986940_258338,16:44:00,16:45:00,1474992,3, +24986940_258338,16:48:00,16:49:00,1474993,4, +24986940_258338,16:55:00,16:55:00,1474994,5, +24986940_258338,16:59:00,17:00:00,1474995,6, +24986940_258338,17:04:00,17:04:00,1474996,7, +24986940_258338,17:08:00,17:09:00,1474965,8, +24986940_258338,17:15:00,17:16:00,1474997,9, +24986940_258338,17:22:00,17:23:00,1474998,10, +24986940_258338,17:25:00,17:26:00,1474999,11, +24986940_258338,17:34:00,17:34:00,1657886,12, +24986941_258339,16:36:00,16:36:00,1474738,0, +24986941_258339,16:41:00,16:41:00,1474963,1, +24986941_258339,16:43:00,16:44:00,1474964,2, +24986941_258339,16:47:00,16:47:00,1474992,3, +24986941_258339,16:50:00,16:51:00,1474993,4, +24986941_258339,16:56:00,16:57:00,1474994,5, +24986941_258339,17:00:00,17:01:00,1474995,6, +24986941_258339,17:05:00,17:05:00,1474996,7, +24986941_258339,17:08:00,17:09:00,1474965,8, +24986941_258339,17:15:00,17:16:00,1474997,9, +24986941_258339,17:22:00,17:23:00,1474998,10, +24986941_258339,17:25:00,17:26:00,1474999,11, +24986941_258339,17:35:00,17:35:00,1474843,12, +24986944_258342,16:33:00,16:33:00,1474861,0, +24986944_258342,16:38:00,16:39:00,1474963,1, +24986944_258342,16:41:00,16:42:00,1474964,2, +24986944_258342,16:44:00,16:45:00,1474992,3, +24986944_258342,16:48:00,16:49:00,1474993,4, +24986944_258342,16:55:00,16:55:00,1474994,5, +24986944_258342,16:59:00,17:00:00,1474995,6, +24986944_258342,17:04:00,17:04:00,1474996,7, +24986944_258342,17:08:00,17:09:00,1474965,8, +24986944_258342,17:15:00,17:16:00,1474997,9, +24986944_258342,17:22:00,17:23:00,1474998,10, +24986944_258342,17:25:00,17:26:00,1474999,11, +24986944_258342,17:34:00,17:37:00,1657886,12, +24986944_258342,17:44:00,17:44:00,1474838,13, +24986944_258342,17:51:00,17:51:00,1474839,14, +24986944_258342,18:10:00,18:10:00,1475112,15, +24986945_258343,16:36:00,16:36:00,1474738,0, +24986945_258343,16:41:00,16:41:00,1474963,1, +24986945_258343,16:43:00,16:44:00,1474964,2, +24986945_258343,16:47:00,16:47:00,1474992,3, +24986945_258343,16:50:00,16:51:00,1474993,4, +24986945_258343,16:56:00,16:57:00,1474994,5, +24986945_258343,17:00:00,17:01:00,1474995,6, +24986945_258343,17:05:00,17:05:00,1474996,7, +24986945_258343,17:08:00,17:09:00,1474965,8, +24986945_258343,17:15:00,17:16:00,1474997,9, +24986945_258343,17:22:00,17:23:00,1474998,10, +24986945_258343,17:25:00,17:26:00,1474999,11, +24986945_258343,17:35:00,17:37:00,1474843,12, +24986945_258343,17:43:00,17:44:00,1474838,13, +24986945_258343,17:50:00,17:50:00,1474839,14, +24986945_258343,18:07:00,18:07:00,1474945,15, +24986946_258344,16:36:00,16:36:00,1474738,0, +24986946_258344,16:41:00,16:41:00,1474963,1, +24986946_258344,16:43:00,16:44:00,1474964,2, +24986946_258344,16:47:00,16:47:00,1474992,3, +24986946_258344,16:50:00,16:51:00,1474993,4, +24986946_258344,16:56:00,16:57:00,1474994,5, +24986946_258344,17:00:00,17:01:00,1474995,6, +24986946_258344,17:05:00,17:05:00,1474996,7, +24986946_258344,17:08:00,17:09:00,1474965,8, +24986946_258344,17:15:00,17:16:00,1474997,9, +24986946_258344,17:22:00,17:23:00,1474998,10, +24986946_258344,17:25:00,17:26:00,1474999,11, +24986946_258344,17:35:00,17:37:00,1474843,12, +24986946_258344,17:43:00,17:44:00,1474838,13, +24986946_258344,17:50:00,17:50:00,1474839,14, +24986946_258344,18:07:00,18:07:00,1474945,15, +24986947_258345,16:36:00,16:36:00,1474738,0, +24986947_258345,16:41:00,16:41:00,1474963,1, +24986947_258345,16:43:00,16:44:00,1474964,2, +24986947_258345,16:47:00,16:47:00,1474992,3, +24986947_258345,16:50:00,16:51:00,1474993,4, +24986947_258345,16:56:00,16:57:00,1474994,5, +24986947_258345,17:00:00,17:01:00,1474995,6, +24986947_258345,17:05:00,17:05:00,1474996,7, +24986947_258345,17:08:00,17:09:00,1474965,8, +24986947_258345,17:15:00,17:16:00,1474997,9, +24986947_258345,17:22:00,17:23:00,1474998,10, +24986947_258345,17:25:00,17:26:00,1474999,11, +24986947_258345,17:35:00,17:37:00,1474843,12, +24986947_258345,17:43:00,17:44:00,1474838,13, +24986947_258345,17:50:00,17:50:00,1474839,14, +24986947_258345,18:07:00,18:07:00,1474945,15, +24986949_258347,16:50:00,16:50:00,1474640,0, +24986949_258347,16:55:00,16:55:00,1474963,1, +24986949_258347,16:58:00,16:58:00,1474964,2, +24986949_258347,17:00:00,17:01:00,1474992,3, +24986949_258347,17:04:00,17:04:00,1474993,4, +24986949_258347,17:09:00,17:09:00,1474994,5, +24986949_258347,17:12:00,17:12:00,1474995,6, +24986949_258347,17:16:00,17:16:00,1474996,7, +24986949_258347,17:19:00,17:20:00,1474965,8, +24986949_258347,17:25:00,17:25:00,1474997,9, +24986949_258347,17:31:00,17:31:00,1474998,10, +24986949_258347,17:33:00,17:34:00,1474999,11, +24986949_258347,17:41:00,17:44:00,1657886,12, +24986949_258347,17:50:00,17:50:00,1474838,13, +24986949_258347,17:55:00,17:56:00,1474839,14, +24986949_258347,18:00:00,18:01:00,1475128,15, +24986949_258347,18:04:00,18:05:00,1475129,16, +24986949_258347,18:09:00,18:10:00,1475130,17, +24986949_258347,18:15:00,18:16:00,1475112,18, +24986949_258347,18:24:00,18:24:00,1475131,19, +24986949_258347,18:28:00,18:29:00,1475132,20, +24986949_258347,18:33:00,18:34:00,1475113,21, +24986949_258347,18:42:00,18:42:00,1474984,22, +24986949_258347,18:47:00,18:48:00,1474985,23, +24986949_258347,18:50:00,18:51:00,1474986,24, +24986949_258347,18:55:00,18:55:00,1475133,25, +24986950_258348,16:51:00,16:51:00,1474738,0, +24986950_258348,16:56:00,16:57:00,1474963,1, +24986950_258348,16:59:00,16:59:00,1474964,2, +24986950_258348,17:01:00,17:02:00,1474992,3, +24986950_258348,17:05:00,17:05:00,1474993,4, +24986950_258348,17:10:00,17:10:00,1474994,5, +24986950_258348,17:13:00,17:14:00,1474995,6, +24986950_258348,17:17:00,17:18:00,1474996,7, +24986950_258348,17:21:00,17:21:00,1474965,8, +24986950_258348,17:26:00,17:26:00,1474997,9, +24986950_258348,17:32:00,17:32:00,1474998,10, +24986950_258348,17:34:00,17:35:00,1474999,11, +24986950_258348,17:43:00,17:45:00,1474843,12, +24986950_258348,17:51:00,17:52:00,1474838,13, +24986950_258348,17:58:00,17:58:00,1474839,14, +24986950_258348,18:02:00,18:03:00,1475128,15, +24986950_258348,18:06:00,18:07:00,1475129,16, +24986950_258348,18:11:00,18:12:00,1475130,17, +24986950_258348,18:17:00,18:18:00,1475112,18, +24986950_258348,18:26:00,18:26:00,1475131,19, +24986950_258348,18:30:00,18:31:00,1475132,20, +24986950_258348,18:35:00,18:36:00,1474988,21, +24986950_258348,18:44:00,18:44:00,1474984,22, +24986950_258348,18:49:00,18:50:00,1474985,23, +24986950_258348,18:52:00,18:52:00,1474986,24, +24986950_258348,18:56:00,18:56:00,1474987,25, +24986952_258350,17:46:00,17:46:00,1474651,0, +24986952_258350,17:51:00,17:52:00,1474963,1, +24986952_258350,17:54:00,17:55:00,1474964,2, +24986952_258350,17:57:00,17:57:00,1474992,3, +24986952_258350,18:00:00,18:01:00,1474993,4, +24986952_258350,18:06:00,18:07:00,1474994,5, +24986952_258350,18:09:00,18:10:00,1474995,6, +24986952_258350,18:14:00,18:14:00,1474996,7, +24986952_258350,18:18:00,18:19:00,1474965,8, +24986952_258350,18:24:00,18:25:00,1474997,9, +24986952_258350,18:30:00,18:31:00,1474998,10, +24986952_258350,18:33:00,18:34:00,1474999,11, +24986952_258350,18:41:00,18:42:00,1657886,12, +24986952_258350,18:48:00,18:48:00,1474838,13, +24986952_258350,18:53:00,18:54:00,1474839,14, +24986952_258350,18:59:00,18:59:00,1475128,15, +24986952_258350,19:03:00,19:03:00,1475129,16, +24986952_258350,19:08:00,19:08:00,1475130,17, +24986952_258350,19:14:00,19:15:00,1475112,18, +24986952_258350,19:22:00,19:23:00,1475131,19, +24986952_258350,19:27:00,19:28:00,1475132,20, +24986952_258350,19:32:00,19:41:00,1475190,21, +24986952_258350,19:50:00,19:51:00,1475139,22, +24986952_258350,19:55:00,19:55:00,1475138,23, +24986952_258350,20:08:00,20:08:00,1474980,24, +24986954_258352,17:45:00,17:45:00,1474640,0, +24986954_258352,17:50:00,17:51:00,1474963,1, +24986954_258352,17:53:00,17:54:00,1474964,2, +24986954_258352,17:56:00,17:57:00,1474992,3, +24986954_258352,18:00:00,18:01:00,1474993,4, +24986954_258352,18:05:00,18:06:00,1474994,5, +24986954_258352,18:09:00,18:10:00,1474995,6, +24986954_258352,18:13:00,18:14:00,1474996,7, +24986954_258352,18:17:00,18:18:00,1474965,8, +24986954_258352,18:23:00,18:24:00,1474997,9, +24986954_258352,18:30:00,18:30:00,1474998,10, +24986954_258352,18:32:00,18:33:00,1474999,11, +24986954_258352,18:41:00,18:42:00,1474843,12, +24986954_258352,18:48:00,18:49:00,1474838,13, +24986954_258352,18:54:00,18:55:00,1474839,14, +24986954_258352,18:59:00,19:00:00,1475128,15, +24986954_258352,19:03:00,19:04:00,1475129,16, +24986954_258352,19:08:00,19:09:00,1475130,17, +24986954_258352,19:14:00,19:15:00,1475112,18, +24986954_258352,19:23:00,19:23:00,1609789,19, +24986954_258352,19:27:00,19:28:00,1609788,20, +24986954_258352,19:33:00,19:41:00,1474988,21, +24986954_258352,19:50:00,19:51:00,1475139,22, +24986954_258352,19:55:00,19:55:00,1475138,23, +24986954_258352,20:08:00,20:08:00,1474980,24, +24986956_258354,19:45:00,19:45:00,1474640,0, +24986956_258354,19:50:00,19:51:00,1474963,1, +24986956_258354,19:53:00,19:54:00,1474964,2, +24986956_258354,19:56:00,19:57:00,1474992,3, +24986956_258354,20:00:00,20:01:00,1474993,4, +24986956_258354,20:05:00,20:06:00,1474994,5, +24986956_258354,20:09:00,20:10:00,1474995,6, +24986956_258354,20:13:00,20:14:00,1474996,7, +24986956_258354,20:17:00,20:18:00,1474965,8, +24986956_258354,20:23:00,20:24:00,1474997,9, +24986956_258354,20:30:00,20:30:00,1474998,10, +24986956_258354,20:32:00,20:33:00,1474999,11, +24986956_258354,20:40:00,20:42:00,1657886,12, +24986956_258354,20:48:00,20:49:00,1474838,13, +24986956_258354,20:55:00,20:56:00,1474839,14, +24986956_258354,21:00:00,21:00:00,1475128,15, +24986956_258354,21:04:00,21:04:00,1475129,16, +24986956_258354,21:09:00,21:09:00,1475130,17, +24986956_258354,21:14:00,21:15:00,1475112,18, +24986956_258354,21:22:00,21:23:00,1475131,19, +24986956_258354,21:27:00,21:27:00,1475132,20, +24986956_258354,21:33:00,21:50:00,1475113,21, +24986956_258354,22:00:00,22:06:00,1536315,22, +24986956_258354,22:10:00,22:10:00,1475138,23, +24986956_258354,22:23:00,22:23:00,1474979,24, +24986957_258355,19:44:00,19:44:00,1474738,0, +24986957_258355,19:49:00,19:50:00,1474963,1, +24986957_258355,19:52:00,19:53:00,1474964,2, +24986957_258355,19:55:00,19:56:00,1474992,3, +24986957_258355,19:59:00,20:00:00,1474993,4, +24986957_258355,20:04:00,20:05:00,1474994,5, +24986957_258355,20:08:00,20:09:00,1474995,6, +24986957_258355,20:12:00,20:13:00,1474996,7, +24986957_258355,20:16:00,20:17:00,1474965,8, +24986957_258355,20:22:00,20:22:00,1474997,9, +24986957_258355,20:28:00,20:28:00,1474998,10, +24986957_258355,20:31:00,20:31:00,1474999,11, +24986957_258355,20:39:00,20:41:00,1474843,12, +24986957_258355,20:47:00,20:48:00,1474838,13, +24986957_258355,20:54:00,20:55:00,1474839,14, +24986957_258355,20:59:00,21:00:00,1475128,15, +24986957_258355,21:03:00,21:04:00,1475129,16, +24986957_258355,21:08:00,21:09:00,1475130,17, +24986957_258355,21:14:00,21:15:00,1475112,18, +24986957_258355,21:22:00,21:23:00,1609789,19, +24986957_258355,21:27:00,21:27:00,1609788,20, +24986957_258355,21:33:00,21:50:00,1474988,21, +24986957_258355,22:00:00,22:06:00,1536315,22, +24986957_258355,22:10:00,22:10:00,1475138,23, +24986957_258355,22:23:00,22:23:00,1474979,24, +24986959_258357,20:49:00,20:49:00,1474640,0, +24986959_258357,20:54:00,20:54:00,1474963,1, +24986959_258357,20:57:00,20:58:00,1474964,2, +24986959_258357,21:00:00,21:00:00,1474992,3, +24986959_258357,21:03:00,21:04:00,1474993,4, +24986959_258357,21:09:00,21:09:00,1474994,5, +24986959_258357,21:12:00,21:13:00,1474995,6, +24986959_258357,21:16:00,21:17:00,1474996,7, +24986959_258357,21:20:00,21:21:00,1474965,8, +24986959_258357,21:26:00,21:26:00,1474997,9, +24986959_258357,21:32:00,21:33:00,1474998,10, +24986959_258357,21:35:00,21:35:00,1474999,11, +24986959_258357,21:42:00,21:43:00,1657886,12, +24986959_258357,21:49:00,21:49:00,1474838,13, +24986959_258357,21:55:00,21:55:00,1474839,14, +24986959_258357,21:59:00,22:00:00,1475128,15, +24986959_258357,22:03:00,22:04:00,1475129,16, +24986959_258357,22:08:00,22:09:00,1475130,17, +24986959_258357,22:15:00,22:15:00,1474945,18, +24986960_258358,20:49:00,20:49:00,1474640,0, +24986960_258358,20:54:00,20:54:00,1474963,1, +24986960_258358,20:57:00,20:58:00,1474964,2, +24986960_258358,21:00:00,21:00:00,1474992,3, +24986960_258358,21:03:00,21:04:00,1474993,4, +24986960_258358,21:09:00,21:09:00,1474994,5, +24986960_258358,21:12:00,21:13:00,1474995,6, +24986960_258358,21:16:00,21:17:00,1474996,7, +24986960_258358,21:20:00,21:21:00,1474965,8, +24986960_258358,21:26:00,21:27:00,1474997,9, +24986960_258358,21:33:00,21:33:00,1474998,10, +24986960_258358,21:35:00,21:36:00,1474999,11, +24986960_258358,21:44:00,21:46:00,1474843,12, +24986960_258358,21:52:00,21:52:00,1474838,13, +24986960_258358,21:58:00,21:58:00,1474839,14, +24986960_258358,22:02:00,22:03:00,1475128,15, +24986960_258358,22:06:00,22:07:00,1475129,16, +24986960_258358,22:11:00,22:12:00,1475130,17, +24986960_258358,22:17:00,22:17:00,1474945,18, +24986962_258360,20:49:00,20:49:00,1474640,0, +24986962_258360,20:54:00,20:55:00,1474963,1, +24986962_258360,20:57:00,20:58:00,1474964,2, +24986962_258360,21:00:00,21:01:00,1474992,3, +24986962_258360,21:04:00,21:05:00,1474993,4, +24986962_258360,21:10:00,21:11:00,1474994,5, +24986962_258360,21:14:00,21:15:00,1474995,6, +24986962_258360,21:18:00,21:19:00,1474996,7, +24986962_258360,21:22:00,21:23:00,1474965,8, +24986962_258360,21:29:00,21:30:00,1474997,9, +24986962_258360,21:36:00,21:37:00,1474998,10, +24986962_258360,21:39:00,21:40:00,1474999,11, +24986962_258360,21:48:00,21:48:00,1657886,12, +24986963_258361,20:49:00,20:49:00,1474640,0, +24986963_258361,20:54:00,20:54:00,1474963,1, +24986963_258361,20:57:00,20:58:00,1474964,2, +24986963_258361,21:00:00,21:00:00,1474992,3, +24986963_258361,21:03:00,21:04:00,1474993,4, +24986963_258361,21:09:00,21:09:00,1474994,5, +24986963_258361,21:12:00,21:13:00,1474995,6, +24986963_258361,21:16:00,21:17:00,1474996,7, +24986963_258361,21:20:00,21:21:00,1474965,8, +24986963_258361,21:26:00,21:27:00,1474997,9, +24986963_258361,21:33:00,21:33:00,1474998,10, +24986963_258361,21:35:00,21:36:00,1474999,11, +24986963_258361,21:44:00,21:44:00,1474843,12, +24986965_258363,22:01:00,22:01:00,1474640,0, +24986965_258363,22:06:00,22:07:00,1474963,1, +24986965_258363,22:09:00,22:10:00,1474964,2, +24986965_258363,22:12:00,22:12:00,1474992,3, +24986965_258363,22:15:00,22:16:00,1474993,4, +24986965_258363,22:21:00,22:22:00,1474994,5, +24986965_258363,22:24:00,22:25:00,1474995,6, +24986965_258363,22:29:00,22:29:00,1474996,7, +24986965_258363,22:33:00,22:34:00,1474965,8, +24986965_258363,22:39:00,22:40:00,1474997,9, +24986965_258363,22:45:00,22:46:00,1474998,10, +24986965_258363,22:48:00,22:49:00,1474999,11, +24986965_258363,22:56:00,22:57:00,1657886,12, +24986965_258363,23:04:00,23:04:00,1474838,13, +24986965_258363,23:10:00,23:10:00,1474839,14, +24986965_258363,23:14:00,23:15:00,1475128,15, +24986965_258363,23:18:00,23:19:00,1475129,16, +24986965_258363,23:23:00,23:24:00,1475130,17, +24986965_258363,23:29:00,23:30:00,1475112,18, +24986965_258363,23:38:00,23:38:00,1475131,19, +24986965_258363,23:43:00,23:43:00,1475132,20, +24986965_258363,23:48:00,23:49:00,1475113,21, +24986965_258363,23:57:00,23:57:00,1474984,22, +24986965_258363,24:02:00,24:03:00,1474985,23, +24986965_258363,24:05:00,24:06:00,1474986,24, +24986965_258363,24:08:00,24:08:00,1474987,25, +24986966_258364,21:58:00,21:58:00,1474640,0, +24986966_258364,22:03:00,22:04:00,1474963,1, +24986966_258364,22:06:00,22:07:00,1474964,2, +24986966_258364,22:09:00,22:10:00,1474992,3, +24986966_258364,22:13:00,22:14:00,1474993,4, +24986966_258364,22:18:00,22:19:00,1474994,5, +24986966_258364,22:22:00,22:23:00,1474995,6, +24986966_258364,22:26:00,22:27:00,1474996,7, +24986966_258364,22:30:00,22:31:00,1474965,8, +24986966_258364,22:36:00,22:36:00,1474997,9, +24986966_258364,22:42:00,22:42:00,1474998,10, +24986966_258364,22:44:00,22:45:00,1474999,11, +24986966_258364,22:53:00,22:55:00,1474843,12, +24986966_258364,23:01:00,23:02:00,1474838,13, +24986966_258364,23:07:00,23:08:00,1474839,14, +24986966_258364,23:12:00,23:12:00,1475128,15, +24986966_258364,23:16:00,23:16:00,1475129,16, +24986966_258364,23:21:00,23:22:00,1475130,17, +24986966_258364,23:27:00,23:28:00,1475112,18, +24986966_258364,23:36:00,23:37:00,1475131,19, +24986966_258364,23:41:00,23:41:00,1475132,20, +24986966_258364,23:46:00,23:47:00,1474988,21, +24986966_258364,23:55:00,23:55:00,1474984,22, +24986966_258364,24:00:00,24:01:00,1474985,23, +24986966_258364,24:03:00,24:04:00,1474986,24, +24986966_258364,24:07:00,24:07:00,1474987,25, +24986970_258368,23:15:00,23:15:00,1536277,0, +24986970_258368,23:20:00,23:21:00,1474963,1, +24986970_258368,23:23:00,23:24:00,1474964,2, +24986970_258368,23:26:00,23:27:00,1474992,3, +24986970_258368,23:30:00,23:31:00,1474993,4, +24986970_258368,23:36:00,23:37:00,1474994,5, +24986970_258368,23:40:00,23:41:00,1474995,6, +24986970_258368,23:45:00,23:45:00,1474996,7, +24986970_258368,23:49:00,23:50:00,1474965,8, +24986970_258368,23:56:00,23:56:00,1474997,9, +24986970_258368,24:02:00,24:03:00,1474998,10, +24986970_258368,24:05:00,24:06:00,1474999,11, +24986970_258368,24:14:00,24:14:00,1657886,12, +24986971_258369,23:15:00,23:15:00,1474738,0, +24986971_258369,23:20:00,23:21:00,1474963,1, +24986971_258369,23:23:00,23:24:00,1474964,2, +24986971_258369,23:26:00,23:27:00,1474992,3, +24986971_258369,23:30:00,23:31:00,1474993,4, +24986971_258369,23:36:00,23:37:00,1474994,5, +24986971_258369,23:40:00,23:41:00,1474995,6, +24986971_258369,23:45:00,23:45:00,1474996,7, +24986971_258369,23:48:00,23:49:00,1474965,8, +24986971_258369,23:56:00,23:56:00,1474997,9, +24986971_258369,24:02:00,24:03:00,1474998,10, +24986971_258369,24:05:00,24:06:00,1474999,11, +24986971_258369,24:15:00,24:15:00,1474843,12, +24986973_258371,08:19:00,08:19:00,1475113,0, +24986973_258371,08:28:00,08:29:00,1475139,1, +24986973_258371,08:33:00,08:33:00,1475138,2, +24986973_258371,08:46:00,08:46:00,1474979,3, +24986974_258372,08:19:00,08:19:00,1475136,0, +24986974_258372,08:28:00,08:29:00,1475139,1, +24986974_258372,08:33:00,08:33:00,1475138,2, +24986974_258372,08:46:00,08:46:00,1474979,3, +24986976_258374,07:40:00,07:40:00,1474979,0, +24986976_258374,07:52:00,07:52:00,1475138,1, +24986976_258374,07:56:00,07:57:00,1475139,2, +24986976_258374,08:07:00,08:07:00,1475113,3, +24986977_258375,07:40:00,07:40:00,1474979,0, +24986977_258375,07:52:00,07:52:00,1475138,1, +24986977_258375,07:56:00,07:57:00,1475139,2, +24986977_258375,08:07:00,08:07:00,1475136,3, +24986979_258377,21:10:00,21:10:00,1474979,0, +24986979_258377,21:22:00,21:22:00,1475138,1, +24986979_258377,21:26:00,21:27:00,1475139,2, +24986979_258377,21:38:00,21:38:00,1474983,3, +24986980_258378,20:58:00,20:58:00,1474979,0, +24986980_258378,21:10:00,21:10:00,1475138,1, +24986980_258378,21:14:00,21:15:00,1475139,2, +24986980_258378,21:26:00,21:26:00,1474983,3, +24986981_258379,04:53:00,04:53:00,1474645,0, +24986981_258379,04:55:00,04:56:00,1474646,1, +24986981_258379,05:00:00,05:01:00,1474882,2, +24986981_258379,05:04:00,05:05:00,1474881,3, +24986981_258379,05:09:00,05:10:00,1474880,4, +24986981_258379,05:12:00,05:18:00,1474884,5, +24986981_258379,05:22:00,05:22:00,1474878,6, +24986981_258379,05:26:00,05:26:00,1474877,7, +24986981_258379,05:29:00,05:29:00,1474876,8, +24986981_258379,05:34:00,05:34:00,1474875,9, +24986982_258380,04:22:00,04:22:00,1474640,0, +24986982_258380,04:27:00,04:28:00,1475191,1, +24986982_258380,04:30:00,04:31:00,1475192,2, +24986982_258380,04:34:00,04:35:00,1475193,3, +24986982_258380,04:39:00,04:40:00,1475194,4, +24986982_258380,04:43:00,04:44:00,1475195,5, +24986982_258380,04:48:00,04:48:00,1475196,6, +24986982_258380,04:52:00,04:52:00,1474641,7, +24986982_258380,04:57:00,04:57:00,1474853,8, +24986982_258380,05:02:00,05:02:00,1474852,9, +24986982_258380,05:08:00,05:08:00,1474642,10, +24986984_258382,05:50:00,05:50:00,1474645,0, +24986984_258382,05:52:00,05:53:00,1474646,1, +24986984_258382,05:57:00,05:57:00,1474882,2, +24986984_258382,06:01:00,06:02:00,1474881,3, +24986984_258382,06:07:00,06:07:00,1474880,4, +24986984_258382,06:09:00,06:15:00,1474884,5, +24986984_258382,06:19:00,06:19:00,1474878,6, +24986984_258382,06:23:00,06:23:00,1474877,7, +24986984_258382,06:26:00,06:27:00,1474876,8, +24986984_258382,06:32:00,06:32:00,1474875,9, +24986985_258383,05:50:00,05:50:00,1474645,0, +24986985_258383,05:52:00,05:53:00,1474646,1, +24986985_258383,05:57:00,05:57:00,1474882,2, +24986985_258383,06:01:00,06:01:00,1474881,3, +24986985_258383,06:06:00,06:07:00,1474880,4, +24986985_258383,06:09:00,06:15:00,1474884,5, +24986985_258383,06:20:00,06:20:00,1474878,6, +24986985_258383,06:23:00,06:24:00,1474877,7, +24986985_258383,06:27:00,06:27:00,1474876,8, +24986985_258383,06:32:00,06:32:00,1474875,9, +24986987_258385,04:09:00,04:09:00,1474874,0, +24986987_258385,04:14:00,04:15:00,1475197,1, +24986987_258385,04:17:00,04:18:00,1475198,2, +24986987_258385,04:21:00,04:22:00,1475199,3, +24986987_258385,04:28:00,04:29:00,1475200,4, +24986987_258385,04:32:00,04:33:00,1475201,5, +24986987_258385,04:36:00,04:37:00,1474868,6, +24986987_258385,04:41:00,04:42:00,1475202,7, +24986987_258385,04:44:00,04:45:00,1475203,8, +24986987_258385,04:47:00,04:47:00,1475204,9, +24986987_258385,04:50:00,04:51:00,1475205,10, +24986987_258385,04:53:00,04:54:00,1475206,11, +24986987_258385,04:55:00,04:56:00,1474862,12, +24986987_258385,04:57:00,04:58:00,1475181,13, +24986987_258385,05:03:00,05:03:00,1474640,14, +24986988_258386,04:10:00,04:10:00,1474874,0, +24986988_258386,04:15:00,04:15:00,1475197,1, +24986988_258386,04:18:00,04:18:00,1475198,2, +24986988_258386,04:21:00,04:22:00,1475199,3, +24986988_258386,04:28:00,04:29:00,1475200,4, +24986988_258386,04:32:00,04:33:00,1475201,5, +24986988_258386,04:36:00,04:37:00,1474868,6, +24986988_258386,04:41:00,04:42:00,1475202,7, +24986988_258386,04:44:00,04:45:00,1475203,8, +24986988_258386,04:47:00,04:47:00,1475204,9, +24986988_258386,04:50:00,04:51:00,1475205,10, +24986988_258386,04:53:00,04:54:00,1475206,11, +24986988_258386,04:55:00,04:56:00,1474862,12, +24986988_258386,04:57:00,04:58:00,1475181,13, +24986988_258386,05:03:00,05:03:00,1474738,14, +24986990_258388,04:09:00,04:09:00,1474874,0, +24986990_258388,04:14:00,04:15:00,1475197,1, +24986990_258388,04:17:00,04:18:00,1475198,2, +24986990_258388,04:21:00,04:22:00,1475199,3, +24986990_258388,04:28:00,04:29:00,1475200,4, +24986990_258388,04:32:00,04:33:00,1475201,5, +24986990_258388,04:36:00,04:37:00,1474868,6, +24986990_258388,04:41:00,04:42:00,1475202,7, +24986990_258388,04:44:00,04:45:00,1475203,8, +24986990_258388,04:47:00,04:47:00,1475204,9, +24986990_258388,04:50:00,04:51:00,1475205,10, +24986990_258388,04:53:00,04:54:00,1475206,11, +24986990_258388,04:55:00,04:56:00,1474862,12, +24986990_258388,04:57:00,04:58:00,1475181,13, +24986990_258388,05:03:00,05:23:00,1474640,14, +24986990_258388,05:28:00,05:29:00,1475191,15, +24986990_258388,05:31:00,05:32:00,1475192,16, +24986990_258388,05:35:00,05:36:00,1475193,17, +24986990_258388,05:40:00,05:40:00,1475194,18, +24986990_258388,05:44:00,05:44:00,1475195,19, +24986990_258388,05:48:00,05:49:00,1475196,20, +24986990_258388,05:53:00,05:54:00,1474641,21, +24986990_258388,05:58:00,05:59:00,1474853,22, +24986990_258388,06:03:00,06:04:00,1474852,23, +24986990_258388,06:08:00,06:15:00,1474642,24, +24986990_258388,06:21:00,06:22:00,1474851,25, +24986990_258388,06:25:00,06:26:00,1474643,26, +24986990_258388,06:32:00,06:32:00,1475207,27, +24986990_258388,06:34:00,06:34:00,1474644,28, +24986990_258388,06:40:00,06:40:00,1475208,29, +24986990_258388,06:43:00,06:44:00,1474645,30, +24986990_258388,06:46:00,06:47:00,1474646,31, +24986990_258388,06:50:00,06:51:00,1474882,32, +24986990_258388,06:54:00,06:55:00,1474881,33, +24986990_258388,06:59:00,07:00:00,1474880,34, +24986990_258388,07:02:00,07:02:00,1474879,35, +24986990_258388,07:06:00,07:07:00,1474878,36, +24986990_258388,07:10:00,07:10:00,1474877,37, +24986990_258388,07:13:00,07:13:00,1474876,38, +24986990_258388,07:19:00,07:19:00,1474875,39, +24986991_258389,04:10:00,04:10:00,1474874,0, +24986991_258389,04:15:00,04:15:00,1475197,1, +24986991_258389,04:18:00,04:18:00,1475198,2, +24986991_258389,04:21:00,04:22:00,1475199,3, +24986991_258389,04:28:00,04:29:00,1475200,4, +24986991_258389,04:32:00,04:33:00,1475201,5, +24986991_258389,04:36:00,04:37:00,1474868,6, +24986991_258389,04:41:00,04:42:00,1475202,7, +24986991_258389,04:44:00,04:45:00,1475203,8, +24986991_258389,04:47:00,04:47:00,1475204,9, +24986991_258389,04:50:00,04:51:00,1475205,10, +24986991_258389,04:53:00,04:54:00,1475206,11, +24986991_258389,04:55:00,04:56:00,1474862,12, +24986991_258389,04:57:00,04:58:00,1475181,13, +24986991_258389,05:03:00,05:23:00,1474861,14, +24986991_258389,05:28:00,05:29:00,1475191,15, +24986991_258389,05:31:00,05:32:00,1475192,16, +24986991_258389,05:35:00,05:36:00,1475193,17, +24986991_258389,05:40:00,05:40:00,1475194,18, +24986991_258389,05:44:00,05:44:00,1475195,19, +24986991_258389,05:48:00,05:49:00,1475196,20, +24986991_258389,05:53:00,05:54:00,1474641,21, +24986991_258389,05:58:00,05:59:00,1474853,22, +24986991_258389,06:03:00,06:04:00,1474852,23, +24986991_258389,06:08:00,06:15:00,1474642,24, +24986991_258389,06:21:00,06:22:00,1474851,25, +24986991_258389,06:25:00,06:26:00,1474643,26, +24986991_258389,06:32:00,06:32:00,1475207,27, +24986991_258389,06:34:00,06:34:00,1474644,28, +24986991_258389,06:40:00,06:40:00,1475208,29, +24986991_258389,06:43:00,06:44:00,1474645,30, +24986991_258389,06:46:00,06:47:00,1474646,31, +24986991_258389,06:51:00,06:51:00,1474882,32, +24986991_258389,06:54:00,06:55:00,1474881,33, +24986991_258389,06:59:00,06:59:00,1474880,34, +24986991_258389,07:01:00,07:02:00,1474879,35, +24986991_258389,07:05:00,07:06:00,1474878,36, +24986991_258389,07:09:00,07:14:00,1474877,37, +24986991_258389,07:17:00,07:17:00,1474876,38, +24986991_258389,07:23:00,07:23:00,1474875,39, +24986993_258391,04:49:00,04:49:00,1474874,0, +24986993_258391,04:54:00,04:55:00,1475197,1, +24986993_258391,04:57:00,04:58:00,1475198,2, +24986993_258391,05:01:00,05:02:00,1475199,3, +24986993_258391,05:08:00,05:09:00,1475200,4, +24986993_258391,05:13:00,05:13:00,1475201,5, +24986993_258391,05:17:00,05:18:00,1474868,6, +24986993_258391,05:22:00,05:23:00,1475202,7, +24986993_258391,05:25:00,05:26:00,1475203,8, +24986993_258391,05:28:00,05:28:00,1475204,9, +24986993_258391,05:31:00,05:32:00,1475205,10, +24986993_258391,05:34:00,05:35:00,1475206,11, +24986993_258391,05:36:00,05:37:00,1474862,12, +24986993_258391,05:38:00,05:39:00,1475181,13, +24986993_258391,05:45:00,05:45:00,1536277,14, +24986994_258392,04:50:00,04:50:00,1474874,0, +24986994_258392,04:55:00,04:55:00,1475197,1, +24986994_258392,04:58:00,04:58:00,1475198,2, +24986994_258392,05:01:00,05:02:00,1475199,3, +24986994_258392,05:08:00,05:09:00,1475200,4, +24986994_258392,05:12:00,05:13:00,1475201,5, +24986994_258392,05:16:00,05:17:00,1474868,6, +24986994_258392,05:21:00,05:22:00,1475202,7, +24986994_258392,05:24:00,05:25:00,1475203,8, +24986994_258392,05:27:00,05:27:00,1475204,9, +24986994_258392,05:30:00,05:31:00,1475205,10, +24986994_258392,05:33:00,05:34:00,1475206,11, +24986994_258392,05:36:00,05:36:00,1474862,12, +24986994_258392,05:38:00,05:39:00,1475181,13, +24986994_258392,05:45:00,05:45:00,1474738,14, +24986996_258394,06:12:00,06:12:00,1474640,0, +24986996_258394,06:23:00,06:23:00,1475193,1, +24986996_258394,06:30:00,06:31:00,1475195,2, +24986996_258394,06:37:00,06:38:00,1474641,3, +24986996_258394,06:43:00,06:43:00,1474853,4, +24986996_258394,06:48:00,06:49:00,1474852,5, +24986996_258394,06:53:00,06:54:00,1474642,6, +24986996_258394,07:00:00,07:00:00,1474851,7, +24986996_258394,07:04:00,07:05:00,1474643,8, +24986996_258394,07:09:00,07:09:00,1475209,9, +24986996_258394,07:13:00,07:13:00,1475207,10, +24986996_258394,07:15:00,07:16:00,1474644,11, +24986996_258394,07:21:00,07:22:00,1475208,12, +24986996_258394,07:25:00,07:26:00,1474645,13, +24986996_258394,07:28:00,07:38:00,1474646,14, +24986996_258394,07:41:00,07:42:00,1474882,15, +24986996_258394,07:45:00,07:46:00,1474881,16, +24986996_258394,07:50:00,07:51:00,1474880,17, +24986996_258394,07:52:00,07:53:00,1474879,18, +24986996_258394,07:57:00,07:57:00,1474878,19, +24986996_258394,08:01:00,08:01:00,1474877,20, +24986996_258394,08:04:00,08:04:00,1474876,21, +24986996_258394,08:09:00,08:10:00,1474889,22, +24986996_258394,08:18:00,08:18:00,1474888,23, +24986997_258395,06:12:00,06:12:00,1474640,0, +24986997_258395,06:22:00,06:23:00,1475193,1, +24986997_258395,06:30:00,06:30:00,1475195,2, +24986997_258395,06:37:00,06:38:00,1474641,3, +24986997_258395,06:42:00,06:43:00,1474853,4, +24986997_258395,06:48:00,06:48:00,1474852,5, +24986997_258395,06:52:00,06:54:00,1474642,6, +24986997_258395,07:00:00,07:00:00,1474851,7, +24986997_258395,07:04:00,07:09:00,1474643,8, +24986997_258395,07:13:00,07:13:00,1475209,9, +24986997_258395,07:17:00,07:18:00,1475207,10, +24986997_258395,07:20:00,07:21:00,1474644,11, +24986997_258395,07:27:00,07:27:00,1475208,12, +24986997_258395,07:31:00,07:32:00,1474645,13, +24986997_258395,07:35:00,07:37:00,1474646,14, +24986997_258395,07:41:00,07:41:00,1474882,15, +24986997_258395,07:44:00,07:45:00,1474881,16, +24986997_258395,07:49:00,07:50:00,1474880,17, +24986997_258395,07:52:00,07:52:00,1474879,18, +24986997_258395,07:56:00,07:57:00,1474878,19, +24986997_258395,07:59:00,08:00:00,1474877,20, +24986997_258395,08:02:00,08:03:00,1474876,21, +24986997_258395,08:07:00,08:10:00,1474875,22, +24986997_258395,08:18:00,08:18:00,1474888,23, +24986999_258397,07:00:00,07:00:00,1474640,0, +24986999_258397,07:06:00,07:06:00,1475191,1, +24986999_258397,07:09:00,07:10:00,1475192,2, +24986999_258397,07:14:00,07:14:00,1475193,3, +24986999_258397,07:19:00,07:20:00,1475194,4, +24986999_258397,07:24:00,07:25:00,1475195,5, +24986999_258397,07:29:00,07:30:00,1475196,6, +24986999_258397,07:36:00,07:36:00,1474886,7, +24987000_258398,07:00:00,07:00:00,1474651,0, +24987000_258398,07:06:00,07:06:00,1475191,1, +24987000_258398,07:09:00,07:10:00,1475192,2, +24987000_258398,07:14:00,07:14:00,1475193,3, +24987000_258398,07:19:00,07:20:00,1475194,4, +24987000_258398,07:24:00,07:25:00,1475195,5, +24987000_258398,07:29:00,07:30:00,1475196,6, +24987000_258398,07:36:00,07:36:00,1474886,7, +24987004_258402,07:11:00,07:11:00,1474874,0, +24987004_258402,07:16:00,07:17:00,1475197,1, +24987004_258402,07:19:00,07:20:00,1475198,2, +24987004_258402,07:23:00,07:24:00,1475199,3, +24987004_258402,07:30:00,07:30:00,1475200,4, +24987004_258402,07:34:00,07:34:00,1475201,5, +24987004_258402,07:38:00,07:39:00,1474868,6, +24987004_258402,07:43:00,07:43:00,1475202,7, +24987004_258402,07:46:00,07:46:00,1475203,8, +24987004_258402,07:48:00,07:49:00,1475204,9, +24987004_258402,07:52:00,07:52:00,1475205,10, +24987004_258402,07:54:00,07:55:00,1475206,11, +24987004_258402,07:56:00,07:57:00,1474862,12, +24987004_258402,07:58:00,07:59:00,1475181,13, +24987004_258402,08:05:00,08:20:00,1474640,14, +24987004_258402,08:26:00,08:26:00,1475191,15, +24987004_258402,08:29:00,08:29:00,1475192,16, +24987004_258402,08:33:00,08:33:00,1475193,17, +24987004_258402,08:38:00,08:38:00,1475194,18, +24987004_258402,08:42:00,08:43:00,1475195,19, +24987004_258402,08:47:00,08:47:00,1475196,20, +24987004_258402,08:51:00,08:52:00,1474641,21, +24987004_258402,08:56:00,08:57:00,1474853,22, +24987004_258402,09:02:00,09:02:00,1474852,23, +24987004_258402,09:07:00,09:08:00,1474642,24, +24987004_258402,09:14:00,09:14:00,1474851,25, +24987004_258402,09:18:00,09:19:00,1474643,26, +24987004_258402,09:25:00,09:26:00,1475207,27, +24987004_258402,09:28:00,09:28:00,1474644,28, +24987004_258402,09:33:00,09:34:00,1475208,29, +24987004_258402,09:37:00,09:38:00,1474645,30, +24987004_258402,09:41:00,09:43:00,1474646,31, +24987004_258402,09:46:00,09:47:00,1474882,32, +24987004_258402,09:50:00,09:51:00,1474881,33, +24987004_258402,09:55:00,09:56:00,1474880,34, +24987004_258402,09:58:00,09:58:00,1474879,35, +24987004_258402,10:03:00,10:03:00,1474878,36, +24987004_258402,10:06:00,10:07:00,1474877,37, +24987004_258402,10:10:00,10:10:00,1474876,38, +24987004_258402,10:16:00,10:16:00,1474889,39, +24987005_258403,07:12:00,07:12:00,1474874,0, +24987005_258403,07:17:00,07:18:00,1475197,1, +24987005_258403,07:20:00,07:21:00,1475198,2, +24987005_258403,07:24:00,07:25:00,1475199,3, +24987005_258403,07:31:00,07:31:00,1475200,4, +24987005_258403,07:35:00,07:35:00,1475201,5, +24987005_258403,07:38:00,07:39:00,1474868,6, +24987005_258403,07:43:00,07:44:00,1475202,7, +24987005_258403,07:46:00,07:47:00,1475203,8, +24987005_258403,07:49:00,07:49:00,1475204,9, +24987005_258403,07:52:00,07:52:00,1475205,10, +24987005_258403,07:55:00,07:55:00,1475206,11, +24987005_258403,07:57:00,07:57:00,1474862,12, +24987005_258403,07:59:00,08:00:00,1475181,13, +24987005_258403,08:05:00,08:20:00,1474861,14, +24987005_258403,08:26:00,08:26:00,1475191,15, +24987005_258403,08:29:00,08:29:00,1475192,16, +24987005_258403,08:33:00,08:33:00,1475193,17, +24987005_258403,08:38:00,08:38:00,1475194,18, +24987005_258403,08:42:00,08:43:00,1475195,19, +24987005_258403,08:47:00,08:47:00,1475196,20, +24987005_258403,08:51:00,08:52:00,1474641,21, +24987005_258403,08:56:00,08:57:00,1474853,22, +24987005_258403,09:02:00,09:02:00,1474852,23, +24987005_258403,09:07:00,09:08:00,1474642,24, +24987005_258403,09:14:00,09:14:00,1474851,25, +24987005_258403,09:18:00,09:19:00,1474643,26, +24987005_258403,09:25:00,09:26:00,1475207,27, +24987005_258403,09:28:00,09:28:00,1474644,28, +24987005_258403,09:34:00,09:34:00,1475208,29, +24987005_258403,09:37:00,09:38:00,1474645,30, +24987005_258403,09:41:00,09:43:00,1474646,31, +24987005_258403,09:46:00,09:47:00,1474882,32, +24987005_258403,09:50:00,09:51:00,1474881,33, +24987005_258403,09:55:00,09:56:00,1474880,34, +24987005_258403,09:58:00,09:58:00,1474879,35, +24987005_258403,10:02:00,10:03:00,1474878,36, +24987005_258403,10:06:00,10:06:00,1474877,37, +24987005_258403,10:09:00,10:09:00,1474876,38, +24987005_258403,10:14:00,10:14:00,1474875,39, +24987007_258405,08:20:00,08:20:00,1474640,0, +24987007_258405,08:26:00,08:26:00,1475191,1, +24987007_258405,08:29:00,08:29:00,1475192,2, +24987007_258405,08:33:00,08:33:00,1475193,3, +24987007_258405,08:38:00,08:38:00,1475194,4, +24987007_258405,08:42:00,08:43:00,1475195,5, +24987007_258405,08:47:00,08:47:00,1475196,6, +24987007_258405,08:51:00,08:52:00,1474641,7, +24987007_258405,08:56:00,08:57:00,1474853,8, +24987007_258405,09:02:00,09:02:00,1474852,9, +24987007_258405,09:07:00,09:08:00,1474642,10, +24987007_258405,09:14:00,09:14:00,1474851,11, +24987007_258405,09:18:00,09:19:00,1474643,12, +24987007_258405,09:25:00,09:26:00,1475207,13, +24987007_258405,09:28:00,09:28:00,1474644,14, +24987007_258405,09:33:00,09:34:00,1475208,15, +24987007_258405,09:37:00,09:38:00,1474645,16, +24987007_258405,09:41:00,09:43:00,1474646,17, +24987007_258405,09:46:00,09:47:00,1474882,18, +24987007_258405,09:50:00,09:51:00,1474881,19, +24987007_258405,09:55:00,09:56:00,1474880,20, +24987007_258405,09:58:00,09:58:00,1474879,21, +24987007_258405,10:03:00,10:03:00,1474878,22, +24987007_258405,10:06:00,10:07:00,1474877,23, +24987007_258405,10:10:00,10:10:00,1474876,24, +24987007_258405,10:16:00,10:16:00,1474889,25, +24987008_258406,08:20:00,08:20:00,1474640,0, +24987008_258406,08:26:00,08:26:00,1475191,1, +24987008_258406,08:29:00,08:29:00,1475192,2, +24987008_258406,08:33:00,08:33:00,1475193,3, +24987008_258406,08:38:00,08:38:00,1475194,4, +24987008_258406,08:42:00,08:43:00,1475195,5, +24987008_258406,08:47:00,08:47:00,1475196,6, +24987008_258406,08:51:00,08:52:00,1474641,7, +24987008_258406,08:56:00,08:57:00,1474853,8, +24987008_258406,09:02:00,09:02:00,1474852,9, +24987008_258406,09:07:00,09:08:00,1474642,10, +24987008_258406,09:14:00,09:14:00,1474851,11, +24987008_258406,09:18:00,09:19:00,1474643,12, +24987008_258406,09:25:00,09:26:00,1475207,13, +24987008_258406,09:28:00,09:28:00,1474644,14, +24987008_258406,09:34:00,09:34:00,1475208,15, +24987008_258406,09:37:00,09:38:00,1474645,16, +24987008_258406,09:41:00,09:43:00,1474646,17, +24987008_258406,09:46:00,09:47:00,1474882,18, +24987008_258406,09:50:00,09:51:00,1474881,19, +24987008_258406,09:55:00,09:56:00,1474880,20, +24987008_258406,09:58:00,09:58:00,1474879,21, +24987008_258406,10:02:00,10:03:00,1474878,22, +24987008_258406,10:06:00,10:06:00,1474877,23, +24987008_258406,10:09:00,10:09:00,1474876,24, +24987008_258406,10:14:00,10:14:00,1474875,25, +24987009_258407,08:28:00,08:28:00,1474874,0, +24987009_258407,08:33:00,08:34:00,1475197,1, +24987009_258407,08:36:00,08:37:00,1475198,2, +24987009_258407,08:40:00,08:41:00,1475199,3, +24987009_258407,08:48:00,08:48:00,1475200,4, +24987009_258407,08:52:00,08:52:00,1475201,5, +24987009_258407,08:56:00,08:57:00,1474868,6, +24987009_258407,09:02:00,09:02:00,1475202,7, +24987009_258407,09:05:00,09:05:00,1475203,8, +24987009_258407,09:07:00,09:08:00,1475204,9, +24987009_258407,09:11:00,09:11:00,1475205,10, +24987009_258407,09:14:00,09:15:00,1475206,11, +24987009_258407,09:16:00,09:17:00,1474862,12, +24987009_258407,09:18:00,09:19:00,1475181,13, +24987009_258407,09:25:00,09:25:00,1536279,14, +24987012_258410,08:28:00,08:28:00,1474874,0, +24987012_258410,08:33:00,08:33:00,1475197,1, +24987012_258410,08:36:00,08:36:00,1475198,2, +24987012_258410,08:40:00,08:41:00,1475199,3, +24987012_258410,08:47:00,08:48:00,1475200,4, +24987012_258410,08:51:00,08:52:00,1475201,5, +24987012_258410,08:56:00,08:57:00,1474868,6, +24987012_258410,09:01:00,09:02:00,1475202,7, +24987012_258410,09:04:00,09:05:00,1475203,8, +24987012_258410,09:07:00,09:07:00,1475204,9, +24987012_258410,09:10:00,09:11:00,1475205,10, +24987012_258410,09:14:00,09:14:00,1475206,11, +24987012_258410,09:16:00,09:16:00,1474862,12, +24987012_258410,09:18:00,09:19:00,1475181,13, +24987012_258410,09:24:00,09:24:00,1474738,14, +24987015_258413,09:14:00,09:14:00,1474874,0, +24987015_258413,09:19:00,09:20:00,1475197,1, +24987015_258413,09:22:00,09:23:00,1475198,2, +24987015_258413,09:26:00,09:27:00,1475199,3, +24987015_258413,09:33:00,09:34:00,1475200,4, +24987015_258413,09:37:00,09:38:00,1475201,5, +24987015_258413,09:41:00,09:42:00,1474868,6, +24987015_258413,09:46:00,09:47:00,1475202,7, +24987015_258413,09:49:00,09:50:00,1475203,8, +24987015_258413,09:52:00,09:52:00,1475204,9, +24987015_258413,09:55:00,09:56:00,1475205,10, +24987015_258413,09:58:00,09:59:00,1475206,11, +24987015_258413,10:01:00,10:01:00,1474862,12, +24987015_258413,10:03:00,10:04:00,1475181,13, +24987015_258413,10:09:00,10:17:00,1474640,14, +24987015_258413,10:23:00,10:24:00,1475191,15, +24987015_258413,10:26:00,10:27:00,1475192,16, +24987015_258413,10:31:00,10:31:00,1475193,17, +24987015_258413,10:36:00,10:36:00,1475194,18, +24987015_258413,10:40:00,10:40:00,1475195,19, +24987015_258413,10:44:00,10:45:00,1475196,20, +24987015_258413,10:50:00,10:52:00,1474641,21, +24987015_258413,10:57:00,10:57:00,1703011,22, +24987015_258413,11:02:00,11:02:00,1474852,23, +24987015_258413,11:06:00,11:07:00,1474642,24, +24987015_258413,11:12:00,11:13:00,1474851,25, +24987015_258413,11:16:00,11:17:00,1474643,26, +24987015_258413,11:24:00,11:24:00,1475207,27, +24987015_258413,11:26:00,11:26:00,1474644,28, +24987015_258413,11:31:00,11:32:00,1475208,29, +24987015_258413,11:35:00,11:36:00,1474645,30, +24987015_258413,11:38:00,11:39:00,1474774,31, +24987015_258413,11:42:00,11:42:00,1474882,32, +24987015_258413,11:46:00,11:46:00,1474881,33, +24987015_258413,11:51:00,11:51:00,1474880,34, +24987015_258413,11:53:00,11:53:00,1474879,35, +24987015_258413,11:57:00,11:58:00,1474878,36, +24987015_258413,12:01:00,12:01:00,1474877,37, +24987015_258413,12:04:00,12:04:00,1474876,38, +24987015_258413,12:09:00,12:10:00,1474875,39, +24987015_258413,12:18:00,12:18:00,1474888,40, +24987018_258416,09:15:00,09:15:00,1474874,0, +24987018_258416,09:20:00,09:21:00,1475197,1, +24987018_258416,09:23:00,09:24:00,1475198,2, +24987018_258416,09:27:00,09:28:00,1475199,3, +24987018_258416,09:34:00,09:34:00,1475200,4, +24987018_258416,09:38:00,09:38:00,1475201,5, +24987018_258416,09:42:00,09:43:00,1474868,6, +24987018_258416,09:47:00,09:47:00,1475202,7, +24987018_258416,09:50:00,09:50:00,1475203,8, +24987018_258416,09:52:00,09:53:00,1475204,9, +24987018_258416,09:56:00,09:56:00,1475205,10, +24987018_258416,09:59:00,09:59:00,1475206,11, +24987018_258416,10:01:00,10:01:00,1474862,12, +24987018_258416,10:03:00,10:04:00,1475181,13, +24987018_258416,10:09:00,10:17:00,1474861,14, +24987018_258416,10:23:00,10:24:00,1475191,15, +24987018_258416,10:26:00,10:27:00,1475192,16, +24987018_258416,10:31:00,10:31:00,1475193,17, +24987018_258416,10:36:00,10:36:00,1475194,18, +24987018_258416,10:40:00,10:40:00,1475195,19, +24987018_258416,10:44:00,10:45:00,1475196,20, +24987018_258416,10:49:00,10:51:00,1474641,21, +24987018_258416,10:55:00,10:56:00,1703011,22, +24987018_258416,11:00:00,11:01:00,1474852,23, +24987018_258416,11:05:00,11:06:00,1474642,24, +24987018_258416,11:11:00,11:12:00,1474851,25, +24987018_258416,11:15:00,11:16:00,1474643,26, +24987018_258416,11:23:00,11:23:00,1475207,27, +24987018_258416,11:25:00,11:26:00,1474644,28, +24987018_258416,11:31:00,11:32:00,1475208,29, +24987018_258416,11:35:00,11:36:00,1474645,30, +24987018_258416,11:38:00,11:39:00,1474774,31, +24987018_258416,11:42:00,11:43:00,1474882,32, +24987018_258416,11:46:00,11:47:00,1474881,33, +24987018_258416,11:51:00,11:52:00,1474880,34, +24987018_258416,11:53:00,11:54:00,1474879,35, +24987018_258416,11:58:00,11:58:00,1474878,36, +24987018_258416,12:01:00,12:02:00,1474877,37, +24987018_258416,12:04:00,12:04:00,1474876,38, +24987018_258416,12:09:00,12:10:00,1474875,39, +24987018_258416,12:18:00,12:18:00,1474888,40, +24987020_258418,11:11:00,11:11:00,1474640,0, +24987020_258418,11:16:00,11:17:00,1475191,1, +24987020_258418,11:19:00,11:20:00,1475192,2, +24987020_258418,11:24:00,11:24:00,1475193,3, +24987020_258418,11:29:00,11:29:00,1475194,4, +24987020_258418,11:33:00,11:33:00,1475195,5, +24987020_258418,11:37:00,11:38:00,1475196,6, +24987020_258418,11:42:00,11:43:00,1474641,7, +24987020_258418,11:47:00,11:48:00,1474853,8, +24987020_258418,11:53:00,11:53:00,1474852,9, +24987020_258418,11:59:00,11:59:00,1474642,10, +24987023_258421,12:40:00,12:40:00,1536279,0, +24987023_258421,12:46:00,12:46:00,1475191,1, +24987023_258421,12:48:00,12:49:00,1475192,2, +24987023_258421,12:53:00,12:53:00,1475193,3, +24987023_258421,12:58:00,12:58:00,1475194,4, +24987023_258421,13:02:00,13:03:00,1475195,5, +24987023_258421,13:07:00,13:07:00,1475196,6, +24987023_258421,13:11:00,13:12:00,1474641,7, +24987023_258421,13:16:00,13:17:00,1474853,8, +24987023_258421,13:22:00,13:29:00,1474852,9, +24987023_258421,13:33:00,13:34:00,1474642,10, +24987023_258421,13:39:00,13:40:00,1474851,11, +24987023_258421,13:43:00,13:44:00,1474643,12, +24987023_258421,13:50:00,13:51:00,1475207,13, +24987023_258421,13:53:00,13:53:00,1474644,14, +24987023_258421,13:59:00,13:59:00,1475208,15, +24987023_258421,14:02:00,14:03:00,1474645,16, +24987023_258421,14:07:00,14:39:00,1474774,17, +24987023_258421,14:42:00,14:43:00,1474882,18, +24987023_258421,14:46:00,14:46:00,1474881,19, +24987023_258421,14:51:00,14:51:00,1474880,20, +24987023_258421,14:53:00,14:54:00,1474879,21, +24987023_258421,14:57:00,14:58:00,1474878,22, +24987023_258421,15:01:00,15:02:00,1474877,23, +24987023_258421,15:04:00,15:05:00,1474876,24, +24987023_258421,15:09:00,15:10:00,1474875,25, +24987023_258421,15:18:00,15:18:00,1474888,26, +24987025_258423,12:37:00,12:37:00,1474640,0, +24987025_258423,12:42:00,12:43:00,1475191,1, +24987025_258423,12:45:00,12:45:00,1475192,2, +24987025_258423,12:49:00,12:50:00,1475193,3, +24987025_258423,12:55:00,12:55:00,1475194,4, +24987025_258423,13:00:00,13:00:00,1475195,5, +24987025_258423,13:04:00,13:05:00,1475196,6, +24987025_258423,13:09:00,13:11:00,1474641,7, +24987025_258423,13:16:00,13:17:00,1474853,8, +24987025_258423,13:22:00,13:29:00,1474852,9, +24987025_258423,13:33:00,13:34:00,1474642,10, +24987025_258423,13:39:00,13:40:00,1474851,11, +24987025_258423,13:43:00,13:44:00,1474643,12, +24987025_258423,13:50:00,13:51:00,1475207,13, +24987025_258423,13:53:00,13:53:00,1474644,14, +24987025_258423,13:59:00,13:59:00,1475208,15, +24987025_258423,14:02:00,14:04:00,1474645,16, +24987025_258423,14:06:00,14:35:00,1474646,17, +24987025_258423,14:39:00,14:39:00,1474882,18, +24987025_258423,14:42:00,14:43:00,1474881,19, +24987025_258423,14:47:00,14:48:00,1474880,20, +24987025_258423,14:49:00,14:50:00,1474879,21, +24987025_258423,14:54:00,14:55:00,1474878,22, +24987025_258423,14:58:00,14:58:00,1474877,23, +24987025_258423,15:01:00,15:01:00,1474876,24, +24987025_258423,15:06:00,15:10:00,1474875,25, +24987025_258423,15:18:00,15:18:00,1474888,26, +24987028_258426,13:20:00,13:20:00,1474640,0, +24987028_258426,13:26:00,13:26:00,1475191,1, +24987028_258426,13:29:00,13:30:00,1475192,2, +24987028_258426,13:33:00,13:34:00,1475193,3, +24987028_258426,13:38:00,13:39:00,1475194,4, +24987028_258426,13:43:00,13:43:00,1475195,5, +24987028_258426,13:47:00,13:48:00,1475196,6, +24987028_258426,13:52:00,13:53:00,1474641,7, +24987028_258426,13:57:00,13:58:00,1474853,8, +24987028_258426,14:03:00,14:03:00,1474852,9, +24987028_258426,14:09:00,14:09:00,1474642,10, +24987029_258427,13:20:00,13:20:00,1474651,0, +24987029_258427,13:26:00,13:26:00,1475191,1, +24987029_258427,13:29:00,13:30:00,1475192,2, +24987029_258427,13:33:00,13:34:00,1475193,3, +24987029_258427,13:38:00,13:39:00,1475194,4, +24987029_258427,13:43:00,13:43:00,1475195,5, +24987029_258427,13:47:00,13:48:00,1475196,6, +24987029_258427,13:52:00,13:53:00,1474641,7, +24987029_258427,13:57:00,13:58:00,1474853,8, +24987029_258427,14:03:00,14:03:00,1474852,9, +24987029_258427,14:09:00,14:09:00,1474642,10, +24987031_258429,13:04:00,13:04:00,1474874,0, +24987031_258429,13:09:00,13:10:00,1475197,1, +24987031_258429,13:12:00,13:13:00,1475198,2, +24987031_258429,13:16:00,13:17:00,1475199,3, +24987031_258429,13:23:00,13:24:00,1475200,4, +24987031_258429,13:28:00,13:28:00,1475201,5, +24987031_258429,13:32:00,13:33:00,1474868,6, +24987031_258429,13:37:00,13:38:00,1475202,7, +24987031_258429,13:40:00,13:41:00,1475203,8, +24987031_258429,13:43:00,13:43:00,1475204,9, +24987031_258429,13:46:00,13:47:00,1475205,10, +24987031_258429,13:49:00,13:50:00,1475206,11, +24987031_258429,13:51:00,13:52:00,1474862,12, +24987031_258429,13:53:00,13:54:00,1475181,13, +24987031_258429,14:00:00,14:16:00,1474640,14, +24987031_258429,14:21:00,14:22:00,1475191,15, +24987031_258429,14:24:00,14:25:00,1475192,16, +24987031_258429,14:28:00,14:29:00,1475193,17, +24987031_258429,14:33:00,14:34:00,1475194,18, +24987031_258429,14:37:00,14:38:00,1475195,19, +24987031_258429,14:42:00,14:42:00,1475196,20, +24987031_258429,14:46:00,14:47:00,1474641,21, +24987031_258429,14:52:00,14:52:00,1474853,22, +24987031_258429,14:57:00,14:57:00,1474852,23, +24987031_258429,15:01:00,15:02:00,1474642,24, +24987031_258429,15:08:00,15:09:00,1474851,25, +24987031_258429,15:13:00,15:14:00,1474643,26, +24987031_258429,15:20:00,15:21:00,1475207,27, +24987031_258429,15:23:00,15:23:00,1474644,28, +24987031_258429,15:29:00,15:29:00,1475208,29, +24987031_258429,15:32:00,15:33:00,1474645,30, +24987031_258429,15:36:00,15:42:00,1474646,31, +24987031_258429,15:45:00,15:46:00,1474882,32, +24987031_258429,15:49:00,15:50:00,1474881,33, +24987031_258429,15:54:00,15:55:00,1474880,34, +24987031_258429,15:57:00,15:57:00,1474879,35, +24987031_258429,16:02:00,16:02:00,1474878,36, +24987031_258429,16:06:00,16:13:00,1474887,37, +24987031_258429,16:16:00,16:17:00,1474876,38, +24987031_258429,16:22:00,16:22:00,1474875,39, +24987032_258430,13:06:00,13:06:00,1474874,0, +24987032_258430,13:11:00,13:12:00,1475197,1, +24987032_258430,13:14:00,13:15:00,1475198,2, +24987032_258430,13:18:00,13:19:00,1475199,3, +24987032_258430,13:25:00,13:26:00,1475200,4, +24987032_258430,13:29:00,13:30:00,1475201,5, +24987032_258430,13:33:00,13:34:00,1474868,6, +24987032_258430,13:38:00,13:39:00,1475202,7, +24987032_258430,13:41:00,13:42:00,1475203,8, +24987032_258430,13:44:00,13:44:00,1475204,9, +24987032_258430,13:47:00,13:48:00,1475205,10, +24987032_258430,13:50:00,13:51:00,1475206,11, +24987032_258430,13:52:00,13:53:00,1474862,12, +24987032_258430,13:54:00,13:55:00,1475181,13, +24987032_258430,14:01:00,14:18:00,1474861,14, +24987032_258430,14:23:00,14:24:00,1475191,15, +24987032_258430,14:26:00,14:27:00,1475192,16, +24987032_258430,14:30:00,14:31:00,1475193,17, +24987032_258430,14:35:00,14:36:00,1475194,18, +24987032_258430,14:39:00,14:40:00,1475195,19, +24987032_258430,14:44:00,14:44:00,1475196,20, +24987032_258430,14:48:00,14:49:00,1474641,21, +24987032_258430,14:54:00,14:54:00,1474853,22, +24987032_258430,14:59:00,15:00:00,1474852,23, +24987032_258430,15:05:00,15:11:00,1474642,24, +24987032_258430,15:17:00,15:18:00,1474851,25, +24987032_258430,15:21:00,15:22:00,1474643,26, +24987032_258430,15:29:00,15:29:00,1475207,27, +24987032_258430,15:31:00,15:31:00,1474644,28, +24987032_258430,15:37:00,15:37:00,1475208,29, +24987032_258430,15:40:00,15:41:00,1474645,30, +24987032_258430,15:43:00,15:48:00,1474646,31, +24987032_258430,15:51:00,15:52:00,1474882,32, +24987032_258430,15:55:00,15:56:00,1474881,33, +24987032_258430,16:00:00,16:01:00,1474880,34, +24987032_258430,16:03:00,16:03:00,1474879,35, +24987032_258430,16:07:00,16:08:00,1474878,36, +24987032_258430,16:11:00,16:11:00,1474887,37, +24987032_258430,16:14:00,16:14:00,1474876,38, +24987032_258430,16:19:00,16:19:00,1474875,39, +24987033_258431,14:49:00,14:49:00,1474640,0, +24987033_258431,14:54:00,14:55:00,1475191,1, +24987033_258431,14:57:00,14:58:00,1475192,2, +24987033_258431,15:01:00,15:02:00,1475193,3, +24987033_258431,15:06:00,15:06:00,1475194,4, +24987033_258431,15:10:00,15:11:00,1475195,5, +24987033_258431,15:14:00,15:15:00,1475196,6, +24987033_258431,15:20:00,15:20:00,1474886,7, +24987036_258434,14:49:00,14:49:00,1474640,0, +24987036_258434,14:54:00,14:55:00,1475191,1, +24987036_258434,14:57:00,14:57:00,1475192,2, +24987036_258434,15:01:00,15:02:00,1475193,3, +24987036_258434,15:06:00,15:06:00,1475194,4, +24987036_258434,15:10:00,15:10:00,1475195,5, +24987036_258434,15:14:00,15:15:00,1475196,6, +24987036_258434,15:20:00,15:20:00,1474886,7, +24987039_258437,15:13:00,15:13:00,1474640,0, +24987039_258437,15:18:00,15:19:00,1475191,1, +24987039_258437,15:21:00,15:22:00,1475192,2, +24987039_258437,15:25:00,15:26:00,1475193,3, +24987039_258437,15:30:00,15:30:00,1475194,4, +24987039_258437,15:34:00,15:35:00,1475195,5, +24987039_258437,15:38:00,15:39:00,1475196,6, +24987039_258437,15:43:00,15:44:00,1474641,7, +24987039_258437,15:48:00,15:49:00,1474853,8, +24987039_258437,15:53:00,15:54:00,1474852,9, +24987039_258437,15:58:00,15:59:00,1474642,10, +24987039_258437,16:04:00,16:05:00,1474851,11, +24987039_258437,16:08:00,16:09:00,1474643,12, +24987039_258437,16:16:00,16:16:00,1475207,13, +24987039_258437,16:18:00,16:18:00,1474644,14, +24987039_258437,16:24:00,16:24:00,1475208,15, +24987039_258437,16:27:00,16:28:00,1474645,16, +24987039_258437,16:31:00,16:36:00,1474646,17, +24987039_258437,16:40:00,16:40:00,1474882,18, +24987039_258437,16:44:00,16:45:00,1474881,19, +24987039_258437,16:49:00,16:50:00,1474880,20, +24987039_258437,16:52:00,16:53:00,1474879,21, +24987039_258437,16:58:00,16:58:00,1474878,22, +24987039_258437,17:02:00,17:03:00,1474877,23, +24987039_258437,17:06:00,17:06:00,1474876,24, +24987039_258437,17:13:00,17:14:00,1474889,25, +24987039_258437,17:22:00,17:22:00,1474888,26, +24987041_258439,15:18:00,15:18:00,1474640,0, +24987041_258439,15:23:00,15:24:00,1475191,1, +24987041_258439,15:26:00,15:26:00,1475192,2, +24987041_258439,15:30:00,15:30:00,1475193,3, +24987041_258439,15:34:00,15:35:00,1475194,4, +24987041_258439,15:38:00,15:39:00,1475195,5, +24987041_258439,15:43:00,15:44:00,1475196,6, +24987041_258439,15:48:00,15:49:00,1474641,7, +24987041_258439,15:53:00,15:54:00,1474853,8, +24987041_258439,15:58:00,15:59:00,1474852,9, +24987041_258439,16:03:00,16:04:00,1474642,10, +24987041_258439,16:10:00,16:11:00,1474851,11, +24987041_258439,16:14:00,16:15:00,1474643,12, +24987041_258439,16:22:00,16:22:00,1475207,13, +24987041_258439,16:24:00,16:24:00,1474644,14, +24987041_258439,16:30:00,16:30:00,1475208,15, +24987041_258439,16:33:00,16:34:00,1474645,16, +24987041_258439,16:36:00,16:37:00,1474646,17, +24987041_258439,16:41:00,16:42:00,1474882,18, +24987041_258439,16:45:00,16:46:00,1474881,19, +24987041_258439,16:51:00,16:51:00,1474880,20, +24987041_258439,16:54:00,16:55:00,1474879,21, +24987041_258439,16:59:00,17:00:00,1474878,22, +24987041_258439,17:03:00,17:04:00,1474877,23, +24987041_258439,17:07:00,17:07:00,1474876,24, +24987041_258439,17:13:00,17:14:00,1474889,25, +24987041_258439,17:22:00,17:22:00,1474888,26, +24987043_258441,14:55:00,14:55:00,1474874,0, +24987043_258441,15:00:00,15:01:00,1475197,1, +24987043_258441,15:03:00,15:04:00,1475198,2, +24987043_258441,15:07:00,15:08:00,1475199,3, +24987043_258441,15:14:00,15:14:00,1475200,4, +24987043_258441,15:18:00,15:19:00,1475201,5, +24987043_258441,15:22:00,15:23:00,1474868,6, +24987043_258441,15:27:00,15:28:00,1475202,7, +24987043_258441,15:30:00,15:31:00,1475203,8, +24987043_258441,15:33:00,15:33:00,1475204,9, +24987043_258441,15:36:00,15:37:00,1475205,10, +24987043_258441,15:39:00,15:40:00,1475206,11, +24987043_258441,15:41:00,15:42:00,1474862,12, +24987043_258441,15:43:00,15:44:00,1475181,13, +24987043_258441,15:49:00,15:54:00,1474640,14, +24987043_258441,16:00:00,16:00:00,1475191,15, +24987043_258441,16:03:00,16:03:00,1475192,16, +24987043_258441,16:07:00,16:07:00,1475193,17, +24987043_258441,16:12:00,16:12:00,1475194,18, +24987043_258441,16:16:00,16:17:00,1475195,19, +24987043_258441,16:21:00,16:21:00,1475196,20, +24987043_258441,16:25:00,16:26:00,1474641,21, +24987043_258441,16:31:00,16:31:00,1474853,22, +24987043_258441,16:36:00,16:37:00,1474852,23, +24987043_258441,16:41:00,16:42:00,1474642,24, +24987043_258441,16:51:00,16:52:00,1474643,25, +24987043_258441,17:00:00,17:01:00,1474644,26, +24987043_258441,17:08:00,17:09:00,1474645,27, +24987043_258441,17:12:00,17:12:00,1474646,28, +24987044_258442,14:55:00,14:55:00,1474874,0, +24987044_258442,15:00:00,15:00:00,1475197,1, +24987044_258442,15:03:00,15:03:00,1475198,2, +24987044_258442,15:07:00,15:08:00,1475199,3, +24987044_258442,15:14:00,15:14:00,1475200,4, +24987044_258442,15:18:00,15:18:00,1475201,5, +24987044_258442,15:22:00,15:23:00,1474868,6, +24987044_258442,15:27:00,15:27:00,1475202,7, +24987044_258442,15:30:00,15:31:00,1475203,8, +24987044_258442,15:33:00,15:33:00,1475204,9, +24987044_258442,15:36:00,15:37:00,1475205,10, +24987044_258442,15:39:00,15:40:00,1475206,11, +24987044_258442,15:41:00,15:42:00,1474862,12, +24987044_258442,15:44:00,15:45:00,1475181,13, +24987044_258442,15:50:00,15:54:00,1474861,14, +24987044_258442,16:00:00,16:00:00,1475191,15, +24987044_258442,16:03:00,16:03:00,1475192,16, +24987044_258442,16:07:00,16:07:00,1475193,17, +24987044_258442,16:12:00,16:12:00,1475194,18, +24987044_258442,16:16:00,16:17:00,1475195,19, +24987044_258442,16:21:00,16:21:00,1475196,20, +24987044_258442,16:25:00,16:26:00,1474641,21, +24987044_258442,16:31:00,16:31:00,1474853,22, +24987044_258442,16:36:00,16:37:00,1474852,23, +24987044_258442,16:41:00,16:42:00,1474642,24, +24987044_258442,16:51:00,16:52:00,1474643,25, +24987044_258442,17:00:00,17:01:00,1474644,26, +24987044_258442,17:09:00,17:10:00,1474645,27, +24987044_258442,17:13:00,17:13:00,1474646,28, +24987045_258443,16:20:00,16:20:00,1474640,0, +24987045_258443,16:25:00,16:26:00,1475191,1, +24987045_258443,16:28:00,16:29:00,1475192,2, +24987045_258443,16:33:00,16:33:00,1475193,3, +24987045_258443,16:37:00,16:38:00,1475194,4, +24987045_258443,16:41:00,16:42:00,1475195,5, +24987045_258443,16:46:00,16:46:00,1475196,6, +24987045_258443,16:52:00,16:52:00,1474886,7, +24987048_258446,15:43:00,15:43:00,1474874,0, +24987048_258446,15:48:00,15:49:00,1475197,1, +24987048_258446,15:51:00,15:52:00,1475198,2, +24987048_258446,15:55:00,15:56:00,1475199,3, +24987048_258446,16:02:00,16:02:00,1475200,4, +24987048_258446,16:06:00,16:06:00,1475201,5, +24987048_258446,16:10:00,16:11:00,1474868,6, +24987048_258446,16:15:00,16:15:00,1475202,7, +24987048_258446,16:18:00,16:18:00,1475203,8, +24987048_258446,16:20:00,16:21:00,1475204,9, +24987048_258446,16:24:00,16:24:00,1475205,10, +24987048_258446,16:26:00,16:27:00,1475206,11, +24987048_258446,16:28:00,16:29:00,1474862,12, +24987048_258446,16:30:00,16:31:00,1475181,13, +24987048_258446,16:36:00,16:40:00,1474640,14, +24987048_258446,16:45:00,16:46:00,1475191,15, +24987048_258446,16:48:00,16:49:00,1475192,16, +24987048_258446,16:52:00,16:53:00,1475193,17, +24987048_258446,16:57:00,16:57:00,1475194,18, +24987048_258446,17:01:00,17:02:00,1475195,19, +24987048_258446,17:05:00,17:06:00,1475196,20, +24987048_258446,17:10:00,17:11:00,1474641,21, +24987048_258446,17:15:00,17:16:00,1474853,22, +24987048_258446,17:20:00,17:21:00,1474852,23, +24987048_258446,17:25:00,17:30:00,1474642,24, +24987048_258446,17:35:00,17:36:00,1474851,25, +24987048_258446,17:39:00,17:40:00,1474643,26, +24987048_258446,17:43:00,17:44:00,1475209,27, +24987048_258446,17:47:00,17:48:00,1475207,28, +24987048_258446,17:49:00,17:50:00,1474644,29, +24987048_258446,17:55:00,17:55:00,1475208,30, +24987048_258446,17:58:00,17:59:00,1474645,31, +24987048_258446,18:01:00,18:02:00,1474646,32, +24987048_258446,18:05:00,18:06:00,1474882,33, +24987048_258446,18:09:00,18:10:00,1474881,34, +24987048_258446,18:14:00,18:15:00,1474880,35, +24987048_258446,18:17:00,18:17:00,1474879,36, +24987048_258446,18:22:00,18:22:00,1474878,37, +24987048_258446,18:26:00,18:26:00,1474877,38, +24987048_258446,18:29:00,18:29:00,1474876,39, +24987048_258446,18:35:00,18:35:00,1474875,40, +24987049_258447,15:41:00,15:41:00,1474874,0, +24987049_258447,15:46:00,15:46:00,1475197,1, +24987049_258447,15:49:00,15:49:00,1475198,2, +24987049_258447,15:52:00,15:53:00,1475199,3, +24987049_258447,15:59:00,16:00:00,1475200,4, +24987049_258447,16:03:00,16:04:00,1475201,5, +24987049_258447,16:07:00,16:08:00,1474868,6, +24987049_258447,16:12:00,16:13:00,1475202,7, +24987049_258447,16:16:00,16:16:00,1475203,8, +24987049_258447,16:18:00,16:18:00,1475204,9, +24987049_258447,16:21:00,16:22:00,1475205,10, +24987049_258447,16:24:00,16:25:00,1475206,11, +24987049_258447,16:26:00,16:26:00,1474862,12, +24987049_258447,16:28:00,16:29:00,1475181,13, +24987049_258447,16:34:00,16:40:00,1474861,14, +24987049_258447,16:45:00,16:46:00,1475191,15, +24987049_258447,16:48:00,16:49:00,1475192,16, +24987049_258447,16:52:00,16:53:00,1475193,17, +24987049_258447,16:57:00,16:57:00,1475194,18, +24987049_258447,17:01:00,17:02:00,1475195,19, +24987049_258447,17:05:00,17:06:00,1475196,20, +24987049_258447,17:10:00,17:11:00,1474641,21, +24987049_258447,17:15:00,17:16:00,1474853,22, +24987049_258447,17:20:00,17:21:00,1474852,23, +24987049_258447,17:25:00,17:30:00,1474642,24, +24987049_258447,17:35:00,17:36:00,1474851,25, +24987049_258447,17:39:00,17:40:00,1474643,26, +24987049_258447,17:43:00,17:44:00,1475209,27, +24987049_258447,17:47:00,17:48:00,1475207,28, +24987049_258447,17:49:00,17:50:00,1474644,29, +24987049_258447,17:55:00,17:55:00,1475208,30, +24987049_258447,17:58:00,17:59:00,1474645,31, +24987049_258447,18:01:00,18:02:00,1474646,32, +24987049_258447,18:05:00,18:06:00,1474882,33, +24987049_258447,18:09:00,18:10:00,1474881,34, +24987049_258447,18:14:00,18:15:00,1474880,35, +24987049_258447,18:17:00,18:17:00,1474879,36, +24987049_258447,18:22:00,18:22:00,1474878,37, +24987049_258447,18:26:00,18:26:00,1474877,38, +24987049_258447,18:29:00,18:29:00,1474876,39, +24987049_258447,18:34:00,18:34:00,1474875,40, +24987052_258450,16:40:00,16:40:00,1474640,0, +24987052_258450,16:45:00,16:46:00,1475191,1, +24987052_258450,16:48:00,16:49:00,1475192,2, +24987052_258450,16:52:00,16:53:00,1475193,3, +24987052_258450,16:57:00,16:57:00,1475194,4, +24987052_258450,17:01:00,17:02:00,1475195,5, +24987052_258450,17:05:00,17:06:00,1475196,6, +24987052_258450,17:10:00,17:11:00,1474641,7, +24987052_258450,17:15:00,17:16:00,1474853,8, +24987052_258450,17:20:00,17:21:00,1474852,9, +24987052_258450,17:25:00,17:30:00,1474642,10, +24987052_258450,17:35:00,17:36:00,1474851,11, +24987052_258450,17:39:00,17:40:00,1474643,12, +24987052_258450,17:43:00,17:44:00,1475209,13, +24987052_258450,17:47:00,17:48:00,1475207,14, +24987052_258450,17:49:00,17:50:00,1474644,15, +24987052_258450,17:55:00,17:55:00,1475208,16, +24987052_258450,17:58:00,17:59:00,1474645,17, +24987052_258450,18:01:00,18:02:00,1474646,18, +24987052_258450,18:05:00,18:06:00,1474882,19, +24987052_258450,18:09:00,18:10:00,1474881,20, +24987052_258450,18:14:00,18:15:00,1474880,21, +24987052_258450,18:17:00,18:17:00,1474879,22, +24987052_258450,18:22:00,18:22:00,1474878,23, +24987052_258450,18:26:00,18:26:00,1474877,24, +24987052_258450,18:29:00,18:29:00,1474876,25, +24987052_258450,18:35:00,18:35:00,1474875,26, +24987053_258451,16:40:00,16:40:00,1474640,0, +24987053_258451,16:45:00,16:46:00,1475191,1, +24987053_258451,16:48:00,16:49:00,1475192,2, +24987053_258451,16:52:00,16:53:00,1475193,3, +24987053_258451,16:57:00,16:57:00,1475194,4, +24987053_258451,17:01:00,17:02:00,1475195,5, +24987053_258451,17:05:00,17:06:00,1475196,6, +24987053_258451,17:10:00,17:11:00,1474641,7, +24987053_258451,17:15:00,17:16:00,1474853,8, +24987053_258451,17:20:00,17:21:00,1474852,9, +24987053_258451,17:25:00,17:30:00,1474642,10, +24987053_258451,17:35:00,17:36:00,1474851,11, +24987053_258451,17:39:00,17:40:00,1474643,12, +24987053_258451,17:43:00,17:44:00,1475209,13, +24987053_258451,17:47:00,17:48:00,1475207,14, +24987053_258451,17:49:00,17:50:00,1474644,15, +24987053_258451,17:55:00,17:55:00,1475208,16, +24987053_258451,17:58:00,17:59:00,1474645,17, +24987053_258451,18:01:00,18:02:00,1474646,18, +24987053_258451,18:05:00,18:06:00,1474882,19, +24987053_258451,18:09:00,18:10:00,1474881,20, +24987053_258451,18:14:00,18:15:00,1474880,21, +24987053_258451,18:17:00,18:17:00,1474879,22, +24987053_258451,18:22:00,18:22:00,1474878,23, +24987053_258451,18:26:00,18:26:00,1474877,24, +24987053_258451,18:29:00,18:29:00,1474876,25, +24987053_258451,18:34:00,18:34:00,1474875,26, +24987058_258456,16:26:00,16:26:00,1474891,0, +24987058_258456,16:32:00,16:33:00,1475197,1, +24987058_258456,16:36:00,16:36:00,1475198,2, +24987058_258456,16:40:00,16:41:00,1475199,3, +24987058_258456,16:47:00,16:48:00,1475200,4, +24987058_258456,16:52:00,16:52:00,1475201,5, +24987058_258456,16:56:00,16:57:00,1474868,6, +24987058_258456,17:02:00,17:02:00,1475202,7, +24987058_258456,17:05:00,17:06:00,1475203,8, +24987058_258456,17:08:00,17:08:00,1475204,9, +24987058_258456,17:11:00,17:12:00,1475205,10, +24987058_258456,17:15:00,17:15:00,1475206,11, +24987058_258456,17:17:00,17:17:00,1474862,12, +24987058_258456,17:19:00,17:20:00,1475181,13, +24987058_258456,17:26:00,17:26:00,1474640,14, +24987060_258458,16:24:00,16:24:00,1474874,0, +24987060_258458,16:29:00,16:30:00,1475197,1, +24987060_258458,16:32:00,16:33:00,1475198,2, +24987060_258458,16:36:00,16:37:00,1475199,3, +24987060_258458,16:43:00,16:43:00,1474870,4, +24987060_258458,16:47:00,16:47:00,1475201,5, +24987060_258458,16:50:00,16:51:00,1474868,6, +24987060_258458,16:55:00,16:55:00,1475202,7, +24987060_258458,16:58:00,16:58:00,1475203,8, +24987060_258458,17:00:00,17:01:00,1475204,9, +24987060_258458,17:03:00,17:04:00,1475205,10, +24987060_258458,17:06:00,17:07:00,1475206,11, +24987060_258458,17:08:00,17:09:00,1609750,12, +24987060_258458,17:10:00,17:11:00,1475181,13, +24987060_258458,17:17:00,17:17:00,1474738,14, +24987063_258461,16:26:00,16:26:00,1474891,0, +24987063_258461,16:32:00,16:33:00,1475197,1, +24987063_258461,16:36:00,16:36:00,1475198,2, +24987063_258461,16:40:00,16:41:00,1475199,3, +24987063_258461,16:47:00,16:48:00,1475200,4, +24987063_258461,16:52:00,16:52:00,1475201,5, +24987063_258461,16:56:00,16:57:00,1474868,6, +24987063_258461,17:02:00,17:02:00,1475202,7, +24987063_258461,17:05:00,17:06:00,1475203,8, +24987063_258461,17:08:00,17:08:00,1475204,9, +24987063_258461,17:11:00,17:12:00,1475205,10, +24987063_258461,17:15:00,17:15:00,1475206,11, +24987063_258461,17:17:00,17:17:00,1474862,12, +24987063_258461,17:19:00,17:20:00,1475181,13, +24987063_258461,17:26:00,17:35:00,1474640,14, +24987063_258461,17:41:00,17:41:00,1475191,15, +24987063_258461,17:44:00,17:44:00,1475192,16, +24987063_258461,17:48:00,17:49:00,1475193,17, +24987063_258461,17:53:00,17:54:00,1475194,18, +24987063_258461,17:58:00,17:58:00,1475195,19, +24987063_258461,18:03:00,18:03:00,1475196,20, +24987063_258461,18:07:00,18:08:00,1474641,21, +24987063_258461,18:13:00,18:20:00,1703011,22, +24987063_258461,18:25:00,18:26:00,1474852,23, +24987063_258461,18:30:00,18:31:00,1474642,24, +24987063_258461,18:36:00,18:37:00,1474851,25, +24987063_258461,18:41:00,18:41:00,1474643,26, +24987063_258461,18:48:00,18:48:00,1475207,27, +24987063_258461,18:50:00,18:51:00,1474644,28, +24987063_258461,18:56:00,18:57:00,1475208,29, +24987063_258461,19:00:00,19:01:00,1474645,30, +24987063_258461,19:04:00,19:04:00,1474646,31, +24987064_258462,16:24:00,16:24:00,1474891,0, +24987064_258462,16:30:00,16:30:00,1475197,1, +24987064_258462,16:33:00,16:34:00,1475198,2, +24987064_258462,16:37:00,16:38:00,1475199,3, +24987064_258462,16:45:00,16:46:00,1475200,4, +24987064_258462,16:50:00,16:50:00,1475201,5, +24987064_258462,16:54:00,16:55:00,1474868,6, +24987064_258462,17:00:00,17:01:00,1475202,7, +24987064_258462,17:04:00,17:04:00,1475203,8, +24987064_258462,17:07:00,17:07:00,1475204,9, +24987064_258462,17:10:00,17:11:00,1475205,10, +24987064_258462,17:14:00,17:14:00,1475206,11, +24987064_258462,17:16:00,17:17:00,1474862,12, +24987064_258462,17:19:00,17:20:00,1475181,13, +24987064_258462,17:25:00,17:35:00,1474861,14, +24987064_258462,17:41:00,17:41:00,1475191,15, +24987064_258462,17:44:00,17:44:00,1475192,16, +24987064_258462,17:48:00,17:49:00,1475193,17, +24987064_258462,17:53:00,17:54:00,1475194,18, +24987064_258462,17:58:00,17:58:00,1475195,19, +24987064_258462,18:03:00,18:03:00,1475196,20, +24987064_258462,18:07:00,18:08:00,1474641,21, +24987064_258462,18:13:00,18:20:00,1703011,22, +24987064_258462,18:25:00,18:26:00,1474852,23, +24987064_258462,18:30:00,18:31:00,1474642,24, +24987064_258462,18:36:00,18:37:00,1474851,25, +24987064_258462,18:41:00,18:42:00,1474643,26, +24987064_258462,18:48:00,18:49:00,1475207,27, +24987064_258462,18:51:00,18:51:00,1474644,28, +24987064_258462,18:57:00,18:57:00,1475208,29, +24987064_258462,19:00:00,19:02:00,1474645,30, +24987064_258462,19:05:00,19:05:00,1474646,31, +24987066_258464,17:35:00,17:35:00,1474640,0, +24987066_258464,17:41:00,17:41:00,1475191,1, +24987066_258464,17:44:00,17:44:00,1475192,2, +24987066_258464,17:48:00,17:49:00,1475193,3, +24987066_258464,17:53:00,17:54:00,1475194,4, +24987066_258464,17:58:00,17:58:00,1475195,5, +24987066_258464,18:03:00,18:03:00,1475196,6, +24987066_258464,18:07:00,18:08:00,1474641,7, +24987066_258464,18:13:00,18:20:00,1703011,8, +24987066_258464,18:25:00,18:26:00,1474852,9, +24987066_258464,18:30:00,18:31:00,1474642,10, +24987066_258464,18:36:00,18:37:00,1474851,11, +24987066_258464,18:41:00,18:41:00,1474643,12, +24987066_258464,18:48:00,18:48:00,1475207,13, +24987066_258464,18:50:00,18:51:00,1474644,14, +24987066_258464,18:56:00,18:57:00,1475208,15, +24987066_258464,19:00:00,19:01:00,1474645,16, +24987066_258464,19:04:00,19:04:00,1474646,17, +24987067_258465,17:35:00,17:35:00,1474640,0, +24987067_258465,17:41:00,17:41:00,1475191,1, +24987067_258465,17:44:00,17:44:00,1475192,2, +24987067_258465,17:48:00,17:49:00,1475193,3, +24987067_258465,17:53:00,17:54:00,1475194,4, +24987067_258465,17:58:00,17:58:00,1475195,5, +24987067_258465,18:03:00,18:03:00,1475196,6, +24987067_258465,18:07:00,18:08:00,1474641,7, +24987067_258465,18:13:00,18:20:00,1703011,8, +24987067_258465,18:25:00,18:26:00,1474852,9, +24987067_258465,18:30:00,18:31:00,1474642,10, +24987067_258465,18:36:00,18:37:00,1474851,11, +24987067_258465,18:41:00,18:42:00,1474643,12, +24987067_258465,18:48:00,18:49:00,1475207,13, +24987067_258465,18:51:00,18:51:00,1474644,14, +24987067_258465,18:57:00,18:57:00,1475208,15, +24987067_258465,19:00:00,19:02:00,1474645,16, +24987067_258465,19:05:00,19:05:00,1474646,17, +24987069_258467,17:40:00,17:40:00,1474874,0, +24987069_258467,17:45:00,17:46:00,1475197,1, +24987069_258467,17:48:00,17:49:00,1475198,2, +24987069_258467,17:52:00,17:53:00,1475199,3, +24987069_258467,17:59:00,17:59:00,1475200,4, +24987069_258467,18:03:00,18:03:00,1475201,5, +24987069_258467,18:07:00,18:08:00,1474868,6, +24987069_258467,18:12:00,18:12:00,1475202,7, +24987069_258467,18:15:00,18:15:00,1475203,8, +24987069_258467,18:17:00,18:18:00,1475204,9, +24987069_258467,18:20:00,18:21:00,1475205,10, +24987069_258467,18:23:00,18:24:00,1475206,11, +24987069_258467,18:25:00,18:26:00,1474862,12, +24987069_258467,18:27:00,18:28:00,1475181,13, +24987069_258467,18:33:00,18:52:00,1474640,14, +24987069_258467,18:57:00,18:58:00,1475191,15, +24987069_258467,19:00:00,19:01:00,1475192,16, +24987069_258467,19:04:00,19:05:00,1475193,17, +24987069_258467,19:09:00,19:10:00,1475194,18, +24987069_258467,19:13:00,19:14:00,1475195,19, +24987069_258467,19:18:00,19:18:00,1475196,20, +24987069_258467,19:22:00,19:23:00,1474641,21, +24987069_258467,19:27:00,19:28:00,1474853,22, +24987069_258467,19:32:00,19:33:00,1474852,23, +24987069_258467,19:37:00,19:38:00,1474642,24, +24987069_258467,19:43:00,19:44:00,1474851,25, +24987069_258467,19:48:00,19:48:00,1474643,26, +24987069_258467,19:54:00,19:55:00,1475207,27, +24987069_258467,19:56:00,19:57:00,1474644,28, +24987069_258467,20:02:00,20:03:00,1475208,29, +24987069_258467,20:06:00,20:06:00,1474645,30, +24987069_258467,20:08:00,20:09:00,1474646,31, +24987069_258467,20:12:00,20:13:00,1474882,32, +24987069_258467,20:16:00,20:17:00,1474881,33, +24987069_258467,20:21:00,20:22:00,1474880,34, +24987069_258467,20:24:00,20:24:00,1474879,35, +24987069_258467,20:28:00,20:29:00,1474878,36, +24987069_258467,20:32:00,20:33:00,1474877,37, +24987069_258467,20:35:00,20:36:00,1474876,38, +24987069_258467,20:41:00,20:41:00,1474875,39, +24987070_258468,17:41:00,17:41:00,1474874,0, +24987070_258468,17:46:00,17:47:00,1475197,1, +24987070_258468,17:49:00,17:50:00,1475198,2, +24987070_258468,17:53:00,17:54:00,1475199,3, +24987070_258468,18:00:00,18:00:00,1475200,4, +24987070_258468,18:04:00,18:04:00,1475201,5, +24987070_258468,18:07:00,18:08:00,1474868,6, +24987070_258468,18:12:00,18:13:00,1475202,7, +24987070_258468,18:15:00,18:16:00,1475203,8, +24987070_258468,18:18:00,18:18:00,1475204,9, +24987070_258468,18:21:00,18:21:00,1475205,10, +24987070_258468,18:24:00,18:24:00,1475206,11, +24987070_258468,18:26:00,18:26:00,1474862,12, +24987070_258468,18:28:00,18:29:00,1475181,13, +24987070_258468,18:34:00,18:51:00,1474861,14, +24987070_258468,18:56:00,18:57:00,1475191,15, +24987070_258468,18:59:00,19:00:00,1475192,16, +24987070_258468,19:03:00,19:04:00,1475193,17, +24987070_258468,19:08:00,19:09:00,1475194,18, +24987070_258468,19:12:00,19:13:00,1475195,19, +24987070_258468,19:17:00,19:17:00,1475196,20, +24987070_258468,19:21:00,19:22:00,1474641,21, +24987070_258468,19:26:00,19:27:00,1474853,22, +24987070_258468,19:31:00,19:32:00,1474852,23, +24987070_258468,19:36:00,19:37:00,1474642,24, +24987070_258468,19:42:00,19:43:00,1474851,25, +24987070_258468,19:47:00,19:47:00,1474643,26, +24987070_258468,19:53:00,19:54:00,1475207,27, +24987070_258468,19:55:00,19:56:00,1474644,28, +24987070_258468,20:01:00,20:02:00,1475208,29, +24987070_258468,20:05:00,20:05:00,1474645,30, +24987070_258468,20:07:00,20:08:00,1474646,31, +24987070_258468,20:11:00,20:12:00,1474882,32, +24987070_258468,20:15:00,20:16:00,1474881,33, +24987070_258468,20:20:00,20:21:00,1474880,34, +24987070_258468,20:22:00,20:23:00,1474879,35, +24987070_258468,20:27:00,20:27:00,1474878,36, +24987070_258468,20:30:00,20:31:00,1474877,37, +24987070_258468,20:33:00,20:34:00,1474876,38, +24987070_258468,20:38:00,20:38:00,1474875,39, +24987078_258476,18:56:00,18:56:00,1474874,0, +24987078_258476,19:01:00,19:02:00,1475197,1, +24987078_258476,19:04:00,19:05:00,1475198,2, +24987078_258476,19:08:00,19:09:00,1475199,3, +24987078_258476,19:15:00,19:15:00,1475200,4, +24987078_258476,19:19:00,19:19:00,1475201,5, +24987078_258476,19:23:00,19:24:00,1474868,6, +24987078_258476,19:28:00,19:28:00,1475202,7, +24987078_258476,19:31:00,19:31:00,1475203,8, +24987078_258476,19:33:00,19:34:00,1475204,9, +24987078_258476,19:36:00,19:37:00,1475205,10, +24987078_258476,19:39:00,19:40:00,1475206,11, +24987078_258476,19:41:00,19:42:00,1474862,12, +24987078_258476,19:43:00,19:44:00,1475181,13, +24987078_258476,19:49:00,19:56:00,1536279,14, +24987078_258476,20:01:00,20:02:00,1475191,15, +24987078_258476,20:04:00,20:05:00,1475192,16, +24987078_258476,20:08:00,20:09:00,1475193,17, +24987078_258476,20:13:00,20:14:00,1475194,18, +24987078_258476,20:17:00,20:18:00,1475195,19, +24987078_258476,20:22:00,20:22:00,1475196,20, +24987078_258476,20:26:00,20:27:00,1474641,21, +24987078_258476,20:32:00,20:32:00,1474853,22, +24987078_258476,20:37:00,20:37:00,1474852,23, +24987078_258476,20:43:00,20:43:00,1474642,24, +24987079_258477,18:58:00,18:58:00,1474874,0, +24987079_258477,19:03:00,19:03:00,1475197,1, +24987079_258477,19:06:00,19:06:00,1475198,2, +24987079_258477,19:09:00,19:10:00,1475199,3, +24987079_258477,19:16:00,19:17:00,1475200,4, +24987079_258477,19:20:00,19:21:00,1475201,5, +24987079_258477,19:24:00,19:25:00,1474868,6, +24987079_258477,19:29:00,19:30:00,1475202,7, +24987079_258477,19:32:00,19:33:00,1475203,8, +24987079_258477,19:35:00,19:35:00,1475204,9, +24987079_258477,19:38:00,19:39:00,1475205,10, +24987079_258477,19:41:00,19:42:00,1475206,11, +24987079_258477,19:43:00,19:43:00,1474862,12, +24987079_258477,19:45:00,19:46:00,1475181,13, +24987079_258477,19:51:00,19:56:00,1474861,14, +24987079_258477,20:01:00,20:02:00,1475191,15, +24987079_258477,20:04:00,20:05:00,1475192,16, +24987079_258477,20:08:00,20:09:00,1475193,17, +24987079_258477,20:13:00,20:14:00,1475194,18, +24987079_258477,20:17:00,20:18:00,1475195,19, +24987079_258477,20:22:00,20:22:00,1475196,20, +24987079_258477,20:26:00,20:27:00,1474641,21, +24987079_258477,20:32:00,20:32:00,1474853,22, +24987079_258477,20:37:00,20:37:00,1474852,23, +24987079_258477,20:43:00,20:43:00,1474642,24, +24987081_258479,19:45:00,19:45:00,1474874,0, +24987081_258479,19:50:00,19:51:00,1475197,1, +24987081_258479,19:53:00,19:54:00,1475198,2, +24987081_258479,19:57:00,19:58:00,1475199,3, +24987081_258479,20:04:00,20:04:00,1475200,4, +24987081_258479,20:08:00,20:08:00,1475201,5, +24987081_258479,20:12:00,20:13:00,1474868,6, +24987081_258479,20:17:00,20:17:00,1475202,7, +24987081_258479,20:20:00,20:20:00,1475203,8, +24987081_258479,20:22:00,20:23:00,1475204,9, +24987081_258479,20:25:00,20:26:00,1475205,10, +24987081_258479,20:28:00,20:29:00,1475206,11, +24987081_258479,20:30:00,20:31:00,1474862,12, +24987081_258479,20:32:00,20:33:00,1475181,13, +24987081_258479,20:39:00,20:39:00,1474738,14, +24987082_258480,19:53:00,19:53:00,1474874,0, +24987082_258480,19:58:00,19:58:00,1475197,1, +24987082_258480,20:01:00,20:01:00,1475198,2, +24987082_258480,20:04:00,20:05:00,1475199,3, +24987082_258480,20:11:00,20:12:00,1475200,4, +24987082_258480,20:15:00,20:16:00,1475201,5, +24987082_258480,20:19:00,20:20:00,1474868,6, +24987082_258480,20:24:00,20:25:00,1475202,7, +24987082_258480,20:28:00,20:28:00,1475203,8, +24987082_258480,20:30:00,20:30:00,1475204,9, +24987082_258480,20:33:00,20:34:00,1475205,10, +24987082_258480,20:36:00,20:37:00,1475206,11, +24987082_258480,20:38:00,20:38:00,1474862,12, +24987082_258480,20:40:00,20:41:00,1475181,13, +24987082_258480,20:46:00,20:46:00,1474738,14, +24987084_258482,20:53:00,20:53:00,1474640,0, +24987084_258482,20:59:00,20:59:00,1475191,1, +24987084_258482,21:02:00,21:02:00,1475192,2, +24987084_258482,21:06:00,21:06:00,1475193,3, +24987084_258482,21:11:00,21:11:00,1475194,4, +24987084_258482,21:15:00,21:16:00,1475195,5, +24987084_258482,21:20:00,21:20:00,1475196,6, +24987084_258482,21:24:00,21:25:00,1474641,7, +24987084_258482,21:29:00,21:30:00,1474853,8, +24987084_258482,21:35:00,21:35:00,1474852,9, +24987084_258482,21:40:00,21:41:00,1474642,10, +24987084_258482,21:47:00,21:47:00,1474851,11, +24987084_258482,21:51:00,21:54:00,1474643,12, +24987084_258482,22:02:00,22:02:00,1475207,13, +24987084_258482,22:05:00,22:06:00,1474644,14, +24987084_258482,22:11:00,22:12:00,1475208,15, +24987084_258482,22:17:00,22:18:00,1474645,16, +24987084_258482,22:20:00,22:21:00,1474646,17, +24987084_258482,22:24:00,22:25:00,1474882,18, +24987084_258482,22:28:00,22:29:00,1474881,19, +24987084_258482,22:33:00,22:33:00,1474880,20, +24987084_258482,22:35:00,22:36:00,1474879,21, +24987084_258482,22:40:00,22:40:00,1474878,22, +24987084_258482,22:43:00,22:44:00,1474877,23, +24987084_258482,22:47:00,22:47:00,1474876,24, +24987084_258482,22:52:00,22:52:00,1474875,25, +24987085_258483,20:53:00,20:53:00,1474651,0, +24987085_258483,20:59:00,20:59:00,1475191,1, +24987085_258483,21:02:00,21:02:00,1475192,2, +24987085_258483,21:06:00,21:06:00,1475193,3, +24987085_258483,21:11:00,21:11:00,1475194,4, +24987085_258483,21:15:00,21:16:00,1475195,5, +24987085_258483,21:20:00,21:20:00,1475196,6, +24987085_258483,21:24:00,21:25:00,1474641,7, +24987085_258483,21:29:00,21:30:00,1474853,8, +24987085_258483,21:35:00,21:35:00,1474852,9, +24987085_258483,21:40:00,21:41:00,1474642,10, +24987085_258483,21:47:00,21:47:00,1474851,11, +24987085_258483,21:51:00,21:54:00,1474643,12, +24987085_258483,22:00:00,22:01:00,1475207,13, +24987085_258483,22:03:00,22:04:00,1474644,14, +24987085_258483,22:09:00,22:10:00,1475208,15, +24987085_258483,22:13:00,22:16:00,1474645,16, +24987085_258483,22:18:00,22:19:00,1474646,17, +24987085_258483,22:22:00,22:23:00,1474882,18, +24987085_258483,22:26:00,22:27:00,1474881,19, +24987085_258483,22:31:00,22:32:00,1474880,20, +24987085_258483,22:34:00,22:34:00,1474879,21, +24987085_258483,22:39:00,22:39:00,1474878,22, +24987085_258483,22:42:00,22:43:00,1474877,23, +24987085_258483,22:46:00,22:46:00,1474876,24, +24987085_258483,22:52:00,22:52:00,1474875,25, +24987095_258493,21:55:00,21:55:00,1536279,0, +24987095_258493,22:00:00,22:01:00,1475191,1, +24987095_258493,22:04:00,22:04:00,1475192,2, +24987095_258493,22:08:00,22:08:00,1475193,3, +24987095_258493,22:13:00,22:13:00,1475194,4, +24987095_258493,22:17:00,22:18:00,1475195,5, +24987095_258493,22:22:00,22:23:00,1475196,6, +24987095_258493,22:27:00,22:28:00,1474641,7, +24987095_258493,22:32:00,22:33:00,1474853,8, +24987095_258493,22:38:00,22:38:00,1474852,9, +24987095_258493,22:42:00,22:43:00,1474642,10, +24987095_258493,22:49:00,22:50:00,1474851,11, +24987095_258493,22:54:00,22:55:00,1474643,12, +24987095_258493,23:02:00,23:02:00,1475207,13, +24987095_258493,23:04:00,23:05:00,1474644,14, +24987095_258493,23:10:00,23:11:00,1475208,15, +24987095_258493,23:14:00,23:15:00,1474645,16, +24987095_258493,23:18:00,23:18:00,1474646,17, +24987096_258494,21:55:00,21:55:00,1474640,0, +24987096_258494,22:00:00,22:01:00,1475191,1, +24987096_258494,22:04:00,22:04:00,1475192,2, +24987096_258494,22:08:00,22:08:00,1475193,3, +24987096_258494,22:13:00,22:13:00,1475194,4, +24987096_258494,22:17:00,22:18:00,1475195,5, +24987096_258494,22:22:00,22:23:00,1475196,6, +24987096_258494,22:27:00,22:28:00,1474641,7, +24987096_258494,22:32:00,22:33:00,1474853,8, +24987096_258494,22:38:00,22:38:00,1474852,9, +24987096_258494,22:42:00,22:43:00,1474642,10, +24987096_258494,22:49:00,22:50:00,1474851,11, +24987096_258494,22:54:00,22:55:00,1474643,12, +24987096_258494,23:02:00,23:02:00,1475207,13, +24987096_258494,23:04:00,23:05:00,1474644,14, +24987096_258494,23:10:00,23:11:00,1475208,15, +24987096_258494,23:14:00,23:15:00,1474645,16, +24987096_258494,23:18:00,23:18:00,1474646,17, +24987097_258495,21:55:00,21:55:00,1474640,0, +24987097_258495,22:00:00,22:01:00,1475191,1, +24987097_258495,22:04:00,22:04:00,1475192,2, +24987097_258495,22:08:00,22:08:00,1475193,3, +24987097_258495,22:13:00,22:13:00,1475194,4, +24987097_258495,22:17:00,22:18:00,1475195,5, +24987097_258495,22:22:00,22:22:00,1475196,6, +24987097_258495,22:26:00,22:27:00,1474641,7, +24987097_258495,22:32:00,22:32:00,1474853,8, +24987097_258495,22:37:00,22:38:00,1474852,9, +24987097_258495,22:42:00,22:43:00,1474642,10, +24987097_258495,22:49:00,22:50:00,1474851,11, +24987097_258495,22:54:00,22:55:00,1474643,12, +24987097_258495,23:02:00,23:02:00,1475207,13, +24987097_258495,23:04:00,23:05:00,1474644,14, +24987097_258495,23:10:00,23:11:00,1475208,15, +24987097_258495,23:14:00,23:15:00,1474645,16, +24987097_258495,23:18:00,23:18:00,1474646,17, +24987099_258497,23:00:00,23:00:00,1474640,0, +24987099_258497,23:06:00,23:06:00,1475191,1, +24987099_258497,23:09:00,23:09:00,1475192,2, +24987099_258497,23:13:00,23:13:00,1475193,3, +24987099_258497,23:18:00,23:18:00,1475194,4, +24987099_258497,23:22:00,23:23:00,1475195,5, +24987099_258497,23:27:00,23:27:00,1475196,6, +24987099_258497,23:31:00,23:32:00,1474641,7, +24987099_258497,23:37:00,23:37:00,1474853,8, +24987099_258497,23:42:00,23:43:00,1474852,9, +24987099_258497,23:47:00,23:48:00,1474642,10, +24987099_258497,23:54:00,23:55:00,1474851,11, +24987099_258497,23:58:00,23:59:00,1474643,12, +24987099_258497,24:06:00,24:06:00,1475207,13, +24987099_258497,24:08:00,24:09:00,1474644,14, +24987099_258497,24:14:00,24:15:00,1475208,15, +24987099_258497,24:18:00,24:18:00,1474645,16, +24987101_258499,04:53:00,04:53:00,1474861,0, +24987101_258499,04:57:00,04:58:00,1474903,1, +24987101_258499,05:03:00,05:04:00,1474904,2, +24987101_258499,05:07:00,05:08:00,1474905,3, +24987101_258499,05:13:00,05:13:00,1474906,4, +24987101_258499,05:18:00,05:18:00,1474907,5, +24987101_258499,05:22:00,05:22:00,1474908,6, +24987102_258500,04:55:00,04:55:00,1474861,0, +24987102_258500,04:59:00,05:00:00,1474903,1, +24987102_258500,05:05:00,05:05:00,1474904,2, +24987102_258500,05:09:00,05:09:00,1474905,3, +24987102_258500,05:15:00,05:15:00,1474906,4, +24987102_258500,05:19:00,05:20:00,1474907,5, +24987102_258500,05:24:00,05:24:00,1474908,6, +24987104_258502,04:12:00,04:12:00,1475210,0, +24987104_258502,04:18:00,04:18:00,1475211,1, +24987104_258502,04:23:00,04:23:00,1475212,2, +24987104_258502,04:26:00,04:26:00,1475213,3, +24987104_258502,04:29:00,04:30:00,1474705,4, +24987104_258502,04:33:00,04:33:00,1475214,5, +24987104_258502,04:37:00,04:38:00,1474703,6, +24987104_258502,04:40:00,04:41:00,1475180,7, +24987104_258502,04:43:00,04:44:00,1475181,8, +24987104_258502,04:49:00,04:53:00,1474861,9, +24987104_258502,04:57:00,04:58:00,1474903,10, +24987104_258502,05:03:00,05:04:00,1474904,11, +24987104_258502,05:07:00,05:08:00,1474905,12, +24987104_258502,05:13:00,05:13:00,1474906,13, +24987104_258502,05:18:00,05:18:00,1474907,14, +24987104_258502,05:22:00,05:22:00,1474908,15, +24987105_258503,04:15:00,04:15:00,1475210,0, +24987105_258503,04:21:00,04:21:00,1475211,1, +24987105_258503,04:25:00,04:26:00,1475212,2, +24987105_258503,04:28:00,04:29:00,1475213,3, +24987105_258503,04:32:00,04:32:00,1474705,4, +24987105_258503,04:35:00,04:36:00,1475214,5, +24987105_258503,04:40:00,04:41:00,1474703,6, +24987105_258503,04:43:00,04:43:00,1475180,7, +24987105_258503,04:45:00,04:46:00,1475181,8, +24987105_258503,04:51:00,04:55:00,1474861,9, +24987105_258503,04:59:00,05:00:00,1474903,10, +24987105_258503,05:05:00,05:05:00,1474904,11, +24987105_258503,05:09:00,05:09:00,1474905,12, +24987105_258503,05:15:00,05:15:00,1474906,13, +24987105_258503,05:19:00,05:20:00,1474907,14, +24987105_258503,05:24:00,05:24:00,1474908,15, +24987107_258505,05:37:00,05:37:00,1536279,0, +24987107_258505,05:41:00,05:42:00,1474903,1, +24987107_258505,05:47:00,05:53:00,1474904,2, +24987107_258505,05:56:00,05:57:00,1474905,3, +24987107_258505,06:02:00,06:03:00,1474906,4, +24987107_258505,06:06:00,06:07:00,1474907,5, +24987107_258505,06:11:00,06:11:00,1474908,6, +24987108_258506,05:38:00,05:38:00,1474861,0, +24987108_258506,05:43:00,05:43:00,1474903,1, +24987108_258506,05:48:00,05:54:00,1474904,2, +24987108_258506,05:57:00,05:58:00,1474905,3, +24987108_258506,06:03:00,06:04:00,1474906,4, +24987108_258506,06:07:00,06:08:00,1474907,5, +24987108_258506,06:12:00,06:12:00,1474908,6, +24987109_258507,07:21:00,07:21:00,1474640,0, +24987109_258507,07:25:00,07:26:00,1474903,1, +24987109_258507,07:31:00,07:32:00,1474904,2, +24987109_258507,07:35:00,07:36:00,1474905,3, +24987109_258507,07:41:00,07:42:00,1474906,4, +24987109_258507,07:48:00,07:49:00,1474907,5, +24987109_258507,07:53:00,07:53:00,1474908,6, +24987110_258508,07:24:00,07:24:00,1474861,0, +24987110_258508,07:28:00,07:29:00,1474903,1, +24987110_258508,07:34:00,07:35:00,1474904,2, +24987110_258508,07:38:00,07:39:00,1474905,3, +24987110_258508,07:44:00,07:45:00,1474906,4, +24987110_258508,07:49:00,07:50:00,1474907,5, +24987110_258508,07:54:00,07:54:00,1474908,6, +24987112_258510,05:14:00,05:14:00,1475210,0, +24987112_258510,05:20:00,05:20:00,1475211,1, +24987112_258510,05:25:00,05:25:00,1475212,2, +24987112_258510,05:27:00,05:28:00,1475213,3, +24987112_258510,05:31:00,05:31:00,1474705,4, +24987112_258510,05:34:00,05:34:00,1475214,5, +24987112_258510,05:38:00,05:40:00,1474703,6, +24987112_258510,05:42:00,05:43:00,1475180,7, +24987112_258510,05:46:00,05:48:00,1475181,8, +24987112_258510,05:54:00,05:54:00,1474738,9, +24987113_258511,05:15:00,05:15:00,1475210,0, +24987113_258511,05:21:00,05:22:00,1475211,1, +24987113_258511,05:26:00,05:26:00,1475212,2, +24987113_258511,05:29:00,05:29:00,1475213,3, +24987113_258511,05:32:00,05:33:00,1474705,4, +24987113_258511,05:35:00,05:36:00,1475214,5, +24987113_258511,05:40:00,05:41:00,1474703,6, +24987113_258511,05:43:00,05:43:00,1475180,7, +24987113_258511,05:46:00,05:47:00,1475181,8, +24987113_258511,05:52:00,05:52:00,1474738,9, +24987116_258514,06:21:00,06:21:00,1474738,0, +24987116_258514,06:25:00,06:26:00,1474903,1, +24987116_258514,06:31:00,06:31:00,1474904,2, +24987116_258514,06:35:00,06:35:00,1474905,3, +24987116_258514,06:40:00,06:41:00,1474906,4, +24987116_258514,06:45:00,06:46:00,1474907,5, +24987116_258514,06:50:00,06:50:00,1474908,6, +24987117_258515,06:19:00,06:19:00,1474861,0, +24987117_258515,06:23:00,06:24:00,1474903,1, +24987117_258515,06:29:00,06:29:00,1474904,2, +24987117_258515,06:32:00,06:33:00,1474905,3, +24987117_258515,06:38:00,06:39:00,1474906,4, +24987117_258515,06:43:00,06:44:00,1474907,5, +24987117_258515,06:48:00,06:48:00,1474908,6, +24987119_258517,07:55:00,07:55:00,1536279,0, +24987119_258517,08:00:00,08:00:00,1474903,1, +24987119_258517,08:05:00,08:06:00,1474904,2, +24987119_258517,08:09:00,08:10:00,1474905,3, +24987119_258517,08:15:00,08:15:00,1474906,4, +24987119_258517,08:19:00,08:20:00,1474907,5, +24987119_258517,08:24:00,08:24:00,1474908,6, +24987120_258518,07:44:00,07:44:00,1474861,0, +24987120_258518,07:49:00,07:49:00,1474903,1, +24987120_258518,07:55:00,08:03:00,1474904,2, +24987120_258518,08:06:00,08:07:00,1474905,3, +24987120_258518,08:12:00,08:12:00,1474906,4, +24987120_258518,08:16:00,08:17:00,1474907,5, +24987120_258518,08:21:00,08:21:00,1474908,6, +24987122_258520,08:08:00,08:08:00,1475210,0, +24987122_258520,08:14:00,08:15:00,1475211,1, +24987122_258520,08:19:00,08:19:00,1475212,2, +24987122_258520,08:22:00,08:22:00,1475213,3, +24987122_258520,08:25:00,08:26:00,1474705,4, +24987122_258520,08:28:00,08:29:00,1475214,5, +24987122_258520,08:33:00,08:34:00,1474703,6, +24987122_258520,08:36:00,08:36:00,1475180,7, +24987122_258520,08:39:00,08:40:00,1475181,8, +24987122_258520,08:45:00,08:49:00,1474861,9, +24987122_258520,08:53:00,08:54:00,1474903,10, +24987122_258520,08:59:00,09:04:00,1474904,11, +24987122_258520,09:08:00,09:08:00,1474905,12, +24987122_258520,09:13:00,09:14:00,1474906,13, +24987122_258520,09:18:00,09:18:00,1474907,14, +24987122_258520,09:22:00,09:22:00,1474908,15, +24987123_258521,08:10:00,08:10:00,1475210,0, +24987123_258521,08:15:00,08:16:00,1475211,1, +24987123_258521,08:20:00,08:20:00,1475212,2, +24987123_258521,08:23:00,08:23:00,1475213,3, +24987123_258521,08:26:00,08:26:00,1474705,4, +24987123_258521,08:29:00,08:29:00,1475214,5, +24987123_258521,08:33:00,08:34:00,1474703,6, +24987123_258521,08:36:00,08:37:00,1475180,7, +24987123_258521,08:39:00,08:40:00,1475181,8, +24987123_258521,08:45:00,08:49:00,1474861,9, +24987123_258521,08:54:00,08:55:00,1474903,10, +24987123_258521,09:00:00,09:00:00,1474904,11, +24987123_258521,09:04:00,09:04:00,1474905,12, +24987123_258521,09:10:00,09:10:00,1474906,13, +24987123_258521,09:14:00,09:15:00,1474907,14, +24987123_258521,09:19:00,09:19:00,1474908,15, +24987131_258529,11:50:00,11:50:00,1474640,0, +24987131_258529,11:54:00,11:55:00,1474903,1, +24987131_258529,12:00:00,12:00:00,1474904,2, +24987131_258529,12:04:00,12:04:00,1474905,3, +24987131_258529,12:09:00,12:09:00,1474906,4, +24987131_258529,12:13:00,12:14:00,1474907,5, +24987131_258529,12:18:00,12:18:00,1474908,6, +24987132_258530,11:50:00,11:50:00,1474861,0, +24987132_258530,11:54:00,11:55:00,1474903,1, +24987132_258530,12:00:00,12:00:00,1474904,2, +24987132_258530,12:04:00,12:04:00,1474905,3, +24987132_258530,12:09:00,12:10:00,1474906,4, +24987132_258530,12:14:00,12:14:00,1474907,5, +24987132_258530,12:18:00,12:18:00,1474908,6, +24987134_258532,13:55:00,13:55:00,1474738,0, +24987134_258532,13:59:00,14:00:00,1474903,1, +24987134_258532,14:05:00,14:06:00,1474904,2, +24987134_258532,14:09:00,14:10:00,1474905,3, +24987134_258532,14:15:00,14:15:00,1474906,4, +24987134_258532,14:19:00,14:20:00,1474907,5, +24987134_258532,14:24:00,14:24:00,1474908,6, +24987135_258533,13:50:00,13:50:00,1474861,0, +24987135_258533,13:55:00,13:55:00,1474903,1, +24987135_258533,14:00:00,14:01:00,1474904,2, +24987135_258533,14:04:00,14:05:00,1474905,3, +24987135_258533,14:10:00,14:11:00,1474906,4, +24987135_258533,14:14:00,14:15:00,1474907,5, +24987135_258533,14:19:00,14:19:00,1474908,6, +24987137_258535,14:40:00,14:40:00,1536279,0, +24987137_258535,14:45:00,14:45:00,1474903,1, +24987137_258535,14:51:00,14:56:00,1474904,2, +24987137_258535,14:59:00,15:00:00,1474905,3, +24987137_258535,15:05:00,15:05:00,1474906,4, +24987137_258535,15:10:00,15:10:00,1474907,5, +24987137_258535,15:14:00,15:14:00,1474908,6, +24987138_258536,14:40:00,14:40:00,1474861,0, +24987138_258536,14:45:00,14:45:00,1474903,1, +24987138_258536,14:51:00,14:51:00,1474904,2, +24987138_258536,14:55:00,14:56:00,1474905,3, +24987138_258536,15:01:00,15:02:00,1474906,4, +24987138_258536,15:06:00,15:06:00,1474907,5, +24987138_258536,15:10:00,15:10:00,1474908,6, +24987140_258538,16:08:00,16:08:00,1536279,0, +24987140_258538,16:12:00,16:13:00,1474903,1, +24987140_258538,16:18:00,16:19:00,1474904,2, +24987140_258538,16:22:00,16:22:00,1474905,3, +24987140_258538,16:28:00,16:29:00,1474906,4, +24987140_258538,16:35:00,16:36:00,1474907,5, +24987140_258538,16:40:00,16:40:00,1474908,6, +24987142_258540,16:20:00,16:20:00,1474861,0, +24987142_258540,16:25:00,16:25:00,1474903,1, +24987142_258540,16:30:00,16:31:00,1474904,2, +24987142_258540,16:34:00,16:35:00,1474905,3, +24987142_258540,16:40:00,16:41:00,1474906,4, +24987142_258540,16:45:00,16:45:00,1474907,5, +24987142_258540,16:49:00,16:49:00,1474908,6, +24987144_258542,16:48:00,16:48:00,1474738,0, +24987144_258542,16:52:00,16:53:00,1474903,1, +24987144_258542,16:58:00,16:58:00,1474904,2, +24987144_258542,17:02:00,17:02:00,1474905,3, +24987144_258542,17:07:00,17:07:00,1474906,4, +24987144_258542,17:11:00,17:12:00,1474907,5, +24987144_258542,17:17:00,17:17:00,1474908,6, +24987146_258544,16:50:00,16:50:00,1474861,0, +24987146_258544,16:54:00,16:55:00,1474903,1, +24987146_258544,17:00:00,17:01:00,1474904,2, +24987146_258544,17:04:00,17:05:00,1474905,3, +24987146_258544,17:10:00,17:10:00,1474906,4, +24987146_258544,17:14:00,17:14:00,1474907,5, +24987146_258544,17:18:00,17:18:00,1474908,6, +24987150_258548,17:37:00,17:37:00,1536279,0, +24987150_258548,17:41:00,17:42:00,1474903,1, +24987150_258548,17:47:00,17:48:00,1474904,2, +24987150_258548,17:51:00,17:52:00,1474905,3, +24987150_258548,17:57:00,17:57:00,1474906,4, +24987150_258548,18:01:00,18:02:00,1474907,5, +24987150_258548,18:06:00,18:06:00,1474908,6, +24987151_258549,17:39:00,17:39:00,1474861,0, +24987151_258549,17:43:00,17:44:00,1474903,1, +24987151_258549,17:49:00,17:49:00,1474904,2, +24987151_258549,17:53:00,17:53:00,1474905,3, +24987151_258549,17:58:00,17:59:00,1474906,4, +24987151_258549,18:02:00,18:03:00,1474907,5, +24987151_258549,18:07:00,18:07:00,1474908,6, +24987154_258552,18:14:00,18:14:00,1536279,0, +24987154_258552,18:19:00,18:19:00,1474903,1, +24987154_258552,18:24:00,18:25:00,1474904,2, +24987154_258552,18:28:00,18:29:00,1474905,3, +24987154_258552,18:33:00,18:34:00,1474906,4, +24987154_258552,18:38:00,18:38:00,1474907,5, +24987154_258552,18:43:00,18:43:00,1474908,6, +24987155_258553,18:10:00,18:10:00,1474861,0, +24987155_258553,18:14:00,18:15:00,1474903,1, +24987155_258553,18:21:00,18:22:00,1474904,2, +24987155_258553,18:25:00,18:26:00,1474905,3, +24987155_258553,18:31:00,18:31:00,1474906,4, +24987155_258553,18:35:00,18:36:00,1474907,5, +24987155_258553,18:39:00,18:39:00,1474908,6, +24987157_258555,20:45:00,20:45:00,1474861,0, +24987157_258555,20:49:00,20:50:00,1474903,1, +24987157_258555,20:55:00,20:56:00,1474904,2, +24987157_258555,20:59:00,21:00:00,1474905,3, +24987157_258555,21:05:00,21:05:00,1474906,4, +24987157_258555,21:09:00,21:10:00,1474907,5, +24987157_258555,21:14:00,21:14:00,1474908,6, +24987158_258556,20:40:00,20:40:00,1474861,0, +24987158_258556,20:45:00,20:45:00,1474903,1, +24987158_258556,20:50:00,20:51:00,1474904,2, +24987158_258556,20:54:00,20:55:00,1474905,3, +24987158_258556,21:00:00,21:01:00,1474906,4, +24987158_258556,21:05:00,21:05:00,1474907,5, +24987158_258556,21:10:00,21:10:00,1474908,6, +24987160_258558,19:27:00,19:27:00,1475094,0, +24987160_258558,19:33:00,19:33:00,1475092,1, +24987160_258558,19:39:00,19:40:00,1475098,2, +24987160_258558,19:45:00,19:45:00,1475215,3, +24987160_258558,19:51:00,19:52:00,1475216,4, +24987160_258558,19:57:00,19:57:00,1475099,5, +24987160_258558,20:10:00,20:10:00,1475212,6, +24987160_258558,20:15:00,20:15:00,1474705,7, +24987160_258558,20:18:00,20:18:00,1475214,8, +24987160_258558,20:22:00,20:23:00,1474703,9, +24987160_258558,20:27:00,20:28:00,1475181,10, +24987160_258558,20:34:00,20:45:00,1474861,11, +24987160_258558,20:49:00,20:50:00,1474903,12, +24987160_258558,20:55:00,20:56:00,1474904,13, +24987160_258558,20:59:00,21:00:00,1474905,14, +24987160_258558,21:05:00,21:05:00,1474906,15, +24987160_258558,21:09:00,21:10:00,1474907,16, +24987160_258558,21:14:00,21:14:00,1474908,17, +24987161_258559,19:32:00,19:32:00,1475094,0, +24987161_258559,19:38:00,19:38:00,1475092,1, +24987161_258559,19:43:00,19:44:00,1475098,2, +24987161_258559,19:49:00,19:49:00,1475215,3, +24987161_258559,19:55:00,19:55:00,1475216,4, +24987161_258559,20:00:00,20:00:00,1475099,5, +24987161_258559,20:10:00,20:10:00,1475212,6, +24987161_258559,20:15:00,20:15:00,1474705,7, +24987161_258559,20:18:00,20:18:00,1475214,8, +24987161_258559,20:23:00,20:24:00,1474703,9, +24987161_258559,20:28:00,20:29:00,1475181,10, +24987161_258559,20:34:00,20:40:00,1474861,11, +24987161_258559,20:45:00,20:45:00,1474903,12, +24987161_258559,20:50:00,20:51:00,1474904,13, +24987161_258559,20:54:00,20:55:00,1474905,14, +24987161_258559,21:00:00,21:01:00,1474906,15, +24987161_258559,21:05:00,21:05:00,1474907,16, +24987161_258559,21:10:00,21:10:00,1474908,17, +24987163_258561,21:45:00,21:45:00,1536279,0, +24987163_258561,21:50:00,21:50:00,1474903,1, +24987163_258561,21:56:00,22:01:00,1474904,2, +24987163_258561,22:04:00,22:05:00,1474905,3, +24987163_258561,22:10:00,22:10:00,1474906,4, +24987163_258561,22:14:00,22:15:00,1474907,5, +24987163_258561,22:19:00,22:19:00,1474908,6, +24987164_258562,21:40:00,21:40:00,1474861,0, +24987164_258562,21:45:00,21:45:00,1474903,1, +24987164_258562,21:50:00,21:51:00,1474904,2, +24987164_258562,21:54:00,21:55:00,1474905,3, +24987164_258562,22:00:00,22:01:00,1474906,4, +24987164_258562,22:04:00,22:05:00,1474907,5, +24987164_258562,22:09:00,22:09:00,1474908,6, +24987166_258564,06:41:00,06:41:00,1536279,0, +24987166_258564,06:45:00,06:46:00,1474903,1, +24987166_258564,06:51:00,06:56:00,1474904,2, +24987166_258564,07:00:00,07:00:00,1474905,3, +24987166_258564,07:05:00,07:06:00,1474906,4, +24987166_258564,07:10:00,07:10:00,1474907,5, +24987166_258564,07:14:00,07:14:00,1474908,6, +24987167_258565,06:51:00,06:51:00,1474861,0, +24987167_258565,06:56:00,06:56:00,1474903,1, +24987167_258565,07:01:00,07:02:00,1474904,2, +24987167_258565,07:05:00,07:05:00,1474905,3, +24987167_258565,07:11:00,07:11:00,1474906,4, +24987167_258565,07:17:00,07:18:00,1474907,5, +24987167_258565,07:22:00,07:22:00,1474908,6, +24987169_258567,03:27:00,03:27:00,1474738,0, +24987169_258567,03:32:00,03:33:00,1474701,1, +24987169_258567,03:36:00,03:37:00,1474703,2, +24987169_258567,03:41:00,03:42:00,1474704,3, +24987169_258567,03:44:00,03:45:00,1475083,4, +24987169_258567,03:49:00,03:50:00,1475085,5, +24987169_258567,04:00:00,04:00:00,1475210,6, +24987170_258568,03:30:00,03:30:00,1474738,0, +24987170_258568,03:35:00,03:36:00,1474701,1, +24987170_258568,03:39:00,03:40:00,1474703,2, +24987170_258568,03:44:00,03:45:00,1474704,3, +24987170_258568,03:47:00,03:48:00,1475083,4, +24987170_258568,03:52:00,03:53:00,1475085,5, +24987170_258568,04:03:00,04:03:00,1475210,6, +24987171_258569,04:26:00,04:26:00,1474738,0, +24987171_258569,04:31:00,04:32:00,1474701,1, +24987171_258569,04:36:00,04:37:00,1474703,2, +24987171_258569,04:41:00,04:41:00,1474704,3, +24987171_258569,04:44:00,04:44:00,1475083,4, +24987171_258569,04:49:00,04:49:00,1475085,5, +24987171_258569,04:59:00,04:59:00,1475210,6, +24987174_258572,04:29:00,04:29:00,1474908,0, +24987174_258572,04:32:00,04:33:00,1474907,1, +24987174_258572,04:36:00,04:37:00,1474906,2, +24987174_258572,04:41:00,04:42:00,1474905,3, +24987174_258572,04:46:00,04:46:00,1474904,4, +24987174_258572,04:51:00,04:52:00,1474903,5, +24987174_258572,04:58:00,05:10:00,1474861,6, +24987174_258572,05:15:00,05:16:00,1474701,7, +24987174_258572,05:20:00,05:22:00,1474703,8, +24987174_258572,05:26:00,05:27:00,1474704,9, +24987174_258572,05:30:00,05:31:00,1475083,10, +24987174_258572,05:36:00,05:36:00,1475085,11, +24987174_258572,05:46:00,05:48:00,1475099,12, +24987174_258572,05:52:00,05:53:00,1475089,13, +24987174_258572,05:58:00,05:59:00,1475090,14, +24987174_258572,06:04:00,06:04:00,1475098,15, +24987174_258572,06:09:00,06:10:00,1475092,16, +24987174_258572,06:16:00,06:16:00,1475094,17, +24987175_258573,04:31:00,04:31:00,1474908,0, +24987175_258573,04:34:00,04:34:00,1474907,1, +24987175_258573,04:38:00,04:39:00,1474906,2, +24987175_258573,04:44:00,04:44:00,1474905,3, +24987175_258573,04:48:00,04:49:00,1474904,4, +24987175_258573,04:54:00,04:55:00,1474903,5, +24987175_258573,05:00:00,05:06:00,1474861,6, +24987175_258573,05:12:00,05:13:00,1474701,7, +24987175_258573,05:16:00,05:18:00,1474703,8, +24987175_258573,05:22:00,05:23:00,1474704,9, +24987175_258573,05:25:00,05:26:00,1475083,10, +24987175_258573,05:30:00,05:30:00,1475085,11, +24987175_258573,05:39:00,05:40:00,1475099,12, +24987175_258573,05:45:00,05:45:00,1475089,13, +24987175_258573,05:51:00,05:51:00,1475090,14, +24987175_258573,05:56:00,05:56:00,1475098,15, +24987175_258573,06:01:00,06:02:00,1475092,16, +24987175_258573,06:08:00,06:08:00,1475094,17, +24987178_258576,06:37:00,06:37:00,1474908,0, +24987178_258576,06:40:00,06:41:00,1474907,1, +24987178_258576,06:44:00,06:45:00,1474906,2, +24987178_258576,06:50:00,06:50:00,1474905,3, +24987178_258576,06:54:00,06:55:00,1474904,4, +24987178_258576,07:00:00,07:00:00,1474903,5, +24987178_258576,07:06:00,07:15:00,1474861,6, +24987178_258576,07:19:00,07:20:00,1474701,7, +24987178_258576,07:23:00,07:23:00,1474702,8, +24987178_258576,07:25:00,07:26:00,1474703,9, +24987178_258576,07:30:00,07:31:00,1474704,10, +24987178_258576,07:34:00,07:34:00,1475083,11, +24987178_258576,07:37:00,07:38:00,1475084,12, +24987178_258576,07:40:00,07:40:00,1475085,13, +24987178_258576,07:45:00,07:45:00,1475086,14, +24987178_258576,07:52:00,07:52:00,1475210,15, +24987179_258577,06:34:00,06:34:00,1474908,0, +24987179_258577,06:37:00,06:38:00,1474907,1, +24987179_258577,06:42:00,06:42:00,1474906,2, +24987179_258577,06:47:00,06:48:00,1474905,3, +24987179_258577,06:51:00,06:52:00,1474904,4, +24987179_258577,06:57:00,06:57:00,1474903,5, +24987179_258577,07:03:00,07:15:00,1474861,6, +24987179_258577,07:20:00,07:21:00,1474701,7, +24987179_258577,07:23:00,07:24:00,1474702,8, +24987179_258577,07:26:00,07:27:00,1474703,9, +24987179_258577,07:31:00,07:31:00,1474704,10, +24987179_258577,07:34:00,07:35:00,1475083,11, +24987179_258577,07:38:00,07:38:00,1475084,12, +24987179_258577,07:40:00,07:41:00,1475085,13, +24987179_258577,07:45:00,07:46:00,1475086,14, +24987179_258577,07:52:00,07:52:00,1475210,15, +24987182_258580,06:37:00,06:37:00,1474908,0, +24987182_258580,06:40:00,06:41:00,1474907,1, +24987182_258580,06:44:00,06:45:00,1474906,2, +24987182_258580,06:50:00,06:50:00,1474905,3, +24987182_258580,06:54:00,06:55:00,1474904,4, +24987182_258580,07:00:00,07:00:00,1474903,5, +24987182_258580,07:06:00,07:06:00,1474738,6, +24987183_258581,06:34:00,06:34:00,1474908,0, +24987183_258581,06:37:00,06:38:00,1474907,1, +24987183_258581,06:42:00,06:42:00,1474906,2, +24987183_258581,06:47:00,06:48:00,1474905,3, +24987183_258581,06:51:00,06:52:00,1474904,4, +24987183_258581,06:57:00,06:57:00,1474903,5, +24987183_258581,07:03:00,07:03:00,1474861,6, +24987185_258583,07:02:00,07:02:00,1474908,0, +24987185_258583,07:05:00,07:06:00,1474907,1, +24987185_258583,07:09:00,07:10:00,1474906,2, +24987185_258583,07:15:00,07:15:00,1474905,3, +24987185_258583,07:19:00,07:20:00,1474904,4, +24987185_258583,07:25:00,07:25:00,1474903,5, +24987185_258583,07:31:00,07:31:00,1536279,6, +24987186_258584,07:05:00,07:05:00,1474908,0, +24987186_258584,07:08:00,07:08:00,1474907,1, +24987186_258584,07:14:00,07:15:00,1474906,2, +24987186_258584,07:20:00,07:20:00,1474905,3, +24987186_258584,07:24:00,07:24:00,1474904,4, +24987186_258584,07:29:00,07:30:00,1474903,5, +24987186_258584,07:35:00,07:35:00,1474861,6, +24987187_258585,07:36:00,07:36:00,1474908,0, +24987187_258585,07:39:00,07:40:00,1474907,1, +24987187_258585,07:45:00,07:45:00,1474906,2, +24987187_258585,07:50:00,07:50:00,1474905,3, +24987187_258585,07:54:00,07:54:00,1474904,4, +24987187_258585,08:00:00,08:00:00,1474903,5, +24987187_258585,08:06:00,08:06:00,1474738,6, +24987188_258586,07:36:00,07:36:00,1474908,0, +24987188_258586,07:39:00,07:40:00,1474907,1, +24987188_258586,07:45:00,07:45:00,1474906,2, +24987188_258586,07:50:00,07:50:00,1474905,3, +24987188_258586,07:54:00,07:54:00,1474904,4, +24987188_258586,08:00:00,08:00:00,1474903,5, +24987188_258586,08:06:00,08:06:00,1474738,6, +24987189_258587,07:40:00,07:40:00,1474908,0, +24987189_258587,07:43:00,07:44:00,1474907,1, +24987189_258587,07:48:00,07:49:00,1474906,2, +24987189_258587,07:54:00,07:54:00,1474905,3, +24987189_258587,07:58:00,07:58:00,1474904,4, +24987189_258587,08:04:00,08:04:00,1474903,5, +24987189_258587,08:10:00,08:10:00,1474861,6, +24987190_258588,08:11:00,08:11:00,1474908,0, +24987190_258588,08:14:00,08:15:00,1474907,1, +24987190_258588,08:19:00,08:19:00,1474906,2, +24987190_258588,08:24:00,08:25:00,1474905,3, +24987190_258588,08:28:00,08:29:00,1474904,4, +24987190_258588,08:34:00,08:34:00,1474903,5, +24987190_258588,08:40:00,08:40:00,1474738,6, +24987191_258589,08:10:00,08:10:00,1474908,0, +24987191_258589,08:13:00,08:14:00,1474907,1, +24987191_258589,08:18:00,08:18:00,1474906,2, +24987191_258589,08:23:00,08:24:00,1474905,3, +24987191_258589,08:27:00,08:28:00,1474904,4, +24987191_258589,08:33:00,08:34:00,1474903,5, +24987191_258589,08:39:00,08:39:00,1474861,6, +24987193_258591,08:44:00,08:44:00,1474908,0, +24987193_258591,08:47:00,08:48:00,1474907,1, +24987193_258591,08:52:00,08:53:00,1474906,2, +24987193_258591,08:58:00,08:58:00,1474905,3, +24987193_258591,09:02:00,09:03:00,1474904,4, +24987193_258591,09:08:00,09:08:00,1474903,5, +24987193_258591,09:14:00,09:14:00,1474738,6, +24987194_258592,09:06:00,09:06:00,1474908,0, +24987194_258592,09:09:00,09:09:00,1474907,1, +24987194_258592,09:13:00,09:14:00,1474906,2, +24987194_258592,09:19:00,09:19:00,1474905,3, +24987194_258592,09:23:00,09:23:00,1474904,4, +24987194_258592,09:29:00,09:29:00,1474903,5, +24987194_258592,09:35:00,09:35:00,1474861,6, +24987196_258594,08:44:00,08:44:00,1474908,0, +24987196_258594,08:47:00,08:48:00,1474907,1, +24987196_258594,08:52:00,08:53:00,1474906,2, +24987196_258594,08:58:00,08:58:00,1474905,3, +24987196_258594,09:02:00,09:03:00,1474904,4, +24987196_258594,09:08:00,09:08:00,1474903,5, +24987196_258594,09:14:00,09:33:00,1474738,6, +24987196_258594,09:37:00,09:38:00,1474701,7, +24987196_258594,09:40:00,09:41:00,1474702,8, +24987196_258594,09:42:00,09:43:00,1474703,9, +24987196_258594,09:47:00,09:48:00,1474704,10, +24987196_258594,09:50:00,09:51:00,1475083,11, +24987196_258594,09:54:00,09:54:00,1475084,12, +24987196_258594,09:56:00,09:57:00,1475085,13, +24987196_258594,10:01:00,10:02:00,1475086,14, +24987196_258594,10:08:00,10:08:00,1475210,15, +24987197_258595,09:06:00,09:06:00,1474908,0, +24987197_258595,09:09:00,09:09:00,1474907,1, +24987197_258595,09:13:00,09:14:00,1474906,2, +24987197_258595,09:19:00,09:19:00,1474905,3, +24987197_258595,09:23:00,09:23:00,1474904,4, +24987197_258595,09:29:00,09:29:00,1474903,5, +24987197_258595,09:35:00,09:40:00,1474861,6, +24987197_258595,09:45:00,09:46:00,1474701,7, +24987197_258595,09:48:00,09:49:00,1474702,8, +24987197_258595,09:51:00,09:52:00,1474703,9, +24987197_258595,09:56:00,09:56:00,1474704,10, +24987197_258595,09:59:00,09:59:00,1475083,11, +24987197_258595,10:02:00,10:03:00,1475084,12, +24987197_258595,10:05:00,10:05:00,1475085,13, +24987197_258595,10:10:00,10:11:00,1475086,14, +24987197_258595,10:17:00,10:17:00,1475210,15, +24987199_258597,09:37:00,09:37:00,1474908,0, +24987199_258597,09:40:00,09:41:00,1474907,1, +24987199_258597,09:44:00,09:45:00,1474906,2, +24987199_258597,09:50:00,09:50:00,1474905,3, +24987199_258597,09:54:00,09:55:00,1474904,4, +24987199_258597,10:00:00,10:00:00,1474903,5, +24987199_258597,10:06:00,10:06:00,1474861,6, +24987200_258598,09:43:00,09:43:00,1474908,0, +24987200_258598,09:46:00,09:46:00,1474907,1, +24987200_258598,09:51:00,09:51:00,1474906,2, +24987200_258598,09:56:00,09:57:00,1474905,3, +24987200_258598,10:01:00,10:01:00,1474904,4, +24987200_258598,10:07:00,10:08:00,1474903,5, +24987200_258598,10:13:00,10:13:00,1474861,6, +24987202_258600,13:36:00,13:36:00,1474908,0, +24987202_258600,13:39:00,13:40:00,1474907,1, +24987202_258600,13:43:00,13:44:00,1474906,2, +24987202_258600,13:49:00,13:49:00,1474905,3, +24987202_258600,13:53:00,13:54:00,1474904,4, +24987202_258600,13:59:00,13:59:00,1474903,5, +24987202_258600,14:05:00,14:05:00,1474738,6, +24987203_258601,13:32:00,13:32:00,1474908,0, +24987203_258601,13:35:00,13:35:00,1474907,1, +24987203_258601,13:39:00,13:40:00,1474906,2, +24987203_258601,13:45:00,13:45:00,1474905,3, +24987203_258601,13:49:00,13:50:00,1474904,4, +24987203_258601,13:55:00,13:56:00,1474903,5, +24987203_258601,14:01:00,14:01:00,1474861,6, +24987205_258603,15:26:00,15:26:00,1474908,0, +24987205_258603,15:29:00,15:30:00,1474907,1, +24987205_258603,15:34:00,15:35:00,1474906,2, +24987205_258603,15:40:00,15:40:00,1474905,3, +24987205_258603,15:45:00,15:51:00,1474904,4, +24987205_258603,15:57:00,15:57:00,1474903,5, +24987205_258603,16:03:00,16:03:00,1474861,6, +24987206_258604,15:28:00,15:28:00,1474908,0, +24987206_258604,15:31:00,15:31:00,1474907,1, +24987206_258604,15:36:00,15:36:00,1474906,2, +24987206_258604,15:41:00,15:42:00,1474905,3, +24987206_258604,15:47:00,15:53:00,1474904,4, +24987206_258604,15:58:00,15:59:00,1474903,5, +24987206_258604,16:04:00,16:04:00,1474861,6, +24987208_258606,16:23:00,16:23:00,1474908,0, +24987208_258606,16:26:00,16:27:00,1474907,1, +24987208_258606,16:32:00,16:32:00,1474906,2, +24987208_258606,16:37:00,16:38:00,1474905,3, +24987208_258606,16:41:00,16:42:00,1474904,4, +24987208_258606,16:47:00,16:47:00,1474903,5, +24987208_258606,16:53:00,16:53:00,1474738,6, +24987209_258607,15:58:00,15:58:00,1474908,0, +24987209_258607,16:01:00,16:01:00,1474907,1, +24987209_258607,16:05:00,16:06:00,1474906,2, +24987209_258607,16:11:00,16:11:00,1474905,3, +24987209_258607,16:15:00,16:16:00,1474904,4, +24987209_258607,16:21:00,16:22:00,1474903,5, +24987209_258607,16:27:00,16:27:00,1474861,6, +24987211_258609,17:12:00,17:12:00,1474908,0, +24987211_258609,17:15:00,17:16:00,1474907,1, +24987211_258609,17:19:00,17:20:00,1474906,2, +24987211_258609,17:25:00,17:25:00,1474905,3, +24987211_258609,17:29:00,17:30:00,1474904,4, +24987211_258609,17:35:00,17:35:00,1474903,5, +24987211_258609,17:41:00,17:46:00,1474738,6, +24987211_258609,17:51:00,17:52:00,1474701,7, +24987211_258609,17:54:00,17:54:00,1474702,8, +24987211_258609,17:56:00,17:57:00,1474703,9, +24987211_258609,18:01:00,18:02:00,1474704,10, +24987211_258609,18:04:00,18:05:00,1475083,11, +24987211_258609,18:08:00,18:08:00,1475084,12, +24987211_258609,18:11:00,18:11:00,1475085,13, +24987211_258609,18:16:00,18:16:00,1475086,14, +24987211_258609,18:23:00,18:34:00,1475210,15, +24987211_258609,18:38:00,18:39:00,1475088,16, +24987211_258609,18:44:00,18:45:00,1475089,17, +24987211_258609,18:51:00,18:51:00,1475090,18, +24987211_258609,18:56:00,18:57:00,1475098,19, +24987211_258609,19:02:00,19:03:00,1475092,20, +24987211_258609,19:09:00,19:09:00,1475094,21, +24987213_258611,17:21:00,17:21:00,1474908,0, +24987213_258611,17:24:00,17:24:00,1474907,1, +24987213_258611,17:28:00,17:29:00,1474906,2, +24987213_258611,17:34:00,17:34:00,1474905,3, +24987213_258611,17:38:00,17:38:00,1474904,4, +24987213_258611,17:43:00,17:44:00,1474903,5, +24987213_258611,17:50:00,17:56:00,1474861,6, +24987213_258611,18:01:00,18:02:00,1474701,7, +24987213_258611,18:04:00,18:04:00,1474702,8, +24987213_258611,18:06:00,18:07:00,1474703,9, +24987213_258611,18:11:00,18:12:00,1474704,10, +24987213_258611,18:14:00,18:15:00,1475083,11, +24987213_258611,18:17:00,18:18:00,1475084,12, +24987213_258611,18:20:00,18:21:00,1475085,13, +24987213_258611,18:25:00,18:25:00,1475086,14, +24987213_258611,18:31:00,18:39:00,1475210,15, +24987213_258611,18:43:00,18:43:00,1475088,16, +24987213_258611,18:49:00,18:49:00,1475089,17, +24987213_258611,18:55:00,18:55:00,1475090,18, +24987213_258611,19:00:00,19:01:00,1475098,19, +24987213_258611,19:06:00,19:07:00,1475092,20, +24987213_258611,19:13:00,19:13:00,1475094,21, +24987215_258613,17:54:00,17:54:00,1474908,0, +24987215_258613,17:57:00,17:58:00,1474907,1, +24987215_258613,18:01:00,18:02:00,1474906,2, +24987215_258613,18:07:00,18:07:00,1474905,3, +24987215_258613,18:11:00,18:12:00,1474904,4, +24987215_258613,18:18:00,18:19:00,1474903,5, +24987215_258613,18:25:00,18:25:00,1474738,6, +24987216_258614,18:02:00,18:02:00,1474908,0, +24987216_258614,18:05:00,18:05:00,1474907,1, +24987216_258614,18:09:00,18:09:00,1474906,2, +24987216_258614,18:14:00,18:15:00,1474905,3, +24987216_258614,18:18:00,18:23:00,1474904,4, +24987216_258614,18:28:00,18:29:00,1474903,5, +24987216_258614,18:34:00,18:34:00,1474861,6, +24987223_258621,18:38:00,18:38:00,1474908,0, +24987223_258621,18:42:00,18:42:00,1474907,1, +24987223_258621,18:46:00,18:46:00,1474906,2, +24987223_258621,18:51:00,18:51:00,1474905,3, +24987223_258621,18:55:00,18:56:00,1474904,4, +24987223_258621,19:01:00,19:01:00,1474903,5, +24987223_258621,19:07:00,19:07:00,1474738,6, +24987224_258622,18:36:00,18:36:00,1474908,0, +24987224_258622,18:39:00,18:39:00,1474907,1, +24987224_258622,18:43:00,18:43:00,1474906,2, +24987224_258622,18:48:00,18:49:00,1474905,3, +24987224_258622,18:52:00,18:53:00,1474904,4, +24987224_258622,18:58:00,18:59:00,1474903,5, +24987224_258622,19:04:00,19:04:00,1474861,6, +24987226_258624,20:26:00,20:26:00,1474908,0, +24987226_258624,20:29:00,20:30:00,1474907,1, +24987226_258624,20:33:00,20:34:00,1474906,2, +24987226_258624,20:39:00,20:39:00,1474905,3, +24987226_258624,20:43:00,20:44:00,1474904,4, +24987226_258624,20:49:00,20:49:00,1474903,5, +24987226_258624,20:55:00,20:55:00,1474738,6, +24987227_258625,20:23:00,20:23:00,1474908,0, +24987227_258625,20:26:00,20:26:00,1474907,1, +24987227_258625,20:30:00,20:31:00,1474906,2, +24987227_258625,20:36:00,20:36:00,1474905,3, +24987227_258625,20:40:00,20:40:00,1474904,4, +24987227_258625,20:46:00,20:46:00,1474903,5, +24987227_258625,20:52:00,20:52:00,1474861,6, +24987229_258627,21:41:00,21:41:00,1474908,0, +24987229_258627,21:44:00,21:45:00,1474907,1, +24987229_258627,21:48:00,21:49:00,1474906,2, +24987229_258627,21:54:00,21:54:00,1474905,3, +24987229_258627,21:59:00,21:59:00,1474904,4, +24987229_258627,22:04:00,22:05:00,1474903,5, +24987229_258627,22:11:00,22:11:00,1474738,6, +24987230_258628,21:22:00,21:22:00,1474908,0, +24987230_258628,21:25:00,21:25:00,1474907,1, +24987230_258628,21:29:00,21:30:00,1474906,2, +24987230_258628,21:35:00,21:35:00,1474905,3, +24987230_258628,21:39:00,21:40:00,1474904,4, +24987230_258628,21:45:00,21:46:00,1474903,5, +24987230_258628,21:51:00,21:51:00,1474861,6, +24987243_258641,23:45:00,23:45:00,1474908,0, +24987243_258641,23:48:00,23:49:00,1474907,1, +24987243_258641,23:52:00,23:53:00,1474906,2, +24987243_258641,23:57:00,23:58:00,1474905,3, +24987243_258641,24:02:00,24:02:00,1474904,4, +24987243_258641,24:07:00,24:08:00,1474903,5, +24987243_258641,24:14:00,24:14:00,1474861,6, +24987244_258642,23:46:00,23:46:00,1474908,0, +24987244_258642,23:49:00,23:50:00,1474907,1, +24987244_258642,23:53:00,23:54:00,1474906,2, +24987244_258642,23:58:00,23:59:00,1474905,3, +24987244_258642,24:02:00,24:03:00,1474904,4, +24987244_258642,24:08:00,24:08:00,1474903,5, +24987244_258642,24:14:00,24:14:00,1474861,6, +24987248_258646,04:26:00,04:26:00,1474810,0, +24987248_258646,04:34:00,04:34:00,1474848,1, +24987248_258646,04:43:00,04:49:00,1474850,2, +24987248_258646,05:02:00,05:02:00,1475229,3, +24987248_258646,05:16:00,05:16:00,1475230,4, +24987248_258646,05:29:00,05:29:00,1475231,5, +24987249_258647,04:28:00,04:28:00,1474810,0, +24987249_258647,04:36:00,04:36:00,1474848,1, +24987249_258647,04:45:00,04:49:00,1474850,2, +24987249_258647,05:02:00,05:02:00,1475229,3, +24987249_258647,05:16:00,05:16:00,1475230,4, +24987249_258647,05:29:00,05:29:00,1475231,5, +24987252_258650,05:28:00,05:28:00,1474687,0, +24987252_258650,05:30:00,05:30:00,1474686,1, +24987252_258650,05:36:00,05:42:00,1474685,2, +24987252_258650,05:50:00,05:50:00,1475025,3, +24987252_258650,05:55:00,05:56:00,1474695,4, +24987252_258650,06:03:00,06:06:00,1474688,5, +24987252_258650,06:08:00,06:09:00,1474689,6, +24987252_258650,06:12:00,06:13:00,1474690,7, +24987252_258650,06:19:00,06:31:00,1474714,8, +24987252_258650,06:36:00,06:37:00,1474719,9, +24987252_258650,06:41:00,06:41:00,1474718,10, +24987252_258650,06:45:00,06:45:00,1474717,11, +24987252_258650,06:48:00,06:48:00,1845555,12, +24987252_258650,06:56:00,06:57:00,1475023,13, +24987252_258650,07:01:00,07:01:00,1474912,14, +24987252_258650,07:08:00,07:08:00,1475024,15, +24987252_258650,07:14:00,07:14:00,1474910,16, +24987252_258650,07:20:00,07:20:00,1474909,17, +24987252_258650,07:26:00,07:26:00,1474947,18, +24987253_258651,05:28:00,05:28:00,1474687,0, +24987253_258651,05:30:00,05:30:00,1474686,1, +24987253_258651,05:36:00,05:42:00,1474685,2, +24987253_258651,05:50:00,05:50:00,1475025,3, +24987253_258651,05:55:00,05:56:00,1474695,4, +24987253_258651,06:03:00,06:06:00,1474688,5, +24987253_258651,06:08:00,06:09:00,1474689,6, +24987253_258651,06:12:00,06:13:00,1474690,7, +24987253_258651,06:19:00,06:30:00,1474714,8, +24987253_258651,06:35:00,06:36:00,1474719,9, +24987253_258651,06:41:00,06:41:00,1474718,10, +24987253_258651,06:45:00,06:45:00,1474717,11, +24987253_258651,06:48:00,06:48:00,1845555,12, +24987253_258651,06:56:00,06:57:00,1475023,13, +24987253_258651,07:01:00,07:01:00,1474912,14, +24987253_258651,07:08:00,07:08:00,1475024,15, +24987253_258651,07:14:00,07:14:00,1474910,16, +24987253_258651,07:20:00,07:20:00,1474909,17, +24987253_258651,07:26:00,07:26:00,1609726,18, +24987257_258655,06:31:00,06:31:00,1609796,0, +24987257_258655,06:44:00,06:44:00,1475229,1, +24987257_258655,06:58:00,06:58:00,1475230,2, +24987257_258655,07:10:00,07:11:00,1475231,3, +24987257_258655,07:19:00,07:19:00,1474684,4, +24987257_258655,07:24:00,07:25:00,1474695,5, +24987257_258655,07:32:00,07:38:00,1474688,6, +24987257_258655,07:40:00,07:40:00,1474689,7, +24987257_258655,07:44:00,07:44:00,1474690,8, +24987257_258655,07:50:00,07:57:00,1474691,9, +24987257_258655,08:03:00,08:03:00,1474719,10, +24987257_258655,08:08:00,08:08:00,1474718,11, +24987257_258655,08:12:00,08:12:00,1474717,12, +24987257_258655,08:15:00,08:15:00,1845555,13, +24987257_258655,08:23:00,08:24:00,1475023,14, +24987257_258655,08:28:00,08:28:00,1474912,15, +24987257_258655,08:35:00,08:35:00,1475024,16, +24987257_258655,08:41:00,08:41:00,1474910,17, +24987257_258655,08:47:00,08:47:00,1474909,18, +24987257_258655,08:54:00,08:54:00,1474915,19, +24987258_258656,06:32:00,06:32:00,1609796,0, +24987258_258656,06:45:00,06:45:00,1475229,1, +24987258_258656,06:59:00,06:59:00,1475230,2, +24987258_258656,07:10:00,07:11:00,1475231,3, +24987258_258656,07:20:00,07:20:00,1474684,4, +24987258_258656,07:25:00,07:25:00,1474695,5, +24987258_258656,07:33:00,07:38:00,1474688,6, +24987258_258656,07:40:00,07:40:00,1474689,7, +24987258_258656,07:44:00,07:44:00,1474690,8, +24987258_258656,07:50:00,07:57:00,1474714,9, +24987258_258656,08:03:00,08:03:00,1474719,10, +24987258_258656,08:08:00,08:08:00,1474718,11, +24987258_258656,08:12:00,08:12:00,1474717,12, +24987258_258656,08:15:00,08:15:00,1845555,13, +24987258_258656,08:23:00,08:24:00,1475023,14, +24987258_258656,08:28:00,08:28:00,1474912,15, +24987258_258656,08:35:00,08:35:00,1475024,16, +24987258_258656,08:41:00,08:41:00,1474910,17, +24987258_258656,08:47:00,08:47:00,1474909,18, +24987258_258656,08:54:00,08:54:00,1474836,19, +24987265_258663,06:09:00,06:09:00,1474810,0, +24987265_258663,06:17:00,06:18:00,1474848,1, +24987265_258663,06:26:00,06:31:00,1474850,2, +24987265_258663,06:44:00,06:44:00,1475229,3, +24987265_258663,06:58:00,06:58:00,1475230,4, +24987265_258663,07:10:00,07:11:00,1475231,5, +24987265_258663,07:19:00,07:19:00,1474684,6, +24987265_258663,07:24:00,07:25:00,1474695,7, +24987265_258663,07:32:00,07:38:00,1474688,8, +24987265_258663,07:40:00,07:40:00,1474689,9, +24987265_258663,07:44:00,07:44:00,1474690,10, +24987265_258663,07:50:00,07:57:00,1474691,11, +24987265_258663,08:03:00,08:03:00,1474719,12, +24987265_258663,08:08:00,08:13:00,1474718,13, +24987265_258663,08:16:00,08:17:00,1474717,14, +24987265_258663,08:19:00,08:20:00,1845555,15, +24987265_258663,08:28:00,08:29:00,1475023,16, +24987265_258663,08:33:00,08:33:00,1474912,17, +24987265_258663,08:40:00,08:40:00,1475024,18, +24987265_258663,08:46:00,08:46:00,1474910,19, +24987265_258663,08:52:00,08:52:00,1474909,20, +24987265_258663,08:58:00,08:58:00,1474915,21, +24987266_258664,06:10:00,06:10:00,1474810,0, +24987266_258664,06:18:00,06:19:00,1474848,1, +24987266_258664,06:27:00,06:32:00,1474850,2, +24987266_258664,06:45:00,06:45:00,1475229,3, +24987266_258664,06:59:00,06:59:00,1475230,4, +24987266_258664,07:10:00,07:11:00,1475231,5, +24987266_258664,07:20:00,07:20:00,1474684,6, +24987266_258664,07:25:00,07:25:00,1474695,7, +24987266_258664,07:33:00,07:38:00,1474688,8, +24987266_258664,07:40:00,07:40:00,1474689,9, +24987266_258664,07:44:00,07:44:00,1474690,10, +24987266_258664,07:50:00,07:57:00,1474714,11, +24987266_258664,08:03:00,08:03:00,1474719,12, +24987266_258664,08:08:00,08:13:00,1474718,13, +24987266_258664,08:16:00,08:17:00,1474717,14, +24987266_258664,08:19:00,08:20:00,1845555,15, +24987266_258664,08:28:00,08:29:00,1475023,16, +24987266_258664,08:33:00,08:33:00,1474912,17, +24987266_258664,08:40:00,08:40:00,1475024,18, +24987266_258664,08:46:00,08:46:00,1474910,19, +24987266_258664,08:52:00,08:52:00,1474909,20, +24987266_258664,08:58:00,08:58:00,1609726,21, +24987270_258668,11:44:00,11:44:00,1475233,0, +24987270_258668,11:56:00,11:57:00,1475229,1, +24987270_258668,12:10:00,12:11:00,1475230,2, +24987270_258668,12:22:00,12:29:00,1475231,3, +24987270_258668,12:38:00,12:38:00,1474684,4, +24987270_258668,12:43:00,12:44:00,1474695,5, +24987270_258668,12:51:00,12:52:00,1474688,6, +24987270_258668,12:54:00,12:55:00,1474689,7, +24987270_258668,12:58:00,12:59:00,1474690,8, +24987270_258668,13:05:00,13:06:00,1474714,9, +24987270_258668,13:11:00,13:12:00,1474719,10, +24987270_258668,13:17:00,13:18:00,1474718,11, +24987270_258668,13:22:00,13:22:00,1474717,12, +24987270_258668,13:25:00,13:25:00,1845555,13, +24987270_258668,13:33:00,13:34:00,1475023,14, +24987270_258668,13:38:00,13:38:00,1474912,15, +24987270_258668,13:45:00,13:45:00,1475024,16, +24987270_258668,13:51:00,13:51:00,1474910,17, +24987270_258668,13:56:00,13:57:00,1474909,18, +24987270_258668,14:02:00,14:02:00,1609726,19, +24987271_258669,11:44:00,11:44:00,1475233,0, +24987271_258669,11:56:00,11:57:00,1475229,1, +24987271_258669,12:10:00,12:11:00,1475230,2, +24987271_258669,12:22:00,12:29:00,1475231,3, +24987271_258669,12:37:00,12:37:00,1474684,4, +24987271_258669,12:42:00,12:43:00,1474695,5, +24987271_258669,12:50:00,12:51:00,1474688,6, +24987271_258669,12:53:00,12:54:00,1474689,7, +24987271_258669,12:57:00,12:58:00,1474690,8, +24987271_258669,13:04:00,13:05:00,1474714,9, +24987271_258669,13:10:00,13:11:00,1474719,10, +24987271_258669,13:16:00,13:17:00,1474718,11, +24987271_258669,13:21:00,13:21:00,1474717,12, +24987271_258669,13:24:00,13:24:00,1845555,13, +24987271_258669,13:33:00,13:34:00,1475023,14, +24987271_258669,13:38:00,13:38:00,1474912,15, +24987271_258669,13:45:00,13:45:00,1475024,16, +24987271_258669,13:51:00,13:51:00,1474910,17, +24987271_258669,13:56:00,13:57:00,1474909,18, +24987271_258669,14:02:00,14:02:00,1474836,19, +24987273_258671,11:14:00,11:14:00,1474774,0, +24987273_258671,11:16:00,11:17:00,1474810,1, +24987273_258671,11:25:00,11:26:00,1474848,2, +24987273_258671,11:34:00,11:44:00,1474850,3, +24987273_258671,11:56:00,11:57:00,1475229,4, +24987273_258671,12:10:00,12:11:00,1475230,5, +24987273_258671,12:22:00,12:29:00,1475231,6, +24987273_258671,12:38:00,12:38:00,1474684,7, +24987273_258671,12:43:00,12:44:00,1474695,8, +24987273_258671,12:51:00,12:52:00,1474688,9, +24987273_258671,12:54:00,12:55:00,1474689,10, +24987273_258671,12:58:00,12:59:00,1474690,11, +24987273_258671,13:05:00,13:06:00,1474714,12, +24987273_258671,13:11:00,13:12:00,1474719,13, +24987273_258671,13:17:00,13:18:00,1474718,14, +24987273_258671,13:22:00,13:22:00,1474717,15, +24987273_258671,13:25:00,13:25:00,1845555,16, +24987273_258671,13:33:00,13:34:00,1475023,17, +24987273_258671,13:38:00,13:38:00,1474912,18, +24987273_258671,13:45:00,13:45:00,1475024,19, +24987273_258671,13:51:00,13:51:00,1474910,20, +24987273_258671,13:56:00,13:57:00,1474909,21, +24987273_258671,14:02:00,14:02:00,1474915,22, +24987274_258672,11:14:00,11:14:00,1474774,0, +24987274_258672,11:16:00,11:17:00,1474810,1, +24987274_258672,11:25:00,11:26:00,1474848,2, +24987274_258672,11:34:00,11:44:00,1474850,3, +24987274_258672,11:56:00,11:57:00,1475229,4, +24987274_258672,12:10:00,12:11:00,1475230,5, +24987274_258672,12:22:00,12:29:00,1475231,6, +24987274_258672,12:37:00,12:37:00,1474684,7, +24987274_258672,12:42:00,12:43:00,1474695,8, +24987274_258672,12:50:00,12:51:00,1474688,9, +24987274_258672,12:53:00,12:54:00,1474689,10, +24987274_258672,12:57:00,12:58:00,1474690,11, +24987274_258672,13:04:00,13:05:00,1474714,12, +24987274_258672,13:10:00,13:11:00,1474719,13, +24987274_258672,13:16:00,13:17:00,1474718,14, +24987274_258672,13:21:00,13:21:00,1474717,15, +24987274_258672,13:24:00,13:24:00,1845555,16, +24987274_258672,13:33:00,13:34:00,1475023,17, +24987274_258672,13:38:00,13:38:00,1474912,18, +24987274_258672,13:45:00,13:45:00,1475024,19, +24987274_258672,13:51:00,13:51:00,1474910,20, +24987274_258672,13:56:00,13:57:00,1474909,21, +24987274_258672,14:02:00,14:02:00,1609726,22, +24987280_258678,11:36:00,11:36:00,1474650,0, +24987280_258678,11:41:00,11:41:00,1474754,1, +24987280_258678,11:52:00,11:52:00,1474753,2, +24987280_258678,11:58:00,11:59:00,1474649,3, +24987280_258678,12:08:00,12:08:00,1474648,4, +24987280_258678,12:15:00,12:20:00,1474647,5, +24987280_258678,12:25:00,12:26:00,1474751,6, +24987280_258678,12:28:00,12:29:00,1474750,7, +24987280_258678,12:31:00,12:31:00,1474749,8, +24987280_258678,12:38:00,13:05:00,1474646,9, +24987280_258678,13:08:00,13:09:00,1474810,10, +24987280_258678,13:17:00,13:17:00,1474848,11, +24987280_258678,13:26:00,13:32:00,1474850,12, +24987280_258678,13:44:00,13:44:00,1475229,13, +24987280_258678,13:59:00,13:59:00,1475230,14, +24987280_258678,14:11:00,14:12:00,1475231,15, +24987280_258678,14:20:00,14:20:00,1474684,16, +24987280_258678,14:25:00,14:25:00,1474695,17, +24987280_258678,14:34:00,14:36:00,1474688,18, +24987280_258678,14:38:00,14:38:00,1474689,19, +24987280_258678,14:42:00,14:42:00,1474690,20, +24987280_258678,14:48:00,15:02:00,1474714,21, +24987280_258678,15:07:00,15:08:00,1474719,22, +24987280_258678,15:12:00,15:13:00,1474718,23, +24987280_258678,15:16:00,15:17:00,1474717,24, +24987280_258678,15:19:00,15:20:00,1845555,25, +24987280_258678,15:28:00,15:33:00,1475023,26, +24987280_258678,15:37:00,15:37:00,1474912,27, +24987280_258678,15:44:00,15:44:00,1475024,28, +24987280_258678,15:49:00,15:49:00,1474910,29, +24987280_258678,15:55:00,15:55:00,1474909,30, +24987280_258678,16:01:00,16:01:00,1474836,31, +24987281_258679,11:32:00,11:32:00,1474650,0, +24987281_258679,11:37:00,11:37:00,1474754,1, +24987281_258679,11:48:00,11:48:00,1474753,2, +24987281_258679,11:55:00,11:55:00,1474649,3, +24987281_258679,12:04:00,12:05:00,1474648,4, +24987281_258679,12:12:00,12:18:00,1474752,5, +24987281_258679,12:22:00,12:22:00,1474751,6, +24987281_258679,12:25:00,12:25:00,1474750,7, +24987281_258679,12:28:00,12:28:00,1474749,8, +24987281_258679,12:32:00,13:05:00,1474646,9, +24987281_258679,13:08:00,13:09:00,1474810,10, +24987281_258679,13:17:00,13:17:00,1474848,11, +24987281_258679,13:26:00,13:32:00,1474850,12, +24987281_258679,13:44:00,13:44:00,1475229,13, +24987281_258679,13:58:00,13:58:00,1475230,14, +24987281_258679,14:10:00,14:11:00,1475231,15, +24987281_258679,14:19:00,14:19:00,1474684,16, +24987281_258679,14:24:00,14:24:00,1474695,17, +24987281_258679,14:32:00,14:33:00,1474688,18, +24987281_258679,14:35:00,14:35:00,1474689,19, +24987281_258679,14:39:00,14:39:00,1474690,20, +24987281_258679,14:45:00,15:02:00,1474714,21, +24987281_258679,15:07:00,15:08:00,1474719,22, +24987281_258679,15:12:00,15:13:00,1474718,23, +24987281_258679,15:16:00,15:17:00,1474717,24, +24987281_258679,15:19:00,15:20:00,1845555,25, +24987281_258679,15:28:00,15:33:00,1475023,26, +24987281_258679,15:37:00,15:37:00,1474912,27, +24987281_258679,15:44:00,15:44:00,1475024,28, +24987281_258679,15:49:00,15:49:00,1474910,29, +24987281_258679,15:55:00,15:55:00,1474909,30, +24987281_258679,16:01:00,16:01:00,1609726,31, +24987283_258681,15:17:00,15:17:00,1474687,0, +24987283_258681,15:18:00,15:19:00,1474686,1, +24987283_258681,15:24:00,15:27:00,1474685,2, +24987283_258681,15:35:00,15:35:00,1474684,3, +24987283_258681,15:40:00,15:40:00,1474695,4, +24987283_258681,15:48:00,15:49:00,1474688,5, +24987283_258681,15:51:00,15:51:00,1474689,6, +24987283_258681,15:55:00,15:55:00,1474690,7, +24987283_258681,16:01:00,16:02:00,1474714,8, +24987283_258681,16:07:00,16:08:00,1474719,9, +24987283_258681,16:12:00,16:13:00,1474718,10, +24987283_258681,16:16:00,16:17:00,1474717,11, +24987283_258681,16:19:00,16:20:00,1845555,12, +24987283_258681,16:27:00,16:28:00,1475023,13, +24987283_258681,16:32:00,16:33:00,1474912,14, +24987283_258681,16:39:00,16:44:00,1475024,15, +24987283_258681,16:50:00,16:51:00,1474910,16, +24987283_258681,16:57:00,16:57:00,1474909,17, +24987283_258681,17:05:00,17:05:00,1474836,18, +24987284_258682,15:15:00,15:15:00,1474687,0, +24987284_258682,15:16:00,15:17:00,1474686,1, +24987284_258682,15:23:00,15:26:00,1474685,2, +24987284_258682,15:34:00,15:34:00,1474684,3, +24987284_258682,15:39:00,15:39:00,1474695,4, +24987284_258682,15:47:00,15:48:00,1474688,5, +24987284_258682,15:50:00,15:50:00,1474689,6, +24987284_258682,15:54:00,15:54:00,1474690,7, +24987284_258682,16:00:00,16:01:00,1474714,8, +24987284_258682,16:06:00,16:07:00,1474719,9, +24987284_258682,16:11:00,16:12:00,1474718,10, +24987284_258682,16:15:00,16:16:00,1474717,11, +24987284_258682,16:18:00,16:19:00,1845555,12, +24987284_258682,16:26:00,16:27:00,1475023,13, +24987284_258682,16:31:00,16:32:00,1474912,14, +24987284_258682,16:38:00,16:43:00,1475024,15, +24987284_258682,16:49:00,16:50:00,1474910,16, +24987284_258682,16:56:00,16:56:00,1474909,17, +24987284_258682,17:03:00,17:03:00,1609726,18, +24987291_258689,15:24:00,15:24:00,1474774,0, +24987291_258689,15:26:00,15:27:00,1474810,1, +24987291_258689,15:35:00,15:36:00,1474848,2, +24987291_258689,15:45:00,15:51:00,1474850,3, +24987291_258689,16:04:00,16:04:00,1475229,4, +24987291_258689,16:18:00,16:18:00,1475230,5, +24987291_258689,16:30:00,16:35:00,1475231,6, +24987291_258689,16:43:00,16:44:00,1474684,7, +24987291_258689,16:49:00,16:49:00,1474695,8, +24987291_258689,16:57:00,16:58:00,1474688,9, +24987291_258689,17:00:00,17:00:00,1474689,10, +24987291_258689,17:04:00,17:04:00,1474690,11, +24987291_258689,17:10:00,17:25:00,1474714,12, +24987291_258689,17:31:00,17:31:00,1474719,13, +24987291_258689,17:36:00,17:36:00,1474718,14, +24987291_258689,17:40:00,17:40:00,1474717,15, +24987291_258689,17:43:00,17:43:00,1845555,16, +24987291_258689,17:51:00,17:52:00,1475023,17, +24987291_258689,17:56:00,17:57:00,1474912,18, +24987291_258689,18:03:00,18:03:00,1475024,19, +24987291_258689,18:09:00,18:09:00,1474910,20, +24987291_258689,18:14:00,18:15:00,1474909,21, +24987291_258689,18:20:00,18:20:00,1474836,22, +24987292_258690,15:26:00,15:26:00,1474774,0, +24987292_258690,15:28:00,15:29:00,1474810,1, +24987292_258690,15:37:00,15:38:00,1474848,2, +24987292_258690,15:47:00,15:51:00,1474850,3, +24987292_258690,16:04:00,16:04:00,1475229,4, +24987292_258690,16:18:00,16:18:00,1475230,5, +24987292_258690,16:30:00,16:35:00,1475231,6, +24987292_258690,16:44:00,16:44:00,1474684,7, +24987292_258690,16:49:00,16:49:00,1474695,8, +24987292_258690,16:57:00,16:58:00,1474688,9, +24987292_258690,17:00:00,17:01:00,1474689,10, +24987292_258690,17:04:00,17:05:00,1474690,11, +24987292_258690,17:11:00,17:22:00,1474714,12, +24987292_258690,17:27:00,17:28:00,1474719,13, +24987292_258690,17:32:00,17:33:00,1474718,14, +24987292_258690,17:36:00,17:37:00,1474717,15, +24987292_258690,17:39:00,17:40:00,1845555,16, +24987292_258690,17:47:00,17:52:00,1475023,17, +24987292_258690,17:56:00,17:57:00,1474912,18, +24987292_258690,18:03:00,18:03:00,1475024,19, +24987292_258690,18:09:00,18:09:00,1474910,20, +24987292_258690,18:14:00,18:15:00,1474909,21, +24987292_258690,18:20:00,18:20:00,1609726,22, +24987296_258694,17:45:00,17:45:00,1609796,0, +24987296_258694,17:57:00,17:58:00,1475229,1, +24987296_258694,18:11:00,18:12:00,1475230,2, +24987296_258694,18:23:00,18:23:00,1475231,3, +24987296_258694,18:31:00,18:31:00,1474684,4, +24987296_258694,18:36:00,18:36:00,1474695,5, +24987296_258694,18:44:00,18:45:00,1474688,6, +24987296_258694,18:47:00,18:47:00,1474689,7, +24987296_258694,18:51:00,18:51:00,1474690,8, +24987296_258694,18:57:00,19:21:00,1474691,9, +24987296_258694,19:27:00,19:27:00,1474719,10, +24987296_258694,19:31:00,19:32:00,1474718,11, +24987296_258694,19:35:00,19:36:00,1474717,12, +24987296_258694,19:38:00,19:39:00,1845555,13, +24987296_258694,19:46:00,19:47:00,1475023,14, +24987296_258694,19:52:00,19:52:00,1474912,15, +24987296_258694,19:59:00,20:00:00,1475024,16, +24987296_258694,20:05:00,20:06:00,1474910,17, +24987296_258694,20:11:00,20:12:00,1474909,18, +24987296_258694,20:19:00,20:19:00,1474836,19, +24987297_258695,17:45:00,17:45:00,1609796,0, +24987297_258695,17:57:00,17:58:00,1475229,1, +24987297_258695,18:11:00,18:12:00,1475230,2, +24987297_258695,18:23:00,18:23:00,1475231,3, +24987297_258695,18:31:00,18:31:00,1474684,4, +24987297_258695,18:36:00,18:36:00,1474695,5, +24987297_258695,18:44:00,18:45:00,1474688,6, +24987297_258695,18:47:00,18:47:00,1474689,7, +24987297_258695,18:51:00,18:51:00,1474690,8, +24987297_258695,18:57:00,19:09:00,1474714,9, +24987297_258695,19:14:00,19:15:00,1474719,10, +24987297_258695,19:20:00,19:20:00,1474718,11, +24987297_258695,19:24:00,19:24:00,1474717,12, +24987297_258695,19:27:00,19:27:00,1845555,13, +24987297_258695,19:36:00,19:41:00,1475023,14, +24987297_258695,19:45:00,19:46:00,1474912,15, +24987297_258695,19:52:00,19:52:00,1475024,16, +24987297_258695,19:58:00,19:58:00,1474910,17, +24987297_258695,20:04:00,20:04:00,1474909,18, +24987297_258695,20:11:00,20:11:00,1609726,19, +24987303_258701,18:10:00,18:10:00,1474650,0, +24987303_258701,18:15:00,18:15:00,1474754,1, +24987303_258701,18:26:00,18:27:00,1474753,2, +24987303_258701,18:33:00,18:33:00,1474649,3, +24987303_258701,18:42:00,18:42:00,1474648,4, +24987303_258701,18:50:00,18:50:00,1474647,5, +24987303_258701,18:55:00,18:56:00,1474751,6, +24987303_258701,18:58:00,18:59:00,1474750,7, +24987303_258701,19:01:00,19:01:00,1474749,8, +24987303_258701,19:05:00,19:17:00,1474646,9, +24987303_258701,19:19:00,19:20:00,1474810,10, +24987303_258701,19:28:00,19:29:00,1474848,11, +24987303_258701,19:38:00,19:59:00,1474850,12, +24987303_258701,20:11:00,20:12:00,1475229,13, +24987303_258701,20:25:00,20:26:00,1475230,14, +24987303_258701,20:37:00,20:38:00,1475231,15, +24987303_258701,20:46:00,20:51:00,1474684,16, +24987303_258701,20:56:00,20:56:00,1474695,17, +24987303_258701,21:06:00,21:10:00,1474688,18, +24987303_258701,21:12:00,21:12:00,1474689,19, +24987303_258701,21:15:00,21:16:00,1474690,20, +24987303_258701,21:22:00,21:31:00,1474714,21, +24987303_258701,21:36:00,21:37:00,1474719,22, +24987303_258701,21:41:00,21:42:00,1474718,23, +24987303_258701,21:46:00,21:46:00,1474717,24, +24987303_258701,21:49:00,21:49:00,1845555,25, +24987303_258701,21:57:00,21:58:00,1475023,26, +24987303_258701,22:02:00,22:02:00,1474912,27, +24987303_258701,22:09:00,22:09:00,1475024,28, +24987303_258701,22:14:00,22:15:00,1474910,29, +24987303_258701,22:20:00,22:20:00,1474909,30, +24987303_258701,22:26:00,22:26:00,1474836,31, +24987304_258702,18:11:00,18:11:00,1474650,0, +24987304_258702,18:16:00,18:16:00,1474754,1, +24987304_258702,18:27:00,18:28:00,1474753,2, +24987304_258702,18:34:00,18:34:00,1474649,3, +24987304_258702,18:43:00,18:44:00,1474648,4, +24987304_258702,18:51:00,18:51:00,1474752,5, +24987304_258702,18:55:00,18:55:00,1474751,6, +24987304_258702,18:58:00,18:58:00,1474750,7, +24987304_258702,19:01:00,19:01:00,1474749,8, +24987304_258702,19:05:00,19:17:00,1474646,9, +24987304_258702,19:19:00,19:20:00,1474810,10, +24987304_258702,19:28:00,19:29:00,1474848,11, +24987304_258702,19:38:00,19:57:00,1474850,12, +24987304_258702,20:09:00,20:10:00,1475229,13, +24987304_258702,20:23:00,20:24:00,1475230,14, +24987304_258702,20:35:00,20:36:00,1475231,15, +24987304_258702,20:44:00,20:49:00,1474684,16, +24987304_258702,20:54:00,20:54:00,1474695,17, +24987304_258702,21:03:00,21:10:00,1474688,18, +24987304_258702,21:12:00,21:12:00,1474689,19, +24987304_258702,21:15:00,21:16:00,1474690,20, +24987304_258702,21:22:00,21:31:00,1474714,21, +24987304_258702,21:36:00,21:37:00,1474719,22, +24987304_258702,21:41:00,21:42:00,1474718,23, +24987304_258702,21:46:00,21:46:00,1474717,24, +24987304_258702,21:49:00,21:49:00,1845555,25, +24987304_258702,21:57:00,21:58:00,1475023,26, +24987304_258702,22:02:00,22:02:00,1474912,27, +24987304_258702,22:09:00,22:09:00,1475024,28, +24987304_258702,22:14:00,22:15:00,1474910,29, +24987304_258702,22:20:00,22:20:00,1474909,30, +24987304_258702,22:26:00,22:26:00,1609726,31, +24987306_258704,05:41:00,05:41:00,1475231,0, +24987306_258704,05:53:00,05:53:00,1475230,1, +24987306_258704,06:07:00,06:08:00,1475229,2, +24987306_258704,06:21:00,06:21:00,1609796,3, +24987312_258710,05:20:00,05:20:00,1474691,0, +24987312_258710,05:25:00,05:25:00,1474696,1, +24987312_258710,05:29:00,05:30:00,1474697,2, +24987312_258710,05:33:00,05:34:00,1474688,3, +24987312_258710,05:42:00,05:42:00,1474695,4, +24987312_258710,05:47:00,05:52:00,1474684,5, +24987312_258710,06:01:00,06:02:00,1474685,6, +24987312_258710,06:07:00,06:08:00,1474686,7, +24987312_258710,06:11:00,06:11:00,1474687,8, +24987315_258713,06:24:00,06:24:00,1474836,0, +24987315_258713,06:29:00,06:29:00,1474909,1, +24987315_258713,06:35:00,06:35:00,1474910,2, +24987315_258713,06:40:00,06:41:00,1474911,3, +24987315_258713,06:47:00,06:48:00,1474912,4, +24987315_258713,06:52:00,06:58:00,1474715,5, +24987315_258713,07:06:00,07:06:00,1845555,6, +24987315_258713,07:09:00,07:09:00,1474717,7, +24987315_258713,07:13:00,07:13:00,1474718,8, +24987315_258713,07:18:00,07:18:00,1474719,9, +24987315_258713,07:24:00,07:29:00,1474720,10, +24987315_258713,07:34:00,07:34:00,1474696,11, +24987315_258713,07:39:00,07:39:00,1474697,12, +24987315_258713,07:43:00,07:46:00,1474688,13, +24987315_258713,07:53:00,07:54:00,1474695,14, +24987315_258713,07:59:00,07:59:00,1474684,15, +24987315_258713,08:08:00,08:09:00,1475231,16, +24987315_258713,08:20:00,08:21:00,1475230,17, +24987315_258713,08:35:00,08:35:00,1475229,18, +24987315_258713,08:49:00,08:49:00,1475233,19, +24987316_258714,06:24:00,06:24:00,1609726,0, +24987316_258714,06:29:00,06:29:00,1474909,1, +24987316_258714,06:35:00,06:35:00,1474910,2, +24987316_258714,06:40:00,06:41:00,1474911,3, +24987316_258714,06:47:00,06:48:00,1474912,4, +24987316_258714,06:52:00,06:58:00,1474715,5, +24987316_258714,07:06:00,07:06:00,1845555,6, +24987316_258714,07:09:00,07:09:00,1474717,7, +24987316_258714,07:13:00,07:13:00,1474718,8, +24987316_258714,07:18:00,07:18:00,1474719,9, +24987316_258714,07:24:00,07:29:00,1474720,10, +24987316_258714,07:34:00,07:34:00,1474696,11, +24987316_258714,07:39:00,07:39:00,1474697,12, +24987316_258714,07:43:00,07:46:00,1474688,13, +24987316_258714,07:53:00,07:54:00,1474695,14, +24987316_258714,07:59:00,07:59:00,1474684,15, +24987316_258714,08:08:00,08:09:00,1475231,16, +24987316_258714,08:20:00,08:21:00,1475230,17, +24987316_258714,08:35:00,08:35:00,1475229,18, +24987316_258714,08:49:00,08:49:00,1475233,19, +24987320_258718,07:30:00,07:30:00,1474836,0, +24987320_258718,07:35:00,07:35:00,1474909,1, +24987320_258718,07:56:00,07:57:00,1474715,2, +24987320_258718,08:11:00,08:11:00,1474718,3, +24987320_258718,08:21:00,08:22:00,1474720,4, +24987320_258718,08:30:00,08:30:00,1474697,5, +24987320_258718,08:34:00,08:36:00,1474688,6, +24987320_258718,08:55:00,08:55:00,1475231,7, +24987320_258718,09:07:00,09:07:00,1475230,8, +24987320_258718,09:21:00,09:21:00,1475229,9, +24987320_258718,09:34:00,09:43:00,1474643,10, +24987320_258718,09:52:00,09:53:00,1474644,11, +24987320_258718,10:01:00,10:07:00,1474810,12, +24987320_258718,10:10:00,10:24:00,1474774,13, +24987320_258718,10:27:00,10:27:00,1474749,14, +24987320_258718,10:30:00,10:30:00,1474750,15, +24987320_258718,10:33:00,10:33:00,1474751,16, +24987320_258718,10:38:00,10:39:00,1474752,17, +24987320_258718,10:46:00,10:46:00,1474648,18, +24987320_258718,10:56:00,11:01:00,1874612,19, +24987320_258718,11:07:00,11:08:00,1474753,20, +24987320_258718,11:18:00,11:19:00,1474754,21, +24987320_258718,11:24:00,11:24:00,1474650,22, +24987321_258719,07:30:00,07:30:00,1609726,0, +24987321_258719,07:35:00,07:35:00,1474909,1, +24987321_258719,07:56:00,07:57:00,1474715,2, +24987321_258719,08:11:00,08:11:00,1474718,3, +24987321_258719,08:21:00,08:22:00,1474720,4, +24987321_258719,08:30:00,08:30:00,1474697,5, +24987321_258719,08:34:00,08:36:00,1474688,6, +24987321_258719,08:55:00,08:55:00,1475231,7, +24987321_258719,09:07:00,09:07:00,1475230,8, +24987321_258719,09:21:00,09:21:00,1475229,9, +24987321_258719,09:34:00,09:42:00,1474643,10, +24987321_258719,09:51:00,09:52:00,1474644,11, +24987321_258719,10:00:00,10:01:00,1474645,12, +24987321_258719,10:04:00,10:13:00,1474646,13, +24987321_258719,10:16:00,10:16:00,1474749,14, +24987321_258719,10:18:00,10:19:00,1474750,15, +24987321_258719,10:22:00,10:22:00,1474751,16, +24987321_258719,10:27:00,10:27:00,1474752,17, +24987321_258719,10:34:00,10:35:00,1474648,18, +24987321_258719,10:44:00,10:44:00,1874612,19, +24987321_258719,10:50:00,10:51:00,1474753,20, +24987321_258719,11:01:00,11:02:00,1474754,21, +24987321_258719,11:07:00,11:07:00,1474650,22, +24987325_258723,08:53:00,08:53:00,1474836,0, +24987325_258723,08:58:00,08:58:00,1474909,1, +24987325_258723,09:04:00,09:04:00,1474910,2, +24987325_258723,09:10:00,09:10:00,1474911,3, +24987325_258723,09:17:00,09:17:00,1474912,4, +24987325_258723,09:22:00,09:23:00,1474715,5, +24987325_258723,09:31:00,09:31:00,1845555,6, +24987325_258723,09:34:00,09:34:00,1474717,7, +24987325_258723,09:38:00,09:38:00,1474718,8, +24987325_258723,09:43:00,09:43:00,1474719,9, +24987325_258723,09:49:00,09:52:00,1474720,10, +24987325_258723,09:57:00,09:57:00,1474696,11, +24987325_258723,10:01:00,10:01:00,1474697,12, +24987325_258723,10:05:00,10:06:00,1474688,13, +24987325_258723,10:14:00,10:14:00,1474695,14, +24987325_258723,10:19:00,10:24:00,1474684,15, +24987325_258723,10:32:00,10:32:00,1475231,16, +24987325_258723,10:44:00,10:44:00,1475230,17, +24987325_258723,10:58:00,10:58:00,1475229,18, +24987325_258723,11:11:00,11:11:00,1475233,19, +24987326_258724,08:53:00,08:53:00,1609726,0, +24987326_258724,08:58:00,08:58:00,1474909,1, +24987326_258724,09:04:00,09:04:00,1474910,2, +24987326_258724,09:10:00,09:10:00,1474911,3, +24987326_258724,09:17:00,09:17:00,1474912,4, +24987326_258724,09:22:00,09:23:00,1474715,5, +24987326_258724,09:31:00,09:31:00,1845555,6, +24987326_258724,09:34:00,09:34:00,1474717,7, +24987326_258724,09:38:00,09:38:00,1474718,8, +24987326_258724,09:43:00,09:43:00,1474719,9, +24987326_258724,09:49:00,09:49:00,1474720,10, +24987326_258724,09:55:00,09:55:00,1474696,11, +24987326_258724,09:59:00,09:59:00,1474697,12, +24987326_258724,10:04:00,10:05:00,1474688,13, +24987326_258724,10:13:00,10:13:00,1474695,14, +24987326_258724,10:19:00,10:24:00,1474684,15, +24987326_258724,10:32:00,10:32:00,1475231,16, +24987326_258724,10:44:00,10:44:00,1475230,17, +24987326_258724,10:58:00,10:58:00,1475229,18, +24987326_258724,11:11:00,11:11:00,1475233,19, +24987329_258727,10:48:00,10:48:00,1474836,0, +24987329_258727,10:53:00,10:53:00,1474909,1, +24987329_258727,10:59:00,10:59:00,1474910,2, +24987329_258727,11:05:00,11:05:00,1474911,3, +24987329_258727,11:12:00,11:12:00,1474912,4, +24987329_258727,11:17:00,11:18:00,1474715,5, +24987329_258727,11:26:00,11:26:00,1845555,6, +24987329_258727,11:28:00,11:29:00,1474717,7, +24987329_258727,11:33:00,11:33:00,1474718,8, +24987329_258727,11:38:00,11:38:00,1474719,9, +24987329_258727,11:44:00,11:51:00,1474720,10, +24987329_258727,11:57:00,11:57:00,1474696,11, +24987329_258727,12:01:00,12:01:00,1474697,12, +24987329_258727,12:05:00,12:06:00,1474688,13, +24987329_258727,12:13:00,12:14:00,1474695,14, +24987329_258727,12:19:00,12:19:00,1474684,15, +24987329_258727,12:27:00,12:28:00,1474685,16, +24987329_258727,12:40:00,12:40:00,1475230,17, +24987329_258727,12:54:00,12:54:00,1475229,18, +24987329_258727,13:07:00,13:14:00,1474850,19, +24987329_258727,13:23:00,13:23:00,1474644,20, +24987329_258727,13:32:00,13:33:00,1474645,21, +24987329_258727,13:36:00,13:36:00,1474774,22, +24987330_258728,10:48:00,10:48:00,1609726,0, +24987330_258728,10:53:00,10:53:00,1474909,1, +24987330_258728,10:59:00,10:59:00,1474910,2, +24987330_258728,11:05:00,11:05:00,1474911,3, +24987330_258728,11:12:00,11:12:00,1474912,4, +24987330_258728,11:17:00,11:18:00,1474715,5, +24987330_258728,11:26:00,11:26:00,1845555,6, +24987330_258728,11:28:00,11:29:00,1474717,7, +24987330_258728,11:33:00,11:33:00,1474718,8, +24987330_258728,11:38:00,11:38:00,1474719,9, +24987330_258728,11:45:00,11:52:00,1474720,10, +24987330_258728,11:57:00,11:57:00,1474696,11, +24987330_258728,12:01:00,12:01:00,1474697,12, +24987330_258728,12:05:00,12:06:00,1474688,13, +24987330_258728,12:13:00,12:14:00,1474695,14, +24987330_258728,12:19:00,12:19:00,1474684,15, +24987330_258728,12:27:00,12:28:00,1474685,16, +24987330_258728,12:40:00,12:40:00,1475230,17, +24987330_258728,12:54:00,12:54:00,1475229,18, +24987330_258728,13:07:00,13:14:00,1474850,19, +24987330_258728,13:23:00,13:24:00,1474644,20, +24987330_258728,13:32:00,13:33:00,1474645,21, +24987330_258728,13:36:00,13:36:00,1474646,22, +24987342_258740,13:02:00,13:02:00,1474836,0, +24987342_258740,13:07:00,13:07:00,1474909,1, +24987342_258740,13:13:00,13:13:00,1474910,2, +24987342_258740,13:18:00,13:19:00,1474911,3, +24987342_258740,13:25:00,13:25:00,1474912,4, +24987342_258740,13:30:00,13:37:00,1474715,5, +24987342_258740,13:45:00,13:45:00,1845555,6, +24987342_258740,13:48:00,13:48:00,1474717,7, +24987342_258740,13:52:00,13:52:00,1474718,8, +24987342_258740,13:57:00,13:58:00,1474719,9, +24987342_258740,14:04:00,14:21:00,1474720,10, +24987342_258740,14:26:00,14:26:00,1474696,11, +24987342_258740,14:30:00,14:30:00,1474697,12, +24987342_258740,14:34:00,14:36:00,1474688,13, +24987342_258740,14:43:00,14:44:00,1474695,14, +24987342_258740,14:49:00,14:49:00,1474684,15, +24987342_258740,14:57:00,14:58:00,1475231,16, +24987342_258740,15:10:00,15:10:00,1475230,17, +24987342_258740,15:24:00,15:25:00,1475229,18, +24987342_258740,15:38:00,15:44:00,1474643,19, +24987342_258740,15:52:00,15:52:00,1474644,20, +24987342_258740,16:00:00,16:01:00,1474645,21, +24987342_258740,16:05:00,16:11:00,1474774,22, +24987342_258740,16:14:00,16:14:00,1474749,23, +24987342_258740,16:17:00,16:17:00,1474750,24, +24987342_258740,16:20:00,16:20:00,1474751,25, +24987342_258740,16:26:00,16:26:00,1474752,26, +24987342_258740,16:33:00,16:34:00,1474648,27, +24987342_258740,16:42:00,16:43:00,1474649,28, +24987342_258740,16:49:00,16:49:00,1474753,29, +24987342_258740,17:00:00,17:00:00,1474754,30, +24987342_258740,17:07:00,17:07:00,1474650,31, +24987343_258741,13:02:00,13:02:00,1474843,0, +24987343_258741,13:07:00,13:07:00,1474909,1, +24987343_258741,13:13:00,13:13:00,1474910,2, +24987343_258741,13:18:00,13:19:00,1474911,3, +24987343_258741,13:25:00,13:25:00,1474912,4, +24987343_258741,13:30:00,13:37:00,1474715,5, +24987343_258741,13:45:00,13:45:00,1845555,6, +24987343_258741,13:48:00,13:48:00,1474717,7, +24987343_258741,13:52:00,13:52:00,1474718,8, +24987343_258741,13:57:00,13:58:00,1474719,9, +24987343_258741,14:05:00,14:20:00,1474720,10, +24987343_258741,14:25:00,14:26:00,1474696,11, +24987343_258741,14:29:00,14:30:00,1474697,12, +24987343_258741,14:33:00,14:34:00,1474688,13, +24987343_258741,14:42:00,14:42:00,1474695,14, +24987343_258741,14:47:00,14:47:00,1474684,15, +24987343_258741,14:56:00,14:57:00,1475231,16, +24987343_258741,15:08:00,15:09:00,1475230,17, +24987343_258741,15:23:00,15:23:00,1475229,18, +24987343_258741,15:36:00,15:43:00,1474850,19, +24987343_258741,15:52:00,15:52:00,1474644,20, +24987343_258741,16:00:00,16:01:00,1474645,21, +24987343_258741,16:03:00,16:10:00,1474774,22, +24987343_258741,16:13:00,16:13:00,1474749,23, +24987343_258741,16:16:00,16:16:00,1474750,24, +24987343_258741,16:19:00,16:19:00,1474751,25, +24987343_258741,16:25:00,16:25:00,1474647,26, +24987343_258741,16:32:00,16:33:00,1474648,27, +24987343_258741,16:42:00,16:42:00,1474649,28, +24987343_258741,16:48:00,16:49:00,1474753,29, +24987343_258741,16:59:00,17:00:00,1474754,30, +24987343_258741,17:05:00,17:05:00,1474650,31, +24987346_258744,15:02:00,15:02:00,1474915,0, +24987346_258744,15:07:00,15:07:00,1474909,1, +24987346_258744,15:13:00,15:13:00,1474910,2, +24987346_258744,15:19:00,15:19:00,1474911,3, +24987346_258744,15:26:00,15:26:00,1474912,4, +24987346_258744,15:31:00,15:31:00,1474715,5, +24987346_258744,15:39:00,15:40:00,1845555,6, +24987346_258744,15:42:00,15:42:00,1474717,7, +24987346_258744,15:46:00,15:47:00,1474718,8, +24987346_258744,15:51:00,15:52:00,1474719,9, +24987346_258744,15:58:00,15:59:00,1474720,10, +24987346_258744,16:04:00,16:04:00,1474696,11, +24987346_258744,16:08:00,16:08:00,1474697,12, +24987346_258744,16:12:00,16:12:00,1474688,13, +24987346_258744,16:19:00,16:20:00,1474695,14, +24987346_258744,16:24:00,16:25:00,1474684,15, +24987346_258744,16:33:00,16:33:00,1474685,16, +24987346_258744,16:45:00,16:45:00,1475230,17, +24987346_258744,16:59:00,17:00:00,1475229,18, +24987346_258744,17:13:00,17:13:00,1609796,19, +24987347_258745,15:01:00,15:01:00,1609726,0, +24987347_258745,15:06:00,15:06:00,1474909,1, +24987347_258745,15:12:00,15:12:00,1474910,2, +24987347_258745,15:18:00,15:18:00,1474911,3, +24987347_258745,15:25:00,15:25:00,1474912,4, +24987347_258745,15:31:00,15:32:00,1474715,5, +24987347_258745,15:39:00,15:40:00,1845555,6, +24987347_258745,15:42:00,15:42:00,1474717,7, +24987347_258745,15:46:00,15:47:00,1474718,8, +24987347_258745,15:51:00,15:52:00,1474719,9, +24987347_258745,15:58:00,15:59:00,1474720,10, +24987347_258745,16:04:00,16:04:00,1474696,11, +24987347_258745,16:08:00,16:08:00,1474697,12, +24987347_258745,16:12:00,16:12:00,1474688,13, +24987347_258745,16:19:00,16:20:00,1474695,14, +24987347_258745,16:25:00,16:25:00,1474684,15, +24987347_258745,16:33:00,16:33:00,1475231,16, +24987347_258745,16:45:00,16:45:00,1475230,17, +24987347_258745,16:59:00,17:00:00,1475229,18, +24987347_258745,17:13:00,17:13:00,1609796,19, +24987351_258749,16:25:00,16:25:00,1474836,0, +24987351_258749,16:30:00,16:30:00,1474909,1, +24987351_258749,16:36:00,16:36:00,1474910,2, +24987351_258749,16:42:00,16:42:00,1474911,3, +24987351_258749,16:49:00,16:49:00,1474912,4, +24987351_258749,16:53:00,16:54:00,1474715,5, +24987351_258749,17:02:00,17:02:00,1845555,6, +24987351_258749,17:05:00,17:05:00,1474717,7, +24987351_258749,17:09:00,17:09:00,1474718,8, +24987351_258749,17:14:00,17:14:00,1474719,9, +24987351_258749,17:20:00,17:21:00,1474720,10, +24987351_258749,17:26:00,17:26:00,1474696,11, +24987351_258749,17:30:00,17:30:00,1474697,12, +24987351_258749,17:34:00,17:35:00,1474688,13, +24987351_258749,17:42:00,17:42:00,1474695,14, +24987351_258749,17:47:00,17:47:00,1474684,15, +24987351_258749,17:56:00,17:57:00,1475231,16, +24987351_258749,18:08:00,18:14:00,1475230,17, +24987351_258749,18:28:00,18:28:00,1475229,18, +24987351_258749,18:42:00,18:55:00,1474850,19, +24987351_258749,19:03:00,19:03:00,1474644,20, +24987351_258749,19:11:00,19:12:00,1474645,21, +24987351_258749,19:15:00,19:16:00,1474774,22, +24987351_258749,19:19:00,19:19:00,1474749,23, +24987351_258749,19:21:00,19:22:00,1474750,24, +24987351_258749,19:25:00,19:25:00,1474751,25, +24987351_258749,19:30:00,19:31:00,1474752,26, +24987351_258749,19:38:00,19:38:00,1474648,27, +24987351_258749,19:48:00,19:48:00,1474649,28, +24987351_258749,19:55:00,19:55:00,1474753,29, +24987351_258749,20:06:00,20:07:00,1474754,30, +24987351_258749,20:12:00,20:12:00,1474650,31, +24987352_258750,16:24:00,16:24:00,1609726,0, +24987352_258750,16:29:00,16:29:00,1474909,1, +24987352_258750,16:35:00,16:35:00,1474910,2, +24987352_258750,16:41:00,16:41:00,1474911,3, +24987352_258750,16:48:00,16:48:00,1474912,4, +24987352_258750,16:52:00,16:53:00,1474715,5, +24987352_258750,17:01:00,17:01:00,1845555,6, +24987352_258750,17:04:00,17:04:00,1474717,7, +24987352_258750,17:08:00,17:08:00,1474718,8, +24987352_258750,17:13:00,17:13:00,1474719,9, +24987352_258750,17:19:00,17:20:00,1474720,10, +24987352_258750,17:25:00,17:25:00,1474696,11, +24987352_258750,17:29:00,17:29:00,1474697,12, +24987352_258750,17:33:00,17:34:00,1474688,13, +24987352_258750,17:41:00,17:41:00,1474695,14, +24987352_258750,17:46:00,17:47:00,1474684,15, +24987352_258750,17:55:00,17:56:00,1475231,16, +24987352_258750,18:08:00,18:14:00,1475230,17, +24987352_258750,18:28:00,18:28:00,1475229,18, +24987352_258750,18:42:00,18:51:00,1474850,19, +24987352_258750,19:00:00,19:00:00,1474644,20, +24987352_258750,19:08:00,19:09:00,1474645,21, +24987352_258750,19:12:00,19:14:00,1474646,22, +24987352_258750,19:16:00,19:17:00,1474749,23, +24987352_258750,19:19:00,19:20:00,1474750,24, +24987352_258750,19:23:00,19:23:00,1474751,25, +24987352_258750,19:28:00,19:28:00,1474752,26, +24987352_258750,19:36:00,19:36:00,1474648,27, +24987352_258750,19:45:00,19:45:00,1474649,28, +24987352_258750,19:52:00,19:52:00,1474753,29, +24987352_258750,20:03:00,20:03:00,1474754,30, +24987352_258750,20:09:00,20:09:00,1474650,31, +24987354_258752,17:20:00,17:20:00,1474836,0, +24987354_258752,17:24:00,17:25:00,1474909,1, +24987354_258752,17:30:00,17:31:00,1474910,2, +24987354_258752,17:36:00,17:37:00,1474911,3, +24987354_258752,17:43:00,17:44:00,1474912,4, +24987354_258752,17:48:00,17:53:00,1474715,5, +24987354_258752,18:01:00,18:02:00,1845555,6, +24987354_258752,18:04:00,18:05:00,1474717,7, +24987354_258752,18:10:00,18:18:00,1474718,8, +24987354_258752,18:22:00,18:23:00,1474719,9, +24987354_258752,18:29:00,18:49:00,1474720,10, +24987354_258752,18:55:00,18:55:00,1474696,11, +24987354_258752,18:59:00,18:59:00,1474697,12, +24987354_258752,19:03:00,19:03:00,1474688,13, +24987355_258753,17:22:00,17:22:00,1609726,0, +24987355_258753,17:26:00,17:27:00,1474909,1, +24987355_258753,17:32:00,17:33:00,1474910,2, +24987355_258753,17:38:00,17:39:00,1474911,3, +24987355_258753,17:45:00,17:46:00,1474912,4, +24987355_258753,17:50:00,17:53:00,1474715,5, +24987355_258753,18:01:00,18:01:00,1845555,6, +24987355_258753,18:04:00,18:04:00,1474717,7, +24987355_258753,18:09:00,18:16:00,1474718,8, +24987355_258753,18:21:00,18:21:00,1474719,9, +24987355_258753,18:28:00,18:49:00,1474720,10, +24987355_258753,18:54:00,18:55:00,1474696,11, +24987355_258753,18:59:00,18:59:00,1474697,12, +24987355_258753,19:03:00,19:03:00,1474688,13, +24987360_258758,19:14:00,19:14:00,1474836,0, +24987360_258758,19:19:00,19:19:00,1474909,1, +24987360_258758,19:25:00,19:25:00,1474910,2, +24987360_258758,19:30:00,19:31:00,1474911,3, +24987360_258758,19:38:00,19:38:00,1474912,4, +24987360_258758,19:43:00,19:48:00,1474715,5, +24987360_258758,19:56:00,19:56:00,1845555,6, +24987360_258758,19:59:00,19:59:00,1474717,7, +24987360_258758,20:03:00,20:03:00,1474718,8, +24987360_258758,20:08:00,20:08:00,1474719,9, +24987360_258758,20:14:00,20:18:00,1474720,10, +24987360_258758,20:24:00,20:24:00,1474696,11, +24987360_258758,20:28:00,20:28:00,1474697,12, +24987360_258758,20:33:00,20:36:00,1474688,13, +24987360_258758,20:43:00,20:43:00,1474695,14, +24987360_258758,20:49:00,20:49:00,1475025,15, +24987360_258758,20:57:00,20:58:00,1475231,16, +24987360_258758,21:10:00,21:10:00,1475230,17, +24987360_258758,21:24:00,21:24:00,1475229,18, +24987360_258758,21:37:00,21:41:00,1474850,19, +24987360_258758,21:49:00,21:49:00,1474644,20, +24987360_258758,21:58:00,21:58:00,1474810,21, +24987363_258761,19:09:00,19:09:00,1609726,0, +24987363_258761,19:14:00,19:14:00,1474909,1, +24987363_258761,19:20:00,19:20:00,1474910,2, +24987363_258761,19:26:00,19:26:00,1474911,3, +24987363_258761,19:33:00,19:33:00,1474912,4, +24987363_258761,19:39:00,19:40:00,1474715,5, +24987363_258761,19:47:00,19:48:00,1845555,6, +24987363_258761,19:50:00,19:50:00,1474717,7, +24987363_258761,19:54:00,19:54:00,1474718,8, +24987363_258761,19:59:00,19:59:00,1474719,9, +24987363_258761,20:06:00,20:18:00,1474720,10, +24987363_258761,20:23:00,20:23:00,1474696,11, +24987363_258761,20:27:00,20:27:00,1474697,12, +24987363_258761,20:31:00,20:34:00,1474688,13, +24987363_258761,20:41:00,20:41:00,1474695,14, +24987363_258761,20:47:00,20:47:00,1475025,15, +24987363_258761,20:55:00,20:56:00,1475231,16, +24987363_258761,21:08:00,21:08:00,1475230,17, +24987363_258761,21:22:00,21:23:00,1475229,18, +24987363_258761,21:36:00,21:40:00,1474850,19, +24987363_258761,21:49:00,21:49:00,1474644,20, +24987363_258761,21:57:00,21:57:00,1474645,21, +24987365_258763,21:26:00,21:26:00,1474836,0, +24987365_258763,21:31:00,21:31:00,1474909,1, +24987365_258763,21:37:00,21:37:00,1474910,2, +24987365_258763,21:42:00,21:43:00,1474911,3, +24987365_258763,21:49:00,21:49:00,1474912,4, +24987365_258763,21:54:00,21:59:00,1474715,5, +24987365_258763,22:07:00,22:07:00,1845555,6, +24987365_258763,22:09:00,22:10:00,1474717,7, +24987365_258763,22:14:00,22:14:00,1474718,8, +24987365_258763,22:19:00,22:19:00,1474719,9, +24987365_258763,22:25:00,22:26:00,1474720,10, +24987365_258763,22:31:00,22:31:00,1474696,11, +24987365_258763,22:35:00,22:35:00,1474697,12, +24987365_258763,22:39:00,22:40:00,1474688,13, +24987365_258763,22:48:00,22:48:00,1474695,14, +24987365_258763,22:53:00,22:53:00,1474684,15, +24987365_258763,23:02:00,23:03:00,1474685,16, +24987365_258763,23:08:00,23:08:00,1474686,17, +24987365_258763,23:11:00,23:11:00,1474687,18, +24987366_258764,21:26:00,21:26:00,1609726,0, +24987366_258764,21:31:00,21:31:00,1474909,1, +24987366_258764,21:37:00,21:37:00,1474910,2, +24987366_258764,21:42:00,21:43:00,1474911,3, +24987366_258764,21:49:00,21:49:00,1474912,4, +24987366_258764,21:54:00,21:59:00,1474715,5, +24987366_258764,22:07:00,22:07:00,1845555,6, +24987366_258764,22:09:00,22:10:00,1474717,7, +24987366_258764,22:14:00,22:14:00,1474718,8, +24987366_258764,22:19:00,22:19:00,1474719,9, +24987366_258764,22:25:00,22:26:00,1474720,10, +24987366_258764,22:31:00,22:31:00,1474696,11, +24987366_258764,22:35:00,22:35:00,1474697,12, +24987366_258764,22:39:00,22:40:00,1474688,13, +24987366_258764,22:48:00,22:48:00,1474695,14, +24987366_258764,22:53:00,22:53:00,1474684,15, +24987366_258764,23:02:00,23:03:00,1474685,16, +24987366_258764,23:08:00,23:08:00,1474686,17, +24987366_258764,23:11:00,23:11:00,1474687,18, +24987374_258772,05:45:00,05:45:00,1474823,0, +24987374_258772,05:47:00,05:47:00,1474926,1, +24987374_258772,05:56:00,05:56:00,1474927,2, +24987374_258772,06:03:00,06:03:00,1474928,3, +24987374_258772,06:08:00,06:09:00,1474929,4, +24987374_258772,06:14:00,06:15:00,1474930,5, +24987374_258772,06:20:00,06:21:00,1474931,6, +24987374_258772,06:28:00,06:33:00,1474978,7, +24987374_258772,06:36:00,06:37:00,1474938,8, +24987374_258772,06:41:00,06:41:00,1474939,9, +24987374_258772,06:52:00,06:52:00,1474940,10, +24987374_258772,06:59:00,06:59:00,1474941,11, +24987374_258772,07:04:00,07:05:00,1474942,12, +24987374_258772,07:08:00,07:09:00,1474943,13, +24987374_258772,07:15:00,07:15:00,1474944,14, +24987374_258772,07:22:00,07:23:00,1474616,15, +24987374_258772,07:27:00,07:27:00,1474617,16, +24987375_258773,05:45:00,05:45:00,1474823,0, +24987375_258773,05:47:00,05:47:00,1474926,1, +24987375_258773,05:56:00,05:56:00,1474927,2, +24987375_258773,06:03:00,06:03:00,1474928,3, +24987375_258773,06:08:00,06:08:00,1474929,4, +24987375_258773,06:14:00,06:14:00,1474930,5, +24987375_258773,06:20:00,06:20:00,1474931,6, +24987375_258773,06:28:00,06:34:00,1474978,7, +24987375_258773,06:37:00,06:37:00,1474938,8, +24987375_258773,06:41:00,06:42:00,1474939,9, +24987375_258773,06:52:00,06:53:00,1474940,10, +24987375_258773,06:59:00,07:00:00,1474941,11, +24987375_258773,07:04:00,07:05:00,1474942,12, +24987375_258773,07:08:00,07:09:00,1474943,13, +24987375_258773,07:15:00,07:15:00,1474944,14, +24987375_258773,07:22:00,07:23:00,1474616,15, +24987375_258773,07:27:00,07:27:00,1474617,16, +24987383_258781,07:45:00,07:45:00,1474925,0, +24987383_258781,07:47:00,07:47:00,1474926,1, +24987383_258781,07:57:00,07:57:00,1474927,2, +24987383_258781,08:04:00,08:04:00,1475237,3, +24987383_258781,08:09:00,08:09:00,1474929,4, +24987383_258781,08:14:00,08:15:00,1474930,5, +24987383_258781,08:20:00,08:21:00,1474931,6, +24987383_258781,08:28:00,08:33:00,1474978,7, +24987383_258781,08:36:00,08:37:00,1474938,8, +24987383_258781,08:41:00,08:41:00,1474939,9, +24987383_258781,08:52:00,08:52:00,1474940,10, +24987383_258781,08:59:00,08:59:00,1474941,11, +24987383_258781,09:04:00,09:05:00,1474942,12, +24987383_258781,09:08:00,09:09:00,1474943,13, +24987383_258781,09:15:00,09:15:00,1474944,14, +24987383_258781,09:22:00,09:23:00,1474616,15, +24987383_258781,09:27:00,09:27:00,1474617,16, +24987384_258782,07:45:00,07:45:00,1474925,0, +24987384_258782,07:47:00,07:47:00,1474926,1, +24987384_258782,07:57:00,07:57:00,1474927,2, +24987384_258782,08:03:00,08:04:00,1475237,3, +24987384_258782,08:08:00,08:09:00,1474929,4, +24987384_258782,08:14:00,08:15:00,1474930,5, +24987384_258782,08:20:00,08:21:00,1474931,6, +24987384_258782,08:28:00,08:34:00,1474978,7, +24987384_258782,08:37:00,08:37:00,1474938,8, +24987384_258782,08:41:00,08:42:00,1474939,9, +24987384_258782,08:52:00,08:53:00,1474940,10, +24987384_258782,08:59:00,09:00:00,1474941,11, +24987384_258782,09:04:00,09:05:00,1474942,12, +24987384_258782,09:08:00,09:09:00,1474943,13, +24987384_258782,09:15:00,09:15:00,1474944,14, +24987384_258782,09:22:00,09:23:00,1474616,15, +24987384_258782,09:27:00,09:27:00,1474617,16, +24987391_258789,09:45:00,09:45:00,1474925,0, +24987391_258789,09:47:00,09:47:00,1474926,1, +24987391_258789,09:57:00,09:57:00,1474927,2, +24987391_258789,10:03:00,10:04:00,1474928,3, +24987391_258789,10:08:00,10:09:00,1474929,4, +24987391_258789,10:14:00,10:15:00,1474930,5, +24987391_258789,10:20:00,10:21:00,1474931,6, +24987391_258789,10:28:00,10:33:00,1474978,7, +24987391_258789,10:36:00,10:37:00,1474938,8, +24987391_258789,10:41:00,10:41:00,1474939,9, +24987391_258789,10:52:00,10:52:00,1474940,10, +24987391_258789,10:59:00,10:59:00,1474941,11, +24987391_258789,11:04:00,11:05:00,1474942,12, +24987391_258789,11:08:00,11:09:00,1474943,13, +24987391_258789,11:15:00,11:15:00,1474944,14, +24987391_258789,11:22:00,11:23:00,1474616,15, +24987391_258789,11:27:00,11:27:00,1474617,16, +24987392_258790,09:45:00,09:45:00,1474925,0, +24987392_258790,09:47:00,09:47:00,1474926,1, +24987392_258790,09:57:00,09:57:00,1474927,2, +24987392_258790,10:03:00,10:04:00,1474928,3, +24987392_258790,10:08:00,10:09:00,1474929,4, +24987392_258790,10:14:00,10:15:00,1474930,5, +24987392_258790,10:20:00,10:21:00,1474931,6, +24987392_258790,10:28:00,10:34:00,1474978,7, +24987392_258790,10:37:00,10:37:00,1474938,8, +24987392_258790,10:41:00,10:42:00,1474939,9, +24987392_258790,10:52:00,10:53:00,1474940,10, +24987392_258790,10:59:00,11:00:00,1474941,11, +24987392_258790,11:04:00,11:05:00,1474942,12, +24987392_258790,11:08:00,11:09:00,1474943,13, +24987392_258790,11:15:00,11:15:00,1474944,14, +24987392_258790,11:22:00,11:23:00,1474616,15, +24987392_258790,11:27:00,11:27:00,1474617,16, +24987400_258798,13:45:00,13:45:00,1474925,0, +24987400_258798,13:47:00,13:47:00,1474926,1, +24987400_258798,13:57:00,13:57:00,1474927,2, +24987400_258798,14:03:00,14:04:00,1474928,3, +24987400_258798,14:08:00,14:09:00,1474929,4, +24987400_258798,14:14:00,14:15:00,1474930,5, +24987400_258798,14:20:00,14:21:00,1474931,6, +24987400_258798,14:28:00,14:33:00,1474978,7, +24987400_258798,14:36:00,14:37:00,1474938,8, +24987400_258798,14:41:00,14:41:00,1474939,9, +24987400_258798,14:52:00,14:52:00,1474940,10, +24987400_258798,14:59:00,14:59:00,1474941,11, +24987400_258798,15:04:00,15:05:00,1474942,12, +24987400_258798,15:08:00,15:09:00,1474943,13, +24987400_258798,15:15:00,15:15:00,1474944,14, +24987400_258798,15:22:00,15:23:00,1474616,15, +24987400_258798,15:27:00,15:27:00,1474617,16, +24987401_258799,13:40:00,13:40:00,1474925,0, +24987401_258799,13:42:00,13:42:00,1474926,1, +24987401_258799,13:52:00,13:58:00,1474927,2, +24987401_258799,14:04:00,14:04:00,1474928,3, +24987401_258799,14:09:00,14:09:00,1474929,4, +24987401_258799,14:15:00,14:15:00,1474930,5, +24987401_258799,14:20:00,14:21:00,1474931,6, +24987401_258799,14:28:00,14:34:00,1474978,7, +24987401_258799,14:37:00,14:37:00,1474938,8, +24987401_258799,14:41:00,14:42:00,1474939,9, +24987401_258799,14:52:00,14:53:00,1474940,10, +24987401_258799,14:59:00,15:00:00,1474941,11, +24987401_258799,15:04:00,15:05:00,1474942,12, +24987401_258799,15:08:00,15:09:00,1474943,13, +24987401_258799,15:15:00,15:15:00,1474944,14, +24987401_258799,15:22:00,15:23:00,1474616,15, +24987401_258799,15:27:00,15:27:00,1474617,16, +24987415_258813,15:45:00,15:45:00,1474925,0, +24987415_258813,15:47:00,15:47:00,1474926,1, +24987415_258813,15:57:00,15:57:00,1474927,2, +24987415_258813,16:04:00,16:04:00,1475237,3, +24987415_258813,16:09:00,16:09:00,1474929,4, +24987415_258813,16:14:00,16:15:00,1474930,5, +24987415_258813,16:20:00,16:21:00,1474931,6, +24987415_258813,16:28:00,16:33:00,1474978,7, +24987415_258813,16:36:00,16:37:00,1474938,8, +24987415_258813,16:41:00,16:41:00,1474939,9, +24987415_258813,16:52:00,16:52:00,1474940,10, +24987415_258813,16:59:00,16:59:00,1474941,11, +24987415_258813,17:04:00,17:05:00,1474942,12, +24987415_258813,17:08:00,17:09:00,1474943,13, +24987415_258813,17:15:00,17:15:00,1474944,14, +24987415_258813,17:22:00,17:23:00,1474616,15, +24987415_258813,17:27:00,17:27:00,1474617,16, +24987416_258814,15:37:00,15:37:00,1474925,0, +24987416_258814,15:39:00,15:39:00,1474926,1, +24987416_258814,15:48:00,15:49:00,1474927,2, +24987416_258814,15:55:00,16:04:00,1475237,3, +24987416_258814,16:09:00,16:09:00,1474929,4, +24987416_258814,16:14:00,16:15:00,1474930,5, +24987416_258814,16:20:00,16:21:00,1474931,6, +24987416_258814,16:28:00,16:33:00,1474978,7, +24987416_258814,16:36:00,16:37:00,1474938,8, +24987416_258814,16:41:00,16:41:00,1474939,9, +24987416_258814,16:52:00,16:52:00,1474940,10, +24987416_258814,16:59:00,16:59:00,1474941,11, +24987416_258814,17:04:00,17:05:00,1474942,12, +24987416_258814,17:08:00,17:09:00,1474943,13, +24987416_258814,17:15:00,17:15:00,1474944,14, +24987416_258814,17:22:00,17:23:00,1474616,15, +24987416_258814,17:27:00,17:27:00,1474617,16, +24987417_258815,15:45:00,15:45:00,1474925,0, +24987417_258815,15:47:00,15:47:00,1474926,1, +24987417_258815,15:57:00,15:57:00,1474927,2, +24987417_258815,16:03:00,16:04:00,1475237,3, +24987417_258815,16:08:00,16:09:00,1474929,4, +24987417_258815,16:14:00,16:15:00,1474930,5, +24987417_258815,16:20:00,16:21:00,1474931,6, +24987417_258815,16:28:00,16:34:00,1474978,7, +24987417_258815,16:37:00,16:37:00,1474938,8, +24987417_258815,16:41:00,16:42:00,1474939,9, +24987417_258815,16:52:00,16:53:00,1474940,10, +24987417_258815,16:59:00,17:00:00,1474941,11, +24987417_258815,17:04:00,17:05:00,1474942,12, +24987417_258815,17:08:00,17:09:00,1474943,13, +24987417_258815,17:15:00,17:15:00,1474944,14, +24987417_258815,17:22:00,17:23:00,1474616,15, +24987417_258815,17:27:00,17:27:00,1474617,16, +24987424_258822,19:45:00,19:45:00,1474925,0, +24987424_258822,19:47:00,19:47:00,1474926,1, +24987424_258822,19:57:00,19:57:00,1474927,2, +24987424_258822,20:03:00,20:04:00,1474928,3, +24987424_258822,20:08:00,20:09:00,1474929,4, +24987424_258822,20:14:00,20:15:00,1474930,5, +24987424_258822,20:20:00,20:21:00,1474931,6, +24987424_258822,20:28:00,20:33:00,1474978,7, +24987424_258822,20:36:00,20:37:00,1474938,8, +24987424_258822,20:41:00,20:41:00,1474939,9, +24987424_258822,20:52:00,20:52:00,1474940,10, +24987424_258822,20:59:00,20:59:00,1474941,11, +24987424_258822,21:04:00,21:05:00,1474942,12, +24987424_258822,21:08:00,21:09:00,1474943,13, +24987424_258822,21:15:00,21:15:00,1474944,14, +24987424_258822,21:22:00,21:23:00,1474616,15, +24987424_258822,21:27:00,21:27:00,1474617,16, +24987425_258823,19:45:00,19:45:00,1474925,0, +24987425_258823,19:47:00,19:47:00,1474926,1, +24987425_258823,19:57:00,19:57:00,1474927,2, +24987425_258823,20:03:00,20:04:00,1474928,3, +24987425_258823,20:08:00,20:09:00,1474929,4, +24987425_258823,20:14:00,20:15:00,1474930,5, +24987425_258823,20:20:00,20:21:00,1474931,6, +24987425_258823,20:28:00,20:34:00,1474978,7, +24987425_258823,20:37:00,20:37:00,1474938,8, +24987425_258823,20:41:00,20:42:00,1474939,9, +24987425_258823,20:52:00,20:53:00,1474940,10, +24987425_258823,20:59:00,21:00:00,1474941,11, +24987425_258823,21:04:00,21:05:00,1474942,12, +24987425_258823,21:08:00,21:09:00,1474943,13, +24987425_258823,21:15:00,21:15:00,1474944,14, +24987425_258823,21:22:00,21:23:00,1474616,15, +24987425_258823,21:27:00,21:27:00,1474617,16, +24987426_258824,21:05:00,21:05:00,1474937,0, +24987426_258824,21:08:00,21:09:00,1474936,1, +24987426_258824,21:11:00,21:11:00,1474935,2, +24987426_258824,21:15:00,21:15:00,1474934,3, +24987426_258824,21:21:00,21:22:00,1474933,4, +24987426_258824,21:25:00,21:26:00,1474932,5, +24987426_258824,21:29:00,21:29:00,1474938,6, +24987426_258824,21:33:00,21:34:00,1474939,7, +24987426_258824,21:46:00,21:47:00,1474979,8, +24987426_258824,21:58:00,21:59:00,1475138,9, +24987426_258824,22:03:00,22:04:00,1475139,10, +24987426_258824,22:14:00,22:14:00,1475190,11, +24987427_258825,04:28:00,04:28:00,1475190,0, +24987427_258825,04:38:00,04:38:00,1475139,1, +24987427_258825,04:42:00,04:42:00,1475138,2, +24987427_258825,04:55:00,04:55:00,1474980,3, +24987427_258825,05:07:00,05:08:00,1474939,4, +24987427_258825,05:12:00,05:12:00,1474938,5, +24987427_258825,05:16:00,05:17:00,1474932,6, +24987427_258825,05:20:00,05:21:00,1474933,7, +24987427_258825,05:27:00,05:27:00,1474934,8, +24987427_258825,05:31:00,05:31:00,1474935,9, +24987427_258825,05:34:00,05:34:00,1474936,10, +24987427_258825,05:39:00,05:39:00,1474937,11, +24987454_258852,09:36:00,09:36:00,1475233,0, +24987454_258852,09:48:00,09:49:00,1475229,1, +24987454_258852,10:02:00,10:03:00,1475230,2, +24987454_258852,10:14:00,10:14:00,1475231,3, +24987454_258852,10:22:00,10:22:00,1475025,4, +24987454_258852,10:27:00,10:28:00,1474695,5, +24987454_258852,10:35:00,10:36:00,1474688,6, +24987454_258852,10:38:00,10:38:00,1474689,7, +24987454_258852,10:42:00,10:42:00,1474690,8, +24987454_258852,10:48:00,10:49:00,1474714,9, +24987454_258852,10:54:00,10:54:00,1474719,10, +24987454_258852,10:59:00,10:59:00,1474718,11, +24987454_258852,11:03:00,11:03:00,1474717,12, +24987454_258852,11:06:00,11:06:00,1845555,13, +24987454_258852,11:14:00,11:19:00,1475023,14, +24987454_258852,11:23:00,11:24:00,1474912,15, +24987454_258852,11:30:00,11:31:00,1475024,16, +24987454_258852,11:36:00,11:37:00,1474910,17, +24987454_258852,11:42:00,11:43:00,1474909,18, +24987454_258852,11:51:00,11:51:00,1474836,19, +24987455_258853,09:36:00,09:36:00,1475233,0, +24987455_258853,09:48:00,09:49:00,1475229,1, +24987455_258853,10:02:00,10:03:00,1475230,2, +24987455_258853,10:14:00,10:14:00,1475231,3, +24987455_258853,10:22:00,10:22:00,1475025,4, +24987455_258853,10:27:00,10:28:00,1474695,5, +24987455_258853,10:35:00,10:36:00,1474688,6, +24987455_258853,10:38:00,10:38:00,1474689,7, +24987455_258853,10:42:00,10:42:00,1474690,8, +24987455_258853,10:48:00,10:49:00,1474714,9, +24987455_258853,10:54:00,10:54:00,1474719,10, +24987455_258853,10:59:00,10:59:00,1474718,11, +24987455_258853,11:03:00,11:03:00,1474717,12, +24987455_258853,11:06:00,11:06:00,1845555,13, +24987455_258853,11:14:00,11:19:00,1475023,14, +24987455_258853,11:23:00,11:24:00,1474912,15, +24987455_258853,11:30:00,11:31:00,1475024,16, +24987455_258853,11:36:00,11:37:00,1474910,17, +24987455_258853,11:42:00,11:43:00,1474909,18, +24987455_258853,11:51:00,11:51:00,1609726,19, +24987456_258854,05:10:00,05:10:00,1474685,0, +24987456_258854,05:15:00,05:15:00,1474686,1, +24987456_258854,05:18:00,05:18:00,1474687,2, +24987457_258855,06:02:00,06:02:00,1474685,0, +24987457_258855,06:07:00,06:08:00,1474686,1, +24987457_258855,06:11:00,06:11:00,1474687,2, +24987458_258856,12:33:00,12:33:00,1474685,0, +24987458_258856,12:39:00,12:39:00,1474686,1, +24987458_258856,12:42:00,12:42:00,1474687,2, +24987460_258858,15:03:00,15:03:00,1474685,0, +24987460_258858,15:08:00,15:09:00,1474686,1, +24987460_258858,15:11:00,15:11:00,1474687,2, +24987461_258859,15:01:00,15:01:00,1474685,0, +24987461_258859,15:06:00,15:07:00,1474686,1, +24987461_258859,15:09:00,15:09:00,1474687,2, +24987463_258861,00:14:00,00:14:00,1474713,0, +24987463_258861,00:32:00,00:32:00,1474705,1, +24987463_258861,00:35:00,00:36:00,1475214,2, +24987463_258861,00:40:00,00:40:00,1474703,3, +24987463_258861,00:44:00,00:45:00,1475181,4, +24987463_258861,00:50:00,00:50:00,1474651,5, +24987464_258862,00:09:00,00:09:00,1474713,0, +24987464_258862,00:27:00,00:27:00,1474705,1, +24987464_258862,00:30:00,00:31:00,1475214,2, +24987464_258862,00:35:00,00:35:00,1474703,3, +24987464_258862,00:39:00,00:40:00,1475181,4, +24987464_258862,00:45:00,00:45:00,1474738,5, +24987466_258864,03:57:00,03:57:00,1474713,0, +24987466_258864,04:01:00,04:01:00,1474712,1, +24987466_258864,04:04:00,04:04:00,1474711,2, +24987466_258864,04:07:00,04:08:00,1474710,3, +24987466_258864,04:11:00,04:11:00,1474709,4, +24987466_258864,04:13:00,04:14:00,1474708,5, +24987466_258864,04:17:00,04:17:00,1474707,6, +24987466_258864,04:19:00,04:20:00,1474706,7, +24987466_258864,04:22:00,04:23:00,1474705,8, +24987466_258864,04:26:00,04:27:00,1475214,9, +24987466_258864,04:31:00,04:31:00,1474703,10, +24987466_258864,04:33:00,04:34:00,1475180,11, +24987466_258864,04:36:00,04:37:00,1475181,12, +24987466_258864,04:42:00,04:48:00,1474651,13, +24987466_258864,04:54:00,04:55:00,1474652,14, +24987466_258864,04:58:00,04:59:00,1474653,15, +24987466_258864,05:02:00,05:03:00,1474654,16, +24987466_258864,05:06:00,05:06:00,1474662,17, +24987466_258864,05:11:00,05:11:00,1474663,18, +24987466_258864,05:14:00,05:14:00,1474664,19, +24987466_258864,05:18:00,05:18:00,1474665,20, +24987466_258864,05:24:00,05:24:00,1474666,21, +24987466_258864,05:28:00,05:29:00,1474667,22, +24987466_258864,05:33:00,05:33:00,1474668,23, +24987467_258865,04:00:00,04:00:00,1474713,0, +24987467_258865,04:04:00,04:04:00,1474712,1, +24987467_258865,04:07:00,04:07:00,1474711,2, +24987467_258865,04:10:00,04:11:00,1474710,3, +24987467_258865,04:14:00,04:14:00,1474709,4, +24987467_258865,04:16:00,04:17:00,1474708,5, +24987467_258865,04:20:00,04:20:00,1474707,6, +24987467_258865,04:22:00,04:23:00,1474706,7, +24987467_258865,04:25:00,04:26:00,1474705,8, +24987467_258865,04:29:00,04:30:00,1475214,9, +24987467_258865,04:34:00,04:34:00,1474703,10, +24987467_258865,04:36:00,04:37:00,1475180,11, +24987467_258865,04:39:00,04:40:00,1475181,12, +24987467_258865,04:45:00,04:48:00,1474640,13, +24987467_258865,04:54:00,04:55:00,1474652,14, +24987467_258865,04:58:00,04:59:00,1474653,15, +24987467_258865,05:02:00,05:03:00,1474654,16, +24987467_258865,05:06:00,05:06:00,1474662,17, +24987467_258865,05:11:00,05:11:00,1474663,18, +24987467_258865,05:14:00,05:14:00,1474664,19, +24987467_258865,05:18:00,05:18:00,1474665,20, +24987467_258865,05:24:00,05:24:00,1474666,21, +24987467_258865,05:28:00,05:29:00,1474667,22, +24987467_258865,05:33:00,05:33:00,1474668,23, +24987469_258867,05:26:00,05:26:00,1474713,0, +24987469_258867,05:30:00,05:30:00,1474712,1, +24987469_258867,05:33:00,05:33:00,1474711,2, +24987469_258867,05:36:00,05:37:00,1474710,3, +24987469_258867,05:40:00,05:40:00,1474709,4, +24987469_258867,05:42:00,05:43:00,1474708,5, +24987469_258867,05:46:00,05:46:00,1474707,6, +24987469_258867,05:48:00,05:49:00,1474706,7, +24987469_258867,05:52:00,05:52:00,1474705,8, +24987469_258867,05:55:00,05:56:00,1475214,9, +24987469_258867,06:00:00,06:01:00,1474703,10, +24987469_258867,06:03:00,06:03:00,1475180,11, +24987469_258867,06:05:00,06:06:00,1475181,12, +24987469_258867,06:12:00,06:22:00,1474651,13, +24987469_258867,06:29:00,06:29:00,1474652,14, +24987469_258867,06:33:00,06:33:00,1474653,15, +24987469_258867,06:37:00,06:42:00,1474654,16, +24987469_258867,06:45:00,06:46:00,1474662,17, +24987469_258867,06:50:00,06:55:00,1474663,18, +24987469_258867,06:58:00,06:58:00,1474664,19, +24987469_258867,07:02:00,07:02:00,1474665,20, +24987469_258867,07:08:00,07:08:00,1474666,21, +24987469_258867,07:12:00,07:13:00,1474667,22, +24987469_258867,07:16:00,07:16:00,1474668,23, +24987469_258867,07:19:00,07:19:00,1764608,24, +24987469_258867,07:23:00,07:23:00,1474669,25, +24987469_258867,07:27:00,07:27:00,1474670,26, +24987469_258867,07:33:00,07:33:00,1474671,27, +24987469_258867,07:37:00,07:37:00,1474672,28, +24987469_258867,07:41:00,07:41:00,1474673,29, +24987470_258868,05:26:00,05:26:00,1474713,0, +24987470_258868,05:30:00,05:30:00,1474712,1, +24987470_258868,05:33:00,05:33:00,1474711,2, +24987470_258868,05:36:00,05:37:00,1474710,3, +24987470_258868,05:40:00,05:40:00,1474709,4, +24987470_258868,05:42:00,05:43:00,1474708,5, +24987470_258868,05:46:00,05:46:00,1474707,6, +24987470_258868,05:48:00,05:49:00,1474706,7, +24987470_258868,05:51:00,05:52:00,1474705,8, +24987470_258868,05:56:00,05:57:00,1475214,9, +24987470_258868,06:01:00,06:02:00,1474703,10, +24987470_258868,06:04:00,06:04:00,1475180,11, +24987470_258868,06:07:00,06:08:00,1475181,12, +24987470_258868,06:13:00,06:22:00,1474640,13, +24987470_258868,06:29:00,06:29:00,1474652,14, +24987470_258868,06:33:00,06:33:00,1474653,15, +24987470_258868,06:37:00,06:42:00,1474654,16, +24987470_258868,06:45:00,06:46:00,1474662,17, +24987470_258868,06:50:00,06:55:00,1474663,18, +24987470_258868,06:58:00,06:58:00,1474664,19, +24987470_258868,07:02:00,07:02:00,1474665,20, +24987470_258868,07:08:00,07:08:00,1474666,21, +24987470_258868,07:12:00,07:13:00,1474667,22, +24987470_258868,07:16:00,07:16:00,1474668,23, +24987470_258868,07:19:00,07:19:00,1764608,24, +24987470_258868,07:23:00,07:23:00,1474669,25, +24987470_258868,07:27:00,07:27:00,1474670,26, +24987470_258868,07:33:00,07:33:00,1474671,27, +24987470_258868,07:37:00,07:37:00,1474672,28, +24987470_258868,07:41:00,07:41:00,1474673,29, +24987472_258870,06:32:00,06:32:00,1474713,0, +24987472_258870,06:36:00,06:36:00,1474712,1, +24987472_258870,06:39:00,06:39:00,1474711,2, +24987472_258870,06:42:00,06:43:00,1474710,3, +24987472_258870,06:46:00,06:46:00,1474709,4, +24987472_258870,06:48:00,06:49:00,1474708,5, +24987472_258870,06:52:00,06:52:00,1474707,6, +24987472_258870,06:54:00,06:55:00,1474706,7, +24987472_258870,06:57:00,06:58:00,1474705,8, +24987472_258870,07:01:00,07:01:00,1475214,9, +24987472_258870,07:05:00,07:06:00,1474703,10, +24987472_258870,07:08:00,07:09:00,1475180,11, +24987472_258870,07:11:00,07:12:00,1475181,12, +24987472_258870,07:17:00,07:26:00,1474651,13, +24987472_258870,07:34:00,07:35:00,1474653,14, +24987472_258870,07:38:00,07:39:00,1474654,15, +24987472_258870,07:45:00,07:46:00,1474663,16, +24987472_258870,08:00:00,08:00:00,1474667,17, +24987472_258870,08:19:00,08:20:00,1474670,18, +24987472_258870,08:27:00,08:27:00,1474672,19, +24987472_258870,08:31:00,08:31:00,1474673,20, +24987473_258871,06:31:00,06:31:00,1474713,0, +24987473_258871,06:35:00,06:35:00,1474712,1, +24987473_258871,06:38:00,06:38:00,1474711,2, +24987473_258871,06:41:00,06:42:00,1474710,3, +24987473_258871,06:45:00,06:45:00,1474709,4, +24987473_258871,06:47:00,06:48:00,1474708,5, +24987473_258871,06:51:00,06:51:00,1474707,6, +24987473_258871,06:53:00,06:54:00,1474706,7, +24987473_258871,06:56:00,06:56:00,1474705,8, +24987473_258871,07:00:00,07:00:00,1475214,9, +24987473_258871,07:04:00,07:05:00,1474703,10, +24987473_258871,07:07:00,07:08:00,1475180,11, +24987473_258871,07:10:00,07:13:00,1475181,12, +24987473_258871,07:19:00,07:26:00,1474640,13, +24987473_258871,07:34:00,07:35:00,1474653,14, +24987473_258871,07:38:00,07:39:00,1474654,15, +24987473_258871,07:45:00,07:46:00,1474663,16, +24987473_258871,08:00:00,08:00:00,1474667,17, +24987473_258871,08:19:00,08:19:00,1474670,18, +24987473_258871,08:27:00,08:27:00,1474672,19, +24987473_258871,08:31:00,08:31:00,1474673,20, +24987475_258873,07:37:00,07:37:00,1474713,0, +24987475_258873,07:41:00,07:41:00,1474712,1, +24987475_258873,07:44:00,07:44:00,1474711,2, +24987475_258873,07:47:00,07:48:00,1474710,3, +24987475_258873,07:51:00,07:51:00,1474709,4, +24987475_258873,07:53:00,07:54:00,1474708,5, +24987475_258873,07:57:00,07:57:00,1474707,6, +24987475_258873,07:59:00,08:00:00,1474706,7, +24987475_258873,08:02:00,08:03:00,1474705,8, +24987475_258873,08:06:00,08:07:00,1475214,9, +24987475_258873,08:11:00,08:12:00,1474703,10, +24987475_258873,08:15:00,08:15:00,1475180,11, +24987475_258873,08:18:00,08:19:00,1475181,12, +24987475_258873,08:24:00,08:24:00,1474738,13, +24987476_258874,07:37:00,07:37:00,1474713,0, +24987476_258874,07:41:00,07:41:00,1474712,1, +24987476_258874,07:44:00,07:44:00,1474711,2, +24987476_258874,07:47:00,07:48:00,1474710,3, +24987476_258874,07:51:00,07:51:00,1474709,4, +24987476_258874,07:53:00,07:54:00,1474708,5, +24987476_258874,07:57:00,07:57:00,1474707,6, +24987476_258874,07:59:00,07:59:00,1474706,7, +24987476_258874,08:02:00,08:02:00,1474705,8, +24987476_258874,08:06:00,08:06:00,1475214,9, +24987476_258874,08:11:00,08:12:00,1474703,10, +24987476_258874,08:14:00,08:14:00,1475180,11, +24987476_258874,08:17:00,08:18:00,1475181,12, +24987476_258874,08:23:00,08:23:00,1474738,13, +24987478_258876,08:43:00,08:43:00,1474713,0, +24987478_258876,08:47:00,08:47:00,1474712,1, +24987478_258876,08:50:00,08:50:00,1474711,2, +24987478_258876,08:53:00,08:54:00,1474710,3, +24987478_258876,08:57:00,08:57:00,1474709,4, +24987478_258876,08:59:00,09:00:00,1474708,5, +24987478_258876,09:03:00,09:03:00,1474707,6, +24987478_258876,09:05:00,09:06:00,1474706,7, +24987478_258876,09:08:00,09:09:00,1474705,8, +24987478_258876,09:12:00,09:13:00,1475214,9, +24987478_258876,09:17:00,09:18:00,1474703,10, +24987478_258876,09:20:00,09:21:00,1475180,11, +24987478_258876,09:23:00,09:24:00,1475181,12, +24987478_258876,09:30:00,09:35:00,1474640,13, +24987478_258876,09:42:00,09:42:00,1474652,14, +24987478_258876,09:46:00,09:46:00,1474653,15, +24987478_258876,09:50:00,09:55:00,1474654,16, +24987478_258876,09:58:00,09:59:00,1474662,17, +24987478_258876,10:03:00,10:03:00,1474663,18, +24987478_258876,10:06:00,10:06:00,1474664,19, +24987478_258876,10:10:00,10:10:00,1474665,20, +24987478_258876,10:16:00,10:16:00,1474666,21, +24987478_258876,10:21:00,10:21:00,1474667,22, +24987478_258876,10:24:00,10:31:00,1474668,23, +24987478_258876,10:34:00,10:34:00,1764608,24, +24987478_258876,10:37:00,10:38:00,1474669,25, +24987478_258876,10:41:00,10:42:00,1474670,26, +24987478_258876,10:47:00,10:47:00,1474671,27, +24987478_258876,10:51:00,10:51:00,1474672,28, +24987478_258876,10:55:00,11:05:00,1474688,29, +24987478_258876,11:13:00,11:13:00,1474695,30, +24987478_258876,11:18:00,11:19:00,1474684,31, +24987478_258876,11:28:00,11:29:00,1474685,32, +24987478_258876,11:34:00,11:35:00,1474686,33, +24987478_258876,11:38:00,11:38:00,1474687,34, +24987479_258877,08:44:00,08:44:00,1474713,0, +24987479_258877,08:48:00,08:48:00,1474712,1, +24987479_258877,08:51:00,08:51:00,1474711,2, +24987479_258877,08:54:00,08:55:00,1474710,3, +24987479_258877,08:58:00,08:58:00,1474709,4, +24987479_258877,09:00:00,09:01:00,1474708,5, +24987479_258877,09:04:00,09:04:00,1474707,6, +24987479_258877,09:06:00,09:06:00,1474706,7, +24987479_258877,09:09:00,09:09:00,1474705,8, +24987479_258877,09:12:00,09:13:00,1475214,9, +24987479_258877,09:18:00,09:19:00,1474703,10, +24987479_258877,09:21:00,09:22:00,1475180,11, +24987479_258877,09:24:00,09:25:00,1475181,12, +24987479_258877,09:30:00,09:35:00,1474640,13, +24987479_258877,09:42:00,09:42:00,1474652,14, +24987479_258877,09:46:00,09:46:00,1474653,15, +24987479_258877,09:50:00,09:55:00,1474654,16, +24987479_258877,09:58:00,09:59:00,1474662,17, +24987479_258877,10:03:00,10:03:00,1474663,18, +24987479_258877,10:06:00,10:06:00,1474664,19, +24987479_258877,10:10:00,10:10:00,1474665,20, +24987479_258877,10:16:00,10:16:00,1474666,21, +24987479_258877,10:21:00,10:21:00,1474667,22, +24987479_258877,10:24:00,10:31:00,1474668,23, +24987479_258877,10:34:00,10:34:00,1764608,24, +24987479_258877,10:37:00,10:38:00,1474669,25, +24987479_258877,10:41:00,10:42:00,1474670,26, +24987479_258877,10:47:00,10:47:00,1474671,27, +24987479_258877,10:51:00,10:51:00,1474672,28, +24987479_258877,10:55:00,11:05:00,1474688,29, +24987479_258877,11:13:00,11:13:00,1474695,30, +24987479_258877,11:18:00,11:19:00,1474684,31, +24987479_258877,11:28:00,11:29:00,1474685,32, +24987479_258877,11:34:00,11:35:00,1474686,33, +24987479_258877,11:38:00,11:38:00,1474687,34, +24987481_258879,10:39:00,10:39:00,1474713,0, +24987481_258879,10:43:00,10:43:00,1474712,1, +24987481_258879,10:46:00,10:46:00,1474711,2, +24987481_258879,10:49:00,10:50:00,1474710,3, +24987481_258879,10:53:00,10:53:00,1474709,4, +24987481_258879,10:55:00,10:56:00,1474708,5, +24987481_258879,10:59:00,10:59:00,1474707,6, +24987481_258879,11:01:00,11:02:00,1474706,7, +24987481_258879,11:04:00,11:04:00,1474705,8, +24987481_258879,11:08:00,11:08:00,1475214,9, +24987481_258879,11:12:00,11:14:00,1474703,10, +24987481_258879,11:16:00,11:17:00,1475180,11, +24987481_258879,11:19:00,11:20:00,1475181,12, +24987481_258879,11:26:00,11:26:00,1474861,13, +24987482_258880,10:39:00,10:39:00,1474713,0, +24987482_258880,10:43:00,10:43:00,1474712,1, +24987482_258880,10:46:00,10:46:00,1474711,2, +24987482_258880,10:49:00,10:50:00,1474710,3, +24987482_258880,10:53:00,10:53:00,1474709,4, +24987482_258880,10:55:00,10:56:00,1474708,5, +24987482_258880,10:59:00,10:59:00,1474707,6, +24987482_258880,11:01:00,11:02:00,1474706,7, +24987482_258880,11:04:00,11:04:00,1474705,8, +24987482_258880,11:08:00,11:08:00,1475214,9, +24987482_258880,11:12:00,11:14:00,1474703,10, +24987482_258880,11:16:00,11:17:00,1475180,11, +24987482_258880,11:19:00,11:20:00,1475181,12, +24987482_258880,11:26:00,11:26:00,1474738,13, +24987485_258883,12:13:00,12:13:00,1474713,0, +24987485_258883,12:17:00,12:17:00,1474712,1, +24987485_258883,12:20:00,12:20:00,1474711,2, +24987485_258883,12:23:00,12:24:00,1474710,3, +24987485_258883,12:27:00,12:27:00,1474709,4, +24987485_258883,12:29:00,12:30:00,1474708,5, +24987485_258883,12:33:00,12:33:00,1474707,6, +24987485_258883,12:35:00,12:36:00,1474706,7, +24987485_258883,12:38:00,12:39:00,1474705,8, +24987485_258883,12:42:00,12:43:00,1475214,9, +24987485_258883,12:47:00,12:48:00,1474703,10, +24987485_258883,12:50:00,12:51:00,1475180,11, +24987485_258883,12:53:00,12:54:00,1475181,12, +24987485_258883,13:00:00,13:00:00,1474861,13, +24987486_258884,12:15:00,12:15:00,1474713,0, +24987486_258884,12:19:00,12:19:00,1474712,1, +24987486_258884,12:22:00,12:22:00,1474711,2, +24987486_258884,12:25:00,12:26:00,1474710,3, +24987486_258884,12:29:00,12:29:00,1474709,4, +24987486_258884,12:31:00,12:32:00,1474708,5, +24987486_258884,12:35:00,12:35:00,1474707,6, +24987486_258884,12:37:00,12:38:00,1474706,7, +24987486_258884,12:40:00,12:41:00,1474705,8, +24987486_258884,12:44:00,12:44:00,1475214,9, +24987486_258884,12:48:00,12:50:00,1474703,10, +24987486_258884,12:52:00,12:52:00,1475180,11, +24987486_258884,12:55:00,12:58:00,1475181,12, +24987486_258884,13:04:00,13:04:00,1474738,13, +24987488_258886,13:19:00,13:19:00,1474713,0, +24987488_258886,13:23:00,13:23:00,1474712,1, +24987488_258886,13:26:00,13:26:00,1474711,2, +24987488_258886,13:29:00,13:30:00,1474710,3, +24987488_258886,13:33:00,13:33:00,1474709,4, +24987488_258886,13:35:00,13:36:00,1474708,5, +24987488_258886,13:39:00,13:39:00,1474707,6, +24987488_258886,13:41:00,13:42:00,1474706,7, +24987488_258886,13:44:00,13:45:00,1474705,8, +24987488_258886,13:48:00,13:48:00,1475214,9, +24987488_258886,13:52:00,13:53:00,1474703,10, +24987488_258886,13:56:00,13:56:00,1475180,11, +24987488_258886,13:59:00,14:00:00,1475181,12, +24987488_258886,14:05:00,14:05:00,1474651,13, +24987490_258888,13:21:00,13:21:00,1474713,0, +24987490_258888,13:25:00,13:25:00,1474712,1, +24987490_258888,13:28:00,13:28:00,1474711,2, +24987490_258888,13:31:00,13:32:00,1474710,3, +24987490_258888,13:35:00,13:35:00,1474709,4, +24987490_258888,13:37:00,13:38:00,1474708,5, +24987490_258888,13:41:00,13:41:00,1474707,6, +24987490_258888,13:43:00,13:44:00,1474706,7, +24987490_258888,13:46:00,13:47:00,1474705,8, +24987490_258888,13:50:00,13:50:00,1475214,9, +24987490_258888,13:54:00,13:56:00,1474703,10, +24987490_258888,13:58:00,13:58:00,1475180,11, +24987490_258888,14:01:00,14:02:00,1475181,12, +24987490_258888,14:07:00,14:07:00,1474738,13, +24987492_258890,14:39:00,14:39:00,1474713,0, +24987492_258890,14:43:00,14:43:00,1474712,1, +24987492_258890,14:46:00,14:46:00,1474711,2, +24987492_258890,14:49:00,14:49:00,1474710,3, +24987492_258890,14:52:00,14:52:00,1474709,4, +24987492_258890,14:55:00,14:55:00,1474708,5, +24987492_258890,14:58:00,14:58:00,1474707,6, +24987492_258890,15:00:00,15:00:00,1474706,7, +24987492_258890,15:03:00,15:03:00,1474705,8, +24987492_258890,15:06:00,15:07:00,1475214,9, +24987492_258890,15:11:00,15:12:00,1474703,10, +24987492_258890,15:14:00,15:16:00,1475180,11, +24987492_258890,15:19:00,15:22:00,1475181,12, +24987492_258890,15:28:00,15:34:00,1474651,13, +24987492_258890,15:41:00,15:41:00,1474652,14, +24987492_258890,15:45:00,15:45:00,1474653,15, +24987492_258890,15:49:00,15:49:00,1474654,16, +24987492_258890,15:53:00,15:53:00,1474662,17, +24987492_258890,15:58:00,15:59:00,1474663,18, +24987492_258890,16:01:00,16:02:00,1474664,19, +24987492_258890,16:05:00,16:06:00,1474665,20, +24987492_258890,16:11:00,16:12:00,1474666,21, +24987492_258890,16:16:00,16:17:00,1474667,22, +24987492_258890,16:20:00,16:20:00,1474668,23, +24987492_258890,16:23:00,16:23:00,1764608,24, +24987492_258890,16:27:00,16:27:00,1474669,25, +24987492_258890,16:31:00,16:32:00,1474670,26, +24987492_258890,16:37:00,16:37:00,1474671,27, +24987492_258890,16:41:00,16:41:00,1474672,28, +24987492_258890,16:45:00,16:45:00,1474673,29, +24987493_258891,14:38:00,14:38:00,1474713,0, +24987493_258891,14:42:00,14:42:00,1474712,1, +24987493_258891,14:45:00,14:45:00,1474711,2, +24987493_258891,14:48:00,14:49:00,1474710,3, +24987493_258891,14:52:00,14:52:00,1474709,4, +24987493_258891,14:54:00,14:55:00,1474708,5, +24987493_258891,14:58:00,14:58:00,1474707,6, +24987493_258891,15:00:00,15:00:00,1474706,7, +24987493_258891,15:03:00,15:03:00,1474705,8, +24987493_258891,15:06:00,15:07:00,1475214,9, +24987493_258891,15:11:00,15:13:00,1474703,10, +24987493_258891,15:16:00,15:16:00,1475180,11, +24987493_258891,15:19:00,15:20:00,1475181,12, +24987493_258891,15:25:00,15:34:00,1474640,13, +24987493_258891,15:41:00,15:41:00,1474652,14, +24987493_258891,15:45:00,15:45:00,1474653,15, +24987493_258891,15:49:00,15:49:00,1474654,16, +24987493_258891,15:53:00,15:53:00,1474662,17, +24987493_258891,15:58:00,15:59:00,1474663,18, +24987493_258891,16:01:00,16:02:00,1474664,19, +24987493_258891,16:05:00,16:06:00,1474665,20, +24987493_258891,16:11:00,16:12:00,1474666,21, +24987493_258891,16:16:00,16:17:00,1474667,22, +24987493_258891,16:20:00,16:20:00,1474668,23, +24987493_258891,16:23:00,16:23:00,1764608,24, +24987493_258891,16:27:00,16:27:00,1474669,25, +24987493_258891,16:31:00,16:32:00,1474670,26, +24987493_258891,16:37:00,16:37:00,1474671,27, +24987493_258891,16:41:00,16:41:00,1474672,28, +24987493_258891,16:45:00,16:45:00,1474673,29, +24987497_258895,15:44:00,15:44:00,1474713,0, +24987497_258895,15:48:00,15:48:00,1474712,1, +24987497_258895,15:51:00,15:51:00,1474711,2, +24987497_258895,15:54:00,15:55:00,1474710,3, +24987497_258895,15:58:00,15:58:00,1474709,4, +24987497_258895,16:00:00,16:01:00,1474708,5, +24987497_258895,16:04:00,16:04:00,1474707,6, +24987497_258895,16:06:00,16:07:00,1474706,7, +24987497_258895,16:09:00,16:10:00,1474705,8, +24987497_258895,16:12:00,16:13:00,1475214,9, +24987497_258895,16:17:00,16:18:00,1474703,10, +24987497_258895,16:20:00,16:20:00,1475180,11, +24987497_258895,16:22:00,16:25:00,1475181,12, +24987497_258895,16:31:00,16:35:00,1474640,13, +24987497_258895,16:41:00,16:42:00,1474652,14, +24987497_258895,16:45:00,16:45:00,1474653,15, +24987497_258895,16:49:00,16:54:00,1474654,16, +24987497_258895,16:57:00,16:57:00,1474662,17, +24987497_258895,17:01:00,17:02:00,1474663,18, +24987497_258895,17:05:00,17:05:00,1474664,19, +24987497_258895,17:08:00,17:09:00,1474665,20, +24987497_258895,17:15:00,17:15:00,1474666,21, +24987497_258895,17:19:00,17:20:00,1474667,22, +24987497_258895,17:23:00,17:23:00,1474668,23, +24987497_258895,17:26:00,17:26:00,1764608,24, +24987497_258895,17:30:00,17:30:00,1474669,25, +24987497_258895,17:34:00,17:34:00,1474670,26, +24987497_258895,17:39:00,17:40:00,1474671,27, +24987497_258895,17:43:00,17:44:00,1474672,28, +24987497_258895,17:47:00,17:49:00,1474688,29, +24987497_258895,17:51:00,17:52:00,1474689,30, +24987497_258895,17:56:00,17:56:00,1474690,31, +24987497_258895,18:04:00,18:05:00,1474714,32, +24987497_258895,18:10:00,18:11:00,1474719,33, +24987497_258895,18:16:00,18:16:00,1474718,34, +24987497_258895,18:20:00,18:21:00,1474717,35, +24987497_258895,18:23:00,18:24:00,1845555,36, +24987497_258895,18:32:00,18:32:00,1475023,37, +24987499_258897,15:43:00,15:43:00,1474713,0, +24987499_258897,15:47:00,15:47:00,1474712,1, +24987499_258897,15:50:00,15:50:00,1474711,2, +24987499_258897,15:53:00,15:54:00,1474710,3, +24987499_258897,15:57:00,15:57:00,1474709,4, +24987499_258897,15:59:00,16:00:00,1474708,5, +24987499_258897,16:03:00,16:03:00,1474707,6, +24987499_258897,16:05:00,16:06:00,1474706,7, +24987499_258897,16:08:00,16:09:00,1474705,8, +24987499_258897,16:13:00,16:13:00,1475214,9, +24987499_258897,16:17:00,16:18:00,1474703,10, +24987499_258897,16:20:00,16:21:00,1475180,11, +24987499_258897,16:23:00,16:24:00,1475181,12, +24987499_258897,16:29:00,16:33:00,1474640,13, +24987499_258897,16:39:00,16:40:00,1474652,14, +24987499_258897,16:43:00,16:44:00,1474653,15, +24987499_258897,16:47:00,16:52:00,1474654,16, +24987499_258897,16:55:00,16:56:00,1474662,17, +24987499_258897,17:00:00,17:00:00,1474663,18, +24987499_258897,17:03:00,17:04:00,1474664,19, +24987499_258897,17:07:00,17:07:00,1474665,20, +24987499_258897,17:13:00,17:14:00,1474666,21, +24987499_258897,17:18:00,17:19:00,1474667,22, +24987499_258897,17:22:00,17:23:00,1474668,23, +24987499_258897,17:26:00,17:26:00,1764608,24, +24987499_258897,17:29:00,17:30:00,1474669,25, +24987499_258897,17:33:00,17:34:00,1474670,26, +24987499_258897,17:39:00,17:39:00,1474671,27, +24987499_258897,17:43:00,17:43:00,1474672,28, +24987499_258897,17:47:00,17:48:00,1474673,29, +24987499_258897,17:50:00,17:50:00,1474689,30, +24987499_258897,17:54:00,17:55:00,1474690,31, +24987499_258897,18:01:00,18:02:00,1474714,32, +24987499_258897,18:07:00,18:08:00,1474719,33, +24987499_258897,18:13:00,18:13:00,1474718,34, +24987499_258897,18:17:00,18:18:00,1474717,35, +24987499_258897,18:21:00,18:21:00,1845555,36, +24987499_258897,18:30:00,18:30:00,1475023,37, +24987501_258899,16:50:00,16:50:00,1474713,0, +24987501_258899,16:54:00,16:54:00,1474712,1, +24987501_258899,16:57:00,16:57:00,1474711,2, +24987501_258899,17:00:00,17:00:00,1474710,3, +24987501_258899,17:03:00,17:04:00,1474709,4, +24987501_258899,17:06:00,17:06:00,1474708,5, +24987501_258899,17:09:00,17:09:00,1474707,6, +24987501_258899,17:11:00,17:12:00,1474706,7, +24987501_258899,17:14:00,17:15:00,1474705,8, +24987501_258899,17:18:00,17:19:00,1475214,9, +24987501_258899,17:23:00,17:24:00,1474703,10, +24987501_258899,17:26:00,17:27:00,1475180,11, +24987501_258899,17:29:00,17:30:00,1475181,12, +24987501_258899,17:36:00,17:36:00,1536279,13, +24987502_258900,16:49:00,16:49:00,1474713,0, +24987502_258900,16:53:00,16:53:00,1474712,1, +24987502_258900,16:56:00,16:56:00,1474711,2, +24987502_258900,16:59:00,17:00:00,1474710,3, +24987502_258900,17:03:00,17:03:00,1474709,4, +24987502_258900,17:05:00,17:06:00,1474708,5, +24987502_258900,17:09:00,17:09:00,1474707,6, +24987502_258900,17:11:00,17:11:00,1474706,7, +24987502_258900,17:14:00,17:14:00,1474705,8, +24987502_258900,17:18:00,17:20:00,1475214,9, +24987502_258900,17:24:00,17:27:00,1474703,10, +24987502_258900,17:29:00,17:30:00,1475180,11, +24987502_258900,17:33:00,17:34:00,1475181,12, +24987502_258900,17:39:00,17:39:00,1474738,13, +24987504_258902,17:54:00,17:54:00,1474713,0, +24987504_258902,17:58:00,17:58:00,1474712,1, +24987504_258902,18:01:00,18:01:00,1474711,2, +24987504_258902,18:04:00,18:04:00,1474710,3, +24987504_258902,18:07:00,18:08:00,1474709,4, +24987504_258902,18:10:00,18:10:00,1474708,5, +24987504_258902,18:14:00,18:14:00,1474707,6, +24987504_258902,18:16:00,18:16:00,1474706,7, +24987504_258902,18:19:00,18:19:00,1474705,8, +24987504_258902,18:22:00,18:23:00,1475214,9, +24987504_258902,18:27:00,18:28:00,1474703,10, +24987504_258902,18:30:00,18:30:00,1475180,11, +24987504_258902,18:32:00,18:33:00,1475181,12, +24987504_258902,18:38:00,18:44:00,1474651,13, +24987504_258902,18:51:00,18:51:00,1474652,14, +24987504_258902,18:55:00,18:55:00,1474653,15, +24987504_258902,18:59:00,18:59:00,1474654,16, +24987504_258902,19:03:00,19:03:00,1474662,17, +24987504_258902,19:07:00,19:08:00,1474663,18, +24987504_258902,19:10:00,19:11:00,1474664,19, +24987504_258902,19:14:00,19:15:00,1474665,20, +24987504_258902,19:20:00,19:21:00,1474666,21, +24987504_258902,19:25:00,19:26:00,1474667,22, +24987504_258902,19:29:00,19:29:00,1474668,23, +24987504_258902,19:32:00,19:32:00,1764608,24, +24987504_258902,19:36:00,19:36:00,1474669,25, +24987504_258902,19:40:00,19:40:00,1474670,26, +24987504_258902,19:46:00,19:46:00,1474671,27, +24987504_258902,19:50:00,19:50:00,1474672,28, +24987504_258902,19:54:00,19:54:00,1474673,29, +24987505_258903,17:54:00,17:54:00,1474713,0, +24987505_258903,17:58:00,17:58:00,1474712,1, +24987505_258903,18:01:00,18:01:00,1474711,2, +24987505_258903,18:04:00,18:05:00,1474710,3, +24987505_258903,18:08:00,18:08:00,1474709,4, +24987505_258903,18:10:00,18:11:00,1474708,5, +24987505_258903,18:14:00,18:14:00,1474707,6, +24987505_258903,18:16:00,18:16:00,1474706,7, +24987505_258903,18:19:00,18:19:00,1474705,8, +24987505_258903,18:22:00,18:23:00,1475214,9, +24987505_258903,18:27:00,18:28:00,1474703,10, +24987505_258903,18:30:00,18:30:00,1475180,11, +24987505_258903,18:32:00,18:33:00,1475181,12, +24987505_258903,18:39:00,18:44:00,1474640,13, +24987505_258903,18:51:00,18:51:00,1474652,14, +24987505_258903,18:55:00,18:55:00,1474653,15, +24987505_258903,18:59:00,18:59:00,1474654,16, +24987505_258903,19:03:00,19:03:00,1474662,17, +24987505_258903,19:07:00,19:08:00,1474663,18, +24987505_258903,19:10:00,19:11:00,1474664,19, +24987505_258903,19:14:00,19:15:00,1474665,20, +24987505_258903,19:20:00,19:21:00,1474666,21, +24987505_258903,19:25:00,19:26:00,1474667,22, +24987505_258903,19:29:00,19:29:00,1474668,23, +24987505_258903,19:32:00,19:32:00,1764608,24, +24987505_258903,19:36:00,19:36:00,1474669,25, +24987505_258903,19:40:00,19:40:00,1474670,26, +24987505_258903,19:46:00,19:46:00,1474671,27, +24987505_258903,19:50:00,19:50:00,1474672,28, +24987505_258903,19:54:00,19:54:00,1474673,29, +24987507_258905,19:05:00,19:05:00,1474713,0, +24987507_258905,19:09:00,19:09:00,1474712,1, +24987507_258905,19:12:00,19:12:00,1474711,2, +24987507_258905,19:15:00,19:16:00,1474710,3, +24987507_258905,19:19:00,19:19:00,1474709,4, +24987507_258905,19:21:00,19:22:00,1474708,5, +24987507_258905,19:25:00,19:25:00,1474707,6, +24987507_258905,19:27:00,19:28:00,1474706,7, +24987507_258905,19:30:00,19:31:00,1474705,8, +24987507_258905,19:34:00,19:35:00,1475214,9, +24987507_258905,19:39:00,19:42:00,1474703,10, +24987507_258905,19:44:00,19:45:00,1475180,11, +24987507_258905,19:48:00,19:49:00,1475181,12, +24987507_258905,19:54:00,19:54:00,1474861,13, +24987508_258906,18:58:00,18:58:00,1474713,0, +24987508_258906,19:02:00,19:02:00,1474712,1, +24987508_258906,19:05:00,19:05:00,1474711,2, +24987508_258906,19:08:00,19:09:00,1474710,3, +24987508_258906,19:12:00,19:12:00,1474709,4, +24987508_258906,19:14:00,19:15:00,1474708,5, +24987508_258906,19:18:00,19:18:00,1474707,6, +24987508_258906,19:20:00,19:21:00,1474706,7, +24987508_258906,19:23:00,19:24:00,1474705,8, +24987508_258906,19:28:00,19:30:00,1475214,9, +24987508_258906,19:34:00,19:35:00,1474703,10, +24987508_258906,19:37:00,19:38:00,1475180,11, +24987508_258906,19:40:00,19:41:00,1475181,12, +24987508_258906,19:46:00,19:46:00,1474738,13, +24987510_258908,20:17:00,20:17:00,1474713,0, +24987510_258908,20:21:00,20:21:00,1474712,1, +24987510_258908,20:24:00,20:24:00,1474711,2, +24987510_258908,20:27:00,20:28:00,1474710,3, +24987510_258908,20:31:00,20:31:00,1474709,4, +24987510_258908,20:33:00,20:34:00,1474708,5, +24987510_258908,20:37:00,20:37:00,1474707,6, +24987510_258908,20:39:00,20:40:00,1474706,7, +24987510_258908,20:42:00,20:43:00,1474705,8, +24987510_258908,20:46:00,20:47:00,1475214,9, +24987510_258908,20:51:00,20:52:00,1474703,10, +24987510_258908,20:54:00,20:54:00,1475180,11, +24987510_258908,20:56:00,20:57:00,1475181,12, +24987510_258908,21:02:00,21:06:00,1474651,13, +24987510_258908,21:12:00,21:13:00,1474652,14, +24987510_258908,21:16:00,21:16:00,1474653,15, +24987510_258908,21:20:00,21:20:00,1474654,16, +24987510_258908,21:23:00,21:24:00,1474662,17, +24987510_258908,21:28:00,21:29:00,1474663,18, +24987510_258908,21:31:00,21:32:00,1474664,19, +24987510_258908,21:35:00,21:36:00,1474665,20, +24987510_258908,21:41:00,21:42:00,1474666,21, +24987510_258908,21:46:00,21:47:00,1474667,22, +24987510_258908,21:50:00,21:50:00,1474668,23, +24987510_258908,21:53:00,21:54:00,1764608,24, +24987510_258908,21:57:00,21:58:00,1474669,25, +24987510_258908,22:02:00,22:03:00,1474670,26, +24987510_258908,22:08:00,22:08:00,1474671,27, +24987510_258908,22:12:00,22:12:00,1474672,28, +24987510_258908,22:16:00,22:17:00,1474688,29, +24987510_258908,22:19:00,22:19:00,1474689,30, +24987510_258908,22:23:00,22:24:00,1474690,31, +24987510_258908,22:30:00,22:30:00,1474714,32, +24987511_258909,20:09:00,20:09:00,1474713,0, +24987511_258909,20:13:00,20:13:00,1474712,1, +24987511_258909,20:16:00,20:16:00,1474711,2, +24987511_258909,20:19:00,20:20:00,1474710,3, +24987511_258909,20:23:00,20:23:00,1474709,4, +24987511_258909,20:25:00,20:26:00,1474708,5, +24987511_258909,20:29:00,20:29:00,1474707,6, +24987511_258909,20:31:00,20:32:00,1474706,7, +24987511_258909,20:34:00,20:35:00,1474705,8, +24987511_258909,20:38:00,20:38:00,1475214,9, +24987511_258909,20:42:00,20:43:00,1474703,10, +24987511_258909,20:46:00,20:46:00,1475180,11, +24987511_258909,20:49:00,20:50:00,1475181,12, +24987511_258909,20:55:00,21:01:00,1474640,13, +24987511_258909,21:07:00,21:08:00,1474652,14, +24987511_258909,21:11:00,21:12:00,1474653,15, +24987511_258909,21:16:00,21:16:00,1474654,16, +24987511_258909,21:19:00,21:20:00,1474662,17, +24987511_258909,21:24:00,21:25:00,1474663,18, +24987511_258909,21:27:00,21:28:00,1474664,19, +24987511_258909,21:31:00,21:32:00,1474665,20, +24987511_258909,21:37:00,21:38:00,1474666,21, +24987511_258909,21:42:00,21:43:00,1474667,22, +24987511_258909,21:46:00,21:46:00,1474668,23, +24987511_258909,21:49:00,21:50:00,1764608,24, +24987511_258909,21:53:00,21:53:00,1474669,25, +24987511_258909,21:57:00,21:58:00,1474670,26, +24987511_258909,22:03:00,22:03:00,1474671,27, +24987511_258909,22:07:00,22:07:00,1474672,28, +24987511_258909,22:11:00,22:12:00,1474673,29, +24987511_258909,22:14:00,22:14:00,1474689,30, +24987511_258909,22:18:00,22:19:00,1474690,31, +24987511_258909,22:25:00,22:25:00,1474714,32, +24987513_258911,21:29:00,21:29:00,1474713,0, +24987513_258911,21:33:00,21:33:00,1474712,1, +24987513_258911,21:36:00,21:36:00,1474711,2, +24987513_258911,21:39:00,21:40:00,1474710,3, +24987513_258911,21:43:00,21:43:00,1474709,4, +24987513_258911,21:45:00,21:46:00,1474708,5, +24987513_258911,21:49:00,21:49:00,1474707,6, +24987513_258911,21:51:00,21:52:00,1474706,7, +24987513_258911,21:54:00,21:55:00,1474705,8, +24987513_258911,21:58:00,21:59:00,1475214,9, +24987513_258911,22:03:00,22:04:00,1474703,10, +24987513_258911,22:06:00,22:06:00,1475180,11, +24987513_258911,22:09:00,22:10:00,1475181,12, +24987513_258911,22:15:00,22:15:00,1474651,13, +24987514_258912,21:16:00,21:16:00,1474713,0, +24987514_258912,21:20:00,21:20:00,1474712,1, +24987514_258912,21:23:00,21:23:00,1474711,2, +24987514_258912,21:26:00,21:27:00,1474710,3, +24987514_258912,21:30:00,21:30:00,1474709,4, +24987514_258912,21:32:00,21:33:00,1474708,5, +24987514_258912,21:36:00,21:36:00,1474707,6, +24987514_258912,21:38:00,21:39:00,1474706,7, +24987514_258912,21:41:00,21:42:00,1474705,8, +24987514_258912,21:45:00,21:46:00,1475214,9, +24987514_258912,21:50:00,21:51:00,1474703,10, +24987514_258912,21:53:00,21:53:00,1475180,11, +24987514_258912,21:56:00,21:57:00,1475181,12, +24987514_258912,22:02:00,22:02:00,1474738,13, +24987515_258913,22:41:00,22:41:00,1474713,0, +24987515_258913,22:45:00,22:45:00,1474712,1, +24987515_258913,22:48:00,22:48:00,1474711,2, +24987515_258913,22:51:00,22:52:00,1474710,3, +24987515_258913,22:55:00,22:55:00,1474709,4, +24987515_258913,22:57:00,22:58:00,1474708,5, +24987515_258913,23:01:00,23:01:00,1474707,6, +24987515_258913,23:03:00,23:04:00,1474706,7, +24987515_258913,23:06:00,23:07:00,1474705,8, +24987515_258913,23:10:00,23:11:00,1475214,9, +24987515_258913,23:15:00,23:16:00,1474703,10, +24987515_258913,23:18:00,23:18:00,1475180,11, +24987515_258913,23:21:00,23:22:00,1475181,12, +24987515_258913,23:27:00,23:27:00,1474651,13, +24987517_258915,22:41:00,22:41:00,1474713,0, +24987517_258915,22:45:00,22:45:00,1474712,1, +24987517_258915,22:48:00,22:48:00,1474711,2, +24987517_258915,22:51:00,22:52:00,1474710,3, +24987517_258915,22:55:00,22:55:00,1474709,4, +24987517_258915,22:57:00,22:58:00,1474708,5, +24987517_258915,23:01:00,23:01:00,1474707,6, +24987517_258915,23:03:00,23:04:00,1474706,7, +24987517_258915,23:06:00,23:07:00,1474705,8, +24987517_258915,23:10:00,23:11:00,1475214,9, +24987517_258915,23:15:00,23:16:00,1474703,10, +24987517_258915,23:18:00,23:18:00,1475180,11, +24987517_258915,23:21:00,23:22:00,1475181,12, +24987517_258915,23:27:00,23:27:00,1474738,13, +24987518_258916,04:32:00,04:32:00,1474738,0, +24987518_258916,04:37:00,04:38:00,1474701,1, +24987518_258916,04:40:00,04:41:00,1474702,2, +24987518_258916,04:43:00,04:44:00,1474703,3, +24987518_258916,04:48:00,04:48:00,1474704,4, +24987518_258916,04:51:00,04:52:00,1474705,5, +24987518_258916,04:54:00,04:54:00,1474706,6, +24987518_258916,04:56:00,04:57:00,1474707,7, +24987518_258916,05:00:00,05:00:00,1474708,8, +24987518_258916,05:03:00,05:03:00,1474709,9, +24987518_258916,05:06:00,05:07:00,1474710,10, +24987518_258916,05:10:00,05:10:00,1474711,11, +24987518_258916,05:13:00,05:13:00,1474712,12, +24987518_258916,05:18:00,05:18:00,1474713,13, +24987520_258918,05:37:00,05:37:00,1474861,0, +24987520_258918,05:42:00,05:43:00,1474701,1, +24987520_258918,05:45:00,05:46:00,1474702,2, +24987520_258918,05:48:00,05:49:00,1474703,3, +24987520_258918,05:53:00,05:54:00,1474704,4, +24987520_258918,05:57:00,05:58:00,1474705,5, +24987520_258918,06:00:00,06:00:00,1474706,6, +24987520_258918,06:02:00,06:03:00,1474707,7, +24987520_258918,06:06:00,06:06:00,1474708,8, +24987520_258918,06:09:00,06:09:00,1474709,9, +24987520_258918,06:12:00,06:13:00,1474710,10, +24987520_258918,06:16:00,06:16:00,1474711,11, +24987520_258918,06:19:00,06:19:00,1474712,12, +24987520_258918,06:24:00,06:24:00,1474713,13, +24987522_258920,06:43:00,06:43:00,1474640,0, +24987522_258920,06:47:00,06:48:00,1474701,1, +24987522_258920,06:51:00,06:51:00,1474702,2, +24987522_258920,06:53:00,06:54:00,1474703,3, +24987522_258920,06:58:00,06:59:00,1474704,4, +24987522_258920,07:02:00,07:03:00,1474705,5, +24987522_258920,07:05:00,07:05:00,1474706,6, +24987522_258920,07:07:00,07:08:00,1474707,7, +24987522_258920,07:11:00,07:11:00,1474708,8, +24987522_258920,07:14:00,07:14:00,1474709,9, +24987522_258920,07:17:00,07:18:00,1474710,10, +24987522_258920,07:21:00,07:21:00,1474711,11, +24987522_258920,07:24:00,07:24:00,1474712,12, +24987522_258920,07:29:00,07:29:00,1474713,13, +24987523_258921,05:37:00,05:37:00,1474738,0, +24987523_258921,05:42:00,05:43:00,1474701,1, +24987523_258921,05:45:00,05:46:00,1474702,2, +24987523_258921,05:48:00,05:49:00,1474703,3, +24987523_258921,05:53:00,05:54:00,1474704,4, +24987523_258921,05:57:00,05:57:00,1474705,5, +24987523_258921,05:59:00,06:00:00,1474706,6, +24987523_258921,06:02:00,06:02:00,1474707,7, +24987523_258921,06:05:00,06:06:00,1474708,8, +24987523_258921,06:08:00,06:09:00,1474709,9, +24987523_258921,06:12:00,06:12:00,1474710,10, +24987523_258921,06:15:00,06:15:00,1474711,11, +24987523_258921,06:18:00,06:18:00,1474712,12, +24987523_258921,06:23:00,06:23:00,1474713,13, +24987524_258922,06:41:00,06:41:00,1474738,0, +24987524_258922,06:46:00,06:48:00,1474701,1, +24987524_258922,06:50:00,06:51:00,1474702,2, +24987524_258922,06:53:00,06:55:00,1474703,3, +24987524_258922,06:59:00,07:00:00,1474704,4, +24987524_258922,07:03:00,07:03:00,1474705,5, +24987524_258922,07:05:00,07:06:00,1474706,6, +24987524_258922,07:08:00,07:08:00,1474707,7, +24987524_258922,07:11:00,07:12:00,1474708,8, +24987524_258922,07:14:00,07:15:00,1474709,9, +24987524_258922,07:18:00,07:18:00,1474710,10, +24987524_258922,07:21:00,07:21:00,1474711,11, +24987524_258922,07:24:00,07:24:00,1474712,12, +24987524_258922,07:29:00,07:29:00,1474713,13, +24987527_258925,07:50:00,07:50:00,1474738,0, +24987527_258925,07:54:00,07:55:00,1474701,1, +24987527_258925,07:57:00,07:58:00,1474702,2, +24987527_258925,08:00:00,08:01:00,1474703,3, +24987527_258925,08:05:00,08:05:00,1474704,4, +24987527_258925,08:08:00,08:09:00,1474705,5, +24987527_258925,08:11:00,08:11:00,1474706,6, +24987527_258925,08:13:00,08:13:00,1474707,7, +24987527_258925,08:17:00,08:17:00,1474708,8, +24987527_258925,08:19:00,08:20:00,1474709,9, +24987527_258925,08:23:00,08:23:00,1474710,10, +24987527_258925,08:26:00,08:27:00,1474711,11, +24987527_258925,08:30:00,08:30:00,1474712,12, +24987527_258925,08:35:00,08:35:00,1474713,13, +24987528_258926,07:50:00,07:50:00,1474738,0, +24987528_258926,07:55:00,07:56:00,1474701,1, +24987528_258926,07:58:00,07:59:00,1474702,2, +24987528_258926,08:01:00,08:02:00,1474703,3, +24987528_258926,08:06:00,08:06:00,1474704,4, +24987528_258926,08:09:00,08:10:00,1474705,5, +24987528_258926,08:12:00,08:12:00,1474706,6, +24987528_258926,08:14:00,08:15:00,1474707,7, +24987528_258926,08:18:00,08:18:00,1474708,8, +24987528_258926,08:21:00,08:21:00,1474709,9, +24987528_258926,08:24:00,08:25:00,1474710,10, +24987528_258926,08:28:00,08:28:00,1474711,11, +24987528_258926,08:31:00,08:31:00,1474712,12, +24987528_258926,08:36:00,08:36:00,1474713,13, +24987530_258928,09:38:00,09:38:00,1474738,0, +24987530_258928,09:43:00,09:44:00,1474701,1, +24987530_258928,09:46:00,09:47:00,1474702,2, +24987530_258928,09:49:00,09:50:00,1474703,3, +24987530_258928,09:54:00,09:54:00,1474704,4, +24987530_258928,09:57:00,09:58:00,1474705,5, +24987530_258928,10:00:00,10:00:00,1474706,6, +24987530_258928,10:02:00,10:03:00,1474707,7, +24987530_258928,10:06:00,10:06:00,1474708,8, +24987530_258928,10:09:00,10:09:00,1474709,9, +24987530_258928,10:12:00,10:13:00,1474710,10, +24987530_258928,10:16:00,10:16:00,1474711,11, +24987530_258928,10:19:00,10:19:00,1474712,12, +24987530_258928,10:24:00,10:24:00,1474713,13, +24987531_258929,09:40:00,09:40:00,1474738,0, +24987531_258929,09:45:00,09:46:00,1474701,1, +24987531_258929,09:48:00,09:49:00,1474702,2, +24987531_258929,09:51:00,09:52:00,1474703,3, +24987531_258929,09:56:00,09:56:00,1474704,4, +24987531_258929,09:59:00,10:00:00,1474705,5, +24987531_258929,10:02:00,10:02:00,1474706,6, +24987531_258929,10:04:00,10:05:00,1474707,7, +24987531_258929,10:08:00,10:08:00,1474708,8, +24987531_258929,10:11:00,10:11:00,1474709,9, +24987531_258929,10:14:00,10:15:00,1474710,10, +24987531_258929,10:18:00,10:18:00,1474711,11, +24987531_258929,10:21:00,10:21:00,1474712,12, +24987531_258929,10:26:00,10:26:00,1474713,13, +24987532_258930,10:50:00,10:50:00,1536279,0, +24987532_258930,10:55:00,10:56:00,1474701,1, +24987532_258930,10:58:00,10:59:00,1474702,2, +24987532_258930,11:01:00,11:02:00,1474703,3, +24987532_258930,11:06:00,11:06:00,1474704,4, +24987532_258930,11:10:00,11:10:00,1474705,5, +24987532_258930,11:12:00,11:13:00,1474706,6, +24987532_258930,11:15:00,11:15:00,1474707,7, +24987532_258930,11:18:00,11:19:00,1474708,8, +24987532_258930,11:21:00,11:22:00,1474709,9, +24987532_258930,11:25:00,11:25:00,1474710,10, +24987532_258930,11:28:00,11:28:00,1474711,11, +24987532_258930,11:31:00,11:31:00,1474712,12, +24987532_258930,11:36:00,11:36:00,1474713,13, +24987533_258931,10:50:00,10:50:00,1474738,0, +24987533_258931,10:55:00,10:56:00,1474701,1, +24987533_258931,10:58:00,10:59:00,1474702,2, +24987533_258931,11:01:00,11:02:00,1474703,3, +24987533_258931,11:06:00,11:06:00,1474704,4, +24987533_258931,11:10:00,11:10:00,1474705,5, +24987533_258931,11:12:00,11:13:00,1474706,6, +24987533_258931,11:15:00,11:15:00,1474707,7, +24987533_258931,11:18:00,11:19:00,1474708,8, +24987533_258931,11:21:00,11:22:00,1474709,9, +24987533_258931,11:25:00,11:25:00,1474710,10, +24987533_258931,11:28:00,11:28:00,1474711,11, +24987533_258931,11:31:00,11:31:00,1474712,12, +24987533_258931,11:36:00,11:36:00,1474713,13, +24987535_258933,12:24:00,12:24:00,1474738,0, +24987535_258933,12:29:00,12:30:00,1474701,1, +24987535_258933,12:32:00,12:33:00,1474702,2, +24987535_258933,12:35:00,12:36:00,1474703,3, +24987535_258933,12:40:00,12:40:00,1474704,4, +24987535_258933,12:44:00,12:44:00,1474705,5, +24987535_258933,12:46:00,12:47:00,1474706,6, +24987535_258933,12:49:00,12:49:00,1474707,7, +24987535_258933,12:52:00,12:53:00,1474708,8, +24987535_258933,12:55:00,12:56:00,1474709,9, +24987535_258933,12:59:00,12:59:00,1474710,10, +24987535_258933,13:02:00,13:02:00,1474711,11, +24987535_258933,13:05:00,13:05:00,1474712,12, +24987535_258933,13:10:00,13:10:00,1474713,13, +24987536_258934,12:26:00,12:26:00,1474738,0, +24987536_258934,12:31:00,12:32:00,1474701,1, +24987536_258934,12:34:00,12:35:00,1474702,2, +24987536_258934,12:37:00,12:38:00,1474703,3, +24987536_258934,12:42:00,12:42:00,1474704,4, +24987536_258934,12:46:00,12:46:00,1474705,5, +24987536_258934,12:48:00,12:49:00,1474706,6, +24987536_258934,12:51:00,12:51:00,1474707,7, +24987536_258934,12:54:00,12:55:00,1474708,8, +24987536_258934,12:57:00,12:58:00,1474709,9, +24987536_258934,13:01:00,13:01:00,1474710,10, +24987536_258934,13:04:00,13:04:00,1474711,11, +24987536_258934,13:07:00,13:07:00,1474712,12, +24987536_258934,13:12:00,13:12:00,1474713,13, +24987538_258936,14:49:00,14:49:00,1474861,0, +24987538_258936,14:54:00,14:55:00,1474701,1, +24987538_258936,14:57:00,14:57:00,1474702,2, +24987538_258936,14:59:00,15:00:00,1474703,3, +24987538_258936,15:04:00,15:05:00,1474704,4, +24987538_258936,15:08:00,15:09:00,1474705,5, +24987538_258936,15:11:00,15:11:00,1474706,6, +24987538_258936,15:13:00,15:14:00,1474707,7, +24987538_258936,15:17:00,15:17:00,1474708,8, +24987538_258936,15:20:00,15:20:00,1474709,9, +24987538_258936,15:23:00,15:24:00,1474710,10, +24987538_258936,15:27:00,15:27:00,1474711,11, +24987538_258936,15:30:00,15:30:00,1474712,12, +24987538_258936,15:35:00,15:35:00,1474713,13, +24987540_258938,14:48:00,14:48:00,1474738,0, +24987540_258938,14:53:00,14:54:00,1474701,1, +24987540_258938,14:56:00,14:56:00,1474702,2, +24987540_258938,14:58:00,14:59:00,1474703,3, +24987540_258938,15:03:00,15:05:00,1474704,4, +24987540_258938,15:08:00,15:09:00,1474705,5, +24987540_258938,15:11:00,15:11:00,1474706,6, +24987540_258938,15:13:00,15:14:00,1474707,7, +24987540_258938,15:17:00,15:17:00,1474708,8, +24987540_258938,15:20:00,15:20:00,1474709,9, +24987540_258938,15:23:00,15:24:00,1474710,10, +24987540_258938,15:27:00,15:27:00,1474711,11, +24987540_258938,15:30:00,15:30:00,1474712,12, +24987540_258938,15:35:00,15:35:00,1474713,13, +24987542_258940,15:57:00,15:57:00,1474738,0, +24987542_258940,16:01:00,16:02:00,1474701,1, +24987542_258940,16:04:00,16:05:00,1474702,2, +24987542_258940,16:07:00,16:08:00,1474703,3, +24987542_258940,16:12:00,16:13:00,1474704,4, +24987542_258940,16:16:00,16:16:00,1474705,5, +24987542_258940,16:18:00,16:19:00,1474706,6, +24987542_258940,16:21:00,16:21:00,1474707,7, +24987542_258940,16:24:00,16:25:00,1474708,8, +24987542_258940,16:27:00,16:27:00,1474709,9, +24987542_258940,16:30:00,16:31:00,1474710,10, +24987542_258940,16:34:00,16:34:00,1474711,11, +24987542_258940,16:37:00,16:37:00,1474712,12, +24987542_258940,16:42:00,16:42:00,1474713,13, +24987543_258941,15:55:00,15:55:00,1474738,0, +24987543_258941,16:00:00,16:01:00,1474701,1, +24987543_258941,16:03:00,16:04:00,1474702,2, +24987543_258941,16:06:00,16:07:00,1474703,3, +24987543_258941,16:11:00,16:11:00,1474704,4, +24987543_258941,16:15:00,16:15:00,1474705,5, +24987543_258941,16:18:00,16:18:00,1474706,6, +24987543_258941,16:20:00,16:20:00,1474707,7, +24987543_258941,16:23:00,16:24:00,1474708,8, +24987543_258941,16:26:00,16:27:00,1474709,9, +24987543_258941,16:30:00,16:30:00,1474710,10, +24987543_258941,16:33:00,16:33:00,1474711,11, +24987543_258941,16:36:00,16:36:00,1474712,12, +24987543_258941,16:41:00,16:41:00,1474713,13, +24987545_258943,16:59:00,16:59:00,1474738,0, +24987545_258943,17:04:00,17:05:00,1474701,1, +24987545_258943,17:07:00,17:08:00,1474702,2, +24987545_258943,17:10:00,17:11:00,1474703,3, +24987545_258943,17:15:00,17:16:00,1474704,4, +24987545_258943,17:20:00,17:20:00,1474705,5, +24987545_258943,17:22:00,17:23:00,1474706,6, +24987545_258943,17:25:00,17:25:00,1474707,7, +24987545_258943,17:28:00,17:29:00,1474708,8, +24987545_258943,17:31:00,17:32:00,1474709,9, +24987545_258943,17:35:00,17:35:00,1474710,10, +24987545_258943,17:38:00,17:38:00,1474711,11, +24987545_258943,17:41:00,17:41:00,1474712,12, +24987545_258943,17:46:00,17:46:00,1474713,13, +24987546_258944,16:58:00,16:58:00,1474738,0, +24987546_258944,17:03:00,17:04:00,1474701,1, +24987546_258944,17:06:00,17:07:00,1474702,2, +24987546_258944,17:09:00,17:10:00,1474703,3, +24987546_258944,17:14:00,17:15:00,1474704,4, +24987546_258944,17:19:00,17:20:00,1474705,5, +24987546_258944,17:22:00,17:22:00,1474706,6, +24987546_258944,17:24:00,17:25:00,1474707,7, +24987546_258944,17:28:00,17:28:00,1474708,8, +24987546_258944,17:31:00,17:31:00,1474709,9, +24987546_258944,17:34:00,17:35:00,1474710,10, +24987546_258944,17:38:00,17:38:00,1474711,11, +24987546_258944,17:41:00,17:41:00,1474712,12, +24987546_258944,17:46:00,17:46:00,1474713,13, +24987548_258946,18:09:00,18:09:00,1536279,0, +24987548_258946,18:13:00,18:14:00,1474701,1, +24987548_258946,18:16:00,18:17:00,1474702,2, +24987548_258946,18:19:00,18:22:00,1474703,3, +24987548_258946,18:26:00,18:26:00,1474704,4, +24987548_258946,18:30:00,18:30:00,1474705,5, +24987548_258946,18:32:00,18:33:00,1474706,6, +24987548_258946,18:35:00,18:35:00,1474707,7, +24987548_258946,18:38:00,18:39:00,1474708,8, +24987548_258946,18:41:00,18:42:00,1474709,9, +24987548_258946,18:45:00,18:45:00,1474710,10, +24987548_258946,18:48:00,18:49:00,1474711,11, +24987548_258946,18:51:00,18:52:00,1474712,12, +24987548_258946,18:57:00,18:57:00,1474713,13, +24987549_258947,18:04:00,18:04:00,1474738,0, +24987549_258947,18:09:00,18:10:00,1474701,1, +24987549_258947,18:12:00,18:13:00,1474702,2, +24987549_258947,18:15:00,18:16:00,1474703,3, +24987549_258947,18:20:00,18:21:00,1474704,4, +24987549_258947,18:24:00,18:24:00,1474705,5, +24987549_258947,18:27:00,18:27:00,1474706,6, +24987549_258947,18:29:00,18:29:00,1474707,7, +24987549_258947,18:33:00,18:33:00,1474708,8, +24987549_258947,18:35:00,18:36:00,1474709,9, +24987549_258947,18:39:00,18:39:00,1474710,10, +24987549_258947,18:42:00,18:42:00,1474711,11, +24987549_258947,18:45:00,18:45:00,1474712,12, +24987549_258947,18:50:00,18:50:00,1474713,13, +24987552_258950,19:24:00,19:24:00,1474738,0, +24987552_258950,19:28:00,19:29:00,1474701,1, +24987552_258950,19:31:00,19:32:00,1474702,2, +24987552_258950,19:34:00,19:34:00,1474703,3, +24987552_258950,19:38:00,19:39:00,1474704,4, +24987552_258950,19:42:00,19:42:00,1474705,5, +24987552_258950,19:44:00,19:45:00,1474706,6, +24987552_258950,19:47:00,19:47:00,1474707,7, +24987552_258950,19:50:00,19:51:00,1474708,8, +24987552_258950,19:53:00,19:54:00,1474709,9, +24987552_258950,19:57:00,19:57:00,1474710,10, +24987552_258950,20:00:00,20:01:00,1474711,11, +24987552_258950,20:04:00,20:04:00,1474712,12, +24987552_258950,20:09:00,20:09:00,1474713,13, +24987553_258951,19:15:00,19:15:00,1474738,0, +24987553_258951,19:20:00,19:20:00,1474701,1, +24987553_258951,19:22:00,19:23:00,1474702,2, +24987553_258951,19:25:00,19:25:00,1474703,3, +24987553_258951,19:29:00,19:30:00,1474704,4, +24987553_258951,19:33:00,19:33:00,1474705,5, +24987553_258951,19:35:00,19:36:00,1474706,6, +24987553_258951,19:38:00,19:38:00,1474707,7, +24987553_258951,19:41:00,19:42:00,1474708,8, +24987553_258951,19:44:00,19:45:00,1474709,9, +24987553_258951,19:48:00,19:48:00,1474710,10, +24987553_258951,19:51:00,19:52:00,1474711,11, +24987553_258951,19:55:00,19:55:00,1474712,12, +24987553_258951,20:00:00,20:00:00,1474713,13, +24987555_258953,20:27:00,20:27:00,1474861,0, +24987555_258953,20:32:00,20:33:00,1474701,1, +24987555_258953,20:35:00,20:36:00,1474702,2, +24987555_258953,20:38:00,20:40:00,1474703,3, +24987555_258953,20:44:00,20:44:00,1474704,4, +24987555_258953,20:48:00,20:48:00,1474705,5, +24987555_258953,20:50:00,20:51:00,1474706,6, +24987555_258953,20:53:00,20:53:00,1474707,7, +24987555_258953,20:56:00,20:57:00,1474708,8, +24987555_258953,20:59:00,21:00:00,1474709,9, +24987555_258953,21:03:00,21:03:00,1474710,10, +24987555_258953,21:06:00,21:06:00,1474711,11, +24987555_258953,21:09:00,21:09:00,1474712,12, +24987555_258953,21:14:00,21:14:00,1474713,13, +24987556_258954,20:20:00,20:20:00,1474738,0, +24987556_258954,20:25:00,20:26:00,1474701,1, +24987556_258954,20:28:00,20:29:00,1474702,2, +24987556_258954,20:31:00,20:32:00,1474703,3, +24987556_258954,20:36:00,20:36:00,1474704,4, +24987556_258954,20:40:00,20:40:00,1474705,5, +24987556_258954,20:42:00,20:43:00,1474706,6, +24987556_258954,20:45:00,20:45:00,1474707,7, +24987556_258954,20:48:00,20:49:00,1474708,8, +24987556_258954,20:51:00,20:52:00,1474709,9, +24987556_258954,20:55:00,20:55:00,1474710,10, +24987556_258954,20:58:00,20:58:00,1474711,11, +24987556_258954,21:01:00,21:01:00,1474712,12, +24987556_258954,21:06:00,21:06:00,1474713,13, +24987559_258957,23:20:00,23:20:00,1474738,0, +24987559_258957,23:24:00,23:25:00,1474701,1, +24987559_258957,23:27:00,23:28:00,1474702,2, +24987559_258957,23:30:00,23:31:00,1474703,3, +24987559_258957,23:35:00,23:36:00,1474704,4, +24987559_258957,23:39:00,23:40:00,1474705,5, +24987559_258957,23:42:00,23:42:00,1474706,6, +24987559_258957,23:44:00,23:45:00,1474707,7, +24987559_258957,23:48:00,23:48:00,1474708,8, +24987559_258957,23:51:00,23:51:00,1474709,9, +24987559_258957,23:54:00,23:55:00,1474710,10, +24987559_258957,23:58:00,23:58:00,1474711,11, +24987559_258957,24:01:00,24:01:00,1474712,12, +24987559_258957,24:06:00,24:06:00,1474713,13, +24987560_258958,23:15:00,23:15:00,1474738,0, +24987560_258958,23:20:00,23:21:00,1474701,1, +24987560_258958,23:23:00,23:24:00,1474702,2, +24987560_258958,23:26:00,23:27:00,1474703,3, +24987560_258958,23:31:00,23:31:00,1474704,4, +24987560_258958,23:34:00,23:35:00,1474705,5, +24987560_258958,23:37:00,23:37:00,1474706,6, +24987560_258958,23:39:00,23:40:00,1474707,7, +24987560_258958,23:43:00,23:43:00,1474708,8, +24987560_258958,23:46:00,23:46:00,1474709,9, +24987560_258958,23:49:00,23:50:00,1474710,10, +24987560_258958,23:53:00,23:53:00,1474711,11, +24987560_258958,23:56:00,23:56:00,1474712,12, +24987560_258958,24:01:00,24:01:00,1474713,13, +24987566_258964,16:29:00,16:29:00,1475036,0, +24987566_258964,16:33:00,16:34:00,1475035,1, +24987566_258964,16:40:00,16:40:00,1475034,2, +24987566_258964,16:44:00,16:45:00,1475033,3, +24987566_258964,16:49:00,16:50:00,1475238,4, +24987566_258964,17:02:00,17:02:00,1475031,5, +24987566_258964,17:11:00,17:17:00,1475055,6, +24987566_258964,17:28:00,17:29:00,1475029,7, +24987566_258964,17:39:00,17:39:00,1475028,8, +24987566_258964,17:43:00,17:44:00,1475027,9, +24987566_258964,17:50:00,17:50:00,1475039,10, +24987566_258964,18:02:00,18:03:00,1475240,11, +24987566_258964,18:07:00,18:07:00,1474846,12, +24987566_258964,18:12:00,18:13:00,1609726,13, +24987566_258964,18:31:00,18:31:00,1474949,14, +24987566_258964,18:47:00,18:48:00,1474950,15, +24987566_258964,18:50:00,18:50:00,1474793,16, +24987566_258964,18:57:00,18:57:00,1536277,17, +24987567_258965,16:29:00,16:29:00,1475036,0, +24987567_258965,16:34:00,16:34:00,1475035,1, +24987567_258965,16:40:00,16:41:00,1475034,2, +24987567_258965,16:45:00,16:45:00,1475033,3, +24987567_258965,16:51:00,16:51:00,1475238,4, +24987567_258965,17:03:00,17:03:00,1475031,5, +24987567_258965,17:12:00,17:17:00,1475055,6, +24987567_258965,17:28:00,17:28:00,1475029,7, +24987567_258965,17:39:00,17:39:00,1475028,8, +24987567_258965,17:43:00,17:44:00,1475027,9, +24987567_258965,17:50:00,17:50:00,1475039,10, +24987567_258965,18:02:00,18:03:00,1475240,11, +24987567_258965,18:07:00,18:07:00,1474846,12, +24987567_258965,18:12:00,18:13:00,1609726,13, +24987567_258965,18:31:00,18:32:00,1474949,14, +24987567_258965,18:47:00,18:48:00,1474950,15, +24987567_258965,18:50:00,18:50:00,1474793,16, +24987567_258965,18:57:00,18:57:00,1474640,17, +24987569_258967,05:18:00,05:18:00,1475036,0, +24987569_258967,05:22:00,05:23:00,1475035,1, +24987569_258967,05:29:00,05:29:00,1475034,2, +24987569_258967,05:33:00,05:33:00,1475033,3, +24987569_258967,05:38:00,05:39:00,1475238,4, +24987569_258967,05:51:00,05:52:00,1475031,5, +24987569_258967,06:01:00,06:01:00,1475030,6, +24987569_258967,06:13:00,06:13:00,1475029,7, +24987569_258967,06:24:00,06:24:00,1475028,8, +24987569_258967,06:28:00,06:29:00,1475027,9, +24987569_258967,06:35:00,06:35:00,1474841,10, +24987569_258967,06:48:00,06:53:00,1475240,11, +24987569_258967,06:57:00,06:58:00,1474846,12, +24987569_258967,07:03:00,07:07:00,1609726,13, +24987569_258967,07:25:00,07:26:00,1474949,14, +24987569_258967,07:43:00,07:44:00,1474950,15, +24987569_258967,07:46:00,07:46:00,1474793,16, +24987569_258967,07:52:00,07:52:00,1474640,17, +24987570_258968,05:19:00,05:19:00,1475036,0, +24987570_258968,05:24:00,05:24:00,1475035,1, +24987570_258968,05:30:00,05:30:00,1475034,2, +24987570_258968,05:34:00,05:34:00,1475033,3, +24987570_258968,05:39:00,05:40:00,1475238,4, +24987570_258968,05:52:00,05:53:00,1475031,5, +24987570_258968,06:02:00,06:02:00,1475030,6, +24987570_258968,06:13:00,06:14:00,1475029,7, +24987570_258968,06:24:00,06:25:00,1475028,8, +24987570_258968,06:29:00,06:29:00,1475027,9, +24987570_258968,06:35:00,06:36:00,1475039,10, +24987570_258968,06:48:00,06:52:00,1475240,11, +24987570_258968,06:56:00,06:56:00,1474846,12, +24987570_258968,07:02:00,07:07:00,1609726,13, +24987570_258968,07:25:00,07:26:00,1474949,14, +24987570_258968,07:43:00,07:44:00,1474950,15, +24987570_258968,07:46:00,07:46:00,1474793,16, +24987570_258968,07:52:00,07:52:00,1474640,17, +24987572_258970,16:35:00,16:35:00,1536287,0, +24987572_258970,16:39:00,16:39:00,1536319,1, +24987572_258970,16:42:00,16:43:00,1536320,2, +24987572_258970,16:47:00,16:47:00,1536321,3, +24987572_258970,16:53:00,16:53:00,1475058,4, +24987572_258970,17:01:00,17:01:00,1475057,5, +24987572_258970,17:05:00,17:05:00,1475241,6, +24987572_258970,17:07:00,17:08:00,1475242,7, +24987572_258970,17:10:00,17:10:00,1475243,8, +24987572_258970,17:12:00,17:13:00,1475244,9, +24987572_258970,17:20:00,17:35:00,1474951,10, +24987572_258970,17:42:00,17:43:00,1474952,11, +24987572_258970,17:52:00,17:52:00,1474954,12, +24987572_258970,18:00:00,18:00:00,1474957,13, +24987572_258970,18:03:00,18:10:00,1474958,14, +24987572_258970,18:24:00,18:25:00,1474947,15, +24987572_258970,18:40:00,18:40:00,1474949,16, +24987572_258970,18:53:00,18:54:00,1474950,17, +24987572_258970,18:56:00,18:57:00,1474793,18, +24987572_258970,19:02:00,19:02:00,1474640,19, +24987573_258971,16:34:00,16:34:00,1536287,0, +24987573_258971,16:38:00,16:39:00,1536319,1, +24987573_258971,16:42:00,16:42:00,1536320,2, +24987573_258971,16:46:00,16:47:00,1536321,3, +24987573_258971,16:52:00,16:52:00,1475058,4, +24987573_258971,16:59:00,17:00:00,1475057,5, +24987573_258971,17:03:00,17:04:00,1475241,6, +24987573_258971,17:06:00,17:06:00,1475242,7, +24987573_258971,17:09:00,17:09:00,1475243,8, +24987573_258971,17:11:00,17:12:00,1475244,9, +24987573_258971,17:20:00,17:35:00,1474951,10, +24987573_258971,17:42:00,17:43:00,1474952,11, +24987573_258971,17:52:00,17:52:00,1474954,12, +24987573_258971,18:00:00,18:00:00,1474957,13, +24987573_258971,18:03:00,18:09:00,1474958,14, +24987573_258971,18:24:00,18:25:00,1474947,15, +24987573_258971,18:40:00,18:40:00,1474949,16, +24987573_258971,18:53:00,18:54:00,1474950,17, +24987573_258971,18:56:00,18:57:00,1474793,18, +24987573_258971,19:02:00,19:02:00,1474640,19, +24987575_258973,19:33:00,19:33:00,1475061,0, +24987575_258973,19:46:00,19:47:00,1475031,1, +24987575_258973,19:55:00,19:56:00,1475030,2, +24987575_258973,20:07:00,20:08:00,1475029,3, +24987575_258973,20:18:00,20:18:00,1475028,4, +24987575_258973,20:22:00,20:23:00,1475027,5, +24987575_258973,20:29:00,20:34:00,1474841,6, +24987575_258973,20:40:00,20:41:00,1474840,7, +24987575_258973,20:44:00,20:45:00,1474839,8, +24987575_258973,20:52:00,20:52:00,1474845,9, +24987575_258973,20:55:00,20:56:00,1474846,10, +24987575_258973,21:02:00,21:02:00,1657886,11, +24987576_258974,19:31:00,19:31:00,1475061,0, +24987576_258974,19:43:00,19:44:00,1475031,1, +24987576_258974,19:53:00,19:54:00,1475030,2, +24987576_258974,20:05:00,20:06:00,1475029,3, +24987576_258974,20:16:00,20:16:00,1475028,4, +24987576_258974,20:20:00,20:21:00,1475027,5, +24987576_258974,20:27:00,20:33:00,1474841,6, +24987576_258974,20:39:00,20:40:00,1474840,7, +24987576_258974,20:43:00,20:44:00,1474839,8, +24987576_258974,20:51:00,20:51:00,1474845,9, +24987576_258974,20:55:00,20:55:00,1474846,10, +24987576_258974,21:01:00,21:01:00,1657886,11, +24987582_258980,16:29:00,16:29:00,1475036,0, +24987582_258980,16:33:00,16:34:00,1475035,1, +24987582_258980,16:40:00,16:40:00,1475034,2, +24987582_258980,16:44:00,16:45:00,1475033,3, +24987582_258980,16:49:00,16:50:00,1475238,4, +24987582_258980,17:02:00,17:02:00,1475031,5, +24987582_258980,17:11:00,17:17:00,1475055,6, +24987582_258980,17:28:00,17:29:00,1475029,7, +24987582_258980,17:39:00,17:39:00,1475028,8, +24987582_258980,17:43:00,17:44:00,1475027,9, +24987582_258980,17:50:00,17:50:00,1475039,10, +24987582_258980,18:02:00,18:03:00,1475240,11, +24987582_258980,18:07:00,18:07:00,1474846,12, +24987582_258980,18:14:00,18:14:00,1657886,13, +24987583_258981,16:29:00,16:29:00,1475036,0, +24987583_258981,16:34:00,16:34:00,1475035,1, +24987583_258981,16:40:00,16:41:00,1475034,2, +24987583_258981,16:45:00,16:45:00,1475033,3, +24987583_258981,16:51:00,16:51:00,1475238,4, +24987583_258981,17:03:00,17:03:00,1475031,5, +24987583_258981,17:12:00,17:17:00,1475055,6, +24987583_258981,17:28:00,17:28:00,1475029,7, +24987583_258981,17:39:00,17:39:00,1475028,8, +24987583_258981,17:43:00,17:44:00,1475027,9, +24987583_258981,17:50:00,17:50:00,1475039,10, +24987583_258981,18:02:00,18:03:00,1475240,11, +24987583_258981,18:07:00,18:07:00,1474846,12, +24987583_258981,18:14:00,18:14:00,1474843,13, +24987585_258983,08:00:00,08:00:00,1475064,0, +24987585_258983,08:12:00,08:13:00,1475031,1, +24987585_258983,08:22:00,08:22:00,1475030,2, +24987585_258983,08:34:00,08:35:00,1475029,3, +24987585_258983,08:46:00,08:46:00,1475028,4, +24987585_258983,08:51:00,08:51:00,1475027,5, +24987585_258983,08:58:00,08:58:00,1475039,6, +24987585_258983,09:10:00,09:10:00,1475240,7, +24987585_258983,09:14:00,09:15:00,1474846,8, +24987585_258983,09:20:00,09:20:00,1657886,9, +24987586_258984,08:00:00,08:00:00,1475064,0, +24987586_258984,08:12:00,08:13:00,1475031,1, +24987586_258984,08:22:00,08:23:00,1475030,2, +24987586_258984,08:34:00,08:35:00,1475029,3, +24987586_258984,08:46:00,08:46:00,1475028,4, +24987586_258984,08:51:00,08:51:00,1475027,5, +24987586_258984,08:58:00,08:58:00,1475039,6, +24987586_258984,09:10:00,09:10:00,1475240,7, +24987586_258984,09:14:00,09:15:00,1474846,8, +24987586_258984,09:20:00,09:20:00,1657886,9, +24987589_258987,11:27:00,11:27:00,1475064,0, +24987589_258987,11:39:00,11:40:00,1475031,1, +24987589_258987,11:49:00,11:49:00,1475030,2, +24987589_258987,12:01:00,12:02:00,1475029,3, +24987589_258987,12:08:00,12:08:00,1536285,4, +24987589_258987,12:13:00,12:14:00,1475028,5, +24987589_258987,12:18:00,12:18:00,1475027,6, +24987589_258987,12:25:00,12:25:00,1475039,7, +24987589_258987,12:37:00,12:38:00,1475240,8, +24987589_258987,12:42:00,12:42:00,1474846,9, +24987589_258987,12:48:00,12:48:00,1657886,10, +24987590_258988,11:27:00,11:27:00,1475064,0, +24987590_258988,11:40:00,11:41:00,1475031,1, +24987590_258988,11:49:00,11:50:00,1475030,2, +24987590_258988,12:01:00,12:02:00,1475029,3, +24987590_258988,12:08:00,12:08:00,1536285,4, +24987590_258988,12:13:00,12:14:00,1475028,5, +24987590_258988,12:18:00,12:18:00,1475027,6, +24987590_258988,12:25:00,12:25:00,1475039,7, +24987590_258988,12:37:00,12:38:00,1475240,8, +24987590_258988,12:42:00,12:42:00,1474846,9, +24987590_258988,12:48:00,12:48:00,1474843,10, +24987591_258989,11:27:00,11:27:00,1475064,0, +24987591_258989,11:40:00,11:41:00,1475031,1, +24987591_258989,11:49:00,11:50:00,1475030,2, +24987591_258989,12:01:00,12:02:00,1475029,3, +24987591_258989,12:13:00,12:14:00,1475053,4, +24987591_258989,12:18:00,12:18:00,1475052,5, +24987591_258989,12:25:00,12:25:00,1475051,6, +24987591_258989,12:37:00,12:38:00,1475050,7, +24987591_258989,12:42:00,12:42:00,1475049,8, +24987591_258989,12:48:00,12:48:00,1474843,9, +24987593_258991,14:38:00,14:38:00,1475064,0, +24987593_258991,14:50:00,14:51:00,1475031,1, +24987593_258991,15:00:00,15:00:00,1475030,2, +24987593_258991,15:12:00,15:15:00,1475029,3, +24987593_258991,15:21:00,15:21:00,1536285,4, +24987593_258991,15:26:00,15:26:00,1475028,5, +24987593_258991,15:31:00,15:31:00,1475027,6, +24987593_258991,15:37:00,15:37:00,1474841,7, +24987593_258991,15:43:00,15:44:00,1474840,8, +24987593_258991,15:47:00,15:48:00,1474839,9, +24987593_258991,15:54:00,15:55:00,1474845,10, +24987593_258991,15:58:00,15:59:00,1474846,11, +24987593_258991,16:05:00,16:05:00,1474947,12, +24987594_258992,14:34:00,14:34:00,1475064,0, +24987594_258992,14:46:00,14:47:00,1475031,1, +24987594_258992,14:56:00,14:56:00,1475030,2, +24987594_258992,15:08:00,15:15:00,1475239,3, +24987594_258992,15:21:00,15:21:00,1536285,4, +24987594_258992,15:26:00,15:26:00,1475028,5, +24987594_258992,15:31:00,15:31:00,1475027,6, +24987594_258992,15:37:00,15:38:00,1474841,7, +24987594_258992,15:43:00,15:44:00,1474840,8, +24987594_258992,15:47:00,15:48:00,1474839,9, +24987594_258992,15:55:00,15:55:00,1474845,10, +24987594_258992,16:00:00,16:00:00,1474846,11, +24987594_258992,16:07:00,16:07:00,1474843,12, +24987595_258993,14:34:00,14:34:00,1475064,0, +24987595_258993,14:46:00,14:47:00,1475031,1, +24987595_258993,14:56:00,14:56:00,1475030,2, +24987595_258993,15:08:00,15:15:00,1475239,3, +24987595_258993,15:26:00,15:26:00,1475053,4, +24987595_258993,15:31:00,15:31:00,1475052,5, +24987595_258993,15:37:00,15:38:00,1475051,6, +24987595_258993,15:43:00,15:44:00,1475063,7, +24987595_258993,15:47:00,15:48:00,1475062,8, +24987595_258993,15:55:00,15:55:00,1475050,9, +24987595_258993,16:00:00,16:00:00,1475049,10, +24987595_258993,16:07:00,16:07:00,1474843,11, +24987597_258995,05:30:00,05:30:00,1536287,0, +24987597_258995,05:34:00,05:34:00,1536319,1, +24987597_258995,05:37:00,05:38:00,1536320,2, +24987597_258995,05:42:00,05:42:00,1536321,3, +24987597_258995,05:48:00,05:48:00,1475058,4, +24987597_258995,05:56:00,05:56:00,1475057,5, +24987597_258995,06:00:00,06:00:00,1475241,6, +24987597_258995,06:03:00,06:03:00,1475242,7, +24987597_258995,06:05:00,06:06:00,1475243,8, +24987597_258995,06:08:00,06:09:00,1475244,9, +24987597_258995,06:15:00,06:18:00,1474951,10, +24987597_258995,06:22:00,06:22:00,1475076,11, +24987597_258995,06:27:00,06:27:00,1474952,12, +24987597_258995,06:34:00,06:34:00,1474953,13, +24987597_258995,06:37:00,06:38:00,1475075,14, +24987597_258995,06:44:00,06:45:00,1475186,15, +24987597_258995,06:50:00,06:55:00,1475073,16, +24987597_258995,07:00:00,07:00:00,1475184,17, +24987597_258995,07:02:00,07:03:00,1475185,18, +24987597_258995,07:12:00,07:14:00,1474784,19, +24987597_258995,07:18:00,07:19:00,1475070,20, +24987597_258995,07:25:00,07:30:00,1474786,21, +24987597_258995,07:33:00,07:34:00,1474787,22, +24987597_258995,07:37:00,07:37:00,1474788,23, +24987597_258995,07:39:00,07:40:00,1474789,24, +24987597_258995,07:45:00,07:45:00,1474790,25, +24987597_258995,07:49:00,07:49:00,1474791,26, +24987597_258995,07:51:00,07:53:00,1474792,27, +24987597_258995,07:55:00,07:56:00,1474793,28, +24987597_258995,08:02:00,08:02:00,1474640,29, +24987598_258996,05:29:00,05:29:00,1536287,0, +24987598_258996,05:33:00,05:34:00,1536319,1, +24987598_258996,05:37:00,05:37:00,1536320,2, +24987598_258996,05:41:00,05:42:00,1536321,3, +24987598_258996,05:47:00,05:48:00,1475058,4, +24987598_258996,05:55:00,05:56:00,1475057,5, +24987598_258996,05:59:00,06:00:00,1475241,6, +24987598_258996,06:02:00,06:03:00,1475242,7, +24987598_258996,06:05:00,06:05:00,1475243,8, +24987598_258996,06:08:00,06:08:00,1475244,9, +24987598_258996,06:14:00,06:20:00,1474951,10, +24987598_258996,06:24:00,06:24:00,1475076,11, +24987598_258996,06:29:00,06:29:00,1474952,12, +24987598_258996,06:36:00,06:36:00,1474953,13, +24987598_258996,06:39:00,06:40:00,1475075,14, +24987598_258996,06:48:00,06:48:00,1475186,15, +24987598_258996,06:54:00,07:03:00,1475073,16, +24987598_258996,07:07:00,07:07:00,1475184,17, +24987598_258996,07:10:00,07:11:00,1475185,18, +24987598_258996,07:19:00,07:22:00,1474784,19, +24987598_258996,07:26:00,07:26:00,1474785,20, +24987598_258996,07:30:00,07:32:00,1474786,21, +24987598_258996,07:35:00,07:36:00,1474787,22, +24987598_258996,07:39:00,07:39:00,1474788,23, +24987598_258996,07:41:00,07:42:00,1474789,24, +24987598_258996,07:47:00,07:47:00,1474790,25, +24987598_258996,07:51:00,07:51:00,1474791,26, +24987598_258996,07:53:00,07:54:00,1474792,27, +24987598_258996,07:56:00,07:56:00,1474793,28, +24987598_258996,08:02:00,08:02:00,1474640,29, +24987600_258998,06:43:00,06:43:00,1536287,0, +24987600_258998,06:47:00,06:47:00,1536319,1, +24987600_258998,06:50:00,06:51:00,1536320,2, +24987600_258998,06:55:00,06:55:00,1536321,3, +24987600_258998,07:01:00,07:01:00,1475058,4, +24987600_258998,07:09:00,07:09:00,1475057,5, +24987600_258998,07:13:00,07:13:00,1475241,6, +24987600_258998,07:16:00,07:16:00,1475242,7, +24987600_258998,07:18:00,07:19:00,1475243,8, +24987600_258998,07:21:00,07:22:00,1475244,9, +24987600_258998,07:28:00,07:45:00,1474951,10, +24987600_258998,07:49:00,07:49:00,1475076,11, +24987600_258998,07:54:00,07:54:00,1474952,12, +24987600_258998,08:01:00,08:02:00,1474953,13, +24987600_258998,08:05:00,08:05:00,1475075,14, +24987600_258998,08:12:00,08:13:00,1475186,15, +24987600_258998,08:18:00,08:19:00,1475073,16, +24987600_258998,08:22:00,08:23:00,1475184,17, +24987600_258998,08:25:00,08:25:00,1475185,18, +24987600_258998,08:35:00,08:38:00,1474784,19, +24987600_258998,08:44:00,08:45:00,1475070,20, +24987600_258998,08:50:00,08:51:00,1474786,21, +24987600_258998,08:55:00,08:55:00,1474787,22, +24987600_258998,08:58:00,08:58:00,1474788,23, +24987600_258998,09:01:00,09:01:00,1474789,24, +24987600_258998,09:06:00,09:07:00,1474790,25, +24987600_258998,09:10:00,09:11:00,1474791,26, +24987600_258998,09:12:00,09:13:00,1474792,27, +24987600_258998,09:15:00,09:16:00,1474793,28, +24987600_258998,09:21:00,09:21:00,1474640,29, +24987601_258999,06:52:00,06:52:00,1536287,0, +24987601_258999,06:56:00,06:57:00,1536319,1, +24987601_258999,07:00:00,07:00:00,1536320,2, +24987601_258999,07:04:00,07:05:00,1536321,3, +24987601_258999,07:10:00,07:11:00,1475058,4, +24987601_258999,07:18:00,07:19:00,1475057,5, +24987601_258999,07:22:00,07:23:00,1475241,6, +24987601_258999,07:25:00,07:26:00,1475242,7, +24987601_258999,07:28:00,07:28:00,1475243,8, +24987601_258999,07:31:00,07:31:00,1475244,9, +24987601_258999,07:37:00,07:39:00,1474951,10, +24987601_258999,07:43:00,07:43:00,1475076,11, +24987601_258999,07:48:00,07:48:00,1474952,12, +24987601_258999,07:55:00,07:55:00,1474953,13, +24987601_258999,07:58:00,07:59:00,1475075,14, +24987601_258999,08:06:00,08:07:00,1475186,15, +24987601_258999,08:12:00,08:13:00,1475073,16, +24987601_258999,08:16:00,08:17:00,1475184,17, +24987601_258999,08:19:00,08:20:00,1475185,18, +24987601_258999,08:28:00,08:29:00,1474784,19, +24987601_258999,08:33:00,08:33:00,1474785,20, +24987601_258999,08:38:00,08:39:00,1474786,21, +24987601_258999,08:43:00,08:43:00,1474787,22, +24987601_258999,08:46:00,08:47:00,1474788,23, +24987601_258999,08:49:00,08:50:00,1474789,24, +24987601_258999,08:55:00,08:56:00,1474790,25, +24987601_258999,09:00:00,09:01:00,1474791,26, +24987601_258999,09:03:00,09:04:00,1474792,27, +24987601_258999,09:07:00,09:07:00,1474793,28, +24987601_258999,09:13:00,09:13:00,1474640,29, +24987608_259006,08:08:00,08:08:00,1536287,0, +24987608_259006,08:12:00,08:12:00,1536319,1, +24987608_259006,08:15:00,08:15:00,1536320,2, +24987608_259006,08:19:00,08:20:00,1536321,3, +24987608_259006,08:25:00,08:25:00,1475058,4, +24987608_259006,08:33:00,08:34:00,1475057,5, +24987608_259006,08:37:00,08:38:00,1475241,6, +24987608_259006,08:40:00,08:40:00,1475242,7, +24987608_259006,08:42:00,08:43:00,1475243,8, +24987608_259006,08:45:00,08:45:00,1475244,9, +24987608_259006,08:52:00,08:53:00,1474951,10, +24987608_259006,08:56:00,08:57:00,1475076,11, +24987608_259006,09:01:00,09:02:00,1474952,12, +24987608_259006,09:08:00,09:09:00,1474953,13, +24987608_259006,09:11:00,09:12:00,1475075,14, +24987608_259006,09:18:00,09:19:00,1475186,15, +24987608_259006,09:24:00,09:25:00,1475073,16, +24987608_259006,09:29:00,09:29:00,1475184,17, +24987608_259006,09:32:00,09:32:00,1475185,18, +24987608_259006,09:41:00,09:42:00,1474784,19, +24987608_259006,09:48:00,09:49:00,1475070,20, +24987608_259006,09:53:00,09:54:00,1474786,21, +24987608_259006,09:58:00,09:58:00,1474787,22, +24987608_259006,10:01:00,10:01:00,1474788,23, +24987608_259006,10:03:00,10:04:00,1474789,24, +24987608_259006,10:09:00,10:09:00,1474790,25, +24987608_259006,10:13:00,10:13:00,1474791,26, +24987608_259006,10:15:00,10:15:00,1474792,27, +24987608_259006,10:17:00,10:18:00,1474793,28, +24987608_259006,10:23:00,10:23:00,1474640,29, +24987609_259007,08:01:00,08:01:00,1536287,0, +24987609_259007,08:05:00,08:06:00,1536319,1, +24987609_259007,08:09:00,08:09:00,1536320,2, +24987609_259007,08:13:00,08:14:00,1536321,3, +24987609_259007,08:19:00,08:20:00,1475058,4, +24987609_259007,08:27:00,08:28:00,1475057,5, +24987609_259007,08:31:00,08:32:00,1475241,6, +24987609_259007,08:34:00,08:34:00,1475242,7, +24987609_259007,08:36:00,08:37:00,1475243,8, +24987609_259007,08:39:00,08:39:00,1475244,9, +24987609_259007,08:45:00,08:46:00,1474951,10, +24987609_259007,08:49:00,08:50:00,1475076,11, +24987609_259007,08:54:00,08:55:00,1474952,12, +24987609_259007,09:01:00,09:02:00,1474953,13, +24987609_259007,09:04:00,09:05:00,1475075,14, +24987609_259007,09:12:00,09:12:00,1475186,15, +24987609_259007,09:17:00,09:18:00,1475073,16, +24987609_259007,09:22:00,09:22:00,1475184,17, +24987609_259007,09:24:00,09:25:00,1475185,18, +24987609_259007,09:32:00,09:33:00,1474784,19, +24987609_259007,09:37:00,09:37:00,1474785,20, +24987609_259007,09:41:00,09:42:00,1474786,21, +24987609_259007,09:45:00,09:46:00,1474787,22, +24987609_259007,09:48:00,09:49:00,1474788,23, +24987609_259007,09:51:00,09:51:00,1474789,24, +24987609_259007,09:57:00,09:57:00,1474790,25, +24987609_259007,10:01:00,10:01:00,1474791,26, +24987609_259007,10:03:00,10:04:00,1474792,27, +24987609_259007,10:07:00,10:07:00,1474793,28, +24987609_259007,10:14:00,10:14:00,1474640,29, +24987612_259010,09:15:00,09:15:00,1536287,0, +24987612_259010,09:19:00,09:19:00,1536319,1, +24987612_259010,09:22:00,09:22:00,1536320,2, +24987612_259010,09:27:00,09:27:00,1536321,3, +24987612_259010,09:32:00,09:33:00,1475058,4, +24987612_259010,09:40:00,09:41:00,1475057,5, +24987612_259010,09:44:00,09:45:00,1475241,6, +24987612_259010,09:47:00,09:47:00,1475242,7, +24987612_259010,09:49:00,09:50:00,1475243,8, +24987612_259010,09:52:00,09:53:00,1475244,9, +24987612_259010,09:59:00,10:00:00,1474951,10, +24987612_259010,10:03:00,10:04:00,1475076,11, +24987612_259010,10:08:00,10:09:00,1474952,12, +24987612_259010,10:16:00,10:16:00,1474953,13, +24987612_259010,10:19:00,10:19:00,1475075,14, +24987612_259010,10:26:00,10:26:00,1475186,15, +24987612_259010,10:31:00,10:32:00,1475073,16, +24987612_259010,10:36:00,10:36:00,1475184,17, +24987612_259010,10:39:00,10:39:00,1475185,18, +24987612_259010,10:48:00,10:49:00,1474784,19, +24987612_259010,10:53:00,10:53:00,1475070,20, +24987612_259010,10:58:00,11:04:00,1474786,21, +24987612_259010,11:08:00,11:08:00,1474787,22, +24987612_259010,11:11:00,11:11:00,1474788,23, +24987612_259010,11:13:00,11:14:00,1474789,24, +24987612_259010,11:19:00,11:19:00,1474790,25, +24987612_259010,11:22:00,11:23:00,1474791,26, +24987612_259010,11:25:00,11:26:00,1474792,27, +24987612_259010,11:28:00,11:29:00,1474793,28, +24987612_259010,11:34:00,11:34:00,1536277,29, +24987614_259012,09:15:00,09:15:00,1536287,0, +24987614_259012,09:19:00,09:20:00,1536319,1, +24987614_259012,09:23:00,09:23:00,1536320,2, +24987614_259012,09:27:00,09:28:00,1536321,3, +24987614_259012,09:33:00,09:33:00,1475058,4, +24987614_259012,09:41:00,09:41:00,1475057,5, +24987614_259012,09:45:00,09:45:00,1475241,6, +24987614_259012,09:47:00,09:48:00,1475242,7, +24987614_259012,09:50:00,09:50:00,1475243,8, +24987614_259012,09:53:00,09:53:00,1475244,9, +24987614_259012,09:59:00,10:00:00,1474951,10, +24987614_259012,10:04:00,10:04:00,1475076,11, +24987614_259012,10:09:00,10:09:00,1474952,12, +24987614_259012,10:16:00,10:17:00,1474953,13, +24987614_259012,10:19:00,10:20:00,1475075,14, +24987614_259012,10:26:00,10:27:00,1475186,15, +24987614_259012,10:32:00,10:33:00,1475073,16, +24987614_259012,10:36:00,10:37:00,1475184,17, +24987614_259012,10:39:00,10:40:00,1475185,18, +24987614_259012,10:48:00,10:49:00,1474784,19, +24987614_259012,10:54:00,10:54:00,1475070,20, +24987614_259012,11:00:00,11:04:00,1474786,21, +24987614_259012,11:08:00,11:08:00,1474787,22, +24987614_259012,11:11:00,11:11:00,1474788,23, +24987614_259012,11:13:00,11:14:00,1474789,24, +24987614_259012,11:19:00,11:19:00,1474790,25, +24987614_259012,11:23:00,11:23:00,1474791,26, +24987614_259012,11:26:00,11:26:00,1474792,27, +24987614_259012,11:29:00,11:30:00,1474793,28, +24987614_259012,11:35:00,11:35:00,1536277,29, +24987615_259013,09:19:00,09:19:00,1536287,0, +24987615_259013,09:23:00,09:24:00,1536319,1, +24987615_259013,09:26:00,09:27:00,1536320,2, +24987615_259013,09:31:00,09:32:00,1536321,3, +24987615_259013,09:37:00,09:37:00,1475058,4, +24987615_259013,09:44:00,09:45:00,1475057,5, +24987615_259013,09:48:00,09:49:00,1475241,6, +24987615_259013,09:51:00,09:51:00,1475242,7, +24987615_259013,09:53:00,09:54:00,1475243,8, +24987615_259013,09:56:00,09:57:00,1475244,9, +24987615_259013,10:03:00,10:06:00,1474951,10, +24987615_259013,10:09:00,10:10:00,1475076,11, +24987615_259013,10:14:00,10:15:00,1474952,12, +24987615_259013,10:21:00,10:22:00,1474953,13, +24987615_259013,10:24:00,10:25:00,1475075,14, +24987615_259013,10:32:00,10:33:00,1475186,15, +24987615_259013,10:38:00,10:39:00,1475073,16, +24987615_259013,10:42:00,10:43:00,1475184,17, +24987615_259013,10:45:00,10:46:00,1475185,18, +24987615_259013,10:54:00,10:55:00,1474784,19, +24987615_259013,10:59:00,10:59:00,1474785,20, +24987615_259013,11:04:00,11:09:00,1474786,21, +24987615_259013,11:12:00,11:13:00,1474787,22, +24987615_259013,11:15:00,11:16:00,1474788,23, +24987615_259013,11:18:00,11:18:00,1474789,24, +24987615_259013,11:23:00,11:23:00,1474790,25, +24987615_259013,11:27:00,11:27:00,1474791,26, +24987615_259013,11:29:00,11:29:00,1474792,27, +24987615_259013,11:31:00,11:32:00,1474793,28, +24987615_259013,11:37:00,11:37:00,1474738,29, +24987617_259015,12:21:00,12:21:00,1536287,0, +24987617_259015,12:25:00,12:25:00,1536319,1, +24987617_259015,12:28:00,12:29:00,1536320,2, +24987617_259015,12:33:00,12:33:00,1536321,3, +24987617_259015,12:39:00,12:39:00,1475058,4, +24987617_259015,12:47:00,12:47:00,1475057,5, +24987617_259015,12:51:00,12:51:00,1475241,6, +24987617_259015,12:54:00,12:54:00,1475242,7, +24987617_259015,12:56:00,12:57:00,1475243,8, +24987617_259015,12:59:00,13:00:00,1475244,9, +24987617_259015,13:06:00,13:07:00,1474951,10, +24987617_259015,13:11:00,13:11:00,1475076,11, +24987617_259015,13:16:00,13:16:00,1474952,12, +24987617_259015,13:23:00,13:23:00,1474953,13, +24987617_259015,13:26:00,13:27:00,1475075,14, +24987617_259015,13:33:00,13:34:00,1475186,15, +24987617_259015,13:39:00,13:40:00,1475073,16, +24987617_259015,13:43:00,13:44:00,1475184,17, +24987617_259015,13:46:00,13:47:00,1475185,18, +24987617_259015,13:55:00,13:56:00,1474784,19, +24987617_259015,14:01:00,14:01:00,1475070,20, +24987617_259015,14:06:00,14:07:00,1474786,21, +24987617_259015,14:11:00,14:11:00,1474787,22, +24987617_259015,14:14:00,14:15:00,1474788,23, +24987617_259015,14:17:00,14:17:00,1474789,24, +24987617_259015,14:23:00,14:23:00,1474790,25, +24987617_259015,14:27:00,14:27:00,1474791,26, +24987617_259015,14:29:00,14:29:00,1474792,27, +24987617_259015,14:31:00,14:32:00,1474793,28, +24987617_259015,14:38:00,14:38:00,1474640,29, +24987618_259016,12:08:00,12:08:00,1536287,0, +24987618_259016,12:13:00,12:13:00,1536319,1, +24987618_259016,12:16:00,12:17:00,1536320,2, +24987618_259016,12:21:00,12:21:00,1536321,3, +24987618_259016,12:26:00,12:27:00,1475058,4, +24987618_259016,12:34:00,12:34:00,1475057,5, +24987618_259016,12:38:00,12:38:00,1475241,6, +24987618_259016,12:41:00,12:41:00,1475242,7, +24987618_259016,12:43:00,12:44:00,1475243,8, +24987618_259016,12:46:00,12:47:00,1475244,9, +24987618_259016,12:53:00,12:58:00,1474951,10, +24987618_259016,13:02:00,13:02:00,1475076,11, +24987618_259016,13:07:00,13:08:00,1474952,12, +24987618_259016,13:15:00,13:15:00,1474953,13, +24987618_259016,13:18:00,13:19:00,1475075,14, +24987618_259016,13:26:00,13:27:00,1475186,15, +24987618_259016,13:32:00,13:33:00,1475073,16, +24987618_259016,13:36:00,13:37:00,1475184,17, +24987618_259016,13:39:00,13:40:00,1475185,18, +24987618_259016,13:48:00,13:49:00,1474784,19, +24987618_259016,13:53:00,13:53:00,1474785,20, +24987618_259016,13:57:00,13:58:00,1474786,21, +24987618_259016,14:02:00,14:03:00,1474787,22, +24987618_259016,14:06:00,14:06:00,1474788,23, +24987618_259016,14:09:00,14:09:00,1474789,24, +24987618_259016,14:14:00,14:15:00,1474790,25, +24987618_259016,14:19:00,14:19:00,1474791,26, +24987618_259016,14:21:00,14:22:00,1474792,27, +24987618_259016,14:25:00,14:26:00,1474793,28, +24987618_259016,14:31:00,14:31:00,1474738,29, +24987620_259018,14:06:00,14:06:00,1536287,0, +24987620_259018,14:10:00,14:10:00,1536319,1, +24987620_259018,14:13:00,14:14:00,1536320,2, +24987620_259018,14:18:00,14:18:00,1536321,3, +24987620_259018,14:24:00,14:24:00,1475058,4, +24987620_259018,14:32:00,14:33:00,1475057,5, +24987620_259018,14:37:00,14:37:00,1475241,6, +24987620_259018,14:39:00,14:40:00,1475242,7, +24987620_259018,14:42:00,14:42:00,1475243,8, +24987620_259018,14:45:00,14:45:00,1475244,9, +24987620_259018,14:51:00,14:52:00,1474951,10, +24987620_259018,14:56:00,14:57:00,1475076,11, +24987620_259018,15:01:00,15:02:00,1474952,12, +24987620_259018,15:09:00,15:09:00,1474953,13, +24987620_259018,15:12:00,15:12:00,1475075,14, +24987620_259018,15:19:00,15:20:00,1475186,15, +24987620_259018,15:25:00,15:26:00,1475073,16, +24987620_259018,15:30:00,15:30:00,1475184,17, +24987620_259018,15:33:00,15:33:00,1475185,18, +24987620_259018,15:41:00,15:42:00,1474784,19, +24987620_259018,15:47:00,15:48:00,1475070,20, +24987620_259018,15:53:00,15:56:00,1474786,21, +24987620_259018,15:59:00,16:00:00,1474787,22, +24987620_259018,16:03:00,16:03:00,1474788,23, +24987620_259018,16:05:00,16:06:00,1474789,24, +24987620_259018,16:11:00,16:11:00,1474790,25, +24987620_259018,16:15:00,16:15:00,1474791,26, +24987620_259018,16:17:00,16:22:00,1474792,27, +24987620_259018,16:25:00,16:25:00,1474793,28, +24987620_259018,16:31:00,16:31:00,1536279,29, +24987621_259019,14:06:00,14:06:00,1536287,0, +24987621_259019,14:10:00,14:11:00,1536319,1, +24987621_259019,14:14:00,14:14:00,1536320,2, +24987621_259019,14:18:00,14:19:00,1536321,3, +24987621_259019,14:24:00,14:24:00,1475058,4, +24987621_259019,14:32:00,14:32:00,1475057,5, +24987621_259019,14:36:00,14:36:00,1475241,6, +24987621_259019,14:39:00,14:39:00,1475242,7, +24987621_259019,14:41:00,14:42:00,1475243,8, +24987621_259019,14:44:00,14:45:00,1475244,9, +24987621_259019,14:51:00,14:52:00,1474951,10, +24987621_259019,14:56:00,14:56:00,1475076,11, +24987621_259019,15:01:00,15:02:00,1474952,12, +24987621_259019,15:09:00,15:09:00,1474953,13, +24987621_259019,15:12:00,15:13:00,1475075,14, +24987621_259019,15:21:00,15:21:00,1475186,15, +24987621_259019,15:27:00,15:28:00,1475073,16, +24987621_259019,15:32:00,15:33:00,1475184,17, +24987621_259019,15:35:00,15:36:00,1475185,18, +24987621_259019,15:44:00,15:45:00,1474784,19, +24987621_259019,15:49:00,15:49:00,1474785,20, +24987621_259019,15:54:00,15:57:00,1474786,21, +24987621_259019,16:01:00,16:01:00,1474787,22, +24987621_259019,16:04:00,16:05:00,1474788,23, +24987621_259019,16:07:00,16:08:00,1474789,24, +24987621_259019,16:13:00,16:13:00,1474790,25, +24987621_259019,16:17:00,16:17:00,1474791,26, +24987621_259019,16:19:00,16:19:00,1474792,27, +24987621_259019,16:22:00,16:22:00,1474793,28, +24987621_259019,16:28:00,16:28:00,1474738,29, +24987623_259021,15:35:00,15:35:00,1536287,0, +24987623_259021,15:39:00,15:39:00,1536319,1, +24987623_259021,15:42:00,15:43:00,1536320,2, +24987623_259021,15:47:00,15:47:00,1536321,3, +24987623_259021,15:53:00,15:53:00,1475058,4, +24987623_259021,16:01:00,16:01:00,1475057,5, +24987623_259021,16:05:00,16:05:00,1475241,6, +24987623_259021,16:08:00,16:08:00,1475242,7, +24987623_259021,16:10:00,16:11:00,1475243,8, +24987623_259021,16:13:00,16:14:00,1475244,9, +24987623_259021,16:20:00,16:21:00,1474951,10, +24987623_259021,16:25:00,16:25:00,1475076,11, +24987623_259021,16:30:00,16:30:00,1474952,12, +24987623_259021,16:37:00,16:38:00,1474953,13, +24987623_259021,16:40:00,16:41:00,1475075,14, +24987623_259021,16:48:00,16:48:00,1475186,15, +24987623_259021,16:53:00,16:54:00,1475073,16, +24987623_259021,16:58:00,16:59:00,1475184,17, +24987623_259021,17:01:00,17:01:00,1475185,18, +24987623_259021,17:10:00,17:11:00,1474784,19, +24987623_259021,17:18:00,17:18:00,1475070,20, +24987623_259021,17:24:00,17:29:00,1474786,21, +24987623_259021,17:33:00,17:33:00,1474787,22, +24987623_259021,17:36:00,17:37:00,1474788,23, +24987623_259021,17:39:00,17:39:00,1474789,24, +24987623_259021,17:44:00,17:45:00,1474790,25, +24987623_259021,17:48:00,17:49:00,1474791,26, +24987623_259021,17:51:00,17:51:00,1474792,27, +24987623_259021,17:54:00,17:54:00,1474793,28, +24987623_259021,18:00:00,18:00:00,1474861,29, +24987624_259022,15:35:00,15:35:00,1536287,0, +24987624_259022,15:39:00,15:40:00,1536319,1, +24987624_259022,15:43:00,15:43:00,1536320,2, +24987624_259022,15:47:00,15:48:00,1536321,3, +24987624_259022,15:53:00,15:54:00,1475058,4, +24987624_259022,16:01:00,16:02:00,1475057,5, +24987624_259022,16:05:00,16:06:00,1475241,6, +24987624_259022,16:08:00,16:09:00,1475242,7, +24987624_259022,16:11:00,16:11:00,1475243,8, +24987624_259022,16:14:00,16:14:00,1475244,9, +24987624_259022,16:20:00,16:28:00,1474951,10, +24987624_259022,16:32:00,16:32:00,1475076,11, +24987624_259022,16:37:00,16:38:00,1474952,12, +24987624_259022,16:45:00,16:45:00,1474953,13, +24987624_259022,16:48:00,16:49:00,1475075,14, +24987624_259022,16:56:00,16:57:00,1475186,15, +24987624_259022,17:02:00,17:03:00,1475073,16, +24987624_259022,17:07:00,17:08:00,1475184,17, +24987624_259022,17:10:00,17:11:00,1475185,18, +24987624_259022,17:19:00,17:21:00,1474784,19, +24987624_259022,17:25:00,17:25:00,1474785,20, +24987624_259022,17:30:00,17:37:00,1474786,21, +24987624_259022,17:40:00,17:41:00,1474787,22, +24987624_259022,17:43:00,17:44:00,1474788,23, +24987624_259022,17:46:00,17:46:00,1474789,24, +24987624_259022,17:51:00,17:52:00,1474790,25, +24987624_259022,17:55:00,17:56:00,1474791,26, +24987624_259022,17:57:00,17:58:00,1474792,27, +24987624_259022,18:00:00,18:01:00,1474793,28, +24987624_259022,18:06:00,18:06:00,1474640,29, +24987626_259024,17:55:00,17:55:00,1536287,0, +24987626_259024,17:59:00,17:59:00,1536319,1, +24987626_259024,18:02:00,18:03:00,1536320,2, +24987626_259024,18:07:00,18:07:00,1536321,3, +24987626_259024,18:13:00,18:13:00,1475058,4, +24987626_259024,18:21:00,18:21:00,1475057,5, +24987626_259024,18:25:00,18:25:00,1475241,6, +24987626_259024,18:28:00,18:28:00,1475242,7, +24987626_259024,18:30:00,18:31:00,1475243,8, +24987626_259024,18:33:00,18:34:00,1475244,9, +24987626_259024,18:40:00,18:51:00,1474951,10, +24987626_259024,18:55:00,18:55:00,1475076,11, +24987626_259024,19:00:00,19:00:00,1474952,12, +24987626_259024,19:07:00,19:07:00,1474953,13, +24987626_259024,19:10:00,19:11:00,1475075,14, +24987626_259024,19:17:00,19:18:00,1475186,15, +24987626_259024,19:24:00,19:25:00,1475073,16, +24987626_259024,19:29:00,19:29:00,1475184,17, +24987626_259024,19:32:00,19:32:00,1475185,18, +24987626_259024,19:41:00,19:53:00,1474784,19, +24987626_259024,19:58:00,19:58:00,1475070,20, +24987626_259024,20:03:00,20:04:00,1474786,21, +24987626_259024,20:08:00,20:09:00,1474787,22, +24987626_259024,20:11:00,20:12:00,1474788,23, +24987626_259024,20:14:00,20:15:00,1474789,24, +24987626_259024,20:20:00,20:20:00,1474790,25, +24987626_259024,20:24:00,20:24:00,1474791,26, +24987626_259024,20:26:00,20:26:00,1474792,27, +24987626_259024,20:29:00,20:29:00,1474793,28, +24987626_259024,20:35:00,20:35:00,1474640,29, +24987627_259025,17:58:00,17:58:00,1536287,0, +24987627_259025,18:02:00,18:03:00,1536319,1, +24987627_259025,18:06:00,18:06:00,1536320,2, +24987627_259025,18:10:00,18:11:00,1536321,3, +24987627_259025,18:16:00,18:17:00,1475058,4, +24987627_259025,18:24:00,18:25:00,1475057,5, +24987627_259025,18:28:00,18:29:00,1475241,6, +24987627_259025,18:31:00,18:32:00,1475242,7, +24987627_259025,18:34:00,18:34:00,1475243,8, +24987627_259025,18:37:00,18:37:00,1475244,9, +24987627_259025,18:43:00,18:44:00,1474951,10, +24987627_259025,18:48:00,18:48:00,1475076,11, +24987627_259025,18:53:00,18:54:00,1474952,12, +24987627_259025,19:00:00,19:01:00,1474953,13, +24987627_259025,19:04:00,19:04:00,1475075,14, +24987627_259025,19:12:00,19:12:00,1475186,15, +24987627_259025,19:17:00,19:21:00,1475073,16, +24987627_259025,19:25:00,19:26:00,1475184,17, +24987627_259025,19:28:00,19:29:00,1475185,18, +24987627_259025,19:37:00,19:38:00,1474784,19, +24987627_259025,19:42:00,19:43:00,1474785,20, +24987627_259025,19:47:00,19:53:00,1474786,21, +24987627_259025,19:57:00,19:57:00,1474787,22, +24987627_259025,20:00:00,20:01:00,1474788,23, +24987627_259025,20:03:00,20:04:00,1474789,24, +24987627_259025,20:09:00,20:09:00,1474790,25, +24987627_259025,20:13:00,20:13:00,1474791,26, +24987627_259025,20:15:00,20:15:00,1474792,27, +24987627_259025,20:18:00,20:18:00,1474793,28, +24987627_259025,20:24:00,20:24:00,1474640,29, +24987629_259027,21:00:00,21:00:00,1536287,0, +24987629_259027,21:04:00,21:04:00,1536319,1, +24987629_259027,21:07:00,21:08:00,1536320,2, +24987629_259027,21:12:00,21:12:00,1536321,3, +24987629_259027,21:18:00,21:18:00,1475058,4, +24987629_259027,21:26:00,21:26:00,1475057,5, +24987629_259027,21:30:00,21:30:00,1475241,6, +24987629_259027,21:33:00,21:33:00,1475242,7, +24987629_259027,21:35:00,21:36:00,1475243,8, +24987629_259027,21:38:00,21:39:00,1475244,9, +24987629_259027,21:45:00,21:49:00,1474951,10, +24987629_259027,21:53:00,21:53:00,1475076,11, +24987629_259027,21:58:00,21:58:00,1474952,12, +24987629_259027,22:05:00,22:05:00,1474953,13, +24987629_259027,22:08:00,22:09:00,1475075,14, +24987629_259027,22:16:00,22:16:00,1475186,15, +24987629_259027,22:21:00,22:22:00,1475073,16, +24987629_259027,22:26:00,22:27:00,1475184,17, +24987629_259027,22:29:00,22:29:00,1475185,18, +24987629_259027,22:38:00,22:39:00,1474784,19, +24987629_259027,22:44:00,22:44:00,1475070,20, +24987629_259027,22:49:00,22:50:00,1474786,21, +24987629_259027,22:54:00,22:54:00,1474787,22, +24987629_259027,22:57:00,22:58:00,1474788,23, +24987629_259027,23:00:00,23:00:00,1474789,24, +24987629_259027,23:05:00,23:06:00,1474790,25, +24987629_259027,23:09:00,23:10:00,1474791,26, +24987629_259027,23:11:00,23:12:00,1474792,27, +24987629_259027,23:15:00,23:16:00,1474793,28, +24987629_259027,23:22:00,23:22:00,1474640,29, +24987630_259028,20:59:00,20:59:00,1536287,0, +24987630_259028,21:04:00,21:04:00,1536319,1, +24987630_259028,21:07:00,21:08:00,1536320,2, +24987630_259028,21:12:00,21:12:00,1536321,3, +24987630_259028,21:17:00,21:18:00,1475058,4, +24987630_259028,21:25:00,21:26:00,1475057,5, +24987630_259028,21:30:00,21:30:00,1475241,6, +24987630_259028,21:33:00,21:33:00,1475242,7, +24987630_259028,21:36:00,21:36:00,1475243,8, +24987630_259028,21:39:00,21:39:00,1475244,9, +24987630_259028,21:45:00,21:55:00,1474951,10, +24987630_259028,21:59:00,21:59:00,1475076,11, +24987630_259028,22:04:00,22:04:00,1474952,12, +24987630_259028,22:11:00,22:11:00,1474953,13, +24987630_259028,22:14:00,22:15:00,1475075,14, +24987630_259028,22:22:00,22:23:00,1475186,15, +24987630_259028,22:28:00,22:29:00,1475073,16, +24987630_259028,22:32:00,22:33:00,1475184,17, +24987630_259028,22:35:00,22:36:00,1475185,18, +24987630_259028,22:44:00,22:45:00,1474784,19, +24987630_259028,22:49:00,22:49:00,1474785,20, +24987630_259028,22:53:00,22:54:00,1474786,21, +24987630_259028,22:58:00,22:58:00,1474787,22, +24987630_259028,23:01:00,23:01:00,1474788,23, +24987630_259028,23:03:00,23:04:00,1474789,24, +24987630_259028,23:09:00,23:09:00,1474790,25, +24987630_259028,23:13:00,23:13:00,1474791,26, +24987630_259028,23:15:00,23:15:00,1474792,27, +24987630_259028,23:18:00,23:19:00,1474793,28, +24987630_259028,23:24:00,23:24:00,1474738,29, +24987633_259031,23:38:00,23:38:00,1536287,0, +24987633_259031,23:42:00,23:42:00,1536319,1, +24987633_259031,23:45:00,23:46:00,1536320,2, +24987633_259031,23:50:00,23:50:00,1536321,3, +24987633_259031,23:56:00,23:56:00,1475058,4, +24987633_259031,24:04:00,24:04:00,1475057,5, +24987633_259031,24:08:00,24:08:00,1475241,6, +24987633_259031,24:11:00,24:11:00,1475242,7, +24987633_259031,24:14:00,24:14:00,1475243,8, +24987633_259031,24:17:00,24:17:00,1475244,9, +24987633_259031,24:25:00,24:25:00,1475082,10, +24987634_259032,23:26:00,23:26:00,1536287,0, +24987634_259032,23:30:00,23:31:00,1536319,1, +24987634_259032,23:34:00,23:34:00,1536320,2, +24987634_259032,23:38:00,23:39:00,1536321,3, +24987634_259032,23:44:00,23:44:00,1475058,4, +24987634_259032,23:52:00,23:52:00,1475057,5, +24987634_259032,23:56:00,23:56:00,1475241,6, +24987634_259032,23:59:00,23:59:00,1475242,7, +24987634_259032,24:01:00,24:02:00,1475243,8, +24987634_259032,24:04:00,24:05:00,1475244,9, +24987634_259032,24:11:00,24:11:00,1475082,10, +24987636_259034,10:07:00,10:07:00,1536287,0, +24987636_259034,10:21:00,10:22:00,1475058,1, +24987636_259034,10:30:00,10:30:00,1475057,2, +24987636_259034,10:44:00,10:44:00,1474951,3, +24987636_259034,10:52:00,10:53:00,1474952,4, +24987636_259034,10:59:00,11:00:00,1474953,5, +24987636_259034,11:03:00,11:03:00,1474954,6, +24987636_259034,11:06:00,11:07:00,1474955,7, +24987636_259034,11:10:00,11:10:00,1474956,8, +24987636_259034,11:14:00,11:15:00,1474957,9, +24987636_259034,11:17:00,11:20:00,1474958,10, +24987636_259034,11:23:00,11:24:00,1474959,11, +24987636_259034,11:26:00,11:27:00,1474960,12, +24987636_259034,11:29:00,11:30:00,1474961,13, +24987636_259034,11:34:00,11:34:00,1474962,14, +24987636_259034,11:40:00,11:46:00,1474947,15, +24987636_259034,11:57:00,11:58:00,1475002,16, +24987636_259034,12:03:00,12:03:00,1474949,17, +24987636_259034,12:08:00,12:09:00,1475004,18, +24987636_259034,12:14:00,12:15:00,1475006,19, +24987636_259034,12:19:00,12:19:00,1474950,20, +24987636_259034,12:22:00,12:22:00,1474793,21, +24987636_259034,12:28:00,12:28:00,1536277,22, +24987638_259036,10:07:00,10:07:00,1536287,0, +24987638_259036,10:21:00,10:22:00,1475058,1, +24987638_259036,10:30:00,10:30:00,1475057,2, +24987638_259036,10:44:00,10:44:00,1474951,3, +24987638_259036,10:52:00,10:53:00,1474952,4, +24987638_259036,10:59:00,11:00:00,1474953,5, +24987638_259036,11:03:00,11:03:00,1474954,6, +24987638_259036,11:06:00,11:07:00,1474955,7, +24987638_259036,11:10:00,11:10:00,1474956,8, +24987638_259036,11:14:00,11:15:00,1474957,9, +24987638_259036,11:17:00,11:20:00,1474958,10, +24987638_259036,11:23:00,11:24:00,1474959,11, +24987638_259036,11:26:00,11:27:00,1474960,12, +24987638_259036,11:29:00,11:30:00,1474961,13, +24987638_259036,11:35:00,11:35:00,1474962,14, +24987638_259036,11:40:00,11:46:00,1474947,15, +24987638_259036,11:57:00,11:58:00,1475002,16, +24987638_259036,12:03:00,12:03:00,1474949,17, +24987638_259036,12:08:00,12:09:00,1475004,18, +24987638_259036,12:14:00,12:15:00,1475006,19, +24987638_259036,12:19:00,12:19:00,1474950,20, +24987638_259036,12:22:00,12:22:00,1474793,21, +24987638_259036,12:28:00,12:28:00,1536277,22, +24987639_259037,10:07:00,10:07:00,1536287,0, +24987639_259037,10:22:00,10:23:00,1475058,1, +24987639_259037,10:30:00,10:30:00,1475057,2, +24987639_259037,10:43:00,10:44:00,1474951,3, +24987639_259037,10:51:00,10:52:00,1474952,4, +24987639_259037,10:58:00,10:59:00,1474953,5, +24987639_259037,11:02:00,11:02:00,1474954,6, +24987639_259037,11:05:00,11:06:00,1474955,7, +24987639_259037,11:09:00,11:09:00,1474956,8, +24987639_259037,11:13:00,11:14:00,1474957,9, +24987639_259037,11:16:00,11:17:00,1474958,10, +24987639_259037,11:21:00,11:22:00,1474959,11, +24987639_259037,11:24:00,11:25:00,1474960,12, +24987639_259037,11:27:00,11:32:00,1474961,13, +24987639_259037,11:36:00,11:37:00,1474962,14, +24987639_259037,11:43:00,11:45:00,1609726,15, +24987639_259037,11:56:00,11:57:00,1475002,16, +24987639_259037,12:02:00,12:02:00,1474949,17, +24987639_259037,12:08:00,12:09:00,1475004,18, +24987639_259037,12:15:00,12:15:00,1475006,19, +24987639_259037,12:19:00,12:20:00,1474950,20, +24987639_259037,12:22:00,12:23:00,1474793,21, +24987639_259037,12:28:00,12:28:00,1474640,22, +24987641_259039,19:05:00,19:05:00,1536287,0, +24987641_259039,19:09:00,19:10:00,1536319,1, +24987641_259039,19:13:00,19:13:00,1536320,2, +24987641_259039,19:17:00,19:18:00,1536321,3, +24987641_259039,19:23:00,19:24:00,1475058,4, +24987641_259039,19:32:00,19:32:00,1475057,5, +24987641_259039,19:36:00,19:36:00,1475241,6, +24987641_259039,19:38:00,19:39:00,1475242,7, +24987641_259039,19:41:00,19:42:00,1475243,8, +24987641_259039,19:44:00,19:45:00,1475244,9, +24987641_259039,19:52:00,19:53:00,1474951,10, +24987641_259039,20:01:00,20:01:00,1474952,11, +24987641_259039,20:09:00,20:09:00,1474953,12, +24987641_259039,20:12:00,20:12:00,1474954,13, +24987641_259039,20:16:00,20:16:00,1474955,14, +24987641_259039,20:19:00,20:19:00,1474956,15, +24987641_259039,20:23:00,20:24:00,1474957,16, +24987641_259039,20:26:00,20:27:00,1474958,17, +24987641_259039,20:31:00,20:31:00,1474959,18, +24987641_259039,20:34:00,20:34:00,1474960,19, +24987641_259039,20:37:00,20:37:00,1474961,20, +24987641_259039,20:41:00,20:42:00,1474962,21, +24987641_259039,20:47:00,20:52:00,1609726,22, +24987641_259039,20:58:00,20:59:00,1475000,23, +24987641_259039,21:01:00,21:02:00,1475001,24, +24987641_259039,21:07:00,21:08:00,1475002,25, +24987641_259039,21:14:00,21:15:00,1474949,26, +24987641_259039,21:18:00,21:18:00,1475003,27, +24987641_259039,21:22:00,21:23:00,1475004,28, +24987641_259039,21:26:00,21:26:00,1475005,29, +24987641_259039,21:31:00,21:32:00,1475006,30, +24987641_259039,21:35:00,21:35:00,1475007,31, +24987641_259039,21:38:00,21:39:00,1474950,32, +24987641_259039,21:41:00,21:42:00,1474793,33, +24987641_259039,21:47:00,21:47:00,1474640,34, +24987642_259040,19:05:00,19:05:00,1536287,0, +24987642_259040,19:09:00,19:10:00,1536319,1, +24987642_259040,19:13:00,19:13:00,1536320,2, +24987642_259040,19:17:00,19:18:00,1536321,3, +24987642_259040,19:23:00,19:24:00,1475058,4, +24987642_259040,19:31:00,19:32:00,1475057,5, +24987642_259040,19:35:00,19:36:00,1475241,6, +24987642_259040,19:38:00,19:39:00,1475242,7, +24987642_259040,19:41:00,19:41:00,1475243,8, +24987642_259040,19:44:00,19:44:00,1475244,9, +24987642_259040,19:50:00,19:53:00,1474951,10, +24987642_259040,20:00:00,20:01:00,1474952,11, +24987642_259040,20:07:00,20:08:00,1474953,12, +24987642_259040,20:11:00,20:11:00,1474954,13, +24987642_259040,20:15:00,20:15:00,1474955,14, +24987642_259040,20:18:00,20:19:00,1474956,15, +24987642_259040,20:23:00,20:23:00,1474957,16, +24987642_259040,20:26:00,20:27:00,1474958,17, +24987642_259040,20:31:00,20:31:00,1474959,18, +24987642_259040,20:34:00,20:34:00,1474960,19, +24987642_259040,20:37:00,20:37:00,1474961,20, +24987642_259040,20:41:00,20:42:00,1474962,21, +24987642_259040,20:47:00,20:49:00,1474843,22, +24987642_259040,20:57:00,20:58:00,1475000,23, +24987642_259040,21:00:00,21:01:00,1475001,24, +24987642_259040,21:06:00,21:07:00,1475002,25, +24987642_259040,21:13:00,21:14:00,1474949,26, +24987642_259040,21:17:00,21:18:00,1475003,27, +24987642_259040,21:21:00,21:22:00,1475004,28, +24987642_259040,21:25:00,21:26:00,1475005,29, +24987642_259040,21:30:00,21:31:00,1475006,30, +24987642_259040,21:34:00,21:35:00,1475007,31, +24987642_259040,21:37:00,21:38:00,1474950,32, +24987642_259040,21:41:00,21:42:00,1474793,33, +24987642_259040,21:47:00,21:47:00,1474640,34, +24987646_259044,20:05:00,20:05:00,1536287,0, +24987646_259044,20:09:00,20:09:00,1536319,1, +24987646_259044,20:12:00,20:13:00,1536320,2, +24987646_259044,20:17:00,20:17:00,1536321,3, +24987646_259044,20:23:00,20:23:00,1475058,4, +24987646_259044,20:31:00,20:31:00,1475057,5, +24987646_259044,20:35:00,20:35:00,1475241,6, +24987646_259044,20:38:00,20:38:00,1475242,7, +24987646_259044,20:40:00,20:41:00,1475243,8, +24987646_259044,20:43:00,20:44:00,1475244,9, +24987646_259044,20:51:00,20:56:00,1474951,10, +24987646_259044,21:04:00,21:04:00,1474952,11, +24987646_259044,21:11:00,21:11:00,1474953,12, +24987646_259044,21:14:00,21:15:00,1474954,13, +24987646_259044,21:18:00,21:19:00,1474955,14, +24987646_259044,21:22:00,21:22:00,1474956,15, +24987646_259044,21:26:00,21:27:00,1474957,16, +24987646_259044,21:29:00,21:35:00,1474958,17, +24987646_259044,21:39:00,21:39:00,1474959,18, +24987646_259044,21:42:00,21:42:00,1474960,19, +24987646_259044,21:45:00,21:45:00,1474961,20, +24987646_259044,21:49:00,21:50:00,1474962,21, +24987646_259044,21:56:00,21:58:00,1474947,22, +24987646_259044,22:04:00,22:04:00,1475000,23, +24987646_259044,22:07:00,22:07:00,1475001,24, +24987646_259044,22:13:00,22:13:00,1475002,25, +24987646_259044,22:19:00,22:20:00,1474949,26, +24987646_259044,22:23:00,22:23:00,1475003,27, +24987646_259044,22:27:00,22:28:00,1475004,28, +24987646_259044,22:31:00,22:31:00,1475005,29, +24987646_259044,22:36:00,22:37:00,1475006,30, +24987646_259044,22:40:00,22:40:00,1475007,31, +24987646_259044,22:43:00,22:44:00,1474950,32, +24987646_259044,22:46:00,22:46:00,1474793,33, +24987646_259044,22:52:00,22:52:00,1536279,34, +24987647_259045,20:07:00,20:07:00,1536287,0, +24987647_259045,20:11:00,20:12:00,1536319,1, +24987647_259045,20:15:00,20:15:00,1536320,2, +24987647_259045,20:19:00,20:20:00,1536321,3, +24987647_259045,20:25:00,20:26:00,1475058,4, +24987647_259045,20:33:00,20:33:00,1475057,5, +24987647_259045,20:37:00,20:37:00,1475241,6, +24987647_259045,20:40:00,20:40:00,1475242,7, +24987647_259045,20:42:00,20:43:00,1475243,8, +24987647_259045,20:45:00,20:46:00,1475244,9, +24987647_259045,20:52:00,20:54:00,1474951,10, +24987647_259045,21:02:00,21:02:00,1474952,11, +24987647_259045,21:09:00,21:09:00,1474953,12, +24987647_259045,21:12:00,21:13:00,1474954,13, +24987647_259045,21:16:00,21:17:00,1474955,14, +24987647_259045,21:20:00,21:20:00,1474956,15, +24987647_259045,21:24:00,21:25:00,1474957,16, +24987647_259045,21:27:00,21:32:00,1474958,17, +24987647_259045,21:36:00,21:36:00,1474959,18, +24987647_259045,21:39:00,21:39:00,1474960,19, +24987647_259045,21:42:00,21:42:00,1474961,20, +24987647_259045,21:46:00,21:47:00,1474962,21, +24987647_259045,21:53:00,21:55:00,1474843,22, +24987647_259045,22:03:00,22:04:00,1475000,23, +24987647_259045,22:06:00,22:06:00,1475001,24, +24987647_259045,22:12:00,22:12:00,1475002,25, +24987647_259045,22:18:00,22:19:00,1474949,26, +24987647_259045,22:22:00,22:22:00,1475003,27, +24987647_259045,22:26:00,22:27:00,1475004,28, +24987647_259045,22:30:00,22:30:00,1475005,29, +24987647_259045,22:35:00,22:36:00,1475006,30, +24987647_259045,22:39:00,22:39:00,1475007,31, +24987647_259045,22:41:00,22:42:00,1474950,32, +24987647_259045,22:44:00,22:45:00,1474793,33, +24987647_259045,22:51:00,22:51:00,1474640,34, +24987648_259046,20:07:00,20:07:00,1536287,0, +24987648_259046,20:11:00,20:12:00,1536319,1, +24987648_259046,20:15:00,20:15:00,1536320,2, +24987648_259046,20:19:00,20:20:00,1536321,3, +24987648_259046,20:25:00,20:26:00,1475058,4, +24987648_259046,20:33:00,20:33:00,1475057,5, +24987648_259046,20:37:00,20:37:00,1475241,6, +24987648_259046,20:40:00,20:40:00,1475242,7, +24987648_259046,20:42:00,20:43:00,1475243,8, +24987648_259046,20:45:00,20:46:00,1475244,9, +24987648_259046,20:52:00,20:54:00,1474951,10, +24987648_259046,21:02:00,21:02:00,1474952,11, +24987648_259046,21:09:00,21:09:00,1474953,12, +24987648_259046,21:12:00,21:13:00,1474954,13, +24987648_259046,21:16:00,21:17:00,1474955,14, +24987648_259046,21:20:00,21:20:00,1474956,15, +24987648_259046,21:24:00,21:25:00,1474957,16, +24987648_259046,21:27:00,21:32:00,1474958,17, +24987648_259046,21:36:00,21:36:00,1474959,18, +24987648_259046,21:39:00,21:39:00,1474960,19, +24987648_259046,21:42:00,21:42:00,1474961,20, +24987648_259046,21:46:00,21:47:00,1474962,21, +24987648_259046,21:53:00,21:55:00,1474843,22, +24987648_259046,22:03:00,22:04:00,1475000,23, +24987648_259046,22:06:00,22:06:00,1475001,24, +24987648_259046,22:12:00,22:12:00,1475002,25, +24987648_259046,22:18:00,22:19:00,1474949,26, +24987648_259046,22:22:00,22:22:00,1475003,27, +24987648_259046,22:26:00,22:27:00,1475004,28, +24987648_259046,22:30:00,22:30:00,1475005,29, +24987648_259046,22:35:00,22:36:00,1475006,30, +24987648_259046,22:39:00,22:39:00,1475007,31, +24987648_259046,22:41:00,22:42:00,1474950,32, +24987648_259046,22:44:00,22:45:00,1474793,33, +24987648_259046,22:51:00,22:51:00,1474640,34, +24987649_259047,20:07:00,20:07:00,1536287,0, +24987649_259047,20:11:00,20:12:00,1536319,1, +24987649_259047,20:15:00,20:15:00,1536320,2, +24987649_259047,20:19:00,20:20:00,1536321,3, +24987649_259047,20:25:00,20:26:00,1475058,4, +24987649_259047,20:33:00,20:33:00,1475057,5, +24987649_259047,20:37:00,20:37:00,1475241,6, +24987649_259047,20:40:00,20:40:00,1475242,7, +24987649_259047,20:42:00,20:43:00,1475243,8, +24987649_259047,20:45:00,20:46:00,1475244,9, +24987649_259047,20:52:00,20:54:00,1474951,10, +24987649_259047,21:02:00,21:02:00,1474952,11, +24987649_259047,21:09:00,21:09:00,1474953,12, +24987649_259047,21:12:00,21:13:00,1474954,13, +24987649_259047,21:16:00,21:17:00,1474955,14, +24987649_259047,21:20:00,21:20:00,1474956,15, +24987649_259047,21:24:00,21:25:00,1474957,16, +24987649_259047,21:27:00,21:32:00,1474958,17, +24987649_259047,21:36:00,21:36:00,1474959,18, +24987649_259047,21:39:00,21:39:00,1474960,19, +24987649_259047,21:42:00,21:42:00,1474961,20, +24987649_259047,21:46:00,21:47:00,1474962,21, +24987649_259047,21:53:00,21:55:00,1474843,22, +24987649_259047,22:03:00,22:04:00,1475000,23, +24987649_259047,22:06:00,22:06:00,1475001,24, +24987649_259047,22:12:00,22:12:00,1475002,25, +24987649_259047,22:18:00,22:19:00,1474949,26, +24987649_259047,22:22:00,22:22:00,1475003,27, +24987649_259047,22:26:00,22:27:00,1475004,28, +24987649_259047,22:30:00,22:30:00,1475005,29, +24987649_259047,22:35:00,22:36:00,1475006,30, +24987649_259047,22:39:00,22:39:00,1475007,31, +24987649_259047,22:41:00,22:42:00,1474950,32, +24987649_259047,22:44:00,22:45:00,1474793,33, +24987649_259047,22:51:00,22:51:00,1474640,34, +24987653_259051,21:50:00,21:50:00,1536287,0, +24987653_259051,21:54:00,21:54:00,1536319,1, +24987653_259051,21:57:00,21:57:00,1536320,2, +24987653_259051,22:01:00,22:02:00,1536321,3, +24987653_259051,22:07:00,22:07:00,1475058,4, +24987653_259051,22:15:00,22:16:00,1475057,5, +24987653_259051,22:19:00,22:20:00,1475241,6, +24987653_259051,22:22:00,22:22:00,1475242,7, +24987653_259051,22:24:00,22:25:00,1475243,8, +24987653_259051,22:27:00,22:27:00,1475244,9, +24987653_259051,22:35:00,22:36:00,1474951,10, +24987653_259051,22:43:00,22:44:00,1474952,11, +24987653_259051,22:53:00,22:53:00,1474954,12, +24987653_259051,23:01:00,23:01:00,1474957,13, +24987653_259051,23:04:00,23:09:00,1475015,14, +24987653_259051,23:42:00,23:47:00,1609726,15, +24987653_259051,23:59:00,24:00:00,1475002,16, +24987653_259051,24:05:00,24:05:00,1474949,17, +24987653_259051,24:11:00,24:11:00,1475004,18, +24987653_259051,24:17:00,24:18:00,1475006,19, +24987653_259051,24:22:00,24:23:00,1474950,20, +24987653_259051,24:25:00,24:26:00,1474793,21, +24987653_259051,24:32:00,24:32:00,1474640,22, +24987654_259052,21:50:00,21:50:00,1536287,0, +24987654_259052,21:54:00,21:55:00,1536319,1, +24987654_259052,21:57:00,21:58:00,1536320,2, +24987654_259052,22:02:00,22:02:00,1536321,3, +24987654_259052,22:07:00,22:08:00,1475058,4, +24987654_259052,22:15:00,22:16:00,1475057,5, +24987654_259052,22:19:00,22:20:00,1475241,6, +24987654_259052,22:22:00,22:22:00,1475242,7, +24987654_259052,22:24:00,22:25:00,1475243,8, +24987654_259052,22:27:00,22:27:00,1475244,9, +24987654_259052,22:35:00,22:36:00,1474951,10, +24987654_259052,22:43:00,22:44:00,1474952,11, +24987654_259052,22:53:00,22:53:00,1474954,12, +24987654_259052,23:01:00,23:01:00,1474957,13, +24987654_259052,23:04:00,23:05:00,1474958,14, +24987654_259052,23:20:00,23:23:00,1609726,15, +24987654_259052,23:35:00,23:36:00,1475002,16, +24987654_259052,23:41:00,23:41:00,1474949,17, +24987654_259052,23:47:00,23:47:00,1475004,18, +24987654_259052,23:53:00,23:54:00,1475006,19, +24987654_259052,23:58:00,23:59:00,1474950,20, +24987654_259052,24:01:00,24:02:00,1474793,21, +24987654_259052,24:08:00,24:08:00,1474738,22, +24987659_259057,04:55:00,04:55:00,1475097,0, +24987659_259057,05:00:00,05:01:00,1475096,1, +24987659_259057,05:03:00,05:03:00,1475095,2, +24987659_259057,05:11:00,05:12:00,1475094,3, +24987659_259057,05:16:00,05:16:00,1475093,4, +24987659_259057,05:19:00,05:20:00,1475092,5, +24987659_259057,05:25:00,05:25:00,1475098,6, +24987659_259057,05:30:00,05:31:00,1475215,7, +24987659_259057,05:36:00,05:37:00,1475216,8, +24987659_259057,05:41:00,05:42:00,1475088,9, +24987659_259057,05:46:00,05:59:00,1475210,10, +24987659_259057,06:05:00,06:06:00,1475211,11, +24987659_259057,06:10:00,06:10:00,1475212,12, +24987659_259057,06:13:00,06:13:00,1475213,13, +24987659_259057,06:16:00,06:17:00,1474705,14, +24987659_259057,06:19:00,06:20:00,1475214,15, +24987659_259057,06:24:00,06:25:00,1474703,16, +24987659_259057,06:27:00,06:27:00,1475180,17, +24987659_259057,06:29:00,06:30:00,1475181,18, +24987659_259057,06:35:00,06:41:00,1536279,19, +24987659_259057,06:45:00,06:46:00,1474903,20, +24987659_259057,06:51:00,06:56:00,1474904,21, +24987659_259057,07:00:00,07:00:00,1474905,22, +24987659_259057,07:05:00,07:06:00,1474906,23, +24987659_259057,07:10:00,07:10:00,1474907,24, +24987659_259057,07:14:00,07:14:00,1474908,25, +24987660_259058,05:00:00,05:00:00,1475097,0, +24987660_259058,05:05:00,05:06:00,1475096,1, +24987660_259058,05:08:00,05:09:00,1475095,2, +24987660_259058,05:16:00,05:17:00,1475094,3, +24987660_259058,05:20:00,05:21:00,1475093,4, +24987660_259058,05:24:00,05:24:00,1475092,5, +24987660_259058,05:30:00,05:30:00,1475098,6, +24987660_259058,05:35:00,05:36:00,1475215,7, +24987660_259058,05:41:00,05:42:00,1475216,8, +24987660_259058,05:47:00,05:48:00,1475088,9, +24987660_259058,05:52:00,06:00:00,1475210,10, +24987660_259058,06:06:00,06:06:00,1475211,11, +24987660_259058,06:10:00,06:11:00,1475212,12, +24987660_259058,06:13:00,06:13:00,1475213,13, +24987660_259058,06:16:00,06:17:00,1474705,14, +24987660_259058,06:19:00,06:20:00,1475214,15, +24987660_259058,06:24:00,06:25:00,1474703,16, +24987660_259058,06:27:00,06:27:00,1475180,17, +24987660_259058,06:29:00,06:30:00,1475181,18, +24987660_259058,06:35:00,06:51:00,1474861,19, +24987660_259058,06:56:00,06:56:00,1474903,20, +24987660_259058,07:01:00,07:02:00,1474904,21, +24987660_259058,07:05:00,07:05:00,1474905,22, +24987660_259058,07:11:00,07:11:00,1474906,23, +24987660_259058,07:17:00,07:18:00,1474907,24, +24987660_259058,07:22:00,07:22:00,1474908,25, +24987664_259062,06:16:00,06:16:00,1475097,0, +24987664_259062,06:21:00,06:22:00,1475096,1, +24987664_259062,06:24:00,06:24:00,1475095,2, +24987664_259062,06:32:00,06:33:00,1475094,3, +24987664_259062,06:39:00,06:39:00,1475092,4, +24987664_259062,06:45:00,06:45:00,1475098,5, +24987664_259062,06:51:00,06:52:00,1475215,6, +24987664_259062,06:58:00,06:59:00,1475216,7, +24987664_259062,07:03:00,07:03:00,1475099,8, +24987664_259062,07:13:00,07:13:00,1475212,9, +24987664_259062,07:18:00,07:18:00,1474705,10, +24987664_259062,07:21:00,07:21:00,1475214,11, +24987664_259062,07:25:00,07:26:00,1474703,12, +24987664_259062,07:30:00,07:31:00,1475181,13, +24987664_259062,07:37:00,07:37:00,1474738,14, +24987665_259063,06:16:00,06:16:00,1475097,0, +24987665_259063,06:21:00,06:22:00,1475096,1, +24987665_259063,06:24:00,06:24:00,1475095,2, +24987665_259063,06:32:00,06:33:00,1475094,3, +24987665_259063,06:39:00,06:39:00,1475092,4, +24987665_259063,06:44:00,06:45:00,1475098,5, +24987665_259063,06:49:00,06:50:00,1475215,6, +24987665_259063,06:55:00,06:56:00,1475216,7, +24987665_259063,07:00:00,07:02:00,1475099,8, +24987665_259063,07:12:00,07:13:00,1475212,9, +24987665_259063,07:18:00,07:18:00,1474705,10, +24987665_259063,07:21:00,07:21:00,1475214,11, +24987665_259063,07:25:00,07:28:00,1474703,12, +24987665_259063,07:32:00,07:33:00,1475181,13, +24987665_259063,07:38:00,07:38:00,1474738,14, +24987669_259067,08:32:00,08:32:00,1475097,0, +24987669_259067,08:37:00,08:38:00,1475096,1, +24987669_259067,08:40:00,08:41:00,1475095,2, +24987669_259067,08:49:00,08:49:00,1475094,3, +24987669_259067,08:55:00,08:55:00,1475092,4, +24987669_259067,09:01:00,09:01:00,1475098,5, +24987669_259067,09:06:00,09:06:00,1475215,6, +24987669_259067,09:12:00,09:12:00,1475216,7, +24987669_259067,09:19:00,09:20:00,1475099,8, +24987669_259067,09:31:00,09:32:00,1475212,9, +24987669_259067,09:36:00,09:36:00,1474705,10, +24987669_259067,09:39:00,09:39:00,1475214,11, +24987669_259067,09:43:00,09:44:00,1474703,12, +24987669_259067,09:47:00,09:48:00,1475181,13, +24987669_259067,09:53:00,09:56:00,1474738,14, +24987669_259067,10:00:00,10:01:00,1474903,15, +24987669_259067,10:06:00,10:07:00,1474904,16, +24987669_259067,10:10:00,10:11:00,1474905,17, +24987669_259067,10:16:00,10:16:00,1474906,18, +24987669_259067,10:20:00,10:21:00,1474907,19, +24987669_259067,10:25:00,10:25:00,1474908,20, +24987670_259068,08:28:00,08:28:00,1475097,0, +24987670_259068,08:33:00,08:34:00,1475096,1, +24987670_259068,08:36:00,08:37:00,1475095,2, +24987670_259068,08:45:00,08:45:00,1475094,3, +24987670_259068,08:51:00,08:51:00,1475092,4, +24987670_259068,08:57:00,08:57:00,1475098,5, +24987670_259068,09:02:00,09:03:00,1475215,6, +24987670_259068,09:09:00,09:10:00,1475216,7, +24987670_259068,09:16:00,09:18:00,1475099,8, +24987670_259068,09:28:00,09:28:00,1475212,9, +24987670_259068,09:33:00,09:33:00,1474705,10, +24987670_259068,09:36:00,09:36:00,1475214,11, +24987670_259068,09:40:00,09:42:00,1474703,12, +24987670_259068,09:46:00,09:48:00,1475181,13, +24987670_259068,09:54:00,10:04:00,1474861,14, +24987670_259068,10:09:00,10:10:00,1474903,15, +24987670_259068,10:16:00,10:16:00,1474904,16, +24987670_259068,10:20:00,10:20:00,1474905,17, +24987670_259068,10:26:00,10:26:00,1474906,18, +24987670_259068,10:30:00,10:30:00,1474907,19, +24987670_259068,10:34:00,10:34:00,1474908,20, +24987675_259073,11:19:00,11:19:00,1475097,0, +24987675_259073,11:24:00,11:25:00,1475096,1, +24987675_259073,11:27:00,11:28:00,1475095,2, +24987675_259073,11:36:00,11:36:00,1475094,3, +24987675_259073,11:42:00,11:42:00,1475092,4, +24987675_259073,11:48:00,11:48:00,1475098,5, +24987675_259073,11:53:00,11:54:00,1475215,6, +24987675_259073,11:59:00,12:00:00,1475216,7, +24987675_259073,12:04:00,12:05:00,1475099,8, +24987675_259073,12:14:00,12:15:00,1475212,9, +24987675_259073,12:19:00,12:20:00,1474705,10, +24987675_259073,12:22:00,12:23:00,1475214,11, +24987675_259073,12:27:00,12:28:00,1474703,12, +24987675_259073,12:32:00,12:33:00,1475181,13, +24987675_259073,12:38:00,12:38:00,1474640,14, +24987676_259074,11:15:00,11:15:00,1475097,0, +24987676_259074,11:20:00,11:21:00,1475096,1, +24987676_259074,11:23:00,11:24:00,1475095,2, +24987676_259074,11:32:00,11:32:00,1475094,3, +24987676_259074,11:38:00,11:38:00,1475092,4, +24987676_259074,11:44:00,11:44:00,1475098,5, +24987676_259074,11:49:00,11:50:00,1475215,6, +24987676_259074,11:56:00,11:57:00,1475216,7, +24987676_259074,12:02:00,12:03:00,1475099,8, +24987676_259074,12:12:00,12:13:00,1475212,9, +24987676_259074,12:17:00,12:18:00,1474705,10, +24987676_259074,12:20:00,12:21:00,1475214,11, +24987676_259074,12:25:00,12:27:00,1474703,12, +24987676_259074,12:31:00,12:33:00,1475181,13, +24987676_259074,12:38:00,12:38:00,1474738,14, +24987680_259078,11:19:00,11:19:00,1475097,0, +24987680_259078,11:24:00,11:25:00,1475096,1, +24987680_259078,11:27:00,11:28:00,1475095,2, +24987680_259078,11:36:00,11:36:00,1475094,3, +24987680_259078,11:42:00,11:42:00,1475092,4, +24987680_259078,11:48:00,11:48:00,1475098,5, +24987680_259078,11:53:00,11:54:00,1475215,6, +24987680_259078,11:59:00,12:00:00,1475216,7, +24987680_259078,12:04:00,12:05:00,1475099,8, +24987680_259078,12:14:00,12:15:00,1475212,9, +24987680_259078,12:19:00,12:20:00,1474705,10, +24987680_259078,12:22:00,12:23:00,1475214,11, +24987680_259078,12:27:00,12:28:00,1474703,12, +24987680_259078,12:32:00,12:33:00,1475181,13, +24987680_259078,12:38:00,12:46:00,1474640,14, +24987680_259078,12:50:00,12:51:00,1474903,15, +24987680_259078,12:56:00,12:57:00,1474904,16, +24987680_259078,13:00:00,13:01:00,1474905,17, +24987680_259078,13:06:00,13:06:00,1474906,18, +24987680_259078,13:10:00,13:10:00,1474907,19, +24987680_259078,13:15:00,13:15:00,1474908,20, +24987681_259079,11:15:00,11:15:00,1475097,0, +24987681_259079,11:20:00,11:21:00,1475096,1, +24987681_259079,11:23:00,11:24:00,1475095,2, +24987681_259079,11:32:00,11:32:00,1475094,3, +24987681_259079,11:38:00,11:38:00,1475092,4, +24987681_259079,11:44:00,11:44:00,1475098,5, +24987681_259079,11:49:00,11:50:00,1475215,6, +24987681_259079,11:56:00,11:57:00,1475216,7, +24987681_259079,12:02:00,12:03:00,1475099,8, +24987681_259079,12:12:00,12:13:00,1475212,9, +24987681_259079,12:17:00,12:18:00,1474705,10, +24987681_259079,12:20:00,12:21:00,1475214,11, +24987681_259079,12:25:00,12:27:00,1474703,12, +24987681_259079,12:31:00,12:33:00,1475181,13, +24987681_259079,12:38:00,12:44:00,1474861,14, +24987681_259079,12:48:00,12:49:00,1474903,15, +24987681_259079,12:54:00,12:59:00,1474904,16, +24987681_259079,13:02:00,13:03:00,1474905,17, +24987681_259079,13:08:00,13:09:00,1474906,18, +24987681_259079,13:12:00,13:13:00,1474907,19, +24987681_259079,13:17:00,13:17:00,1474908,20, +24987686_259084,13:35:00,13:35:00,1475097,0, +24987686_259084,13:40:00,13:41:00,1475096,1, +24987686_259084,13:43:00,13:43:00,1475095,2, +24987686_259084,13:51:00,13:52:00,1475094,3, +24987686_259084,13:56:00,13:56:00,1475093,4, +24987686_259084,13:59:00,14:00:00,1475092,5, +24987686_259084,14:06:00,14:06:00,1475098,6, +24987686_259084,14:11:00,14:11:00,1475215,7, +24987686_259084,14:17:00,14:17:00,1475216,8, +24987686_259084,14:21:00,14:22:00,1475099,9, +24987686_259084,14:31:00,14:32:00,1475212,10, +24987686_259084,14:36:00,14:36:00,1474705,11, +24987686_259084,14:39:00,14:39:00,1475214,12, +24987686_259084,14:43:00,14:44:00,1474703,13, +24987686_259084,14:48:00,14:50:00,1475181,14, +24987686_259084,14:56:00,15:10:00,1474640,15, +24987686_259084,15:15:00,15:15:00,1474903,16, +24987686_259084,15:20:00,15:21:00,1474904,17, +24987686_259084,15:24:00,15:25:00,1474905,18, +24987686_259084,15:30:00,15:30:00,1474906,19, +24987686_259084,15:34:00,15:35:00,1474907,20, +24987686_259084,15:39:00,15:39:00,1474908,21, +24987687_259085,13:33:00,13:33:00,1475097,0, +24987687_259085,13:38:00,13:39:00,1475096,1, +24987687_259085,13:41:00,13:42:00,1475095,2, +24987687_259085,13:49:00,13:50:00,1475094,3, +24987687_259085,13:53:00,13:54:00,1475093,4, +24987687_259085,13:57:00,13:57:00,1475092,5, +24987687_259085,14:03:00,14:03:00,1475098,6, +24987687_259085,14:08:00,14:08:00,1475215,7, +24987687_259085,14:13:00,14:14:00,1475216,8, +24987687_259085,14:18:00,14:19:00,1475099,9, +24987687_259085,14:28:00,14:29:00,1475212,10, +24987687_259085,14:33:00,14:34:00,1474705,11, +24987687_259085,14:36:00,14:37:00,1475214,12, +24987687_259085,14:41:00,14:43:00,1474703,13, +24987687_259085,14:48:00,14:49:00,1475181,14, +24987687_259085,14:54:00,15:10:00,1474861,15, +24987687_259085,15:14:00,15:15:00,1474903,16, +24987687_259085,15:20:00,15:20:00,1474904,17, +24987687_259085,15:24:00,15:24:00,1474905,18, +24987687_259085,15:30:00,15:30:00,1474906,19, +24987687_259085,15:35:00,15:35:00,1474907,20, +24987687_259085,15:39:00,15:39:00,1474908,21, +24987691_259089,15:30:00,15:30:00,1475097,0, +24987691_259089,15:35:00,15:36:00,1475096,1, +24987691_259089,15:38:00,15:38:00,1475095,2, +24987691_259089,15:46:00,15:47:00,1475094,3, +24987691_259089,15:53:00,16:03:00,1475092,4, +24987691_259089,16:08:00,16:08:00,1475098,5, +24987691_259089,16:13:00,16:14:00,1475215,6, +24987691_259089,16:20:00,16:20:00,1475216,7, +24987691_259089,16:24:00,16:25:00,1475099,8, +24987691_259089,16:36:00,16:37:00,1475212,9, +24987691_259089,16:42:00,16:42:00,1474705,10, +24987691_259089,16:45:00,16:46:00,1475214,11, +24987691_259089,16:50:00,16:52:00,1474703,12, +24987691_259089,16:56:00,16:59:00,1475181,13, +24987691_259089,17:05:00,17:05:00,1474640,14, +24987692_259090,15:39:00,15:39:00,1475097,0, +24987692_259090,15:44:00,15:45:00,1475096,1, +24987692_259090,15:47:00,15:47:00,1475095,2, +24987692_259090,15:55:00,15:55:00,1475094,3, +24987692_259090,16:01:00,16:02:00,1475092,4, +24987692_259090,16:07:00,16:07:00,1475098,5, +24987692_259090,16:12:00,16:12:00,1475215,6, +24987692_259090,16:18:00,16:18:00,1475216,7, +24987692_259090,16:22:00,16:23:00,1475099,8, +24987692_259090,16:32:00,16:33:00,1475212,9, +24987692_259090,16:37:00,16:38:00,1474705,10, +24987692_259090,16:41:00,16:42:00,1475214,11, +24987692_259090,16:47:00,16:53:00,1474703,12, +24987692_259090,16:57:00,17:00:00,1475181,13, +24987692_259090,17:06:00,17:06:00,1474738,14, +24987694_259092,16:58:00,16:58:00,1475097,0, +24987694_259092,17:03:00,17:04:00,1475096,1, +24987694_259092,17:06:00,17:06:00,1475095,2, +24987694_259092,17:14:00,17:15:00,1475094,3, +24987694_259092,17:20:00,17:21:00,1475092,4, +24987694_259092,17:26:00,17:27:00,1475098,5, +24987694_259092,17:31:00,17:32:00,1475215,6, +24987694_259092,17:37:00,17:38:00,1475216,7, +24987694_259092,17:42:00,17:43:00,1475099,8, +24987694_259092,17:52:00,17:52:00,1475212,9, +24987694_259092,17:57:00,17:57:00,1474705,10, +24987694_259092,18:00:00,18:00:00,1475214,11, +24987694_259092,18:04:00,18:06:00,1474703,12, +24987694_259092,18:10:00,18:12:00,1475181,13, +24987694_259092,18:18:00,18:18:00,1536279,14, +24987695_259093,16:58:00,16:58:00,1475097,0, +24987695_259093,17:03:00,17:04:00,1475096,1, +24987695_259093,17:06:00,17:06:00,1475095,2, +24987695_259093,17:14:00,17:15:00,1475094,3, +24987695_259093,17:20:00,17:21:00,1475092,4, +24987695_259093,17:26:00,17:26:00,1475098,5, +24987695_259093,17:31:00,17:31:00,1475215,6, +24987695_259093,17:37:00,17:37:00,1475216,7, +24987695_259093,17:41:00,17:42:00,1475099,8, +24987695_259093,17:51:00,17:52:00,1475212,9, +24987695_259093,17:56:00,17:57:00,1474705,10, +24987695_259093,18:00:00,18:00:00,1475214,11, +24987695_259093,18:05:00,18:06:00,1474703,12, +24987695_259093,18:10:00,18:11:00,1475181,13, +24987695_259093,18:16:00,18:16:00,1474738,14, +24987699_259097,18:10:00,18:10:00,1475097,0, +24987699_259097,18:15:00,18:16:00,1475096,1, +24987699_259097,18:18:00,18:18:00,1475095,2, +24987699_259097,18:27:00,18:27:00,1475094,3, +24987699_259097,18:33:00,18:34:00,1475092,4, +24987699_259097,18:39:00,18:40:00,1475098,5, +24987699_259097,18:45:00,18:46:00,1475215,6, +24987699_259097,18:52:00,18:53:00,1475216,7, +24987699_259097,19:00:00,19:01:00,1475099,8, +24987699_259097,19:10:00,19:11:00,1475212,9, +24987699_259097,19:15:00,19:16:00,1474705,10, +24987699_259097,19:18:00,19:19:00,1475214,11, +24987699_259097,19:23:00,19:25:00,1474703,12, +24987699_259097,19:29:00,19:30:00,1475181,13, +24987699_259097,19:36:00,19:45:00,1536279,14, +24987699_259097,19:50:00,19:50:00,1474903,15, +24987699_259097,19:56:00,19:56:00,1474904,16, +24987699_259097,20:00:00,20:00:00,1474905,17, +24987699_259097,20:05:00,20:06:00,1474906,18, +24987699_259097,20:10:00,20:10:00,1474907,19, +24987699_259097,20:14:00,20:14:00,1474908,20, +24987700_259098,18:14:00,18:14:00,1475097,0, +24987700_259098,18:19:00,18:20:00,1475096,1, +24987700_259098,18:22:00,18:23:00,1475095,2, +24987700_259098,18:31:00,18:32:00,1475094,3, +24987700_259098,18:37:00,18:38:00,1475092,4, +24987700_259098,18:43:00,18:44:00,1475098,5, +24987700_259098,18:49:00,18:49:00,1475215,6, +24987700_259098,18:55:00,18:55:00,1475216,7, +24987700_259098,19:00:00,19:00:00,1475099,8, +24987700_259098,19:10:00,19:11:00,1475212,9, +24987700_259098,19:15:00,19:15:00,1474705,10, +24987700_259098,19:18:00,19:18:00,1475214,11, +24987700_259098,19:22:00,19:25:00,1474703,12, +24987700_259098,19:29:00,19:30:00,1475181,13, +24987700_259098,19:36:00,19:42:00,1474861,14, +24987700_259098,19:47:00,19:47:00,1474903,15, +24987700_259098,19:53:00,19:53:00,1474904,16, +24987700_259098,19:56:00,19:57:00,1474905,17, +24987700_259098,20:02:00,20:03:00,1474906,18, +24987700_259098,20:06:00,20:07:00,1474907,19, +24987700_259098,20:11:00,20:11:00,1474908,20, +24987704_259102,18:10:00,18:10:00,1475097,0, +24987704_259102,18:15:00,18:16:00,1475096,1, +24987704_259102,18:18:00,18:18:00,1475095,2, +24987704_259102,18:27:00,18:27:00,1475094,3, +24987704_259102,18:33:00,18:34:00,1475092,4, +24987704_259102,18:39:00,18:40:00,1475098,5, +24987704_259102,18:45:00,18:46:00,1475215,6, +24987704_259102,18:52:00,18:53:00,1475216,7, +24987704_259102,19:00:00,19:01:00,1475099,8, +24987704_259102,19:10:00,19:11:00,1475212,9, +24987704_259102,19:15:00,19:16:00,1474705,10, +24987704_259102,19:18:00,19:19:00,1475214,11, +24987704_259102,19:23:00,19:25:00,1474703,12, +24987704_259102,19:29:00,19:30:00,1475181,13, +24987704_259102,19:36:00,19:36:00,1474651,14, +24987705_259103,18:14:00,18:14:00,1475097,0, +24987705_259103,18:19:00,18:20:00,1475096,1, +24987705_259103,18:22:00,18:23:00,1475095,2, +24987705_259103,18:31:00,18:32:00,1475094,3, +24987705_259103,18:37:00,18:38:00,1475092,4, +24987705_259103,18:43:00,18:44:00,1475098,5, +24987705_259103,18:49:00,18:49:00,1475215,6, +24987705_259103,18:55:00,18:55:00,1475216,7, +24987705_259103,19:00:00,19:00:00,1475099,8, +24987705_259103,19:10:00,19:11:00,1475212,9, +24987705_259103,19:15:00,19:15:00,1474705,10, +24987705_259103,19:18:00,19:18:00,1475214,11, +24987705_259103,19:22:00,19:25:00,1474703,12, +24987705_259103,19:29:00,19:30:00,1475181,13, +24987705_259103,19:36:00,19:36:00,1474738,14, +24987717_259115,21:22:00,21:22:00,1475097,0, +24987717_259115,21:27:00,21:27:00,1475096,1, +24987717_259115,21:30:00,21:30:00,1475095,2, +24987717_259115,21:38:00,21:38:00,1475094,3, +24987717_259115,21:42:00,21:43:00,1475093,4, +24987717_259115,21:45:00,21:46:00,1475092,5, +24987717_259115,21:51:00,21:52:00,1475098,6, +24987717_259115,21:56:00,21:57:00,1475215,7, +24987717_259115,22:02:00,22:03:00,1475216,8, +24987717_259115,22:08:00,22:08:00,1475088,9, +24987717_259115,22:12:00,22:25:00,1475210,10, +24987717_259115,22:31:00,22:32:00,1475211,11, +24987717_259115,22:36:00,22:36:00,1475212,12, +24987717_259115,22:38:00,22:39:00,1475213,13, +24987717_259115,22:42:00,22:42:00,1474705,14, +24987717_259115,22:44:00,22:45:00,1475214,15, +24987717_259115,22:49:00,22:50:00,1474703,16, +24987717_259115,22:52:00,22:52:00,1475180,17, +24987717_259115,22:54:00,22:55:00,1475181,18, +24987717_259115,23:00:00,23:05:00,1474861,19, +24987717_259115,23:09:00,23:10:00,1474903,20, +24987717_259115,23:15:00,23:15:00,1474904,21, +24987717_259115,23:19:00,23:19:00,1474905,22, +24987717_259115,23:24:00,23:24:00,1474906,23, +24987717_259115,23:28:00,23:29:00,1474907,24, +24987717_259115,23:33:00,23:33:00,1474908,25, +24987718_259116,21:27:00,21:27:00,1475097,0, +24987718_259116,21:32:00,21:33:00,1475096,1, +24987718_259116,21:35:00,21:35:00,1475095,2, +24987718_259116,21:43:00,21:44:00,1475094,3, +24987718_259116,21:47:00,21:47:00,1475093,4, +24987718_259116,21:50:00,21:51:00,1475092,5, +24987718_259116,21:56:00,21:56:00,1475098,6, +24987718_259116,22:01:00,22:01:00,1475215,7, +24987718_259116,22:07:00,22:07:00,1475216,8, +24987718_259116,22:12:00,22:12:00,1475088,9, +24987718_259116,22:17:00,22:27:00,1475210,10, +24987718_259116,22:33:00,22:34:00,1475211,11, +24987718_259116,22:38:00,22:38:00,1475212,12, +24987718_259116,22:40:00,22:41:00,1475213,13, +24987718_259116,22:43:00,22:44:00,1474705,14, +24987718_259116,22:46:00,22:47:00,1475214,15, +24987718_259116,22:51:00,22:52:00,1474703,16, +24987718_259116,22:54:00,22:54:00,1475180,17, +24987718_259116,22:56:00,22:57:00,1475181,18, +24987718_259116,23:02:00,23:06:00,1474861,19, +24987718_259116,23:10:00,23:11:00,1474903,20, +24987718_259116,23:16:00,23:16:00,1474904,21, +24987718_259116,23:19:00,23:20:00,1474905,22, +24987718_259116,23:25:00,23:25:00,1474906,23, +24987718_259116,23:29:00,23:29:00,1474907,24, +24987718_259116,23:34:00,23:34:00,1474908,25, +24987719_259117,00:55:00,00:55:00,1475245,0, +24987719_259117,01:01:00,01:01:00,1874619,1, +24987719_259117,01:04:00,01:04:00,1874618,2, +24987719_259117,01:09:00,01:09:00,1874617,3, +24987719_259117,01:18:00,01:18:00,1475246,4, +24987721_259119,04:20:00,04:20:00,1475249,0, +24987721_259119,04:41:00,04:41:00,1475246,1, +24987721_259119,04:47:00,04:47:00,1874617,2, +24987721_259119,04:52:00,04:52:00,1874618,3, +24987721_259119,04:55:00,04:55:00,1874619,4, +24987721_259119,05:04:00,05:04:00,1475245,5, +24987722_259120,04:20:00,04:20:00,1475249,0, +24987722_259120,04:41:00,04:41:00,1475246,1, +24987724_259122,07:01:00,07:01:00,1475249,0, +24987724_259122,07:22:00,07:22:00,1475246,1, +24987724_259122,07:28:00,07:28:00,1874617,2, +24987724_259122,07:33:00,07:33:00,1874618,3, +24987724_259122,07:36:00,07:36:00,1874619,4, +24987724_259122,07:45:00,07:45:00,1475245,5, +24987725_259123,07:05:00,07:05:00,1475249,0, +24987725_259123,07:26:00,07:26:00,1475246,1, +24987727_259125,07:29:00,07:29:00,1475249,0, +24987727_259125,07:50:00,07:50:00,1475246,1, +24987727_259125,07:56:00,07:56:00,1874617,2, +24987727_259125,08:01:00,08:01:00,1874618,3, +24987727_259125,08:04:00,08:04:00,1874619,4, +24987727_259125,08:13:00,08:13:00,1475245,5, +24987728_259126,07:30:00,07:30:00,1475249,0, +24987728_259126,07:51:00,07:51:00,1475246,1, +24987730_259128,09:07:00,09:07:00,1475249,0, +24987730_259128,09:28:00,09:28:00,1475246,1, +24987730_259128,09:34:00,09:34:00,1874617,2, +24987730_259128,09:39:00,09:39:00,1874618,3, +24987730_259128,09:42:00,09:42:00,1874619,4, +24987730_259128,09:51:00,09:51:00,1475245,5, +24987731_259129,09:13:00,09:13:00,1475249,0, +24987731_259129,09:34:00,09:34:00,1475246,1, +24987733_259131,12:32:00,12:32:00,1475249,0, +24987733_259131,12:53:00,12:53:00,1475246,1, +24987733_259131,12:59:00,12:59:00,1874617,2, +24987733_259131,13:04:00,13:04:00,1874618,3, +24987733_259131,13:07:00,13:07:00,1874619,4, +24987733_259131,13:16:00,13:16:00,1475245,5, +24987734_259132,12:53:00,12:53:00,1475249,0, +24987734_259132,13:14:00,13:14:00,1475246,1, +24987736_259134,14:40:00,14:40:00,1475249,0, +24987736_259134,15:01:00,15:01:00,1475246,1, +24987736_259134,15:07:00,15:07:00,1874617,2, +24987736_259134,15:12:00,15:12:00,1874618,3, +24987736_259134,15:15:00,15:15:00,1874619,4, +24987736_259134,15:24:00,15:24:00,1475245,5, +24987737_259135,14:37:00,14:37:00,1475249,0, +24987737_259135,14:58:00,14:58:00,1475246,1, +24987739_259137,16:19:00,16:19:00,1475249,0, +24987739_259137,16:40:00,16:40:00,1475246,1, +24987739_259137,16:46:00,16:46:00,1874617,2, +24987739_259137,16:51:00,16:51:00,1874618,3, +24987739_259137,16:54:00,16:54:00,1874619,4, +24987739_259137,17:03:00,17:03:00,1475245,5, +24987740_259138,16:20:00,16:20:00,1475249,0, +24987740_259138,16:41:00,16:41:00,1475246,1, +24987743_259141,18:07:00,18:07:00,1475249,0, +24987743_259141,18:28:00,18:28:00,1475246,1, +24987743_259141,18:34:00,18:34:00,1874617,2, +24987743_259141,18:39:00,18:39:00,1874618,3, +24987743_259141,18:42:00,18:42:00,1874619,4, +24987743_259141,18:51:00,18:51:00,1475245,5, +24987744_259142,18:34:00,18:34:00,1475249,0, +24987744_259142,18:55:00,18:55:00,1475246,1, +24987744_259142,19:01:00,19:01:00,1874617,2, +24987744_259142,19:06:00,19:06:00,1874618,3, +24987744_259142,19:09:00,19:09:00,1874619,4, +24987744_259142,19:18:00,19:18:00,1475245,5, +24987745_259143,18:07:00,18:07:00,1475249,0, +24987745_259143,18:28:00,18:28:00,1475246,1, +24987747_259145,21:06:00,21:06:00,1475249,0, +24987747_259145,21:27:00,21:27:00,1475246,1, +24987747_259145,21:33:00,21:33:00,1874617,2, +24987747_259145,21:38:00,21:38:00,1874618,3, +24987747_259145,21:41:00,21:41:00,1874619,4, +24987747_259145,21:50:00,21:50:00,1475245,5, +24987748_259146,20:57:00,20:57:00,1475249,0, +24987748_259146,21:18:00,21:18:00,1475246,1, +24987751_259149,00:10:00,00:10:00,1475249,0, +24987751_259149,00:31:00,00:31:00,1475246,1, +24987751_259149,00:37:00,00:37:00,1874617,2, +24987751_259149,00:42:00,00:42:00,1874618,3, +24987751_259149,00:45:00,00:45:00,1874619,4, +24987751_259149,00:54:00,00:54:00,1475245,5, +24987752_259150,00:03:00,00:03:00,1475249,0, +24987752_259150,00:24:00,00:24:00,1475246,1, +24987754_259152,05:04:00,05:04:00,1475245,0, +24987754_259152,05:10:00,05:10:00,1874619,1, +24987754_259152,05:13:00,05:13:00,1874618,2, +24987754_259152,05:18:00,05:18:00,1874617,3, +24987754_259152,05:27:00,05:27:00,1475246,4, +24987754_259152,05:50:00,05:50:00,1475249,5, +24987755_259153,05:27:00,05:27:00,1475246,0, +24987755_259153,05:50:00,05:50:00,1475249,1, +24987757_259155,08:18:00,08:18:00,1475245,0, +24987757_259155,08:24:00,08:24:00,1874619,1, +24987757_259155,08:27:00,08:27:00,1874618,2, +24987757_259155,08:32:00,08:32:00,1874617,3, +24987757_259155,08:41:00,08:41:00,1475246,4, +24987757_259155,09:04:00,09:04:00,1475249,5, +24987758_259156,08:40:00,08:40:00,1475246,0, +24987758_259156,09:05:00,09:05:00,1475249,1, +24987760_259158,11:12:00,11:12:00,1475245,0, +24987760_259158,11:18:00,11:18:00,1874619,1, +24987760_259158,11:21:00,11:21:00,1874618,2, +24987760_259158,11:26:00,11:26:00,1874617,3, +24987760_259158,11:35:00,11:35:00,1475246,4, +24987760_259158,11:58:00,11:58:00,1475249,5, +24987761_259159,11:36:00,11:36:00,1475246,0, +24987761_259159,11:59:00,11:59:00,1475249,1, +24987763_259161,13:53:00,13:53:00,1475245,0, +24987763_259161,13:59:00,13:59:00,1874619,1, +24987763_259161,14:02:00,14:02:00,1874618,2, +24987763_259161,14:07:00,14:07:00,1874617,3, +24987763_259161,14:16:00,14:16:00,1475246,4, +24987763_259161,14:39:00,14:39:00,1475249,5, +24987764_259162,14:11:00,14:11:00,1475246,0, +24987764_259162,14:34:00,14:34:00,1475249,1, +24987766_259164,15:30:00,15:30:00,1475245,0, +24987766_259164,15:36:00,15:36:00,1874619,1, +24987766_259164,15:39:00,15:39:00,1874618,2, +24987766_259164,15:44:00,15:44:00,1874617,3, +24987766_259164,15:53:00,15:53:00,1475246,4, +24987766_259164,16:16:00,16:16:00,1475249,5, +24987767_259165,15:51:00,15:51:00,1475246,0, +24987767_259165,16:14:00,16:14:00,1475249,1, +24987769_259167,16:44:00,16:44:00,1475245,0, +24987769_259167,16:50:00,16:50:00,1874619,1, +24987769_259167,16:53:00,16:53:00,1874618,2, +24987769_259167,16:58:00,16:58:00,1874617,3, +24987769_259167,17:07:00,17:07:00,1475246,4, +24987769_259167,17:30:00,17:30:00,1475249,5, +24987770_259168,17:08:00,17:08:00,1475246,0, +24987770_259168,17:31:00,17:31:00,1475249,1, +24987772_259170,17:38:00,17:38:00,1475245,0, +24987772_259170,17:44:00,17:44:00,1874619,1, +24987772_259170,17:47:00,17:47:00,1874618,2, +24987772_259170,17:52:00,17:52:00,1874617,3, +24987772_259170,18:01:00,18:01:00,1475246,4, +24987772_259170,18:24:00,18:24:00,1475249,5, +24987773_259171,17:41:00,17:41:00,1475246,0, +24987773_259171,18:04:00,18:04:00,1475249,1, +24987775_259173,20:15:00,20:15:00,1475245,0, +24987775_259173,20:21:00,20:21:00,1874619,1, +24987775_259173,20:24:00,20:24:00,1874618,2, +24987775_259173,20:29:00,20:29:00,1874617,3, +24987775_259173,20:38:00,20:38:00,1475246,4, +24987775_259173,21:01:00,21:01:00,1475249,5, +24987776_259174,20:31:00,20:31:00,1475246,0, +24987776_259174,20:54:00,20:54:00,1475249,1, +24987778_259176,21:51:00,21:51:00,1475245,0, +24987778_259176,21:57:00,21:57:00,1874619,1, +24987778_259176,22:00:00,22:00:00,1874618,2, +24987778_259176,22:05:00,22:05:00,1874617,3, +24987778_259176,22:14:00,22:14:00,1475246,4, +24987778_259176,22:37:00,22:37:00,1475249,5, +24987779_259177,22:03:00,22:03:00,1475246,0, +24987779_259177,22:26:00,22:26:00,1475249,1, +24987782_259180,01:18:00,01:18:00,1475246,0, +24987782_259180,01:41:00,01:41:00,1475249,1, +24987783_259181,01:20:00,01:20:00,1475246,0, +24987783_259181,01:34:00,01:34:00,1475249,1, +24987784_259182,15:24:00,15:24:00,1657890,0, +24987784_259182,15:34:00,15:36:00,1475250,1, +24987784_259182,16:26:00,16:27:00,1536330,2, +24987784_259182,18:27:00,18:28:00,1536288,3, +24987784_259182,19:00:00,19:01:00,1474951,4, +24987784_259182,19:24:00,19:25:00,1474958,5, +24987784_259182,19:40:00,19:42:00,1474843,6, +24987784_259182,20:15:00,20:15:00,1474640,7, diff --git a/src/rail_network_graph/assets/data/gtfs_data/stops.txt b/src/rail_network_graph/assets/data/gtfs_data/stops.txt new file mode 100644 index 0000000..f056c93 --- /dev/null +++ b/src/rail_network_graph/assets/data/gtfs_data/stops.txt @@ -0,0 +1,966 @@ +stop_id,stop_code,stop_name,stop_lat,stop_lon,stop_url,location_type,parent_station,platform_code +1473373,9392,Adršpach,50.615412,16.124829,http://kd.kiedyprzyjedzie.pl/9392,1,, +1536273,,Adršpach,50.615412,16.124829,,0,1473373, +1413064,9429,Arnsdorf (b Dresden),51.093017,13.981679,http://kd.kiedyprzyjedzie.pl/9429,1,, +1474632,,Arnsdorf (b Dresden),51.093017,13.981679,,0,1413064, +1413065,6021,Bardo Przyłęk,50.509532,16.758018,http://kd.kiedyprzyjedzie.pl/6021,1,, +1474849,,Bardo Przyłęk,50.509532,16.758018,,0,1413065,I +1475207,,Bardo Przyłęk,50.509532,16.758018,,0,1413065,II +1413066,6022,Bardo Śląskie,50.504857,16.733784,http://kd.kiedyprzyjedzie.pl/6022,1,, +1474848,,Bardo Śląskie,50.504857,16.733784,,0,1413066,II +1474644,,Bardo Śląskie,50.504857,16.733784,,0,1413066,I +1413067,6023,Bartnica,50.641933,16.407955,http://kd.kiedyprzyjedzie.pl/6023,1,, +1474765,,Bartnica,50.641933,16.407955,,0,1413067,II +1474813,,Bartnica,50.641933,16.407955,,0,1413067,I +1413068,6025,Batowice Lubańskie,51.090889,15.155701,http://kd.kiedyprzyjedzie.pl/6025,1,, +1474942,,Batowice Lubańskie,51.090889,15.155701,,0,1413068,I +1413069,9430,Bautzen,51.173106,14.428793,http://kd.kiedyprzyjedzie.pl/9430,1,, +1474626,,Bautzen,51.173106,14.428793,,0,1413069, +1413071,9426,Berlin-Lichtenberg,52.509792,13.49614,http://kd.kiedyprzyjedzie.pl/9426,1,, +1475117,,Berlin-Lichtenberg,52.509792,13.49614,,0,1413071, +1413070,9425,Berlin Ostkreuz,52.503167,13.469571,http://kd.kiedyprzyjedzie.pl/9425,1,, +1475116,,Berlin Ostkreuz,52.503167,13.469571,,0,1413070, +1413072,9381,Bernartice u Trutnova,50.647077,15.958691,http://kd.kiedyprzyjedzie.pl/9381,1,, +1474828,,Bernartice u Trutnova,50.647077,15.958691,,0,1413072, +1413073,6029,Biała Górna,51.297944,15.928636,http://kd.kiedyprzyjedzie.pl/6029,1,, +1474840,,Biała Górna,51.297944,15.928636,,0,1413073,I +1475063,,Biała Górna,51.297944,15.928636,,0,1413073, +1413074,6031,Biały Kościół,50.728378,17.030043,http://kd.kiedyprzyjedzie.pl/6031,1,, +1474853,,Biały Kościół,50.728378,17.030043,,0,1413074,II +1703011,,Biały Kościół,50.728378,17.030043,,0,1413074,I +1413075,6032,Bielany Wrocławskie,51.036155,16.975787,http://kd.kiedyprzyjedzie.pl/6032,1,, +1474698,,Bielany Wrocławskie,51.036155,16.975787,,0,1413075,II +1474654,,Bielany Wrocławskie,51.036155,16.975787,,0,1413075,I +1413076,7585,Bielawa Centralna,50.692802,16.620761,http://kd.kiedyprzyjedzie.pl/7585,1,, +1474686,,Bielawa Centralna,50.692802,16.620761,,0,1413076,I +1413077,7580,Bielawa Zachodnia,50.685838,16.606755,http://kd.kiedyprzyjedzie.pl/7580,1,, +1474687,,Bielawa Zachodnia,50.685838,16.606755,,0,1413077,II +1413078,6035,Bierkowice,50.475534,16.605059,http://kd.kiedyprzyjedzie.pl/6035,1,, +1474773,,Bierkowice,50.475534,16.605059,,0,1413078,I +1413079,9431,Bischofswerda,51.125443,14.185871,http://kd.kiedyprzyjedzie.pl/9431,1,, +1474629,,Bischofswerda,51.125443,14.185871,,0,1413079, +1413080,6040,Błażkowa,50.744254,15.990104,http://kd.kiedyprzyjedzie.pl/6040,1,, +1474831,,Błażkowa,50.744254,15.990104,,0,1413080,I +1413081,6044,Boguszów-Gorce,50.750404,16.201639,http://kd.kiedyprzyjedzie.pl/6044,1,, +1474759,,Boguszów-Gorce,50.750404,16.201639,,0,1413081,II +1474820,,Boguszów-Gorce,50.750404,16.201639,,0,1413081,I +1413082,6620,Boguszów-Gorce Dzikowiec,50.727608,16.21765,http://kd.kiedyprzyjedzie.pl/6620,1,, +1536269,,Boguszów-Gorce Dzikowiec,50.727608,16.21765,,0,1413082,I +1413083,6045,Boguszów-Gorce Wschód,50.747926,16.221761,http://kd.kiedyprzyjedzie.pl/6045,1,, +1475153,,Boguszów-Gorce Wschód,50.747926,16.221761,,0,1413083,II +1474916,,Boguszów-Gorce Wschód,50.747926,16.221761,,0,1413083,I +1536270,,Boguszów-Gorce Wschód,50.747926,16.221761,,0,1413083,III +1413084,6046,Boguszów-Gorce Zachód,50.76236,16.167264,http://kd.kiedyprzyjedzie.pl/6046,1,, +1474917,,Boguszów-Gorce Zachód,50.76236,16.167264,,0,1413084,II +1475152,,Boguszów-Gorce Zachód,50.76236,16.167264,,0,1413084,I +1413085,7044,Bojanowo,51.700677,16.744001,http://kd.kiedyprzyjedzie.pl/7044,1,, +1475246,,Bojanowo,51.700677,16.744001,,0,1413085, +1413086,6047,Bolesławice Świdnickie,50.887692,16.464624,http://kd.kiedyprzyjedzie.pl/6047,1,, +1474690,,Bolesławice Świdnickie,50.887692,16.464624,,0,1413086,I +1474696,,Bolesławice Świdnickie,50.887692,16.464624,,0,1413086,II +1413087,10,Bolesławiec,51.266092,15.569574,http://kd.kiedyprzyjedzie.pl/10,1,, +1474945,,Bolesławiec,51.266092,15.569574,,0,1413087,I +1475112,,Bolesławiec,51.266092,15.569574,,0,1413087,II +1609727,,Bolesławiec,51.266092,15.569574,,0,1413087, +1413088,6049,Boreczek,50.878928,17.024576,http://kd.kiedyprzyjedzie.pl/6049,1,, +1475195,,Boreczek,50.878928,17.024576,,0,1413088,II +1474855,,Boreczek,50.878928,17.024576,,0,1413088,I +1413089,6052,Borowa Oleśnicka,51.184119,17.276103,http://kd.kiedyprzyjedzie.pl/6052,1,, +1475086,,Borowa Oleśnicka,51.184119,17.276103,,0,1413089,II +1475211,,Borowa Oleśnicka,51.184119,17.276103,,0,1413089,I +1807626,6722,Borszyn Mały,51.673333,16.596007,http://kd.kiedyprzyjedzie.pl/6722,1,, +1874619,,Borszyn Mały,51.673333,16.596007,,0,1807626, +1807627,6721,Borszyn Wielki,51.671367,16.636284,http://kd.kiedyprzyjedzie.pl/6721,1,, +1874618,,Borszyn Wielki,51.671367,16.636284,,0,1807627, +1413090,9432,Breitendorf,51.138586,14.622877,http://kd.kiedyprzyjedzie.pl/9432,1,, +1474623,,Breitendorf,51.138586,14.622877,,0,1413090, +1413091,6549,Brochocin Trzebnicki,51.276035,17.094187,http://kd.kiedyprzyjedzie.pl/6549,1,, +1474712,,Brochocin Trzebnicki,51.276035,17.094187,,0,1413091,I +1413092,12,Brzeg Dolny,51.266894,16.725,http://kd.kiedyprzyjedzie.pl/12,1,, +1474786,,Brzeg Dolny,51.266894,16.725,,0,1413092,II +1413093,6058,Brzeg Głogowski,51.690987,15.918436,http://kd.kiedyprzyjedzie.pl/6058,1,, +1475242,,Brzeg Głogowski,51.690987,15.918436,,0,1413093,II +1475079,,Brzeg Głogowski,51.690987,15.918436,,0,1413093,I +1413094,6060,Brzezinka Średzka,51.219716,16.836806,http://kd.kiedyprzyjedzie.pl/6060,1,, +1474789,,Brzezinka Średzka,51.219716,16.836806,,0,1413094,I +1475067,,Brzezinka Średzka,51.219716,16.836806,,0,1413094,II +1413095,6064,Bukowice Trzebnickie,51.399495,17.368564,http://kd.kiedyprzyjedzie.pl/6064,1,, +1475098,,Bukowice Trzebnickie,51.399495,17.368564,,0,1413095,II +1413096,6614,Burkatów,50.793493,16.473334,http://kd.kiedyprzyjedzie.pl/6614,1,, +1474797,,Burkatów,50.793493,16.473334,,0,1413096,I +1413097,6615,Bystrzyca Górna,50.78127,16.456173,http://kd.kiedyprzyjedzie.pl/6615,1,, +1474798,,Bystrzyca Górna,50.78127,16.456173,,0,1413097,I +1413098,6070,Bystrzyca Kłodzka,50.296883,16.654959,http://kd.kiedyprzyjedzie.pl/6070,1,, +1474880,,Bystrzyca Kłodzka,50.296883,16.654959,,0,1413098,I +1413099,6069,Bystrzyca Kłodzka Przedmieście,50.285645,16.647031,http://kd.kiedyprzyjedzie.pl/6069,1,, +1474884,,Bystrzyca Kłodzka Przedmieście,50.285645,16.647031,,0,1413099,I +1474879,,Bystrzyca Kłodzka Przedmieście,50.285645,16.647031,,0,1413099,II +1413100,7069,Bytom Odrzański,51.726609,15.8206,http://kd.kiedyprzyjedzie.pl/7069,1,, +1475057,,Bytom Odrzański,51.726609,15.8206,,0,1413100,I +1413101,6071,Chełmek Wołowski,51.456047,16.35949,http://kd.kiedyprzyjedzie.pl/6071,1,, +1475186,,Chełmek Wołowski,51.456047,16.35949,,0,1413101,II +1475074,,Chełmek Wołowski,51.456047,16.35949,,0,1413101,I +1413102,6074,Chocianów,51.41655,15.91198,http://kd.kiedyprzyjedzie.pl/6074,1,, +1474842,,Chocianów,51.41655,15.91198,,0,1413102,I +1413103,902,Chojnów,51.277673,15.937479,http://kd.kiedyprzyjedzie.pl/902,1,, +1474946,,Chojnów,51.277673,15.937479,,0,1413103,I +1474839,,Chojnów,51.277673,15.937479,,0,1413103,II +1475062,,Chojnów,51.277673,15.937479,,0,1413103, +1413104,6076,Chróstnik,51.355982,16.181035,http://kd.kiedyprzyjedzie.pl/6076,1,, +1474959,,Chróstnik,51.355982,16.181035,,0,1413104,I +1475016,,Chróstnik,51.355982,16.181035,,0,1413104, +1413105,6573,Chrząstawa Mała,51.07349,17.276143,http://kd.kiedyprzyjedzie.pl/6573,1,, +1475176,,Chrząstawa Mała,51.07349,17.276143,,0,1413105,I +1413106,6082,Ciechanowice,50.865413,15.979858,http://kd.kiedyprzyjedzie.pl/6082,1,, +1475155,,Ciechanowice,50.865413,15.979858,,0,1413106,II +1474919,,Ciechanowice,50.865413,15.979858,,0,1413106,I +1413108,6083,Cieśle,51.226448,17.470665,http://kd.kiedyprzyjedzie.pl/6083,1,, +1474981,,Cieśle,51.226448,17.470665,,0,1413108, +1413107,7088,Cieszków,51.631359,17.352567,http://kd.kiedyprzyjedzie.pl/7088,1,, +1475095,,Cieszków,51.631359,17.352567,,0,1413107,I +1413109,9424,Cottbus Hbf,51.751296,14.322298,http://kd.kiedyprzyjedzie.pl/9424,1,, +1475115,,Cottbus Hbf,51.751296,14.322298,,0,1413109, +1413110,6086,Czerna,51.702254,15.88466,http://kd.kiedyprzyjedzie.pl/6086,1,, +1475241,,Czerna,51.702254,15.88466,,0,1413110,I +1475080,,Czerna,51.702254,15.88466,,0,1413110,II +1413111,6087,Czerna Mała,51.229974,16.803546,http://kd.kiedyprzyjedzie.pl/6087,1,, +1475068,,Czerna Mała,51.229974,16.803546,,0,1413111,I +1474788,,Czerna Mała,51.229974,16.803546,,0,1413111,II +1413112,6089,Czernica Wrocławska,51.049672,17.235816,http://kd.kiedyprzyjedzie.pl/6089,1,, +1474906,,Czernica Wrocławska,51.049672,17.235816,,0,1413112,I +1413113,9433,Demitz-Thumitz,51.142193,14.239556,http://kd.kiedyprzyjedzie.pl/9433,1,, +1474628,,Demitz-Thumitz,51.142193,14.239556,,0,1413113, +1413114,9316,Desná,50.753505,15.308954,http://kd.kiedyprzyjedzie.pl/9316,1,, +1474606,,Desná,50.753505,15.308954,,0,1413114, +1413115,9313,Desná-Pustinská,50.764235,15.335626,http://kd.kiedyprzyjedzie.pl/9313,1,, +1474609,,Desná-Pustinská,50.764235,15.335626,,0,1413115, +1413117,6097,Długołęka,51.178462,17.194448,http://kd.kiedyprzyjedzie.pl/6097,1,, +1475212,,Długołęka,51.178462,17.194448,,0,1413117,I +1475085,,Długołęka,51.178462,17.194448,,0,1413117,II +1413118,6099,Długopole-Zdrój,50.23843,16.637997,http://kd.kiedyprzyjedzie.pl/6099,1,, +1474878,,Długopole-Zdrój,50.23843,16.637997,,0,1413118,I +1413119,6102,Dobroszyce,51.270505,17.363797,http://kd.kiedyprzyjedzie.pl/6102,1,, +1475089,,Dobroszyce,51.270505,17.363797,,0,1413119,II +1475216,,Dobroszyce,51.270505,17.363797,,0,1413119,I +1413120,6104,Dobrzykowice Wrocławskie,51.08755,17.180029,http://kd.kiedyprzyjedzie.pl/6104,1,, +1475173,,Dobrzykowice Wrocławskie,51.08755,17.180029,,0,1413120,I +1475178,,Dobrzykowice Wrocławskie,51.08755,17.180029,,0,1413120,II +1413121,9314,Dolní Polubný,50.760536,15.323138,http://kd.kiedyprzyjedzie.pl/9314,1,, +1474608,,Dolní Polubný,50.760536,15.323138,,0,1413121, +1413122,6106,Domasław,51.010048,16.952937,http://kd.kiedyprzyjedzie.pl/6106,1,, +1474662,,Domasław,51.010048,16.952937,,0,1413122,I +1413123,6107,Domaszków,50.213153,16.655238,http://kd.kiedyprzyjedzie.pl/6107,1,, +1474877,,Domaszków,50.213153,16.655238,,0,1413123,II +1474887,,Domaszków,50.213153,16.655238,,0,1413123,I +1413124,9420,Dresden Hbf,51.040374,13.731484,http://kd.kiedyprzyjedzie.pl/9420,1,, +1474639,,Dresden Hbf,51.040374,13.731484,,0,1413124, +1413125,9434,Dresden Industriegelände,51.087221,13.762575,http://kd.kiedyprzyjedzie.pl/9434,1,, +1474636,,Dresden Industriegelände,51.087221,13.762575,,0,1413125, +1413127,9436,Dresden-Klotzsche,51.114426,13.788882,http://kd.kiedyprzyjedzie.pl/9436,1,, +1474635,,Dresden-Klotzsche,51.114426,13.788882,,0,1413127, +1413126,9435,Dresden Mitte,51.056089,13.724208,http://kd.kiedyprzyjedzie.pl/9435,1,, +1474638,,Dresden Mitte,51.056089,13.724208,,0,1413126, +1413128,9437,Dresden-Neustadt,51.065893,13.74058,http://kd.kiedyprzyjedzie.pl/9437,1,, +1474637,,Dresden-Neustadt,51.065893,13.74058,,0,1413128, +1413129,35,Duszniki-Zdrój,50.409034,16.38581,http://kd.kiedyprzyjedzie.pl/35,1,, +1474649,,Duszniki-Zdrój,50.409034,16.38581,,0,1413129,I +1874612,,Duszniki-Zdrój,50.409034,16.38581,,0,1413129,II +1413130,36,Dzierżoniów Śląski,50.724358,16.640728,http://kd.kiedyprzyjedzie.pl/36,1,, +1474685,,Dzierżoniów Śląski,50.724358,16.640728,,0,1413130,II +1475231,,Dzierżoniów Śląski,50.724358,16.640728,,0,1413130,I +1413131,9423,Forst (Lausitz),51.738914,14.63704,http://kd.kiedyprzyjedzie.pl/9423,1,, +1475038,,Forst (Lausitz),51.738914,14.63704,,0,1413131, +1413132,6113,Garbce,51.512559,16.890254,http://kd.kiedyprzyjedzie.pl/6113,1,, +1475198,,Garbce,51.512559,16.890254,,0,1413132,II +1474872,,Garbce,51.512559,16.890254,,0,1413132,I +1413133,9438,Gersdorf (b Görlitz),51.125147,14.854707,http://kd.kiedyprzyjedzie.pl/9438,1,, +1474619,,Gersdorf (b Görlitz),51.125147,14.854707,,0,1413133, +1413134,6115,Gierałtów,51.19205,15.299816,http://kd.kiedyprzyjedzie.pl/6115,1,, +1475138,,Gierałtów,51.19205,15.299816,,0,1413134,I +1413135,6116,Gierałtów Wykroty,51.216804,15.284533,http://kd.kiedyprzyjedzie.pl/6116,1,, +1475139,,Gierałtów Wykroty,51.216804,15.284533,,0,1413135,II +1536315,,Gierałtów Wykroty,51.216804,15.284533,,0,1413135,I +1413136,44,Głogów,51.669632,16.079897,http://kd.kiedyprzyjedzie.pl/44,1,, +1474951,,Głogów,51.669632,16.079897,,0,1413136,I +1475056,,Głogów,51.669632,16.079897,,0,1413136,II +1475082,,Głogów,51.669632,16.079897,,0,1413136,IV +1413137,6118,Głogów Huta,51.675298,15.992456,http://kd.kiedyprzyjedzie.pl/6118,1,, +1475077,,Głogów Huta,51.675298,15.992456,,0,1413137,I +1475244,,Głogów Huta,51.675298,15.992456,,0,1413137,II +1413138,6532,Głogów Wróblin,51.68658,15.954603,http://kd.kiedyprzyjedzie.pl/6532,1,, +1475243,,Głogów Wróblin,51.68658,15.954603,,0,1413138,II +1475078,,Głogów Wróblin,51.68658,15.954603,,0,1413138,I +1413139,6125,Głuszyca,50.687916,16.353927,http://kd.kiedyprzyjedzie.pl/6125,1,, +1474815,,Głuszyca,50.687916,16.353927,,0,1413139,I +1474763,,Głuszyca,50.687916,16.353927,,0,1413139,II +1413140,6126,Głuszyca Górna,50.672932,16.371589,http://kd.kiedyprzyjedzie.pl/6126,1,, +1474814,,Głuszyca Górna,50.672932,16.371589,,0,1413140,II +1474764,,Głuszyca Górna,50.672932,16.371589,,0,1413140,I +1413141,6128,Goczałków,51.008429,16.325327,http://kd.kiedyprzyjedzie.pl/6128,1,, +1474717,,Goczałków,51.008429,16.325327,,0,1413141,I +1413147,6644,Góra Śląska,51.667503,16.535373,http://kd.kiedyprzyjedzie.pl/6644,1,, +1475245,,Góra Śląska,51.667503,16.535373,,0,1413147, +1413142,9427,Görlitz,51.146841,14.97833,http://kd.kiedyprzyjedzie.pl/9427,1,, +1474617,,Görlitz,51.146841,14.97833,,0,1413142, +1413143,9439,Görlitz-Rauschwalde,51.14914,14.936567,http://kd.kiedyprzyjedzie.pl/9439,1,, +1474618,,Görlitz-Rauschwalde,51.14914,14.936567,,0,1413143, +1413144,6131,Gorzanów,50.354398,16.640915,http://kd.kiedyprzyjedzie.pl/6131,1,, +1474881,,Gorzanów,50.354398,16.640915,,0,1413144,I +1657891,,Gorzanów,50.354398,16.640915,,0,1413144,II +1413145,6132,Gorzelin,51.328511,16.18097,http://kd.kiedyprzyjedzie.pl/6132,1,, +1474960,,Gorzelin,51.328511,16.18097,,0,1413145,I +1475017,,Gorzelin,51.328511,16.18097,,0,1413145, +1413146,6133,Gorzuchów Kłodzki,50.48973,16.571795,http://kd.kiedyprzyjedzie.pl/6133,1,, +1474772,,Gorzuchów Kłodzki,50.48973,16.571795,,0,1413146,I +1413148,6138,Górzyniec,50.860331,15.567141,http://kd.kiedyprzyjedzie.pl/6138,1,, +1475156,,Górzyniec,50.860331,15.567141,,0,1413148,I +1413149,6140,Grabowno Wielkie,51.34322,17.403478,http://kd.kiedyprzyjedzie.pl/6140,1,, +1475215,,Grabowno Wielkie,51.34322,17.403478,,0,1413149,II +1475090,,Grabowno Wielkie,51.34322,17.403478,,0,1413149,I +1413150,6142,Grębocice,51.593359,16.185036,http://kd.kiedyprzyjedzie.pl/6142,1,, +1474952,,Grębocice,51.593359,16.185036,,0,1413150,II +1474968,,Grębocice,51.593359,16.185036,,0,1413150,I +1413151,9440,Großharthau,51.10218,14.087659,http://kd.kiedyprzyjedzie.pl/9440,1,, +1474631,,Großharthau,51.10218,14.087659,,0,1413151, +1413152,6147,Gryfów Śląski,51.03395,15.428814,http://kd.kiedyprzyjedzie.pl/6147,1,, +1474978,,Gryfów Śląski,51.03395,15.428814,,0,1413152,I +1474932,,Gryfów Śląski,51.03395,15.428814,,0,1413152,II +1413153,9310,Harrachov,50.771509,15.393176,http://kd.kiedyprzyjedzie.pl/9310,1,, +1474611,,Harrachov,50.771509,15.393176,,0,1413153, +1413154,6149,Henryków,50.663241,17.030029,http://kd.kiedyprzyjedzie.pl/6149,1,, +1474852,,Henryków,50.663241,17.030029,,0,1413154,II +1474860,,Henryków,50.663241,17.030029,,0,1413154,I +1413155,6150,Imbramowice,50.96337,16.578141,http://kd.kiedyprzyjedzie.pl/6150,1,, +1475163,,Imbramowice,50.96337,16.578141,,0,1413155,II +1475148,,Imbramowice,50.96337,16.578141,,0,1413155,I +1413156,6574,Iwiny,51.054668,17.068813,http://kd.kiedyprzyjedzie.pl/6574,1,, +1475191,,Iwiny,51.054668,17.068813,,0,1413156,I +1474859,,Iwiny,51.054668,17.068813,,0,1413156,II +1413161,9335,Jablonecké Paseky,50.731541,15.190401,http://kd.kiedyprzyjedzie.pl/9335,1,, +1474598,,Jablonecké Paseky,50.731541,15.190401,,0,1413161, +1413157,9338,Jablonec nad Nisou,50.720967,15.1608,http://kd.kiedyprzyjedzie.pl/9338,1,, +1474594,,Jablonec nad Nisou,50.720967,15.1608,,0,1413157, +1413158,9337,Jablonec nad Nisou centrum,50.720864,15.173825,http://kd.kiedyprzyjedzie.pl/9337,1,, +1474595,,Jablonec nad Nisou centrum,50.720864,15.173825,,0,1413158, +1413159,9339,Jablonec nad Nisou dolní n.,50.726366,15.149277,http://kd.kiedyprzyjedzie.pl/9339,1,, +1474593,,Jablonec nad Nisou dolní n.,50.726366,15.149277,,0,1413159, +1413160,9336,Jablonec nad Nisou zastávka,50.72041,15.185412,http://kd.kiedyprzyjedzie.pl/9336,1,, +1474596,,Jablonec nad Nisou zastávka,50.72041,15.185412,,0,1413160, +1413162,6155,Janowice Wielkie,50.878507,15.918763,http://kd.kiedyprzyjedzie.pl/6155,1,, +1474756,,Janowice Wielkie,50.878507,15.918763,,0,1413162,I +1474822,,Janowice Wielkie,50.878507,15.918763,,0,1413162,II +1413163,6160,Jaśkowice Legnickie,51.215107,16.31412,http://kd.kiedyprzyjedzie.pl/6160,1,, +1474999,,Jaśkowice Legnickie,51.215107,16.31412,,0,1413163,I +1475000,,Jaśkowice Legnickie,51.215107,16.31412,,0,1413163,II +1413164,6161,Jawor,51.055049,16.198447,http://kd.kiedyprzyjedzie.pl/6161,1,, +1475023,,Jawor,51.055049,16.198447,,0,1413164,I +1474715,,Jawor,51.055049,16.198447,,0,1413164,III +1413165,61,Jaworzyna Śląska,50.912468,16.428854,http://kd.kiedyprzyjedzie.pl/61,1,, +1474714,,Jaworzyna Śląska,50.912468,16.428854,,0,1413165,III +1474720,,Jaworzyna Śląska,50.912468,16.428854,,0,1413165,I +1474691,,Jaworzyna Śląska,50.912468,16.428854,,0,1413165,II +1413166,62,Jedlina-Zdrój,50.711543,16.343018,http://kd.kiedyprzyjedzie.pl/62,1,, +1474817,,Jedlina-Zdrój,50.711543,16.343018,,0,1413166,II +1474972,,Jedlina-Zdrój,50.711543,16.343018,,0,1413166, +1474762,,Jedlina-Zdrój,50.711543,16.343018,,0,1413166,I +1413167,6162,Jedlina-Zdrój Borowa,50.729916,16.322194,http://kd.kiedyprzyjedzie.pl/6162,1,, +1474761,,Jedlina-Zdrój Borowa,50.729916,16.322194,,0,1413167,I +1474778,,Jedlina-Zdrój Borowa,50.729916,16.322194,,0,1413167, +1413168,6619,Jedlina-Zdrój Centrum,50.721132,16.344604,http://kd.kiedyprzyjedzie.pl/6619,1,, +1474802,,Jedlina-Zdrój Centrum,50.721132,16.344604,,0,1413168,I +1413180,6175,Jędrzychowice,51.174129,15.017733,http://kd.kiedyprzyjedzie.pl/6175,1,, +1474985,,Jędrzychowice,51.174129,15.017733,,0,1413180,I +1475187,,Jędrzychowice,51.174129,15.017733,,0,1413180,II +1413170,6227,Jelcz-Laskowice,51.037013,17.345413,http://kd.kiedyprzyjedzie.pl/6227,1,, +1474908,,Jelcz-Laskowice,51.037013,17.345413,,0,1413170,III +1413169,6163,Jelcz Miłoszyce,51.044568,17.3054,http://kd.kiedyprzyjedzie.pl/6163,1,, +1474907,,Jelcz Miłoszyce,51.044568,17.3054,,0,1413169,I +1413171,63,Jelenia Góra,50.90259,15.75599,http://kd.kiedyprzyjedzie.pl/63,1,, +1474925,,Jelenia Góra,50.90259,15.75599,,0,1413171,I +1474755,,Jelenia Góra,50.90259,15.75599,,0,1413171,II +1474823,,Jelenia Góra,50.90259,15.75599,,0,1413171,III +1475162,,Jelenia Góra,50.90259,15.75599,,0,1413171,IV +1413172,6166,Jelenia Góra Cieplice,50.869743,15.685244,http://kd.kiedyprzyjedzie.pl/6166,1,, +1475119,,Jelenia Góra Cieplice,50.869743,15.685244,,0,1413172,I +1413173,6164,Jelenia Góra Orle,50.863984,15.657366,http://kd.kiedyprzyjedzie.pl/6164,1,, +1475158,,Jelenia Góra Orle,50.863984,15.657366,,0,1413173,I +1413174,7579,Jelenia Góra Przemysłowa,50.887669,15.705179,http://kd.kiedyprzyjedzie.pl/7579,1,, +1475159,,Jelenia Góra Przemysłowa,50.887669,15.705179,,0,1413174,I +1413175,6167,Jelenia Góra Sobieszów,50.851787,15.645408,http://kd.kiedyprzyjedzie.pl/6167,1,, +1475120,,Jelenia Góra Sobieszów,50.851787,15.645408,,0,1413175,I +1413176,7578,Jelenia Góra Zabobrze,50.9099,15.743105,http://kd.kiedyprzyjedzie.pl/7578,1,, +1475118,,Jelenia Góra Zabobrze,50.9099,15.743105,,0,1413176,I +1474926,,Jelenia Góra Zabobrze,50.9099,15.743105,,0,1413176,II +1413177,6168,Jelenia Góra Zachodnia,50.900598,15.719448,http://kd.kiedyprzyjedzie.pl/6168,1,, +1475160,,Jelenia Góra Zachodnia,50.900598,15.719448,,0,1413177,I +1695529,6170,Jemielna Oleśnicka,51.259984,17.584338,http://kd.kiedyprzyjedzie.pl/6170,1,, +1764609,,Jemielna Oleśnicka,51.259984,17.584338,,0,1695529, +1413178,6172,Jerzmanki,51.127743,15.060941,http://kd.kiedyprzyjedzie.pl/6172,1,, +1474944,,Jerzmanki,51.127743,15.060941,,0,1413178,II +1413179,6173,Jezierzany,51.235647,16.097664,http://kd.kiedyprzyjedzie.pl/6173,1,, +1474846,,Jezierzany,51.235647,16.097664,,0,1413179,II +1474837,,Jezierzany,51.235647,16.097664,,0,1413179,I +1475049,,Jezierzany,51.235647,16.097664,,0,1413179, +1413181,6618,Jugowice,50.732148,16.405378,http://kd.kiedyprzyjedzie.pl/6618,1,, +1474801,,Jugowice,50.732148,16.405378,,0,1413181,I +1413182,67,Kamieniec Ząbkowicki,50.536182,16.899563,http://kd.kiedyprzyjedzie.pl/67,1,, +1474643,,Kamieniec Ząbkowicki,50.536182,16.899563,,0,1413182,I +1474850,,Kamieniec Ząbkowicki,50.536182,16.899563,,0,1413182,II +1475233,,Kamieniec Ząbkowicki,50.536182,16.899563,,0,1413182,IV +1609796,,Kamieniec Ząbkowicki,50.536182,16.899563,,0,1413182,III +1413183,6182,Kamienna Góra,50.785557,16.023374,http://kd.kiedyprzyjedzie.pl/6182,1,, +1474832,,Kamienna Góra,50.785557,16.023374,,0,1413183,I +1413184,6187,Kąty Wrocławskie,51.037998,16.749979,http://kd.kiedyprzyjedzie.pl/6187,1,, +1474818,,Kąty Wrocławskie,51.037998,16.749979,,0,1413184,I +1474795,,Kąty Wrocławskie,51.037998,16.749979,,0,1413184,II +1413185,75,Kłodzko Główne,50.451326,16.656778,http://kd.kiedyprzyjedzie.pl/75,1,, +1474810,,Kłodzko Główne,50.451326,16.656778,,0,1413185,III +1474645,,Kłodzko Główne,50.451326,16.656778,,0,1413185,I +1474991,,Kłodzko Główne,50.451326,16.656778,,0,1413185, +1413186,6190,Kłodzko Książek,50.415861,16.639971,http://kd.kiedyprzyjedzie.pl/6190,1,, +1474749,,Kłodzko Książek,50.415861,16.639971,,0,1413186,I +1413187,6191,Kłodzko Miasto,50.435785,16.658613,http://kd.kiedyprzyjedzie.pl/6191,1,, +1474646,,Kłodzko Miasto,50.435785,16.658613,,0,1413187,I +1474747,,Kłodzko Miasto,50.435785,16.658613,,0,1413187, +1474774,,Kłodzko Miasto,50.435785,16.658613,,0,1413187,II +1413188,6192,Kłodzko Zagórze,50.415089,16.61464,http://kd.kiedyprzyjedzie.pl/6192,1,, +1474750,,Kłodzko Zagórze,50.415089,16.61464,,0,1413188,I +1413189,904,Kobierzyce,50.97427,16.926523,http://kd.kiedyprzyjedzie.pl/904,1,, +1474663,,Kobierzyce,50.97427,16.926523,,0,1413189,I +1413190,9311,Kořenov,50.770125,15.365721,http://kd.kiedyprzyjedzie.pl/9311,1,, +1474610,,Kořenov,50.770125,15.365721,,0,1413190, +1413191,9312,Kořenov zastávka,50.762375,15.346924,http://kd.kiedyprzyjedzie.pl/9312,1,, +1474615,,Kořenov zastávka,50.762375,15.346924,,0,1413191, +1413192,6196,Korzeńsko,51.544601,16.872235,http://kd.kiedyprzyjedzie.pl/6196,1,, +1475197,,Korzeńsko,51.544601,16.872235,,0,1413192,I +1474873,,Korzeńsko,51.544601,16.872235,,0,1413192,II +1413193,6208,Koźlice,51.451049,16.232957,http://kd.kiedyprzyjedzie.pl/6208,1,, +1474956,,Koźlice,51.451049,16.232957,,0,1413193,II +1474966,,Koźlice,51.451049,16.232957,,0,1413193,I +1413194,9380,Kralovec,50.67322,15.970622,http://kd.kiedyprzyjedzie.pl/9380,1,, +1474829,,Kralovec,50.67322,15.970622,,0,1413194, +1413195,9382,Křenov,50.638204,15.935689,http://kd.kiedyprzyjedzie.pl/9382,1,, +1474827,,Křenov,50.638204,15.935689,,0,1413195, +1413197,6215,Krośnice,51.471194,17.373897,http://kd.kiedyprzyjedzie.pl/6215,1,, +1475092,,Krośnice,51.471194,17.373897,,0,1413197,I +1413196,6214,Krosnowice Kłodzkie,50.392204,16.636833,http://kd.kiedyprzyjedzie.pl/6214,1,, +1474882,,Krosnowice Kłodzkie,50.392204,16.636833,,0,1413196,I +1474746,,Krosnowice Kłodzkie,50.392204,16.636833,,0,1413196, +1413198,88,Krotoszyn,51.701406,17.425939,http://kd.kiedyprzyjedzie.pl/88,1,, +1475097,,Krotoszyn,51.701406,17.425939,,0,1413198,II +1413199,6217,Krzepów,51.645204,16.132983,http://kd.kiedyprzyjedzie.pl/6217,1,, +1475076,,Krzepów,51.645204,16.132983,,0,1413199,I +1413200,6221,Krzyżowa,50.79392,16.530135,http://kd.kiedyprzyjedzie.pl/6221,1,, +1474695,,Krzyżowa,50.79392,16.530135,,0,1413200,I +1413201,6222,Księginice,51.242231,16.763806,http://kd.kiedyprzyjedzie.pl/6222,1,, +1474787,,Księginice,51.242231,16.763806,,0,1413201,II +1475069,,Księginice,51.242231,16.763806,,0,1413201,I +1413202,9441,Kubschütz,51.165612,14.509431,http://kd.kiedyprzyjedzie.pl/9441,1,, +1474625,,Kubschütz,51.165612,14.509431,,0,1413202, +1413203,91,Kudowa-Zdrój,50.429799,16.244104,http://kd.kiedyprzyjedzie.pl/91,1,, +1474650,,Kudowa-Zdrój,50.429799,16.244104,,0,1413203,I +1413204,6225,Kulin Kłodzki,50.419368,16.325498,http://kd.kiedyprzyjedzie.pl/6225,1,, +1474753,,Kulin Kłodzki,50.419368,16.325498,,0,1413204,I +1413205,6226,Kwieciszowice,50.924196,15.503632,http://kd.kiedyprzyjedzie.pl/6226,1,, +1474929,,Kwieciszowice,50.924196,15.503632,,0,1413205,I +1413208,6231,Lądek Stójków,50.327544,16.875966,http://kd.kiedyprzyjedzie.pl/6231,1,, +1474740,,Lądek Stójków,50.327544,16.875966,,0,1413208, +1413209,98,Lądek Zdrój,50.342422,16.879249,http://kd.kiedyprzyjedzie.pl/98,1,, +1474741,,Lądek Zdrój,50.342422,16.879249,,0,1413209, +1413206,9442,Langebrück (Sachs),51.126884,13.840639,http://kd.kiedyprzyjedzie.pl/9442,1,, +1474634,,Langebrück (Sachs),51.126884,13.840639,,0,1413206, +1413207,6230,Lasów,51.225197,15.035114,http://kd.kiedyprzyjedzie.pl/6230,1,, +1475188,,Lasów,51.225197,15.035114,,0,1413207,II +1475189,,Lasów,51.225197,15.035114,,0,1413207,I +1413228,6248,Ławica,50.477565,16.670747,http://kd.kiedyprzyjedzie.pl/6248,1,, +1474847,,Ławica,50.477565,16.670747,,0,1413228,I +1475208,,Ławica,50.477565,16.670747,,0,1413228,II +1413210,99,Legnica,51.214097,16.16967,http://kd.kiedyprzyjedzie.pl/99,1,, +1609726,,Legnica,51.214097,16.16967,,0,1413210,III +1657886,,Legnica,51.214097,16.16967,,0,1413210,IV +1474836,,Legnica,51.214097,16.16967,,0,1413210,V +1474843,,Legnica,51.214097,16.16967,,0,1413210, +1474947,,Legnica,51.214097,16.16967,,0,1413210,II +1474915,,Legnica,51.214097,16.16967,,0,1413210,I +1413211,6232,Legnica Piekary,51.201674,16.198056,http://kd.kiedyprzyjedzie.pl/6232,1,, +1474909,,Legnica Piekary,51.201674,16.198056,,0,1413211,I +1413212,6613,Legnica Strefa,51.165275,16.185372,http://kd.kiedyprzyjedzie.pl/6613,1,, +1474910,,Legnica Strefa,51.165275,16.185372,,0,1413212,I +1413213,7241,Leszno Górne,51.466872,15.616046,http://kd.kiedyprzyjedzie.pl/7241,1,, +1475029,,Leszno Górne,51.466872,15.616046,,0,1413213,I +1475239,,Leszno Górne,51.466872,15.616046,,0,1413213,II +1413214,6236,Lewin Kłodzki,50.40553,16.274686,http://kd.kiedyprzyjedzie.pl/6236,1,, +1474754,,Lewin Kłodzki,50.40553,16.274686,,0,1413214,I +1413215,9383,Libeč,50.596107,15.94616,http://kd.kiedyprzyjedzie.pl/9383,1,, +1474826,,Libeč,50.596107,15.94616,,0,1413215, +1413216,9344,Liberec,50.761303,15.046312,http://kd.kiedyprzyjedzie.pl/9344,1,, +1474588,,Liberec,50.761303,15.046312,,0,1413216, +1413217,9343,Liberec-Rochlice,50.747253,15.06173,http://kd.kiedyprzyjedzie.pl/9343,1,, +1474589,,Liberec-Rochlice,50.747253,15.06173,,0,1413217, +1413218,9347,Lichkov,50.097276,16.658984,http://kd.kiedyprzyjedzie.pl/9347,1,, +1474888,,Lichkov,50.097276,16.658984,,0,1413218, +1413219,7249,Lipinki Łużyckie,51.648897,15.009829,http://kd.kiedyprzyjedzie.pl/7249,1,, +1475034,,Lipinki Łużyckie,51.648897,15.009829,,0,1413219,II +1413220,9443,Löbau (Sachs),51.099377,14.671951,http://kd.kiedyprzyjedzie.pl/9443,1,, +1474622,,Löbau (Sachs),51.099377,14.671951,,0,1413220, +1413229,6256,Łososiowice,51.297059,16.675084,http://kd.kiedyprzyjedzie.pl/6256,1,, +1474785,,Łososiowice,51.297059,16.675084,,0,1413229,II +1475070,,Łososiowice,51.297059,16.675084,,0,1413229,I +1413221,6616,Lubachów,50.77432,16.434485,http://kd.kiedyprzyjedzie.pl/6616,1,, +1474799,,Lubachów,50.77432,16.434485,,0,1413221,I +1413222,102,Lubań Śląski,51.11136,15.29354,http://kd.kiedyprzyjedzie.pl/102,1,, +1474979,,Lubań Śląski,51.11136,15.29354,,0,1413222,IV +1474940,,Lubań Śląski,51.11136,15.29354,,0,1413222,I +1474980,,Lubań Śląski,51.11136,15.29354,,0,1413222,V +1413223,6241,Lubawka,50.706383,16.003268,http://kd.kiedyprzyjedzie.pl/6241,1,, +1474830,,Lubawka,50.706383,16.003268,,0,1413223,II +1413224,279,Lubin,51.396053,16.193544,http://kd.kiedyprzyjedzie.pl/279,1,, +1474958,,Lubin,51.396053,16.193544,,0,1413224,II +1474948,,Lubin,51.396053,16.193544,,0,1413224,I +1475015,,Lubin,51.396053,16.193544,,0,1413224, +1413225,7576,Lubin Stadion,51.408309,16.199145,http://kd.kiedyprzyjedzie.pl/7576,1,, +1474957,,Lubin Stadion,51.408309,16.199145,,0,1413225,I +1413226,9334,Lučany nad Nisou,50.73952,15.225355,http://kd.kiedyprzyjedzie.pl/9334,1,, +1474599,,Lučany nad Nisou,50.73952,15.225355,,0,1413226, +1413227,6244,Ludwikowice Kłodzkie,50.619485,16.481796,http://kd.kiedyprzyjedzie.pl/6244,1,, +1474767,,Ludwikowice Kłodzkie,50.619485,16.481796,,0,1413227,I +1413230,6259,Malczyce,51.215759,16.486136,http://kd.kiedyprzyjedzie.pl/6259,1,, +1474997,,Malczyce,51.215759,16.486136,,0,1413230,I +1475002,,Malczyce,51.215759,16.486136,,0,1413230,II +1413231,7273,Małomice,51.549651,15.446928,http://kd.kiedyprzyjedzie.pl/7273,1,, +1475030,,Małomice,51.549651,15.446928,,0,1413231,I +1475055,,Małomice,51.549651,15.446928,,0,1413231,II +1413232,6260,Małowice Wołowskie,51.404417,16.471413,http://kd.kiedyprzyjedzie.pl/6260,1,, +1475072,,Małowice Wołowskie,51.404417,16.471413,,0,1413232,I +1475184,,Małowice Wołowskie,51.404417,16.471413,,0,1413232,II +1413233,6263,Marcinowice Świdnickie,50.876844,16.586846,http://kd.kiedyprzyjedzie.pl/6263,1,, +1474670,,Marcinowice Świdnickie,50.876844,16.586846,,0,1413233,I +1413234,905,Marciszów,50.851499,16.007603,http://kd.kiedyprzyjedzie.pl/905,1,, +1474757,,Marciszów,50.851499,16.007603,,0,1413234,III +1413235,9388,Mezimesti,50.626561,16.243017,http://kd.kiedyprzyjedzie.pl/9388,1,, +1475111,,Mezimesti,50.626561,16.243017,,0,1413235, +1413238,122,Międzylesie,50.144089,16.654959,http://kd.kiedyprzyjedzie.pl/122,1,, +1474875,,Międzylesie,50.144089,16.654959,,0,1413238,I +1474889,,Międzylesie,50.144089,16.654959,,0,1413238,II +1413239,124,Międzyzdroje,53.924245,14.455085,http://kd.kiedyprzyjedzie.pl/124,1,, +1475250,,Międzyzdroje,53.924245,14.455085,,0,1413239,II +1475103,,Międzyzdroje,53.924245,14.455085,,0,1413239,I +1413240,6268,Miękinia,51.188258,16.739599,http://kd.kiedyprzyjedzie.pl/6268,1,, +1474995,,Miękinia,51.188258,16.739599,,0,1413240,I +1475004,,Miękinia,51.188258,16.739599,,0,1413240,II +1413236,6266,Mieroszów,50.669307,16.193351,http://kd.kiedyprzyjedzie.pl/6266,1,, +1536267,,Mieroszów,50.669307,16.193351,,0,1413236,I +1413237,6267,Mietków,50.98513,16.655947,http://kd.kiedyprzyjedzie.pl/6267,1,, +1475144,,Mietków,50.98513,16.655947,,0,1413237,II +1475146,,Mietków,50.98513,16.655947,,0,1413237,I +1413241,6269,Mikułowa,51.095151,15.107872,http://kd.kiedyprzyjedzie.pl/6269,1,, +1474943,,Mikułowa,51.095151,15.107872,,0,1413241,I +1413242,6270,Milicz,51.527373,17.294983,http://kd.kiedyprzyjedzie.pl/6270,1,, +1475094,,Milicz,51.527373,17.294983,,0,1413242,I +1413243,6271,Miłkowice,51.255565,16.054625,http://kd.kiedyprzyjedzie.pl/6271,1,, +1474845,,Miłkowice,51.255565,16.054625,,0,1413243,IV +1474838,,Miłkowice,51.255565,16.054625,,0,1413243,III +1475050,,Miłkowice,51.255565,16.054625,,0,1413243, +1475026,,Miłkowice,51.255565,16.054625,,0,1413243,I +1475240,,Miłkowice,51.255565,16.054625,,0,1413243,II +1413244,6674,Mirków,51.164949,17.164351,http://kd.kiedyprzyjedzie.pl/6674,1,, +1475213,,Mirków,51.164949,17.164351,,0,1413244,I +1475084,,Mirków,51.164949,17.164351,,0,1413244,II +1413245,6274,Mirsk,50.97318,15.380346,http://kd.kiedyprzyjedzie.pl/6274,1,, +1474934,,Mirsk,50.97318,15.380346,,0,1413245,I +1413246,6275,Młyńsko,50.989545,15.450399,http://kd.kiedyprzyjedzie.pl/6275,1,, +1474931,,Młyńsko,50.989545,15.450399,,0,1413246,I +1413247,6276,Modła,51.375628,15.813586,http://kd.kiedyprzyjedzie.pl/6276,1,, +1475027,,Modła,51.375628,15.813586,,0,1413247,I +1475052,,Modła,51.375628,15.813586,,0,1413247, +1413248,7577,Mokronos Górny,51.078847,16.908683,http://kd.kiedyprzyjedzie.pl/7577,1,, +1474901,,Mokronos Górny,51.078847,16.908683,,0,1413248,II +1474893,,Mokronos Górny,51.078847,16.908683,,0,1413248,I +1413249,6280,Mościsko Dzierżoniowskie,50.772124,16.580238,http://kd.kiedyprzyjedzie.pl/6280,1,, +1474684,,Mościsko Dzierżoniowskie,50.772124,16.580238,,0,1413249,I +1475025,,Mościsko Dzierżoniowskie,50.772124,16.580238,,0,1413249,II +1413250,6281,Mroczkowice,50.947491,15.361598,http://kd.kiedyprzyjedzie.pl/6281,1,, +1474935,,Mroczkowice,50.947491,15.361598,,0,1413250,I +1413251,6282,Mrozów,51.183662,16.793938,http://kd.kiedyprzyjedzie.pl/6282,1,, +1474994,,Mrozów,51.183662,16.793938,,0,1413251,I +1475005,,Mrozów,51.183662,16.793938,,0,1413251,II +1413252,6575,Nadolice Małe,51.081794,17.219462,http://kd.kiedyprzyjedzie.pl/6575,1,, +1475174,,Nadolice Małe,51.081794,17.219462,,0,1413252,I +1413253,6288,Nadolice Wielkie,51.07986,17.250828,http://kd.kiedyprzyjedzie.pl/6288,1,, +1475175,,Nadolice Wielkie,51.07986,17.250828,,0,1413253,I +1473564,7301,Niedoradz,51.865418,15.664353,http://kd.kiedyprzyjedzie.pl/7301,1,, +1536289,,Niedoradz,51.865418,15.664353,,0,1473564,I +1536321,,Niedoradz,51.865418,15.664353,,0,1473564,II +1413254,9399,Nová Ves nad Nisou,50.723554,15.194252,http://kd.kiedyprzyjedzie.pl/9399,1,, +1474597,,Nová Ves nad Nisou,50.723554,15.194252,,0,1413254, +1413255,132,Nowa Ruda,50.577334,16.496848,http://kd.kiedyprzyjedzie.pl/132,1,, +1474770,,Nowa Ruda,50.577334,16.496848,,0,1413255,I +1474811,,Nowa Ruda,50.577334,16.496848,,0,1413255,II +1413256,6296,Nowa Ruda Przedmieście,50.588571,16.516863,http://kd.kiedyprzyjedzie.pl/6296,1,, +1474769,,Nowa Ruda Przedmieście,50.588571,16.516863,,0,1413256,I +1413257,6544,Nowa Ruda Zdrojowisko,50.612045,16.509514,http://kd.kiedyprzyjedzie.pl/6544,1,, +1474768,,Nowa Ruda Zdrojowisko,50.612045,16.509514,,0,1413257,I +1413258,133,Nowa Sól,51.798692,15.708974,http://kd.kiedyprzyjedzie.pl/133,1,, +1475081,,Nowa Sól,51.798692,15.708974,,0,1413258,I +1475058,,Nowa Sól,51.798692,15.708974,,0,1413258,II +1413259,6305,Oborniki Śląskie,51.299605,16.907332,http://kd.kiedyprzyjedzie.pl/6305,1,, +1474868,,Oborniki Śląskie,51.299605,16.907332,,0,1413259,I +1413260,6306,Okmiany,51.270932,15.778626,http://kd.kiedyprzyjedzie.pl/6306,1,, +1475142,,Okmiany,51.270932,15.778626,,0,1413260,II +1475129,,Okmiany,51.270932,15.778626,,0,1413260,I +1413264,6315,Ołdrzychowice Kłodzkie,50.367381,16.707201,http://kd.kiedyprzyjedzie.pl/6315,1,, +1474744,,Ołdrzychowice Kłodzkie,50.367381,16.707201,,0,1413264, +1413261,138,Oleśnica,51.200627,17.386427,http://kd.kiedyprzyjedzie.pl/138,1,, +1475210,,Oleśnica,51.200627,17.386427,,0,1413261,III +1475020,,Oleśnica,51.200627,17.386427,,0,1413261, +1413262,6311,Oleśnica Rataje,51.216512,17.364624,http://kd.kiedyprzyjedzie.pl/6311,1,, +1475099,,Oleśnica Rataje,51.216512,17.364624,,0,1413262,II +1475088,,Oleśnica Rataje,51.216512,17.364624,,0,1413262,I +1475022,,Oleśnica Rataje,51.216512,17.364624,,0,1413262, +1413263,6313,Olszyna Lubańska,51.069725,15.380647,http://kd.kiedyprzyjedzie.pl/6313,1,, +1474939,,Olszyna Lubańska,51.069725,15.380647,,0,1413263,I +1413265,6212,Orłowice,50.931198,15.351921,http://kd.kiedyprzyjedzie.pl/6212,1,, +1474936,,Orłowice,50.931198,15.351921,,0,1413265,I +1413266,6321,Orzeszków,51.393882,16.50824,http://kd.kiedyprzyjedzie.pl/6321,1,, +1475185,,Orzeszków,51.393882,16.50824,,0,1413266,II +1475071,,Orzeszków,51.393882,16.50824,,0,1413266,I +1413267,6322,Osetnica,51.261816,15.847333,http://kd.kiedyprzyjedzie.pl/6322,1,, +1475128,,Osetnica,51.261816,15.847333,,0,1413267,I +1475143,,Osetnica,51.261816,15.847333,,0,1413267,II +1413268,6324,Osola,51.338311,16.865642,http://kd.kiedyprzyjedzie.pl/6324,1,, +1475201,,Osola,51.338311,16.865642,,0,1413268,II +1474869,,Osola,51.338311,16.865642,,0,1413268,I +1413270,6536,Pasikurowice,51.20894,17.109658,http://kd.kiedyprzyjedzie.pl/6536,1,, +1474709,,Pasikurowice,51.20894,17.109658,,0,1413270,I +1413271,6338,Pęgów,51.247143,16.92715,http://kd.kiedyprzyjedzie.pl/6338,1,, +1474867,,Pęgów,51.247143,16.92715,,0,1413271,I +1475202,,Pęgów,51.247143,16.92715,,0,1413271,II +1413272,6339,Piechowice,50.851705,15.59149,http://kd.kiedyprzyjedzie.pl/6339,1,, +1475121,,Piechowice,50.851705,15.59149,,0,1413272,I +1475161,,Piechowice,50.851705,15.59149,,0,1413272,II +1413273,6340,Piechowice Dolne,50.850385,15.61687,http://kd.kiedyprzyjedzie.pl/6340,1,, +1475157,,Piechowice Dolne,50.850385,15.61687,,0,1413273,I +1413274,6343,Pieńsk,51.245225,15.046882,http://kd.kiedyprzyjedzie.pl/6343,1,, +1474984,,Pieńsk,51.245225,15.046882,,0,1413274,I +1475135,,Pieńsk,51.245225,15.046882,,0,1413274,II +1413275,7417,Pierwoszów Miłocin,51.255242,17.098961,http://kd.kiedyprzyjedzie.pl/7417,1,, +1474711,,Pierwoszów Miłocin,51.255242,17.098961,,0,1413275,I +1413276,6349,Piława Górna,50.678765,16.773261,http://kd.kiedyprzyjedzie.pl/6349,1,, +1475230,,Piława Górna,50.678765,16.773261,,0,1413276,II +1413277,6444,Polana Jakuszycka,50.814623,15.42952,http://kd.kiedyprzyjedzie.pl/6444,1,, +1536271,,Polana Jakuszycka,50.814623,15.42952,,0,1413277, +1474612,,Polana Jakuszycka,50.814623,15.42952,,0,1413277,I +1413278,157,Polanica-Zdrój,50.397587,16.514401,http://kd.kiedyprzyjedzie.pl/157,1,, +1474752,,Polanica-Zdrój,50.397587,16.514401,,0,1413278,I +1474647,,Polanica-Zdrój,50.397587,16.514401,,0,1413278,II +1413279,9444,Pommritz,51.159099,14.574663,http://kd.kiedyprzyjedzie.pl/9444,1,, +1474624,,Pommritz,51.159099,14.574663,,0,1413279, +1413280,6361,Poniatowice,51.241872,17.543874,http://kd.kiedyprzyjedzie.pl/6361,1,, +1474975,,Poniatowice,51.241872,17.543874,,0,1413280, +1413281,9340,Proseč nad Nisou,50.728323,15.115728,http://kd.kiedyprzyjedzie.pl/9340,1,, +1474592,,Proseč nad Nisou,50.728323,15.115728,,0,1413281, +1413282,6365,Proszówka,51.009024,15.423156,http://kd.kiedyprzyjedzie.pl/6365,1,, +1474933,,Proszówka,51.009024,15.423156,,0,1413282,I +1413283,6367,Przedmoście Święte,51.190497,16.664605,http://kd.kiedyprzyjedzie.pl/6367,1,, +1475003,,Przedmoście Święte,51.190497,16.664605,,0,1413283,II +1474996,,Przedmoście Święte,51.190497,16.664605,,0,1413283,I +1413284,6373,Przybyłowice,51.125139,16.158692,http://kd.kiedyprzyjedzie.pl/6373,1,, +1475024,,Przybyłowice,51.125139,16.158692,,0,1413284,II +1474911,,Przybyłowice,51.125139,16.158692,,0,1413284,I +1413285,6375,Pszenno,50.856029,16.530219,http://kd.kiedyprzyjedzie.pl/6375,1,, +1474671,,Pszenno,50.856029,16.530219,,0,1413285,I +1413286,6377,Pustków Żurawski,50.954151,16.857297,http://kd.kiedyprzyjedzie.pl/6377,1,, +1474665,,Pustków Żurawski,50.954151,16.857297,,0,1413286,I +1413287,9445,Radeberg,51.11161,13.913251,http://kd.kiedyprzyjedzie.pl/9445,1,, +1474633,,Radeberg,51.11161,13.913251,,0,1413287, +1413288,6379,Radochów,50.339694,16.817193,http://kd.kiedyprzyjedzie.pl/6379,1,, +1474742,,Radochów,50.339694,16.817193,,0,1413288, +1413289,5523,Ramiszów,51.193196,17.098296,http://kd.kiedyprzyjedzie.pl/5523,1,, +1474708,,Ramiszów,51.193196,17.098296,,0,1413289,I +1474733,,Ramiszów,51.193196,17.098296,,0,1413289, +1413290,6383,Raszówka,51.302214,16.181729,http://kd.kiedyprzyjedzie.pl/6383,1,, +1474961,,Raszówka,51.302214,16.181729,,0,1413290,I +1475018,,Raszówka,51.302214,16.181729,,0,1413290, +1413291,171,Rawicz,51.609244,16.839439,http://kd.kiedyprzyjedzie.pl/171,1,, +1475249,,Rawicz,51.609244,16.839439,,0,1413291, +1474874,,Rawicz,51.609244,16.839439,,0,1413291,II +1474891,,Rawicz,51.609244,16.839439,,0,1413291,I +1413293,6385,Rębiszów,50.948228,15.456076,http://kd.kiedyprzyjedzie.pl/6385,1,, +1474930,,Rębiszów,50.948228,15.456076,,0,1413293,II +1413292,9446,Reichenbach (Oberlausitz),51.135705,14.795527,http://kd.kiedyprzyjedzie.pl/9446,1,, +1474620,,Reichenbach (Oberlausitz),51.135705,14.795527,,0,1413292, +1413295,6388,Rogów Sobócki,50.934142,16.75913,http://kd.kiedyprzyjedzie.pl/6388,1,, +1474666,,Rogów Sobócki,50.934142,16.75913,,0,1413295,II +1413294,6387,Rogoźnica,51.014612,16.301701,http://kd.kiedyprzyjedzie.pl/6387,1,, +1845555,,Rogoźnica,51.014612,16.301701,,0,1413294,I +1413296,6389,Rokitki,51.335419,15.893242,http://kd.kiedyprzyjedzie.pl/6389,1,, +1475051,,Rokitki,51.335419,15.893242,,0,1413296, +1474841,,Rokitki,51.335419,15.893242,,0,1413296,II +1475039,,Rokitki,51.335419,15.893242,,0,1413296,I +1413297,6392,Roztoki Bystrzyckie,50.187657,16.66571,http://kd.kiedyprzyjedzie.pl/6392,1,, +1474876,,Roztoki Bystrzyckie,50.187657,16.66571,,0,1413297,I +1413298,176,Rudna Gwizdanów,51.529325,16.280866,http://kd.kiedyprzyjedzie.pl/176,1,, +1474953,,Rudna Gwizdanów,51.529325,16.280866,,0,1413298,I +1474967,,Rudna Gwizdanów,51.529325,16.280866,,0,1413298,II +1413299,6393,Rudna Miasto,51.505725,16.269564,http://kd.kiedyprzyjedzie.pl/6393,1,, +1474954,,Rudna Miasto,51.505725,16.269564,,0,1413299,I +1475075,,Rudna Miasto,51.505725,16.269564,,0,1413299,II +1413300,6395,Rybnica,50.910496,15.645859,http://kd.kiedyprzyjedzie.pl/6395,1,, +1474927,,Rybnica,50.910496,15.645859,,0,1413300,II +1475236,,Rybnica,50.910496,15.645859,,0,1413300,I +1413301,6396,Rynarcice,51.473047,16.227539,http://kd.kiedyprzyjedzie.pl/6396,1,, +1474955,,Rynarcice,51.473047,16.227539,,0,1413301,I +1413302,6397,Rzeszotary,51.25026,16.166162,http://kd.kiedyprzyjedzie.pl/6397,1,, +1474962,,Rzeszotary,51.25026,16.166162,,0,1413302,I +1475019,,Rzeszotary,51.25026,16.166162,,0,1413302, +1413303,6398,Sadowice Wrocławskie,51.056007,16.824689,http://kd.kiedyprzyjedzie.pl/6398,1,, +1474895,,Sadowice Wrocławskie,51.056007,16.824689,,0,1413303,II +1474899,,Sadowice Wrocławskie,51.056007,16.824689,,0,1413303,I +1413339,210,Ścinawa,51.409209,16.421422,http://kd.kiedyprzyjedzie.pl/210,1,, +1475073,,Ścinawa,51.409209,16.421422,,0,1413339,I +1475183,,Ścinawa,51.409209,16.421422,,0,1413339,II +1413340,6458,Ścinawka Średnia,50.526395,16.505233,http://kd.kiedyprzyjedzie.pl/6458,1,, +1474771,,Ścinawka Średnia,50.526395,16.505233,,0,1413340,II +1413305,6402,Sędzisław,50.813417,16.069857,http://kd.kiedyprzyjedzie.pl/6402,1,, +1474758,,Sędzisław,50.813417,16.069857,,0,1413305,I +1474821,,Sędzisław,50.813417,16.069857,,0,1413305,II +1413304,9447,Seitschen,51.153581,14.32498,http://kd.kiedyprzyjedzie.pl/9447,1,, +1474627,,Seitschen,51.153581,14.32498,,0,1413304, +1413306,6404,Siechnice,51.038254,17.142547,http://kd.kiedyprzyjedzie.pl/6404,1,, +1474904,,Siechnice,51.038254,17.142547,,0,1413306,I +1413307,6548,Siedlec Trzebnicki,51.233655,17.118864,http://kd.kiedyprzyjedzie.pl/6548,1,, +1474710,,Siedlec Trzebnicki,51.233655,17.118864,,0,1413307,I +1413308,7446,Sieniawa Żarska,51.636546,15.061469,http://kd.kiedyprzyjedzie.pl/7446,1,, +1475033,,Sieniawa Żarska,51.636546,15.061469,,0,1413308,I +1413309,6408,Skokowa,51.387049,16.848932,http://kd.kiedyprzyjedzie.pl/6408,1,, +1475200,,Skokowa,51.387049,16.848932,,0,1413309,I +1474870,,Skokowa,51.387049,16.848932,,0,1413309,II +1413310,6412,Smardzów Wrocławski,51.030628,17.066139,http://kd.kiedyprzyjedzie.pl/6412,1,, +1475192,,Smardzów Wrocławski,51.030628,17.066139,,0,1413310,I +1474858,,Smardzów Wrocławski,51.030628,17.066139,,0,1413310,II +1413311,6413,Smolec,51.071592,16.881949,http://kd.kiedyprzyjedzie.pl/6413,1,, +1474894,,Smolec,51.071592,16.881949,,0,1413311,I +1474900,,Smolec,51.071592,16.881949,,0,1413311,II +1413312,9329,Smržovka,50.740199,15.243841,http://kd.kiedyprzyjedzie.pl/9329,1,, +1474600,,Smržovka,50.740199,15.243841,,0,1413312, +1413313,9326,Smržovka dolní nádraží,50.734801,15.280416,http://kd.kiedyprzyjedzie.pl/9326,1,, +1474603,,Smržovka dolní nádraží,50.734801,15.280416,,0,1413313, +1413315,9328,Smržovka-Luční,50.735025,15.24957,http://kd.kiedyprzyjedzie.pl/9328,1,, +1474601,,Smržovka-Luční,50.735025,15.24957,,0,1413315, +1413314,9327,Smržovka střed,50.731922,15.25486,http://kd.kiedyprzyjedzie.pl/9327,1,, +1474602,,Smržovka střed,50.731922,15.25486,,0,1413314, +1413316,6414,Sobótka,50.90535,16.740129,http://kd.kiedyprzyjedzie.pl/6414,1,, +1474667,,Sobótka,50.90535,16.740129,,0,1413316,I +1413317,6415,Sobótka Zachodnia,50.907806,16.700733,http://kd.kiedyprzyjedzie.pl/6415,1,, +1474668,,Sobótka Zachodnia,50.907806,16.700733,,0,1413317,I +1413341,6459,Środa Śląska,51.189431,16.606723,http://kd.kiedyprzyjedzie.pl/6459,1,, +1474949,,Środa Śląska,51.189431,16.606723,,0,1413341,II +1474965,,Środa Śląska,51.189431,16.606723,,0,1413341,I +1413318,6421,Stanowice,50.930106,16.374626,http://kd.kiedyprzyjedzie.pl/6421,1,, +1474719,,Stanowice,50.930106,16.374626,,0,1413318,I +1413319,6422,Stara Kamienica,50.91402,15.565918,http://kd.kiedyprzyjedzie.pl/6422,1,, +1474928,,Stara Kamienica,50.91402,15.565918,,0,1413319,I +1475237,,Stara Kamienica,50.91402,15.565918,,0,1413319,II +1413320,6424,Starczów,50.563354,16.94673,http://kd.kiedyprzyjedzie.pl/6424,1,, +1474851,,Starczów,50.563354,16.94673,,0,1413320,I +1474883,,Starczów,50.563354,16.94673,,0,1413320,II +1413321,6427,Stary Jawor,51.078997,16.161272,http://kd.kiedyprzyjedzie.pl/6427,1,, +1474912,,Stary Jawor,51.078997,16.161272,,0,1413321,I +1413322,6429,Stary Wielisław,50.405185,16.576269,http://kd.kiedyprzyjedzie.pl/6429,1,, +1474751,,Stary Wielisław,50.405185,16.576269,,0,1413322,I +1413323,7479,Stradomia,51.27304,17.623525,http://kd.kiedyprzyjedzie.pl/7479,1,, +1474976,,Stradomia,51.27304,17.623525,,0,1413323, +1413324,6431,Stronie Śląskie,50.30296,16.876106,http://kd.kiedyprzyjedzie.pl/6431,1,, +1474739,,Stronie Śląskie,50.30296,16.876106,,0,1413324, +1413325,6432,Strzegom,50.974562,16.358945,http://kd.kiedyprzyjedzie.pl/6432,1,, +1474718,,Strzegom,50.974562,16.358945,,0,1413325,I +1695678,6434,Strzelce Świdnickie,50.911021,16.661642,http://kd.kiedyprzyjedzie.pl/6434,1,, +1764608,,Strzelce Świdnickie,50.911021,16.661642,,0,1695678,I +1413326,6436,Strzelin,50.784225,17.060255,http://kd.kiedyprzyjedzie.pl/6436,1,, +1474886,,Strzelin,50.784225,17.060255,,0,1413326,I +1474641,,Strzelin,50.784225,17.060255,,0,1413326,II +1413327,6561,Studzianka,51.427126,15.694989,http://kd.kiedyprzyjedzie.pl/6561,1,, +1536285,,Studzianka,51.427126,15.694989,,0,1413327,I +1413328,6440,Suszka,50.530811,16.82418,http://kd.kiedyprzyjedzie.pl/6440,1,, +1475209,,Suszka,50.530811,16.82418,,0,1413328,II +1474885,,Suszka,50.530811,16.82418,,0,1413328,I +1413342,213,Świdnica Miasto,50.841216,16.481506,http://kd.kiedyprzyjedzie.pl/213,1,, +1474688,,Świdnica Miasto,50.841216,16.481506,,0,1413342,II +1474673,,Świdnica Miasto,50.841216,16.481506,,0,1413342,I +1413343,6461,Świdnica Przedmieście,50.835008,16.503955,http://kd.kiedyprzyjedzie.pl/6461,1,, +1474672,,Świdnica Przedmieście,50.835008,16.503955,,0,1413343,I +1413344,6631,Świdnica Zawiszów,50.859921,16.479444,http://kd.kiedyprzyjedzie.pl/6631,1,, +1474697,,Świdnica Zawiszów,50.859921,16.479444,,0,1413344,II +1474689,,Świdnica Zawiszów,50.859921,16.479444,,0,1413344,I +1413345,6462,Świebodzice,50.860195,16.332842,http://kd.kiedyprzyjedzie.pl/6462,1,, +1475126,,Świebodzice,50.860195,16.332842,,0,1413345,II +1474989,,Świebodzice,50.860195,16.332842,,0,1413345,I +1413346,216,Świeradów-Zdrój,50.911413,15.343452,http://kd.kiedyprzyjedzie.pl/216,1,, +1474937,,Świeradów-Zdrój,50.911413,15.343452,,0,1413346,I +1413347,6464,Świerki Dolne,50.63237,16.432495,http://kd.kiedyprzyjedzie.pl/6464,1,, +1474766,,Świerki Dolne,50.63237,16.432495,,0,1413347,II +1474812,,Świerki Dolne,50.63237,16.432495,,0,1413347,I +1413348,217,Świnoujście,53.904554,14.266385,http://kd.kiedyprzyjedzie.pl/217,1,, +1657890,,Świnoujście,53.904554,14.266385,,0,1413348,II +1413329,7488,Syców,51.303543,17.715809,http://kd.kiedyprzyjedzie.pl/7488,1,, +1474977,,Syców,51.303543,17.715809,,0,1413329, +1413330,200,Szczecin Dąbie,53.391347,14.670465,http://kd.kiedyprzyjedzie.pl/200,1,, +1536330,,Szczecin Dąbie,53.391347,14.670465,,0,1413330,I +1970856,,Szczecin Dąbie,53.391347,14.670465,,0,1413330,III +1413331,6443,Szczedrzykowice,51.215151,16.350384,http://kd.kiedyprzyjedzie.pl/6443,1,, +1475001,,Szczedrzykowice,51.215151,16.350384,,0,1413331,II +1474998,,Szczedrzykowice,51.215151,16.350384,,0,1413331,I +1413332,6445,Szczepanów,50.898367,16.625159,http://kd.kiedyprzyjedzie.pl/6445,1,, +1474669,,Szczepanów,50.898367,16.625159,,0,1413332,I +1413333,6446,Szczytna,50.408364,16.449786,http://kd.kiedyprzyjedzie.pl/6446,1,, +1474648,,Szczytna,50.408364,16.449786,,0,1413333,I +1413334,6448,Szewce,51.215702,16.95446,http://kd.kiedyprzyjedzie.pl/6448,1,, +1475203,,Szewce,51.215702,16.95446,,0,1413334,I +1474866,,Szewce,51.215702,16.95446,,0,1413334,II +1413335,6450,Szklarska Poręba Dolna,50.848359,15.55696,http://kd.kiedyprzyjedzie.pl/6450,1,, +1475122,,Szklarska Poręba Dolna,50.848359,15.55696,,0,1413335,I +1413336,209,Szklarska Poręba Górna,50.832658,15.518717,http://kd.kiedyprzyjedzie.pl/209,1,, +1474614,,Szklarska Poręba Górna,50.832658,15.518717,,0,1413336,III +1536272,,Szklarska Poręba Górna,50.832658,15.518717,,0,1413336, +1475124,,Szklarska Poręba Górna,50.832658,15.518717,,0,1413336,I +1475127,,Szklarska Poręba Górna,50.832658,15.518717,,0,1413336,II +1413337,6447,Szklarska Poręba Huta,50.826665,15.497064,http://kd.kiedyprzyjedzie.pl/6447,1,, +1474613,,Szklarska Poręba Huta,50.826665,15.497064,,0,1413337,I +1657882,,Szklarska Poręba Huta,50.826665,15.497064,,0,1413337, +1413338,6449,Szklarska Poręba Średnia,50.838468,15.539976,http://kd.kiedyprzyjedzie.pl/6449,1,, +1475123,,Szklarska Poręba Średnia,50.838468,15.539976,,0,1413338,I +1413349,9317,Tanvald,50.743471,15.311025,http://kd.kiedyprzyjedzie.pl/9317,1,, +1474605,,Tanvald,50.743471,15.311025,,0,1413349, +1413350,9325,Tanvald zastávka,50.737014,15.305274,http://kd.kiedyprzyjedzie.pl/9325,1,, +1474604,,Tanvald zastávka,50.737014,15.305274,,0,1413350, +1473662,9389,Teplice nad Metují,50.581607,16.178687,http://kd.kiedyprzyjedzie.pl/9389,1,, +1536276,,Teplice nad Metují,50.581607,16.178687,,0,1473662, +1473663,9390,Teplice nad Metují město,50.592752,16.1724,http://kd.kiedyprzyjedzie.pl/9390,1,, +1536275,,Teplice nad Metují město,50.592752,16.1724,,0,1473663, +1473664,9391,Teplice nad Metují skály,50.596934,16.149784,http://kd.kiedyprzyjedzie.pl/9391,1,, +1536274,,Teplice nad Metují skály,50.596934,16.149784,,0,1473664, +1413351,6471,Tomaszów Bolesławiecki,51.286079,15.679995,http://kd.kiedyprzyjedzie.pl/6471,1,, +1475130,,Tomaszów Bolesławiecki,51.286079,15.679995,,0,1413351,I +1475141,,Tomaszów Bolesławiecki,51.286079,15.679995,,0,1413351,II +1413352,9386,Trutnov hl. n.,50.565261,15.911056,http://kd.kiedyprzyjedzie.pl/9386,1,, +1474824,,Trutnov hl. n.,50.565261,15.911056,,0,1413352, +1413353,9385,Trutnov střed,50.577825,15.945217,http://kd.kiedyprzyjedzie.pl/9385,1,, +1474825,,Trutnov střed,50.577825,15.945217,,0,1413353, +1413354,6473,Trzcińsko,50.883215,15.872033,http://kd.kiedyprzyjedzie.pl/6473,1,, +1609772,,Trzcińsko,50.883215,15.872033,,0,1413354,II +1474920,,Trzcińsko,50.883215,15.872033,,0,1413354,I +1413355,6475,Trzebieszowice,50.346643,16.775683,http://kd.kiedyprzyjedzie.pl/6475,1,, +1474743,,Trzebieszowice,50.346643,16.775683,,0,1413355, +1413356,6553,Trzebnica,51.304044,17.063326,http://kd.kiedyprzyjedzie.pl/6553,1,, +1474713,,Trzebnica,51.304044,17.063326,,0,1413356,I +1413357,229,Tuplice,51.671842,14.83739,http://kd.kiedyprzyjedzie.pl/229,1,, +1475036,,Tuplice,51.671842,14.83739,,0,1413357,IV +1413358,7520,Tuplice Dębinka,51.666135,14.909976,http://kd.kiedyprzyjedzie.pl/7520,1,, +1475035,,Tuplice Dębinka,51.666135,14.909976,,0,1413358,I +1413359,6483,Ubocze,51.056314,15.419985,http://kd.kiedyprzyjedzie.pl/6483,1,, +1474938,,Ubocze,51.056314,15.419985,,0,1413359,I +1413360,6485,Unisław Śląski,50.711057,16.224229,http://kd.kiedyprzyjedzie.pl/6485,1,, +1536268,,Unisław Śląski,50.711057,16.224229,,0,1413360,I +1413361,9342,Vesec u Liberce,50.743539,15.080806,http://kd.kiedyprzyjedzie.pl/9342,1,, +1474590,,Vesec u Liberce,50.743539,15.080806,,0,1413361, +1413362,9341,Vratislavice nad Nisou,50.740124,15.093508,http://kd.kiedyprzyjedzie.pl/9341,1,, +1474591,,Vratislavice nad Nisou,50.740124,15.093508,,0,1413362, +1413363,6572,Wałbrzych Centrum,50.773373,16.269853,http://kd.kiedyprzyjedzie.pl/6572,1,, +1474780,,Wałbrzych Centrum,50.773373,16.269853,,0,1413363,I +1474816,,Wałbrzych Centrum,50.773373,16.269853,,0,1413363,II +1413364,6486,Wałbrzych Fabryczny,50.761393,16.267053,http://kd.kiedyprzyjedzie.pl/6486,1,, +1475147,,Wałbrzych Fabryczny,50.761393,16.267053,,0,1413364,I +1475164,,Wałbrzych Fabryczny,50.761393,16.267053,,0,1413364,II +1413365,241,Wałbrzych Główny,50.743398,16.28069,http://kd.kiedyprzyjedzie.pl/241,1,, +1474781,,Wałbrzych Główny,50.743398,16.28069,,0,1413365,I +1474760,,Wałbrzych Główny,50.743398,16.28069,,0,1413365,II +1474777,,Wałbrzych Główny,50.743398,16.28069,,0,1413365, +1413366,6487,Wałbrzych Miasto,50.786229,16.28523,http://kd.kiedyprzyjedzie.pl/6487,1,, +1474779,,Wałbrzych Miasto,50.786229,16.28523,,0,1413366,II +1474782,,Wałbrzych Miasto,50.786229,16.28523,,0,1413366, +1413367,6488,Wałbrzych Szczawienko,50.816397,16.302719,http://kd.kiedyprzyjedzie.pl/6488,1,, +1475125,,Wałbrzych Szczawienko,50.816397,16.302719,,0,1413367,II +1474990,,Wałbrzych Szczawienko,50.816397,16.302719,,0,1413367,I +1413368,6489,Warkocz,50.829399,17.046304,http://kd.kiedyprzyjedzie.pl/6489,1,, +1475196,,Warkocz,50.829399,17.046304,,0,1413368,I +1474854,,Warkocz,50.829399,17.046304,,0,1413368,II +1413371,235,Węgliniec,51.290105,15.222968,http://kd.kiedyprzyjedzie.pl/235,1,, +1475136,,Węgliniec,51.290105,15.222968,,0,1413371,III +1474988,,Węgliniec,51.290105,15.222968,,0,1413371, +1475113,,Węgliniec,51.290105,15.222968,,0,1413371,I +1474983,,Węgliniec,51.290105,15.222968,,0,1413371,IV +1475190,,Węgliniec,51.290105,15.222968,,0,1413371,II +1413372,6490,Węgry,50.925738,17.032829,http://kd.kiedyprzyjedzie.pl/6490,1,, +1475194,,Węgry,50.925738,17.032829,,0,1413372,II +1474856,,Węgry,50.925738,17.032829,,0,1413372,I +1413369,9448,Weickersdorf (Sachs),51.110963,14.151238,http://kd.kiedyprzyjedzie.pl/9448,1,, +1474630,,Weickersdorf (Sachs),51.110963,14.151238,,0,1413369, +1413370,9428,Weißwasser (Oberlausitz),51.505592,14.638182,http://kd.kiedyprzyjedzie.pl/9428,1,, +1475114,,Weißwasser (Oberlausitz),51.505592,14.638182,,0,1413370, +1413373,6493,Wierzbice,50.965123,16.899229,http://kd.kiedyprzyjedzie.pl/6493,1,, +1474664,,Wierzbice,50.965123,16.899229,,0,1413373,I +1413374,6494,Wierzbowa Śląska,51.396904,15.758852,http://kd.kiedyprzyjedzie.pl/6494,1,, +1475028,,Wierzbowa Śląska,51.396904,15.758852,,0,1413374,I +1475053,,Wierzbowa Śląska,51.396904,15.758852,,0,1413374, +1413375,6495,Wierzchowice,51.502859,17.351695,http://kd.kiedyprzyjedzie.pl/6495,1,, +1475093,,Wierzchowice,51.502859,17.351695,,0,1413375,I +1413376,6502,Witków Śląski,50.793824,16.127465,http://kd.kiedyprzyjedzie.pl/6502,1,, +1475151,,Witków Śląski,50.793824,16.127465,,0,1413376,II +1474918,,Witków Śląski,50.793824,16.127465,,0,1413376,I +1413377,6504,Wojanów,50.884741,15.821286,http://kd.kiedyprzyjedzie.pl/6504,1,, +1474921,,Wojanów,50.884741,15.821286,,0,1413377,II +1475154,,Wojanów,50.884741,15.821286,,0,1413377,I +1413378,247,Wołów,51.333532,16.633274,http://kd.kiedyprzyjedzie.pl/247,1,, +1474784,,Wołów,51.333532,16.633274,,0,1413378,I +1413379,906,Wrocław Brochów,51.064281,17.084628,http://kd.kiedyprzyjedzie.pl/906,1,, +1474903,,Wrocław Brochów,51.064281,17.084628,,0,1413379,I +1413380,248,Wrocław Główny,51.097917,17.037957,http://kd.kiedyprzyjedzie.pl/248,1,, +1474651,,Wrocław Główny,51.097917,17.037957,,0,1413380,V +1474640,,Wrocław Główny,51.097917,17.037957,,0,1413380,IV +1536277,,Wrocław Główny,51.097917,17.037957,,0,1413380,VI +1474738,,Wrocław Główny,51.097917,17.037957,,0,1413380,I +1536279,,Wrocław Główny,51.097917,17.037957,,0,1413380,III +1474861,,Wrocław Główny,51.097917,17.037957,,0,1413380,II +1413381,6570,Wrocław Grabiszyn,51.09664,16.974274,http://kd.kiedyprzyjedzie.pl/6570,1,, +1474819,,Wrocław Grabiszyn,51.09664,16.974274,,0,1413381,II +1474794,,Wrocław Grabiszyn,51.09664,16.974274,,0,1413381,I +1413382,6511,Wrocław Kowale,51.134967,17.100139,http://kd.kiedyprzyjedzie.pl/6511,1,, +1475167,,Wrocław Kowale,51.134967,17.100139,,0,1413382,I +1413383,6512,Wrocław Kuźniki,51.128026,16.952237,http://kd.kiedyprzyjedzie.pl/6512,1,, +1474792,,Wrocław Kuźniki,51.128026,16.952237,,0,1413383,I +1413384,6513,Wrocław Leśnica,51.141916,16.867326,http://kd.kiedyprzyjedzie.pl/6513,1,, +1474993,,Wrocław Leśnica,51.141916,16.867326,,0,1413384,II +1475006,,Wrocław Leśnica,51.141916,16.867326,,0,1413384,III +1413385,6514,Wrocław Mikołajów,51.1163,16.998395,http://kd.kiedyprzyjedzie.pl/6514,1,, +1474701,,Wrocław Mikołajów,51.1163,16.998395,,0,1413385,I +1475181,,Wrocław Mikołajów,51.1163,16.998395,,0,1413385,II +1474726,,Wrocław Mikołajów,51.1163,16.998395,,0,1413385, +1413386,6515,Wrocław Muchobór,51.111064,16.974872,http://kd.kiedyprzyjedzie.pl/6515,1,, +1474793,,Wrocław Muchobór,51.111064,16.974872,,0,1413386,II +1474963,,Wrocław Muchobór,51.111064,16.974872,,0,1413386,I +1413387,6516,Wrocław Nadodrze,51.125658,17.03299,http://kd.kiedyprzyjedzie.pl/6516,1,, +1474703,,Wrocław Nadodrze,51.125658,17.03299,,0,1413387,II +1474728,,Wrocław Nadodrze,51.125658,17.03299,,0,1413387, +1413388,6517,Wrocław Nowy Dwór,51.119688,16.955185,http://kd.kiedyprzyjedzie.pl/6517,1,, +1474950,,Wrocław Nowy Dwór,51.119688,16.955185,,0,1413388,II +1474964,,Wrocław Nowy Dwór,51.119688,16.955185,,0,1413388,I +1413389,6518,Wrocław Osobowice,51.167013,16.996673,http://kd.kiedyprzyjedzie.pl/6518,1,, +1474864,,Wrocław Osobowice,51.167013,16.996673,,0,1413389,I +1475205,,Wrocław Osobowice,51.167013,16.996673,,0,1413389,II +1413390,6576,Wrocław Partynice,51.061102,16.997656,http://kd.kiedyprzyjedzie.pl/6576,1,, +1474699,,Wrocław Partynice,51.061102,16.997656,,0,1413390,I +1474653,,Wrocław Partynice,51.061102,16.997656,,0,1413390,II +1413391,6535,Wrocław Pawłowice,51.168757,17.108368,http://kd.kiedyprzyjedzie.pl/6535,1,, +1474707,,Wrocław Pawłowice,51.168757,17.108368,,0,1413391,I +1474732,,Wrocław Pawłowice,51.168757,17.108368,,0,1413391, +1413392,6577,Wrocław Popiele,51.12245,17.11429,http://kd.kiedyprzyjedzie.pl/6577,1,, +1475168,,Wrocław Popiele,51.12245,17.11429,,0,1413392,I +1413393,6520,Wrocław Popowice,51.127361,17.00142,http://kd.kiedyprzyjedzie.pl/6520,1,, +1474862,,Wrocław Popowice,51.127361,17.00142,,0,1413393,I +1609750,,Wrocław Popowice,51.127361,17.00142,,0,1413393, +1413394,6521,Wrocław Pracze,51.169687,16.903508,http://kd.kiedyprzyjedzie.pl/6521,1,, +1475066,,Wrocław Pracze,51.169687,16.903508,,0,1413394,I +1474790,,Wrocław Pracze,51.169687,16.903508,,0,1413394,II +1413395,6522,Wrocław Psie Pole,51.150451,17.118542,http://kd.kiedyprzyjedzie.pl/6522,1,, +1474705,,Wrocław Psie Pole,51.150451,17.118542,,0,1413395,II +1475083,,Wrocław Psie Pole,51.150451,17.118542,,0,1413395,I +1474730,,Wrocław Psie Pole,51.150451,17.118542,,0,1413395, +1413396,6571,Wrocław Różanka,51.137921,17.0037,http://kd.kiedyprzyjedzie.pl/6571,1,, +1474863,,Wrocław Różanka,51.137921,17.0037,,0,1413396,I +1475206,,Wrocław Różanka,51.137921,17.0037,,0,1413396,II +1413397,6523,Wrocław Sołtysowice,51.142546,17.083544,http://kd.kiedyprzyjedzie.pl/6523,1,, +1474704,,Wrocław Sołtysowice,51.142546,17.083544,,0,1413397,II +1475166,,Wrocław Sołtysowice,51.142546,17.083544,,0,1413397,III +1475214,,Wrocław Sołtysowice,51.142546,17.083544,,0,1413397,I +1474729,,Wrocław Sołtysowice,51.142546,17.083544,,0,1413397, +1413398,6519,Wrocław Stadion,51.137042,16.94064,http://kd.kiedyprzyjedzie.pl/6519,1,, +1474791,,Wrocław Stadion,51.137042,16.94064,,0,1413398,II +1475065,,Wrocław Stadion,51.137042,16.94064,,0,1413398,I +1413399,6578,Wrocław Strachocin,51.109828,17.145707,http://kd.kiedyprzyjedzie.pl/6578,1,, +1475170,,Wrocław Strachocin,51.109828,17.145707,,0,1413399,I +1413402,6526,Wrocław Świniary,51.19794,16.969878,http://kd.kiedyprzyjedzie.pl/6526,1,, +1474865,,Wrocław Świniary,51.19794,16.969878,,0,1413402,I +1475204,,Wrocław Świniary,51.19794,16.969878,,0,1413402,II +1413400,6524,Wrocław Swojczyce,51.115866,17.121347,http://kd.kiedyprzyjedzie.pl/6524,1,, +1475179,,Wrocław Swojczyce,51.115866,17.121347,,0,1413400,I +1413401,6569,Wrocław Szczepin,51.122944,17.014241,http://kd.kiedyprzyjedzie.pl/6569,1,, +1475180,,Wrocław Szczepin,51.122944,17.014241,,0,1413401,I +1474702,,Wrocław Szczepin,51.122944,17.014241,,0,1413401,II +1474727,,Wrocław Szczepin,51.122944,17.014241,,0,1413401, +1413403,6527,Wrocław Wojnów,51.103556,17.157707,http://kd.kiedyprzyjedzie.pl/6527,1,, +1475171,,Wrocław Wojnów,51.103556,17.157707,,0,1413403,I +1413404,6579,Wrocław Wojnów Wschodni,51.098062,17.168243,http://kd.kiedyprzyjedzie.pl/6579,1,, +1475172,,Wrocław Wojnów Wschodni,51.098062,17.168243,,0,1413404,I +1413405,6528,Wrocław Wojszyce,51.069077,17.032157,http://kd.kiedyprzyjedzie.pl/6528,1,, +1474700,,Wrocław Wojszyce,51.069077,17.032157,,0,1413405,I +1474652,,Wrocław Wojszyce,51.069077,17.032157,,0,1413405,II +1413406,6529,Wrocław Zachodni,51.089956,16.949533,http://kd.kiedyprzyjedzie.pl/6529,1,, +1474902,,Wrocław Zachodni,51.089956,16.949533,,0,1413406,II +1474892,,Wrocław Zachodni,51.089956,16.949533,,0,1413406,I +1413407,6530,Wrocław Zakrzów,51.158721,17.122147,http://kd.kiedyprzyjedzie.pl/6530,1,, +1474706,,Wrocław Zakrzów,51.158721,17.122147,,0,1413407,I +1474731,,Wrocław Zakrzów,51.158721,17.122147,,0,1413407, +1413408,6531,Wrocław Żerniki,51.126159,16.916367,http://kd.kiedyprzyjedzie.pl/6531,1,, +1475007,,Wrocław Żerniki,51.126159,16.916367,,0,1413408,II +1474992,,Wrocław Żerniki,51.126159,16.916367,,0,1413408,I +1413414,6543,Ząbkowice Śląskie,50.597297,16.812778,http://kd.kiedyprzyjedzie.pl/6543,1,, +1475229,,Ząbkowice Śląskie,50.597297,16.812778,,0,1413414,I +1807949,6720,Zaborowice,51.68582,16.686785,http://kd.kiedyprzyjedzie.pl/6720,1,, +1874617,,Zaborowice,51.68582,16.686785,,0,1807949, +1413409,6534,Zagajnik,51.270119,15.299446,http://kd.kiedyprzyjedzie.pl/6534,1,, +1475132,,Zagajnik,51.270119,15.299446,,0,1413409,II +1475140,,Zagajnik,51.270119,15.299446,,0,1413409,I +1609788,,Zagajnik,51.270119,15.299446,,0,1413409, +1413422,269,Żagań,51.603766,15.315421,http://kd.kiedyprzyjedzie.pl/269,1,, +1475031,,Żagań,51.603766,15.315421,,0,1413422,I +1413410,6617,Zagórze Śląskie,50.753741,16.403548,http://kd.kiedyprzyjedzie.pl/6617,1,, +1474800,,Zagórze Śląskie,50.753741,16.403548,,0,1413410,I +1413411,6537,Zakrzów Kotowice,51.035785,17.210053,http://kd.kiedyprzyjedzie.pl/6537,1,, +1474905,,Zakrzów Kotowice,51.035785,17.210053,,0,1413411,I +1413412,6540,Zaręba,51.098102,15.219586,http://kd.kiedyprzyjedzie.pl/6540,1,, +1474941,,Zaręba,51.098102,15.219586,,0,1413412,II +1413423,6554,Żarów,50.939498,16.492777,http://kd.kiedyprzyjedzie.pl/6554,1,, +1474796,,Żarów,50.939498,16.492777,,0,1413423,I +1413424,270,Żary,51.634465,15.137714,http://kd.kiedyprzyjedzie.pl/270,1,, +1475064,,Żary,51.634465,15.137714,,0,1413424,II +1475061,,Żary,51.634465,15.137714,,0,1413424,I +1475238,,Żary,51.634465,15.137714,,0,1413424,III +1475032,,Żary,51.634465,15.137714,,0,1413424,IV +1413413,256,Zasieki,51.735485,14.669205,http://kd.kiedyprzyjedzie.pl/256,1,, +1475037,,Zasieki,51.735485,14.669205,,0,1413413,I +1413415,7561,Zduny,51.646421,17.366268,http://kd.kiedyprzyjedzie.pl/7561,1,, +1475096,,Zduny,51.646421,17.366268,,0,1413415,II +1413416,6545,Zebrzydowa,51.254653,15.389217,http://kd.kiedyprzyjedzie.pl/6545,1,, +1609789,,Zebrzydowa,51.254653,15.389217,,0,1413416, +1475137,,Zebrzydowa,51.254653,15.389217,,0,1413416,I +1475131,,Zebrzydowa,51.254653,15.389217,,0,1413416,II +1413425,6555,Żelazno,50.371461,16.674801,http://kd.kiedyprzyjedzie.pl/6555,1,, +1474745,,Żelazno,50.371461,16.674801,,0,1413425, +1413417,264,Zgorzelec,51.140016,15.00409,http://kd.kiedyprzyjedzie.pl/264,1,, +1474616,,Zgorzelec,51.140016,15.00409,,0,1413417,III +1475133,,Zgorzelec,51.140016,15.00409,,0,1413417,II +1474987,,Zgorzelec,51.140016,15.00409,,0,1413417,I +1413418,266,Zgorzelec Miasto,51.154803,15.020129,http://kd.kiedyprzyjedzie.pl/266,1,, +1475134,,Zgorzelec Miasto,51.154803,15.020129,,0,1413418,II +1474986,,Zgorzelec Miasto,51.154803,15.020129,,0,1413418,I +1413420,6550,Ziębice,50.608498,17.033889,http://kd.kiedyprzyjedzie.pl/6550,1,, +1474642,,Ziębice,50.608498,17.033889,,0,1413420,I +1474890,,Ziębice,50.608498,17.033889,,0,1413420,II +1413419,267,Zielona Góra Główna,51.947463,15.513216,http://kd.kiedyprzyjedzie.pl/267,1,, +1536287,,Zielona Góra Główna,51.947463,15.513216,,0,1413419,III +1536288,,Zielona Góra Główna,51.947463,15.513216,,0,1413419,II +1845557,,Zielona Góra Główna,51.947463,15.513216,,0,1413419,I +1473734,6300,Zielona Góra Nowy Kisielin,51.915746,15.62647,http://kd.kiedyprzyjedzie.pl/6300,1,, +1536320,,Zielona Góra Nowy Kisielin,51.915746,15.62647,,0,1473734,II +1536290,,Zielona Góra Nowy Kisielin,51.915746,15.62647,,0,1473734,I +1473735,7473,Zielona Góra Stary Kisielin,51.937097,15.589203,http://kd.kiedyprzyjedzie.pl/7473,1,, +1536291,,Zielona Góra Stary Kisielin,51.937097,15.589203,,0,1473735,II +1536319,,Zielona Góra Stary Kisielin,51.937097,15.589203,,0,1473735,I +1413426,6557,Żmigród,51.47534,16.901873,http://kd.kiedyprzyjedzie.pl/6557,1,, +1475199,,Żmigród,51.47534,16.901873,,0,1413426,II +1474871,,Żmigród,51.47534,16.901873,,0,1413426,I +1413421,9449,Zoblitz,51.123652,14.750938,http://kd.kiedyprzyjedzie.pl/9449,1,, +1474621,,Zoblitz,51.123652,14.750938,,0,1413421, +1413427,6558,Żórawina,50.9835,17.049596,http://kd.kiedyprzyjedzie.pl/6558,1,, +1474857,,Żórawina,50.9835,17.049596,,0,1413427,II +1475193,,Żórawina,50.9835,17.049596,,0,1413427,I diff --git a/src/rail_network_graph/assets/data/gtfs_data/trips.txt b/src/rail_network_graph/assets/data/gtfs_data/trips.txt new file mode 100644 index 0000000..b49e2ab --- /dev/null +++ b/src/rail_network_graph/assets/data/gtfs_data/trips.txt @@ -0,0 +1,1458 @@ +route_id,service_id,trip_id,trip_headsign,wheelchair_accessible,block_id +161119,329711_256252,24984854_256252,Sędzisław,0,25400/60461 +161119,329711_256253,24984855_256253,Sędzisław,0,25400/60461 +161119,329711_256254,24984856_256254,Sędzisław,0,25402/60463 +161119,329711_256255,24984857_256255,Sędzisław,0,25402/60463 +161119,329711_256258,24984860_256258,Sędzisław,0,25404/60465 +161119,329711_256259,24984861_256259,Sędzisław,0,25406/60465 +161119,329711_256260,24984862_256260,Sędzisław,0,25406/60465 +161119,329711_256262,24984864_256262,Sędzisław,0,25408/60467 +161119,329711_256263,24984865_256263,Sędzisław,0,25408/60467 +161119,329711_256266,24984868_256266,Sędzisław,0,25410/60469 +161119,329711_256267,24984869_256267,Sędzisław,0,25410/60469 +161119,329711_256268,24984870_256268,Sędzisław,0,25412/60471 +161119,329711_256270,24984872_256270,Sędzisław,0,25414/60473 +161119,329711_256271,24984873_256271,Sędzisław,0,25416/60473 +161119,329711_256272,24984874_256272,Sędzisław,0,25416/60473 +161120,329712_256273,24984875_256273,Wrocław Główny,0,25423/69022 +161120,329712_256274,24984876_256274,Wrocław Główny,0,25423/69022 +161120,329712_256276,24984878_256276,Wrocław Główny,0,25451/69020 +161120,329712_256277,24984879_256277,Wrocław Główny,0,25451/69020 +161121,329713_256281,24984883_256281,Szklarska Poręba Górna,0,2650 +161121,329713_256282,24984884_256282,Szklarska Poręba Górna,0,2650 +161121,329713_256288,24984890_256288,Liberec,0,2651 +161121,329713_256289,24984891_256289,Harrachov,0,2651 +161121,329713_256293,24984895_256293,Szklarska Poręba Górna,0,2652 +161121,329713_256294,24984896_256294,Szklarska Poręba Górna,0,2652 +161121,329713_256303,24984905_256303,Liberec,0,2653 +161121,329713_256304,24984906_256304,Harrachov,0,2653 +161121,329713_256308,24984910_256308,Szklarska Poręba Górna,0,2654 +161121,329713_256309,24984911_256309,Szklarska Poręba Górna,0,2654 +161121,329713_256318,24984920_256318,Liberec,0,2655 +161121,329713_256319,24984921_256319,Harrachov,0,2655 +161121,329713_256323,24984925_256323,Szklarska Poręba Górna,0,2656 +161121,329713_256324,24984926_256324,Szklarska Poręba Górna,0,2656 +161121,329713_256333,24984935_256333,Liberec,0,2657 +161121,329713_256334,24984936_256334,Harrachov,0,2657 +161121,329713_256338,24984940_256338,Szklarska Poręba Górna,0,2658 +161121,329713_256339,24984941_256339,Szklarska Poręba Górna,0,2658 +161121,329713_256347,24984949_256347,Liberec,0,2659 +161121,329713_256348,24984950_256348,Harrachov,0,2659 +161121,329713_256352,24984954_256352,Szklarska Poręba Górna,0,2660 +161121,329713_256353,24984955_256353,Szklarska Poręba Górna,0,2660 +161121,329713_256361,24984963_256361,Liberec,0,2661 +161121,329713_256362,24984964_256362,Harrachov,0,2661 +161121,329713_256366,24984968_256366,Szklarska Poręba Górna,0,2662 +161121,329713_256367,24984969_256367,Szklarska Poręba Górna,0,2662 +161121,329713_256376,24984978_256376,Liberec,0,2663 +161121,329713_256377,24984979_256377,Harrachov,0,2663 +161121,329713_256381,24984983_256381,Szklarska Poręba Górna,0,2664 +161121,329713_256382,24984984_256382,Szklarska Poręba Górna,0,2664 +161121,329713_256390,24984992_256390,Liberec,0,2665 +161121,329713_256391,24984993_256391,Harrachov,0,2665 +161121,329713_256395,24984997_256395,Szklarska Poręba Górna,0,2666 +161121,329713_256396,24984998_256396,Szklarska Poręba Górna,0,2666 +161121,329713_256404,24985006_256404,Liberec,0,2667 +161121,329713_256405,24985007_256405,Harrachov,0,2667 +161121,329713_256409,24985011_256409,Szklarska Poręba Górna,0,2668 +161121,329713_256410,24985012_256410,Szklarska Poręba Górna,0,2668 +161121,329713_256418,24985020_256418,Liberec,0,2669 +161121,329713_256419,24985021_256419,Harrachov,0,2669 +161121,329713_256423,24985025_256423,Szklarska Poręba Górna,0,2670 +161121,329713_256424,24985026_256424,Szklarska Poręba Górna,0,2670 +161121,329713_256431,24985033_256431,Liberec,0,2671 +161121,329713_256432,24985034_256432,Harrachov,0,2671 +161122,329714_256436,24985038_256436,Jelenia Góra,0,5301/69870 +161122,329714_256437,24985039_256437,Jelenia Góra,0,5301/69870 +161122,329714_256441,24985043_256441,Jelenia Góra,0,5303/69872 +161122,329714_256442,24985044_256442,Jelenia Góra,0,5303/69872 +161122,329714_256446,24985048_256446,Świeradów-Zdrój,0,5305/69874/69875 +161122,329714_256447,24985049_256447,Świeradów-Zdrój,0,5305/69874/69875 +161122,329714_256451,24985053_256451,Jelenia Góra,0,5307/69878 +161122,329714_256452,24985054_256452,Jelenia Góra,0,5307/69878 +161122,329714_256456,24985058_256456,Jelenia Góra,0,5309/69880 +161122,329714_256457,24985059_256457,Jelenia Góra,0,5309/69880 +161122,329714_256461,24985063_256461,Jelenia Góra,0,5311/69882 +161122,329714_256462,24985064_256462,Jelenia Góra,0,5311/69882 +161122,329714_256470,24985072_256470,Jelenia Góra,0,5313/69884 +161122,329714_256471,24985073_256471,Gryfów Śląski,0,5313/69884 +161123,329715_256475,24985077_256475,Węgliniec,0,5315/69532 +161123,329715_256476,24985078_256476,Węgliniec,0,5315/69532 +161124,329716_256480,24985082_256480,Wrocław Główny,0,5461/69024 +161124,329716_256481,24985083_256481,Wrocław Główny,0,5461/69026 +161124,329716_256482,24985084_256482,Wrocław Główny,0,5463/69024 +161124,329716_256483,24985085_256483,Wrocław Główny,0,5463/69024 +161124,329716_256484,24985086_256484,Wrocław Główny,0,5463/69024 +161124,329716_256489,24985091_256489,Wrocław Główny,0,5463/69026 +161125,329717_256491,24985093_256491,Wrocław Główny,0,5623/76002 +161125,329717_256492,24985094_256492,Wrocław Główny,0,5623/76002 +161125,329717_256494,24985096_256494,Wrocław Główny,0,5627/76000 +161125,329717_256495,24985097_256495,Wrocław Główny,0,5627/76000 +161123,329715_256505,24985107_256505,Dresden Hbf,0,5670 +161123,329715_256506,24985108_256506,Görlitz,0,5670 +161123,329715_256514,24985116_256514,Zgorzelec,0,5671 +161123,329715_256515,24985117_256515,Zgorzelec,0,5671 +161123,329715_256520,24985122_256520,Dresden Hbf,0,5672 +161123,329715_256523,24985125_256523,Görlitz,0,5672 +161123,329715_256528,24985130_256528,Zgorzelec,0,5673 +161123,329715_256531,24985133_256531,Zgorzelec,0,5673 +161123,329715_256536,24985138_256536,Dresden Hbf,0,5674 +161123,329715_256539,24985141_256539,Görlitz,0,5674 +161123,329715_256544,24985146_256544,Zgorzelec,0,5675 +161123,329715_256547,24985149_256547,Zgorzelec,0,5675 +161123,329715_256555,24985157_256555,Bischofswerda,0,5676 +161123,329715_256556,24985158_256556,Görlitz,0,5676 +161123,329715_256566,24985168_256566,Zgorzelec,0,5677 +161123,329715_256567,24985169_256567,Zgorzelec,0,5677 +161123,329715_256569,24985171_256569,Zgorzelec,0,5677 +161123,329715_256574,24985176_256574,Dresden Hbf,0,5678 +161123,329715_256577,24985179_256577,Görlitz,0,5678 +161123,329715_256582,24985184_256582,Zgorzelec,0,5679 +161123,329715_256585,24985187_256585,Zgorzelec,0,5679 +161123,329715_256598,24985200_256598,Bischofswerda,0,5680 +161123,329715_256599,24985201_256599,Bischofswerda,0,5680 +161123,329715_256600,24985202_256600,Görlitz,0,5680 +161123,329715_256601,24985203_256601,Görlitz,0,5680 +161123,329715_256610,24985212_256610,Zgorzelec,0,5681 +161123,329715_256611,24985213_256611,Zgorzelec,0,5681 +161123,329715_256616,24985218_256616,Dresden Hbf,0,5682 +161123,329715_256619,24985221_256619,Görlitz,0,5682 +161123,329715_256624,24985226_256624,Zgorzelec,0,5683 +161123,329715_256627,24985229_256627,Zgorzelec,0,5683 +161123,329715_256635,24985237_256635,Bischofswerda,0,5684 +161123,329715_256636,24985238_256636,Görlitz,0,5684 +161123,329715_256645,24985247_256645,Zgorzelec,0,5685 +161123,329715_256646,24985248_256646,Zgorzelec,0,5685 +161123,329715_256656,24985258_256656,Bischofswerda,0,5686 +161123,329715_256657,24985259_256657,Görlitz,0,5686 +161123,329715_256659,24985261_256659,Görlitz,0,5686 +161123,329715_256668,24985270_256668,Zgorzelec,0,5687 +161123,329715_256669,24985271_256669,Zgorzelec,0,5687 +161123,329715_256673,24985275_256673,Dresden Hbf,0,5688 +161123,329715_256678,24985280_256678,Görlitz,0,5688 +161123,329715_256683,24985285_256683,Zgorzelec,0,5689 +161123,329715_256686,24985288_256686,Zgorzelec,0,5689 +161122,329714_256690,24985292_256690,Jelenia Góra,0,5791/69876 +161122,329714_256691,24985293_256691,Jelenia Góra,0,5791/69876 +161123,329715_256696,24985298_256696,Zgorzelec,0,5793 +161123,329715_256699,24985301_256699,Zgorzelec,0,5793 +161123,329715_256705,24985307_256705,Dresden Hbf,0,5794 +161123,329715_256708,24985310_256708,Görlitz,0,5794 +161126,329718_256709,24985311_256709,Wrocław Główny,0,60118 +161127,329719_256713,24985315_256713,Kudowa-Zdrój,0,60121 +161127,329719_256714,24985316_256714,Kudowa-Zdrój,0,60121 +161127,329719_256717,24985319_256717,Kudowa-Zdrój,0,60123 +161127,329719_256718,24985320_256718,Kudowa-Zdrój,0,60123 +161126,329718_256720,24985322_256720,Wrocław Główny,0,60124 +161128,329720_256721,24985323_256721,Świdnica Miasto,0,60201 +161128,329720_256723,24985325_256723,Kobierzyce,0,60203 +161128,329720_256724,24985326_256724,Kobierzyce,0,60203 +161128,329720_256726,24985328_256726,Świdnica Miasto,0,60205 +161128,329720_256727,24985329_256727,Kobierzyce,0,60207 +161128,329720_256729,24985331_256729,Świdnica Miasto,0,60209 +161128,329720_256730,24985332_256730,Świdnica Miasto,0,60209 +161128,329720_256731,24985333_256731,Świdnica Miasto,0,60211 +161128,329720_256732,24985334_256732,Świdnica Miasto,0,60211 +161128,329720_256733,24985335_256733,Sobótka Zachodnia,0,60213 +161128,329720_256735,24985337_256735,Świdnica Miasto,0,60215 +161128,329720_256737,24985339_256737,Bielawa Zachodnia,0,60217/6 +161128,329720_256738,24985340_256738,Bielawa Zachodnia,0,60217/6 +161128,329720_256742,24985344_256742,Jaworzyna Śląska,0,60219 +161128,329720_256743,24985345_256743,Jaworzyna Śląska,0,60219 +161128,329720_256744,24985346_256744,Bielawa Zachodnia,0,60221/0 +161128,329720_256745,24985347_256745,Bielawa Zachodnia,0,60221/0 +161128,329720_256747,24985349_256747,Wrocław Główny,0,60222 +161128,329720_256748,24985350_256748,Wrocław Główny,0,60222 +161129,329721_256750,24985352_256750,Trzebnica,0,60238/9 +161129,329721_256751,24985353_256751,Trzebnica,0,60238/9 +161128,329720_256752,24985354_256752,Wrocław Główny,0,60240 +161128,329720_256753,24985355_256753,Wrocław Główny,0,60240 +161128,329720_256754,24985356_256754,Wrocław Główny,0,60243/2 +161128,329720_256755,24985357_256755,Wrocław Główny,0,60243/2 +161128,329720_256756,24985358_256756,Wrocław Główny,0,60244 +161128,329720_256757,24985359_256757,Wrocław Główny,0,60244 +161130,329722_256760,24985362_256760,Wrocław Główny,0,60246 +161130,329722_256761,24985363_256761,Wrocław Główny,0,60246 +161129,329721_256763,24985365_256763,Trzebnica,0,60248/9 +161129,329721_256764,24985366_256764,Trzebnica,0,60248/9 +161128,329720_256766,24985368_256766,Wrocław Główny,0,60250 +161128,329720_256767,24985369_256767,Wrocław Główny,0,60250 +161128,329720_256769,24985371_256769,Wrocław Główny,0,60252 +161128,329720_256770,24985372_256770,Wrocław Główny,0,60252 +161128,329720_256771,24985373_256771,Wrocław Główny,0,60254 +161128,329720_256773,24985375_256773,Wrocław Główny,0,60257/6 +161128,329720_256774,24985376_256774,Wrocław Główny,0,60257/6 +161128,329720_256775,24985377_256775,Wrocław Główny,0,60258 +161129,329721_256777,24985379_256777,Trzebnica,0,60260/1 +161129,329721_256778,24985380_256778,Trzebnica,0,60260/1 +161128,329720_256780,24985382_256780,Wrocław Główny,0,60262 +161128,329720_256781,24985383_256781,Wrocław Główny,0,60265/4 +161128,329720_256783,24985385_256783,Wrocław Główny,0,60266 +161128,329720_256785,24985387_256785,Wrocław Główny,0,60269/8 +161128,329720_256786,24985388_256786,Wrocław Główny,0,60269/8 +161128,329720_256788,24985390_256788,Wrocław Główny,0,60270 +161128,329720_256789,24985391_256789,Wrocław Główny,0,60270 +161128,329720_256791,24985393_256791,Wrocław Główny,0,60272 +161128,329720_256792,24985394_256792,Wrocław Główny,0,60272 +161128,329720_256794,24985396_256794,Wrocław Główny,0,60275/4 +161128,329720_256795,24985397_256795,Wrocław Główny,0,60275/4 +161129,329721_256797,24985399_256797,Trzebnica,0,60277/6 +161129,329721_256798,24985400_256798,Trzebnica,0,60277/6 +161129,329721_256801,24985403_256801,Trzebnica,0,60278/9 +161129,329721_256802,24985404_256802,Trzebnica,0,60278/9 +161128,329720_256806,24985408_256806,Bielawa Zachodnia,0,60287/6 +161128,329720_256807,24985409_256807,Bielawa Zachodnia,0,60287/6 +161121,329713_256808,24985410_256808,Polana Jakuszycka,0,60301 +161121,329713_256809,24985411_256809,Polana Jakuszycka,0,60303 +161121,329713_256810,24985412_256810,Polana Jakuszycka,0,60305 +161121,329713_256811,24985413_256811,Polana Jakuszycka,0,60307 +161121,329713_256812,24985414_256812,Polana Jakuszycka,0,60309 +161121,329713_256813,24985415_256813,Polana Jakuszycka,0,60311 +161121,329713_256818,24985420_256818,Polana Jakuszycka,0,60313 +161121,329713_256819,24985421_256819,Polana Jakuszycka,0,60315 +161121,329713_256820,24985422_256820,Polana Jakuszycka,0,60317 +161121,329713_256821,24985423_256821,Polana Jakuszycka,0,60319 +161131,329723_256823,24985425_256823,Kłodzko Miasto,0,60320 +161131,329723_256824,24985426_256824,Kłodzko Miasto,0,60320 +161131,329723_256826,24985428_256826,Kłodzko Miasto,0,60322 +161131,329723_256827,24985429_256827,Kłodzko Miasto,0,60322 +161131,329723_256829,24985431_256829,Kłodzko Miasto,0,60324 +161131,329723_256830,24985432_256830,Kłodzko Miasto,0,60324 +161131,329723_256832,24985434_256832,Kłodzko Miasto,0,60326 +161131,329723_256833,24985435_256833,Kłodzko Miasto,0,60326 +161131,329723_256835,24985437_256835,Kłodzko Miasto,0,60328 +161131,329723_256836,24985438_256836,Kłodzko Miasto,0,60328 +161131,329723_256838,24985440_256838,Kłodzko Miasto,0,60330 +161131,329723_256839,24985441_256839,Kłodzko Miasto,0,60330 +161131,329723_256841,24985443_256841,Kłodzko Miasto,0,60332 +161131,329723_256842,24985444_256842,Kłodzko Miasto,0,60332 +161121,329713_256843,24985445_256843,Szklarska Poręba Górna,0,60350 +161121,329713_256844,24985446_256844,Szklarska Poręba Górna,0,60352 +161121,329713_256845,24985447_256845,Szklarska Poręba Górna,0,60354 +161121,329713_256846,24985448_256846,Szklarska Poręba Górna,0,60356 +161121,329713_256847,24985449_256847,Szklarska Poręba Górna,0,60358 +161121,329713_256848,24985450_256848,Szklarska Poręba Górna,0,60360 +161121,329713_256849,24985451_256849,Szklarska Poręba Górna,0,60362 +161121,329713_256850,24985452_256850,Szklarska Poręba Górna,0,60364 +161121,329713_256851,24985453_256851,Szklarska Poręba Górna,0,60366 +161121,329713_256852,24985454_256852,Szklarska Poręba Górna,0,60368 +161121,329713_256853,24985455_256853,Szklarska Poręba Górna,0,60370 +161127,329719_256856,24985458_256856,Kudowa-Zdrój,0,60401 +161127,329719_256857,24985459_256857,Kudowa-Zdrój,0,60401 +161132,329724_256861,24985463_256861,Kłodzko Miasto,0,60402/3 +161132,329724_256863,24985465_256863,Kłodzko Miasto,0,60402/3 +161127,329719_256866,24985468_256866,Kudowa-Zdrój,0,60405 +161127,329719_256867,24985469_256867,Kudowa-Zdrój,0,60405 +161133,329725_256870,24985472_256870,Kudowa-Zdrój,0,60407/6 +161133,329725_256871,24985473_256871,Kudowa-Zdrój,0,60407/6 +161133,329725_256873,24985475_256873,Kłodzko Miasto,0,60409/8 +161133,329725_256874,24985476_256874,Kłodzko Miasto,0,60409/8 +161133,329725_256876,24985478_256876,Kłodzko Miasto,0,60410/1 +161133,329725_256877,24985479_256877,Kłodzko Miasto,0,60410/1 +161133,329725_256879,24985481_256879,Kłodzko Miasto,0,60412/3 +161133,329725_256880,24985482_256880,Kłodzko Miasto,0,60412/3 +161127,329719_256886,24985488_256886,Kudowa-Zdrój,0,60415 +161127,329719_256887,24985489_256887,Kudowa-Zdrój,0,60415 +161127,329719_256889,24985491_256889,Kudowa-Zdrój,0,60415 +161133,329725_256891,24985493_256891,Kłodzko Miasto,0,60418/9 +161133,329725_256892,24985494_256892,Kłodzko Miasto,0,60419/8 +161133,329725_256894,24985496_256894,Kłodzko Główne,0,60420 +161133,329725_256895,24985497_256895,Kłodzko Główne,0,60421/0 +161133,329725_256897,24985499_256897,Wałbrzych Miasto,0,60431/0 +161133,329725_256898,24985500_256898,Wałbrzych Miasto,0,60431/0 +161127,329719_256901,24985503_256901,Kłodzko Miasto,0,60432 +161127,329719_256902,24985504_256902,Kłodzko Miasto,0,60432 +161133,329725_256904,24985506_256904,Wałbrzych Główny,0,60434/5 +161133,329725_256905,24985507_256905,Wałbrzych Miasto,0,60434/5 +161127,329719_256910,24985512_256910,Kłodzko Miasto,0,60436 +161127,329719_256912,24985514_256912,Kłodzko Miasto,0,60436 +161133,329725_256915,24985517_256915,Wałbrzych Główny,0,60438/9 +161133,329725_256916,24985518_256916,Wałbrzych Główny,0,60438/9 +161127,329719_256919,24985521_256919,Kłodzko Miasto,0,60440 +161127,329719_256920,24985522_256920,Kłodzko Miasto,0,60440 +161134,329726_256924,24985526_256924,Jelenia Góra,0,60444/5 +161134,329726_256927,24985529_256927,Jelenia Góra,0,60444/5 +161127,329719_256930,24985532_256930,Kłodzko Główne,0,60446 +161127,329719_256931,24985533_256931,Kłodzko Główne,0,60446 +161119,329711_256933,24985535_256933,Kralovec,0,60480/25401 +161119,329711_256934,24985536_256934,Kralovec,0,60480/25401 +161119,329711_256935,24985537_256935,Kralovec,0,60482/25403 +161119,329711_256936,24985538_256936,Trutnov hl. n.,0,60482/25405 +161119,329711_256937,24985539_256937,Kralovec,0,60482/25405 +161119,329711_256940,24985542_256940,Kralovec,0,60484/25407 +161119,329711_256942,24985544_256942,Kralovec,0,60484/25447 +161119,329711_256945,24985547_256945,Trutnov hl. n.,0,60486/25409 +161119,329711_256946,24985548_256946,Kralovec,0,60486/25409 +161119,329711_256948,24985550_256948,Kralovec,0,60488/25411 +161119,329711_256949,24985551_256949,Kralovec,0,60488/25411 +161119,329711_256951,24985553_256951,Kralovec,0,60490/25413 +161119,329711_256952,24985554_256952,Trutnov hl. n.,0,60490/25415 +161119,329711_256953,24985555_256953,Kralovec,0,60490/25415 +161119,329711_256955,24985557_256955,Trutnov hl. n.,0,60492/25417 +161119,329711_256956,24985558_256956,Kralovec,0,60492/25417 +161135,329727_256959,24985561_256959,Chocianów,0,60501 +161135,329727_256960,24985562_256960,Chocianów,0,60501 +161135,329727_256961,24985563_256961,Chocianów,0,60503 +161135,329727_256962,24985564_256962,Chocianów,0,60503 +161135,329727_256964,24985566_256964,Chocianów,0,60505 +161135,329727_256965,24985567_256965,Chocianów,0,60505 +161135,329727_256967,24985569_256967,Chocianów,0,60507 +161135,329727_256968,24985570_256968,Chocianów,0,60509 +161135,329727_256969,24985571_256969,Chocianów,0,60509 +161135,329727_256971,24985573_256971,Chocianów,0,60511 +161135,329727_256972,24985574_256972,Chocianów,0,60511 +161135,329727_256973,24985575_256973,Chocianów,0,60513 +161135,329727_256974,24985576_256974,Chocianów,0,60513 +161135,329727_256976,24985578_256976,Chocianów,0,60515 +161135,329727_256977,24985579_256977,Chocianów,0,60515 +161135,329727_256980,24985582_256980,Legnica,0,60570 +161135,329727_256981,24985583_256981,Legnica,0,60570 +161135,329727_256984,24985586_256984,Legnica,0,60572 +161135,329727_256985,24985587_256985,Legnica,0,60572 +161135,329727_256987,24985589_256987,Legnica,0,60574 +161135,329727_256988,24985590_256988,Legnica,0,60574 +161135,329727_256989,24985591_256989,Legnica,0,60576 +161135,329727_256990,24985592_256990,Legnica,0,60576 +161135,329727_256991,24985593_256991,Legnica,0,60578 +161135,329727_256992,24985594_256992,Legnica,0,60578 +161135,329727_256993,24985595_256993,Legnica,0,60580 +161135,329727_256994,24985596_256994,Legnica,0,60580 +161135,329727_256995,24985597_256995,Legnica,0,60582 +161135,329727_256996,24985598_256996,Legnica,0,60582 +161135,329727_256998,24985600_256998,Legnica,0,60584 +161135,329727_256999,24985601_256999,Legnica,0,60584 +161136,329728_257002,24985604_257002,Wrocław Główny,0,60620 +161136,329728_257003,24985605_257003,Wrocław Główny,0,60620 +161136,329728_257004,24985606_257004,Wrocław Główny,0,60620 +161136,329728_257005,24985607_257005,Wrocław Główny,0,60620 +161137,329729_257008,24985610_257008,Rawicz,0,60622/3 +161137,329729_257009,24985611_257009,Rawicz,0,60622/3 +161136,329728_257011,24985613_257011,Wrocław Główny,0,60624 +161136,329728_257012,24985614_257012,Wrocław Główny,0,60626 +161136,329728_257013,24985615_257013,Wrocław Główny,0,60626 +161137,329729_257015,24985617_257015,Rawicz,0,60628/9 +161137,329729_257017,24985619_257017,Rawicz,0,60628/9 +161136,329728_257019,24985621_257019,Wrocław Główny,0,60630 +161136,329728_257020,24985622_257020,Wrocław Główny,0,60630 +161136,329728_257022,24985624_257022,Wrocław Główny,0,60632 +161136,329728_257023,24985625_257023,Wrocław Główny,0,60632 +161137,329729_257025,24985627_257025,Rawicz,0,60634/5 +161137,329729_257026,24985628_257026,Rawicz,0,60634/5 +161137,329729_257028,24985630_257028,Rawicz,0,60636/7 +161137,329729_257029,24985631_257029,Rawicz,0,60636/7 +161136,329728_257030,24985632_257030,Wrocław Główny,0,60638 +161136,329728_257032,24985634_257032,Wrocław Główny,0,60640 +161136,329728_257033,24985635_257033,Wrocław Główny,0,60640 +161136,329728_257035,24985637_257035,Wrocław Główny,0,60642 +161136,329728_257038,24985640_257038,Wrocław Główny,0,60642 +161136,329728_257039,24985641_257039,Wrocław Główny,0,60644 +161137,329729_257041,24985643_257041,Rawicz,0,60648/9 +161137,329729_257042,24985644_257042,Rawicz,0,60648/9 +161137,329729_257048,24985650_257048,Rawicz,0,60650/1 +161137,329729_257050,24985652_257050,Rawicz,0,60650/1 +161136,329728_257052,24985654_257052,Wrocław Główny,0,60652 +161136,329728_257053,24985655_257053,Wrocław Główny,0,60652 +161137,329729_257056,24985658_257056,Rawicz,0,60654/5 +161137,329729_257057,24985659_257057,Rawicz,0,60654/5 +161138,329730_257062,24985664_257062,Rawicz,0,60655 +161138,329730_257066,24985668_257066,Rawicz,0,60657 +161138,329730_257067,24985669_257067,Rawicz,0,60657 +161137,329729_257072,24985674_257072,Rawicz,0,60660/1 +161137,329729_257073,24985675_257073,Rawicz,0,60660/1 +161137,329729_257082,24985684_257082,Rawicz,0,60662/3 +161137,329729_257083,24985685_257083,Rawicz,0,60662/3 +161136,329728_257085,24985687_257085,Kłodzko Główne,0,60668 +161136,329728_257087,24985689_257087,Wrocław Główny,0,60672 +161136,329728_257091,24985693_257091,Wrocław Główny,0,60674 +161136,329728_257092,24985694_257092,Wrocław Główny,0,60674 +161138,329730_257095,24985697_257095,Rawicz,0,60677 +161138,329730_257096,24985698_257096,Rawicz,0,60677 +161138,329730_257098,24985700_257098,Rawicz,0,60679 +161138,329730_257099,24985701_257099,Rawicz,0,60679 +161139,329731_257101,24985703_257101,Jelcz-Laskowice,0,60700/1 +161139,329731_257102,24985704_257102,Jelcz-Laskowice,0,60700/1 +161140,329732_257103,24985705_257103,Kąty Wrocławskie,0,60751 +161140,329732_257104,24985706_257104,Kąty Wrocławskie,0,60751 +161140,329732_257106,24985708_257106,Kąty Wrocławskie,0,60753 +161140,329732_257107,24985709_257107,Kąty Wrocławskie,0,60753 +161140,329732_257109,24985711_257109,Kąty Wrocławskie,0,60755 +161140,329732_257110,24985712_257110,Kąty Wrocławskie,0,60755 +161140,329732_257111,24985713_257111,Kąty Wrocławskie,0,60757 +161140,329732_257112,24985714_257112,Kąty Wrocławskie,0,60757 +161140,329732_257114,24985716_257114,Kąty Wrocławskie,0,60759 +161140,329732_257115,24985717_257115,Kąty Wrocławskie,0,60759 +161140,329732_257117,24985719_257117,Wrocław Główny,0,60770 +161140,329732_257118,24985720_257118,Wrocław Główny,0,60770 +161140,329732_257120,24985722_257120,Wrocław Główny,0,60772 +161140,329732_257121,24985723_257121,Wrocław Główny,0,60772 +161140,329732_257123,24985725_257123,Wrocław Główny,0,60774 +161140,329732_257124,24985726_257124,Wrocław Główny,0,60774 +161140,329732_257126,24985728_257126,Wrocław Główny,0,60776 +161140,329732_257127,24985729_257127,Wrocław Główny,0,60776 +161140,329732_257129,24985731_257129,Wrocław Główny,0,60778 +161140,329732_257130,24985732_257130,Wrocław Główny,0,60778 +161141,329733_257133,24985735_257133,Jelcz-Laskowice,0,60790 +161141,329733_257134,24985736_257134,Jelcz-Laskowice,0,60790 +161142,329734_257136,24985738_257136,Głuszyca,0,60840/1 +161142,329734_257137,24985739_257137,Głuszyca,0,60840/1 +161140,329732_257140,24985742_257140,Jelenia Góra,0,60851 +161140,329732_257141,24985743_257141,Jelenia Góra,0,60851 +161122,329714_257149,24985751_257149,Görlitz,0,60864/60865/5312 +161122,329714_257150,24985752_257150,Görlitz,0,60864/60865/5312 +161137,329729_257153,24985755_257153,Rawicz,0,6280/0646/0647 +161137,329729_257154,24985756_257154,Rawicz,0,6280/0646/0647 +161136,329728_257157,24985759_257157,Wrocław Główny,0,6282/0658 +161136,329728_257159,24985761_257159,Wrocław Główny,0,6282/6202 +161137,329729_257161,24985763_257161,Rawicz,0,6284/0664/0665 +161137,329729_257163,24985765_257163,Rawicz,0,6284/0664/0665 +161136,329728_257165,24985767_257165,Wrocław Główny,0,6284/0666 +161136,329728_257166,24985768_257166,Wrocław Główny,0,6284/0666 +161136,329728_257168,24985770_257168,Wrocław Główny,0,6286/0670 +161136,329728_257170,24985772_257170,Wrocław Główny,0,6286/0670 +161143,329735_257172,24985774_257172,Głuszyca,0,66103/2 +161144,329736_257175,24985777_257175,Kudowa-Zdrój,0,66105/4 +161144,329736_257176,24985778_257176,Kudowa-Zdrój,0,66105/4 +161144,329736_257178,24985780_257178,Kłodzko Główne,0,66107/6 +161144,329736_257179,24985781_257179,Kłodzko Główne,0,66107/6 +161145,329737_257182,24985784_257182,Wrocław Główny,0,66108/9 +161145,329737_257183,24985785_257183,Wrocław Główny,0,66108/9 +161145,329737_257185,24985787_257185,Wrocław Główny,0,66110/1 +161145,329737_257186,24985788_257186,Wrocław Główny,0,66110/1 +161127,329719_257191,24985793_257191,Wrocław Główny,0,66112 +161127,329719_257192,24985794_257192,Wrocław Główny,0,66112 +161127,329719_257195,24985797_257195,Wrocław Główny,0,66114 +161127,329719_257196,24985798_257196,Wrocław Główny,0,66114 +161136,329728_257198,24985800_257198,Wrocław Główny,0,66116 +161136,329728_257199,24985801_257199,Wrocław Główny,0,66116 +161146,329738_257200,24985802_257200,Wrocław Główny,0,66118 +161146,329738_257202,24985804_257202,Wrocław Główny,0,66130 +161146,329738_257203,24985805_257203,Wrocław Główny,0,66130 +161146,329738_257205,24985807_257205,Wrocław Główny,0,66132 +161146,329738_257208,24985810_257208,Wrocław Główny,0,66134 +161146,329738_257209,24985811_257209,Wrocław Główny,0,66134 +161146,329738_257210,24985812_257210,Wrocław Główny,0,66134 +161146,329738_257211,24985813_257211,Wrocław Główny,0,66134 +161146,329738_257213,24985815_257213,Legnica,0,66136 +161146,329738_257214,24985816_257214,Legnica,0,66136 +161146,329738_257216,24985818_257216,Lubin,0,66141 +161146,329738_257217,24985819_257217,Lubin,0,66141 +161146,329738_257219,24985821_257219,Głogów,0,66143 +161146,329738_257221,24985823_257221,Głogów,0,66143 +161146,329738_257222,24985824_257222,Głogów,0,66143 +161146,329738_257225,24985827_257225,Lubin,0,66145 +161146,329738_257226,24985828_257226,Lubin,0,66145 +161126,329718_257228,24985830_257228,Legnica,0,66156 +161126,329718_257229,24985831_257229,Legnica,0,66156 +161126,329718_257231,24985833_257231,Wrocław Główny,0,66161/0 +161126,329718_257232,24985834_257232,Wrocław Główny,0,66161/0 +161147,329739_257233,24985835_257233,Wrocław Główny,0,66200/1 +161148,329740_257241,24985843_257241,Legnica,0,66201 +161148,329740_257242,24985844_257242,Legnica,0,66201 +161148,329740_257243,24985845_257243,Legnica,0,66201 +161138,329730_257248,24985850_257248,Rawicz,0,66205 +161136,329728_257249,24985851_257249,Wrocław Główny,0,66206 +161149,329741_257256,24985858_257256,Wrocław Główny,0,66216 +161149,329741_257257,24985859_257257,Wrocław Główny,0,66216 +161122,329714_257258,24985860_257258,Gryfów Śląski,0,66222 +161122,329714_257259,24985861_257259,Gryfów Śląski,0,66224 +161140,329732_257261,24985863_257261,Wałbrzych Główny,0,66226 +161140,329732_257262,24985864_257262,Wałbrzych Główny,0,66226 +161140,329732_257264,24985866_257264,Wrocław Główny,0,66242 +161140,329732_257265,24985867_257265,Wrocław Główny,0,66242 +161150,329742_257268,24985870_257268,Syców,0,66244 +161150,329742_257269,24985871_257269,Cieśle,0,66244 +161149,329741_257271,24985873_257271,Wrocław Główny,0,66250 +161149,329741_257272,24985874_257272,Wrocław Główny,0,66250 +161149,329741_257274,24985876_257274,Jelenia Góra,0,66254 +161149,329741_257275,24985877_257275,Jelenia Góra,0,66254 +161123,329715_257277,24985879_257277,Węgliniec,0,66264 +161123,329715_257278,24985880_257278,Węgliniec,0,66264 +161123,329715_257280,24985882_257280,Zgorzelec,0,66267 +161123,329715_257281,24985883_257281,Zgorzelec,0,66267 +161148,329740_257283,24985885_257283,Jaworzyna Śląska,0,66281 +161148,329740_257284,24985886_257284,Jaworzyna Śląska,0,66281 +161133,329725_257286,24985888_257286,Jedlina-Zdrój,0,66291/0 +161133,329725_257287,24985889_257287,Jedlina-Zdrój,0,66291/0 +161133,329725_257289,24985891_257289,Wałbrzych Miasto,0,66293/2 +161133,329725_257290,24985892_257290,Wałbrzych Miasto,0,66293/2 +161133,329725_257292,24985894_257292,Wałbrzych Miasto,0,66295/4 +161133,329725_257293,24985895_257293,Jedlina-Zdrój,0,66297/6 +161133,329725_257294,24985896_257294,Jedlina-Zdrój,0,66297/6 +161140,329732_257296,24985898_257296,Wałbrzych Miasto,0,66299 +161140,329732_257297,24985899_257297,Wałbrzych Miasto,0,66299 +161151,329743_257299,24985901_257299,Wrocław Główny,0,66309/8 +161151,329743_257300,24985902_257300,Wrocław Główny,0,66309/8 +161131,329723_257302,24985904_257302,Stronie Śląskie,0,66311 +161131,329723_257303,24985905_257303,Krosnowice Kłodzkie,0,66311 +161131,329723_257305,24985907_257305,Stronie Śląskie,0,66313 +161131,329723_257306,24985908_257306,Krosnowice Kłodzkie,0,66313 +161133,329725_257308,24985910_257308,Wałbrzych Główny,0,66322/3 +161133,329725_257309,24985911_257309,Wałbrzych Miasto,0,66322/3 +161131,329723_257311,24985913_257311,Stronie Śląskie,0,66333 +161131,329723_257312,24985914_257312,Krosnowice Kłodzkie,0,66333 +161131,329723_257314,24985916_257314,Stronie Śląskie,0,66335 +161131,329723_257315,24985917_257315,Krosnowice Kłodzkie,0,66335 +161131,329723_257317,24985919_257317,Stronie Śląskie,0,66337 +161131,329723_257318,24985920_257318,Krosnowice Kłodzkie,0,66337 +161131,329723_257320,24985922_257320,Stronie Śląskie,0,66339 +161131,329723_257321,24985923_257321,Krosnowice Kłodzkie,0,66339 +161131,329723_257323,24985925_257323,Stronie Śląskie,0,66341 +161131,329723_257324,24985926_257324,Krosnowice Kłodzkie,0,66341 +161131,329723_257326,24985928_257326,Stronie Śląskie,0,66343 +161131,329723_257327,24985929_257327,Krosnowice Kłodzkie,0,66343 +161133,329725_257328,24985930_257328,Wałbrzych Główny,0,66441 +161133,329725_257330,24985932_257330,Wałbrzych Główny,0,66443 +161133,329725_257331,24985933_257331,Wałbrzych Główny,0,66443 +161133,329725_257333,24985935_257333,Głuszyca,0,66444 +161146,329738_257337,24985939_257337,Głogów,0,66531 +161146,329738_257338,24985940_257338,Głogów,0,66531 +161146,329738_257341,24985943_257341,Lubin,0,66533 +161146,329738_257343,24985945_257343,Lubin,0,66535 +161146,329738_257344,24985946_257344,Lubin,0,66535 +161146,329738_257347,24985949_257347,Głogów,0,66537 +161152,329744_257348,24985950_257348,Głogów,0,66537 +161146,329738_257349,24985951_257349,Lubin,0,66539 +161153,329745_257351,24985953_257351,Lubin,0,66539 +161146,329738_257353,24985955_257353,Głogów,0,66541 +161152,329744_257355,24985957_257355,Głogów,0,66541 +161146,329738_257356,24985958_257356,Lubin,0,66543 +161146,329738_257357,24985959_257357,Lubin,0,66543 +161146,329738_257359,24985961_257359,Głogów,0,66545 +161146,329738_257360,24985962_257360,Głogów,0,66545 +161146,329738_257363,24985965_257363,Głogów,0,66547 +161146,329738_257364,24985966_257364,Głogów,0,66547 +161146,329738_257366,24985968_257366,Głogów,0,66549 +161152,329744_257367,24985969_257367,Głogów,0,66549 +161146,329738_257369,24985971_257369,Lubin,0,66551 +161153,329745_257370,24985972_257370,Lubin,0,66551 +161146,329738_257372,24985974_257372,Głogów,0,66553 +161146,329738_257373,24985975_257373,Głogów,0,66553 +161146,329738_257375,24985977_257375,Wrocław Główny,0,66570 +161154,329746_257376,24985978_257376,Wrocław Główny,0,66570 +161146,329738_257378,24985980_257378,Wrocław Główny,0,66572 +161154,329746_257380,24985982_257380,Wrocław Główny,0,66572 +161146,329738_257382,24985984_257382,Wrocław Główny,0,66574 +161146,329738_257383,24985985_257383,Wrocław Główny,0,66574 +161146,329738_257386,24985988_257386,Wrocław Główny,0,66576 +161146,329738_257388,24985990_257388,Wrocław Główny,0,66576 +161146,329738_257393,24985995_257393,Wrocław Główny,0,66578 +161155,329747_257394,24985996_257394,Wrocław Główny,0,66578 +161146,329738_257396,24985998_257396,Wrocław Główny,0,66580 +161155,329747_257398,24986000_257398,Wrocław Główny,0,66580 +161146,329738_257404,24986006_257404,Wrocław Główny,0,66582 +161146,329738_257405,24986007_257405,Wrocław Główny,0,66582 +161146,329738_257407,24986009_257407,Legnica,0,66584 +161146,329738_257408,24986010_257408,Legnica,0,66584 +161146,329738_257410,24986012_257410,Legnica,0,66586 +161146,329738_257411,24986013_257411,Legnica,0,66586 +161146,329738_257413,24986015_257413,Wrocław Główny,0,66588 +161155,329747_257414,24986016_257414,Wrocław Główny,0,66588 +161146,329738_257416,24986018_257416,Legnica,0,66590 +161146,329738_257417,24986019_257417,Legnica,0,66590 +161146,329738_257421,24986023_257421,Lubin,0,66591 +161146,329738_257422,24986024_257422,Lubin,0,66591 +161146,329738_257425,24986027_257425,Legnica,0,66592 +161146,329738_257426,24986028_257426,Legnica,0,66592 +161150,329742_257429,24986031_257429,Syców,0,66700 +161150,329742_257430,24986032_257430,Cieśle,0,66700 +161150,329742_257433,24986035_257433,Syców,0,66702 +161150,329742_257434,24986036_257434,Cieśle,0,66702 +161150,329742_257437,24986039_257437,Syców,0,66704 +161150,329742_257438,24986040_257438,Cieśle,0,66704 +161150,329742_257441,24986043_257441,Syców,0,66706 +161150,329742_257442,24986044_257442,Cieśle,0,66706 +161150,329742_257445,24986047_257445,Syców,0,66708 +161150,329742_257446,24986048_257446,Cieśle,0,66708 +161150,329742_257449,24986051_257449,Syców,0,66710 +161150,329742_257450,24986052_257450,Cieśle,0,66710 +161150,329742_257453,24986055_257453,Syców,0,66712 +161150,329742_257454,24986056_257454,Cieśle,0,66712 +161150,329742_257458,24986060_257458,Syców,0,66714 +161150,329742_257459,24986061_257459,Syców,0,66714 +161150,329742_257460,24986062_257460,Cieśle,0,66714 +161150,329742_257463,24986065_257463,Syców,0,66716 +161150,329742_257464,24986066_257464,Cieśle,0,66716 +161150,329742_257467,24986069_257467,Syców,0,66718 +161150,329742_257468,24986070_257468,Cieśle,0,66718 +161150,329742_257471,24986073_257471,Oleśnica,0,66721 +161150,329742_257472,24986074_257472,Oleśnica,0,66721 +161150,329742_257475,24986077_257475,Oleśnica Rataje,0,66723 +161150,329742_257476,24986078_257476,Oleśnica Rataje,0,66723 +161150,329742_257479,24986081_257479,Oleśnica,0,66725 +161150,329742_257480,24986082_257480,Oleśnica,0,66725 +161150,329742_257483,24986085_257483,Oleśnica,0,66727 +161150,329742_257484,24986086_257484,Oleśnica,0,66727 +161150,329742_257487,24986089_257487,Oleśnica Rataje,0,66729 +161150,329742_257488,24986090_257488,Oleśnica Rataje,0,66729 +161150,329742_257491,24986093_257491,Oleśnica,0,66731 +161150,329742_257492,24986094_257492,Oleśnica,0,66731 +161150,329742_257495,24986097_257495,Oleśnica,0,66733 +161150,329742_257496,24986098_257496,Oleśnica,0,66733 +161150,329742_257499,24986101_257499,Oleśnica,0,66735 +161150,329742_257500,24986102_257500,Oleśnica,0,66735 +161150,329742_257503,24986105_257503,Oleśnica,0,66737 +161150,329742_257504,24986106_257504,Oleśnica,0,66737 +161150,329742_257507,24986109_257507,Oleśnica,0,66739 +161150,329742_257508,24986110_257508,Oleśnica,0,66739 +161148,329740_257509,24986111_257509,Legnica,0,66801 +161148,329740_257510,24986112_257510,Legnica,0,66801 +161156,329748_257511,24986113_257511,Dzierżoniów Śląski,0,66815 +161156,329748_257512,24986114_257512,Dzierżoniów Śląski,0,66815 +161148,329740_257519,24986121_257519,Jaworzyna Śląska,0,66820 +161148,329740_257520,24986122_257520,Jaworzyna Śląska,0,66820 +161148,329740_257522,24986124_257522,Jawor,0,66822 +161148,329740_257523,24986125_257523,Jawor,0,66822 +161148,329740_257525,24986127_257525,Jawor,0,66824 +161148,329740_257526,24986128_257526,Jawor,0,66824 +161148,329740_257528,24986130_257528,Legnica,0,66827 +161148,329740_257529,24986131_257529,Legnica,0,66827 +161122,329714_257530,24986132_257530,Świeradów-Zdrój,0,66853 +161122,329714_257532,24986134_257532,Świeradów-Zdrój,0,66855 +161122,329714_257533,24986135_257533,Świeradów-Zdrój,0,66855 +161122,329714_257541,24986143_257541,Görlitz,0,66856/66857/5316 +161122,329714_257542,24986144_257542,Görlitz,0,66856/66857/5316 +161122,329714_257543,24986145_257543,Świeradów-Zdrój,0,66859 +161122,329714_257545,24986147_257545,Świeradów-Zdrój,0,66861 +161122,329714_257546,24986148_257546,Świeradów-Zdrój,0,66863 +161122,329714_257548,24986150_257548,Jelenia Góra,0,66870 +161122,329714_257549,24986151_257549,Jelenia Góra,0,66872 +161122,329714_257551,24986153_257551,Jelenia Góra,0,66876 +161122,329714_257552,24986154_257552,Jelenia Góra,0,66876 +161122,329714_257554,24986156_257554,Jelenia Góra,0,66878 +161122,329714_257555,24986157_257555,Jelenia Góra,0,66878 +161122,329714_257556,24986158_257556,Jelenia Góra,0,66884 +161156,329748_257557,24986159_257557,Dzierżoniów Śląski,0,66893 +161156,329748_257558,24986160_257558,Dzierżoniów Śląski,0,66895 +161157,329749_257560,24986162_257560,Głuszyca,0,66900/1 +161157,329749_257561,24986163_257561,Głuszyca,0,66902/3 +161157,329749_257565,24986167_257565,Głuszyca,0,66902/3 +161157,329749_257566,24986168_257566,Głuszyca,0,66904/5 +161157,329749_257571,24986173_257571,Głuszyca,0,66906/7 +161157,329749_257572,24986174_257572,Głuszyca,0,66906/7 +161122,329714_257573,24986175_257573,Gryfów Śląski,0,66910 +161122,329714_257574,24986176_257574,Gryfów Śląski,0,66914 +161157,329749_257579,24986181_257579,Jaworzyna Śląska,0,66941/0 +161157,329749_257580,24986182_257580,Jaworzyna Śląska,0,66941/0 +161158,329750_257582,24986184_257582,Legnica,0,66943/2 +161158,329750_257583,24986185_257583,Legnica,0,66943/2 +161157,329749_257585,24986187_257585,Jaworzyna Śląska,0,66945/4 +161157,329749_257586,24986188_257586,Jaworzyna Śląska,0,66945/4 +161157,329749_257591,24986193_257591,Jaworzyna Śląska,0,66947/6 +161157,329749_257592,24986194_257592,Jaworzyna Śląska,0,66947/6 +161157,329749_257594,24986196_257594,Jaworzyna Śląska,0,66949/8 +161157,329749_257595,24986197_257595,Jaworzyna Śląska,0,66949/8 +161157,329749_257597,24986199_257597,Jaworzyna Śląska,0,66951/0 +161157,329749_257598,24986200_257598,Jaworzyna Śląska,0,66951/0 +161122,329714_257599,24986201_257599,Świeradów-Zdrój,0,66953 +161122,329714_257600,24986202_257600,Świeradów-Zdrój,0,66959 +161122,329714_257601,24986203_257601,Świeradów-Zdrój,0,66961 +161122,329714_257602,24986204_257602,Świeradów-Zdrój,0,66967 +161125,329717_257606,24986208_257606,Forst (Lausitz),0,67001/5626 +161125,329717_257607,24986209_257607,Forst (Lausitz),0,67001/5626 +161125,329717_257608,24986210_257608,Forst (Lausitz),0,67001/5626 +161125,329717_257610,24986212_257610,Forst (Lausitz),0,67003/5628 +161125,329717_257611,24986213_257611,Forst (Lausitz),0,67003/5628 +161159,329751_257613,24986215_257613,Zielona Góra Główna,0,67051 +161159,329751_257614,24986216_257614,Zielona Góra Główna,0,67051 +161159,329751_257616,24986218_257616,Zielona Góra Główna,0,67053 +161159,329751_257617,24986219_257617,Zielona Góra Główna,0,67053 +161125,329717_257622,24986224_257622,Tuplice,0,67101 +161125,329717_257623,24986225_257623,Tuplice,0,67101 +161125,329717_257627,24986229_257627,Tuplice,0,67103 +161125,329717_257628,24986230_257628,Tuplice,0,67103 +161125,329717_257629,24986231_257629,Tuplice,0,67103 +161125,329717_257631,24986233_257631,Żary,0,67321 +161125,329717_257632,24986234_257632,Żary,0,67321 +161125,329717_257633,24986235_257633,Żary,0,67321 +161125,329717_257635,24986237_257635,Żary,0,67323 +161125,329717_257636,24986238_257636,Żary,0,67323 +161125,329717_257637,24986239_257637,Żary,0,67323 +161125,329717_257638,24986240_257638,Żary,0,67325 +161125,329717_257639,24986241_257639,Żary,0,67325 +161125,329717_257642,24986244_257642,Żary,0,67327 +161125,329717_257643,24986245_257643,Żary,0,67327 +161125,329717_257645,24986247_257645,Tuplice,0,67329 +161125,329717_257646,24986248_257646,Tuplice,0,67329 +161160,329752_257647,24986249_257647,Zielona Góra Główna,0,67401 +161160,329752_257649,24986251_257649,Zielona Góra Główna,0,67403 +161160,329752_257650,24986252_257650,Zielona Góra Główna,0,67403 +161160,329752_257653,24986255_257653,Zielona Góra Główna,0,67405 +161160,329752_257654,24986256_257654,Zielona Góra Główna,0,67405 +161160,329752_257655,24986257_257655,Zielona Góra Główna,0,67405 +161160,329752_257660,24986262_257660,Zielona Góra Główna,0,67407 +161160,329752_257663,24986265_257663,Zielona Góra Główna,0,67407 +161160,329752_257664,24986266_257664,Zielona Góra Główna,0,67407 +161160,329752_257666,24986268_257666,Zielona Góra Główna,0,67409 +161160,329752_257667,24986269_257667,Zielona Góra Główna,0,67409 +161160,329752_257669,24986271_257669,Zielona Góra Główna,0,67411 +161160,329752_257670,24986272_257670,Zielona Góra Główna,0,67411 +161160,329752_257672,24986274_257672,Zielona Góra Główna,0,67413 +161160,329752_257673,24986275_257673,Zielona Góra Główna,0,67413 +161160,329752_257675,24986277_257675,Zielona Góra Główna,0,67415 +161160,329752_257677,24986279_257677,Zielona Góra Główna,0,67415 +161160,329752_257679,24986281_257679,Zielona Góra Główna,0,67417 +161160,329752_257680,24986282_257680,Zielona Góra Główna,0,67417 +161160,329752_257684,24986286_257684,Zielona Góra Główna,0,67419 +161160,329752_257685,24986287_257685,Zielona Góra Główna,0,67419 +161160,329752_257686,24986288_257686,Zielona Góra Główna,0,67419 +161160,329752_257687,24986289_257687,Zielona Góra Główna,0,67419 +161160,329752_257692,24986294_257692,Zielona Góra Główna,0,67421 +161160,329752_257693,24986295_257693,Zielona Góra Główna,0,67421 +161160,329752_257695,24986297_257695,Zielona Góra Główna,0,67423 +161160,329752_257696,24986298_257696,Zielona Góra Główna,0,67423 +161159,329751_257704,24986306_257704,Zielona Góra Główna,0,67501 +161159,329751_257706,24986308_257706,Zielona Góra Główna,0,67501 +161161,329753_257710,24986312_257710,Krotoszyn,0,67751/0 +161161,329753_257711,24986313_257711,Krotoszyn,0,67751/0 +161162,329754_257715,24986317_257715,Krotoszyn,0,67753/2 +161161,329753_257716,24986318_257716,Krotoszyn,0,67753/2 +161162,329754_257720,24986322_257720,Krotoszyn,0,67755/4 +161162,329754_257721,24986323_257721,Krotoszyn,0,67755/4 +161162,329754_257723,24986325_257723,Krotoszyn,0,67757/6 +161162,329754_257724,24986326_257724,Krotoszyn,0,67757/6 +161161,329753_257728,24986330_257728,Krotoszyn,0,67759/8 +161161,329753_257729,24986331_257729,Krotoszyn,0,67759/8 +161161,329753_257739,24986341_257739,Krotoszyn,0,67761/0 +161161,329753_257740,24986342_257740,Krotoszyn,0,67761/0 +161161,329753_257745,24986347_257745,Krotoszyn,0,67763/2 +161161,329753_257746,24986348_257746,Krotoszyn,0,67763/2 +161161,329753_257755,24986357_257755,Krotoszyn,0,67765/4 +161161,329753_257756,24986358_257756,Krotoszyn,0,67765/4 +161161,329753_257760,24986362_257760,Krotoszyn,0,67767/6 +161161,329753_257761,24986363_257761,Krotoszyn,0,67767/6 +161162,329754_257765,24986367_257765,Krotoszyn,0,67769/8 +161162,329754_257766,24986368_257766,Krotoszyn,0,67769/8 +161163,329755_257767,24986369_257767,Świnoujście,0,6801 +161120,329712_257768,24986370_257768,Adršpach,0,69001/25450 +161120,329712_257769,24986371_257769,Mezimesti,0,69001/25450 +161120,329712_257770,24986372_257770,Adršpach,0,69003/25452 +161120,329712_257771,24986373_257771,Mezimesti,0,69003/25452 +161164,329756_257777,24986379_257777,Berlin-Lichtenberg,0,69005/5460 +161124,329716_257778,24986380_257778,Berlin-Lichtenberg,0,69005/5460 +161124,329716_257779,24986381_257779,Węgliniec,0,69005/5460 +161124,329716_257784,24986386_257784,Berlin-Lichtenberg,0,69007/5462 +161124,329716_257785,24986387_257785,Węgliniec,0,69007/5462 +161124,329716_257786,24986388_257786,Węgliniec,0,69007/5462 +161124,329716_257787,24986389_257787,Węgliniec,0,69007/5462 +161149,329741_257790,24986392_257790,Szklarska Poręba Górna,0,69101 +161149,329741_257791,24986393_257791,Szklarska Poręba Górna,0,69101 +161149,329741_257797,24986399_257797,Szklarska Poręba Górna,0,69103 +161149,329741_257798,24986400_257798,Szklarska Poręba Górna,0,69103 +161140,329732_257800,24986402_257800,Wałbrzych Miasto,0,69105 +161140,329732_257802,24986404_257802,Wałbrzych Miasto,0,69105 +161149,329741_257804,24986406_257804,Szklarska Poręba Górna,0,69107 +161149,329741_257805,24986407_257805,Szklarska Poręba Górna,0,69107 +161140,329732_257807,24986409_257807,Wrocław Główny,0,69110 +161140,329732_257809,24986411_257809,Wrocław Główny,0,69110 +161140,329732_257811,24986413_257811,Wrocław Główny,0,69112 +161140,329732_257812,24986414_257812,Wrocław Główny,0,69112 +161149,329741_257814,24986416_257814,Wrocław Główny,0,69114 +161149,329741_257815,24986417_257815,Wrocław Główny,0,69114 +161140,329732_257818,24986420_257818,Wrocław Główny,0,69116 +161140,329732_257819,24986421_257819,Wrocław Główny,0,69116 +161140,329732_257821,24986423_257821,Wrocław Główny,0,69118 +161140,329732_257822,24986424_257822,Wrocław Główny,0,69118 +161140,329732_257824,24986426_257824,Wrocław Główny,0,69120 +161126,329718_257825,24986427_257825,Wrocław Główny,0,69120 +161140,329732_257826,24986428_257826,Wrocław Główny,0,69120 +161149,329741_257828,24986430_257828,Wrocław Główny,0,69122 +161149,329741_257829,24986431_257829,Wrocław Główny,0,69122 +161149,329741_257832,24986434_257832,Wrocław Główny,0,69124 +161149,329741_257833,24986435_257833,Wrocław Główny,0,69124 +161126,329718_257834,24986436_257834,Wrocław Główny,0,69124 +161140,329732_257836,24986438_257836,Wrocław Główny,0,69126 +161140,329732_257837,24986439_257837,Wrocław Główny,0,69126 +161126,329718_257840,24986442_257840,Legnica,0,69146 +161126,329718_257841,24986443_257841,Legnica,0,69146 +161126,329718_257842,24986444_257842,Legnica,0,69146 +161126,329718_257843,24986445_257843,Legnica,0,69146 +161123,329715_257846,24986448_257846,Wrocław Główny,0,69148 +161123,329715_257847,24986449_257847,Wrocław Główny,0,69148 +161123,329715_257850,24986452_257850,Zgorzelec,0,69151 +161123,329715_257851,24986453_257851,Zgorzelec,0,69151 +161123,329715_257854,24986456_257854,Zgorzelec,0,69153 +161123,329715_257855,24986457_257855,Zgorzelec,0,69153 +161123,329715_257857,24986459_257857,Zgorzelec,0,69155 +161123,329715_257858,24986460_257858,Zgorzelec,0,69155 +161126,329718_257860,24986462_257860,Legnica,0,69157 +161126,329718_257861,24986463_257861,Legnica,0,69157 +161123,329715_257863,24986465_257863,Zgorzelec,0,69159 +161123,329715_257864,24986466_257864,Zgorzelec,0,69159 +161123,329715_257866,24986468_257866,Wrocław Główny,0,69160 +161123,329715_257867,24986469_257867,Wrocław Główny,0,69160 +161123,329715_257869,24986471_257869,Wrocław Główny,0,69162 +161123,329715_257870,24986472_257870,Wrocław Główny,0,69162 +161123,329715_257871,24986473_257871,Wrocław Główny,0,69162 +161126,329718_257873,24986475_257873,Wrocław Główny,0,69169/8 +161126,329718_257874,24986476_257874,Wrocław Główny,0,69169/8 +161156,329748_257880,24986482_257880,Bielawa Zachodnia,0,69201/0 +161156,329748_257883,24986485_257883,Bielawa Zachodnia,0,69201/0 +161156,329748_257885,24986487_257885,Bielawa Zachodnia,0,69205/4 +161156,329748_257886,24986488_257886,Bielawa Zachodnia,0,69205/4 +161156,329748_257887,24986489_257887,Wrocław Główny,0,69211/0 +161156,329748_257888,24986490_257888,Wrocław Główny,0,69211/0 +161156,329748_257890,24986492_257890,Wrocław Główny,0,69213/2 +161156,329748_257891,24986493_257891,Wrocław Główny,0,69213/2 +161140,329732_257893,24986495_257893,Wrocław Główny,0,69220 +161140,329732_257894,24986496_257894,Wrocław Główny,0,69220 +161140,329732_257896,24986498_257896,Wrocław Główny,0,69222 +161140,329732_257897,24986499_257897,Wrocław Główny,0,69222 +161140,329732_257899,24986501_257899,Wrocław Główny,0,69224 +161140,329732_257901,24986503_257901,Wrocław Główny,0,69226 +161140,329732_257902,24986504_257902,Wrocław Główny,0,69226 +161140,329732_257904,24986506_257904,Wrocław Główny,0,69228 +161140,329732_257905,24986507_257905,Wrocław Główny,0,69228 +161166,329758_257907,24986509_257907,Wrocław Główny,0,69230 +161166,329758_257910,24986512_257910,Wrocław Główny,0,69230 +161149,329741_257912,24986514_257912,Wrocław Główny,0,69232 +161149,329741_257914,24986516_257914,Wrocław Główny,0,69232 +161149,329741_257916,24986518_257916,Wrocław Główny,0,69234 +161149,329741_257917,24986519_257917,Wrocław Główny,0,69234 +161149,329741_257919,24986521_257919,Wrocław Główny,0,69236 +161149,329741_257921,24986523_257921,Wrocław Główny,0,69236 +161140,329732_257923,24986525_257923,Wrocław Główny,0,69238 +161140,329732_257924,24986526_257924,Wrocław Główny,0,69238 +161140,329732_257926,24986528_257926,Wrocław Główny,0,69240 +161140,329732_257927,24986529_257927,Wrocław Główny,0,69240 +161140,329732_257928,24986530_257928,Wrocław Główny,0,69242 +161140,329732_257930,24986532_257930,Wrocław Główny,0,69242 +161140,329732_257932,24986534_257932,Wrocław Główny,0,69244 +161140,329732_257933,24986535_257933,Wrocław Główny,0,69244 +161149,329741_257935,24986537_257935,Wrocław Główny,0,69246 +161149,329741_257937,24986539_257937,Wrocław Główny,0,69246 +161140,329732_257939,24986541_257939,Wrocław Główny,0,69248 +161140,329732_257940,24986542_257940,Wrocław Główny,0,69248 +161149,329741_257941,24986543_257941,Szklarska Poręba Górna,0,69251 +161149,329741_257942,24986544_257942,Szklarska Poręba Górna,0,69251 +161149,329741_257946,24986548_257946,Szklarska Poręba Górna,0,69253 +161149,329741_257948,24986550_257948,Szklarska Poręba Górna,0,69253 +161140,329732_257954,24986556_257954,Jelenia Góra,0,69255 +161140,329732_257955,24986557_257955,Jelenia Góra,0,69255 +161149,329741_257957,24986559_257957,Szklarska Poręba Górna,0,69257 +161149,329741_257959,24986561_257959,Szklarska Poręba Górna,0,69257 +161140,329732_257961,24986563_257961,Jelenia Góra,0,69259 +161140,329732_257962,24986564_257962,Jelenia Góra,0,69259 +161149,329741_257964,24986566_257964,Szklarska Poręba Górna,0,69261 +161149,329741_257965,24986567_257965,Szklarska Poręba Górna,0,69261 +161140,329732_257967,24986569_257967,Wałbrzych Miasto,0,69263 +161140,329732_257968,24986570_257968,Wałbrzych Miasto,0,69263 +161149,329741_257970,24986572_257970,Szklarska Poręba Górna,0,69265 +161149,329741_257971,24986573_257971,Szklarska Poręba Górna,0,69265 +161140,329732_257973,24986575_257973,Jelenia Góra,0,69267 +161140,329732_257974,24986576_257974,Jelenia Góra,0,69267 +161140,329732_257978,24986580_257978,Wałbrzych Miasto,0,69269 +161140,329732_257979,24986581_257979,Wałbrzych Miasto,0,69269 +161149,329741_257981,24986583_257981,Szklarska Poręba Górna,0,69271 +161149,329741_257982,24986584_257982,Szklarska Poręba Górna,0,69271 +161140,329732_257984,24986586_257984,Wałbrzych Miasto,0,69273 +161140,329732_257985,24986587_257985,Wałbrzych Miasto,0,69273 +161140,329732_257987,24986589_257987,Jelenia Góra,0,69275 +161140,329732_257988,24986590_257988,Jelenia Góra,0,69275 +161140,329732_257990,24986592_257990,Wałbrzych Główny,0,69277 +161140,329732_257992,24986594_257992,Wałbrzych Główny,0,69277 +161140,329732_257994,24986596_257994,Jaworzyna Śląska,0,69279 +161140,329732_257995,24986597_257995,Jaworzyna Śląska,0,69279 +161140,329732_257997,24986599_257997,Wałbrzych Miasto,0,69281 +161140,329732_257998,24986600_257998,Wałbrzych Miasto,0,69281 +161140,329732_258001,24986603_258001,Wałbrzych Główny,0,69283 +161140,329732_258002,24986604_258002,Wałbrzych Główny,0,69283 +161140,329732_258003,24986605_258003,Wałbrzych Główny,0,69283 +161140,329732_258005,24986607_258005,Jelenia Góra,0,69285 +161140,329732_258006,24986608_258006,Jelenia Góra,0,69285 +161140,329732_258007,24986609_258007,Jelenia Góra,0,69285 +161167,329759_258010,24986612_258010,Gryfów Śląski,0,69287 +161167,329759_258012,24986614_258012,Gryfów Śląski,0,69287 +161140,329732_258014,24986616_258014,Wałbrzych Główny,0,69289 +161140,329732_258015,24986617_258015,Wałbrzych Główny,0,69289 +161140,329732_258017,24986619_258017,Jelenia Góra,0,69291 +161140,329732_258018,24986620_258018,Jelenia Góra,0,69291 +161140,329732_258020,24986622_258020,Wałbrzych Główny,0,69293 +161140,329732_258021,24986623_258021,Wałbrzych Główny,0,69293 +161140,329732_258023,24986625_258023,Jelenia Góra,0,69295 +161140,329732_258024,24986626_258024,Jelenia Góra,0,69295 +161140,329732_258025,24986627_258025,Jelenia Góra,0,69295 +161168,329760_258027,24986629_258027,Jelcz-Laskowice,0,69301/0 +161168,329760_258028,24986630_258028,Jelcz-Laskowice,0,69301/0 +161168,329760_258030,24986632_258030,Jelcz-Laskowice,0,69303/2 +161168,329760_258031,24986633_258031,Jelcz-Laskowice,0,69303/2 +161168,329760_258033,24986635_258033,Jelcz-Laskowice,0,69305/4 +161168,329760_258034,24986636_258034,Jelcz-Laskowice,0,69305/4 +161168,329760_258036,24986638_258036,Jelcz-Laskowice,0,69307/6 +161168,329760_258037,24986639_258037,Jelcz-Laskowice,0,69307/6 +161168,329760_258039,24986641_258039,Jelcz-Laskowice,0,69309/8 +161168,329760_258040,24986642_258040,Jelcz-Laskowice,0,69309/8 +161168,329760_258042,24986644_258042,Jelcz-Laskowice,0,69311/0 +161168,329760_258043,24986645_258043,Jelcz-Laskowice,0,69311/0 +161168,329760_258045,24986647_258045,Jelcz-Laskowice,0,69313/2 +161168,329760_258046,24986648_258046,Jelcz-Laskowice,0,69313/2 +161168,329760_258048,24986650_258048,Jelcz-Laskowice,0,69315/4 +161168,329760_258049,24986651_258049,Jelcz-Laskowice,0,69315/4 +161168,329760_258051,24986653_258051,Jelcz-Laskowice,0,69317/6 +161168,329760_258052,24986654_258052,Jelcz-Laskowice,0,69317/6 +161168,329760_258054,24986656_258054,Jelcz-Laskowice,0,69319/8 +161168,329760_258055,24986657_258055,Jelcz-Laskowice,0,69319/8 +161168,329760_258057,24986659_258057,Jelcz-Laskowice,0,69321/0 +161168,329760_258058,24986660_258058,Jelcz-Laskowice,0,69321/0 +161168,329760_258060,24986662_258060,Jelcz-Laskowice,0,69323/2 +161168,329760_258061,24986663_258061,Jelcz-Laskowice,0,69323/2 +161168,329760_258063,24986665_258063,Jelcz-Laskowice,0,69325/4 +161168,329760_258065,24986667_258065,Jelcz-Laskowice,0,69327/6 +161168,329760_258066,24986668_258066,Jelcz-Laskowice,0,69327/6 +161168,329760_258068,24986670_258068,Jelcz-Laskowice,0,69329/8 +161168,329760_258069,24986671_258069,Jelcz-Laskowice,0,69329/8 +161168,329760_258071,24986673_258071,Wrocław Główny,0,69351/0 +161168,329760_258072,24986674_258072,Wrocław Główny,0,69351/0 +161168,329760_258074,24986676_258074,Wrocław Główny,0,69353/2 +161168,329760_258075,24986677_258075,Wrocław Główny,0,69353/2 +161168,329760_258077,24986679_258077,Wrocław Główny,0,69355/4 +161168,329760_258078,24986680_258078,Wrocław Główny,0,69355/4 +161168,329760_258080,24986682_258080,Wrocław Główny,0,69357/6 +161168,329760_258081,24986683_258081,Wrocław Główny,0,69357/6 +161168,329760_258083,24986685_258083,Wrocław Główny,0,69359/8 +161168,329760_258084,24986686_258084,Wrocław Główny,0,69359/8 +161168,329760_258086,24986688_258086,Wrocław Główny,0,69361/0 +161168,329760_258087,24986689_258087,Wrocław Główny,0,69361/0 +161168,329760_258089,24986691_258089,Wrocław Główny,0,69363/2 +161168,329760_258090,24986692_258090,Wrocław Główny,0,69363/2 +161168,329760_258092,24986694_258092,Wrocław Główny,0,69365/4 +161168,329760_258093,24986695_258093,Wrocław Główny,0,69365/4 +161168,329760_258095,24986697_258095,Wrocław Główny,0,69367/6 +161168,329760_258096,24986698_258096,Wrocław Główny,0,69367/6 +161168,329760_258098,24986700_258098,Wrocław Główny,0,69369/8 +161168,329760_258099,24986701_258099,Wrocław Główny,0,69369/8 +161168,329760_258101,24986703_258101,Wrocław Główny,0,69371/0 +161168,329760_258103,24986705_258103,Wrocław Główny,0,69371/0 +161168,329760_258105,24986707_258105,Wrocław Główny,0,69373/2 +161168,329760_258106,24986708_258106,Wrocław Główny,0,69373/2 +161168,329760_258108,24986710_258108,Wrocław Główny,0,69375/4 +161168,329760_258109,24986711_258109,Wrocław Główny,0,69375/4 +161168,329760_258111,24986713_258111,Wrocław Główny,0,69377/6 +161168,329760_258112,24986714_258112,Wrocław Główny,0,69377/6 +161168,329760_258114,24986716_258114,Wrocław Główny,0,69379/8 +161168,329760_258115,24986717_258115,Wrocław Główny,0,69379/8 +161169,329761_258117,24986719_258117,Wrocław Główny,0,69400 +161169,329761_258119,24986721_258119,Wrocław Główny,0,69400 +161169,329761_258122,24986724_258122,Wrocław Główny,0,69402 +161169,329761_258123,24986725_258123,Wrocław Główny,0,69402 +161169,329761_258125,24986727_258125,Wrocław Główny,0,69404 +161169,329761_258126,24986728_258126,Wrocław Główny,0,69404 +161169,329761_258128,24986730_258128,Wrocław Główny,0,69406 +161169,329761_258129,24986731_258129,Wrocław Główny,0,69406 +161169,329761_258131,24986733_258131,Wrocław Główny,0,69408 +161169,329761_258132,24986734_258132,Wrocław Główny,0,69408 +161169,329761_258134,24986736_258134,Wrocław Główny,0,69410 +161169,329761_258135,24986737_258135,Wrocław Główny,0,69410 +161169,329761_258137,24986739_258137,Wrocław Główny,0,69412 +161169,329761_258138,24986740_258138,Wrocław Główny,0,69412 +161169,329761_258140,24986742_258140,Wrocław Główny,0,69414 +161169,329761_258141,24986743_258141,Wrocław Główny,0,69414 +161169,329761_258143,24986745_258143,Wrocław Główny,0,69416 +161169,329761_258144,24986746_258144,Wrocław Główny,0,69416 +161169,329761_258146,24986748_258146,Wrocław Główny,0,69416 +161169,329761_258148,24986750_258148,Wrocław Główny,0,69418 +161169,329761_258149,24986751_258149,Wrocław Główny,0,69418 +161169,329761_258152,24986754_258152,Wrocław Główny,0,69420 +161169,329761_258153,24986755_258153,Wrocław Główny,0,69420 +161169,329761_258155,24986757_258155,Wrocław Główny,0,69422 +161169,329761_258156,24986758_258156,Wrocław Główny,0,69422 +161169,329761_258160,24986762_258160,Wrocław Główny,0,69424 +161169,329761_258161,24986763_258161,Wrocław Główny,0,69424 +161169,329761_258163,24986765_258163,Wrocław Główny,0,69426 +161169,329761_258164,24986766_258164,Wrocław Główny,0,69426 +161169,329761_258166,24986768_258166,Ścinawa,0,69451 +161169,329761_258167,24986769_258167,Ścinawa,0,69451 +161169,329761_258169,24986771_258169,Ścinawa,0,69453 +161169,329761_258170,24986772_258170,Ścinawa,0,69453 +161169,329761_258172,24986774_258172,Wołów,0,69455 +161169,329761_258173,24986775_258173,Wołów,0,69455 +161169,329761_258175,24986777_258175,Głogów,0,69457 +161169,329761_258176,24986778_258176,Głogów,0,69457 +161169,329761_258178,24986780_258178,Głogów,0,69459 +161169,329761_258179,24986781_258179,Głogów,0,69459 +161169,329761_258181,24986783_258181,Głogów,0,69461 +161169,329761_258183,24986785_258183,Głogów,0,69461 +161169,329761_258185,24986787_258185,Głogów,0,69463 +161169,329761_258186,24986788_258186,Głogów,0,69463 +161169,329761_258188,24986790_258188,Wołów,0,69465 +161169,329761_258189,24986791_258189,Ścinawa,0,69465 +161169,329761_258191,24986793_258191,Głogów,0,69467 +161169,329761_258192,24986794_258192,Głogów,0,69467 +161169,329761_258194,24986796_258194,Ścinawa,0,69469 +161169,329761_258195,24986797_258195,Ścinawa,0,69469 +161169,329761_258197,24986799_258197,Głogów,0,69471 +161169,329761_258198,24986800_258198,Głogów,0,69471 +161169,329761_258200,24986802_258200,Głogów,0,69475 +161169,329761_258201,24986803_258201,Głogów,0,69475 +161169,329761_258203,24986805_258203,Głogów,0,69477 +161169,329761_258204,24986806_258204,Głogów,0,69477 +161169,329761_258206,24986808_258206,Ścinawa,0,69479 +161169,329761_258207,24986809_258207,Ścinawa,0,69479 +161169,329761_258209,24986811_258209,Głogów,0,69481 +161169,329761_258210,24986812_258210,Głogów,0,69481 +161126,329718_258213,24986815_258213,Wrocław Główny,0,69500 +161170,329762_258214,24986816_258214,Wrocław Główny,0,69500 +161126,329718_258216,24986818_258216,Wrocław Główny,0,69502 +161171,329763_258217,24986819_258217,Wrocław Główny,0,69502 +161123,329715_258219,24986821_258219,Wrocław Główny,0,69504 +161172,329764_258220,24986822_258220,Wrocław Główny,0,69504 +161126,329718_258222,24986824_258222,Wrocław Główny,0,69507/6 +161126,329718_258223,24986825_258223,Wrocław Główny,0,69507/6 +161123,329715_258225,24986827_258225,Wrocław Główny,0,69508 +161172,329764_258226,24986828_258226,Wrocław Główny,0,69508 +161123,329715_258228,24986830_258228,Legnica,0,69510 +161126,329718_258232,24986834_258232,Wrocław Główny,0,69513/2 +161126,329718_258233,24986835_258233,Wrocław Główny,0,69513/2 +161173,329765_258234,24986836_258234,Wrocław Główny,0,69513/2 +161126,329718_258235,24986837_258235,Wrocław Główny,0,69515/4 +161173,329765_258236,24986838_258236,Wrocław Główny,0,69515/4 +161126,329718_258238,24986840_258238,Wrocław Główny,0,69516 +161170,329762_258239,24986841_258239,Wrocław Główny,0,69516 +161126,329718_258246,24986848_258246,Wrocław Główny,0,69518 +161146,329738_258247,24986849_258247,Wrocław Główny,0,69518 +161126,329718_258248,24986850_258248,Wrocław Główny,0,69518 +161146,329738_258249,24986851_258249,Wrocław Główny,0,69518 +161123,329715_258251,24986853_258251,Wrocław Główny,0,69520 +161172,329764_258252,24986854_258252,Wrocław Główny,0,69520 +161126,329718_258254,24986856_258254,Wrocław Główny,0,69523/2 +161173,329765_258256,24986858_258256,Wrocław Główny,0,69523/2 +161123,329715_258259,24986861_258259,Wrocław Główny,0,69524 +161172,329764_258261,24986863_258261,Wrocław Główny,0,69524 +161126,329718_258263,24986865_258263,Wrocław Główny,0,69527/6 +161126,329718_258264,24986866_258264,Wrocław Główny,0,69527/6 +161173,329765_258265,24986867_258265,Wrocław Główny,0,69527/6 +161123,329715_258267,24986869_258267,Wrocław Główny,0,69528 +161172,329764_258268,24986870_258268,Wrocław Główny,0,69528 +161126,329718_258270,24986872_258270,Legnica,0,69531/0 +161126,329718_258271,24986873_258271,Legnica,0,69531/0 +161126,329718_258276,24986878_258276,Legnica,0,69534 +161126,329718_258277,24986879_258277,Legnica,0,69534 +161123,329715_258285,24986887_258285,Görlitz,0,69549/5300 +161123,329715_258286,24986888_258286,Görlitz,0,69549/5300 +161123,329715_258287,24986889_258287,Zgorzelec,0,69551 +161126,329718_258291,24986893_258291,Lubań Śląski,0,69553/2 +161126,329718_258292,24986894_258292,Lubań Śląski,0,69553/2 +161126,329718_258293,24986895_258293,Lubań Śląski,0,69553/2 +161174,329766_258294,24986896_258294,Lubań Śląski,0,69553/2 +161126,329718_258296,24986898_258296,Legnica,0,69555 +161126,329718_258297,24986899_258297,Legnica,0,69555 +161126,329718_258300,24986902_258300,Lubań Śląski,0,69557/6 +161126,329718_258301,24986903_258301,Lubań Śląski,0,69557/6 +161174,329766_258302,24986904_258302,Lubań Śląski,0,69557/6 +161126,329718_258304,24986906_258304,Lubań Śląski,0,69559/8 +161126,329718_258305,24986907_258305,Lubań Śląski,0,69559/8 +161174,329766_258306,24986908_258306,Lubań Śląski,0,69559/8 +161126,329718_258308,24986910_258308,Lubań Śląski,0,69561/0 +161126,329718_258310,24986912_258310,Lubań Śląski,0,69561/0 +161174,329766_258311,24986913_258311,Lubań Śląski,0,69561/0 +161123,329715_258325,24986927_258325,Zgorzelec,0,69563 +161175,329767_258327,24986929_258327,Zgorzelec,0,69563 +161126,329718_258328,24986930_258328,Lubań Śląski,0,69565/4 +161174,329766_258329,24986931_258329,Lubań Śląski,0,69565/4 +161123,329715_258331,24986933_258331,Zgorzelec,0,69567 +161175,329767_258333,24986935_258333,Zgorzelec,0,69567 +161126,329718_258335,24986937_258335,Lubań Śląski,0,69569/8 +161174,329766_258336,24986938_258336,Lubań Śląski,0,69569/8 +161126,329718_258338,24986940_258338,Legnica,0,69571 +161176,329768_258339,24986941_258339,Legnica,0,69571 +161126,329718_258342,24986944_258342,Bolesławiec,0,69573 +161177,329769_258343,24986945_258343,Bolesławiec,0,69573 +161177,329769_258344,24986946_258344,Bolesławiec,0,69573 +161177,329769_258345,24986947_258345,Bolesławiec,0,69573 +161123,329715_258347,24986949_258347,Zgorzelec,0,69575 +161175,329767_258348,24986950_258348,Zgorzelec,0,69575 +161126,329718_258350,24986952_258350,Lubań Śląski,0,69577/6 +161174,329766_258352,24986954_258352,Lubań Śląski,0,69577/6 +161126,329718_258354,24986956_258354,Lubań Śląski,0,69579/8 +161174,329766_258355,24986957_258355,Lubań Śląski,0,69579/8 +161126,329718_258357,24986959_258357,Bolesławiec,0,69581 +161177,329769_258358,24986960_258358,Bolesławiec,0,69581 +161126,329718_258360,24986962_258360,Legnica,0,69583 +161176,329768_258361,24986963_258361,Legnica,0,69583 +161123,329715_258363,24986965_258363,Zgorzelec,0,69585 +161175,329767_258364,24986966_258364,Zgorzelec,0,69585 +161126,329718_258368,24986970_258368,Legnica,0,69587 +161176,329768_258369,24986971_258369,Legnica,0,69587 +161126,329718_258371,24986973_258371,Lubań Śląski,0,69590 +161126,329718_258372,24986974_258372,Lubań Śląski,0,69590 +161126,329718_258374,24986976_258374,Węgliniec,0,69593 +161126,329718_258375,24986977_258375,Węgliniec,0,69593 +161126,329718_258377,24986979_258377,Węgliniec,0,69595 +161126,329718_258378,24986980_258378,Węgliniec,0,69595 +161136,329728_258379,24986981_258379,Międzylesie,0,69601 +161136,329728_258380,24986982_258380,Ziębice,0,69603 +161136,329728_258382,24986984_258382,Międzylesie,0,69605 +161136,329728_258383,24986985_258383,Międzylesie,0,69605 +161138,329730_258385,24986987_258385,Wrocław Główny,0,69606 +161138,329730_258386,24986988_258386,Wrocław Główny,0,69606 +161178,329770_258388,24986990_258388,Międzylesie,0,69608/9 +161178,329770_258389,24986991_258389,Międzylesie,0,69608/9 +161138,329730_258391,24986993_258391,Wrocław Główny,0,69610 +161138,329730_258392,24986994_258392,Wrocław Główny,0,69610 +161136,329728_258394,24986996_258394,Lichkov,0,69613/281 +161136,329728_258395,24986997_258395,Lichkov,0,69613/281 +161136,329728_258397,24986999_258397,Strzelin,0,69615 +161136,329728_258398,24987000_258398,Strzelin,0,69615 +161178,329770_258402,24987004_258402,Międzylesie,0,69616/7 +161178,329770_258403,24987005_258403,Międzylesie,0,69616/7 +161136,329728_258405,24987007_258405,Międzylesie,0,69619 +161136,329728_258406,24987008_258406,Międzylesie,0,69619 +161138,329730_258407,24987009_258407,Wrocław Główny,0,69620 +161138,329730_258410,24987012_258410,Wrocław Główny,0,69620 +161178,329770_258413,24987015_258413,Lichkov,0,69622/9623/283 +161178,329770_258416,24987018_258416,Lichkov,0,69622/9623/283 +161136,329728_258418,24987020_258418,Ziębice,0,69625 +161136,329728_258421,24987023_258421,Lichkov,0,69627/285 +161136,329728_258423,24987025_258423,Lichkov,0,69627/285 +161136,329728_258426,24987028_258426,Ziębice,0,69629 +161136,329728_258427,24987029_258427,Ziębice,0,69629 +161178,329770_258429,24987031_258429,Międzylesie,0,69630/1 +161178,329770_258430,24987032_258430,Międzylesie,0,69630/1 +161136,329728_258431,24987033_258431,Strzelin,0,69633 +161136,329728_258434,24987036_258434,Strzelin,0,69633 +161136,329728_258437,24987039_258437,Lichkov,0,69635/287 +161136,329728_258439,24987041_258439,Lichkov,0,69635/287 +161178,329770_258441,24987043_258441,Kłodzko Miasto,0,69636/7 +161178,329770_258442,24987044_258442,Kłodzko Miasto,0,69636/7 +161136,329728_258443,24987045_258443,Strzelin,0,69641 +161178,329770_258446,24987048_258446,Międzylesie,0,69642/3 +161178,329770_258447,24987049_258447,Międzylesie,0,69642/3 +161136,329728_258450,24987052_258450,Międzylesie,0,69645 +161136,329728_258451,24987053_258451,Międzylesie,0,69645 +161138,329730_258456,24987058_258456,Wrocław Główny,0,69648 +161138,329730_258458,24987060_258458,Wrocław Główny,0,69648 +161178,329770_258461,24987063_258461,Kłodzko Miasto,0,69648/9 +161178,329770_258462,24987064_258462,Kłodzko Miasto,0,69648/9 +161136,329728_258464,24987066_258464,Kłodzko Miasto,0,69651 +161136,329728_258465,24987067_258465,Kłodzko Miasto,0,69651 +161178,329770_258467,24987069_258467,Międzylesie,0,69652/3 +161178,329770_258468,24987070_258468,Międzylesie,0,69652/3 +161178,329770_258476,24987078_258476,Ziębice,0,69654/5 +161178,329770_258477,24987079_258477,Ziębice,0,69654/5 +161138,329730_258479,24987081_258479,Wrocław Główny,0,69656 +161138,329730_258480,24987082_258480,Wrocław Główny,0,69656 +161136,329728_258482,24987084_258482,Międzylesie,0,69659 +161136,329728_258483,24987085_258483,Międzylesie,0,69659 +161136,329728_258493,24987095_258493,Kłodzko Miasto,0,69661 +161136,329728_258494,24987096_258494,Kłodzko Miasto,0,69661 +161136,329728_258495,24987097_258495,Kłodzko Miasto,0,69661 +161136,329728_258497,24987099_258497,Kłodzko Główne,0,69663 +161141,329733_258499,24987101_258499,Jelcz-Laskowice,0,69700 +161141,329733_258500,24987102_258500,Jelcz-Laskowice,0,69700 +161179,329771_258502,24987104_258502,Jelcz-Laskowice,0,69701/0 +161179,329771_258503,24987105_258503,Jelcz-Laskowice,0,69701/0 +161141,329733_258505,24987107_258505,Jelcz-Laskowice,0,69702 +161141,329733_258506,24987108_258506,Jelcz-Laskowice,0,69702 +161141,329733_258507,24987109_258507,Jelcz-Laskowice,0,69704 +161141,329733_258508,24987110_258508,Jelcz-Laskowice,0,69704 +161151,329743_258510,24987112_258510,Wrocław Główny,0,69705/4 +161151,329743_258511,24987113_258511,Wrocław Główny,0,69705/4 +161141,329733_258514,24987116_258514,Jelcz-Laskowice,0,69706 +161141,329733_258515,24987117_258515,Jelcz-Laskowice,0,69706 +161141,329733_258517,24987119_258517,Jelcz-Laskowice,0,69708 +161141,329733_258518,24987120_258518,Jelcz-Laskowice,0,69708 +161179,329771_258520,24987122_258520,Jelcz-Laskowice,0,69711/0 +161179,329771_258521,24987123_258521,Jelcz-Laskowice,0,69711/0 +161141,329733_258529,24987131_258529,Jelcz-Laskowice,0,69712 +161141,329733_258530,24987132_258530,Jelcz-Laskowice,0,69712 +161141,329733_258532,24987134_258532,Jelcz-Laskowice,0,69714 +161141,329733_258533,24987135_258533,Jelcz-Laskowice,0,69714 +161141,329733_258535,24987137_258535,Jelcz-Laskowice,0,69716 +161141,329733_258536,24987138_258536,Jelcz-Laskowice,0,69716 +161141,329733_258538,24987140_258538,Jelcz-Laskowice,0,69718 +161141,329733_258540,24987142_258540,Jelcz-Laskowice,0,69718 +161141,329733_258542,24987144_258542,Jelcz-Laskowice,0,69720 +161141,329733_258544,24987146_258544,Jelcz-Laskowice,0,69720 +161141,329733_258548,24987150_258548,Jelcz-Laskowice,0,69722 +161141,329733_258549,24987151_258549,Jelcz-Laskowice,0,69722 +161141,329733_258552,24987154_258552,Jelcz-Laskowice,0,69724 +161141,329733_258553,24987155_258553,Jelcz-Laskowice,0,69724 +161141,329733_258555,24987157_258555,Jelcz-Laskowice,0,69726 +161141,329733_258556,24987158_258556,Jelcz-Laskowice,0,69726 +161139,329731_258558,24987160_258558,Jelcz-Laskowice,0,69730/1 +161139,329731_258559,24987161_258559,Jelcz-Laskowice,0,69730/1 +161141,329733_258561,24987163_258561,Jelcz-Laskowice,0,69732 +161141,329733_258562,24987164_258562,Jelcz-Laskowice,0,69732 +161141,329733_258564,24987166_258564,Jelcz-Laskowice,0,69734 +161141,329733_258565,24987167_258565,Jelcz-Laskowice,0,69734 +161151,329743_258567,24987169_258567,Oleśnica,0,69751/0 +161151,329743_258568,24987170_258568,Oleśnica,0,69751/0 +161151,329743_258569,24987171_258569,Oleśnica,0,69753/2 +161161,329753_258572,24987174_258572,Milicz,0,69755/4 +161161,329753_258573,24987175_258573,Milicz,0,69755/4 +161180,329772_258576,24987178_258576,Oleśnica,0,69759/8 +161180,329772_258577,24987179_258577,Oleśnica,0,69759/8 +161141,329733_258580,24987182_258580,Wrocław Główny,0,69761 +161141,329733_258581,24987183_258581,Wrocław Główny,0,69761 +161141,329733_258583,24987185_258583,Wrocław Główny,0,69763 +161141,329733_258584,24987186_258584,Wrocław Główny,0,69763 +161141,329733_258585,24987187_258585,Wrocław Główny,0,69765 +161141,329733_258586,24987188_258586,Wrocław Główny,0,69765 +161141,329733_258587,24987189_258587,Wrocław Główny,0,69765 +161141,329733_258588,24987190_258588,Wrocław Główny,0,69767 +161141,329733_258589,24987191_258589,Wrocław Główny,0,69767 +161141,329733_258591,24987193_258591,Wrocław Główny,0,69769 +161141,329733_258592,24987194_258592,Wrocław Główny,0,69769 +161180,329772_258594,24987196_258594,Oleśnica,0,69771/0 +161180,329772_258595,24987197_258595,Oleśnica,0,69771/0 +161141,329733_258597,24987199_258597,Wrocław Główny,0,69775 +161141,329733_258598,24987200_258598,Wrocław Główny,0,69775 +161141,329733_258600,24987202_258600,Wrocław Główny,0,69781 +161141,329733_258601,24987203_258601,Wrocław Główny,0,69781 +161141,329733_258603,24987205_258603,Wrocław Główny,0,69785 +161141,329733_258604,24987206_258604,Wrocław Główny,0,69785 +161141,329733_258606,24987208_258606,Wrocław Główny,0,69787 +161141,329733_258607,24987209_258607,Wrocław Główny,0,69787 +161139,329731_258609,24987211_258609,Milicz,0,69789/8 +161139,329731_258611,24987213_258611,Milicz,0,69789/8 +161141,329733_258613,24987215_258613,Wrocław Główny,0,69791 +161141,329733_258614,24987216_258614,Wrocław Główny,0,69791 +161141,329733_258621,24987223_258621,Wrocław Główny,0,69793 +161141,329733_258622,24987224_258622,Wrocław Główny,0,69793 +161141,329733_258624,24987226_258624,Wrocław Główny,0,69795 +161141,329733_258625,24987227_258625,Wrocław Główny,0,69795 +161141,329733_258627,24987229_258627,Wrocław Główny,0,69797 +161141,329733_258628,24987230_258628,Wrocław Główny,0,69797 +161141,329733_258641,24987243_258641,Wrocław Główny,0,69799 +161141,329733_258642,24987244_258642,Wrocław Główny,0,69799 +161148,329740_258646,24987248_258646,Dzierżoniów Śląski,0,69800/1 +161148,329740_258647,24987249_258647,Dzierżoniów Śląski,0,69800/1 +161181,329773_258650,24987252_258650,Legnica,0,69803 +161181,329773_258651,24987253_258651,Legnica,0,69803 +161148,329740_258655,24987257_258655,Legnica,0,69805 +161148,329740_258656,24987258_258656,Legnica,0,69805 +161148,329740_258663,24987265_258663,Legnica,0,69806/7 +161148,329740_258664,24987266_258664,Legnica,0,69806/7 +161148,329740_258668,24987270_258668,Legnica,0,69811 +161148,329740_258669,24987271_258669,Legnica,0,69811 +161148,329740_258671,24987273_258671,Legnica,0,69812/3 +161148,329740_258672,24987274_258672,Legnica,0,69812/3 +161182,329774_258678,24987280_258678,Legnica,0,69814/5 +161182,329774_258679,24987281_258679,Legnica,0,69814/5 +161181,329773_258681,24987283_258681,Legnica,0,69817 +161181,329773_258682,24987284_258682,Legnica,0,69817 +161148,329740_258689,24987291_258689,Legnica,0,69818/9 +161148,329740_258690,24987292_258690,Legnica,0,69818/9 +161148,329740_258694,24987296_258694,Legnica,0,69821 +161148,329740_258695,24987297_258695,Legnica,0,69821 +161182,329774_258701,24987303_258701,Legnica,0,69822/3 +161182,329774_258702,24987304_258702,Legnica,0,69822/3 +161148,329740_258704,24987306_258704,Kamieniec Ząbkowicki,0,69824 +161156,329748_258710,24987312_258710,Bielawa Zachodnia,0,69826 +161148,329740_258713,24987315_258713,Kamieniec Ząbkowicki,0,69828 +161148,329740_258714,24987316_258714,Kamieniec Ząbkowicki,0,69828 +161183,329775_258718,24987320_258718,Kudowa-Zdrój,0,69830/1 +161183,329775_258719,24987321_258719,Kudowa-Zdrój,0,69830/1 +161148,329740_258723,24987325_258723,Kamieniec Ząbkowicki,0,69832 +161148,329740_258724,24987326_258724,Kamieniec Ząbkowicki,0,69832 +161148,329740_258727,24987329_258727,Kłodzko Miasto,0,69834/5 +161148,329740_258728,24987330_258728,Kłodzko Miasto,0,69834/5 +161183,329775_258740,24987342_258740,Kudowa-Zdrój,0,69836/7 +161183,329775_258741,24987343_258741,Kudowa-Zdrój,0,69836/7 +161148,329740_258744,24987346_258744,Kamieniec Ząbkowicki,0,69838 +161148,329740_258745,24987347_258745,Kamieniec Ząbkowicki,0,69838 +161183,329775_258749,24987351_258749,Kudowa-Zdrój,0,69840/1 +161183,329775_258750,24987352_258750,Kudowa-Zdrój,0,69840/1 +161148,329740_258752,24987354_258752,Świdnica Miasto,0,69842 +161148,329740_258753,24987355_258753,Świdnica Miasto,0,69842 +161148,329740_258758,24987360_258758,Kłodzko Główne,0,69844/5 +161148,329740_258761,24987363_258761,Kłodzko Główne,0,69844/5 +161184,329776_258763,24987365_258763,Bielawa Zachodnia,0,69846 +161184,329776_258764,24987366_258764,Bielawa Zachodnia,0,69846 +161122,329714_258772,24987374_258772,Görlitz,0,69851/5302 +161122,329714_258773,24987375_258773,Görlitz,0,69851/5302 +161122,329714_258781,24987383_258781,Görlitz,0,69853/5304 +161122,329714_258782,24987384_258782,Görlitz,0,69853/5304 +161122,329714_258789,24987391_258789,Görlitz,0,69855/5306 +161122,329714_258790,24987392_258790,Görlitz,0,69855/5306 +161122,329714_258798,24987400_258798,Görlitz,0,69857/5308 +161122,329714_258799,24987401_258799,Görlitz,0,69857/5308 +161122,329714_258813,24987415_258813,Görlitz,0,69859/5310 +161122,329714_258814,24987416_258814,Görlitz,0,69859/5310 +161122,329714_258815,24987417_258815,Görlitz,0,69859/5310 +161122,329714_258822,24987424_258822,Görlitz,0,69861/5314 +161122,329714_258823,24987425_258823,Görlitz,0,69861/5314 +161186,329778_258824,24987426_258824,Węgliniec,0,69864/5 +161187,329779_258825,24987427_258825,Świeradów-Zdrój,0,69868/9 +161148,329740_258852,24987454_258852,Legnica,0,69889 +161148,329740_258853,24987455_258853,Legnica,0,69889 +161156,329748_258854,24987456_258854,Bielawa Zachodnia,0,69890 +161156,329748_258855,24987457_258855,Bielawa Zachodnia,0,69892 +161156,329748_258856,24987458_258856,Bielawa Zachodnia,0,69894 +161156,329748_258858,24987460_258858,Bielawa Zachodnia,0,69896 +161156,329748_258859,24987461_258859,Bielawa Zachodnia,0,69896 +161147,329739_258861,24987463_258861,Wrocław Główny,0,69900/1 +161147,329739_258862,24987464_258862,Wrocław Główny,0,69900/1 +161189,329781_258864,24987466_258864,Sobótka Zachodnia,0,69902/3 +161189,329781_258865,24987467_258865,Sobótka Zachodnia,0,69902/3 +161189,329781_258867,24987469_258867,Świdnica Miasto,0,69904/5 +161189,329781_258868,24987470_258868,Świdnica Miasto,0,69904/5 +161189,329781_258870,24987472_258870,Świdnica Miasto,0,69906/7 +161189,329781_258871,24987473_258871,Świdnica Miasto,0,69906/7 +161147,329739_258873,24987475_258873,Wrocław Główny,0,69908/9 +161147,329739_258874,24987476_258874,Wrocław Główny,0,69908/9 +161189,329781_258876,24987478_258876,Bielawa Zachodnia,0,69910/1 +161189,329781_258877,24987479_258877,Bielawa Zachodnia,0,69910/1 +161147,329739_258879,24987481_258879,Wrocław Główny,0,69912/3 +161147,329739_258880,24987482_258880,Wrocław Główny,0,69912/3 +161147,329739_258883,24987485_258883,Wrocław Główny,0,69914/5 +161147,329739_258884,24987486_258884,Wrocław Główny,0,69914/5 +161147,329739_258886,24987488_258886,Wrocław Główny,0,69916/7 +161147,329739_258888,24987490_258888,Wrocław Główny,0,69916/7 +161189,329781_258890,24987492_258890,Świdnica Miasto,0,69918/9 +161189,329781_258891,24987493_258891,Świdnica Miasto,0,69918/9 +161190,329782_258895,24987497_258895,Jawor,0,69922/3 +161190,329782_258897,24987499_258897,Jawor,0,69922/3 +161147,329739_258899,24987501_258899,Wrocław Główny,0,69924/5 +161147,329739_258900,24987502_258900,Wrocław Główny,0,69924/5 +161189,329781_258902,24987504_258902,Świdnica Miasto,0,69926/7 +161189,329781_258903,24987505_258903,Świdnica Miasto,0,69926/7 +161147,329739_258905,24987507_258905,Wrocław Główny,0,69928/9 +161147,329739_258906,24987508_258906,Wrocław Główny,0,69928/9 +161189,329781_258908,24987510_258908,Jaworzyna Śląska,0,69930/1 +161189,329781_258909,24987511_258909,Jaworzyna Śląska,0,69930/1 +161147,329739_258911,24987513_258911,Wrocław Główny,0,69932/3 +161147,329739_258912,24987514_258912,Wrocław Główny,0,69932/3 +161147,329739_258913,24987515_258913,Wrocław Główny,0,69934/5 +161147,329739_258915,24987517_258915,Wrocław Główny,0,69934/5 +161147,329739_258916,24987518_258916,Trzebnica,0,69941/0 +161147,329739_258918,24987520_258918,Trzebnica,0,69943/2 +161147,329739_258920,24987522_258920,Trzebnica,0,69945/4 +161147,329739_258921,24987523_258921,Trzebnica,0,69945/4 +161147,329739_258922,24987524_258922,Trzebnica,0,69945/4 +161147,329739_258925,24987527_258925,Trzebnica,0,69947/6 +161147,329739_258926,24987528_258926,Trzebnica,0,69947/6 +161147,329739_258928,24987530_258928,Trzebnica,0,69949/8 +161147,329739_258929,24987531_258929,Trzebnica,0,69949/8 +161147,329739_258930,24987532_258930,Trzebnica,0,69951/0 +161147,329739_258931,24987533_258931,Trzebnica,0,69951/0 +161147,329739_258933,24987535_258933,Trzebnica,0,69953/2 +161147,329739_258934,24987536_258934,Trzebnica,0,69953/2 +161147,329739_258936,24987538_258936,Trzebnica,0,69955/4 +161147,329739_258938,24987540_258938,Trzebnica,0,69955/4 +161147,329739_258940,24987542_258940,Trzebnica,0,69957/6 +161147,329739_258941,24987543_258941,Trzebnica,0,69957/6 +161147,329739_258943,24987545_258943,Trzebnica,0,69959/8 +161147,329739_258944,24987546_258944,Trzebnica,0,69959/8 +161147,329739_258946,24987548_258946,Trzebnica,0,69961/0 +161147,329739_258947,24987549_258947,Trzebnica,0,69961/0 +161147,329739_258950,24987552_258950,Trzebnica,0,69963/2 +161147,329739_258951,24987553_258951,Trzebnica,0,69963/2 +161147,329739_258953,24987555_258953,Trzebnica,0,69965/4 +161147,329739_258954,24987556_258954,Trzebnica,0,69965/4 +161147,329739_258957,24987559_258957,Trzebnica,0,69967/6 +161147,329739_258958,24987560_258958,Trzebnica,0,69967/6 +161125,329717_258964,24987566_258964,Wrocław Główny,0,76102 +161125,329717_258965,24987567_258965,Wrocław Główny,0,76102 +161125,329717_258967,24987569_258967,Wrocław Główny,0,76104 +161125,329717_258968,24987570_258968,Wrocław Główny,0,76104 +161159,329751_258970,24987572_258970,Wrocław Główny,0,76110 +161159,329751_258971,24987573_258971,Wrocław Główny,0,76110 +161125,329717_258973,24987575_258973,Legnica,0,76200 +161125,329717_258974,24987576_258974,Legnica,0,76200 +161125,329717_258980,24987582_258980,Legnica,0,76202 +161125,329717_258981,24987583_258981,Legnica,0,76202 +161125,329717_258983,24987585_258983,Legnica,0,76310 +161125,329717_258984,24987586_258984,Legnica,0,76310 +161125,329717_258987,24987589_258987,Legnica,0,76312 +161125,329717_258988,24987590_258988,Legnica,0,76312 +161125,329717_258989,24987591_258989,Legnica,0,76312 +161125,329717_258991,24987593_258991,Legnica,0,76314 +161125,329717_258992,24987594_258992,Legnica,0,76314 +161125,329717_258993,24987595_258993,Legnica,0,76314 +161160,329752_258995,24987597_258995,Wrocław Główny,0,76400 +161160,329752_258996,24987598_258996,Wrocław Główny,0,76400 +161160,329752_258998,24987600_258998,Wrocław Główny,0,76402 +161160,329752_258999,24987601_258999,Wrocław Główny,0,76402 +161160,329752_259006,24987608_259006,Wrocław Główny,0,76404 +161160,329752_259007,24987609_259007,Wrocław Główny,0,76404 +161160,329752_259010,24987612_259010,Wrocław Główny,0,76406 +161160,329752_259012,24987614_259012,Wrocław Główny,0,76406 +161160,329752_259013,24987615_259013,Wrocław Główny,0,76406 +161160,329752_259015,24987617_259015,Wrocław Główny,0,76408 +161160,329752_259016,24987618_259016,Wrocław Główny,0,76408 +161160,329752_259018,24987620_259018,Wrocław Główny,0,76410 +161160,329752_259019,24987621_259019,Wrocław Główny,0,76410 +161160,329752_259021,24987623_259021,Wrocław Główny,0,76412 +161160,329752_259022,24987624_259022,Wrocław Główny,0,76412 +161160,329752_259024,24987626_259024,Wrocław Główny,0,76414 +161160,329752_259025,24987627_259025,Wrocław Główny,0,76414 +161160,329752_259027,24987629_259027,Wrocław Główny,0,76416 +161160,329752_259028,24987630_259028,Wrocław Główny,0,76416 +161160,329752_259031,24987633_259031,Głogów,0,76418 +161160,329752_259032,24987634_259032,Głogów,0,76418 +161159,329751_259034,24987636_259034,Wrocław Główny,0,76500 +161159,329751_259036,24987638_259036,Wrocław Główny,0,76500 +161159,329751_259037,24987639_259037,Wrocław Główny,0,76500 +161159,329751_259039,24987641_259039,Wrocław Główny,0,76502 +161191,329783_259040,24987642_259040,Wrocław Główny,0,76502 +161159,329751_259044,24987646_259044,Wrocław Główny,0,76504 +161191,329783_259045,24987647_259045,Wrocław Główny,0,76504 +161191,329783_259046,24987648_259046,Wrocław Główny,0,76504 +161191,329783_259047,24987649_259047,Wrocław Główny,0,76504 +161159,329751_259051,24987653_259051,Wrocław Główny,0,76506 +161159,329751_259052,24987654_259052,Wrocław Główny,0,76506 +161139,329731_259057,24987659_259057,Jelcz-Laskowice,0,76700/1 +161139,329731_259058,24987660_259058,Jelcz-Laskowice,0,76700/1 +161162,329754_259062,24987664_259062,Wrocław Główny,0,76702/3 +161162,329754_259063,24987665_259063,Wrocław Główny,0,76702/3 +161139,329731_259067,24987669_259067,Jelcz-Laskowice,0,76704/5 +161139,329731_259068,24987670_259068,Jelcz-Laskowice,0,76704/5 +161162,329754_259073,24987675_259073,Wrocław Główny,0,76706/7 +161162,329754_259074,24987676_259074,Wrocław Główny,0,76706/7 +161139,329731_259078,24987680_259078,Jelcz-Laskowice,0,76708/9 +161139,329731_259079,24987681_259079,Jelcz-Laskowice,0,76708/9 +161139,329731_259084,24987686_259084,Jelcz-Laskowice,0,76710/1 +161139,329731_259085,24987687_259085,Jelcz-Laskowice,0,76710/1 +161162,329754_259089,24987691_259089,Wrocław Główny,0,76712/3 +161162,329754_259090,24987692_259090,Wrocław Główny,0,76712/3 +161162,329754_259092,24987694_259092,Wrocław Główny,0,76714/5 +161162,329754_259093,24987695_259093,Wrocław Główny,0,76714/5 +161139,329731_259097,24987699_259097,Jelcz-Laskowice,0,76716/7 +161139,329731_259098,24987700_259098,Jelcz-Laskowice,0,76716/7 +161162,329754_259102,24987704_259102,Wrocław Główny,0,76718/9 +161162,329754_259103,24987705_259103,Wrocław Główny,0,76718/9 +161139,329731_259115,24987717_259115,Jelcz-Laskowice,0,76720/1 +161139,329731_259116,24987718_259116,Jelcz-Laskowice,0,76720/1 +161192,329784_259117,24987719_259117,Bojanowo,0,77958 +161193,329785_259119,24987721_259119,Góra Śląska,0,79901 +161193,329785_259120,24987722_259120,Bojanowo,0,79901 +161193,329785_259122,24987724_259122,Góra Śląska,0,79903 +161193,329785_259123,24987725_259123,Bojanowo,0,79903 +161193,329785_259125,24987727_259125,Góra Śląska,0,79905 +161193,329785_259126,24987728_259126,Bojanowo,0,79905 +161193,329785_259128,24987730_259128,Góra Śląska,0,79907 +161193,329785_259129,24987731_259129,Bojanowo,0,79907 +161193,329785_259131,24987733_259131,Góra Śląska,0,79909 +161193,329785_259132,24987734_259132,Bojanowo,0,79909 +161193,329785_259134,24987736_259134,Góra Śląska,0,79911 +161193,329785_259135,24987737_259135,Bojanowo,0,79911 +161193,329785_259137,24987739_259137,Góra Śląska,0,79913 +161193,329785_259138,24987740_259138,Bojanowo,0,79913 +161193,329785_259141,24987743_259141,Góra Śląska,0,79915 +161193,329785_259142,24987744_259142,Góra Śląska,0,79915 +161193,329785_259143,24987745_259143,Bojanowo,0,79915 +161193,329785_259145,24987747_259145,Góra Śląska,0,79917 +161193,329785_259146,24987748_259146,Bojanowo,0,79917 +161193,329785_259149,24987751_259149,Góra Śląska,0,79919 +161193,329785_259150,24987752_259150,Bojanowo,0,79919 +161193,329785_259152,24987754_259152,Rawicz,0,79940 +161193,329785_259153,24987755_259153,Rawicz,0,79940 +161193,329785_259155,24987757_259155,Rawicz,0,79942 +161193,329785_259156,24987758_259156,Rawicz,0,79942 +161193,329785_259158,24987760_259158,Rawicz,0,79944 +161193,329785_259159,24987761_259159,Rawicz,0,79944 +161193,329785_259161,24987763_259161,Rawicz,0,79946 +161193,329785_259162,24987764_259162,Rawicz,0,79946 +161193,329785_259164,24987766_259164,Rawicz,0,79948 +161193,329785_259165,24987767_259165,Rawicz,0,79948 +161193,329785_259167,24987769_259167,Rawicz,0,79950 +161193,329785_259168,24987770_259168,Rawicz,0,79950 +161193,329785_259170,24987772_259170,Rawicz,0,79952 +161193,329785_259171,24987773_259171,Rawicz,0,79952 +161193,329785_259173,24987775_259173,Rawicz,0,79954 +161193,329785_259174,24987776_259174,Rawicz,0,79954 +161193,329785_259176,24987778_259176,Rawicz,0,79956 +161193,329785_259177,24987779_259177,Rawicz,0,79956 +161193,329785_259180,24987782_259180,Rawicz,0,79958 +161193,329785_259181,24987783_259181,Rawicz,0,79958 +161163,329755_259182,24987784_259182,Wrocław Główny,0,8600/1 diff --git a/src/rail_network_graph/assets/data/railway_distances/railway_segment_lengths.txt b/src/rail_network_graph/assets/data/railway_distances/railway_segment_lengths.txt new file mode 100644 index 0000000..a36ddc8 --- /dev/null +++ b/src/rail_network_graph/assets/data/railway_distances/railway_segment_lengths.txt @@ -0,0 +1,471 @@ +Trutnov hl. n. Trutnov střed 3.17 +Trutnov střed Libeč 2.69 +Libeč Křenov 5.12 +Křenov Bernartice u Trutnova 2.56 +Bernartice u Trutnova Kralovec 3.29 +Kralovec Lubawka 4.41 +Lubawka Błażkowa 4.74 +Błażkowa Kamienna Góra 5.43 +Kamienna Góra Sędzisław 5.91 +Trutnov střed Křenov 7.76 +Adršpach Teplice nad Metují skály 3.36 +Teplice nad Metují skály Teplice nad Metují město 2.12 +Teplice nad Metují město Teplice nad Metují 1.64 +Teplice nad Metují Mezimesti 8.34 +Mezimesti Mieroszów 6.53 +Mieroszów Unisław Śląski 5.36 +Unisław Śląski Boguszów-Gorce Dzikowiec 2.03 +Boguszów-Gorce Dzikowiec Boguszów-Gorce Wschód 2.94 +Boguszów-Gorce Wschód Wałbrzych Główny 4.85 +Wałbrzych Główny Wałbrzych Centrum 7.49 +Wałbrzych Centrum Wałbrzych Miasto 1.87 +Wałbrzych Miasto Wałbrzych Szczawienko 3.76 +Wałbrzych Szczawienko Świebodzice 8.3 +Świebodzice Jaworzyna Śląska 9.39 +Jaworzyna Śląska Żarów 5.48 +Żarów Kąty Wrocławskie 21.86 +Kąty Wrocławskie Wrocław Grabiszyn 17.09 +Wrocław Grabiszyn Wrocław Główny 4.71 +Liberec Liberec-Rochlice 2.19 +Liberec-Rochlice Vesec u Liberce 1.5 +Vesec u Liberce Vratislavice nad Nisou 1.01 +Vratislavice nad Nisou Proseč nad Nisou 2.37 +Proseč nad Nisou Jablonec nad Nisou dolní n. 3.75 +Jablonec nad Nisou dolní n. Jablonec nad Nisou 1.34 +Jablonec nad Nisou Jablonec nad Nisou centrum 1.02 +Jablonec nad Nisou centrum Jablonec nad Nisou zastávka 0.82 +Jablonec nad Nisou zastávka Nová Ves nad Nisou 0.97 +Nová Ves nad Nisou Jablonecké Paseky 1.3 +Jablonecké Paseky Lučany nad Nisou 2.97 +Lučany nad Nisou Smržovka 1.43 +Smržovka Smržovka-Luční 1.13 +Smržovka-Luční Smržovka střed 0.53 +Smržovka střed Smržovka dolní nádraží 2.1 +Smržovka dolní nádraží Tanvald zastávka 2.11 +Tanvald zastávka Tanvald 0.85 +Tanvald Desná 1.43 +Desná Dolní Polubný 1.81 +Dolní Polubný Desná-Pustinská 1.0 +Desná-Pustinská Kořenov zastávka 0.96 +Kořenov zastávka Kořenov 1.66 +Kořenov Harrachov 4.67 +Harrachov Polana Jakuszycka 6.59 +Polana Jakuszycka Szklarska Poręba Huta 6.65 +Szklarska Poręba Huta Szklarska Poręba Górna 2.62 +Görlitz Zgorzelec 1.99 +Zgorzelec Jerzmanki 4.49 +Jerzmanki Mikułowa 5.06 +Mikułowa Batowice Lubańskie 3.39 +Batowice Lubańskie Zaręba 4.56 +Zaręba Lubań Śląski 6.18 +Lubań Śląski Olszyna Lubańska 8.11 +Olszyna Lubańska Ubocze 3.64 +Ubocze Gryfów Śląski 2.62 +Gryfów Śląski Młyńsko 6.04 +Młyńsko Rębiszów 5.56 +Rębiszów Kwieciszowice 5.12 +Kwieciszowice Stara Kamienica 4.6 +Stara Kamienica Rybnica 5.78 +Rybnica Jelenia Góra Zabobrze 9.19 +Jelenia Góra Zabobrze Jelenia Góra 1.32 +Gryfów Śląski Proszówka 3.34 +Proszówka Mirsk 5.45 +Mirsk Mroczkowice 3.25 +Mroczkowice Orłowice 1.97 +Orłowice Świeradów-Zdrój 2.44 +Zgorzelec Zgorzelec Miasto 2.66 +Zgorzelec Miasto Jędrzychowice 2.2 +Jędrzychowice Lasów 5.86 +Lasów Pieńsk 2.39 +Pieńsk Węgliniec 13.94 +Berlin-Lichtenberg Berlin Ostkreuz 2.13 +Berlin Ostkreuz Cottbus Hbf 114.92 +Cottbus Hbf Weißwasser (Oberlausitz) 42.49 +Weißwasser (Oberlausitz) Węgliniec 52.67 +Węgliniec Bolesławiec 25.54 +Bolesławiec Chojnów 27.15 +Chojnów Legnica 18.42 +Legnica Wrocław Główny 64.85 +Forst (Lausitz) Zasieki 2.28 +Zasieki Tuplice 13.64 +Tuplice Tuplice Dębinka 5.17 +Tuplice Dębinka Lipinki Łużyckie 7.15 +Lipinki Łużyckie Sieniawa Żarska 3.92 +Sieniawa Żarska Żary 5.35 +Żary Żagań 12.89 +Żagań Małomice 11.07 +Małomice Leszno Górne 15.09 +Leszno Górne Wierzbowa Śląska 12.67 +Wierzbowa Śląska Modła 4.5 +Modła Rokitki 7.15 +Rokitki Miłkowice 14.39 +Miłkowice Jezierzany 3.73 +Jezierzany Legnica 5.77 +Legnica Środa Śląska 31.17 +Środa Śląska Wrocław Nowy Dwór 27.14 +Wrocław Nowy Dwór Wrocław Muchobór 1.72 +Wrocław Muchobór Wrocław Główny 4.98 +Görlitz Görlitz-Rauschwalde 3.12 +Görlitz-Rauschwalde Gersdorf (b Görlitz) 9.92 +Gersdorf (b Görlitz) Reichenbach (Oberlausitz) 4.34 +Reichenbach (Oberlausitz) Zoblitz 3.56 +Zoblitz Löbau (Sachs) 6.54 +Löbau (Sachs) Breitendorf 6.18 +Breitendorf Pommritz 4.22 +Pommritz Kubschütz 4.8 +Kubschütz Bautzen 6.5 +Bautzen Seitschen 8.12 +Seitschen Demitz-Thumitz 6.43 +Demitz-Thumitz Bischofswerda 4.62 +Bischofswerda Weickersdorf (Sachs) 2.94 +Weickersdorf (Sachs) Großharthau 4.68 +Großharthau Arnsdorf (b Dresden) 7.78 +Arnsdorf (b Dresden) Radeberg 5.27 +Radeberg Langebrück (Sachs) 5.41 +Langebrück (Sachs) Dresden-Klotzsche 4.57 +Dresden-Klotzsche Dresden Industriegelände 3.91 +Dresden Industriegelände Dresden-Neustadt 2.85 +Dresden-Neustadt Dresden Mitte 1.59 +Dresden Mitte Dresden Hbf 2.25 +Dresden-Neustadt Dresden-Klotzsche 6.76 +Dresden-Klotzsche Radeberg 9.84 +Arnsdorf (b Dresden) Bischofswerda 15.39 +Bischofswerda Bautzen 19.12 +Bautzen Löbau (Sachs) 21.7 +Löbau (Sachs) Görlitz 24.1 +Wrocław Główny Strzelin 36.91 +Strzelin Ziębice 20.49 +Ziębice Kamieniec Ząbkowicki 14.19 +Kamieniec Ząbkowicki Bardo Śląskie 12.66 +Bardo Śląskie Kłodzko Główne 9.05 +Kłodzko Główne Kłodzko Miasto 1.77 +Kłodzko Miasto Polanica-Zdrój 12.49 +Polanica-Zdrój Szczytna 5.69 +Szczytna Duszniki-Zdrój 6.19 +Duszniki-Zdrój Kudowa-Zdrój 17.82 +Wrocław Główny Wrocław Wojszyce 6.72 +Wrocław Wojszyce Wrocław Partynice 2.57 +Wrocław Partynice Bielany Wrocławskie 3.39 +Bielany Wrocławskie Domasław 3.37 +Domasław Kobierzyce 4.39 +Kobierzyce Wierzbice 2.27 +Wierzbice Pustków Żurawski 3.2 +Pustków Żurawski Rogów Sobócki 7.37 +Rogów Sobócki Sobótka 4.15 +Sobótka Sobótka Zachodnia 2.89 +Sobótka Zachodnia Strzelce Świdnickie 2.79 +Strzelce Świdnickie Szczepanów 3.0 +Szczepanów Marcinowice Świdnickie 3.65 +Marcinowice Świdnickie Pszenno 5.01 +Pszenno Świdnica Przedmieście 3.09 +Świdnica Przedmieście Świdnica Miasto 2.5 +Wrocław Główny Wrocław Partynice 9.29 +Bielany Wrocławskie Kobierzyce 7.76 +Kobierzyce Sobótka 16.99 +Sobótka Marcinowice Świdnickie 12.33 +Marcinowice Świdnickie Świdnica Przedmieście 8.1 +Świdnica Miasto Dzierżoniów Śląski 18.03 +Dzierżoniów Śląski Bielawa Centralna 4.71 +Bielawa Centralna Bielawa Zachodnia 1.26 +Świdnica Miasto Świdnica Zawiszów 2.11 +Świdnica Zawiszów Bolesławice Świdnickie 3.16 +Bolesławice Świdnickie Jaworzyna Śląska 4.7 +Świdnica Miasto Krzyżowa 6.86 +Krzyżowa Mościsko Dzierżoniowskie 4.35 +Mościsko Dzierżoniowskie Dzierżoniów Śląski 6.82 +Wrocław Główny Wrocław Mikołajów 4.08 +Wrocław Mikołajów Wrocław Szczepin 1.6 +Wrocław Szczepin Wrocław Nadodrze 1.42 +Wrocław Nadodrze Wrocław Sołtysowice 4.11 +Wrocław Sołtysowice Wrocław Psie Pole 2.6 +Wrocław Psie Pole Wrocław Zakrzów 1.17 +Wrocław Zakrzów Wrocław Pawłowice 1.53 +Wrocław Pawłowice Ramiszów 2.95 +Ramiszów Pasikurowice 1.93 +Pasikurowice Siedlec Trzebnicki 2.88 +Siedlec Trzebnicki Pierwoszów Miłocin 2.79 +Pierwoszów Miłocin Brochocin Trzebnicki 2.48 +Brochocin Trzebnicki Trzebnica 4.02 +Jawor Rogoźnica 8.55 +Rogoźnica Goczałków 1.81 +Goczałków Strzegom 4.61 +Strzegom Stanowice 5.13 +Stanowice Jaworzyna Śląska 5.33 +Stronie Śląskie Lądek Stójków 3.32 +Lądek Stójków Lądek Zdrój 1.6 +Lądek Zdrój Radochów 4.16 +Radochów Trzebieszowice 3.18 +Trzebieszowice Ołdrzychowice Kłodzkie 5.78 +Ołdrzychowice Kłodzkie Żelazno 2.5 +Żelazno Krosnowice Kłodzkie 3.48 +Krosnowice Kłodzkie Kłodzko Miasto 5.11 +Kłodzko Miasto Kłodzko Książek 3.13 +Kłodzko Książek Kłodzko Zagórze 1.8 +Kłodzko Zagórze Stary Wielisław 3.0 +Stary Wielisław Polanica-Zdrój 4.57 +Duszniki-Zdrój Kulin Kłodzki 5.29 +Kulin Kłodzki Lewin Kłodzki 8.63 +Lewin Kłodzki Kudowa-Zdrój 3.9 +Jelenia Góra Janowice Wielkie 12.23 +Janowice Wielkie Marciszów 8.38 +Marciszów Sędzisław 6.36 +Sędzisław Boguszów-Gorce 13.31 +Boguszów-Gorce Wałbrzych Główny 6.54 +Wałbrzych Główny Jedlina-Zdrój Borowa 3.43 +Jedlina-Zdrój Borowa Jedlina-Zdrój 2.56 +Jedlina-Zdrój Głuszyca 2.81 +Głuszyca Głuszyca Górna 2.25 +Głuszyca Górna Bartnica 4.8 +Bartnica Świerki Dolne 2.05 +Świerki Dolne Ludwikowice Kłodzkie 3.82 +Ludwikowice Kłodzkie Nowa Ruda Zdrojowisko 2.19 +Nowa Ruda Zdrojowisko Nowa Ruda Przedmieście 3.19 +Nowa Ruda Przedmieście Nowa Ruda 2.29 +Nowa Ruda Ścinawka Średnia 7.63 +Ścinawka Średnia Gorzuchów Kłodzki 6.44 +Gorzuchów Kłodzki Bierkowice 2.85 +Bierkowice Kłodzko Główne 4.75 +Miłkowice Chojnów 9.43 +Chojnów Biała Górna 3.06 +Biała Górna Rokitki 5.07 +Rokitki Chocianów 10.37 +Kłodzko Główne Ławica 3.13 +Ławica Bardo Śląskie 5.93 +Bardo Śląskie Bardo Przyłęk 1.86 +Bardo Przyłęk Kamieniec Ząbkowicki 10.8 +Kamieniec Ząbkowicki Starczów 4.85 +Starczów Ziębice 9.34 +Ziębice Henryków 6.28 +Henryków Biały Kościół 7.45 +Biały Kościół Strzelin 6.76 +Strzelin Warkocz 5.16 +Warkocz Boreczek 5.77 +Boreczek Węgry 5.24 +Węgry Żórawina 6.53 +Żórawina Smardzów Wrocławski 5.38 +Smardzów Wrocławski Iwiny 2.63 +Iwiny Wrocław Główny 6.19 +Wrocław Mikołajów Wrocław Popowice 1.25 +Wrocław Popowice Wrocław Różanka 1.2 +Wrocław Różanka Wrocław Osobowice 3.4 +Wrocław Osobowice Wrocław Świniary 3.92 +Wrocław Świniary Szewce 2.28 +Szewce Pęgów 3.95 +Pęgów Oborniki Śląskie 6.04 +Oborniki Śląskie Osola 5.31 +Osola Skokowa 5.54 +Skokowa Żmigród 10.65 +Żmigród Garbce 4.3 +Garbce Korzeńsko 3.78 +Korzeńsko Rawicz 7.55 +Międzylesie Roztoki Bystrzyckie 5.29 +Roztoki Bystrzyckie Domaszków 3.3 +Domaszków Długopole-Zdrój 3.25 +Długopole-Zdrój Bystrzyca Kłodzka Przedmieście 5.7 +Bystrzyca Kłodzka Przedmieście Bystrzyca Kłodzka 1.4 +Bystrzyca Kłodzka Gorzanów 6.58 +Gorzanów Krosnowice Kłodzkie 4.98 +Bardo Przyłęk Suszka 5.31 +Suszka Kamieniec Ząbkowicki 5.49 +Strzelin Boreczek 10.94 +Boreczek Żórawina 11.78 +Żórawina Wrocław Główny 14.2 +Milicz Krośnice 9.12 +Krośnice Bukowice Trzebnickie 8.21 +Bukowice Trzebnickie Grabowno Wielkie 6.93 +Grabowno Wielkie Dobroszyce 8.7 +Dobroszyce Oleśnica Rataje 6.19 +Oleśnica Rataje Długołęka 13.45 +Długołęka Wrocław Psie Pole 6.2 +Wrocław Nadodrze Wrocław Mikołajów 3.01 +Wrocław Główny Wrocław Brochów 5.2 +Wrocław Brochów Siechnice 5.62 +Siechnice Zakrzów Kotowice 4.81 +Zakrzów Kotowice Czernica Wrocławska 2.44 +Czernica Wrocławska Jelcz Miłoszyce 4.93 +Jelcz Miłoszyce Jelcz-Laskowice 2.93 +Wrocław Grabiszyn Wrocław Zachodni 1.91 +Wrocław Zachodni Mokronos Górny 3.11 +Mokronos Górny Smolec 2.02 +Smolec Sadowice Wrocławskie 4.41 +Sadowice Wrocławskie Kąty Wrocławskie 5.63 +Legnica Legnica Piekary 3.16 +Legnica Piekary Legnica Strefa 4.15 +Legnica Strefa Przybyłowice 4.88 +Przybyłowice Stary Jawor 5.52 +Stary Jawor Jawor 3.79 +Jaworzyna Śląska Świdnica Zawiszów 7.86 +Świdnica Miasto Burkatów 5.9 +Burkatów Bystrzyca Górna 2.02 +Bystrzyca Górna Lubachów 1.79 +Lubachów Zagórze Śląskie 3.91 +Zagórze Śląskie Jugowice 2.58 +Jugowice Jedlina-Zdrój Centrum 5.33 +Jedlina-Zdrój Centrum Jedlina-Zdrój 2.92 +Boguszów-Gorce Wschód Boguszów-Gorce 1.69 +Boguszów-Gorce Boguszów-Gorce Zachód 2.79 +Boguszów-Gorce Zachód Witków Śląski 4.67 +Witków Śląski Sędzisław 5.85 +Marciszów Ciechanowice 2.68 +Ciechanowice Janowice Wielkie 5.7 +Janowice Wielkie Trzcińsko 3.42 +Trzcińsko Wojanów 3.75 +Wojanów Jelenia Góra 5.06 +Lichkov Międzylesie 0.14 +Międzylesie Bystrzyca Kłodzka 18.6 +Bystrzyca Kłodzka Kłodzko Miasto 16.05 +Nowa Ruda Zdrojowisko Nowa Ruda 5.48 +Ścinawka Średnia Kłodzko Główne 14.03 +Kłodzko Miasto Stary Wielisław 7.92 +Duszniki-Zdrój Lewin Kłodzki 13.92 +Głogów Grębocice 12.01 +Grębocice Rudna Gwizdanów 9.98 +Rudna Gwizdanów Rudna Miasto 3.02 +Rudna Miasto Rynarcice 4.69 +Rynarcice Koźlice 2.56 +Koźlice Lubin Stadion 5.32 +Lubin Stadion Lubin 1.45 +Lubin Chróstnik 4.65 +Chróstnik Gorzelin 3.05 +Gorzelin Raszówka 2.9 +Raszówka Rzeszotary 5.87 +Rzeszotary Legnica 5.91 +Grębocice Rudna Miasto 13.0 +Rudna Miasto Lubin Stadion 12.56 +Lubin Legnica 22.38 +Lubań Śląski Gierałtów 10.15 +Gierałtów Gierałtów Wykroty 3.02 +Gierałtów Wykroty Węgliniec 9.66 +Węgliniec Zagajnik 5.79 +Zagajnik Zebrzydowa 6.58 +Zebrzydowa Bolesławiec 13.17 +Bolesławiec Tomaszów Bolesławiecki 8.29 +Tomaszów Bolesławiecki Okmiany 7.15 +Okmiany Osetnica 5.09 +Osetnica Chojnów 6.62 +Miłkowice Legnica 9.5 +Jaworzyna Śląska Strzegom 10.45 +Strzegom Jawor 14.97 +Jawor Legnica Piekary 18.33 +Szklarska Poręba Górna Szklarska Poręba Średnia 2.57 +Szklarska Poręba Średnia Szklarska Poręba Dolna 3.05 +Szklarska Poręba Dolna Górzyniec 5.49 +Górzyniec Piechowice 4.02 +Piechowice Piechowice Dolne 1.82 +Piechowice Dolne Jelenia Góra Sobieszów 2.21 +Jelenia Góra Sobieszów Jelenia Góra Orle 1.61 +Jelenia Góra Orle Jelenia Góra Cieplice 2.15 +Jelenia Góra Cieplice Jelenia Góra Przemysłowa 2.61 +Jelenia Góra Przemysłowa Jelenia Góra Zachodnia 1.79 +Jelenia Góra Zachodnia Jelenia Góra Zabobrze 3.26 +Wałbrzych Główny Wałbrzych Fabryczny 4.45 +Wałbrzych Fabryczny Wałbrzych Centrum 3.04 +Żarów Imbramowice 6.66 +Imbramowice Mietków 6.0 +Mietków Kąty Wrocławskie 9.2 +Oleśnica Rataje Oleśnica 2.58 +Oleśnica Cieśle 6.79 +Cieśle Poniatowice 5.95 +Poniatowice Jemielna Oleśnicka 3.06 +Jemielna Oleśnicka Stradomia 3.33 +Stradomia Syców 6.61 +Jędrzychowice Pieńsk 8.25 +Wałbrzych Miasto Wałbrzych Główny 8.85 +Oleśnica Borowa Oleśnicka 8.0 +Borowa Oleśnicka Długołęka 5.77 +Długołęka Mirków 2.58 +Mirków Wrocław Psie Pole 3.62 +Wrocław Nowy Dwór Wrocław Żerniki 2.82 +Wrocław Żerniki Wrocław Leśnica 3.98 +Wrocław Leśnica Mrozów 7.2 +Mrozów Miękinia 3.82 +Miękinia Przedmoście Święte 5.26 +Przedmoście Święte Środa Śląska 4.05 +Środa Śląska Malczyce 9.05 +Malczyce Szczedrzykowice 9.47 +Szczedrzykowice Jaśkowice Legnickie 2.56 +Jaśkowice Legnickie Legnica 10.09 +Wrocław Nowy Dwór Wrocław Leśnica 6.81 +Wrocław Leśnica Miękinia 11.02 +Miękinia Środa Śląska 9.31 +Malczyce Legnica 22.12 +Jelenia Góra Zabobrze Stara Kamienica 14.97 +Stara Kamienica Rębiszów 9.72 +Rębiszów Gryfów Śląski 11.6 +Gryfów Śląski Mirsk 8.79 +Mirsk Świeradów-Zdrój 7.66 +Wierzbowa Śląska Studzianka 5.58 +Studzianka Leszno Górne 7.09 +Głogów Bytom Odrzański 20.42 +Bytom Odrzański Nowa Sól 11.8 +Nowa Sól Zielona Góra Główna 23.3 +Głogów Głogów Huta 6.26 +Głogów Huta Głogów Wróblin 2.94 +Głogów Wróblin Brzeg Głogowski 2.54 +Brzeg Głogowski Czerna 2.67 +Czerna Bytom Odrzański 6.01 +Nowa Sól Niedoradz 8.0 +Niedoradz Zielona Góra Nowy Kisielin 6.24 +Zielona Góra Nowy Kisielin Zielona Góra Stary Kisielin 3.66 +Zielona Góra Stary Kisielin Zielona Góra Główna 5.41 +Wrocław Muchobór Wrocław Kuźniki 2.47 +Wrocław Kuźniki Wrocław Stadion 1.28 +Wrocław Stadion Wrocław Pracze 4.51 +Wrocław Pracze Brzezinka Średzka 7.31 +Brzezinka Średzka Czerna Mała 2.6 +Czerna Mała Księginice 3.09 +Księginice Brzeg Dolny 4.28 +Brzeg Dolny Łososiowice 4.95 +Łososiowice Wołów 5.0 +Wołów Orzeszków 11.44 +Orzeszków Małowice Wołowskie 2.8 +Małowice Wołowskie Ścinawa 4.08 +Ścinawa Chełmek Wołowski 6.86 +Chełmek Wołowski Rudna Miasto 13.27 +Grębocice Krzepów 6.87 +Krzepów Głogów 5.14 +Milicz Cieszków 12.76 +Cieszków Zduny 1.92 +Zduny Krotoszyn 7.37 +Krośnice Wierzchowice 4.07 +Wierzchowice Milicz 5.05 +Lubin Głogów 39.03 +Głogów Zielona Góra Główna 54.8 +Zielona Góra Główna Szczecin Dąbie 201.1 +Szczecin Dąbie Międzyzdroje 85.6 +Międzyzdroje Świnoujście 13.77 +Wałbrzych Centrum Boguszów-Gorce 13.96 +Jelenia Góra Zabobrze Jelenia Góra Cieplice 7.66 +Jelenia Góra Cieplice Jelenia Góra Sobieszów 3.76 +Jelenia Góra Sobieszów Piechowice 4.04 +Piechowice Szklarska Poręba Dolna 9.51 +Zgorzelec Miasto Pieńsk 10.45 +Węgliniec Zebrzydowa 12.37 +Wrocław Grabiszyn Smolec 7.05 +Smolec Kąty Wrocławskie 10.04 +Mietków Żarów 12.66 +Wrocław Sołtysowice Wrocław Kowale 2.01 +Wrocław Kowale Wrocław Popiele 1.71 +Wrocław Popiele Wrocław Swojczyce 0.88 +Wrocław Swojczyce Wrocław Strachocin 2.01 +Wrocław Strachocin Wrocław Wojnów 1.09 +Wrocław Wojnów Wrocław Wojnów Wschodni 0.96 +Wrocław Wojnów Wschodni Dobrzykowice Wrocławskie 1.45 +Dobrzykowice Wrocławskie Nadolice Małe 2.96 +Nadolice Małe Nadolice Wielkie 2.21 +Nadolice Wielkie Chrząstawa Mała 2.19 +Chrząstawa Mała Jelcz Miłoszyce 4.01 +Rudna Miasto Ścinawa 20.13 +Ścinawa Wołów 18.31 +Wołów Brzeg Dolny 9.95 +Brzeg Dolny Wrocław Muchobór 25.53 +Długołęka Oleśnica 13.77 +Kamieniec Ząbkowicki Ząbkowice Śląskie 9.87 +Ząbkowice Śląskie Piława Górna 10.0 +Piława Górna Dzierżoniów Śląski 11.7 +Trzebnica Wrocław Psie Pole 19.77 +Góra Śląska Borszyn Mały 5.59 +Borszyn Mały Borszyn Wielki 2.46 +Borszyn Wielki Zaborowice 3.85 +Zaborowice Bojanowo 4.7 +Rawicz Bojanowo 12.21 diff --git a/src/rail_network_graph/assets/data/tickets_price/base_price_table.txt b/src/rail_network_graph/assets/data/tickets_price/base_price_table.txt new file mode 100644 index 0000000..ec049a6 --- /dev/null +++ b/src/rail_network_graph/assets/data/tickets_price/base_price_table.txt @@ -0,0 +1,31 @@ +length normal_price +0-5 6.1 +6-10 7.0 +11-15 7.9 +16-20 9.0 +21-25 11.8 +26-30 12.7 +31-35 13.6 +36-40 15.0 +41-47 16.2 +48-53 16.5 +54-59 20.0 +60-67 22.0 +68-73 22.9 +74-80 23.9 +81-90 27.9 +91-100 29.7 +101-120 33.7 +121-140 36.7 +141-160 38.7 +161-180 40.2 +181-200 42.2 +201-240 44.2 +241-280 44.3 +281-320 44.8 +321-360 46.0 +361-400 50.1 +401-500 55.7 +501-600 58.7 +601-700 60.3 +701-800 61.2 diff --git a/src/rail_network_graph/assets/data/tickets_price/discounts_percentages.txt b/src/rail_network_graph/assets/data/tickets_price/discounts_percentages.txt new file mode 100644 index 0000000..6e3bcea --- /dev/null +++ b/src/rail_network_graph/assets/data/tickets_price/discounts_percentages.txt @@ -0,0 +1,11 @@ +name percent +Standard 0 +Senior 60+ (-25%) 25 +Discount -33% 33 +Discount -37% 37 +Discount -49% 49 +Discount -50% 50 +Discount -51% 51 +Discount -78% 78 +Discount -93% 93 +Discount -95% 95 diff --git a/src/rail_network_graph/assets/data/voivodeship_border/dolnoslaskie.geojson b/src/rail_network_graph/assets/data/voivodeship_border/dolnoslaskie.geojson new file mode 100644 index 0000000..e1c2285 --- /dev/null +++ b/src/rail_network_graph/assets/data/voivodeship_border/dolnoslaskie.geojson @@ -0,0 +1 @@ +{"type": "Polygon", "coordinates": [[[16.168827056884766, 51.66089248657238], [16.246667861938533, 51.661685943603516], [16.320459365844783, 51.6943473815918], [16.371171951294002, 51.74922561645508], [16.462131500244084, 51.76020050048828], [16.61181640625, 51.71493148803711], [16.652553558349666, 51.624053955078125], [16.78353500366211, 51.57426834106457], [16.831441879272404, 51.53257369995117], [16.91203117370611, 51.511676788330135], [17.153350830078182, 51.536273956298885], [17.187389373779354, 51.58898544311535], [17.403020858764762, 51.58736419677746], [17.556560516357365, 51.53509902954107], [17.54300880432129, 51.48765182495123], [17.496721267700252, 51.458999633789176], [17.51945877075201, 51.37331008911133], [17.679407119750977, 51.365653991699276], [17.7184734344483, 51.34471893310558], [17.68407058715826, 51.30384826660162], [17.71459579467779, 51.15019989013683], [17.664709091186637, 51.13144302368164], [17.593755722046012, 51.13239288330084], [17.547428131103516, 51.109664916992244], [17.48876953125, 51.0140953063966], [17.468107223510685, 50.94507598876959], [17.403560638427848, 50.91674041748058], [17.322135925293026, 50.807979583740234], [17.226551055908317, 50.73229598999029], [17.145719528198356, 50.579452514648494], [17.034084320068473, 50.56340408325207], [16.948305130004883, 50.43220520019537], [16.892364501953125, 50.444107055664006], [16.859420776367244, 50.4115562438966], [16.910364151000977, 50.38599014282238], [16.936222076416072, 50.31456756591808], [17.007720947265568, 50.29406356811535], [17.012697219848746, 50.21751403808588], [16.961997985839844, 50.24312973022472], [16.956199645996207, 50.224914550781364], [16.89329910278326, 50.22307586669922], [16.874170303344783, 50.19543838500988], [16.838325500488395, 50.20790481567383], [16.706346511840877, 50.09555435180664], [16.635683059692383, 50.10684967041027], [16.561630249023438, 50.16311645507824], [16.556919097900334, 50.22613906860363], [16.520965576171818, 50.23849487304682], [16.444812774658203, 50.317180633544865], [16.373382568359375, 50.332798004150504], [16.348430633545036, 50.38157653808594], [16.279066085815373, 50.370128631591854], [16.247714996338004, 50.40963363647472], [16.212646484375057, 50.408382415771484], [16.196746826171875, 50.430374145507756], [16.202268600463867, 50.44862365722662], [16.23773956298828, 50.44538116455084], [16.2225856781007, 50.458377838134766], [16.311321258544922, 50.493103027343864], [16.303201675414982, 50.50635528564453], [16.360155105590877, 50.49930572509771], [16.393514633178654, 50.52301025390631], [16.40367507934576, 50.57299041748058], [16.445915222168026, 50.57441711425781], [16.43711280822754, 50.596679687500114], [16.355670928955192, 50.643539428710994], [16.35458755493164, 50.6570396423341], [16.23320960998535, 50.67084884643555], [16.221725463867188, 50.63885116577154], [16.18018722534191, 50.62833786010748], [16.156763076782227, 50.65456771850597], [16.09253120422369, 50.661247253418026], [16.065883636474666, 50.64221191406256], [16.061176300048942, 50.61495971679699], [15.998173713684139, 50.60808563232433], [15.991426467895565, 50.68455123901367], [15.934183120727539, 50.691398620605526], [15.857807159423885, 50.67490768432623], [15.854928016662711, 50.706386566162166], [15.815071105957031, 50.75447082519531], [15.688773155212346, 50.74039459228521], [15.679992675781364, 50.75809097290045], [15.614233016967773, 50.77796936035162], [15.478166580200252, 50.79032516479498], [15.447175025939941, 50.81608963012707], [15.380133628845329, 50.77708053588867], [15.363697052001953, 50.79893875122082], [15.366151809692383, 50.84419250488287], [15.307206153869629, 50.864181518554744], [15.266145706176871, 50.91654586791998], [15.297353744506779, 50.95855712890625], [15.236315727233887, 50.99648284912104], [15.1809720993042, 50.98045349121088], [15.169524192810115, 51.02056884765625], [15.134985923767147, 51.00997161865246], [15.14403152465826, 50.99232482910156], [15.093361854553223, 50.99903488159191], [15.09849929809576, 51.017333984375], [15.035081863403377, 51.0098876953125], [15.025491714477539, 51.032020568847656], [14.978283882141113, 51.00723266601568], [14.973196983337402, 50.98892974853521], [15.008683204650879, 50.99059295654297], [15.017274856567383, 50.977447509765625], [15.014170646667537, 50.94117736816406], [14.980230331420898, 50.9260368347168], [15.00298976898199, 50.91355895996094], [15.000395774841252, 50.872795104980526], [14.819312095642147, 50.87421035766607], [14.896553039550838, 50.940643310546875], [14.9171981811524, 50.99520492553722], [14.964696884155387, 51.05036163330084], [14.980915069580078, 51.116054534912166], [14.99776744842535, 51.122417449951286], [15.009804725646916, 51.21345520019537], [15.037618637084961, 51.244201660156364], [15.02335262298584, 51.250308990478516], [15.041814804077148, 51.27260208129883], [15.033481597900504, 51.293933868408146], [14.965243339538574, 51.36108398437506], [14.983740806579647, 51.373550415039176], [14.958283424377555, 51.39534378051769], [14.966279029846305, 51.40400314331055], [15.146061897277946, 51.45989990234381], [15.235673904418945, 51.41542434692377], [15.30739593505865, 51.48981094360346], [15.394125938415527, 51.521907806396484], [15.544168472290096, 51.46749496459955], [15.614734649658203, 51.48047256469721], [15.7158460617066, 51.56174087524414], [15.824743270873967, 51.69386672973644], [15.88630676269537, 51.70903396606445], [15.933335304260197, 51.7691650390625], [16.116859436035156, 51.74700164794933], [16.1352920532226, 51.67399597167969], [16.168827056884766, 51.66089248657238]]]} \ No newline at end of file diff --git a/src/rail_network_graph/assets/img/icon.ico b/src/rail_network_graph/assets/img/icon.ico new file mode 100644 index 0000000..db7bdb1 Binary files /dev/null and b/src/rail_network_graph/assets/img/icon.ico differ diff --git a/src/rail_network_graph/config.py b/src/rail_network_graph/config.py new file mode 100644 index 0000000..3154dda --- /dev/null +++ b/src/rail_network_graph/config.py @@ -0,0 +1,29 @@ +from pathlib import Path + +# Base data folders +CURRENT_DIR = Path(__file__).resolve().parent +BASE_DATA_PATH = CURRENT_DIR / "assets" / "data" +GTFS_DATA_PATH = BASE_DATA_PATH / "gtfs_data" +VOIVODESHIP_BORDER_PATH = BASE_DATA_PATH / "voivodeship_border" / "dolnoslaskie.geojson" +RAILWAY_DISTANCES_OUTPUT_PATH = BASE_DATA_PATH / "railway_distances" / "railway_segment_lengths.txt" +DISCOUNTS_PATH = BASE_DATA_PATH / "tickets_price" / "discounts_percentages.txt" +PRICING_TABLE_PATH = BASE_DATA_PATH / "tickets_price" / "base_price_table.txt" +RAILWAYS_GEOJSON_PATH = BASE_DATA_PATH / "" # insert here the path to the geojson file containing railways + +# GUI assets +APP_ICON_PATH = CURRENT_DIR / "assets" / "img" / "icon.ico" + +# Data processing thresholds +RAILWAY_CLEANING_THRESHOLD = 10 # Merge railway nodes within X meters +DEFAULT_RAILWAY_CLEANING_THRESHOLD = 25 # Default threshold for graph builder + +# Path-finding settings +MAX_TRANSFER_WAIT_MINUTES = 6 * 60 # Maximum waiting time between transfers +DIJKSTRA_TIME_WINDOW_MINUTES = 24 * 60 # Time window for departure search + +# GUI defaults +DEFAULT_START_TIME = "05:00:00" # Default journey start time +MAP_HIGHLIGHT_COLOR = "red" # Route highlight color +MAP_HIGHLIGHT_LINEWIDTH = 4.0 # Highlight thickness +MAP_CLICK_RADIUS = 0.01 # Station click tolerance +MAP_ZOOM_SCALE = 1.2 # Zoom step multiplier diff --git a/src/rail_network_graph/data_processing/__init__.py b/src/rail_network_graph/data_processing/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/rail_network_graph/data_processing/data_loader.py b/src/rail_network_graph/data_processing/data_loader.py new file mode 100644 index 0000000..e249219 --- /dev/null +++ b/src/rail_network_graph/data_processing/data_loader.py @@ -0,0 +1,104 @@ +import logging +from pathlib import Path + +import pandas as pd + +log = logging.getLogger(__name__) + +REQUIRED_FILES = { + "stops": "stops.txt", + "stop_times": "stop_times.txt", + "trips": "trips.txt", + "routes": "routes.txt", +} + + +def load_data(data_directory: str) -> tuple[pd.DataFrame, pd.DataFrame, pd.DataFrame, pd.DataFrame]: + """ + Load GTFS text files from ``data_directory`` and return DataFrames. + + :param data_directory: Path to the folder containing GTFS files: + ``stops.txt``, ``stop_times.txt``, ``trips.txt``, ``routes.txt``. + :return: Tuple ``(stops_data, stop_times_data, trips_data, routes_data)`` where: + - ``stops_data``: DataFrame with stop metadata. + - ``stop_times_data``: DataFrame with arrival/departure times per stop. + - ``trips_data``: DataFrame mapping trips to routes. + - ``routes_data``: DataFrame with route identifiers and short names. + :raises FileNotFoundError: If any required GTFS file is missing. + + Example: + >> load_data("./gtfs") + (, , , ) + """ + log.info("Loading GTFS data from directory: %s", data_directory) + + validate_required_files(data_directory) # Ensure all required files exist before loading + + data_dir = Path(data_directory) # Convert directory string to Path object + log.debug("Resolved data directory to Path: %s", data_dir) + + # Build full paths to GTFS files + stops_path = data_dir / "stops.txt" + stop_times_path = data_dir / "stop_times.txt" + trips_path = data_dir / "trips.txt" + routes_path = data_dir / "routes.txt" + log.debug( + "GTFS paths resolved: stops=%s, stop_times=%s, trips=%s, routes=%s", + stops_path, + stop_times_path, + trips_path, + routes_path, + ) + + # Load individual GTFS tables, selecting only relevant columns where necessary + log.debug("Reading stops data from %s", stops_path) + stops_data = pd.read_csv( + stops_path, + usecols=["stop_id", "stop_name", "stop_lat", "stop_lon", "parent_station", "location_type"], + ) + log.info("Loaded stops_data: %d rows", len(stops_data)) + + log.debug("Reading stop_times data from %s", stop_times_path) + stop_times_data = pd.read_csv(stop_times_path) + log.info("Loaded stop_times_data: %d rows", len(stop_times_data)) + + log.debug("Reading trips data from %s", trips_path) + trips_data = pd.read_csv(trips_path, usecols=["trip_id", "route_id"]) + log.info("Loaded trips_data: %d rows", len(trips_data)) + + log.debug("Reading routes data from %s", routes_path) + routes_data = pd.read_csv(routes_path, usecols=["route_id", "route_short_name"]) + log.info("Loaded routes_data: %d rows", len(routes_data)) + + log.info("Successfully loaded all GTFS data from directory: %s", data_directory) + + return stops_data, stop_times_data, trips_data, routes_data # Return all loaded DataFrames + + +def validate_required_files(data_directory: str) -> None: + """ + Check if all required GTFS files exist in ``data_directory``. + + :param data_directory: Path to the folder expected to contain GTFS files. + :return: None + :raises FileNotFoundError: If one or more required files are missing. + """ + data_dir = Path(data_directory) # Convert directory path to Path object + log.debug("Validating required GTFS files in directory: %s", data_dir) + + # Identify any GTFS files that are missing in the directory + missing_files = [name for name, filename in REQUIRED_FILES.items() if not (data_dir / filename).is_file()] + + for name in REQUIRED_FILES: + file_path = data_dir / REQUIRED_FILES[name] + if file_path.is_file(): + log.debug("Found required file: %s", file_path) + else: + log.warning("Missing required file: %s", file_path) + + if missing_files: + missing_list = ", ".join(f"{REQUIRED_FILES[name]}" for name in missing_files) + log.error("Missing required GTFS files: %s", missing_list) + raise FileNotFoundError(f"Missing required GTFS files: {missing_list}") + + log.info("All required GTFS files are present in directory: %s", data_dir) diff --git a/src/rail_network_graph/data_processing/data_processor.py b/src/rail_network_graph/data_processing/data_processor.py new file mode 100644 index 0000000..110a758 --- /dev/null +++ b/src/rail_network_graph/data_processing/data_processor.py @@ -0,0 +1,237 @@ +import logging +from collections import Counter +from typing import Any + +import pandas as pd +from pandas import DataFrame + +log = logging.getLogger(__name__) + + +def process( + stops_data: DataFrame, stop_times_data: DataFrame, trips_data: DataFrame, routes_data: DataFrame +) -> tuple[DataFrame, dict[str, str], dict[str, tuple[float, float]], dict[str, str]]: + """ + Orchestrate full preprocessing of GTFS tables. + + Steps: + 1) Merge stop_times, trips, and routes. + 2) Map stops to their parent stations. + 3) Extract station coordinates and names. + 4) Append ``station_id`` to the merged stop-level data. + + :param stops_data: GTFS ``stops.txt`` DataFrame. + :param stop_times_data: GTFS ``stop_times.txt`` DataFrame. + :param trips_data: GTFS ``trips.txt`` DataFrame. + :param routes_data: GTFS ``routes.txt`` DataFrame. + :return: Tuple ``(merged_data, stop_to_station_map, station_coordinates, station_names)``. + """ + log.info("Starting GTFS preprocessing pipeline") + log.debug( + "Input DataFrames shapes: stops=%s, stop_times=%s, trips=%s, routes=%s", + stops_data.shape, + stop_times_data.shape, + trips_data.shape, + routes_data.shape, + ) + + # Join stop_times with trips and routes to get route context for each stop occurrence + merged_data = merge_gtfs_data(stop_times_data, trips_data, routes_data) + + # Create mapping from every stop_id (platform) to its parent station_id (or itself if none) + stop_to_station_map = map_stops_to_stations(stops_data) + + # Build lookup dicts: station_id -> (lon, lat) and station_id -> name + station_coordinates, station_names = extract_station_info(stops_data, stop_to_station_map) + + merged_data = merged_data.copy() # Avoid mutating caller's DataFrame + # Attach station_id per stop occurrence using the precomputed mapping + merged_data["station_id"] = merged_data["stop_id"].astype(str).map(stop_to_station_map) + log.debug("Assigned station_id to merged_data; resulting shape: %s", merged_data.shape) + + log.info("Finished GTFS preprocessing pipeline") + return merged_data, stop_to_station_map, station_coordinates, station_names # Pack all artifacts + + +def merge_gtfs_data(stop_times_data: DataFrame, trips_data: DataFrame, routes_data: DataFrame) -> DataFrame: + """ + Merge ``stop_times`` with ``trips`` and ``routes`` and sort rows for downstream processing. + + :param stop_times_data: GTFS ``stop_times.txt`` DataFrame. + :param trips_data: GTFS ``trips.txt`` DataFrame. + :param routes_data: GTFS ``routes.txt`` DataFrame. + :return: Merged DataFrame sorted by ``trip_id`` and ``stop_sequence``. + """ + log.info("Merging stop_times, trips, and routes DataFrames") + log.debug( + "Input shapes for merge: stop_times=%s, trips=%s, routes=%s", + stop_times_data.shape, + trips_data.shape, + routes_data.shape, + ) + merged_data = stop_times_data.merge(trips_data, on="trip_id").merge(routes_data, on="route_id") + log.info("Merged GTFS data: %d rows, %d columns", len(merged_data), merged_data.shape[1]) + # Ensure chronological order within trips for downstream processing + return merged_data.sort_values(by=["trip_id", "stop_sequence"]) + + +def map_stops_to_stations(stops_data: DataFrame) -> dict[str, str]: + """ + Map each ``stop_id`` to its parent ``station_id`` (or to itself if no parent is defined). + + :param stops_data: GTFS ``stops.txt`` DataFrame. + :return: Dict mapping ``stop_id`` → ``station_id`` (strings). + """ + log.info("Building stop_to_station_map from stops_data") + log.debug("stops_data shape: %s", stops_data.shape) + stop_to_station_map: dict[str, str] = {} + for _, row in stops_data.iterrows(): + stop_id = str(row["stop_id"]) + parent_station = row.get("parent_station", None) + # GTFS may store parent_station as float/NaN; cast to int->str when present + station_id = str(int(parent_station)) if pd.notna(parent_station) else stop_id + stop_to_station_map[stop_id] = station_id + log.info("Constructed stop_to_station_map for %d stops", len(stop_to_station_map)) + return stop_to_station_map + + +def extract_station_info( + stops_data: DataFrame, stop_to_station_map: dict[str, str] +) -> tuple[dict[str, tuple[float, float]], dict[str, str]]: + """ + Build station-level coordinates and names, preferring rows with ``location_type == 1``. + + :param stops_data: GTFS ``stops.txt`` DataFrame. + :param stop_to_station_map: Dict mapping ``stop_id`` → ``station_id``. + :return: Tuple ``(station_coordinates, station_names)``, where: + - ``station_coordinates``: ``{station_id: (lon, lat)}``, + - ``station_names``: ``{station_id: stop_name}``. + """ + log.info("Extracting station-level coordinates and names") + log.debug("stops_data shape: %s, stop_to_station_map size: %d", stops_data.shape, len(stop_to_station_map)) + station_coordinates: dict[str, tuple[float, float]] = {} + station_names: dict[str, str] = {} + for _, row in stops_data.iterrows(): + stop_id = str(row["stop_id"]) + station_id = stop_to_station_map[stop_id] + is_station = row.get("location_type", 0) == 1 + + # Initialize once or overwrite with the canonical station row + station_coordinates[station_id] = ( + (row["stop_lon"], row["stop_lat"]) + if (station_id not in station_coordinates or is_station) + else station_coordinates[station_id] + ) + station_names[station_id] = ( + row["stop_name"] if (station_id not in station_names or is_station) else station_names[station_id] + ) + + log.info( + "Extracted station info: %d station_coordinates entries, %d station_names entries", + len(station_coordinates), + len(station_names), + ) + return station_coordinates, station_names + + +def count_platforms_per_station(stop_to_station_map: dict[str, str]) -> Counter: + """ + Count how many stops/platforms map to each ``station_id``. + + :param stop_to_station_map: Dict mapping ``stop_id`` → ``station_id``. + :return: ``Counter`` of platform counts per station. + """ + log.info("Counting platforms per station from stop_to_station_map of size %d", len(stop_to_station_map)) + counts = Counter(stop_to_station_map.values()) + log.debug("Computed platform counts for %d stations", len(counts)) + return counts + + +def get_station_name_coords_map(stops_data: DataFrame) -> dict[str, tuple[float, float]]: + """ + Build a mapping ``{station_name: (lat, lon)}`` using rows where ``location_type == 1``. + + :param stops_data: GTFS ``stops.txt`` DataFrame. + :return: Dict ``{stop_name: (lat, lon)}``. + """ + log.info("Building station_name -> (lat, lon) map from stops_data") + station_data = stops_data[stops_data["location_type"] == 1] + log.debug("Filtered station_data shape (location_type == 1): %s", station_data.shape) + + def _extract_row_data(row: Any) -> tuple[str, tuple[float, float]]: + return str(row["stop_name"]), (float(row["stop_lat"]), float(row["stop_lon"])) + + return dict(_extract_row_data(row) for _, row in station_data.iterrows()) + + +def get_parent_station_id_by_name(stops_data: DataFrame, stop_name: str) -> str | None: + """ + Return the parent ``station_id`` for a given stop name. + If no parent exists, return the stop's own ID. Returns ``None`` if not found. + + :param stops_data: GTFS ``stops.txt`` DataFrame. + :param stop_name: Stop or platform name. + :return: Parent ``station_id`` as string, the stop's own ID if no parent, or ``None`` if not found. + """ + log.info("Looking up parent station_id by stop_name: %s", stop_name) + row = stops_data[stops_data["stop_name"] == stop_name] + if row.empty: + log.warning("No stop found with name: %s", stop_name) + return None + + stop_id = str(row.iloc[0]["stop_id"]) + parent_station: Any = row.iloc[0]["parent_station"] + station_id = str(int(parent_station)) if pd.notna(parent_station) else stop_id + log.debug( + "Resolved station_id for stop_name=%s: stop_id=%s, parent_station=%s, result=%s", + stop_name, + stop_id, + parent_station, + station_id, + ) + return station_id + + +def get_stop_name_by_id(stops_data: DataFrame, stop_id: int) -> str | None: + """ + Return ``stop_name`` for a given numeric ``stop_id``. + + :param stops_data: GTFS ``stops.txt`` DataFrame. + :param stop_id: Numeric stop identifier. + :return: Stop name as string, or ``None`` if not found. + """ + log.info("Looking up stop_name by stop_id: %s", stop_id) + row = stops_data[stops_data["stop_id"] == stop_id] + if row.empty: + log.warning("No stop found with stop_id: %s", stop_id) + return None + stop_name = str(row.iloc[0]["stop_name"]) + log.debug("Found stop_name for stop_id=%s: %s", stop_id, stop_name) + return stop_name + + +def get_parent_station_id_by_stop_id(stops_data: DataFrame, stop_id: int) -> str: + """ + Return the parent ``station_id`` for a given ``stop_id``. + If no parent exists, return the stop's own ID. + + :param stops_data: GTFS ``stops.txt`` DataFrame. + :param stop_id: Numeric stop identifier. + :return: Parent ``station_id`` as string, or the given ``stop_id`` as string if no parent. + :raises ValueError: If ``stop_id`` does not exist in ``stops_data``. + """ + log.info("Looking up parent station_id by stop_id: %s", stop_id) + row = stops_data[stops_data["stop_id"] == stop_id] + if not row.empty: + parent_station: Any = row.iloc[0]["parent_station"] + station_id = str(int(parent_station)) if pd.notna(parent_station) else str(stop_id) + log.debug( + "Resolved station_id for stop_id=%s: parent_station=%s, result=%s", + stop_id, + parent_station, + station_id, + ) + return station_id + + log.error("stop_id not found in stops_data: %s", stop_id) + raise ValueError(f"stop_id not found: {stop_id}") diff --git a/src/rail_network_graph/distance_counter/__init__.py b/src/rail_network_graph/distance_counter/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/rail_network_graph/distance_counter/distance_counter.py b/src/rail_network_graph/distance_counter/distance_counter.py new file mode 100644 index 0000000..93c6a11 --- /dev/null +++ b/src/rail_network_graph/distance_counter/distance_counter.py @@ -0,0 +1,170 @@ +import logging + +from graph_snapper import GraphSnapper +from pandas import DataFrame +from railway_graph_builder import RailwayGraphBuilder +from railway_route_calculator import RailwayRouteCalculator +from results_exporter import export_to_txt + +from rail_network_graph import config +from rail_network_graph.data_processing.data_loader import load_data +from rail_network_graph.data_processing.data_processor import process +from rail_network_graph.graphs.stations_graph import StationsGraph + +log = logging.getLogger(__name__) + + +def load_and_process_data( + data_path: str, +) -> tuple[DataFrame, dict[str, str], dict[str, tuple[float, float]], dict[str, str]]: + """ + Load GTFS files and process them to station-level structures. + + :param data_path: Path to the folder containing GTFS text files. + :return: Tuple ``(merged_data, stop_to_station_map, station_coordinates_map, station_names_map)`` where: + - ``merged_data``: Merged GTFS DataFrame ready for graph building. + - ``stop_to_station_map``: Dict mapping ``stop_id`` → ``station_id``. + - ``station_coordinates_map``: Dict ``{station_id: (lon, lat)}``. + - ``station_names_map``: Dict ``{station_id: station_name}``. + """ + log.info("Loading and processing GTFS data from path: %s", data_path) + # Load raw GTFS files from the specified path + stops_data, stop_times_data, trips_data, routes_data = load_data(data_path) + log.debug( + "Loaded raw GTFS data: stops=%s, stop_times=%s, trips=%s, routes=%s", + stops_data.shape, + stop_times_data.shape, + trips_data.shape, + routes_data.shape, + ) + # Process raw data into station-level representations + merged_data, stop_to_station_map, station_coordinates_map, station_names_map = process( + stops_data, stop_times_data, trips_data, routes_data + ) + log.debug( + "Processed GTFS data: merged_data=%s, stop_to_station_map=%d, station_coordinates_map=%d, station_names_map=%d", + merged_data.shape, + len(stop_to_station_map), + len(station_coordinates_map), + len(station_names_map), + ) + log.info("Finished loading and processing GTFS data from path: %s", data_path) + return merged_data, stop_to_station_map, station_coordinates_map, station_names_map + + +def build_station_graph( + merged_data: DataFrame, + stop_to_station_map: dict[str, str], + station_coordinates_map: dict[str, tuple[float, float]], + station_names_map: dict[str, str], +) -> list[tuple[tuple[str, tuple[float, float]], tuple[str, tuple[float, float]]]]: + """ + Build a station graph and return unique adjacent-station pairs with names and coordinates. + + :param merged_data: Preprocessed stop-level DataFrame enriched with ``station_id``. + :param stop_to_station_map: Dict mapping ``stop_id`` → ``station_id``. + :param station_coordinates_map: Dict of station coordinates ``{station_id: (lon, lat)}``. + :param station_names_map: Dict of station names ``{station_id: name}``. + :return: List of unique pairs: + ``[((name1, (lon1, lat1)), (name2, (lon2, lat2))), ...]``. + """ + log.info("Building station graph from merged_data and stop_to_station_map") + log.debug( + "build_station_graph inputs: merged_data=%s, stop_to_station_map=%d, station_coordinates_map=%d, station_names_map=%d", + merged_data.shape, + len(stop_to_station_map), + len(station_coordinates_map), + len(station_names_map), + ) + # Create the graph based on processed GTFS data + stations_graph = StationsGraph(merged_data, stop_to_station_map) + # Extract unique connections (pairs) between stations + location_pairs = stations_graph.generate_unique_station_pairs_with_coords( + station_coordinates_map, station_names_map + ) + log.info("Generated %d unique station location pairs", len(location_pairs)) + return location_pairs + + +def prepare_railway_graph(geojson_path: str) -> RailwayGraphBuilder: + """ + Create a railway graph from a GeoJSON file and keep only the largest connected component. + + :param geojson_path: Path to the railway network GeoJSON. + :return: Initialized and cleaned ``RailwayGraphBuilder`` instance. + """ + log.info("Preparing railway graph from GeoJSON path: %s", geojson_path) + # Initialize the graph builder with the railway network geometry + railway_graph_builder = RailwayGraphBuilder(geojson_path) + # Construct the graph from the GeoJSON data + railway_graph_builder.build_graph() + # Filter out small, disconnected parts of the network + railway_graph_builder.clean_to_largest_connected_network(threshold=config.RAILWAY_CLEANING_THRESHOLD) + log.info("Railway graph prepared (cleaned to largest connected network)") + return railway_graph_builder + + +def calculate_and_export_routes( + location_pairs: list[tuple[tuple[str, tuple[float, float]], tuple[str, tuple[float, float]]]], + railway_graph_builder: RailwayGraphBuilder, + output_path: str, +) -> None: + """ + Compute railway route lengths for station pairs and export results to a text file. + + :param location_pairs: List of station pairs with names and coordinates: + ``[((name1, (lon1, lat1)), (name2, (lon2, lat2))), ...]``. + :param railway_graph_builder: Prepared railway graph builder. + :param output_path: Output file path for exported distances. + :return: None + """ + log.info("Calculating and exporting routes for %d station pairs", len(location_pairs)) + log.debug("Output path for exported distances: %s", output_path) + # Initialize tools for snapping coordinates to the graph and calculating routes + graph_snapper = GraphSnapper(railway_graph_builder) + route_calculator = RailwayRouteCalculator(railway_graph_builder, graph_snapper) + # Calculate the distances for all station pairs + named_distances = route_calculator.compute_named_distances_from_list(location_pairs) + log.info("Computed distances for %d station pairs", len(named_distances)) + # Save the results + export_to_txt(named_distances, output_path) + log.info("Exported railway distances to file: %s", output_path) + + +def main() -> None: + """ + Program entry point: + 1) Load GTFS data and build the station graph inputs. + 2) Prepare the railway graph from GeoJSON. + 3) Compute segment lengths and export them to a file. + + :return: None + """ + log.info("Starting main railway network processing pipeline") + # Define file paths + data_path = config.GTFS_DATA_PATH + geojson_path = config.RAILWAYS_GEOJSON_PATH + output_path = config.RAILWAY_DISTANCES_OUTPUT_PATH + log.debug( + "Configuration paths: data_path=%s, geojson_path=%s, output_path=%s", + data_path, + geojson_path, + output_path, + ) + + # Step 1: Load and process GTFS data + merged_data, stop_to_station_map, station_coordinates_map, station_names_map = load_and_process_data(data_path) + # Step 2: Build station pairs from GTFS + location_pairs = build_station_graph(merged_data, stop_to_station_map, station_coordinates_map, station_names_map) + + # Step 3: Load and prepare the railway network graph + railway_graph = prepare_railway_graph(geojson_path) + # Step 4: Calculate distances and save results + calculate_and_export_routes(location_pairs, railway_graph, output_path) + log.info("Finished main railway network processing pipeline") + + +if __name__ == "__main__": + # Run the main function when the script is executed directly + log.info("Script executed as __main__") + main() diff --git a/src/rail_network_graph/distance_counter/graph_snapper.py b/src/rail_network_graph/distance_counter/graph_snapper.py new file mode 100644 index 0000000..5950013 --- /dev/null +++ b/src/rail_network_graph/distance_counter/graph_snapper.py @@ -0,0 +1,112 @@ +import logging + +import networkx as nx +from pyproj import Transformer + +from rail_network_graph.distance_counter.railway_graph_builder import RailwayGraphBuilder + +LonLat = tuple[float, float] # (lon, lat) in EPSG:4326 +XY = tuple[float, float] # (x, y) in EPSG:2180 + +log = logging.getLogger(__name__) + + +class GraphSnapper: + """ + Attach station coordinates to the nearest nodes in a railway graph. + + :param builder: RailwayGraphBuilder instance providing a KDTree and node coordinates. + """ + + def __init__(self, builder: RailwayGraphBuilder): + # KD-Tree built on railway graph node coordinates (in EPSG:2180) for fast nearest neighbor lookups + self.kd_tree = builder.kdtree + # List of graph node coordinates corresponding to the KD-Tree indices + self.node_coordinates: list[XY] = builder.node_coords + # Transformer for converting coordinates from WGS84 (lon/lat) to the graph's projection (EPSG:2180) + self.transformer = Transformer.from_crs("EPSG:4326", "EPSG:2180", always_xy=True) + log.debug( + "GraphSnapper initialized: kd_tree=%s, node_coordinates_count=%d", + type(self.kd_tree).__name__ if self.kd_tree is not None else None, + len(self.node_coordinates), + ) + + def snap_station_to_graph(self, station_lon_lat: LonLat) -> XY | None: + """ + Snap a single station (WGS84 lon/lat) to the nearest graph node (EPSG:2180). + + :param station_lon_lat: (lon, lat) station coordinates in EPSG:4326. + :return: (x, y) coordinates of the nearest graph node in EPSG:2180, + or None if snapping fails. + """ + log.debug("Snapping single station to graph: lon_lat=%s", station_lon_lat) + # Transform the WGS84 coordinates to the graph's coordinate system (EPSG:2180) + x, y = self.transformer.transform(*station_lon_lat) + log.debug("Transformed coordinates to EPSG:2180: x=%s, y=%s", x, y) + # Query the KD-Tree to find the index of the nearest graph node + _, node_index = self.kd_tree.query((x, y)) + log.debug("Nearest node index from KD-Tree query: %s", node_index) + # Retrieve the coordinates of the nearest node using the found index + snapped = self.node_coordinates[node_index] + log.info("Snapped station %s to graph node coordinates %s", station_lon_lat, snapped) + return snapped + + def snap_coordinates(self, coordinates: list[LonLat]) -> dict[LonLat, XY]: + """ + Snap a list of WGS84 coordinates to their nearest nodes in the graph. + + :param coordinates: List of points [(lon, lat), ...] in EPSG:4326. + :return: Dict mapping original points to snapped nodes in EPSG:2180, + i.e. {(lon, lat): (x, y)}, excluding points that could not be snapped. + """ + log.info("Snapping %d coordinates to graph nodes", len(coordinates)) + # Apply the snapping logic to every point in the input list + snapped_map: dict[LonLat, XY | None] = {point: self.snap_station_to_graph(point) for point in coordinates} + # Filter out points that failed to snap (None values) + result = { + original_point: snapped_xy for original_point, snapped_xy in snapped_map.items() if snapped_xy is not None + } + log.debug( + "Snapped coordinates: requested=%d, successfully_snapped=%d", + len(coordinates), + len(result), + ) + return result + + @staticmethod + def map_coords_to_components(graph: nx.Graph, snapped_coordinates: dict[LonLat, XY]) -> dict[LonLat, int]: + """ + Map snapped nodes to connected-component indices of the graph. + + :param graph: networkx.Graph representing the railway network. + :param snapped_coordinates: Dict {original_point: snapped_node} where + snapped_node must be present as a node in graph. + :return: Dict {original_point: component_index}. + """ + log.info( + "Mapping %d snapped coordinates to connected components (graph nodes=%d, edges=%d)", + len(snapped_coordinates), + graph.number_of_nodes(), + graph.number_of_edges(), + ) + # Precompute a lookup: node -> component index + # Get all sets of connected nodes in the graph + component_sets = list(nx.connected_components(graph)) + node_to_component_index: dict[XY, int] = {} + # Assign a unique index to every node based on its connected component + for component_index, component_nodes in enumerate(component_sets): + for node in component_nodes: + node_to_component_index[node] = component_index + + coord_to_component_index: dict[LonLat, int] = {} + # Map the original (LonLat) points to the component index of their snapped node + for original_point, snapped_node in snapped_coordinates.items(): + comp_idx = node_to_component_index.get(snapped_node) + if comp_idx is not None: + coord_to_component_index[original_point] = comp_idx + + log.debug( + "Mapped snapped coordinates to components: %d entries", + len(coord_to_component_index), + ) + return coord_to_component_index diff --git a/src/rail_network_graph/distance_counter/railway_graph_builder.py b/src/rail_network_graph/distance_counter/railway_graph_builder.py new file mode 100644 index 0000000..4763e25 --- /dev/null +++ b/src/rail_network_graph/distance_counter/railway_graph_builder.py @@ -0,0 +1,229 @@ +import logging + +import geopandas as gpd +import networkx as nx +import numpy as np +from scipy.spatial import cKDTree +from shapely.geometry import LineString, MultiLineString, Point + +from rail_network_graph import config + +log = logging.getLogger(__name__) + +XY = tuple[float, float] + + +class RailwayGraphBuilder: + """ + Build a railway graph from GeoJSON line geometries. + + The graph is constructed from LineString/MultiLineString features, with edge + weights equal to segment distances. Provides utilities to connect nearby + endpoints and to keep only the largest connected component. + """ + + def __init__(self, railway_geojson_path: str): + """ + Initialize the builder and load GeoJSON data. + + :param railway_geojson_path: Path to the GeoJSON file with railway lines. + """ + log.info("Initializing RailwayGraphBuilder with GeoJSON path: %s", railway_geojson_path) + # Load railway data and reproject it to a metric system (EPSG:2180) + self.railways = self.load_and_validate_geojson(railway_geojson_path) + # Initialize an empty NetworkX graph + self.graph = nx.Graph() + # List to store unique coordinates of graph nodes (for KDTree) + self.node_coords: list[XY] = [] # keep name for compatibility + # KDTree for fast spatial queries + self.kdtree = None # keep name for compatibility + log.debug( + "RailwayGraphBuilder initialized: railways=%s, graph_nodes=%d", + self.railways.shape, + self.graph.number_of_nodes(), + ) + + @staticmethod + def load_and_validate_geojson(path: str) -> gpd.GeoDataFrame: + """ + Load a GeoJSON file and ensure it contains data. + + :param path: Path to the GeoJSON file. + :return: GeoDataFrame reprojected to EPSG:2180. + :raises ValueError: If the file contains no geometries. + """ + log.info("Loading GeoJSON railway data from: %s", path) + # Read the file using GeoPandas + railway_gdf = gpd.read_file(path) + if railway_gdf.empty: + log.error("No data found in GeoJSON file: %s", path) + raise ValueError("No data found in GeoJSON file.") + # Reproject data to a metric coordinate system (EPSG:2180) + reprojected = railway_gdf.to_crs("EPSG:2180") + log.debug("Loaded railway GeoDataFrame with shape: %s", reprojected.shape) + return reprojected + + def build_graph(self) -> None: + """ + Build the graph from the loaded geometries: + + - extract lines from LineString/MultiLineString features, + - add edges with distance weights, + - deduplicate nodes and build a KDTree. + """ + log.info("Building railway graph from geometries") + # Get all individual LineString objects + line_geometries = self.extract_lines_from_geometry() + log.debug("Extracted %d LineString geometries", len(line_geometries)) + # Convert lines to graph edges + self.add_edges_from_lines(line_geometries) + log.debug( + "Graph after adding edges: nodes=%d, edges=%d", self.graph.number_of_nodes(), self.graph.number_of_edges() + ) + # Prepare graph nodes list and KDTree for spatial operations + self.finalize_graph_nodes() + log.info( + "Finished building railway graph: nodes=%d, edges=%d", + self.graph.number_of_nodes(), + self.graph.number_of_edges(), + ) + + def extract_lines_from_geometry(self) -> list[LineString]: + """ + Extract a flat list of LineString objects from the GeoDataFrame geometry. + + :return: List of LineString geometries (in EPSG:2180). + """ + log.debug("Extracting LineStrings from railway geometries") + line_geometries: list[LineString] = [] + # Iterate over all geometries + for geometry in self.railways.geometry: + # Handle single LineString + if isinstance(geometry, LineString): + line_geometries.append(geometry) + # Handle multiple LineStrings within a MultiLineString + elif isinstance(geometry, MultiLineString): + line_geometries.extend(geometry.geoms) + log.debug("Total extracted LineStrings: %d", len(line_geometries)) + return line_geometries + + def add_edges_from_lines(self, line_geometries: list[LineString]) -> None: + """ + Add edges to the graph from consecutive vertices of each line, with distances as weights. + + :param line_geometries: List of railway lines as LineString. + """ + log.info("Adding edges to graph from %d LineStrings", len(line_geometries)) + # Process each LineString segment + for line in line_geometries: + coordinates = list(line.coords) + # Iterate through vertices to form edges (segments) + for vertex_index in range(len(coordinates) - 1): + point_start, point_end = coordinates[vertex_index], coordinates[vertex_index + 1] + # Calculate the segment length (distance) + segment_distance = Point(point_start).distance(Point(point_end)) + # Add the segment as an edge with distance as the weight + self.graph.add_edge(point_start, point_end, weight=segment_distance) + # Keep track of all encountered coordinates + self.node_coords.extend([point_start, point_end]) + log.debug( + "Finished adding edges: nodes=%d, edges=%d, node_coords_count=%d", + self.graph.number_of_nodes(), + self.graph.number_of_edges(), + len(self.node_coords), + ) + + def finalize_graph_nodes(self) -> None: + """ + Deduplicate node coordinates and build a KDTree for nearest-neighbor queries. + """ + log.info("Finalizing graph nodes and building KDTree") + # Remove duplicate coordinates + self.node_coords = list({coord for coord in self.node_coords}) + # Build a KDTree on the unique node coordinates for efficient lookups + self.kdtree = cKDTree(self.node_coords) + log.debug("KDTree built with %d unique node coordinates", len(self.node_coords)) + + def connect_close_endpoints(self, threshold: float) -> int: + """ + Connect endpoints that lie within a given distance threshold. + + :param threshold: Maximum distance between endpoints to connect (in CRS units, meters for EPSG:2180). + :return: Number of new edges added. + """ + log.info("Connecting close endpoints with threshold=%s", threshold) + # Convert node coordinates to a NumPy array for KDTree operations + coordinates_array = np.array(self.node_coords) + # Find all pairs of nodes within the specified threshold distance + close_pairs = cKDTree(coordinates_array).query_pairs(threshold) + added_edges_count = 0 + + # Iterate through close pairs and connect them if an edge doesn't already exist + for index_a, index_b in close_pairs: + point_a, point_b = tuple(coordinates_array[index_a]), tuple(coordinates_array[index_b]) + if not self.graph.has_edge(point_a, point_b): + # Calculate the exact distance between the two close points + distance_ab = Point(point_a).distance(Point(point_b)) + # Add a new edge representing the connection + self.graph.add_edge(point_a, point_b, weight=distance_ab) + added_edges_count += 1 + + log.info("Added %d new edges when connecting close endpoints", added_edges_count) + return added_edges_count + + def keep_largest_connected_component(self) -> None: + """ + Keep only the largest connected component of the graph and rebuild KDTree. + """ + log.info("Keeping largest connected component of the graph") + # Find the set of nodes belonging to the largest connected component + largest_component_nodes = max(nx.connected_components(self.graph), key=len) + # Create a new graph containing only these nodes and their edges + self.graph = self.graph.subgraph(largest_component_nodes).copy() # type: ignore[arg-type] + # Update the list of node coordinates to reflect the new, smaller graph + self.node_coords = list(self.graph.nodes) + # Rebuild the KDTree for the new set of nodes + self.kdtree = cKDTree(self.node_coords) + log.debug( + "Largest connected component retained: nodes=%d, edges=%d", + self.graph.number_of_nodes(), + self.graph.number_of_edges(), + ) + + def update_geometry_from_graph(self) -> None: + """ + Rebuild a GeoDataFrame of LineStrings from current graph edges (for export/visualization). + """ + log.info("Updating GeoDataFrame geometry from current graph edges") + # Create LineString objects from all edges in the graph + lines_from_edges = [LineString([node_u, node_v]) for node_u, node_v in self.graph.edges()] + # Create a new GeoDataFrame from the lines + self.railways = gpd.GeoDataFrame(geometry=lines_from_edges, crs="EPSG:2180") + log.debug("Updated railways GeoDataFrame with %d LineStrings", len(self.railways)) + + def clean_to_largest_connected_network(self, threshold: float = config.DEFAULT_RAILWAY_CLEANING_THRESHOLD) -> None: + """ + Clean the graph by: + - connecting nearby endpoints within the threshold, + - reducing to the largest connected component, + - refreshing the LineString geometry from the graph. + + :param threshold: Maximum distance when connecting endpoints (default 25 m). + """ + log.info("Cleaning railway graph with threshold=%s", threshold) + print(f"\nConnecting track endpoints closer than {threshold} m...") + # Connect nearby nodes to close small gaps + added_edges_count = self.connect_close_endpoints(threshold) + print(f"Added {added_edges_count} new connections.") + + print("\nSelecting the largest connected rail network...") + # Isolate the main network component + self.keep_largest_connected_component() + # Update the stored GeoDataFrame representation + self.update_geometry_from_graph() + log.info( + "Cleaned railway graph: nodes=%d, edges=%d, railways_geometries=%d", + self.graph.number_of_nodes(), + self.graph.number_of_edges(), + len(self.railways), + ) diff --git a/src/rail_network_graph/distance_counter/railway_route_calculator.py b/src/rail_network_graph/distance_counter/railway_route_calculator.py new file mode 100644 index 0000000..910416a --- /dev/null +++ b/src/rail_network_graph/distance_counter/railway_route_calculator.py @@ -0,0 +1,211 @@ +import logging + +import networkx as nx + +from rail_network_graph.distance_counter.graph_snapper import GraphSnapper +from rail_network_graph.distance_counter.railway_graph_builder import RailwayGraphBuilder + +# Type aliases for clarity +LonLat = tuple[float, float] # (lon, lat) in EPSG:4326 +CoordPair = tuple[LonLat, LonLat] + +log = logging.getLogger(__name__) + + +class RailwayRouteCalculator: + """ + Compute the shortest railway routes in a graph using station coordinates. + """ + + def __init__(self, builder: RailwayGraphBuilder, snapper: GraphSnapper): + """ + Initialize with a built railway graph and a coordinate snapper. + + :param builder: RailwayGraphBuilder with a ready railway graph. + :param snapper: GraphSnapper used to snap lon/lat to graph nodes. + """ + # The main railway graph structure + self.graph = builder.graph + # The tool for converting coordinates to graph nodes + self.snapper = snapper + log.debug( + "RailwayRouteCalculator initialized with graph nodes=%d, edges=%d", + self.graph.number_of_nodes(), + self.graph.number_of_edges(), + ) + + def compute_routes_from_coords(self, coordinate_pairs: list[CoordPair]) -> dict[CoordPair, float]: + """ + Compute shortest-path distances (in meters) between coordinate pairs, + only if both endpoints lie in the same connected component. + + :param coordinate_pairs: List of coordinate pairs + [((lon1, lat1), (lon2, lat2)), ...]. + :return: Dict mapping coordinate pairs to distances in meters: + {((lon1, lat1), (lon2, lat2)): distance_m}. + """ + log.info("Computing routes for %d coordinate pairs", len(coordinate_pairs)) + # Identify all unique coordinates to snap them just once + unique_coordinates = {point for pair in coordinate_pairs for point in pair} + log.debug("Unique coordinates to snap: %d", len(unique_coordinates)) + # Snap all unique coordinates to the nearest graph node + snapped_map = self.snapper.snap_coordinates(list(unique_coordinates)) + log.debug("Snapped coordinates count: %d", len(snapped_map)) + # Determine the connected component index for each snapped coordinate + coord_to_component_index = self.snapper.map_coords_to_components(self.graph, snapped_map) + log.debug("Computed component indices for %d snapped coordinates", len(coord_to_component_index)) + + distance_by_pair: dict[CoordPair, float] = {} + # Iterate over all station pairs to calculate the route + for start_coord, end_coord in coordinate_pairs: + # Get the snapped nodes for the pair + start_node = snapped_map.get(start_coord) + end_node = snapped_map.get(end_coord) + + # Check if snapping failed for either point + if not start_node or not end_node: + log.warning( + "One of the points could not be snapped: start=%s (snapped=%s), end=%s (snapped=%s)", + start_coord, + start_node, + end_coord, + end_node, + ) + print(f"One of the points could not be snapped: {start_coord}, {end_coord}") + continue + + # Check if the snapped nodes belong to the same connected component + if coord_to_component_index.get(start_coord) != coord_to_component_index.get(end_coord): + log.info( + "Points in different components – no connection: %s (comp=%s), %s (comp=%s)", + start_coord, + coord_to_component_index.get(start_coord), + end_coord, + coord_to_component_index.get(end_coord), + ) + print("Points are in different components – no connection.") + continue + + try: + # Calculate the shortest path length using edge 'weight' (distance) + distance_meters = nx.shortest_path_length(self.graph, start_node, end_node, weight="weight") + distance_by_pair[(start_coord, end_coord)] = distance_meters + log.debug( + "Computed distance between %s and %s: %s meters", + start_coord, + end_coord, + distance_meters, + ) + except nx.NetworkXNoPath: + # Handle cases where points are in the same component but have no path (should be rare) + log.warning("No path between points: %s and %s", start_coord, end_coord) + print(f"No path between points: {start_coord} and {end_coord}") + + log.info("Finished computing routes; successful pairs: %d", len(distance_by_pair)) + return distance_by_pair + + @staticmethod + def extract_coord_pairs_and_name_map( + location_list: list[tuple[tuple[str, LonLat], tuple[str, LonLat]]], + ) -> tuple[list[CoordPair], dict[CoordPair, tuple[str, str]]]: + """ + Extract raw coordinate pairs and a mapping to their station names. + + :param location_list: List of station pairs + [((name1, (lon1, lat1)), (name2, (lon2, lat2))), ...]. + :return: Tuple (coordinate_pairs, name_map) where: + - coordinate_pairs: [((lon1, lat1), (lon2, lat2)), ...]. + - name_map: {((lon1, lat1), (lon2, lat2)): (name1, name2)}. + """ + log.info("Extracting coordinate pairs and name map from %d location pairs", len(location_list)) + coordinate_pairs: list[CoordPair] = [] + name_map: dict[CoordPair, tuple[str, str]] = {} + + # Iterate through the named input list + for location_a, location_b in location_list: + name_a, coords_a = location_a + name_b, coords_b = location_b + pair = (coords_a, coords_b) + # Collect the raw coordinate pair + coordinate_pairs.append(pair) + # Map the coordinate pair back to the station names + name_map[pair] = (name_a, name_b) + + log.debug("Extracted %d coordinate pairs and %d name map entries", len(coordinate_pairs), len(name_map)) + return coordinate_pairs, name_map + + @staticmethod + def format_named_results( + location_list: list[tuple[tuple[str, LonLat], tuple[str, LonLat]]], raw_distances_m: dict[CoordPair, float] + ) -> list[dict[str, str | float | None]]: + """ + Format results as a list of dicts with station names and distance in kilometers. + + :param location_list: Original input list with names and coordinates. + :param raw_distances_m: Raw distances in meters + {((lon1, lat1), (lon2, lat2)): distance_m}. + :return: List of dicts like + {"from": name1, "to": name2, "distance_km": |None, "error": |optional}. + """ + log.info( + "Formatting named results for %d location pairs (have distances for %d pairs)", + len(location_list), + len(raw_distances_m), + ) + results: list[dict[str, str | float | None]] = [] + + # Iterate through the original list to match names with calculated distances + for location_a, location_b in location_list: + name_a, coords_a = location_a + name_b, coords_b = location_b + # Try to retrieve the calculated distance for the coordinate pair + distance_m = raw_distances_m.get((coords_a, coords_b)) + + if distance_m is not None: + # Format successful calculation result + results.append( + { + "from": name_a, + "to": name_b, + "distance_km": round(distance_m / 1000, 2), # Convert meters to kilometers + } + ) + else: + # Format result when distance calculation failed (e.g., no snap, different component, no path) + results.append( + { + "from": name_a, + "to": name_b, + "distance_km": None, + "error": "No connection or point outside the rail network coverage", + } + ) + + log.debug("Formatted %d result entries", len(results)) + return results + + def compute_named_distances_from_list( + self, location_list: list[tuple[tuple[str, LonLat], tuple[str, LonLat]]] + ) -> list[dict[str, str | float | None]]: + """ + End-to-end helper: compute distances for named station pairs and format results. + + :param location_list: List of pairs + [((name1, (lon1, lat1)), (name2, (lon2, lat2))), ...]. + :return: List of result dicts with names and distances in kilometers. + """ + log.info("Computing named distances for %d location pairs", len(location_list)) + # Step 1: Separate names from coordinates + coordinate_pairs, name_map = self.extract_coord_pairs_and_name_map(location_list) + log.debug( + "After extraction: coordinate_pairs=%d, name_map_entries=%d", + len(coordinate_pairs), + len(name_map), + ) + # Step 2: Calculate distances on the railway graph + raw_distances_m = self.compute_routes_from_coords(coordinate_pairs) + log.debug("Raw distances computed for %d coordinate pairs", len(raw_distances_m)) + # Step 3: Combine distances with names and format the output + results = self.format_named_results(location_list, raw_distances_m) + log.info("Finished computing named distances; result entries=%d", len(results)) + return results diff --git a/src/rail_network_graph/distance_counter/results_exporter.py b/src/rail_network_graph/distance_counter/results_exporter.py new file mode 100644 index 0000000..fb5627e --- /dev/null +++ b/src/rail_network_graph/distance_counter/results_exporter.py @@ -0,0 +1,61 @@ +import logging + +log = logging.getLogger(__name__) + + +def export_to_txt(results: list[dict[str, str | float | None]], output_path: str) -> None: + """ + Export formatted distance results to a .txt file in the format: + station_fromstation_tovalue. + + :param results: List of dicts with keys such as "from", "to", "distance_km" or "error". + :param output_path: Destination file path. + """ + log.info("Exporting %d results to txt file: %s", len(results), output_path) + # Convert the list of result dicts into a list of formatted text lines + output_lines = format_results_as_txt_lines(results) + log.debug("Formatted %d lines for export", len(output_lines)) + # Write the formatted lines to the specified file + write_lines_to_file(output_lines, output_path) + log.info("Successfully saved results to: %s", output_path) + print(f"Saved {len(results)} results to file: {output_path}") + + +def format_results_as_txt_lines(results: list[dict[str, str | float | None]]) -> list[str]: + """ + Format results into text lines suitable for file export. + + :param results: List of dicts containing route results. + :return: List of formatted text lines. + """ + log.debug("Formatting %d results into text lines", len(results)) + output_lines: list[str] = [] + # Process each result dictionary + for result in results: + # Check if a valid distance was calculated + if result.get("distance_km") is not None: + formatted_line = f"{result['from']}\t{result['to']}\t{result['distance_km']}\n" + else: + formatted_line = f"{result['from']}\t{result['to']}\t{result.get('error', 'No data')}\n" + output_lines.append(formatted_line) + + log.debug("Created %d formatted text lines", len(output_lines)) + return output_lines + + +def write_lines_to_file(output_lines: list[str], file_path: str) -> None: + """ + Write a list of text lines to a file. + + :param output_lines: List of text lines to write. + :param file_path: Output file path. + """ + log.info("Writing %d lines to file: %s", len(output_lines), file_path) + try: + # Open the file in write mode ('w') with UTF-8 encoding + with open(file_path, "w", encoding="utf-8") as file: + file.writelines(output_lines) + log.info("File written successfully: %s", file_path) + except OSError as error: + log.error("Error writing to file %s | %s", file_path, error) + print(f"Error writing to file {file_path}: {error}") diff --git a/src/rail_network_graph/graphs/__init__.py b/src/rail_network_graph/graphs/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/rail_network_graph/graphs/base_graph.py b/src/rail_network_graph/graphs/base_graph.py new file mode 100644 index 0000000..737a30c --- /dev/null +++ b/src/rail_network_graph/graphs/base_graph.py @@ -0,0 +1,137 @@ +import logging +from collections import defaultdict +from typing import Any + +log = logging.getLogger(__name__) + + +class BaseGraph: + """ + Directed weighted graph. + + Features: + - add / remove edges, + - print edges, + - detect direct and skipped node pairs from sequences, + - filter true direct connections. + """ + + def __init__(self) -> None: + # Initialize the graph using a dictionary: {source_node: {target_node: weight}} + self.graph: dict[Any, dict[Any, int | float]] = {} + log.debug("BaseGraph initialized with empty graph structure") + + def add_edge(self, source_node: Any, target_node: Any, weight: int | float = 1) -> None: + """ + Add a directed edge from `source_node` to `target_node` with a weight. + + :param source_node: Start node (hashable) + :param target_node: End node (hashable) + :param weight: Edge weight (default: 1) + """ + # Ensure the source node exists in the graph dictionary + if source_node not in self.graph: + self.graph[source_node] = {} + # Ensure the target node exists, even if it has no outgoing edges yet + if target_node not in self.graph: + self.graph[target_node] = {} + # Add or update the edge with its weight + self.graph[source_node][target_node] = weight + + def remove_edge(self, source_node: Any, target_node: Any) -> None: + """ + Remove a directed edge if it exists. + """ + # Check if the source node exists and the edge to the target node exists + if source_node in self.graph and target_node in self.graph[source_node]: + # Remove the target node from the source node's neighbors + del self.graph[source_node][target_node] + log.info("Removed edge: %s -> %s", source_node, target_node) + else: + log.debug("Attempted to remove non-existent edge: %s -> %s", source_node, target_node) + + def print_edges(self) -> None: + """ + Print all edges as (node1, node2, weight). + """ + edges: list[tuple[Any, Any, int | float]] = [] + # Iterate over all source nodes and their neighbors + for node, neighbors in self.graph.items(): + for neighbor, weight in neighbors.items(): + edges.append((node, neighbor, weight)) + log.debug("Collected %d edges for printing", len(edges)) + print("Graph edges:", edges) + + def find_edge_pairs( + self, sequences_by_id: dict[str, list[str]] + ) -> tuple[dict[tuple[str, str], set[str]], set[tuple[str, str]]]: + """ + Analyze sequences of nodes (e.g., station sequences in trips) and return: + + - direct_pairs: consecutive neighbors, + - skipped_pairs: nodes separated by ≥1 intermediate node. + + :param sequences_by_id: {id: [node1, node2, node3, ...]} + :return: (direct_pairs, skipped_pairs) + direct_pairs = {(nodeA, nodeB): {ids}} + skipped_pairs = {(nodeA, nodeC)} + """ + log.info("Finding edge pairs from %d sequences", len(sequences_by_id)) + # Dictionary to store consecutive pairs and the sequence IDs they appear in + direct_pairs: defaultdict[tuple[str, str], set[str]] = defaultdict(set) + # Set to store non-consecutive pairs (skipped connections) + skipped_pairs: set[tuple[str, str]] = set() + + # Process each sequence (e.g., trip) + for sequence_id, node_sequence in sequences_by_id.items(): + log.debug("Processing sequence_id=%s with length=%d", sequence_id, len(node_sequence)) + + # direct neighbors (consecutive nodes) + for index in range(len(node_sequence) - 1): + # Use ordered_pair to normalize the pair tuple (A, B) regardless of sequence direction + pair = self.ordered_pair(node_sequence[index], node_sequence[index + 1]) + direct_pairs[pair].add(sequence_id) + + # skipped neighbors (non-consecutive nodes) + # Iterate through all possible start nodes + for start_index in range(len(node_sequence) - 2): + # Iterate through all possible end nodes, skipping at least one intermediate node + for end_index in range(start_index + 2, len(node_sequence)): + # Normalize the pair tuple + pair = self.ordered_pair(node_sequence[start_index], node_sequence[end_index]) + skipped_pairs.add(pair) + + log.debug( + "Computed direct_pairs=%d, skipped_pairs=%d", + len(direct_pairs), + len(skipped_pairs), + ) + return dict(direct_pairs), skipped_pairs + + @staticmethod + def ordered_pair(node_a: str, node_b: str) -> tuple[str, str]: + """ + Return a sorted (node_a, node_b), ignoring direction. + """ + # Sort the nodes to create a canonical, order-independent representation of the pair + value_a, value_b = sorted((node_a, node_b)) + return value_a, value_b + + @staticmethod + def filter_direct_connections( + direct_pairs: dict[tuple[str, str], set[str]], skipped_pairs: set[tuple[str, str]] + ) -> set[tuple[str, str]]: + """ + Remove direct connections that also appear as skipped connections + (meaning they are not true direct links). + """ + # A true direct connection is one that is observed as consecutive (direct_pairs) + # but is NEVER observed with an intermediate node (not in skipped_pairs) + result = {pair for pair in direct_pairs if pair not in skipped_pairs} + log.info( + "Filtered direct connections: input_direct=%d, input_skipped=%d, result=%d", + len(direct_pairs), + len(skipped_pairs), + len(result), + ) + return result diff --git a/src/rail_network_graph/graphs/stations_graph.py b/src/rail_network_graph/graphs/stations_graph.py new file mode 100644 index 0000000..b63625a --- /dev/null +++ b/src/rail_network_graph/graphs/stations_graph.py @@ -0,0 +1,249 @@ +import logging +from collections import defaultdict +from typing import Any + +from pandas import DataFrame + +from rail_network_graph.graphs.base_graph import BaseGraph + +log = logging.getLogger(__name__) + + +class StationsGraph(BaseGraph): + """ + Graph of station-to-station connections derived from GTFS data. + + :param merged_data: Merged GTFS DataFrame containing stops with ``station_id``, + ordered by trips/stop_sequence. + :param stop_to_station: Mapping of ``stop_id`` → parent ``station_id``. + """ + + def __init__(self, merged_data: DataFrame, stop_to_station: dict[str, str]) -> None: + # Initialize the base graph structure + super().__init__() + self.merged_data: DataFrame = merged_data + self.stop_to_station: dict[str, str] = stop_to_station + + # Store ordered list of station IDs for each trip + self.trip_sequences: dict[str, list[str]] = {} + # Stores the set of station pairs identified as true direct connections + self.filtered_edges: set[tuple[str, str]] = set() + # Stores detailed connection info: {station_id: {(dest, dep_time, arr_time), ...}} + self.station_connections: dict[str, set[tuple[str, str, str]]] = defaultdict(set) + + log.debug( + "StationsGraph initialized: merged_data_shape=%s, stop_to_station_size=%d", + self.merged_data.shape, + len(self.stop_to_station), + ) + + # Build the graph immediately upon initialization + self.build_graph() + + def build_graph(self) -> None: + """ + Build the station graph: + + 1) Generate station sequences per trip, + 2) Find direct and skipped pairs, + 3) Filter to true direct edges only, + 4) Add filtered edges to the graph, + 5) Build a station→connections dictionary with times. + """ + log.info("Building StationsGraph from merged GTFS data") + # Step 1: Extract ordered station sequences from GTFS trips + self.trip_sequences = self.generate_trip_sequences() + log.debug("Generated trip_sequences for %d trips", len(self.trip_sequences)) + # Step 2: Identify all consecutive and non-consecutive station pairs + direct_pairs, skipped_pairs = self.find_edge_pairs(self.trip_sequences) + log.debug( + "find_edge_pairs returned: direct_pairs=%d, skipped_pairs=%d", + len(direct_pairs), + len(skipped_pairs), + ) + # Step 3: Determine which pairs are *true* direct connections + self.filtered_edges = self.filter_direct_connections(direct_pairs, skipped_pairs) + log.info("Filtered to %d true direct station edges", len(self.filtered_edges)) + + # Step 4: Add the true direct connections as edges to the BaseGraph + self.add_filtered_edges_to_graph() + # Step 5: Store detailed time-based connections for potential later use + self.build_station_connections() + log.info( + "StationsGraph build complete: graph_nodes=%d, graph_edges=%d, station_connections=%d", + len(self.graph), + sum(len(neighbors) for neighbors in self.graph.values()), + len(self.station_connections), + ) + + def generate_trip_sequences(self) -> dict[str, list[str]]: + """ + Group by ``trip_id`` and collect visited station IDs in order. + + :return: Dict ``{trip_id: [station_id1, station_id2, ...]}``. + """ + log.debug("Generating trip sequences grouped by trip_id") + # Group the DataFrame by trip_id and aggregate the list of station_ids for each trip + sequences = self.merged_data.groupby("trip_id")["station_id"].apply(list).to_dict() + log.debug("Generated %d trip sequences", len(sequences)) + return sequences + + def get_sorted_trip_rows(self, trip_id: str) -> list[Any]: + """ + Return an ordered list of stop rows for a given trip. + + :param trip_id: Trip identifier. + :return: List of namedtuples sorted by ``stop_sequence``. + """ + # Filter the DataFrame for a specific trip + trip_rows_df = self.merged_data[self.merged_data["trip_id"] == trip_id] + # Sort rows by stop_sequence and convert them to a list of named tuples + sorted_rows = list(trip_rows_df.sort_values("stop_sequence").itertuples()) + return sorted_rows + + def add_filtered_edges_to_graph(self) -> None: + """ + Add only edges present in ``self.filtered_edges`` to the graph. + """ + log.info("Adding filtered edges to StationsGraph") + added_edges = 0 + # Iterate over all trips to find the specific direction of the connection + for trip_id, _station_sequence in self.trip_sequences.items(): + trip_rows = self.get_sorted_trip_rows(trip_id) + + # Iterate over consecutive stops in the trip + for row_index in range(len(trip_rows) - 1): + from_stop = trip_rows[row_index] + to_stop = trip_rows[row_index + 1] + # Normalize the pair for lookup in filtered_edges + station_pair = self.ordered_pair(from_stop.station_id, to_stop.station_id) + + # Check if this pair is a *true* direct connection + if station_pair in self.filtered_edges: + # Add a directed edge (weight=1 for unweighted pathfinding) + self.add_edge(from_stop.station_id, to_stop.station_id, weight=1) + added_edges += 1 + log.info("Added %d filtered station edges to BaseGraph", added_edges) + + def build_station_connections(self) -> None: + """ + Build a dict: ``station_id -> set of (dest_station_id, departure_time, arrival_time)`` + for direct connections only. + """ + log.info("Building station_connections for direct edges") + connection_count = 0 + # Iterate over trips to extract time information for filtered edges + for trip_id, _station_sequence in self.trip_sequences.items(): + trip_rows = self.get_sorted_trip_rows(trip_id) + + for row_index in range(len(trip_rows) - 1): + from_stop = trip_rows[row_index] + to_stop = trip_rows[row_index + 1] + station_pair = self.ordered_pair(from_stop.station_id, to_stop.station_id) + + # Only process connections confirmed as true direct edges + if station_pair in self.filtered_edges: + # Store the connection details keyed by the departure station ID + self.station_connections[from_stop.station_id].add( + ( + to_stop.station_id, + from_stop.departure_time, + to_stop.arrival_time, + ) + ) + connection_count += 1 + log.info("Built %d station connection entries", connection_count) + + def generate_unique_station_pairs_with_coords( + self, station_coords: dict[str, tuple[float, float]], station_names: dict[str, str] + ) -> list[tuple[tuple[str, tuple[float, float]], tuple[str, tuple[float, float]]]]: + """ + Return unique adjacent-station pairs with names and coordinates. + + :param station_coords: Dict ``{station_id: (lon, lat)}``. + :param station_names: Dict ``{station_id: name}``. + :return: List of pairs + ``[((name1, (lon1, lat1)), (name2, (lon2, lat2))), ...]``. + """ + log.info("Generating unique station pairs with coordinates from trip_sequences") + seen_pairs: set[tuple[str, str]] = set() + location_pairs: list[tuple[tuple[str, tuple[float, float]], tuple[str, tuple[float, float]]]] = [] + + # Iterate over all trip sequences + for station_sequence in self.trip_sequences.values(): + for index_in_sequence in range(len(station_sequence) - 1): + station_a = station_sequence[index_in_sequence] + station_b = station_sequence[index_in_sequence + 1] + # Canonical pair representation for uniqueness check + station_pair: tuple[str, str] = ( + (station_a, station_b) if station_a < station_b else (station_b, station_a) + ) + + # Add the pair only once + if station_pair not in seen_pairs: + seen_pairs.add(station_pair) + + coords_a = station_coords.get(station_a) + coords_b = station_coords.get(station_b) + + if coords_a is None or coords_b is None: + log.debug("Skipping pair %s: missing coordinates", station_pair) + continue + + # Prepare location data (name and coordinates) for both stations + location_a = (station_names.get(station_a, station_a), coords_a) + location_b = (station_names.get(station_b, station_b), coords_b) + location_pairs.append((location_a, location_b)) + + log.info("Generated %d unique station location pairs", len(location_pairs)) + return location_pairs + + def find_path_bfs(self, start_station_id: str, end_station_id: str) -> list[str]: + """ + BFS (without ``deque``) returning the shortest path by number of stations + between ``start_station_id`` and ``end_station_id``. + + Uses a Python list as a queue. + + :param start_station_id: Start station ID. + :param end_station_id: End station ID. + :return: List of station IDs representing the path, or ``[]`` if none exists. + """ + log.info("Running BFS path search: start=%s, end=%s", start_station_id, end_station_id) + visited_stations: set[str] = set() + # Initialize queue with the starting path + path_queue: list[list[str]] = [[start_station_id]] # list of paths to explore + + while path_queue: + # Dequeue the oldest path (BFS behavior) + current_path = path_queue[0] + path_queue = path_queue[1:] + current_station = current_path[-1] + + # Goal check + if current_station == end_station_id: + log.info( + "BFS found path with length %d between %s and %s", + len(current_path), + start_station_id, + end_station_id, + ) + return current_path + + # Skip if already fully processed + if current_station in visited_stations: + continue + visited_stations.add(current_station) + + # Find neighbors in the undirected sense from the filtered edges set + neighbors = [station_b for station_a, station_b in self.filtered_edges if station_a == current_station] + neighbors += [station_a for station_a, station_b in self.filtered_edges if station_b == current_station] + + # Enqueue new paths + for neighbor_station in neighbors: + if neighbor_station not in visited_stations: + extended_path = current_path + [neighbor_station] + path_queue.append(extended_path) + + log.warning("No BFS path found between %s and %s", start_station_id, end_station_id) + return [] diff --git a/src/rail_network_graph/logging_config.py b/src/rail_network_graph/logging_config.py new file mode 100644 index 0000000..1872b25 --- /dev/null +++ b/src/rail_network_graph/logging_config.py @@ -0,0 +1,484 @@ +""" +Unified configuration of color-aware UTC logging for console and file. + +Global logging configuration in Python: colorful logs in the console (ANSI, if supported), +timestamps in UTC format, and optional file output. The module automatically detects the +environment (VS Code, PyCharm, Jupyter, CI, Windows/Unix) and decides whether to enable +colors. This ensures consistent, readable logs with a unified format across the entire project. + +Usage (once at startup): + from logging_config import configure_logging, add_file_logging + configure_logging() # colorful logs to stderr (MUST be called first) + add_file_logging("app.log") # optional: log to file (UTC, no colors) + +Then: + import logging + log = logging.getLogger(__name__) + log.info("Sample info") + log.error("Sample error") + +Parameters: +- configure_logging( + level=logging.DEBUG, # minimum log level + stream=sys.stderr, # where to write logs (e.g., sys.stdout) + format_string="...", # message format (default: ISO-8601 UTC) + date_format="...", # date format + replace_handlers=False, # True → removes old handlers and sets new ones + capture_warnings=True # redirects warnings module output to logs + ) + +- add_file_logging( + path, # path to log file + level=logging.DEBUG, # minimum log level for file + format_string="...", # message format (UTC) + date_format="...", # date format + encoding="utf-8" # file encoding + ) + +Important: +- Always call configure_logging() first, then optionally add_file_logging(). +- Call both functions only once. Afterward, use log = logging.getLogger(__name__). +- Colors: `FORCE_COLOR=1` enforces colors, `NO_COLOR=1` disables them + (set as environment variables before running the program). +""" + +import logging +import os +import sys +import time +from dataclasses import dataclass +from typing import IO + +__all__ = ["configure_logging", "add_file_logging"] + + +COLORS = { + "DEBUG": "\033[90m", + "INFO": "\033[32m", + "WARNING": "\033[93m", + "ERROR": "\033[91m", + "CRITICAL": "\033[97;41m", + "RESET": "\033[0m", +} + + +@dataclass(frozen=True) +class ColorSupport: + """ + Represents whether ANSI color output is supported in the current environment. + + Attributes: + supported (bool): True if ANSI colors are supported, False otherwise. + reason (Optional[str]): Explanation why colors are not supported (if applicable). + env_hint (Optional[str]): Environment hint to provide user-specific tips (e.g. 'vscode', 'pycharm'). + """ + + supported: bool + reason: str | None = None + env_hint: str | None = None + + +class ColorEnv: + """ + Detects environment characteristics related to color/ANSI support + and provides methods to enable or disable ANSI colors in different terminals. + """ + + _WINDOWS_ANSI_ENABLED = False + _COLOR_HINT_SHOWN = False + + @staticmethod + def is_ci() -> bool: + """ + Detects if the current process is running inside a CI environment. + + :return: True if running in a known CI system, False otherwise. + """ + return os.environ.get("CI") == "1" or any( + os.environ.get(env_var) + for env_var in ( + "GITHUB_ACTIONS", + "GITLAB_CI", + "TF_BUILD", + "TEAMCITY_VERSION", + "BUILDKITE", + "TRAVIS", + "CIRCLECI", + "APPVEYOR", + "DRONE", + "JENKINS_URL", + ) + ) + + @staticmethod + def is_vscode() -> bool: + """ + Detects if the process is running inside VS Code's Integrated Terminal or Debug Console. + + :return: True if running in VS Code, False otherwise. + """ + return bool(os.environ.get("TERM_PROGRAM") == "vscode" or os.environ.get("VSCODE_PID")) + + @staticmethod + def is_pycharm() -> bool: + """ + Detects if the process is running inside the PyCharm IDE. + + :return: True if running in PyCharm, False otherwise. + """ + return bool(os.environ.get("PYCHARM_HOSTED")) + + @staticmethod + def is_windows_terminal() -> bool: + """ + Detects if the process is running in Windows Terminal or ConEmu. + + :return: True if running in Windows Terminal or ConEmu, False otherwise. + """ + return bool(os.environ.get("WT_SESSION") or os.environ.get("ConEmuPID")) + + @staticmethod + def is_jupyter() -> bool: + """ + Detects if the process is running inside a Jupyter or Spyder kernel. + + :return: True if in Jupyter, False otherwise. + """ + try: + import ipykernel # noqa: F401 + + return True + except ImportError: + return False + + @classmethod + def ensure_windows_ansi(cls) -> None: + """ + Ensures that ANSI escape sequences are enabled in Windows consoles. + Requires the `colorama` package. + + :return: None + """ + if cls._WINDOWS_ANSI_ENABLED or os.name != "nt": + return + + try: + import colorama # noqa E402 + except ImportError: + return + + colorama.just_fix_windows_console() + cls._WINDOWS_ANSI_ENABLED = True + + @staticmethod + def stream_isatty(stream: IO[str]) -> bool: + """ + Checks whether a given stream is connected to a TTY (interactive terminal). + + :param stream: The stream to check. + :return: True if the stream is a TTY, False otherwise. + """ + try: + return hasattr(stream, "isatty") and callable(stream.isatty) and stream.isatty() + except (OSError, ValueError): + return False + + @classmethod + def color_support_with_reason(cls, stream: IO[str]) -> ColorSupport: + """ + Determines whether colors are supported in the current environment, + including reasons and environment hints if disabled. + + :param stream: The output stream (e.g. sys.stderr). + :return: A ColorSupport instance with the decision and explanation. + """ + if os.environ.get("FORCE_COLOR"): + cls.ensure_windows_ansi() + return ColorSupport(True) + + if os.environ.get("NO_COLOR"): + return ColorSupport(False, "NO_COLOR is set.", None) + + if cls.is_pycharm(): + cls.ensure_windows_ansi() + return ColorSupport(True, env_hint="pycharm") + + if cls.is_vscode(): + cls.ensure_windows_ansi() + return ColorSupport(True, env_hint="vscode") + + if cls.is_windows_terminal(): + cls.ensure_windows_ansi() + + if cls.is_jupyter(): + return ColorSupport(True, env_hint="jupyter") + + if not cls.stream_isatty(stream): + return ColorSupport(False, "Output is not a TTY (file/pipe/IDE wo/ emulation).", None) + + if os.name == "nt": + cls.ensure_windows_ansi() + return ( + ColorSupport(True) + if cls._WINDOWS_ANSI_ENABLED + else ColorSupport(False, "Windows without 'colorama'.", "windows") + ) + + terminal_type = os.environ.get("TERM", "") + if terminal_type in ("", "dumb"): + return ColorSupport(False, f"TERM={terminal_type!r} does not support ANSI.", "unix") + + return ColorSupport(True) + + @classmethod + def maybe_show_color_hint(cls, reason: str | None, env_hint: str | None) -> None: + """ + Optionally prints a hint to stderr explaining why colors are disabled + and how to enable them, depending on the environment. + + :param reason: Reason why colors are disabled. + :param env_hint: Environment hint (if available). + :return: None + """ + if cls._COLOR_HINT_SHOWN or cls.is_ci() or os.environ.get("LOG_COLOR_HINT") != "1": + return + + if not reason: + return + + cls._COLOR_HINT_SHOWN = True + + base_tips = [ + "- If redirecting to a file/pipeline: colors are intentionally disabled.", + "- Remove the `NO_COLOR` variable if it's set.", + "- You can force colors: `FORCE_COLOR=1`.", + ] + + env_tips = { + "pycharm": ["- PyCharm: enable **Run → Emulate terminal in output console**."], + "vscode": [ + "- VS Code: use the **Integrated Terminal** (View → Terminal),", + " or set `FORCE_COLOR=1` in your Debug Configuration.", + ], + "windows": ["- Windows: `pip install colorama` or run in Windows Terminal."], + "unix": [ + "- Linux/macOS: ensure `TERM` is something like `xterm-256color`.", + "- In Docker, run with a TTY: `docker run -it ...`.", + ], + "jupyter": ["- Jupyter: colors usually work; to disable set `NO_COLOR=1`."], + None: [ + "- Windows: consider **Windows Terminal** or `pip install colorama`.", + "- VS Code/PyCharm: run via the **Integrated/Emulated Terminal**.", + "- Docker: add `-t` (pseudo-TTY).", + ], + } + + tips = env_tips.get(env_hint, env_tips[None]) + + message = ( + "[log-color] Colors are disabled: " + f"{reason} How to enable them:\n " + + "\n ".join(tips + base_tips) + + "\n (Silence tips: LOG_COLOR_HINT=0 / off by default)" + ) + + try: + print(message, file=sys.stderr) + except (OSError, ValueError): + pass + + +class UtcFormatter(logging.Formatter): + """ + Formatter that enforces UTC timestamps for log records. + """ + + @staticmethod + def _converter(secs: float | None) -> time.struct_time: + return time.gmtime(0 if secs is None else secs) + + converter = _converter + + +class ColoredFormatter(UtcFormatter): + """ + A log formatter that applies ANSI color codes to messages based on log level. + + Extends UtcFormatter to add colorization when enabled. + """ + + def __init__(self, format_string: str, date_format: str | None, use_color: bool) -> None: + super().__init__(fmt=format_string, datefmt=date_format) + self.use_color = use_color + + def format(self, record: logging.LogRecord) -> str: + message = super().format(record) + + if not self.use_color: + return message + + color = COLORS.get(record.levelname, COLORS["RESET"]) + return f"{color}{message}{COLORS['RESET']}" + + +class HandlerFactory: + """ + Factory for creating logging handlers with appropriate formatters + (stream handlers with optional colors, or file handlers without colors). + """ + + @staticmethod + def stream_handler(stream: IO[str], fmt: str, date_format: str) -> logging.Handler: + handler = logging.StreamHandler(stream) + handler.setLevel(logging.NOTSET) + + support = ColorEnv.color_support_with_reason(stream) + if not support.supported: + ColorEnv.maybe_show_color_hint(support.reason, support.env_hint) + + handler.setFormatter(ColoredFormatter(format_string=fmt, date_format=date_format, use_color=support.supported)) + return handler + + @staticmethod + def file_handler(path: str, fmt: str, date_format: str, encoding: str = "utf-8") -> logging.Handler: + absolute_path = os.path.abspath(path) + handler = logging.FileHandler(absolute_path, encoding=encoding) + handler.setLevel(logging.NOTSET) + handler.setFormatter(UtcFormatter(fmt=fmt, datefmt=date_format)) + return handler + + +class LoggingConfigurator: + """ + Provides high-level configuration methods for setting up logging + with optional color support for console and file handlers. + """ + + @staticmethod + def configure( + level: int = logging.DEBUG, + stream: IO[str] = sys.stderr, + format_string: str = "%(asctime)s.%(msecs)03dZ [%(levelname)s] %(name)s: %(message)s", + date_format: str = "%Y-%m-%dT%H:%M:%S", + *, + replace_handlers: bool = False, + capture_warnings: bool = True, + ) -> None: + """ + Configures global logging with colorized console output. + + :param level: Minimum logging level (default DEBUG). + :param stream: Stream to log to (default sys.stderr). + :param format_string: Log message format string. + :param date_format: Date/time format string. + :param replace_handlers: If True, removes existing handlers first. + :param capture_warnings: If True, redirects warnings to logging. + :return: None + """ + root = logging.getLogger() + + if replace_handlers: + for handler in root.handlers[:]: + root.removeHandler(handler) + if hasattr(root, "_colored_logging_configured"): + delattr(root, "_colored_logging_configured") + + if getattr(root, "_colored_logging_configured", False) and not replace_handlers: + if capture_warnings: + logging.captureWarnings(True) + return + + root.setLevel(level) + root.addHandler(HandlerFactory.stream_handler(stream, format_string, date_format)) + root._colored_logging_configured = True # type: ignore[attr-defined] + + if capture_warnings: + logging.captureWarnings(True) + + @staticmethod + def add_file_logging( + path: str, + level: int = logging.DEBUG, + format_string: str = "%(asctime)s.%(msecs)03dZ [%(levelname)s] %(name)s: %(message)s", + date_format: str = "%Y-%m-%dT%H:%M:%S", + encoding: str = "utf-8", + ) -> None: + """ + Adds a file handler to the global logger, writing logs in UTC. + + :param path: Path to the log file. + :param level: Minimum logging level (default DEBUG). + :param format_string: Log message format string. + :param date_format: Date/time format string. + :param encoding: File encoding (default UTF-8). + :return: None + """ + root = logging.getLogger() + absolute_path = os.path.abspath(path) + + for handler in root.handlers: + if isinstance(handler, logging.FileHandler) and getattr(handler, "baseFilename", None) == absolute_path: + if root.level > level: + root.setLevel(level) + return + + root.addHandler(HandlerFactory.file_handler(absolute_path, format_string, date_format, encoding)) + + if root.level > level: + root.setLevel(level) + + +def configure_logging( + level: int = logging.DEBUG, + stream: IO[str] = sys.stderr, + format_string: str = "%(asctime)s.%(msecs)03dZ [%(levelname)s] %(name)s: %(message)s", + date_format: str = "%Y-%m-%dT%H:%M:%S", + *, + replace_handlers: bool = False, + capture_warnings: bool = True, +) -> None: + """ + Public API to configure global logging with colorized console output. + + :param level: Minimum logging level (default DEBUG). + :param stream: Stream to log to (default sys.stderr). + :param format_string: Log message format string. + :param date_format: Date/time format string. + :param replace_handlers: If True, removes existing handlers first. + :param capture_warnings: If True, redirects warnings to logging. + :return: None + """ + LoggingConfigurator.configure( + level=level, + stream=stream, + format_string=format_string, + date_format=date_format, + replace_handlers=replace_handlers, + capture_warnings=capture_warnings, + ) + + +def add_file_logging( + path: str, + level: int = logging.DEBUG, + format_string: str = "%(asctime)s.%(msecs)03dZ [%(levelname)s] %(name)s: %(message)s", # Default - ISO-8601 + date_format: str = "%Y-%m-%dT%H:%M:%S", + encoding: str = "utf-8", +) -> None: + """ + Public API to add file logging to the global logger. + + :param path: Path to the log file. + :param level: Minimum logging level (default DEBUG). + :param format_string: Log message format string. + :param date_format: Date/time format string. + :param encoding: File encoding (default UTF-8). + :return: None + """ + LoggingConfigurator.add_file_logging( + path=path, + level=level, + format_string=format_string, + date_format=date_format, + encoding=encoding, + ) diff --git a/src/rail_network_graph/path_finder/__init__.py b/src/rail_network_graph/path_finder/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/rail_network_graph/path_finder/cleaner.py b/src/rail_network_graph/path_finder/cleaner.py new file mode 100644 index 0000000..5316939 --- /dev/null +++ b/src/rail_network_graph/path_finder/cleaner.py @@ -0,0 +1,80 @@ +import logging + +from rail_network_graph.path_finder.time_utils import parse_time_to_minutes + +log = logging.getLogger(__name__) + + +def remove_station_cycles(path_with_station_trip_time: list[tuple[str, str, str]]) -> list[tuple[str, str, str]]: + """ + Remove loops where the same station is revisited. + + Keeps only the first occurrence, trimming the path when a station appears again. + """ + log.debug("remove_station_cycles: input length=%d", len(path_with_station_trip_time)) + + first_visit_index_by_station: dict[str, int] = {} + cleaned_path: list[tuple[str, str, str]] = [] + + for idx, node in enumerate(path_with_station_trip_time): + station_id = node[0] + log.debug("Processing node %d: station=%s", idx, station_id) + + if station_id in first_visit_index_by_station: + first_index = first_visit_index_by_station[station_id] + log.debug("Cycle detected for station %s at index %d; trimming to %d", station_id, idx, first_index + 1) + cleaned_path = cleaned_path[: first_index + 1] + else: + first_visit_index_by_station[station_id] = len(cleaned_path) + cleaned_path.append(node) + log.debug("Station %s added at cleaned index %d", station_id, len(cleaned_path) - 1) + + log.debug("remove_station_cycles: output length=%d", len(cleaned_path)) + return cleaned_path + + +def collapse_consecutive_stations( + path_with_station_trip_time: list[tuple[str, str, str]], +) -> list[tuple[str, str, str]]: + """ + Collapse consecutive entries for the same station. + + Keep only the last entry if: + - it's the same station AND trip changed, OR + - it's the same station AND departure time is later. + """ + log.debug("collapse_consecutive_stations: input length=%d", len(path_with_station_trip_time)) + + if not path_with_station_trip_time: + log.debug("Input is empty → returning empty list") + return [] + + simplified_path: list[tuple[str, str, str]] = [path_with_station_trip_time[0]] + + for idx, current_node in enumerate(path_with_station_trip_time[1:], start=1): + previous_node = simplified_path[-1] + + same_station = current_node[0] == previous_node[0] + trip_changed = current_node[1] != previous_node[1] + departs_later = parse_time_to_minutes(current_node[2]) > parse_time_to_minutes(previous_node[2]) + + log.debug( + "Node %d: station=%s trip=%s time=%s | prev station=%s trip=%s time=%s", + idx, + current_node[0], + current_node[1], + current_node[2], + previous_node[0], + previous_node[1], + previous_node[2], + ) + + if same_station and (trip_changed or departs_later): + log.debug("Replacing previous entry with later/better one at station %s", current_node[0]) + simplified_path[-1] = current_node + elif not same_station: + log.debug("Appending new station %s", current_node[0]) + simplified_path.append(current_node) + + log.debug("collapse_consecutive_stations: output length=%d", len(simplified_path)) + return simplified_path diff --git a/src/rail_network_graph/path_finder/graph.py b/src/rail_network_graph/path_finder/graph.py new file mode 100644 index 0000000..64d5fc0 --- /dev/null +++ b/src/rail_network_graph/path_finder/graph.py @@ -0,0 +1,163 @@ +import logging + +import pandas as pd + +from rail_network_graph import config +from rail_network_graph.path_finder.models import stop_rows_from_dataframe +from rail_network_graph.path_finder.time_utils import forward_time_difference, parse_time_to_minutes + +log = logging.getLogger(__name__) + + +class GraphBuilder: + """ + Build a time–expanded transfer graph from a timetable. + + Each node represents a specific departure event: (station_id, trip_id, departure_time). + Edges represent either: + - travel along the same trip (train movement), + - or a feasible transfer at the same station. + + Time is converted to continuous minutes to correctly handle night-crossing trips. + """ + + def __init__(self, timetable_df: pd.DataFrame): + """ + Initialize the builder and convert timetable times to continuous minute values. + + :param timetable_df: GTFS-like DataFrame with at least: + station_id, trip_id, stop_sequence, departure_time, arrival_time + """ + self.timetable_df = timetable_df.copy() + log.info("Initializing GraphBuilder with timetable_df shape=%s", self.timetable_df.shape) + # Adjacency list representation: node -> list of (target_node, travel_time_minutes) + self.graph: dict[tuple[str, str, str], list[tuple[tuple[str, str, str], int]]] = {} + # Pre-process times to absolute minutes + self.prepare_times() + + def prepare_times(self) -> None: + """ + Convert departure and arrival times to absolute minutes, handling day wrap. + + How it works: + - Process each trip in stop order. + - When a time goes backwards (e.g., 23:50 → 00:10), add a 24h offset. + - Ensure monotonic time for routing even across midnight. + """ + log.info("Preparing absolute times for timetable") + MINUTES_PER_DAY = 24 * 60 + # Initialize new columns for absolute minutes + self.timetable_df["dep_min"] = -1 + self.timetable_df["arr_min"] = -1 + + # Process each trip group separately to handle its timeline continuity + for trip_id, trip_group in self.timetable_df.groupby("trip_id"): + day_offset_minutes = 0 + previous_departure_minutes: int | None = None + + # Iterate through stops in sequential order + for row_index, row in trip_group.sort_values("stop_sequence").iterrows(): + # Get raw minutes (0-1439) for departure and arrival + dep_minutes = parse_time_to_minutes(str(row["departure_time"])) + arr_minutes = parse_time_to_minutes(str(row["arrival_time"])) + + # Detect midnight crossing inside the same trip (time wraps from 23:xx to 00:xx) + if previous_departure_minutes is not None and dep_minutes < previous_departure_minutes: + day_offset_minutes += MINUTES_PER_DAY + log.debug( + "Midnight crossing detected in trip_id=%s at row_index=%s; " "day_offset_minutes=%d", + trip_id, + row_index, + day_offset_minutes, + ) + + # Calculate absolute time since day 0 + dep_absolute = dep_minutes + day_offset_minutes + arr_absolute = arr_minutes + day_offset_minutes + + # Handle arrivals that are *before* departure due to time wrap (e.g., 23:59 dep, 00:02 arr) + # This should only happen if the trip duration crosses midnight + if arr_absolute < dep_absolute: + arr_absolute += MINUTES_PER_DAY + + # Store the calculated absolute minute values back in the DataFrame + self.timetable_df.at[row_index, "dep_min"] = dep_absolute # type: ignore[index] + self.timetable_df.at[row_index, "arr_min"] = arr_absolute # type: ignore[index] + # Update previous departure time (raw minutes) for midnight detection in the next stop + previous_departure_minutes = dep_minutes + + log.info("Time preparation complete; dep_min/arr_min columns populated") + + def build(self) -> dict[tuple[str, str, str], list[tuple[tuple[str, str, str], int]]]: + """ + Build the full time-expanded graph: trip edges + transfer edges. + + :return: adjacency dict: + node -> list of (target_node, travel_time_minutes) + """ + log.info("Building time-expanded graph (trip edges + transfer edges)") + # Add edges for movement on the same train/trip + self.add_trip_edges() + # Add edges for possible transfers between trains at the same station + self.add_transfer_edges() + log.info("Graph build complete; nodes=%d", len(self.graph)) + return self.graph + + def add_trip_edges(self) -> None: + """Add edges representing travel between consecutive stops within the same trip.""" + log.info("Adding trip edges to graph") + edge_count = 0 + for _, trip_group in self.timetable_df.groupby("trip_id"): + # Convert group rows to a list of StopRow namedtuples, sorted by sequence + stop_rows = stop_rows_from_dataframe(trip_group.sort_values("stop_sequence")) + + # Iterate over consecutive stops (pairs) in the trip + for current_stop, next_stop in zip(stop_rows, stop_rows[1:], strict=False): + # Travel duration is the time difference between the two departures (absolute minutes) + travel_duration_minutes = next_stop.dep_min - current_stop.dep_min + + # Define the nodes using the (station_id, trip_id, departure_time) tuple + from_node = (current_stop.station_id, current_stop.trip_id, current_stop.departure_time) + to_node = (next_stop.station_id, next_stop.trip_id, next_stop.departure_time) + + # Add the edge to the graph (travel duration as weight) + self.graph.setdefault(from_node, []).append((to_node, travel_duration_minutes)) + edge_count += 1 + log.info("Trip edges added: %d", edge_count) + + def add_transfer_edges(self) -> None: + """ + Add feasible transfer edges between different trips at the same station. + + Rules: + - Transfers only allowed between different trips. + - Waiting time must be > 0 and <= 6h. + """ + MAX_WAIT_MINUTES = config.MAX_TRANSFER_WAIT_MINUTES + log.info("Adding transfer edges with MAX_WAIT_MINUTES=%d", MAX_WAIT_MINUTES) + + transfer_count = 0 + # Group by station to consider only transfers at the same location + for _station_id, station_group in self.timetable_df.groupby("station_id"): + stop_rows = stop_rows_from_dataframe(station_group) + + # Iterate through all possible pairs of stops at this station + for from_stop in stop_rows: + for to_stop in stop_rows: + # Transfers must be between different events/trips + if from_stop == to_stop or from_stop.trip_id == to_stop.trip_id: + continue + + # Calculate the waiting time (time difference between arrival and next departure) + wait_time_minutes = forward_time_difference(from_stop.arr_min, to_stop.dep_min) + + # Check feasibility: positive and not excessively long wait time + if 0 < wait_time_minutes <= MAX_WAIT_MINUTES: + # Define the nodes + from_node = (from_stop.station_id, from_stop.trip_id, from_stop.departure_time) + to_node = (to_stop.station_id, to_stop.trip_id, to_stop.departure_time) + # Add the transfer edge (wait time as weight) + self.graph.setdefault(from_node, []).append((to_node, wait_time_minutes)) + transfer_count += 1 + + log.info("Transfer edges added: %d", transfer_count) diff --git a/src/rail_network_graph/path_finder/models.py b/src/rail_network_graph/path_finder/models.py new file mode 100644 index 0000000..2495ed3 --- /dev/null +++ b/src/rail_network_graph/path_finder/models.py @@ -0,0 +1,69 @@ +import logging +from typing import Any, NamedTuple + +import pandas as pd + +log = logging.getLogger(__name__) + + +class StopRow(NamedTuple): + """ + Structured representation of a single timetable stop event. + + Attributes: + station_id (str): Station identifier (parent station in GTFS). + trip_id (str): Trip identifier this stop belongs to. + departure_time (str): Scheduled departure time (HH:MM:SS). + arrival_time (str): Scheduled arrival time (HH:MM:SS). + dep_min (int): Absolute departure time in minutes (continuous timeline). + arr_min (int): Absolute arrival time in minutes (continuous timeline). + """ + + station_id: str + trip_id: str + departure_time: str + arrival_time: str + dep_min: int + arr_min: int + + +def stop_rows_from_dataframe(timetable_dataframe: pd.DataFrame) -> list[StopRow]: + """ + Convert a timetable DataFrame into a list of StopRow objects. + + Expected columns: + - station_id + - trip_id + - departure_time + - arrival_time + - dep_min + - arr_min + + :param timetable_dataframe: DataFrame containing stop data. + :return: List of StopRow records. + """ + # Define the set of columns required by the StopRow NamedTuple + required_columns = {"station_id", "trip_id", "departure_time", "arrival_time", "dep_min", "arr_min"} + + # Check for missing columns + missing = required_columns - set(timetable_dataframe.columns) + if missing: + # Raise an error if necessary columns are absent + log.error("Missing required timetable columns: %s", missing) + raise KeyError(f"Missing required timetable columns: {missing}") + + # Iterate over DataFrame rows and convert each row to a StopRow instance + def _create_stop_row(row: Any) -> StopRow: + """Helper to cast row to Any and satisfy PyCharm's linter.""" + return StopRow( + station_id=str(row["station_id"]), + trip_id=str(row["trip_id"]), + departure_time=str(row["departure_time"]), + arrival_time=str(row["arrival_time"]), + dep_min=int(row["dep_min"]), + arr_min=int(row["arr_min"]), + ) + + stop_rows: list[StopRow] = [_create_stop_row(row) for _, row in timetable_dataframe.iterrows()] + + return stop_rows diff --git a/src/rail_network_graph/path_finder/path_finder.py b/src/rail_network_graph/path_finder/path_finder.py new file mode 100644 index 0000000..c473d92 --- /dev/null +++ b/src/rail_network_graph/path_finder/path_finder.py @@ -0,0 +1,306 @@ +import heapq +import logging + +import pandas as pd + +from rail_network_graph import config +from rail_network_graph.path_finder.cleaner import collapse_consecutive_stations, remove_station_cycles +from rail_network_graph.path_finder.graph import GraphBuilder +from rail_network_graph.path_finder.time_utils import parse_time_to_minutes + +log = logging.getLogger(__name__) + +GraphNode = tuple[str, str, str] # (station_id, trip_id, departure_time) + + +class PathFinderDijkstra: + """ + Find the shortest routes in a timetable using Dijkstra's algorithm + over a time-expanded graph (nodes are departure events). + """ + + # Defines the time window for searching initial departures (24 hours) + TIME_WINDOW_MINUTES = config.DIJKSTRA_TIME_WINDOW_MINUTES + + def __init__(self, timetable: pd.DataFrame): + """ + Initialize the graph and precompute departure/arrival minute maps. + + :param timetable: Full timetable DataFrame. + """ + log.info("Initializing PathFinderDijkstra with timetable shape=%s", timetable.shape) + # Build the time-expanded graph (nodes = departure events, edges = travel/transfer) + graph_builder = GraphBuilder(timetable) + self.graph: dict[GraphNode, list[tuple[GraphNode, int]]] = graph_builder.build() + schedule = graph_builder.timetable_df + + log.debug("Graph built: nodes=%d", len(self.graph)) + + # Create map from node tuple to its absolute departure time in minutes + self.departure_minutes: dict[GraphNode, int] = { + (str(row["station_id"]), str(row["trip_id"]), row["departure_time"]): int(row["dep_min"]) + for _, row in schedule.iterrows() + } + # Create map from node tuple to its absolute arrival time in minutes + self.arrival_minutes: dict[GraphNode, int] = { + (str(row["station_id"]), str(row["trip_id"]), row["departure_time"]): int(row["arr_min"]) + for _, row in schedule.iterrows() + } + + log.debug( + "Departure/arrival minutes maps created: departure=%d, arrival=%d", + len(self.departure_minutes), + len(self.arrival_minutes), + ) + + def find_path( + self, + origin_station: str, + destination_station: str, + start_time: str = "00:00:00", + ) -> tuple[list[tuple[str, str]], list[str], int, list[str]] | None: + """ + Find the shortest route from origin to destination. + + :param origin_station: Origin station ID. + :param destination_station: Destination station ID. + :param start_time: Start time in HH:MM:SS (default "00:00:00"). + :return: Tuple: + 1) list of (station_id, departure_time) in travel order, + 2) list of transfer station IDs, + 3) total travel time in minutes, + 4) list of used trip_id in order. + Returns None if no connection exists. + """ + log.info( + "Finding path: origin=%s, destination=%s, start_time=%s", + origin_station, + destination_station, + start_time, + ) + # Convert user start time to continuous minutes + start_minutes = parse_time_to_minutes(start_time) + log.debug("Parsed start_time=%s to start_minutes=%d", start_time, start_minutes) + + # Initialize Dijkstra's search data structures + priority_queue, distance, predecessor = self.initialize_search(origin_station, start_minutes) + log.debug( + "Search initialized: initial_nodes=%d, origin_station=%s", + len(distance), + origin_station, + ) + + # Run the search, returning the final destination node if found + destination_node = self.run_dijkstra(priority_queue, distance, predecessor, destination_station) + if destination_node is None: + log.warning( + "No path found from %s to %s starting at %s", + origin_station, + destination_station, + start_time, + ) + return None + + log.info("Destination node reached: %s", destination_node) + + # Reconstruct the raw path (all intermediate events) + raw_path = self.reconstruct_path(destination_node, predecessor) + log.debug("Raw path length (events)=%d", len(raw_path)) + + # Clean the path to remove cycles and redundant stops + cleaned_path = self.clean_path(raw_path) + log.debug("Cleaned path length (events)=%d", len(cleaned_path)) + + # Extract final results from the cleaned path + transfer_stations = self.extract_transfers(cleaned_path) + total_duration_min = self.calculate_total_duration(cleaned_path) + station_departures = [(station_id, departure_time) for station_id, _, departure_time in cleaned_path] + # Get the unique sequence of trip IDs used + trip_sequence = list(dict.fromkeys(trip_id for _, trip_id, _ in cleaned_path)) + + log.info( + "Path found: stations=%d, transfers=%d, total_duration=%d min, trips=%d", + len(station_departures), + len(transfer_stations), + total_duration_min, + len(trip_sequence), + ) + + return station_departures, transfer_stations, total_duration_min, trip_sequence + + def initialize_search( + self, origin_station: str, min_departure_minutes: int + ) -> tuple[list[tuple[int, GraphNode]], dict[GraphNode, int], dict[GraphNode, GraphNode | None]]: + """ + Build the initial priority queue and distance/predecessor maps. + + :param origin_station: Origin station ID. + :param min_departure_minutes: Minimum departure time in minutes since midnight. + :return: (priority_queue, distance, predecessor). + """ + log.debug( + "Initializing search: origin_station=%s, min_departure_minutes=%d, time_window=%d", + origin_station, + min_departure_minutes, + self.TIME_WINDOW_MINUTES, + ) + priority_queue: list[tuple[int, GraphNode]] = [] + distance: dict[GraphNode, int] = {} + predecessor: dict[GraphNode, GraphNode | None] = {} + + # Initialize costs for all possible starting nodes (departure events at origin_station) + for node in self.graph: + station_id, _, _ = node + node_departure_minute = self.departure_minutes[node] + + # Check if node is at the origin station AND departs after the user's start time + # AND is within a 24h window (to limit search space) + if ( + station_id == origin_station + and min_departure_minutes <= node_departure_minute < min_departure_minutes + self.TIME_WINDOW_MINUTES + ): + # Initial cost is the waiting time until the departure + initial_wait = node_departure_minute - min_departure_minutes + heapq.heappush(priority_queue, (initial_wait, node)) + distance[node] = initial_wait + predecessor[node] = None + + log.debug( + "Search initialization complete: initial_queue_size=%d, starting_nodes=%d", + len(priority_queue), + len(distance), + ) + return priority_queue, distance, predecessor + + def run_dijkstra( + self, + priority_queue: list[tuple[int, GraphNode]], + distance: dict[GraphNode, int], + predecessor: dict[GraphNode, GraphNode | None], + destination_station: str, + ) -> GraphNode | None: + """ + Execute Dijkstra's main loop. + + :param priority_queue: Queue of nodes to visit (min-heap by cost). + :param distance: Map of best-known costs to nodes. + :param predecessor: Map of predecessors along shortest paths. + :param destination_station: Destination station ID. + :return: Destination node if reached; otherwise None. + """ + log.debug( + "Starting Dijkstra: queue_size=%d, distance_entries=%d, destination_station=%s", + len(priority_queue), + len(distance), + destination_station, + ) + visited: set[GraphNode] = set() + + while priority_queue: + # Extract node with the smallest known cost (total travel + waiting time) + current_cost, current_node = heapq.heappop(priority_queue) + if current_node in visited: + continue + visited.add(current_node) + + # Check for goal condition (node's station_id matches destination) + if current_node[0] == destination_station: + log.info( + "Destination reached during Dijkstra: node=%s, cost=%d, visited_nodes=%d", + current_node, + current_cost, + len(visited), + ) + return current_node + + # Explore neighbors + for neighbor_node, edge_weight in self.graph.get(current_node, []): + if neighbor_node in visited: + continue + # Calculate new total cost to reach the neighbor + new_cost = current_cost + edge_weight + # Relaxation: update distance if a shorter path is found + if neighbor_node not in distance or new_cost < distance[neighbor_node]: + distance[neighbor_node] = new_cost + predecessor[neighbor_node] = current_node + heapq.heappush(priority_queue, (new_cost, neighbor_node)) + + log.warning("Dijkstra finished without reaching destination_station=%s", destination_station) + return None + + @staticmethod + def reconstruct_path(last_node: GraphNode, predecessor: dict[GraphNode, GraphNode | None]) -> list[GraphNode]: + """ + Reconstruct the path from the destination node back to the start. + + :param last_node: Destination node. + :param predecessor: Predecessor map. + :return: List of nodes from start to destination. + """ + path: list[GraphNode] = [] + current: GraphNode | None = last_node + # Traverse backwards using the predecessor map + while current: + path.append(current) + current = predecessor[current] + # Reverse the path to get start-to-end order + reconstructed = list(reversed(path)) + log.debug("reconstruct_path: last_node=%s, path_length=%d", last_node, len(reconstructed)) + return reconstructed + + @staticmethod + def clean_path(nodes: list[GraphNode]) -> list[GraphNode]: + """ + Remove station cycles and collapse consecutive occurrences of the same station. + + :param nodes: Raw node list. + :return: Cleaned node list. + """ + log.debug("clean_path: input_length=%d", len(nodes)) + # Step 1: Remove cycles (loops) + without_cycles = remove_station_cycles(nodes) + log.debug("clean_path: after remove_station_cycles length=%d", len(without_cycles)) + # Step 2: Collapse redundant consecutive stops at the same station + cleaned = collapse_consecutive_stations(without_cycles) + log.debug("clean_path: after collapse_consecutive_stations length=%d", len(cleaned)) + return cleaned + + @staticmethod + def extract_transfers(nodes: list[GraphNode]) -> list[str]: + """ + Extract station IDs where a train change occurs. + + :param nodes: Cleaned node list. + :return: List of unique transfer station IDs (in order). + """ + # A transfer occurs when the trip_id changes between two consecutive nodes + transfers = list( + dict.fromkeys( # Ensure stations are unique and maintain order + [ + nodes[index][0] # station_id of the arrival node (where the transfer happens) + for index in range(1, len(nodes)) + if nodes[index][1] != nodes[index - 1][1] # Trip ID difference check + ] + ) + ) + log.debug("extract_transfers: nodes=%d, transfers=%s", len(nodes), transfers) + return transfers + + def calculate_total_duration(self, nodes: list[GraphNode]) -> int: + """ + Compute total travel time in minutes (sum of edge weights along the path). + + :param nodes: Cleaned node list. + :return: Total duration in minutes. + """ + total_duration = 0 + # Iterate over consecutive pairs of nodes (segments) in the cleaned path + for source_node, target_node in zip(nodes, nodes[1:], strict=False): + # Look up the edge in the graph's adjacency list + for neighbor_node, weight in self.graph.get(source_node, []): + # Find the specific edge connecting source to target + if neighbor_node == target_node: + total_duration += weight + break + log.debug("calculate_total_duration: segments=%d, total_duration=%d", max(len(nodes) - 1, 0), total_duration) + return total_duration diff --git a/src/rail_network_graph/path_finder/time_utils.py b/src/rail_network_graph/path_finder/time_utils.py new file mode 100644 index 0000000..66da505 --- /dev/null +++ b/src/rail_network_graph/path_finder/time_utils.py @@ -0,0 +1,40 @@ +MINUTES_IN_DAY = 24 * 60 + + +def parse_time_to_minutes(time_string: str) -> int: + """ + Convert a time string in format "HH:MM:SS" to total minutes since midnight. + + :param time_string: Time in string format, e.g. "14:30:00". + :return: Total minutes since midnight. + """ + # Split the time string into components + hours_string, minutes_string, seconds_string = time_string.split(":") + # Convert hours and minutes to integers + hours = int(hours_string) + minutes = int(minutes_string) + # seconds exist in the format but are not used here + + # Calculate total minutes since midnight + total_minutes = hours * 60 + minutes + return total_minutes + + +def forward_time_difference(start_minutes: int, end_minutes: int) -> int: + """ + Compute forward time difference, wrapping over midnight if needed. + + :param start_minutes: Start time in minutes since midnight. + :param end_minutes: End time in minutes since midnight. + :return: Number of forward minutes between the times + (if end < start, assumes the time passed midnight). + """ + # Calculate the initial difference (can be negative if end < start) + difference_minutes = end_minutes - start_minutes + + # If the difference is negative, it means the time has wrapped past midnight. + if difference_minutes < 0: + # Add a full day's worth of minutes to get the positive forward duration. + difference_minutes += MINUTES_IN_DAY + + return difference_minutes diff --git a/src/rail_network_graph/utils/__init__.py b/src/rail_network_graph/utils/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/rail_network_graph/utils/distance_calculator.py b/src/rail_network_graph/utils/distance_calculator.py new file mode 100644 index 0000000..9c3480d --- /dev/null +++ b/src/rail_network_graph/utils/distance_calculator.py @@ -0,0 +1,60 @@ +import logging +from typing import Any + +import pandas as pd + +log = logging.getLogger(__name__) + + +def load_distances(file_path: str) -> dict[tuple[str, str], float]: + """ + Load railway segment distances from a tab-separated file. + """ + log.debug("load_distances: loading file %s", file_path) + + distance_dataframe = pd.read_csv(file_path, sep="\t", header=None, names=["from", "to", "km"]) + + log.debug("load_distances: loaded %d rows", len(distance_dataframe)) + + def _process_row(row: Any) -> tuple[tuple[str, str], float]: + """Helper to cast row to Any and satisfy PyCharm's linter.""" + origin_station = str(row["from"]).strip() + destination_station = str(row["to"]).strip() + + station_key = ( + (origin_station, destination_station) + if origin_station < destination_station + else (destination_station, origin_station) + ) + distance_val = float(row["km"]) + return station_key, distance_val + + distances_by_pair = dict(_process_row(row) for _, row in distance_dataframe.iterrows()) + + log.debug("load_distances: total unique pairs=%d", len(distances_by_pair)) + return distances_by_pair + + +def get_total_distance(station_sequence: list[str], distances_by_pair: dict[tuple[str, str], float]) -> float: + """ + Compute total travel distance by summing segment distances. + """ + log.debug("get_total_distance: station_sequence length=%d", len(station_sequence)) + + total_distance_km = 0.0 + + for index in range(len(station_sequence) - 1): + station_a = station_sequence[index] + station_b = station_sequence[index + 1] + + station_key = (station_a, station_b) if station_a < station_b else (station_b, station_a) + + segment_distance = distances_by_pair.get(station_key, 0.0) + total_distance_km += segment_distance + + log.debug( + "Segment %d: %s → %s | key=%s | distance=%.3f", index, station_a, station_b, station_key, segment_distance + ) + + log.debug("get_total_distance: total_distance_km=%.3f", total_distance_km) + return total_distance_km diff --git a/src/rail_network_graph/utils/price_calculator.py b/src/rail_network_graph/utils/price_calculator.py new file mode 100644 index 0000000..d2920e4 --- /dev/null +++ b/src/rail_network_graph/utils/price_calculator.py @@ -0,0 +1,45 @@ +import logging +from collections.abc import Hashable +from typing import Any + +import pandas as pd + +log = logging.getLogger(__name__) + + +def load_pricing(file_path: str) -> list[tuple[tuple[int, int], float]]: + """ + Load distance pricing ranges and base ticket prices from a file. + """ + log.debug("load_pricing: loading file %s", file_path) + + pricing_dataframe = pd.read_csv(file_path, sep=r"\s+|\t", engine="python") + log.debug("load_pricing: loaded %d rows", len(pricing_dataframe)) + + def _process_row(idx: Hashable, row: Any) -> tuple[tuple[int, int], float]: + range_start_km, range_end_km = map(int, str(row["length"]).split("-")) + base_price = float(row["normal_price"]) + log.debug("Row %s: range=%d-%d km | price=%.2f", idx, range_start_km, range_end_km, base_price) + + return (range_start_km, range_end_km), base_price + + pricing_ranges = [_process_row(idx, row) for idx, row in pricing_dataframe.iterrows()] + + log.debug("load_pricing: total ranges=%d", len(pricing_ranges)) + return pricing_ranges + + +def get_price(travel_distance_km: float, pricing_ranges: list[tuple[tuple[int, int], float]]) -> float: + """ + Determine the ticket price for a given travel distance. + """ + log.debug("get_price: travel_distance_km=%.3f", travel_distance_km) + + for (range_start_km, range_end_km), price in pricing_ranges: + if range_start_km <= travel_distance_km <= range_end_km: + log.debug("get_price: matched range %d-%d km -> price=%.2f", range_start_km, range_end_km, price) + return price + + fallback_price = pricing_ranges[-1][1] + log.debug("get_price: no range matched, using fallback last-range price=%.2f", fallback_price) + return fallback_price