diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 5a34a57..5c5fad4 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -52,9 +52,8 @@ RUN groupadd --gid $USER_GID $USERNAME \ && mkdir -p /home/$USERNAME/.vscode-server /home/$USERNAME/.vscode-server-insiders \ && chown ${USER_UID}:${USER_GID} /home/$USERNAME/.vscode-server* -# Copy environment files (use lightweight env-codespace.yml for Codespaces) +# Copy the Codespaces environment definition (CPU torch + Jupyter). COPY env-codespace.yml /tmp/env.yml -COPY requirements.txt /tmp/requirements.txt # Create conda environment with mamba and aggressive cleanup to save space RUN mamba env create -f /tmp/env.yml && \ diff --git a/.devcontainer/README.md b/.devcontainer/README.md index a37c5f9..b9943da 100644 --- a/.devcontainer/README.md +++ b/.devcontainer/README.md @@ -20,51 +20,44 @@ This devcontainer provides a standardized development environment for the AutoQu ### Environment - **Python 3.10.13** with conda/mamba package management -- **AutoQuake conda environment** with all dependencies from `env.yml` +- **AutoQuake conda environment** built from `env-codespace.yml` (CPU-only PyTorch) - **Scientific computing stack**: NumPy, Pandas, SciPy, Matplotlib, ObsPy -- **Machine Learning**: PyTorch, scikit-learn -- **Seismology tools**: ObsPy, PyGMT, Pyrocko -- **Development tools**: Black, isort, flake8, pre-commit +- **Machine Learning**: PyTorch (CPU), scikit-learn, ONNX Runtime +- **Seismology / geospatial tools**: ObsPy, PyGMT, Cartopy, pyproj +- **Development tools**: Ruff, pre-commit ### VS Code Extensions - Python development suite (Python, Pylance, Jupyter) -- Code formatting and linting (Black, Ruff, flake8) +- Linting & formatting with Ruff - Git integration (GitLens, GitHub tools) - Documentation tools (Markdown, autodocstring) -- Scientific computing support ### Development Tools +- **Ruff** for linting and formatting (replaces black + isort + flake8) - **Pre-commit hooks** for code quality - **Jupyter Lab** ready to use -- **Code formatting** with Black and isort -- **Linting** with flake8 and Ruff ## 🛠️ Development Workflow ### Environment Activation -The conda environment `AutoQuake_v0` is automatically activated. You can also use: +The conda environment `AutoQuake_v0` is activated automatically in new terminals. +To activate it manually: ```bash -aq # Quick alias to activate environment +conda activate AutoQuake_v0 ``` ### Development Tools ```bash -# You can create your own aliases if needed, such as: -conda activate AutoQuake_v0 # Activate environment -black . && isort . # Format code -flake8 . # Check code quality -jupyter lab --ip=0.0.0.0 --port=8888 --no-browser --allow-root # Start Jupyter -``` - -### Jupyter Development -```bash -aqjupyter # Start Jupyter Lab on port 8888 +ruff check . # Lint +ruff format . # Format (single quotes, 88 cols — see pyproject.toml) +pytest tests/unit -m "not integration" # Run the fast unit tests +jupyter lab --ip=0.0.0.0 --port=8888 --no-browser # Start Jupyter Lab ``` ### Testing Your Setup ```bash conda activate AutoQuake_v0 # Ensure environment is active -python -c "import autoquake; print('AutoQuake loaded successfully')" # Test AutoQuake import +python -c "import autoquake; print('AutoQuake loaded successfully')" # Test import ``` ## 📁 Project Structure @@ -97,9 +90,8 @@ This environment is prepared for real-time seismic data processing with: ## 🔧 Customization ### Adding Dependencies -1. Update `env.yml` for conda packages -2. Update `requirements.txt` for pip packages -3. Rebuild the container +1. Add the package to `env.yml` (local/CI) **and** `env-codespace.yml` (Codespaces) +2. Rebuild the container ("Dev Containers: Rebuild Container") ### VS Code Settings Modify `.devcontainer/devcontainer.json` to customize: @@ -119,24 +111,24 @@ Add system packages in the Dockerfile under the apt-get install section. ### Python Environment Issues ```bash -conda activate AutoQuake_v0 # Ensure environment is active -python dev-utils.py # Check environment status +conda activate AutoQuake_v0 # Ensure environment is active +conda env list # Confirm AutoQuake_v0 exists ``` ### Import Errors -```bash -pip install -e . # Reinstall AutoQuake in development mode -``` +The project runs from the repository root (pytest adds it to `sys.path` via +`pyproject.toml`). If `import autoquake` fails, make sure your working directory +is the repo root and the conda environment is active. ### Port Conflicts The container forwards ports 8888, 8080, and 5000. Modify `devcontainer.json` if needed. ## 🤝 Contributing -1. The environment automatically sets up pre-commit hooks -2. Code is automatically formatted on save -3. Run tests before committing: `aqtest` -4. Follow the existing code style (Black formatting) +1. The environment automatically sets up pre-commit hooks (commit + push) +2. Code is automatically formatted on save by Ruff +3. Run tests before committing: `pytest tests/unit -m "not integration"` +4. Follow the existing code style (Ruff: single quotes, 88-column lines) ## 📝 Notes for Real-time Development @@ -149,7 +141,7 @@ When implementing real-time features: ## 🆘 Getting Help - Check the main AutoQuake README for project-specific information -- Run `python dev-utils.py` for environment diagnostics +- Run `conda env list` and `conda list` to inspect the environment - Use the VS Code integrated terminal with all tools pre-configured Happy coding! 🎉 diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 3fd2337..d398d29 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -11,67 +11,45 @@ "customizations": { "vscode": { "extensions": [ - // Python Development + // Python (ruff is the single linter/formatter — matches pyproject.toml & CI) "ms-python.python", - "ms-python.flake8", - "ms-python.pylint", - "ms-python.black-formatter", + "ms-python.vscode-pylance", + "ms-python.debugpy", "charliermarsh.ruff", - "ms-python.isort", + "kevinrose.vsc-python-indent", + "njpwerner.autodocstring", + + // Jupyter / scientific computing "ms-toolsai.jupyter", - "ms-toolsai.vscode-jupyter-cell-tags", - "ms-toolsai.vscode-jupyter-slideshow", - - // Scientific Computing & Data Science "ms-toolsai.jupyter-keymap", "ms-toolsai.jupyter-renderers", - "ms-python.vscode-pylance", - "njpwerner.autodocstring", - - // Git & Version Control + "ms-toolsai.vscode-jupyter-cell-tags", + "ms-toolsai.vscode-jupyter-slideshow", + + // Git & GitHub "eamodio.gitlens", "github.vscode-pull-request-github", "github.copilot", "github.copilot-chat", - - // Documentation & Markdown + + // Docs & config files "yzhang.markdown-all-in-one", "davidanson.vscode-markdownlint", - "ms-vscode.vscode-json", - - // Development Tools - "ms-vscode.vscode-yaml", - "redhat.vscode-xml", - "ms-vscode.cmake-tools", - "ms-vscode.cpptools", - - // Visualization & Plotting - "ms-python.debugpy", - "kevinrose.vsc-python-indent", - "donjayamanne.python-environment-manager", - - // Remote Development - "ms-vscode-remote.remote-containers", - "ms-vscode-remote.remote-ssh", - "ms-vscode-remote.remote-wsl" + "redhat.vscode-yaml" ], "settings": { "python.defaultInterpreterPath": "/opt/conda/envs/AutoQuake_v0/bin/python", "python.terminal.activateEnvironment": true, "python.terminal.activateEnvInCurrentTerminal": true, - "python.linting.enabled": true, - "python.linting.pylintEnabled": false, - "python.linting.flake8Enabled": true, - "python.formatting.provider": "black", - "python.formatting.blackArgs": ["--line-length=88"], - "python.sortImports.args": ["--profile", "black"], - "ruff.args": ["--config", "pyproject.toml"], "ruff.enable": true, "ruff.organizeImports": true, "editor.formatOnSave": true, - "editor.codeActionsOnSave": { - "source.organizeImports": "explicit", - "source.fixAll.ruff": "explicit" + "[python]": { + "editor.defaultFormatter": "charliermarsh.ruff", + "editor.codeActionsOnSave": { + "source.organizeImports.ruff": "explicit", + "source.fixAll.ruff": "explicit" + } }, "files.trimTrailingWhitespace": true, "files.insertFinalNewline": true, diff --git a/.devcontainer/post-create.sh b/.devcontainer/post-create.sh index 88bbc8a..33d6495 100755 --- a/.devcontainer/post-create.sh +++ b/.devcontainer/post-create.sh @@ -1,4 +1,5 @@ #!/bin/bash +set -e echo "🚀 Setting up AutoQuake development environment..." @@ -7,50 +8,29 @@ source /opt/conda/etc/profile.d/conda.sh # Activate the AutoQuake environment conda activate AutoQuake_v0 - -# Verify environment activation echo "📦 Active conda environment: $CONDA_DEFAULT_ENV" -# Install development dependencies (ipykernel and jupyterlab already in env-codespace.yml) -echo "🔧 Installing development tools..." -pip install --no-cache-dir \ - black \ - isort \ - flake8 \ - pre-commit - -# Install the AutoQuake package in development mode -echo "📥 Installing AutoQuake in development mode..." -pip install -e . +# Dev-only tooling (kept out of the conda env so it stays lean). +# Ruff replaces black + isort + flake8; pre-commit runs it on every commit. +echo "🔧 Installing development tools (ruff, pre-commit)..." +pip install --no-cache-dir ruff pre-commit -# Initialize git submodules if they exist +# Initialize git submodules (EQNet, GaMMA) so the full pipeline can import them. if [ -f ".gitmodules" ]; then echo "🔗 Initializing git submodules..." git submodule update --init --recursive fi -# Set up pre-commit hooks for code quality +# Install pre-commit hooks for code quality (commit + push stages). echo "🎯 Setting up pre-commit hooks..." pre-commit install +pre-commit install --hook-type pre-push -# Create Jupyter kernel for the environment +# Register a Jupyter kernel for the environment. echo "📓 Setting up Jupyter kernel..." python -m ipykernel install --user --name=AutoQuake_v0 --display-name="AutoQuake v0.1" -# Create commonly used directories -mkdir -p data -mkdir -p outputs -mkdir -p logs - -# Set up git configuration helper -echo "🔧 Setting up git configuration..." -echo '#!/bin/bash -echo "Quick setup for git configuration:" -echo "git config --global user.name \"Your Name\"" -echo "git config --global user.email \"your.email@example.com\"" -' > setup-git.sh -chmod +x setup-git.sh - -echo "✨ AutoQuake development environment setup completed!" +echo "✨ AutoQuake development environment ready!" echo "" -echo "🚀 Ready for AutoQuake development!" +echo " Run the test suite with: pytest tests/unit -m \"not integration\"" +echo " Run the full pipeline with: python predict.py " diff --git a/.github/workflows/submodule-check.yml b/.github/workflows/submodule-check.yml new file mode 100644 index 0000000..46c87e5 --- /dev/null +++ b/.github/workflows/submodule-check.yml @@ -0,0 +1,83 @@ +name: Submodule Compatibility Check + +on: + # Manual trigger + workflow_dispatch: + + # Weekly check on Sunday at 00:00 UTC + schedule: + - cron: '0 0 * * 0' + +env: + PYTHON_VERSION: "3.10" + +jobs: + check-submodules: + name: Check Submodule Compatibility + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + submodules: recursive + fetch-depth: 0 + + - name: Fetch latest submodule commits + run: | + git submodule foreach 'git fetch origin' + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: ${{ env.PYTHON_VERSION }} + + - name: Install dependencies + run: | + pip install pytest pandas pydantic numpy pyproj + + - name: Run compatibility check + run: python scripts/check-submodule-compat.py + + - name: Run tests with current submodules + run: pytest tests/ -v --tb=short + continue-on-error: true + + - name: Create issue if tests fail + if: failure() + uses: actions/github-script@v7 + with: + script: | + const title = 'Submodule Compatibility Issue Detected'; + const body = ` + ## Submodule Compatibility Check Failed + + The weekly submodule compatibility check has detected potential issues. + + **Workflow Run:** [View Details](${process.env.GITHUB_SERVER_URL}/${process.env.GITHUB_REPOSITORY}/actions/runs/${process.env.GITHUB_RUN_ID}) + + Please review the workflow logs and address any compatibility issues before updating submodules. + + ### Next Steps + 1. Review the compatibility report in the workflow logs + 2. Check for API changes in submodules + 3. Update code if necessary + 4. Run \`python scripts/check-submodule-compat.py\` locally to verify fixes + `; + + // Check if issue already exists + const issues = await github.rest.issues.listForRepo({ + owner: context.repo.owner, + repo: context.repo.repo, + state: 'open', + labels: 'submodule-compat' + }); + + if (issues.data.length === 0) { + await github.rest.issues.create({ + owner: context.repo.owner, + repo: context.repo.repo, + title: title, + body: body, + labels: ['submodule-compat', 'automated'] + }); + } diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..b7c7972 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,95 @@ +name: AutoQuake Tests + +on: + push: + branches: [main, feature-*] + paths: + - '**.py' + - 'requirements*.txt' + - 'pyproject.toml' + - 'tests/**' + - '.github/workflows/test.yml' + pull_request: + branches: [main] + # Heavy end-to-end pipeline is opt-in: trigger it by hand from the Actions tab. + workflow_dispatch: + +env: + PYTHON_VERSION: "3.10" + +jobs: + # --------------------------------------------------------------------------- + # Cheap gate -- runs on every push / PR. + # --------------------------------------------------------------------------- + lint: + name: Lint + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: ${{ env.PYTHON_VERSION }} + + - name: Install ruff + run: pip install ruff + + - name: Run ruff check + run: ruff check . + + # - name: Run ruff format check + # run: ruff format --check . + + unit-tests: + name: Unit Tests + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: ${{ env.PYTHON_VERSION }} + + - name: Install dependencies + # Unit tests only touch the config layer -> pydantic + pandas + pytest. + run: pip install pytest pytest-cov pydantic pandas + + - name: Run unit tests + run: pytest tests/unit -m "not integration" --cov=ParamConfig --cov-report=xml --cov-report=term + + - name: Upload coverage to Codecov + uses: codecov/codecov-action@v4 + with: + files: coverage.xml + fail_ci_if_error: false + continue-on-error: true + + # --------------------------------------------------------------------------- + # Heavy, real pipeline -- manual only, non-blocking. Needs the full conda env, + # submodules and the (Linux) h3dd / gafocal binaries. + # --------------------------------------------------------------------------- + integration-tests: + name: Integration (E2E) Tests + runs-on: ubuntu-latest + if: github.event_name == 'workflow_dispatch' + needs: [lint, unit-tests] + continue-on-error: true + defaults: + run: + shell: bash -el {0} + steps: + - uses: actions/checkout@v4 + with: + submodules: recursive + + - name: Set up conda environment + uses: conda-incubator/setup-miniconda@v3 + with: + environment-file: env.yml + activate-environment: AutoQuake + auto-activate-base: false + + - name: Run end-to-end integration tests + run: pytest tests/integration -m integration --tb=short -rs diff --git a/.gitignore b/.gitignore index b6091eb..7e93a5f 100644 --- a/.gitignore +++ b/.gitignore @@ -7,8 +7,8 @@ gmt.history *.log -*.SAC -*.csv +.claude +# *.csv *.dout *.hout *.dat_ch @@ -18,11 +18,9 @@ gmt.history *.pth *gamma_config.txt - # model /model_phasenet_* - testset* # H3DD !/H3DD/h3dd diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml deleted file mode 100644 index d1697c5..0000000 --- a/.pre-commit-config.yaml +++ /dev/null @@ -1,37 +0,0 @@ -repos: - - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.4.0 - hooks: - - id: trailing-whitespace - - id: end-of-file-fixer - - id: check-yaml - - id: check-added-large-files - - id: check-merge-conflict - - id: debug-statements - - id: check-docstring-first - - - repo: https://github.com/psf/black - rev: 23.7.0 - hooks: - - id: black - language_version: python3.10 - args: [--line-length=88] - - - repo: https://github.com/pycqa/isort - rev: 5.12.0 - hooks: - - id: isort - args: [--profile, black, --line-length=88] - - - repo: https://github.com/charliermarsh/ruff-pre-commit - rev: v0.0.287 - hooks: - - id: ruff - args: [--fix, --exit-non-zero-on-fix] - - - repo: https://github.com/pycqa/flake8 - rev: 6.0.0 - hooks: - - id: flake8 - additional_dependencies: [flake8-docstrings] - args: [--max-line-length=88, --extend-ignore=E203,W503] diff --git a/DEVCONTAINER_SETUP.md b/DEVCONTAINER_SETUP.md deleted file mode 100644 index 0456d59..0000000 --- a/DEVCONTAINER_SETUP.md +++ /dev/null @@ -1,126 +0,0 @@ -# AutoQuake DevContainer Setup - Summary - -## 🎉 Development Environment Successfully Created! - -Your AutoQuake project now has a complete, standardized development environment that will help other developers easily join the project. Here's what was set up: - -## 📦 Created Files and Directories - -### DevContainer Configuration -``` -.devcontainer/ -├── devcontainer.json # VS Code dev container configuration -├── Dockerfile # Container image with scientific computing stack -├── post-create.sh # Automated setup script -└── README.md # DevContainer documentation -``` - -### Development Tools -``` -.pre-commit-config.yaml # Code quality automation -DEVCONTAINER_SETUP.md # This setup summary -``` - -### Updated Files -- `.gitignore` - Added development-specific entries - -## 🛠️ What's Included - -### Environment Stack -- **Base**: Mambaforge (fast conda package manager) -- **Python**: 3.10.13 with AutoQuake_v0 environment -- **Scientific**: NumPy, Pandas, SciPy, Matplotlib, ObsPy, PyGMT -- **ML/AI**: PyTorch, scikit-learn, ONNX -- **Seismology**: ObsPy, Pyrocko, PyGMT -- **Development**: Black, isort, flake8, Ruff, pre-commit - -### VS Code Extensions -- Python development suite (Pylance, Jupyter) -- Code formatting and linting tools -- Git integration (GitLens, GitHub Copilot) -- Scientific computing support -- Documentation tools - -### Development Utilities -- **Pre-commit hooks**: Automatic code quality checks -- **Clean environment**: Users can set up their own aliases and utilities as needed - -## 🚀 How to Use - -### For Contributors -1. **Prerequisites**: Docker + VS Code + Dev Containers extension -2. **Clone**: Fork and clone the repository -3. **Open**: Open project in VS Code -4. **Start**: Click "Reopen in Container" when prompted -5. **Develop**: Everything is ready to go! - -### Development Workflow -```bash -# Check environment -conda activate AutoQuake_v0 - -# Format and check code -black . && isort . -flake8 . - -# Start Jupyter for interactive development -jupyter lab --ip=0.0.0.0 --port=8888 --no-browser --allow-root -``` - -## 🌟 Benefits for Real-time Development - -### Ready for Real-time Processing -- **Network libraries**: Pre-installed for data center access -- **Streaming support**: fsspec, ObsPy clients ready -- **Performance tools**: Numba, optimized libraries -- **Memory management**: Efficient tools for continuous processing - -### Consistent Environment -- **No "works on my machine" issues** -- **Identical setup for all contributors** -- **Automated dependency management** -- **Pre-configured development tools** - -### Quality Assurance -- **Automatic code formatting** -- **Pre-commit hooks prevent bad commits** -- **Integrated linting and style checks** - -## 🔄 Next Steps - -### For Project Maintainers -1. **Test the setup**: Try opening in a fresh environment -2. **Customize**: Adjust VS Code settings in `devcontainer.json` -3. **Documentation**: Add project-specific setup in main README -4. **CI/CD**: The GitHub Actions workflow is ready to use - -### For Real-time Features -1. **Data streaming**: Use ObsPy clients for real-time data -2. **Performance**: Leverage Numba for hot code paths -3. **Monitoring**: Add logging for operational visibility -4. **Deployment**: Container is ready for cloud deployment - -### For Contributors -1. **Read**: Check out `CONTRIBUTING.md` for detailed guidelines -2. **Explore**: Use the development utilities to understand the setup -3. **Contribute**: Start with small improvements and learn the workflow - -## 📖 Documentation - -- **DevContainer**: [`.devcontainer/README.md`](.devcontainer/README.md) -- **Main Project**: [`README.md`](README.md) - -## 🎯 Impact - -This setup will: -- ✅ **Reduce onboarding time** from hours to minutes -- ✅ **Eliminate environment issues** across different systems -- ✅ **Improve code quality** with automated tools -- ✅ **Enable real-time development** with proper tooling -- ✅ **Facilitate collaboration** with consistent standards - -Your AutoQuake project is now ready for collaborative, real-time seismic data processing development! 🌍📊 - ---- - -**Next Command**: Try opening VS Code and using "Reopen in Container" to test the setup! diff --git a/ParamConfig/config_model.py b/ParamConfig/config_model.py index ea2bb8c..aee7231 100644 --- a/ParamConfig/config_model.py +++ b/ParamConfig/config_model.py @@ -1,11 +1,14 @@ #%% from pathlib import Path -from collections import Counter import pandas as pd from typing import Callable, Literal, Any -from pydantic import BaseModel, model_validator +from pydantic import BaseModel, model_validator, Field import re from datetime import datetime, timedelta +import logging + +logger = logging.getLogger(__name__) + def default_type_judge(x: str): """ @@ -22,18 +25,6 @@ def default_type_judge(x: str): ) -""" -We set PhaseNet as True, since it's the first step. -Other steps default as True (since it's an example) - -Please note that this flow is an example and demonstrates how to\ -instantiate the classes and run. - -We use getter function to automatically pass the arguments, once\ -you familiar with the instantiation, you can switch it to file you want to use. -""" - - class PhaseNetConfig(BaseModel): """ Base parameters for PhaseNet (all except 'mode'). @@ -81,7 +72,6 @@ class PhaseNetConfig(BaseModel): dtype: str | None = None ptdtype: Any | None = None rank: int | None = None - world_size: int | None = None gpu: int | None = None distributed: bool | None = None dist_bakend: str | None = None @@ -89,17 +79,12 @@ class PhaseNetConfigReceiver(PhaseNetConfig): """ Parameters for PhaseNet (all parameters including 'mode'). """ + enabled: bool data_parent_dir: Path station_csv: Path args_list: list[PhaseNetConfig] | None = None date_list: list[str] | None = None # New attribute to store the list of dates - def _check_result_path(self): - if self.result_path.exists() and any(self.result_path.iterdir()): - response = input(f"Warning: '{self.result_path}' exists and is not empty. Overwrite? (y/n): ") - if response.lower() != 'y': - raise RuntimeError("Operation cancelled by user.") - def _time_code_checker(self): # stream_pattern = r"^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}$" archive_pattern = r"^\d{8}$" @@ -212,7 +197,9 @@ def _get_single_station_type(data_path, station, splitter, format): config_kwargs["data_path"] = data_path _gen_list = check_data_list(data_path, self.station_csv, self.data_list, self.format) config_kwargs["data_list"] = _gen_list - print(f"Available station on {current}: {len(_gen_list)} / {pd.read_csv(self.station_csv).shape[0]}") + station_count = pd.read_csv(self.station_csv).shape[0] + available = len(_gen_list) if _gen_list is not None else 'N/A' + logger.info(f"Available station on {current}: {available} / {station_count}") config = PhaseNetConfig(**{k: config_kwargs[k] for k in PhaseNetConfig.model_fields.keys()}) configs.append(config) current = next_time @@ -236,66 +223,396 @@ def post_validation(self): - args_list \n - date_list """ - self._check_result_path() self._time_code_checker() self.date_list = self._generate_date_list() # Generate the date list self.args_list = self.generate_configs() return self class GaMMAConfig(BaseModel): - station: Path - velocity_model: Path - center: tuple[float, float] - xlim_degree: list[float] - ylim_degree: list[float] - min_p_picks_per_eq: int - min_s_picks_per_eq: int - eps: float - cpu_number: int - use_amplitude: bool + """GaMMA configuration with optional external input.""" + enabled: bool + # External input (if skipping PhaseNet) + picks_csv: Path | None = None + # Required parameters (optional when enabled=False) + station: Path | None = None + velocity_model: Path | None = None + center: tuple[float, float] | None = None + xlim_degree: list[float] | None = None + ylim_degree: list[float] | None = None + min_p_picks_per_eq: int = 6 + min_s_picks_per_eq: int = 2 + eps: float = 17.0 + cpu_number: int = 40 + use_amplitude: bool = False + + @model_validator(mode='after') + def validate_required_when_enabled(self): + """Validate required fields when enabled.""" + if self.enabled: + required = ['station', 'velocity_model', 'center', 'xlim_degree', 'ylim_degree'] + for field in required: + if getattr(self, field) is None: + raise ValueError(f'{field} is required when GaMMA is enabled') + return self + +class H3DDSingleRunConfig(BaseModel): + """Configuration for a single H3DD run.""" + event_name: str + cutoff_distances: float # Note: singular value for each run + + +class H3DDRunsConfig(BaseModel): + """Configuration for H3DD runs (first required, second optional).""" + first: H3DDSingleRunConfig + second: H3DDSingleRunConfig | None = None + class H3DDConfig(BaseModel): - station: Path - model_3D: Path - cutoff_distance_for_first_h3dd: float - event_name_for_first_h3dd: str - cutoff_distance_for_second_h3dd: float - event_name_for_second_h3dd: str + """H3DD configuration with nested runs structure.""" + enabled: bool + # External inputs (if skipping GaMMA) + events_csv: Path | None = None + picks_csv: Path | None = None + # Required parameters (optional when enabled=False) + station: Path | None = None + model_3D: Path | None = None + # H3DD algorithm parameters + weights: list[float] = [1.0, 1.0, 0.1] + priori_weight: list[float] = [1.0, 0.75, 0.5, 0.25, 0.0] + inv: int = 2 + damping_factor: float = 0.0 + rmscut: float = 1.0e-4 + max_iter: int = 5 + constrain_factor: float = 0.0 + joint_inv_with_single_event_method: int = 1 + consider_elevation: int = 0 + # Run configurations + runs: H3DDRunsConfig | None = None + + @model_validator(mode='after') + def validate_h3dd_config(self): + """Validate H3DD configuration.""" + if self.enabled: + # Required fields when enabled + if self.station is None: + raise ValueError('station is required when H3DD is enabled') + if self.model_3D is None: + raise ValueError('model_3D is required when H3DD is enabled') + # runs.first is required when enabled + if self.runs is None: + raise ValueError('runs configuration is required when H3DD is enabled') + # first run config cannot be empty (already enforced by H3DDRunsConfig) + return self + + def get_run_count(self) -> int: + """Get the number of runs to execute.""" + if self.runs is None: + return 0 + return 2 if self.runs.second is not None else 1 + + def get_run_config(self, run_index: int) -> H3DDSingleRunConfig | None: + """Get configuration for a specific run index (0 or 1).""" + if self.runs is None: + return None + if run_index == 0: + return self.runs.first + elif run_index == 1: + return self.runs.second + return None class MagConfig(BaseModel): - sac_parent_dir: Path - pz_dir: Path - station: Path - cpu_number: int + """Magnitude calculation configuration.""" + enabled: bool + # External input (if skipping H3DD) + dout_file: Path | None = None + # Required parameters (optional when enabled=False) + sac_parent_dir: Path | None = None + pz_dir: Path | None = None + station: Path | None = None + cpu_number: int = 40 + + @model_validator(mode='after') + def validate_required_when_enabled(self): + """Validate required fields when enabled.""" + if self.enabled: + if self.sac_parent_dir is None: + raise ValueError('sac_parent_dir is required when Magnitude is enabled') + if self.pz_dir is None: + raise ValueError('pz_dir is required when Magnitude is enabled') + if self.station is None: + raise ValueError('station is required when Magnitude is enabled') + return self + class DitingConfig(BaseModel): + enabled: bool + picks_csv: Path | None = None sac_parent_dir: Path | None = None - h5_parent_dir: Path | None = None cpu_number: int = 3 chunk_size: int = 50 - das_in_data: bool = False - type_judge: Callable[[str], bool] | None = default_type_judge - interval: int = 300 sampling_rate: float = 100.0 - need_resample: bool = False + need_resample: bool = True + # h5_parent_dir: Path | None = None + # das_in_data: bool = False + # type_judge: Callable[[str], bool] | None = default_type_judge + # interval: int = 300 + + # @model_validator(mode="after") + # def validate_type_judge_for_das(self): + # if self.das_in_data and self.type_judge is None: + # raise ValueError( + # "Diting.type_judge cannot be None when das_in_data=True. " + # "Set a callable or customize default_type_judge()." + # ) + # if self.das_in_data and self.type_judge is not None and self.type_judge is default_type_judge: + # # Trigger the default placeholder at config construction time. + # self.type_judge("STATION_ID_EXAMPLE") + # return self + + # @model_validator(mode='after') + # def validate_required_when_enabled(self): + # """Validate required fields when enabled.""" + # if self.enabled: + # if self.sac_parent_dir is None and self.h5_parent_dir is None: + # raise ValueError( + # 'Either sac_parent_dir or h5_parent_dir is required when Polarity is enabled' + # ) + # return self + + +class FocalConfig(BaseModel): + """GAfocal configuration.""" + enabled: bool + # External input + dout_file: Path | None = None + + +# ============================================================================= +# Path Resolver (smart path detection) +# ============================================================================= +class PathResolver: + """ + Resolves input paths for pipeline components. + Priority: explicit path > auto-detect in result_path > raise error + """ + + def __init__(self, result_path: Path): + self.result_path = Path(result_path) + + def resolve_picks(self, explicit_path: Path | None = None) -> Path: + """Resolve picks CSV file path.""" + if explicit_path: + path = Path(explicit_path) + if path.exists(): + #TODO: 這裡不只檢查存在,應該順便檢查格式和內容是否合理(至少有event_id, phase, time等必要欄位) + return path + raise FileNotFoundError(f'Explicit picks_csv not found: {explicit_path}') + + # # Auto-detect candidates + # candidates = [ + # self.result_path / 'phase_picks.csv', + # self.result_path / 'picks_phasenet.csv', + # self.result_path / 'gamma_picks.csv', + # ] + # for candidate in candidates: + # if candidate.exists(): + # logger.info(f'Auto-detected picks file: {candidate}') + # return candidate + + # raise FileNotFoundError( + # f'Cannot find picks CSV in {self.result_path}. ' + # f'Searched: {[c.name for c in candidates]}' + # ) + + def resolve_gamma_picks(self, explicit_path: Path | None = None) -> Path: + """Resolve GaMMA picks CSV file path.""" + if explicit_path: + path = Path(explicit_path) + if path.exists(): + #TODO: 這裡不只檢查存在,應該順便檢查格式和內容是否合理(至少有event_id, phase, time等必要欄位) + return path + raise FileNotFoundError(f'Explicit picks_csv not found: {explicit_path}') + + # candidates = [ + # self.result_path / 'gamma_picks.csv', + # ] + # for candidate in candidates: + # if candidate.exists(): + # logger.info(f'Auto-detected GaMMA picks file: {candidate}') + # return candidate + + # raise FileNotFoundError( + # f'Cannot find GaMMA picks CSV in {self.result_path}. ' + # f'Searched: {[c.name for c in candidates]}' + # ) + + def resolve_gamma_events(self, explicit_path: Path | None = None) -> Path: + """Resolve GaMMA events CSV file path.""" + if explicit_path: + path = Path(explicit_path) + if path.exists(): + #TODO: 這裡不只檢查存在,應該順便檢查格式和內容是否合理(至少有event_id, latitude, longitude, depth, origin_time等必要欄位) + return path + raise FileNotFoundError(f'Explicit events_csv not found: {explicit_path}') + + # candidates = [ + # self.result_path / 'gamma_event.csv', + # self.result_path / 'gamma_events.csv', + # self.result_path / 'events.csv', + # ] + # for candidate in candidates: + # if candidate.exists(): + # logger.info(f'Auto-detected events file: {candidate}') + # return candidate + + # raise FileNotFoundError( + # f'Cannot find events CSV in {self.result_path}. ' + # f'Searched: {[c.name for c in candidates]}' + # ) + + def resolve_dout(self, explicit_path: Path | None = None, event_name: str | None = None) -> Path: + """Resolve dout file path.""" + if explicit_path: + path = Path(explicit_path) + if path.exists(): + #TODO: 這裡不只檢查存在,應該順便檢查格式和內容是否合理(至少有event_id, latitude, longitude, depth, origin_time等必要欄位) + return path + raise FileNotFoundError(f'Explicit dout_file not found: {explicit_path}') + + # # Try with event_name first + # if event_name: + # candidate = self.result_path / f'{event_name}.dout' + # if candidate.exists(): + # logger.info(f'Auto-detected dout file: {candidate}') + # return candidate + + # # Search for any .dout file + # dout_files = list(self.result_path.glob('*.dout')) + # if dout_files: + # # Sort by modification time, use most recent + # dout_files.sort(key=lambda x: x.stat().st_mtime, reverse=True) + # logger.info(f'Auto-detected dout file: {dout_files[0]}') + # return dout_files[0] + + # raise FileNotFoundError(f'Cannot find dout file in {self.result_path}') - @model_validator(mode="after") - def validate_type_judge_for_das(self): - if self.das_in_data and self.type_judge is None: - raise ValueError( - "Diting.type_judge cannot be None when das_in_data=True. " - "Set a callable or customize default_type_judge()." - ) - if self.das_in_data and self.type_judge is not None and self.type_judge is default_type_judge: - # Trigger the default placeholder at config construction time. - self.type_judge("STATION_ID_EXAMPLE") - return self -class MainConfig(BaseModel): +# ============================================================================= +# Run Configuration (single pipeline run) +# ============================================================================= +class RunConfig(BaseModel): + """Configuration for a single pipeline run.""" + name: str = 'default' result_path: Path - PhaseNet: PhaseNetConfigReceiver - GaMMA: GaMMAConfig - H3DD: H3DDConfig - Mag: MagConfig - Diting: DitingConfig + # Optional components (None or enabled=False means skip) + PhaseNet: PhaseNetConfigReceiver | None = None + GaMMA: GaMMAConfig | None = None + H3DD: H3DDConfig | None = None + Magnitude: MagConfig | None = None + Polarity: DitingConfig | None = None + Focal: FocalConfig | None = None + + @model_validator(mode='before') + @classmethod + def inject_result_path(cls, data: dict) -> dict: + """Inject pipeline result_path into PhaseNet config before construction.""" + if isinstance(data.get('PhaseNet'), dict): + data['PhaseNet']['result_path'] = data['result_path'] + return data + + def _check_result_path(self): + if self.result_path.exists() and any(self.result_path.iterdir()): + logger.warning(f"Result path '{self.result_path}' exists and is not empty.") + else: + self.result_path.mkdir(parents=True, exist_ok=True) + + def is_component_enabled(self, component_name: str) -> bool: + """Check if a component is enabled.""" + component = getattr(self, component_name, None) + if component is None: + return False + return getattr(component, 'enabled', False) # default as False to prevent unnecessary processing. + + @model_validator(mode='after') + def validate_dependencies(self): + """Validate that enabled components have required inputs.""" + self._check_result_path() + # GaMMA needs picks + if self.is_component_enabled('GaMMA'): + if not self.is_component_enabled('PhaseNet') and not self.GaMMA.picks_csv: + raise ValueError( + 'GaMMA is enabled but PhaseNet is not, and no picks_csv provided. ' + 'Set GaMMA.picks_csv to an explicit path or enable PhaseNet.' + ) + + # H3DD needs events and picks + if self.is_component_enabled('H3DD'): + if not self.is_component_enabled('GaMMA'): + if not self.H3DD.events_csv or not self.H3DD.picks_csv: + raise ValueError( + 'H3DD is enabled but GaMMA is not, and events_csv/picks_csv not fully provided. ' + 'Set H3DD.events_csv and H3DD.picks_csv explicitly, or enable GaMMA.' + ) + + # Magnitude needs dout + if self.is_component_enabled('Magnitude'): + if not self.is_component_enabled('H3DD') and not self.Magnitude.dout_file: + raise ValueError( + 'Magnitude is enabled but H3DD is not, and no dout_file provided. ' + 'Set Magnitude.dout_file to an explicit path, or enable H3DD.' + ) + + # Polarity needs picks + if self.is_component_enabled('Polarity'): + # Priority: GaMMA output > PhaseNet output > manual file. + # To avoid stale/wrong manual file usage, only allow manual file when + # both upstream producers are disabled. + if self.Polarity.picks_csv and ( + self.is_component_enabled('GaMMA') or self.is_component_enabled('PhaseNet') + ): + raise ValueError( + 'Polarity.picks_csv can only be set when both GaMMA and PhaseNet are disabled. ' + 'Set Polarity.picks_csv to null, or disable upstream components.' + ) + + if self.is_component_enabled('GaMMA'): + logger.info('Polarity will use picks from GaMMA output.') + elif self.is_component_enabled('PhaseNet'): + logger.info('Polarity will use picks from PhaseNet output.') + elif self.Polarity.picks_csv: + logger.info(f'Polarity will use manual picks from {self.Polarity.picks_csv}.') + else: + raise ValueError( + 'Polarity is enabled but no valid picks source is available. ' + 'Please enable GaMMA or PhaseNet, or provide Polarity.picks_csv.' + ) + + # Focal needs dout + polarity information + if self.is_component_enabled('Focal'): + if not self.is_component_enabled('H3DD') and not self.is_component_enabled('Polarity') and not self.Focal.dout_file: + raise ValueError( + 'Focal is enabled but H3DD and Polarity are not, and no dout_file provided. ' + 'Set Focal.dout_file to an explicit path, or enable H3DD and Polarity.' + ) + + return self + + +# ============================================================================= +# Batch Configuration (multiple runs) +# ============================================================================= +class BatchConfig(BaseModel): + """Configuration for batch execution of multiple pipeline runs.""" + configs: list[RunConfig] + + @model_validator(mode='before') + @classmethod + def handle_legacy_format(cls, data: dict) -> dict: + """Handle legacy single-config format for backward compatibility.""" + if 'configs' not in data: + # Legacy format: single config at root level + # Extract result_path and wrap as single RunConfig + logger.info('Detected legacy config format, converting to batch format.') + return {'configs': [data]} + return data # %% diff --git a/ParamConfig/params.json b/ParamConfig/params.json index 96f7a9f..fd3fedb 100644 --- a/ParamConfig/params.json +++ b/ParamConfig/params.json @@ -1,80 +1,113 @@ { - "result_path": "./tester", - "PhaseNet": { - "data_parent_dir": "test\\less_dataset", - "result_path": "\\archive_results", - "start": "20240402", - "end": "20240403", - "pz_dir": "PZ", - "data_list": null, - "hdf5_file": null, - "prefix": "", - "format": "SAC", - "dataset": "das", - "model": "phasenet", - "resume": "", - "backbone": "unet", - "phases": ["P", "S"], - "device": "cpu", - "workers": 0, - "batch_size": 1, - "use_deterministic_algorithms": true, - "amp": true, - "world_size": 1, - "dist_url": "env://", - "plot_figure": false, - "min_prob": 0.3, - "add_polarity": false, - "add_event": true, - "sampling_rate": 100.0, - "highpass_filter": 0.0, - "response_path": null, - "response_xml": null, - "subdir_level": 0, - "cut_patch": false, - "nt": 20480, - "nx": 5120, - "resample_time": false, - "resample_space": false, - "system": null, - "location": null, - "skip_existing": false - }, - "GaMMA": { - "station": "C:\\Users\\patri\\Desktop\\AutoQuake\\station.csv", - "velocity_model": "C:\\Users\\patri\\Desktop\\AutoQuake\\vel_model\\Hualien_1D.vel", - "center": [121.625, 24.0], - "xlim_degree": [121, 122.25], - "ylim_degree": [23.25, 24.75], - "min_p_picks_per_eq": 6, - "min_s_picks_per_eq": 2, - "eps": 17.0, - "cpu_number": 40, - "use_amplitude": false - }, - "H3DD": { - "num_of_times": 2, - "station": "C:\\Users\\patri\\Desktop\\AutoQuake\\station.csv", - "model_3D": "C:\\Users\\patri\\Desktop\\AutoQuake\\H3DD\\tomops_H14", - "cutoff_distance_for_first_h3dd": 0.0, - "event_name_for_first_h3dd" : "Relo_c0", - "cutoff_distance_for_second_h3dd": 2.0, - "event_name_for_second_h3dd" : "Relo_c0_c2" - }, - "Mag": { - "station": "C:\\Users\\patri\\Desktop\\AutoQuake\\station.csv", - "sac_parent_dir": "test", - "pz_dir": "C:\\Users\\patri\\Desktop\\AutoQuake\\PZ", - "cpu_number": 40 - }, - "Diting":{ - "sac_parent_dir": "test", - "h5_parent_dir": null, - "cpu_number": 15, - "chunk_size": 50, - "das_in_data": true, - "interval": 300, - "sampling_rate": 100.0, - "need_resample": false - } -} \ No newline at end of file + "configs": [ + { + "name": "full_pipeline_example", + "result_path": "./tester", + + "PhaseNet": { + "enabled": true, + "data_parent_dir": "test\\less_dataset", + "station_csv": "station.csv", + "start": "20240402", + "end": "20240403", + "pz_dir": "PZ", + "data_list": null, + "hdf5_file": null, + "prefix": "", + "format": "SAC", + "dataset": "das", + "model": "phasenet", + "resume": "", + "backbone": "unet", + "phases": ["P", "S"], + "device": "cpu", + "workers": 0, + "batch_size": 1, + "use_deterministic_algorithms": true, + "amp": true, + "world_size": 1, + "dist_url": "env://", + "plot_figure": false, + "min_prob": 0.3, + "add_polarity": false, + "add_event": true, + "sampling_rate": 100.0, + "highpass_filter": 0.0, + "response_path": null, + "response_xml": null, + "subdir_level": 0, + "cut_patch": false, + "nt": 20480, + "nx": 5120, + "resample_time": false, + "resample_space": false, + "system": null, + "location": null, + "skip_existing": false + }, + + "GaMMA": { + "enabled": true, + "picks_csv": null, + "station": "C:\\Users\\patri\\Desktop\\AutoQuake\\station.csv", + "velocity_model": "C:\\Users\\patri\\Desktop\\AutoQuake\\vel_model\\Hualien_1D.vel", + "center": [121.625, 24.0], + "xlim_degree": [121, 122.25], + "ylim_degree": [23.25, 24.75], + "min_p_picks_per_eq": 6, + "min_s_picks_per_eq": 2, + "eps": 17.0, + "cpu_number": 40, + "use_amplitude": false + }, + + "H3DD": { + "enabled": true, + "events_csv": null, + "picks_csv": null, + "station": "C:\\Users\\patri\\Desktop\\AutoQuake\\station.csv", + "model_3D": "C:\\Users\\patri\\Desktop\\AutoQuake\\H3DD\\tomops_H14", + "weights": [1.0, 1.0, 0.1], + "priori_weight": [1.0, 0.75, 0.5, 0.25, 0.0], + "inv": 2, + "damping_factor": 0.0, + "rmscut": 1.0e-4, + "max_iter": 5, + "constrain_factor": 0.0, + "joint_inv_with_single_event_method": 1, + "consider_elevation": 0, + "runs": { + "first": { + "event_name": "H3DD_1", + "cutoff_distances": 0.0 + }, + "second": { + "event_name": "H3DD_2", + "cutoff_distances": 2.0 + } + } + }, + + "Magnitude": { + "enabled": true, + "dout_file": null, + "station": "C:\\Users\\patri\\Desktop\\AutoQuake\\station.csv", + "sac_parent_dir": "test", + "pz_dir": "C:\\Users\\patri\\Desktop\\AutoQuake\\PZ", + "cpu_number": 40 + }, + + "Polarity": { + "enabled": true, + "picks_csv": null, + "sac_parent_dir": "test", + "cpu_number": 15 + }, + + "Focal": { + "enabled": true, + "dout_file": null + } + } + ] +} diff --git a/README.md b/README.md index c645d00..7f7df26 100644 --- a/README.md +++ b/README.md @@ -1,158 +1,108 @@ # AutoQuake -> **AutoQuake: An Automated, All-in-One Solution for Earthquake Catalog Generation.**: An object-oriented package that integrates each step of generating an earthquake catalog. The package connects each step as an object, making it easy to manage and streamline the process. +> **AutoQuake: An Automated, All-in-One Solution for Earthquake Catalog Generation.** + +AutoQuake connects every step of building an earthquake catalog into a single, configuration-driven pipeline: phase picking (**PhaseNet**) → association (**GaMMA**) → relocation (**H3DD**) → magnitude → first-motion polarity (**DiTingMotion**) → focal mechanism (**GAfocal**). You describe a run in one JSON file and launch it with a single command — no Python required. --- ## Table of Contents -- [Getting Started](#getting-started) -- [Installation](#installation) -- [Dataset Structure (both hdf5 for DAS and SAC for Seismometer)](#dataset-structure-both-hdf5-for-das-and-sac-for-seismometer) -- [Contributing](#contributing) -- [Roadmap](#roadmap) -- [License](#license) + +- [1. Install](#1-install) +- [2. Prepare your data](#2-prepare-your-data) +- [3. Configure your run](#3-configure-your-run) +- [4. Run](#4-run) +- [Helper function: prepare the focal input](#helper-function-prepare-the-focal-input) - [Submodules and External Dependencies](#submodules-and-external-dependencies) +- [License](#license) - [References](#references) - [Contact](#contact) --- -## Getting Started -To get started with this project, choose the scenario that best describes your needs: +## 1. Install -### 🚀 Quick Demo (Try the Demo Notebook) -Want to quickly explore AutoQuake without any setup? You have two options: +First initialize the bundled submodules, then create the environment. Conda is recommended because the pipeline depends on compiled Fortran binaries and scientific libraries. -**Option 1: GitHub Codespace (Recommended for Quick Testing)** +```bash +./init_submodules.sh +conda env create -f env.yml +conda activate AutoQuake +``` -1. Click the green "Code" button → "Codespaces" → "Create codespace on main" -2. Once the codespace loads, open `demo_autoquake.ipynb` and start exploring! +## 2. Prepare your data -**Option 2: Clone and Run Locally** -```bash -git clone https://github.com/IES-ESLab/AutoQuake.git -cd AutoQuake -# Follow installation steps below, then open demo_autoquake.ipynb +Organize your waveforms by date — each folder name must contain a `YYYYMMDD` token so it can be matched by glob. + +For seismometers (SAC): + +```text +/data_parent_dir/ + ├── 20240423/ # folder name contains YYYYMMDD + │ └── waveform.SAC # waveform data in SAC format ``` -### Scenario 1: Preliminary Users (Use Only) -![For Preliminary users](images/for_normal_user.png) -If you only want to use the package without contributing to the codebase, follow these simple steps: - -1. **Clone the repository and init the submodules (both HTTPS or SSH is fine)**: - ```bash - git clone git@github.com:IES-ESLab/AutoQuake.git - cd AutoQuake - ./init_submodules.sh # use sh to execute the script if powershell. - ``` -2. **Install dependecies**: Follow the installation instructions in the [Installation](#installation) section. -**Use the Package**: Follow the instructions in the Usage section to start generating earthquake catalogs. -**Report Issues**: If you encounter any problems or have suggestions for improvement, please [open or report an issue](https://github.com/IES-ESLab/AutoQuake/issues). Describe the problem in detail to help us address it quickly. -**Pull Updates**: Regularly pull updates from the original repository to keep your local copy synchronized and avoid conflicts. - ```bash - git pull origin main - ``` -### Scenario 2: Contributors (Recommended. Develop and Improve) -![For contributors](images/for_contributor.png) -If you’re interested in contributing to the development of this project, follow these steps: - -1. **Fork the repository**: Visit the GitHub page of the repository and click on "Fork" to create your own copy. -2. **Clone your forked repository and init the submodules (both HTTPS or SSH is fine)**: - ```bash - git clone https://github.com/your-username/AutoQuake.git # clone the dev branch - cd AutoQuake - ./init_submodules.sh # use sh to execute the script if powershell. - ``` -3. **Install dependecies**: Follow the installation instructions in the [Installation](#installation) section. -4. **Adding remote for original repository**: Connect your local repository to the original (upstream) repository to fetch updates. - ```bash - git remote add upstream https://github.com/IES-ESLab/AutoQuake.git - ``` -5. **Make your changes**: - ```bash - git add . - ``` -6. **commit** them: - ```bash - git commit -m "Description of your changes" - ``` -7. **Push your changes** when you want to update the remote repo on GitHub: - ```bash - git push origin main - ``` -**Pull Updates**: Regularly pull updates from the original repository to keep your local copy synchronized and avoid conflicts. - ```bash - git pull upstream main - ``` -**Open a Pull Request**: Once your changes are pushed, go to the original repository on GitHub and open a Pull Request from your branch to the dev branch of the main repository. -Read to our [Contributing](#contributing) section for more details on how to contribute to this project. -**Report Issues**: You can help resolving the issues. +## 3. Configure your run ---- +A run is described entirely by a JSON file — point each component at your data paths and tune its parameters. Copy `ParamConfig/params.json` as your starting template and edit the values to match your dataset. Every stage can be switched on or off, so you can run the full chain or only the parts you need. + +The file holds a `configs` list, so you can define **multiple runs in a single JSON** — for example one per date, region, or parameter set. They are executed in order, one after another: + +```json +{ + "configs": [ + { "name": "run_1", ... }, + { "name": "run_2", ... } + ] +} +``` + +## 4. Run -## Installation -This package supports both `requirements.txt` and `env.yml` for dependency management. Choose one of the following installation methods: - -### 1. Using Conda (`env.yml`, recommended) -If you’re using Conda, create a new environment directly from the provided `env.yml` file: - ```bash - conda env create -f env.yml - conda activate AutoQuake_v0 - ``` - -### 2. Using pip (`requirements.txt`) -To install dependencies using `pip`: - ```bash - pip install -r requirements.txt - ``` - -## Dataset Structure (Different data format in different data directory) -**Important**: For the package to function correctly, the dataset must follow a specific directory structure. Ensure your data is organized as follows: -For seismometer: - ```bash - /data_parent_dir/ - ├── \*YYYYMMDD\*/ # data folder should contain the Year-Month-Day format for glob. - │ └── waveform.SAC # Waveform data in SAC format - ``` -For DAS: - ```bash - /datat_parent_dir/ - ├── \*YYYYMMDD\*/ - │ └── MiDAS_20240402_86100_86400.h5 # Waveform data in h5 format - ``` - -## Roadmap -Here are the planned future improvements for this project: +Point the focal stage at the generated file by setting `"dout_file": "path/to/focal.dout"` in your config. If you have no magnitude results, leave `df_mag_event` and `df_mag_pick` as `None` and only the polarity information is written. -- **Refactoring Fortrans into Python**: Replace existing Fortran code with Python implementations for better maintainability and compatibility. -- **Integration with Existing Tools**: Integrate with popular seismic data processing tools and platforms. +--- + +## Submodules and External Dependencies + +This project relies on the following external repositories as submodules: + +1. [**EQNet**](https://github.com/IES-ESLab/EQNet): A forked repository contains the PhaseNet, PhaseNet-DAS. +2. [**GaMMA**](https://github.com/IES-ESLab/GaMMA): A forked repository contains the Gaussian Mixture Model for Earthquake Detection and Location. -The roadmap can adapt based on user feedback and new technology developments. If you’re interested in contributing to any of these features, check the [Contributing](#contributing) section. ## License + This project is licensed under the MIT License, which allows for reuse, modification, and distribution with minimal restrictions. See the [LICENSE](./LICENSE) file for the full MIT License text. ### Submodule Licenses + This repository includes third-party submodules and model with their own licensing terms: + 1. **GaMMA** - MIT License: Permissive license allowing free use, modification, and distribution. 2. **EQNet** - Academic and Commercial License: - This submodule is available for academic and research use only. For commercial use, a separate license is required. Contact the authors for more information. @@ -160,16 +110,13 @@ This repository includes third-party submodules and model with their own licensi 3. **DiTing-FOCALFLOW** - Announcements: - Users are free to make modifications to the programs to meet their particular needs, but are discouraged from distributing modified code to others without notification of the authors. If you find any part of the workflow useful, please cite our work or the corresponding publications of the packages. - - Dr. Xiao zhuowei designed and trained the DiTingMotion model,Dr. Zhang Miao provided the data download and preprocessing scripts,Zhao Yanna helped on obtaining and using the HASHpy2 code. Questions and comments? Email Ming Zhao (mn244224@dal.ca) + - Dr. Xiao zhuowei designed and trained the DiTingMotion model,Dr. Zhang Miao provided the data download and preprocessing scripts,Zhao Yanna helped on obtaining and using the HASHpy2 code. Questions and comments? Email Ming Zhao () Please review each submodule’s `LICENSE` file for detailed terms. -## Submodules and External Dependencies -This project relies on the following external repositories as submodules: -1. [**EQNet**](https://github.com/IES-ESLab/EQNet): A forked repository contains the PhaseNet, PhaseNet-DAS. -2. [**GaMMA**](https://github.com/IES-ESLab/GaMMA): A forked repository contains the Gaussian Mixture Model for Earthquake Detection and Location. -3. [**DataClient**](https://github.com/IES-ESLab/Fetch_data): A helper for fetching data through IESWS and GDMS, accout and password are needed. + ## References -- Yang, H.-Y., Huang, H.-H., Wu, E.-S., Chen, H.-A., Liu, C.-N., Hsu, Y.-F., Liang, W.-T., & Ku, C.-S (2025). **An ML-Enhanced Earthquake Catalog for the 2024 MW 7.4 Hualien Earthquake Sequence: Insights into Structural Transition from Collision to Subduction in Eastern Taiwan.** Manuscript under review. + +- Yang, H.-Y., Huang, H.-H., Wu, E.-S., Chen, H.-A., Liu, C.-N., Hsu, Y.-F., Liang, W.-T., & Ku, C.-S (2025). [**An ML-Enhanced Earthquake Catalog for the 2024 MW 7.4 Hualien Earthquake Sequence: Insights into Structural Transition from Collision to Subduction in Eastern Taiwan.**]( https://doi.org/10.1029/2025JB032792) Journal of Geophysical Research: Solid Earth, 130, e2025JB032792. https://doi.org/10.1029/2025JB032792. - Huang, H. H., Wu, Y. M., Song, X., Chang, C. H., Lee, S. J., Chang, T. M., & Hsieh, H. H. (2014). [**Joint Vp and Vs tomography of Taiwan: Implications for subduction-collision orogeny.**](https://www.sciencedirect.com/science/article/pii/S0012821X14000995?via%3Dihub) Earth Planet Science Letters, 392, 177–191. https://doi.org/10.1016/j.epsl.2014.02.026 - Hsu, Y. F., Huang, H. H., Huang, M. H., Tsai, V. C., Chuang, R. Y., Feng, K. F., & Lin, S. H. (2020). [**Evidence for Fluid Migration During the 2016 Meinong, Taiwan, Aftershock Sequence.**](https://agupubs.onlinelibrary.wiley.com/doi/full/10.1029/2020JB019994) Journal of Geophysical Research: Solid Earth. 125. 10.1029/2020JB019994. - Wu, Y. M., Zhao, L., Chang, C. H., & Hsu, Y. J. (2008). [**Focal-Mechanism Determination in Taiwan by Genetic Algorithm.**](https://pubs.geoscienceworld.org/ssa/bssa/article/98/2/651/350113/Focal-Mechanism-Determination-in-Taiwan-by-Genetic). Bulletin of the Seismological Society of America 2008;; 98 (2): 651–661. doi: https://doi.org/10.1785/0120070115 @@ -177,8 +124,10 @@ This project relies on the following external repositories as submodules: - Zhu, W., & Beroza, G. C. (2019). [**PhaseNet: A Deep-Neural-Network-Based Seismic Arrival Time Picking Method.**](https://academic.oup.com/gji/article/216/1/261/5129142) Geophysical Journal International, Volume 216, Issue 1, January 2019, Pages 261–273, https://doi.org/10.1093/gji/ggy423 - Zhu, W., McBrearty, I. W., Mousavi, S. M., Ellsworth, W. L., & Beroza, G. C. (2022). [**Earthquake Phase Association using a Bayesian Gaussian Mixture Model.**](https://agupubs.onlinelibrary.wiley.com/doi/full/10.1029/2021JB023249) Journal of Geophysical Research: Solid Earth, 127, e2021JB023249. https://doi.org/10.1029/2021JB023249 - Zhu, W., Biondi, E., Li, J., Yin, J., Ross, Z. E., & Zhan, Z. (2023). [**Seismic arrival-time picking on distributed acoustic sensing data using semi-supervised learning.**](https://www.nature.com/articles/s41467-023-43355-3) Nat Commun 14, 8192. https://doi.org/10.1038/s41467-023-43355-3 + ## Contact + If you have any questions or suggestions, feel free to reach out: + - **Email**: [patrick.yang880612@gmail.com](mailto:patrick.yang880612@gmail.com) - **GitHub**: [@Pamicoding](https://github.com/Pamicoding) - diff --git a/archive_predict.py b/archive_predict.py deleted file mode 100644 index af4b9ac..0000000 --- a/archive_predict.py +++ /dev/null @@ -1,33 +0,0 @@ -#%% -import json -import logging -from pathlib import Path -from autoquake.picker import parallel_run_phasenet -from ParamConfig.config_model import MainConfig - -# Path of config file -LOG_CONFIG = Path(__file__).parents[0].resolve() / 'log' / 'config.json' -PARAM_CONFIG = Path(__file__).parents[0].resolve() / 'ParamConfig' / 'params.json' -FETCH_CONFIG = Path(__file__).parents[0].resolve() / 'ParamConfig' / 'data_client.json' - -def setup_logging(): - with open(LOG_CONFIG, 'r') as f: - data = json.load(f) - log_config = data["LoggingConfig"] - logging.config.dictConfig(log_config) - -if __name__ == '__main__': - setup_logging() - - # Load config file - with open(PARAM_CONFIG, "r", encoding="utf-8") as f: - config_dict = json.load(f) - config = MainConfig(**config_dict) - - logging.info('Running PhaseNet...') - phasenet_config_list = config.PhaseNet.args_list - parallel_run_phasenet(phasenet_config_list) - - - -# %% diff --git a/autoquake/focal.py b/autoquake/focal.py index 3ab8316..b2e89ea 100644 --- a/autoquake/focal.py +++ b/autoquake/focal.py @@ -1,18 +1,18 @@ -import os +import shutil import subprocess from pathlib import Path class GAfocal: - def __init__(self, dout_file_name: str, result_path: Path): - self.dout_file = dout_file_name + def __init__(self, dout_path: Path, result_path: Path): + self.dout_path = Path(dout_path) self.main_dir = Path(__file__).parents[1] / 'GAfocal' self.result_path = result_path def run(self): + target = self.main_dir / self.dout_path.name + shutil.copy2(self.dout_path, target) subprocess.run( - ['./gafocal'], input=self.dout_file.encode() + b'\n', cwd=self.main_dir - ) - os.system( - f"cp {self.main_dir / 'results.txt'} {self.result_path / 'gafocal_catalog.txt'}" + ['./gafocal'], input=target.name.encode() + b'\n', cwd=self.main_dir ) + shutil.copy2(self.main_dir / 'results.txt', self.result_path / 'gafocal_catalog.txt') diff --git a/autoquake/magnitude.py b/autoquake/magnitude.py index 34e0873..9f9df59 100644 --- a/autoquake/magnitude.py +++ b/autoquake/magnitude.py @@ -409,6 +409,8 @@ def run_mag(self, use_das=False, processes=10): """ Spawn processes to run `get_mag` for multiple event indices in parallel. """ + #TODO: provide direct access for gamma_events.csv and gamma_picks.csv? + # or we can provide a help function to combine it into dout format. self.df_h3dd_events, self.df_h3dd_picks = process_h3dd( dout_file=self.dout_file, station_info=self.station_info ) diff --git a/autoquake/picker.py b/autoquake/picker.py index 44f7138..1229e87 100644 --- a/autoquake/picker.py +++ b/autoquake/picker.py @@ -1,6 +1,7 @@ from __future__ import annotations import argparse +import re import logging logger = logging.getLogger(__name__) import multiprocessing @@ -107,21 +108,6 @@ def picking_filter(picks: Path, filt_station: Path, output_dir: Path | None = No output_dir = picks.parent df_picks.to_csv(output_dir / 'filt_picks.csv', index=False) - @staticmethod - def picks_check( - picks: Path, - station: Path, - get_station=lambda x: str(x).split('.')[1], - output_dir=None, - ): - df_picks = pd.read_csv(picks) - df_sta = pd.read_csv(station) - df_picks['station_id'] = df_picks['station_id'].map(get_station) - df_picks = df_picks[df_picks['station_id'].isin(df_sta['station'])] - if output_dir is None: - output_dir = picks.parent - df_picks.to_csv(output_dir / 'check_picks.csv', index=False) - def postprocess(self, meta, output, polarity_scale=1, event_scale=16): nt, nx = meta['nt'], meta['nx'] data = meta['data'][:, :, :nt, :nx] diff --git a/autoquake/polarity.py b/autoquake/polarity.py index 1f54f8d..336fe14 100644 --- a/autoquake/polarity.py +++ b/autoquake/polarity.py @@ -333,14 +333,14 @@ class DitingMotion: def __init__( self, - gamma_picks: Path, + picks_csv: Path, model_path: Path = DITING_MODEL_PATH, output_dir: Path | None = None, sac_parent_dir: Path | None = None, h5_parent_dir: Path | None = None, interval: int = 300, sampling_rate: float = 100.0, - need_resample: bool = False, + need_resample: bool = True, chunk_size: int = 50, das_in_data: bool = False, type_judge: Callable[[str], bool] | None = None, @@ -348,7 +348,7 @@ def __init__( """Initialize DitingMotion polarity predictor. Args: - gamma_picks: Path to GaMMA picks CSV file. + picks_csv: Path to picks CSV file. model_path: Path to ONNX model file. output_dir: Output directory for results. sac_parent_dir: Parent directory for SAC files (seismometer data). @@ -363,7 +363,7 @@ def __init__( False if DAS. Only used when das_in_data=True. If not provided when das_in_data=True, all stations default to DAS. """ - self.gamma_picks = Path(gamma_picks) + self.picks_csv = Path(picks_csv) self.model_path = Path(model_path) self.output_dir = self._setup_output_dir(output_dir) self.sac_parent_dir = Path(sac_parent_dir) if sac_parent_dir else None @@ -395,12 +395,17 @@ def _setup_output_dir(self, output_dir: Path | None) -> Path: def _load_picks(self) -> pd.DataFrame: """Load picks CSV once at initialization.""" - return pd.read_csv(self.gamma_picks) + return pd.read_csv(self.picks_csv) def _filter_p_picks(self) -> pd.DataFrame: """Filter for P-phase picks with valid event indices.""" df = self._df_picks - mask = (df['phase_type'] == 'P') & (df['event_index'] != -1) + # Supporting picks_csv with or without event_index. + # Because only event_index would contain -1 for invalid picks. + if "event_index" in df.columns: + mask = (df['phase_type'] == 'P') & (df['event_index'] != -1) + else: + mask = (df['phase_type'] == 'P') return df[mask].copy() def _compute_station_types(self) -> dict[str, bool]: diff --git a/autoquake/utils.py b/autoquake/utils.py index f78f54b..f21ffc2 100644 --- a/autoquake/utils.py +++ b/autoquake/utils.py @@ -1,10 +1,11 @@ import multiprocessing as mp -import os +import os, re import calendar from pathlib import Path from datetime import datetime import pandas as pd from time import time +from multiprocessing.pool import Pool # Absolute path for GAfocal dir GAFOCAL_DIR = Path(__file__).parents[1].resolve() / 'GAfocal' @@ -113,13 +114,44 @@ def pseudo_picks_generator( return result_df + +_DELIM = re.compile(r'[._-]') +def extract_station_id(raw: str, station_ids: set) -> str: + """Match a SEED-style id against a reference set without assuming a fixed delimiter. + + Normalizes '.', '_', and '-' to '.' on both sides before checking dot-bounded + component membership, so 'TW.00.SHUL.HL', 'TW-00-SHUL-HL', and 'TW_00_SHUL_HL' + all resolve correctly to 'SHUL'. + + Edge case: if two components in the raw id both appear as station codes in the + reference (e.g. a network code that collides with a station code), the first + match wins. This is extremely unlikely in real seismic datasets. + """ + if raw in station_ids: + return raw + norm_raw = f'.{_DELIM.sub(".", str(raw))}.' + for sid in station_ids: + if f'.{_DELIM.sub(".", sid)}.' in norm_raw: + return sid + return raw + # Processing phasenet picks -def gamma_preprocessing(pickings: Path, output_dir: Path) -> Path: - df = pd.read_csv(pickings) - df['station_id'] = df['station_id'].map(lambda x: str(x).split('.')[1]) - output_path = output_dir/pickings.name - df.to_csv(output_path, index=False) - return output_path +def gamma_preprocessing( + picks: Path, + station: Path, + output_dir=None, + ): + df_picks = pd.read_csv(picks) + df_sta = pd.read_csv(station) + station_ids = set(df_sta['station']) + df_picks['station_id'] = df_picks['station_id'].apply( + lambda x: extract_station_id(str(x), station_ids) + ) + df_picks = df_picks[df_picks['station_id'].isin(station_ids)] + if output_dir is None: + output_dir = picks.parent + df_picks.to_csv(output_dir / 'phasenet_picks_for_gamma.csv', index=False) + return output_dir / 'phasenet_picks_for_gamma.csv' # Processing gamma catalog def classify_event(row, picks): @@ -350,6 +382,7 @@ def process_for_h3dd_twice( h3dd_picks_first = result_path / f'{event_name_1}_picks.csv' return h3dd_events_first, h3dd_picks_first +#NOTE: This function is not clean enough. def get_index_table(df: pd.DataFrame) -> pd.DataFrame: if 'h3dd_event_index' in df.columns: df_table = df.loc[:, ['event_index', 'h3dd_event_index']] @@ -361,7 +394,7 @@ def get_index_table(df: pd.DataFrame) -> pd.DataFrame: assert isinstance(df_table, pd.DataFrame) return df_table - +#NOTE: This function not used. def index_h3dd2gamma(df_table: pd.DataFrame, h3dd_index: int): if all(col in df_table.columns for col in ['event_index', 'h3dd_event_index']): return df_table[df_table['h3dd_event_index'] == h3dd_index]['event_index'].iloc[ @@ -440,11 +473,21 @@ def pol_mag_to_dout( ori_dout, df_pol: pd.DataFrame, output_dout, - df_mag_event=pd.DataFrame(), - df_mag_pick=pd.DataFrame(), + df_mag_event=pd.DataFrame() | None, + df_mag_pick=pd.DataFrame() | None, processes=min(20, os.cpu_count() / 2), - n_chunks=8 + n_chunks=8, + df_gamma_event: pd.DataFrame | None = None, # Support previous version ): + + def _gen_h3dd_index_for_pol(df_pol, df_gamma_event): + df = df_gamma_event.sort_values(by='time', key=lambda x: pd.to_datetime(x)) + df = df.reset_index(drop=True) + df['h3dd_event_index'] = df.index + index_map = dict(zip(df['event_index'], df['h3dd_event_index'])) + df_pol['h3dd_event_index'] = df_pol['event_index'].map(index_map) + return df_pol + def _split_file_by_events(filepath, n_chunks): """Split file into chunks, each starting with an event line""" with open(filepath) as f: @@ -466,9 +509,13 @@ def _split_file_by_events(filepath, n_chunks): return chunks + if df_gamma_event is not None: + print("Mapping h3dd_event_index for polarity DataFrame based on df_gamma_event.") + df_pol = _gen_h3dd_index_for_pol(df_pol, df_gamma_event) + chunks = _split_file_by_events(ori_dout, n_chunks=n_chunks) start = time() - if df_mag_event.empty or df_mag_pick.empty: + if df_mag_event is None or df_mag_pick is None: print("No magnitude data provided, only updating polarity.") args = [(chunk, start_idx, df_pol) for chunk, start_idx in chunks] with Pool(processes) as pool: diff --git a/demo_autoquake.ipynb b/demo_autoquake.ipynb index c124223..d81b5f2 100644 --- a/demo_autoquake.ipynb +++ b/demo_autoquake.ipynb @@ -2,18 +2,21 @@ "cells": [ { "cell_type": "markdown", - "id": "4c7ab431", "metadata": {}, "source": [ "## AutoQuake Demo - Complete Earthquake Catalog Generation\n", "---\n", - "***Welcome to the AutoQuake demonstration!*** \n", - "***This notebook will guide you through the complete earthquake catalog generation workflow:***\n", + "***Welcome to the AutoQuake demonstration!***\n", "\n", - "1. **Download sample seismic data**\n", + "AutoQuake is now driven by a **single JSON configuration**. Instead of wiring each\n", + "stage together by hand, you describe the whole run in one config object and let\n", + "`predict.run_pipeline` execute every stage and pass outputs downstream for you.\n", + "\n", + "This notebook walks through the complete earthquake-catalog workflow:\n", "\n", + "1. **Download sample seismic data**\n", "2. **Phase Detection** with `PhaseNet`\n", - "3. **Event Association** with `GaMMA` \n", + "3. **Event Association** with `GaMMA`\n", "4. **Relocation** with `H3DD`\n", "5. **Magnitude Estimation** with CWA standard\n", "6. **Polarity Determination** with `DiTingMotion`\n", @@ -21,68 +24,63 @@ "\n", "### ***Prerequisites***\n", "- Install the conda environment (`conda env create -f env.yml`), and select it for kernel\n", - "\n", "- Internet connection for downloading demo data\n", - "- Compile the H3DD and GAFocal\n", + "- Compile the H3DD and GAfocal binaries\n", + "\n", + "> **The whole pipeline runs from one config.** You can either build the config in\n", + "> Python (as below) or write it to a `.json` file and run it from the terminal:\n", + "> `python predict.py --config demo_config.json`\n", "\n", "---" ] }, { "cell_type": "markdown", - "id": "18c762e6", "metadata": {}, "source": [ - "### ***Step 1: Download Demo Data and Setup***\n", + "### ***Step 1: Setup and Download Demo Data***\n", "\n", - "First, let's download sample seismic data and import necessary modules." + "First, import the pipeline entry point and download the sample seismic data.\n", + "With the new interface you only need **two** AutoQuake imports:\n", + "`predict.run_pipeline` (the executor) and `BatchConfig` (the config validator)." ] }, { "cell_type": "code", "execution_count": 1, - "id": "0344478c", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "All AutoQuake components imported successfully!\n" + "AutoQuake pipeline interface imported successfully!\n" ] } ], "source": [ - "import os\n", - "import shutil\n", + "import json\n", + "import logging\n", "import sys\n", "import tarfile\n", - "import requests\n", "from pathlib import Path\n", + "\n", "import pandas as pd\n", - "import matplotlib.pyplot as plt\n", + "import requests\n", "\n", - "# Add AutoQuake to path\n", + "# Make AutoQuake importable when running from the repo root\n", "sys.path.append('.')\n", "\n", - "# Import AutoQuake components (following predict.py structure)\n", - "from autoquake.picker import PhaseNet, run_predict\n", - "from autoquake.associator import GaMMA\n", - "from autoquake.focal import GAfocal\n", - "from autoquake.magnitude import Magnitude\n", - "from autoquake.polarity import DitingMotion\n", - "from autoquake.relocator import H3DD\n", - "from autoquake.utils import pol_mag_to_dout\n", + "# --- The only two imports the JSON pipeline needs ---\n", + "import predict\n", + "from ParamConfig.config_model import BatchConfig\n", "\n", - "from ParamConfig.config_model import PhaseNetConfigReceiver\n", - "\n", - "print(\"All AutoQuake components imported successfully!\")" + "print(\"AutoQuake pipeline interface imported successfully!\")" ] }, { "cell_type": "code", - "execution_count": 16, - "id": "7b95a3cd", + "execution_count": 7, "metadata": {}, "outputs": [ { @@ -95,8 +93,7 @@ } ], "source": [ - "\n", - "# Demo Configuration - Set your parameters here!\n", + "# Demo data configuration\n", "record_id = \"17470233\"\n", "filename = \"toy_data.tgz\"\n", "\n", @@ -111,458 +108,8680 @@ " print(\"Downloaded!\")\n", "\n", " with tarfile.open(DEMO_DATA_DIR / filename, 'r:gz') as tar:\n", - " # Get all members and strip the first directory level\n", + " # Strip the leading 'toy_data/' directory level on extraction\n", " for member in tar.getmembers():\n", - " # Skip the root 'toy_data/' directory itself\n", - " if member.name == 'toy_data' or member.name == 'toy_data/':\n", - " continue \n", + " if member.name in ('toy_data', 'toy_data/'):\n", + " continue\n", " if member.name.startswith('toy_data/'):\n", - " member.name = member.name.replace('toy_data/', '', 1) # Remove first 'toy_data/'\n", + " member.name = member.name.replace('toy_data/', '', 1)\n", " tar.extract(member, DEMO_DATA_DIR)\n", " print(f\"Demo data extracted to '{DEMO_DATA_DIR}'\")\n", "except Exception as e:\n", " print(f\"Error: {e}\")\n", - " print(\"Please download manually from:\", DEMO_DATA_URL)\n" - ] - }, - { - "cell_type": "code", - "execution_count": 19, - "id": "6f3c1257", - "metadata": {}, - "outputs": [], - "source": [ - "NCPU = 2\n", - "\n", - "RESULT_DIR = Path(\"demo_results\")\n", - "RESULT_DIR.mkdir(exist_ok=True)\n", - "\n", - "STATION = DEMO_DATA_DIR / \"station.csv\"\n", - "SAC_PARENT_DIR = DEMO_DATA_DIR / \"data\"\n", - "PZ_DIR = DEMO_DATA_DIR / \"PZ\"\n", - "H3DD_VEL_FILE = Path(\"./H3DD/tomops_H14\")" + " print(\"Please download manually from:\", DEMO_DATA_URL)" ] }, { "cell_type": "markdown", - "id": "11ce6627", - "metadata": {}, - "source": [ - "### ***Step 2: Phase Detection with PhaseNet***\n", - "\n", - "PhaseNet is a deep learning model that automatically detects P and S wave arrivals in seismic data. This is the first step in earthquake catalog generation." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "183e0591", "metadata": {}, - "outputs": [], "source": [ - "phasenet_config = PhaseNetConfigReceiver(\n", - " data_parent_dir=SAC_PARENT_DIR,\n", - " start=\"20240402\",\n", - " end=\"20240404\",\n", - " result_path=RESULT_DIR,\n", - " pz_dir=PZ_DIR,\n", - " min_prob=0.5 \n", - ")\n", - "\n", - "run_predict(phasenet_config.args_list)\n", + "### ***Step 2: Build the Pipeline Configuration***\n", "\n", - "phase_picks = PhaseNet.concat_picks(\n", - " date_list=['20240402', '20240403'],\n", - " result_path=RESULT_DIR,\n", - ")" - ] - }, - { - "cell_type": "markdown", - "id": "969916ce", - "metadata": {}, - "source": [ - "### ***Step 3: Event Association with GaMMA***\n", + "This is the heart of the new interface. Every stage is one block in a single\n", + "config dictionary. Each block has an `enabled` flag, and stages automatically\n", + "consume the previous stage's output (so the intermediate `picks_csv` /\n", + "`events_csv` / `dout_file` fields stay `null` here).\n", "\n", - "GaMMA (Gaussian Mixture Model Associator) groups individual phase picks into earthquake events using machine learning clustering techniques." + "The paths below point at the demo data we just downloaded." ] }, { "cell_type": "code", - "execution_count": 5, - "id": "a33961b3", + "execution_count": 4, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "Splitting 2550 picks using eps=14.44\n", - "Splitting 2086 picks using eps=14.44\n", - "Splitting 1382 picks using eps=14.44\n", - "Splitting 2246 picks using eps=12.03\n", - "Splitting 2082 picks using eps=12.03\n", - "Associating 135 clusters with 40 CPUs\n", - ".......................................................................................................................................\n", - "Associated 100 events\n", - "\n", - "Associated 200 events\n" + "Configuration written to demo_config.json\n" ] } ], "source": [ - "def phasenet_station_name_processing(pickings: Path, output_dir: Path) -> Path:\n", - " shutil.copy(pickings, output_dir/f\"{pickings.stem}_original.csv\")\n", - " df = pd.read_csv(pickings)\n", - " df['station_id'] = df['station_id'].map(lambda x: str(x).split('.')[1])\n", - " output_path = output_dir/pickings.name\n", - " df.to_csv(output_path, index=False)\n", - " return output_path\n", + "# Resolved paths for the demo\n", + "RESULT_DIR = Path(\"demo_results\")\n", + "STATION = DEMO_DATA_DIR / \"station.csv\" # toy_data/station.csv\n", + "SAC_PARENT_DIR = DEMO_DATA_DIR / \"data\" # toy_data/data//...\n", + "PZ_DIR = DEMO_DATA_DIR / \"PZ\" # toy_data/PZ\n", + "GAMMA_VEL = Path(\"tests/vel_model/Hualien_1D.vel\") # 1-D model for GaMMA\n", + "H3DD_VEL_FILE = Path(\"H3DD/tomops_H14\") # 3-D model for H3DD\n", "\n", - "# Preprocessing for GaMMA (as in predict.py)\n", - "post_phasenet_pickings = phasenet_station_name_processing(\n", - " pickings=phase_picks,\n", - " output_dir=RESULT_DIR\n", - ")\n", + "config_dict = {\n", + " \"configs\": [\n", + " {\n", + " \"name\": \"demo\",\n", + " \"result_path\": str(RESULT_DIR),\n", "\n", - "# Initialize GaMMA with direct parameters\n", - "# choose number of processes: at most half of available CPUs, but not exceeding configured ncpu\n", - "avail_cpus = os.cpu_count() or NCPU\n", - "ncpu_to_use = min(max(1, avail_cpus // 2), NCPU)\n", + " # 1) Phase detection -------------------------------------------\n", + " \"PhaseNet\": {\n", + " \"enabled\": True,\n", + " \"data_parent_dir\": str(SAC_PARENT_DIR),\n", + " \"station_csv\": str(STATION),\n", + " \"start\": \"20240402\",\n", + " \"end\": \"20240404\", # exclusive -> processes 0402, 0403\n", + " \"pz_dir\": str(PZ_DIR),\n", + " \"format\": \"SAC\",\n", + " \"dataset\": \"das\",\n", + " \"model\": \"phasenet\",\n", + " \"device\": \"cpu\",\n", + " \"min_prob\": 0.5,\n", + " },\n", "\n", - "gamma = GaMMA(\n", - " station=STATION,\n", - " result_path=RESULT_DIR,\n", - " center=(121.625, 24.0),\n", - " xlim_degree=[121.0, 122.25],\n", - " ylim_degree=[23.25, 24.75],\n", - " pickings=post_phasenet_pickings,\n", - " min_p_picks_per_eq=6,\n", - " min_s_picks_per_eq=2,\n", - " dbscan_eps=17.33,\n", - " ncpu=ncpu_to_use,\n", - " use_amplitude=False\n", - ")\n", + " # 2) Association -----------------------------------------------\n", + " \"GaMMA\": {\n", + " \"enabled\": True,\n", + " \"picks_csv\": None, # use PhaseNet output\n", + " \"station\": str(STATION),\n", + " \"velocity_model\": str(GAMMA_VEL),\n", + " \"center\": [121.625, 24.0],\n", + " \"xlim_degree\": [121.0, 122.25],\n", + " \"ylim_degree\": [23.25, 24.75],\n", + " \"min_p_picks_per_eq\": 6,\n", + " \"min_s_picks_per_eq\": 2,\n", + " \"eps\": 17.33,\n", + " \"cpu_number\": 2,\n", + " \"use_amplitude\": False,\n", + " },\n", "\n", - "# Run event association\n", - "gamma.run_predict()" - ] - }, - { - "cell_type": "markdown", - "id": "5767aa4a", - "metadata": {}, - "source": [ - "### ***Step 4: Relocation with H3DD***\n", + " # 3) Relocation ------------------------------------------------\n", + " \"H3DD\": {\n", + " \"enabled\": True,\n", + " \"events_csv\": None, # use GaMMA output\n", + " \"picks_csv\": None,\n", + " \"station\": str(STATION),\n", + " \"model_3D\": str(H3DD_VEL_FILE),\n", + " \"runs\": {\n", + " \"first\": {\"event_name\": \"demo_c0\", \"cutoff_distances\": 0.0}\n", + " },\n", + " },\n", "\n", - "Relocation with Hypo-DD strengthen by 3D velocity models." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "dc6b8834", - "metadata": {}, - "outputs": [], - "source": [ - "print(\"Running H3DD...\")\n", - "h3dd = H3DD(\n", - " gamma_event=gamma.get_events(),\n", - " gamma_picks=gamma.get_picks(),\n", - " result_path=RESULT_DIR,\n", - " station=STATION,\n", - " model_3d=H3DD_VEL_FILE,\n", - " event_name=\"demo_c0\",\n", - " cut_off_distance_for_dd=0.0\n", - ")\n", - "h3dd.run_h3dd()" - ] - }, - { - "cell_type": "markdown", - "id": "36e29fcb", - "metadata": {}, - "source": [ - "### ***Step 5: Magnitude Estimation***\n", + " # 4) Magnitude -------------------------------------------------\n", + " \"Magnitude\": {\n", + " \"enabled\": True,\n", + " \"dout_file\": None, # use H3DD output\n", + " \"station\": str(STATION),\n", + " \"sac_parent_dir\": str(SAC_PARENT_DIR),\n", + " \"pz_dir\": str(PZ_DIR),\n", + " \"cpu_number\": 2,\n", + " },\n", "\n", - "Calculate earthquake magnitudes with **regional specific magnitude empirical formula**." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "dbccca66", - "metadata": {}, - "outputs": [], - "source": [ - "mag = Magnitude(\n", - " dout_file=h3dd.get_dout(),\n", - " station=STATION,\n", - " sac_parent_dir=SAC_PARENT_DIR,\n", - " pz_dir=PZ_DIR,\n", - " output_dir=RESULT_DIR,\n", - ")\n", - "mag.run_mag(processes=2) # Use 2 processes for demo" - ] - }, - { - "cell_type": "markdown", - "id": "13b3b750", - "metadata": {}, - "source": [ - "### ***Step 6: DiTingMotion - Polarity determination***\n", + " # 5) Polarity --------------------------------------------------\n", + " \"Polarity\": {\n", + " \"enabled\": True,\n", + " \"picks_csv\": None, # use GaMMA output\n", + " \"sac_parent_dir\": str(SAC_PARENT_DIR),\n", + " \"cpu_number\": 2,\n", + " },\n", "\n", - "Analyze first-motion polarities for focal mechanism determination." - ] - }, - { - "cell_type": "code", - "execution_count": 40, - "id": "b32c3be0", - "metadata": {}, - "outputs": [], - "source": [ - "def type_judge(station: str):\n", - " \"\"\"\n", - " This is designed for determining station type based on its name.\n", - " Typically, DAS stations start with a number, while traditional seismic stations start with a letter.\n", - " \"\"\"\n", - " return station[0].isalpha()\n", + " # 6) Focal mechanism -------------------------------------------\n", + " \"Focal\": {\n", + " \"enabled\": True,\n", + " \"dout_file\": None, # use H3DD + Polarity output\n", + " },\n", + " }\n", + " ]\n", + "}\n", "\n", - "dt_polarity = DitingMotion(\n", - " gamma_picks=gamma.get_picks(),\n", - " output_dir=RESULT_DIR,\n", - " sac_parent_dir=SAC_PARENT_DIR,\n", - " type_judge=type_judge\n", - ")\n", - "dt_polarity.run_parallel_predict(processes=2)" + "# Optionally persist the config so it can also be run from the CLI:\n", + "# python predict.py --config demo_config.json\n", + "with open(\"demo_config.json\", \"w\", encoding=\"utf-8\") as f:\n", + " json.dump(config_dict, f, indent=4)\n", + "\n", + "print(\"Configuration written to demo_config.json\")" ] }, { "cell_type": "markdown", - "id": "f96e023e", "metadata": {}, "source": [ - "### ***Step 7: Focal Mechanism with GAfocal***\n", + "### ***Step 3: Validate and Inspect the Configuration***\n", "\n", - "GAfocal uses genetic algorithms to determine earthquake focal mechanisms from polarity data." + "`BatchConfig` validates the whole config with Pydantic (paths, required fields,\n", + "inter-stage dependencies) before anything runs. Below we load it and print which\n", + "components are enabled - the same summary `python predict.py --dry-run` shows." ] }, { "cell_type": "code", - "execution_count": null, - "id": "675b8a34", + "execution_count": 5, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Config name : demo\n", + "Result path : demo_results\n", + "\n", + "Enabled components:\n", + " - PhaseNet : [+] enabled\n", + " - GaMMA : [+] enabled\n", + " - H3DD : [+] enabled\n", + " - Magnitude : [+] enabled\n", + " - Polarity : [+] enabled\n", + " - Focal : [+] enabled\n" + ] + } + ], "source": [ - "dout_file_name = pol_mag_to_dout(\n", - " ori_dout=h3dd.get_dout(),\n", - " result_path=RESULT_DIR,\n", - " gamma_event=gamma.get_events(),\n", - " polarity_picks=dt_polarity.get_picks(),\n", - " magnitude_events=mag.get_events(),\n", - " magnitude_picks=mag.get_picks()\n", - ")\n", + "batch_config = BatchConfig(**config_dict)\n", + "config = batch_config.configs[0]\n", "\n", - "# Run GAfocal genetic algorithm\n", - "print(\"Running genetic algorithm for focal mechanisms...\")\n", - "gafocal = GAfocal(\n", - " dout_file_name=dout_file_name,\n", - " result_path=RESULT_DIR\n", - ")\n", - "gafocal.run()" + "print(f\"Config name : {config.name}\")\n", + "print(f\"Result path : {config.result_path}\\n\")\n", + "print(\"Enabled components:\")\n", + "for component in [\"PhaseNet\", \"GaMMA\", \"H3DD\", \"Magnitude\", \"Polarity\", \"Focal\"]:\n", + " status = \"[+] enabled\" if config.is_component_enabled(component) else \"[-] disabled\"\n", + " print(f\" - {component:10s}: {status}\")" ] }, { "cell_type": "markdown", - "id": "79a2554d", - "metadata": {}, - "source": [ - "---\n", - "### ***Visualization***\n", - "\n", - "Here we simply display the beachball on the map" - ] - }, - { - "cell_type": "code", - "execution_count": 34, - "id": "bc5f154d", "metadata": {}, - "outputs": [], "source": [ - "%matplotlib inline\n", - "import numpy as np\n", - "\n", - "import matplotlib.pyplot as plt\n", - "from matplotlib.colors import LightSource\n", - "\n", - "import pygmt\n", - "import cartopy.crs as ccrs\n", - "from cartopy.mpl.geoaxes import GeoAxes\n", - "\n", - "from pyrocko import moment_tensor as pmt\n", - "from pyrocko.plot import beachball, mpl_color\n", - "\n", - "def check_hms_gafocal(hms: str):\n", - " \"\"\"\n", - " check whether the gafocal format's second overflow\n", - " \"\"\"\n", - " minute = int(hms[3:5])\n", - " second = int(hms[6:8])\n", - "\n", - " if second >= 60:\n", - " minute += second // 60\n", - " second = second % 60\n", + "### ***Step 4: Run the Full Pipeline***\n", "\n", - " fixed_hms = hms[:3] + f'{minute:02d}' + hms[5:6] + f'{second:02d}'\n", - " return fixed_hms\n", + "A single call runs all six stages in order, automatically feeding each stage's\n", + "output into the next. Progress is logged to the console and to\n", + "`demo_results/autoquake_demo.log`.\n", "\n", - "def txt_preprocessor(df: pd.DataFrame) -> pd.DataFrame:\n", - " df[1] = df[1].apply(check_hms_gafocal)\n", - " df['time'] = df[0].apply(lambda x: x.replace('/', '-')) + 'T' + df[1]\n", - " for col in [6, 8, 10]:\n", - " df[col] = df[col].map(lambda x: int(x.split('+')[0]))\n", - " df = df.rename(\n", - " columns={\n", - " 2: 'longitude',\n", - " 3: 'latitude',\n", - " 4: 'depth_km',\n", - " 5: 'magnitude',\n", - " 6: 'strike',\n", - " 7: 'strike_err',\n", - " 8: 'dip',\n", - " 9: 'dip_err',\n", - " 10: 'rake',\n", - " 11: 'rake_err',\n", - " 12: 'quality_index',\n", - " 13: 'num_of_polarity',\n", - " }\n", - " )\n", - " mask = [i for i in df.columns.tolist() if isinstance(i, str)]\n", - " df = df[mask]\n", - " return df\n", - "\n", - "def read_gafocal(gafocal_txt: str | Path) -> pd.DataFrame: \n", - " df = pd.read_csv(\n", - " gafocal_txt,\n", - " sep=r'\\s+',\n", - " header=None,\n", - " dtype={0: 'str', 1: 'str'},\n", - " )\n", - " df = txt_preprocessor(df) \n", - " return df\n", - "\n", - "def get_mapview(\n", - " region: list,\n", - " ax: GeoAxes,\n", - " cmap='gray',\n", - " hillshade=True,\n", - " resolution='15s',\n", - " vert_exag=10,\n", - " ):\n", - " # from matplotlib.colors import ListedColormap\n", - " \"\"\"## Plotting the basic map.\n", - "\n", - " Notice here, the ax should be a GeoAxes! A subclass of `matplotlib.axes.Axes`.\n", - " \"\"\"\n", - " topo = (\n", - " pygmt.datasets.load_earth_relief(resolution=resolution, region=region).to_numpy()\n", - " / 1e3\n", - " ) # km\n", - " x = np.linspace(region[0], region[1], topo.shape[1])\n", - " y = np.linspace(region[2], region[3], topo.shape[0])\n", - " xgrid, ygrid = np.meshgrid(x, y)\n", - " ls = LightSource(azdeg=0, altdeg=45)\n", - "\n", - " ax.pcolormesh(\n", - " xgrid,\n", - " ygrid,\n", - " ls.hillshade(topo, vert_exag=vert_exag, dx=1, dy=1) if hillshade else topo,\n", - " vmin=-1 if hillshade else None,\n", - " shading='gouraud',\n", - " cmap=cmap,\n", - " alpha=1.0,\n", - " antialiased=True,\n", - " rasterized=True,\n", - " )\n", - "\n", - " # cartopy setting\n", - " ax.coastlines()\n", - " ax.set_extent(region)\n", - "\n", - " gl = ax.gridlines(draw_labels=True)\n", - " gl.top_labels = False # Turn off top labels\n", - " gl.right_labels = False # Turn off top labels\n", - " gl.xlabel_style = {\n", - " 'weight': 'bold',\n", - " 'size': 10\n", - " }\n", - " gl.ylabel_style = {\n", - " 'rotation': 90,\n", - " 'weight': 'bold',\n", - " 'size': 10\n", - " }" + "This is exactly what `python predict.py --config demo_config.json` does\n", + "internally." ] }, { "cell_type": "code", - "execution_count": null, - "id": "2db49252", + "execution_count": 6, "metadata": {}, - "outputs": [], - "source": [ - "df = read_gafocal(RESULT_DIR / \"gafocal_results.txt\")\n", - "df_station = pd.read_csv(STATION)\n", - "\n", - "region = [\n", - " float(df['longitude'].min()) - 0.2,\n", - " float(df['longitude'].max()) + 0.1,\n", - " float(df['latitude'].min()) - 0.1,\n", - " float(df['latitude'].max()) + 0.1\n", - "]\n", - "\n", - "fig = plt.figure(figsize=(12, 18)) \n", - "geo_ax = fig.add_subplot(projection=ccrs.PlateCarree())\n", - "get_mapview(\n", - " region=region,\n", - " ax=geo_ax,\n", - ")\n", - "geo_ax.set_xlim(region[0], region[1])\n", - "geo_ax.set_ylim(region[2], region[3])\n", - "# Station\n", - "geo_ax.scatter(\n", - " df_station['longitude'],\n", - " df_station['latitude'],\n", - " s=50,\n", - " c='c',\n", - " marker='^',\n", - " edgecolors='k',\n", - " alpha=0.7,\n", - " rasterized=True,\n", - " label='Seismometer',\n", - " zorder=4,\n", - ")\n", - "# geo_ax.set_aspect('auto')\n", + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:11:55,373 - INFO - Starting pipeline run: demo\n", + "2026-06-18 15:11:55,374 - INFO - Running PhaseNet...\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Total samples: toy_data/data/20240402/.SAC : 27 files\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Predicting: 0%| | 0/27 [00:00=5000000: 15428764.0\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "F059: {0: np.float64(61.30223399580492), 1: np.float64(86.483835214961)}\n", + "B078: {0: np.float64(341.7413425168535), 1: np.float64(175.83198559431173)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:19,575 - INFO - code == 0 stations for event0: {'WUSB'}\n", + "2026-06-18 15:16:19,576 - INFO - horizontal elements not enough stations for event0: {}\n", + "2026-06-18 15:16:19,577 - INFO - Event: 1 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SM02: {0: np.float64(31.570087020073718), 1: np.float64(33.28902508313457)}\n", + "WPL: {0: np.float64(14.759632424221984), 1: np.float64(19.15855404366557)}\n", + "SM09: {0: np.float64(29.37519695553413), 1: np.float64(58.02138995393988)}\n", + "TDCB: {0: np.float64(10.56364066374853), 1: np.float64(10.145084621287047)}\n", + "SM39: {0: np.float64(67.3738757200519), 1: np.float64(91.058319358277)}\n", + "SM06: {0: np.float64(172.31824822166408), 1: np.float64(90.93857479936969)}\n", + "E037: {0: np.float64(91.10258356867546), 1: np.float64(86.5089568503338)}\n", + "SHUL: {0: np.float64(26.637958410971947), 1: np.float64(15.488372362902718)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:19,878 - INFO - code == 0 stations for event19: set()\n", + "2026-06-18 15:16:19,879 - INFO - horizontal elements not enough stations for event19: {}\n", + "2026-06-18 15:16:19,880 - INFO - Event: 20 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "E077: {0: np.float64(23.28315228295761), 1: np.float64(24.35086965080618)}\n", + "B148: {0: np.float64(13.598550420871845), 1: np.float64(17.46841822644498)}\n", + "E023: {0: np.float64(41.206863815829), 1: np.float64(31.407284495132)}\n", + "WPL: {0: np.float64(5.287223570024856), 1: np.float64(8.359289831612033)}\n", + "HOPB: {0: np.float64(130.09457091887433), 1: np.float64(148.7088204184283)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:20,036 - WARNING - time data '2024-04-03T00:04:54' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:20,037 - WARNING - time data '2024-04-03T00:05:14' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:20,046 - WARNING - time data '2024-04-03T00:04:54' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:20,048 - WARNING - time data '2024-04-03T00:05:14' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:20,054 - WARNING - time data '2024-04-03T00:04:54' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:20,055 - WARNING - time data '2024-04-03T00:05:14' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:20,056 - WARNING - time data '2024-04-03T00:03:14' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:20,057 - WARNING - time data '2024-04-03T00:06:54' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:20,068 - WARNING - time data '2024-04-03T00:04:54' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:20,069 - WARNING - time data '2024-04-03T00:05:14' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "TDCB: {0: np.float64(5.032914720381652), 1: np.float64(10.154603377180573)}" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:20,069 - WARNING - time data '2024-04-03T00:03:14' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:20,070 - WARNING - time data '2024-04-03T00:06:54' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "YHNB: {0: np.float64(41.69399508844113), 1: np.float64(66.70468687236155)}\n", + "ESL: {0: np.float64(24.202696460928546), 1: np.float64(28.678538260274408)}\n", + "B068: {0: np.float64(41.563018702808165), 1: np.float64(36.07903022891547)}\n", + "B138: {0: np.float64(72.14708819467765), 1: np.float64(75.46600019647512)}\n", + "SM06: {0: np.float64(47.81984380700341), 1: np.float64(57.293276863157914)}\n", + "C024: {0: np.float64(46.439202464967316), 1: np.float64(33.34759422081979)}\n", + "F059: {0: np.float64(95.62235232605455), 1: np.float64(65.21176322920499)}\n", + "B215: {0: np.float64(76.61178801687535), 1: np.float64(45.06037420096442)}\n", + "E077: {0: np.float64(25.324034942766716), 1: np.float64(28.864486059099903)}\n", + "GWUB: {0: np.float64(18.64337412483798), 1: np.float64(32.53412383465664)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:20,376 - INFO - code == 0 stations for event1: set()\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SM09: {0: np.float64(64.7381718444301), 1: np.float64(106.54135967456837)}" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:20,377 - INFO - horizontal elements not enough stations for event1: {}\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:20,378 - INFO - Event: 2 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WPL: {0: np.float64(10.320994263697324), 1: np.float64(17.651436273446766)}SM39: {0: np.float64(130.0112266924196), 1: np.float64(160.1677157896157)}\n", + "\n", + "SM02: {0: np.float64(60.434158326966745), 1: np.float64(44.805957040404245)}\n", + "SML: {0: np.float64(25.005553318225736), 1: np.float64(33.75741132325124)}\n", + "ESL: {0: np.float64(91.78439354674383), 1: np.float64(237.96875005851996)}\n", + "SM06: {0: np.float64(209.74748183350763), 1: np.float64(242.66135752418268)}\n", + "HWA: {0: np.float64(20.464641263428213), 1: np.float64(22.065508890566473)}\n", + "B090: {0: np.float64(24.819016921172302), 1: np.float64(20.92490887445115)}\n", + "WUSB: {0: np.float64(46.73096721398317), 1: np.float64(44.58066670506872)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:20,729 - INFO - code == 0 stations for event20: set()\n", + "2026-06-18 15:16:20,729 - INFO - horizontal elements not enough stations for event20: {}\n", + "2026-06-18 15:16:20,730 - INFO - Event: 21 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "C024: {0: np.float64(25.46664162811538), 1: np.float64(28.95283399416853)}\n", + "WPL: {0: np.float64(17.96477569444357), 1: np.float64(52.629692694944545)}\n", + "EGC: {0: np.float64(102.1745326099444), 1: np.float64(134.8708741273076)}\n", + "YHNB: {0: np.float64(6.631771331532114), 1: np.float64(9.403326913479258)}\n", + "YUS: {0: np.float64(43.32564224919196), 1: np.float64(46.832003476057885)}\n", + "B090: {0: np.float64(32.078248309247954), 1: np.float64(24.46681630695123)}\n", + "ALS: {0: np.float64(19.076475036508604), 1: np.float64(21.89656067426262)}\n", + "SM39: {0: np.float64(711.3508864822965), 1: np.float64(787.0421679780668)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:20,994 - WARNING - time data '2024-04-03T00:07:35' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "YUS: {0: np.float64(187.67422643197546), 1: np.float64(203.34506427021984)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:21,016 - WARNING - time data '2024-04-03T00:07:35' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:21,029 - WARNING - time data '2024-04-03T00:07:35' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:21,030 - WARNING - time data '2024-04-03T00:09:15' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:21,046 - WARNING - time data '2024-04-03T00:07:35' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:21,047 - WARNING - time data '2024-04-03T00:09:15' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SHUL: {0: np.float64(76.26029270771328), 1: np.float64(67.37916563437979)}\n", + "CHK: {0: np.float64(21.92557575033157), 1: np.float64(18.908940485730284)}\n", + "ECB: {0: np.float64(23.226365614034155), 1: np.float64(16.69436029893869)}\n", + "SML: {0: np.float64(71.24308724019556), 1: np.float64(112.97166927354097)}\n", + "EGFH: {0: np.float64(3.332677805319506), 1: np.float64(12.184674880649718)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:21,218 - INFO - code == 0 stations for event2: set()\n", + "2026-06-18 15:16:21,219 - INFO - horizontal elements not enough stations for event2: {}\n", + "2026-06-18 15:16:21,220 - INFO - Event: 3 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "F059: {0: np.float64(127.82076464322947), 1: np.float64(200.83602710834313)}\n", + "ESL: {0: np.float64(34.1572409961774), 1: np.float64(42.35762759482181)}\n", + "NDS: {0: np.float64(8.819669883469535), 1: np.float64(8.282642717505459)}\n", + "ALS: {0: np.float64(44.45325568651122), 1: np.float64(29.445958717233673)}\n", + "SM06: {0: np.float64(213.93780966226484), 1: np.float64(89.39525074126469)}\n", + "E077: {0: np.float64(23.50615718066816), 1: np.float64(43.811126395958254)}\n", + "E023: {0: np.float64(18.716003756314805), 1: np.float64(23.928249916587674)}\n", + "SM09: {0: np.float64(150.61755967759578), 1: np.float64(244.13258734817026)}\n", + "HWA: {0: np.float64(119.1850253658449), 1: np.float64(74.72915956016541)}\n", + "HOPB: {0: np.float64(45.60186416848019), 1: np.float64(87.68049168538657)}ECB: {0: np.float64(23.376352687934908), 1: np.float64(24.29667961776629)}\n", + "\n", + "TPUB: {0: np.float64(7.081601547916209), 1: np.float64(10.37353718751303)}\n", + "EGC: {0: np.float64(132.87363813817484), 1: np.float64(58.400429543878204)}\n", + "TDCB: {0: np.float64(9.316562922616596), 1: np.float64(19.89827466943066)}\n", + "SM39: {0: np.float64(593.8198991092296), 1: np.float64(224.10551094071403)}\n", + "ESL: {0: np.float64(57.77375069691623), 1: np.float64(59.142700485454704)}\n", + "SM02: {0: np.float64(398.5768472306545), 1: np.float64(220.97869907927048)}\n", + "SM06: {0: np.float64(453.277058879241), 1: np.float64(319.40275275133166)}\n", + "SSLB: {0: np.float64(11.309847025977158), 1: np.float64(14.364303298755475)}\n", + "SM09: {0: np.float64(176.7141186651528), 1: np.float64(303.0455633656499)}\n", + "HWA: {0: np.float64(38.74069721493275), 1: np.float64(54.40316230615056)}\n", + "HOPB: {0: np.float64(38.71322028133991), 1: np.float64(64.68898134443396)}\n", + "NNSH: {0: np.float64(9.114853560005384), 1: np.float64(13.436488519604861)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:22,054 - INFO - code == 0 stations for event3: set()\n", + "2026-06-18 15:16:22,055 - INFO - horizontal elements not enough stations for event3: {}\n", + "2026-06-18 15:16:22,056 - INFO - Event: 4 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WUSB: {0: np.float64(65.94764152381234), 1: np.float64(91.41798955790114)}\n", + "B148: {0: np.float64(30.062504413733382), 1: np.float64(44.72177713478943)}\n", + "B148: {0: np.float64(32.04770832924691), 1: np.float64(36.02841783440714)}\n", + "WPL: {0: np.float64(18.161228209577867), 1: np.float64(21.72484842062408)}\n", + "FUSS: {0: np.float64(0.005551546943929829), 1: np.float64(17.061206824514343)}\n", + "B071: {0: np.float64(25.4979019224499), 1: np.float64(15.43276924739193)}\n", + "YULB: {0: np.float64(8.798988937605833), 1: np.float64(20.413790197300614)}\n", + "SM09: {0: np.float64(228.661654618548), 1: np.float64(436.68086287275804)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:22,303 - WARNING - time data '2024-04-03T00:25:27' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:22,304 - WARNING - time data '2024-04-03T00:25:47' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:22,312 - WARNING - time data '2024-04-03T00:25:27' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:22,313 - WARNING - time data '2024-04-03T00:25:47' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:22,320 - WARNING - time data '2024-04-03T00:25:27' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:22,320 - WARNING - time data '2024-04-03T00:25:47' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:22,321 - WARNING - time data '2024-04-03T00:23:47' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:22,322 - WARNING - time data '2024-04-03T00:27:27' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:22,333 - WARNING - time data '2024-04-03T00:25:27' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:22,334 - WARNING - time data '2024-04-03T00:25:47' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:22,334 - WARNING - time data '2024-04-03T00:23:47' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:22,335 - WARNING - time data '2024-04-03T00:27:27' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "GWUB: {0: np.float64(11.458088427491932), 1: np.float64(22.325912232850968)}\n", + "B068: {0: np.float64(21.241842767510395), 1: np.float64(18.866570344713573)}\n", + "SM02: {0: np.float64(229.2693524061933), 1: np.float64(296.60977131289866)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:22,403 - INFO - code == 0 stations for event21: set()\n", + "2026-06-18 15:16:22,404 - INFO - horizontal elements not enough stations for event21: {}\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SM39: {0: np.float64(626.4038741744607), 1: np.float64(792.8944704932678)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:22,405 - INFO - Event: 22 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "TDCB: {0: np.float64(6.049138328774632), 1: np.float64(9.428888237540964)}\n", + "CHK: {0: np.float64(40.42553699208064), 1: np.float64(56.74123678719996)}\n", + "ESL: {0: np.float64(17.10904213854268), 1: np.float64(12.973613559955831)}\n", + "SM02: {0: np.float64(207.61501197209915), 1: np.float64(152.83113423968052)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:22,567 - INFO - code == 0 stations for event4: set()\n", + "2026-06-18 15:16:22,568 - INFO - horizontal elements not enough stations for event4: {}\n", + "2026-06-18 15:16:22,569 - INFO - Event: 5 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SM06: {0: np.float64(50.51340354623838), 1: np.float64(35.25582791015027)}\n", + "TDCB: {0: np.float64(46.28620997498855), 1: np.float64(63.33100725489861)}\n", + "E077: {0: np.float64(15.430224992927997), 1: np.float64(16.962801511007296)}\n", + "LATB: {0: np.float64(396.3146571339225), 1: np.float64(292.32059001196586)}\n", + "SM09: {0: np.float64(88.60235384081473), 1: np.float64(215.66237795254307)}\n", + "SM06: {0: np.float64(173.0898220691897), 1: np.float64(168.71752374317663)}\n", + "HOPB: {0: np.float64(21.72385993045033), 1: np.float64(26.0371096141289)}\n", + "EOS3: {0: np.float64(46.52968575832121), 1: np.float64(145.10211885057433)}\n", + "SM39: {0: np.float64(105.1339159961324), 1: np.float64(154.44816812705534)}\n", + "E037: {0: np.float64(232.93396089127728), 1: np.float64(225.58746276009308)}\n", + "B215: {0: np.float64(8.884104687985971), 1: np.float64(8.847897048400327)}\n", + "B189: {0: np.float64(48.721758781119895), 1: np.float64(26.679686529766418)}\n", + "SM02: {0: np.float64(44.72070545322638), 1: np.float64(48.82269350975756)}\n", + "E077: {0: np.float64(235.28187922652117), 1: np.float64(226.1120106559183)}\n", + "E004: {0: np.float64(205.3262988817474), 1: np.float64(194.740609833894)}\n", + "HWA: {0: np.float64(10.771032965591072), 1: np.float64(9.668819626463268)}\n", + "SM09: {0: np.float64(600.0887793154617), 1: np.float64(1036.8073100187744)}\n", + "HOPB: {0: np.float64(789.0221439740335), 1: np.float64(1203.4210622966912)}\n", + "NNSH: {0: np.float64(5.709993447081154), 1: np.float64(6.249319143825291)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:23,196 - INFO - code == 0 stations for event22: set()\n", + "2026-06-18 15:16:23,197 - INFO - horizontal elements not enough stations for event22: {}\n", + "2026-06-18 15:16:23,198 - INFO - Event: 23 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "YHNB: {0: np.float64(144.44942832940515), 1: np.float64(123.5515288730538)}\n", + "WPL: {0: np.float64(52.91427118926118), 1: np.float64(84.14625627520796)}\n", + "NDS: {0: np.float64(77.8507313465683), 1: np.float64(45.18800844687595)}\n", + "WCS: {0: np.float64(17.57564787652517), 1: np.float64(28.468342194582895)}\n", + "SM39: {0: np.float64(715.4946296666933), 1: np.float64(409.15014482139026)}\n", + "B090: {0: np.float64(161.4660179027688), 1: np.float64(111.55922959908325)}\n", + "B215: {0: np.float64(249.68166431365958), 1: np.float64(98.87373093619932)}\n", + "SM39: {0: np.float64(893.9392333104066), 1: np.float64(908.8709682300315)}\n", + "YUS: {0: np.float64(229.5862248943872), 1: np.float64(348.2258004530564)}GWUB: {0: np.float64(94.27159445988372), 1: np.float64(115.53584814929278)}\n", + "\n", + "SM02: {0: np.float64(210.94411805835887), 1: np.float64(299.53112231249156)}\n", + "SHUL: {0: np.float64(177.4374043641511), 1: np.float64(375.68291834013866)}\n", + "NNSH: {0: np.float64(36.85218597343042), 1: np.float64(105.00461563596492)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:23,647 - INFO - code == 0 stations for event5: set()\n", + "2026-06-18 15:16:23,647 - INFO - horizontal elements not enough stations for event5: {}\n", + "2026-06-18 15:16:23,648 - INFO - Event: 6 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SML: {0: np.float64(161.35962026967883), 1: np.float64(216.96782260765352)}\n", + "SM06: {0: np.float64(215.0340164594059), 1: np.float64(152.78001789058607)}\n", + "F059: {0: np.float64(613.9817076821724), 1: np.float64(1134.08968187699)}\n", + "SSLB: {0: np.float64(10.191564683304275), 1: np.float64(8.893844301359172)}\n", + "CHKH: {0: np.float64(31.29857098914735), 1: np.float64(40.6505480315319)}\n", + "E077: {0: np.float64(18.546031019476683), 1: np.float64(16.447983251327415)}\n", + "B138: {0: np.float64(109.5366548586092), 1: np.float64(82.16341611071762)}\n", + "SM09: {0: np.float64(85.98706087904878), 1: np.float64(116.4619398340554)}\n", + "C024: {0: np.float64(104.25243915530741), 1: np.float64(175.74129092651845)}\n", + "HOPB: {0: np.float64(31.99397428339746), 1: np.float64(42.25835956608224)}\n", + "ALS: {0: np.float64(146.81860525228174), 1: np.float64(218.65955140201842)}\n", + "SM39: {0: np.float64(158.0325222914662), 1: np.float64(256.9710262954456)}\n", + "SM02: {0: np.float64(78.74546990647394), 1: np.float64(67.21996621559958)}\n", + "ECB: {0: np.float64(16.73023736536867), 1: np.float64(19.124354774274654)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:24,142 - INFO - code == 0 stations for event6: set()\n", + "2026-06-18 15:16:24,143 - INFO - horizontal elements not enough stations for event6: {}\n", + "2026-06-18 15:16:24,144 - INFO - Event: 7 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "HWA: {0: np.float64(217.2829609354441), 1: np.float64(159.59982016552013)}\n", + "ESL: {0: np.float64(30.98578038876098), 1: np.float64(34.34594403248051)}\n", + "LATB: {0: np.float64(100.04881698610335), 1: np.float64(105.36742219486806)}\n", + "SM06: {0: np.float64(127.01622408446447), 1: np.float64(93.593577805865)}\n", + "ESL: {0: np.float64(220.07923696276933), 1: np.float64(230.6369100962892)}\n", + "SM06: {0: np.float64(346.69659164332415), 1: np.float64(418.8293219940737)}\n", + "SHUL: {0: np.float64(44.927949848615874), 1: np.float64(46.17191200278853)}\n", + "SM09: {0: np.float64(293.31554235279754), 1: np.float64(455.88137304859345)}\n", + "F059: {0: np.float64(61.176791148157896), 1: np.float64(86.4782857876799)}\n", + "WUSB: {0: np.float64(211.22947706337015), 1: np.float64(277.8349248473068)}\n", + "B189: {0: np.float64(20.291319213666988), 1: np.float64(19.938731868244435)}\n", + "B148: {0: np.float64(72.92266431381209), 1: np.float64(130.44741918643885)}\n", + "E077: {0: np.float64(25.48314886941109), 1: np.float64(29.62277458073203)}\n", + "EHYH: {0: np.float64(46.12363173992503), 1: np.float64(40.93318657087963)}\n", + "SM09: {0: np.float64(144.43720622729913), 1: np.float64(313.1189654567651)}\n", + "C024: {0: np.float64(46.94645071128885), 1: np.float64(54.397622630490616)}\n", + "FUSS: {0: np.float64(0.01797261061672989), 1: np.float64(33.354454792950825)}\n", + "SM39: {0: np.float64(297.0566184131455), 1: np.float64(229.42766639790648)}\n", + "E077: {0: np.float64(56.85645098098674), 1: np.float64(67.8491725436101)}\n", + "B215: {0: np.float64(41.99647098409251), 1: np.float64(25.474456968651914)}\n", + "B068: {0: np.float64(100.86046530077465), 1: np.float64(88.80498945747605)}\n", + "ALS: {0: np.float64(44.2094843703751), 1: np.float64(40.40568209714287)}\n", + "SM02: {0: np.float64(274.41398490736583), 1: np.float64(370.31039160776896)}\n", + "YUS: {0: np.float64(76.11745718910053), 1: np.float64(115.9658267972306)}\n", + "NNSH: {0: np.float64(41.40522712621353), 1: np.float64(43.12346642326586)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:24,986 - INFO - code == 0 stations for event23: set()\n", + "2026-06-18 15:16:24,987 - INFO - horizontal elements not enough stations for event23: {}\n", + "2026-06-18 15:16:24,988 - INFO - Event: 24 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SM02: {0: np.float64(124.71287046890673), 1: np.float64(125.79102808598022)}\n", + "ESL: {0: np.float64(53.97663481322238), 1: np.float64(60.9444025793179)}\n", + "CHK: {0: np.float64(84.49400272640356), 1: np.float64(71.88700399103887)}\n", + "SM06: {0: np.float64(151.35686265455902), 1: np.float64(92.33389688848335)}\n", + "F002: {0: np.float64(77.02842533566735), 1: np.float64(50.37334410202536)}\n", + "E077: {0: np.float64(23.005670896171626), 1: np.float64(21.13134821957338)}\n", + "ECB: {0: np.float64(136.00773108952535), 1: np.float64(70.19566036444589)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:25,218 - INFO - code == 0 stations for event7: set()\n", + "2026-06-18 15:16:25,219 - INFO - horizontal elements not enough stations for event7: {}\n", + "2026-06-18 15:16:25,220 - INFO - Event: 8 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SM09: {0: np.float64(117.06785209602988), 1: np.float64(164.14861380418995)}\n", + "E037: {0: np.float64(74.85845542343729), 1: np.float64(84.93479729573745)}\n", + "SM39: {0: np.float64(349.1377726148757), 1: np.float64(342.20824555155747)}\n", + "YHNB: {0: np.float64(19.433753760108438), 1: np.float64(23.548923383964635)}\n", + "SM02: {0: np.float64(222.60864977747997), 1: np.float64(227.6388381007366)}\n", + "SM39: {0: np.float64(174.14370049200784), 1: np.float64(189.07274790879663)}\n", + "F002: {0: np.float64(111.42108383158751), 1: np.float64(146.78994953002947)}\n", + "SML: {0: np.float64(84.24617314514099), 1: np.float64(122.27842926260281)}\n", + "B071: {0: np.float64(21.713543833085055), 1: np.float64(23.974177074988688)}\n", + "HWA: {0: np.float64(30.035055000032134), 1: np.float64(24.292667416007337)}\n", + "B078: {0: np.float64(7.0231634576137), 1: np.float64(8.17466249074699)}B138: {0: np.float64(70.23992411401795), 1: np.float64(57.433758562536305)}\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:25,616 - INFO - code == 0 stations for event24: set()\n", + "2026-06-18 15:16:25,617 - INFO - horizontal elements not enough stations for event24: {}\n", + "2026-06-18 15:16:25,618 - INFO - Event: 25 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WPL: {0: np.float64(6.325076710793375), 1: np.float64(8.69592551631435)}\n", + "B045: {0: np.float64(33.17723740465908), 1: np.float64(27.281963500372804)}\n", + "ECB: {0: np.float64(84.11807518219628), 1: np.float64(54.43211135777725)}\n", + "ESL: {0: np.float64(53.98456137737213), 1: np.float64(60.93531955943494)}\n", + "TDCB: {0: np.float64(13.31748802514301), 1: np.float64(17.697602605199947)}\n", + "SM06: {0: np.float64(107.34546683532216), 1: np.float64(71.2020696002437)}\n", + "LATB: {0: np.float64(32.84283918580121), 1: np.float64(38.44927870830414)}\n", + "F059: {0: np.float64(84.05719355003077), 1: np.float64(130.11267462652458)}\n", + "SM09: {0: np.float64(68.99893123581747), 1: np.float64(102.32520676049586)}\n", + "SM06: {0: np.float64(190.66739286353013), 1: np.float64(181.10149905597595)}\n", + "SM39: {0: np.float64(214.36319666511983), 1: np.float64(198.99233792287586)}\n", + "E023: {0: np.float64(38.9147954863278), 1: np.float64(41.13318363688475)}\n", + "YUS: {0: np.float64(37.10367853408257), 1: np.float64(44.75090628642058)}\n", + "HOPB: {0: np.float64(456.61944997991003), 1: np.float64(224.70868112142173)}\n", + "E004: {0: np.float64(139.07080122333159), 1: np.float64(134.29734900262764)}\n", + "EGFH: {0: np.float64(2.675006876752616), 1: np.float64(4.534794771911354)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:26,123 - INFO - code == 0 stations for event25: set()\n", + "2026-06-18 15:16:26,123 - INFO - horizontal elements not enough stations for event25: {}\n", + "2026-06-18 15:16:26,124 - INFO - Event: 26 started\n", + "2026-06-18 15:16:26,165 - WARNING - time data '2024-04-03T00:29:00' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:26,178 - WARNING - time data '2024-04-03T00:29:00' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "NNSH: {0: np.float64(10.889745622129245), 1: np.float64(12.122159899414386)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:26,188 - WARNING - time data '2024-04-03T00:29:00' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:26,189 - WARNING - time data '2024-04-03T00:30:40' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:26,203 - WARNING - time data '2024-04-03T00:29:00' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:26,203 - WARNING - time data '2024-04-03T00:30:40' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SM06: {0: np.float64(97.23648735573627), 1: np.float64(132.16480027943848)}\n", + "B148: {0: np.float64(32.50879268186698), 1: np.float64(39.464230661650156)}\n", + "F059: {0: np.float64(34.117072120044604), 1: np.float64(31.437221183306065)}\n", + "E077: {0: np.float64(45.3592306395578), 1: np.float64(64.59045193342259)}\n", + "SM09: {0: np.float64(50.39471303201891), 1: np.float64(64.76184495938985)}\n", + "B215: {0: np.float64(34.281678724136015), 1: np.float64(31.387815036723985)}\n", + "EGC: {0: np.float64(35.158758606796376), 1: np.float64(48.37514386911836)}\n", + "B078: {0: np.float64(37.36394361465573), 1: np.float64(24.0383089988744)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:26,415 - INFO - code == 0 stations for event8: set()\n", + "2026-06-18 15:16:26,415 - INFO - horizontal elements not enough stations for event8: {}\n", + "2026-06-18 15:16:26,416 - INFO - Event: 9 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SM39: {0: np.float64(73.43944293844594), 1: np.float64(65.07985772358417)}\n", + "WPL: {0: np.float64(37.90102445787864), 1: np.float64(58.851878435529464)}\n", + "YUS: {0: np.float64(10.281132142766875), 1: np.float64(15.256385472603121)}\n", + "B148: {0: np.float64(98.1832026116921), 1: np.float64(92.89541026359022)}\n", + "SM02: {0: np.float64(41.69701739109391), 1: np.float64(39.63189748316276)}\n", + "SML: {0: np.float64(208.53579034634885), 1: np.float64(124.22819752591678)}\n", + "ESL: {0: np.float64(588.0784135652957), 1: np.float64(1960.9144471498262)}\n", + "F059: {0: np.float64(1235.160067920981), 1: np.float64(2870.254283093588)}\n", + "HWA: {0: np.float64(25.31041521266254), 1: np.float64(23.080061718883755)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:26,745 - INFO - code == 0 stations for event26: set()\n", + "2026-06-18 15:16:26,746 - INFO - horizontal elements not enough stations for event26: {}\n", + "2026-06-18 15:16:26,747 - INFO - Event: 27 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "E077: {0: np.float64(30.25196998509254), 1: np.float64(43.52980267040464)}\n", + "WPL: {0: np.float64(2.8798804757155128), 1: np.float64(2.6587354693282)}\n", + "E023: {0: np.float64(22.323882103321683), 1: np.float64(24.18160443255007)}\n", + "HOPB: {0: np.float64(107.3072218893164), 1: np.float64(105.57017134419415)}\n", + "SM06: {0: np.float64(60.584637010206144), 1: np.float64(54.68471214034527)}\n", + "C024: {0: np.float64(113.32326459818904), 1: np.float64(82.58539166380102)}\n", + "E077: {0: np.float64(11.187604098259861), 1: np.float64(9.861061358134329)}\n", + "EGC: {0: np.float64(407.13895061934886), 1: np.float64(315.66320776654004)}\n", + "SM09: {0: np.float64(40.04393365604365), 1: np.float64(51.218802957894276)}\n", + "B215: {0: np.float64(38.68476816708447), 1: np.float64(24.887249236006117)}\n", + "HOPB: {0: np.float64(32.077879988978765), 1: np.float64(29.624593091957045)}\n", + "YUS: {0: np.float64(116.98858883347553), 1: np.float64(181.71836621257776)}\n", + "YHNB: {0: np.float64(7.206235013677243), 1: np.float64(13.727400009222572)}\n", + "SM39: {0: np.float64(82.39345764881259), 1: np.float64(73.24288466842252)}\n", + "B215: {0: np.float64(14.586604581395141), 1: np.float64(12.666915724113307)}\n", + "SHUL: {0: np.float64(517.9336273946332), 1: np.float64(413.93529029187)}\n", + "YUS: {0: np.float64(24.763393846559424), 1: np.float64(23.678010921386583)}\n", + "F002: {0: np.float64(173.7948670094814), 1: np.float64(198.16932463154728)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:27,318 - INFO - code == 0 stations for event9: set()\n", + "2026-06-18 15:16:27,319 - INFO - horizontal elements not enough stations for event9: {}\n", + "2026-06-18 15:16:27,320 - INFO - Event: 10 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SM02: {0: np.float64(18.950820804364692), 1: np.float64(21.690909015467057)}\n", + "WPL: {0: np.float64(14.318029083096269), 1: np.float64(27.138331896744138)}\n", + "WUSB: {0: np.float64(9.168188632523279), 1: np.float64(10.901406419449042)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:27,414 - INFO - code == 0 stations for event27: set()\n", + "2026-06-18 15:16:27,415 - INFO - horizontal elements not enough stations for event27: {}\n", + "2026-06-18 15:16:27,416 - INFO - Event: 28 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "YHNB: {0: np.float64(20.679211743954482), 1: np.float64(22.09726857474155)}\n", + "B090: {0: np.float64(269.80879867709876), 1: np.float64(250.4600218782283)}\n", + "FUSS: {0: np.float64(0.0036127001078051697), 1: np.float64(5.697617739684407)}\n", + "SM39: {0: np.float64(288.94143292002354), 1: np.float64(605.5270089763826)}\n", + "TDCB: {0: np.float64(2.151057792174701), 1: np.float64(2.742511187580356)}\n", + "YUS: {0: np.float64(58.451946220314966), 1: np.float64(54.902740020047744)}\n", + "ESL: {0: np.float64(7.5751844962900705), 1: np.float64(16.729412582853328)}\n", + "SML: {0: np.float64(49.07711138485485), 1: np.float64(39.455882182979)}\n", + "F059: {0: np.float64(140.22710820516434), 1: np.float64(130.67784352450394)}\n", + "SM06: {0: np.float64(32.63696336088313), 1: np.float64(31.252337155266492)}\n", + "B138: {0: np.float64(43.26536354209351), 1: np.float64(29.675088824345746)}\n", + "SM09: {0: np.float64(37.45860797445083), 1: np.float64(45.78306447268082)}\n", + "C024: {0: np.float64(29.83032081377929), 1: np.float64(32.67840457700135)}\n", + "SM39: {0: np.float64(90.50462377108674), 1: np.float64(72.94876175978075)}\n", + "ALS: {0: np.float64(303.21276213870766), 1: np.float64(244.51106024234818)}\n", + "B215: {0: np.float64(10.635119921391132), 1: np.float64(7.126488172681447)}\n", + "B045: {0: np.float64(21.377432134647375), 1: np.float64(31.964304711764633)}\n", + "SM02: {0: np.float64(33.05304619409066), 1: np.float64(33.41860091465047)}\n", + "TDCB: {0: np.float64(9.809645892067417), 1: np.float64(9.76683389414947)}\n", + "LATB: {0: np.float64(34.520986995515344), 1: np.float64(37.81135710115744)}\n", + "ESL: {0: np.float64(52.600989303257435), 1: np.float64(76.79069092794805)}\n", + "HWA: {0: np.float64(16.394342254687533), 1: np.float64(19.076796514698984)}\n", + "WUSB: {0: np.float64(12.48801566364772), 1: np.float64(11.944326593050265)}\n", + "SM06: {0: np.float64(125.4761483582052), 1: np.float64(286.9185361154419)}\n", + "E023: {0: np.float64(31.306249470236857), 1: np.float64(25.876228268491193)}\n", + "NNSH: {0: np.float64(5.181537051822576), 1: np.float64(4.869940912759669)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:28,249 - INFO - code == 0 stations for event28: set()\n", + "2026-06-18 15:16:28,250 - INFO - horizontal elements not enough stations for event28: {}\n", + "2026-06-18 15:16:28,251 - INFO - Event: 29 started\n", + "2026-06-18 15:16:28,269 - WARNING - time data '2024-04-03T00:17:21' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:28,270 - WARNING - time data '2024-04-03T00:17:41' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:28,278 - WARNING - time data '2024-04-03T00:17:21' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:28,279 - WARNING - time data '2024-04-03T00:17:41' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:28,285 - WARNING - time data '2024-04-03T00:17:21' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:28,286 - WARNING - time data '2024-04-03T00:17:41' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:28,287 - WARNING - time data '2024-04-03T00:15:41' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:28,288 - WARNING - time data '2024-04-03T00:19:21' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:28,298 - WARNING - time data '2024-04-03T00:17:21' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:28,299 - WARNING - time data '2024-04-03T00:17:41' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:28,300 - WARNING - time data '2024-04-03T00:15:41' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:28,301 - WARNING - time data '2024-04-03T00:19:21' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "TDCB: {0: np.float64(1.2239051444980906), 1: np.float64(1.6434941651970574)}\n", + "SM09: {0: np.float64(279.33292713375965), 1: np.float64(598.4217444684717)}\n", + "ESL: {0: np.float64(18.778999125083107), 1: np.float64(28.096394236355394)}\n", + "HOPB: {0: np.float64(90.92962851772845), 1: np.float64(73.0948573444767)}\n", + "B078: {0: np.float64(19.51657552238001), 1: np.float64(15.138941863657124)}\n", + "SM06: {0: np.float64(46.6451077557091), 1: np.float64(65.98012363711187)}\n", + "WUSB: {0: np.float64(98.71213187952637), 1: np.float64(79.16503713102124)}\n", + "SSLB: {0: np.float64(2.53829950568154), 1: np.float64(4.4472003295359315)}\n", + "B148: {0: np.float64(33.75176175048909), 1: np.float64(37.03446385688564)}\n", + "F059: {0: np.float64(53.25367730834269), 1: np.float64(97.82395400148795)}\n", + "B189: {0: np.float64(20.471158683044184), 1: np.float64(11.616885059816024)}\n", + "SM09: {0: np.float64(46.851914877967104), 1: np.float64(45.34213455707942)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:28,634 - WARNING - time data '2024-04-03T00:30:55' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:28,643 - WARNING - time data '2024-04-03T00:30:55' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:28,650 - WARNING - time data '2024-04-03T00:30:55' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:28,651 - WARNING - time data '2024-04-03T00:32:35' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "E077: {0: np.float64(48.75723744990404), 1: np.float64(25.428553739241863)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:28,661 - WARNING - time data '2024-04-03T00:30:55' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:28,662 - WARNING - time data '2024-04-03T00:32:35' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SM39: {0: np.float64(132.56753874088872), 1: np.float64(302.8595784805621)}\n", + "B068: {0: np.float64(24.166046974593446), 1: np.float64(25.613113275167983)}\n", + "SM02: {0: np.float64(54.17269329459964), 1: np.float64(54.80600065762555)}\n", + "B215: {0: np.float64(36.40982989130261), 1: np.float64(37.86969873681636)}\n", + "SM02: {0: np.float64(241.95846530085092), 1: np.float64(209.27060835015698)}\n", + "HWA: {0: np.float64(16.524341657724438), 1: np.float64(11.047859526683878)}\n", + "NNSH: {0: np.float64(15.48248022737106), 1: np.float64(15.29342157468121)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:28,921 - INFO - code == 0 stations for event10: set()\n", + "2026-06-18 15:16:28,922 - INFO - horizontal elements not enough stations for event10: {}\n", + "2026-06-18 15:16:28,923 - INFO - Event: 11 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WUSB: {0: np.float64(9.09898026379138), 1: np.float64(23.323487028077153)}\n", + "WPL: {0: np.float64(124.17343367327432), 1: np.float64(159.6651710640174)}\n", + "WFEN: {0: np.float64(174.46001523846797), 1: np.float64(126.13935989913311)}\n", + "EGFH: {0: np.float64(1.0736238034264853), 1: np.float64(1.160140130783837)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:29,044 - INFO - code == 0 stations for event29: set()\n", + "2026-06-18 15:16:29,045 - INFO - horizontal elements not enough stations for event29: {}\n", + "2026-06-18 15:16:29,046 - INFO - Event: 30 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "YHNB: {0: np.float64(178.4522583138732), 1: np.float64(121.39294383560814)}\n", + "WPL: {0: np.float64(38.72711433379825), 1: np.float64(126.24473898320743)}\n", + "B090: {0: np.float64(270.164568323968), 1: np.float64(250.67332621904808)}\n", + "WCS: {0: np.float64(29.735722233052), 1: np.float64(23.592681234513325)}\n", + "SM39: {0: np.float64(2632.2662750105933), 1: np.float64(2437.3256522725137)}\n", + "G041: {0: np.float64(155.40091967401887), 1: np.float64(149.1121541035882)}\n", + "YUS: {0: np.float64(753.2156432985529), 1: np.float64(653.6357513908754)}\n", + "SM39: {0: np.float64(1261.5916457322787), 1: np.float64(1146.1642546501546)}\n", + "YUS: {0: np.float64(75.57882302547972), 1: np.float64(105.43398142325968)}\n", + "SHUL: {0: np.float64(326.34026781553285), 1: np.float64(287.78848018883247)}\n", + "F002: {0: np.float64(470.2061538120361), 1: np.float64(364.76432731012966)}\n", + "SHUL: {0: np.float64(127.26852470465933), 1: np.float64(134.2606472818132)}\n", + "B071: {0: np.float64(144.9373939365474), 1: np.float64(268.9534159570573)}\n", + "F002: {0: np.float64(105.46968622237321), 1: np.float64(95.9302102009218)}\n", + "F059: {0: np.float64(1002.9294747265411), 1: np.float64(1691.004398048932)}\n", + "F059: {0: np.float64(746.8467625650283), 1: np.float64(1182.6006931918555)}\n", + "C024: {0: np.float64(257.94247271406607), 1: np.float64(202.30631380675277)}\n", + "B138: {0: np.float64(113.67628712643894), 1: np.float64(88.37221245953099)}\n", + "B045: {0: np.float64(278.73406974998164), 1: np.float64(221.10669753687128)}\n", + "HWA: {0: np.float64(147.61264959014434), 1: np.float64(145.22103197208085)}\n", + "HWA: {0: np.float64(427.8574697277038), 1: np.float64(544.1707048570219)}\n", + "ECB: {0: np.float64(59.48614838012844), 1: np.float64(58.339341480993156)}\n", + "ECB: {0: np.float64(207.03589264084536), 1: np.float64(249.21881647433852)}\n", + "TDCB: {0: np.float64(35.9815498130839), 1: np.float64(46.337750299734104)}\n", + "TDCB: {0: np.float64(61.94414085187405), 1: np.float64(100.9453016438249)}\n", + "ESL: {0: np.float64(174.52936239060742), 1: np.float64(146.47241034691768)}\n", + "ESL: {0: np.float64(295.5764898647869), 1: np.float64(297.3225586687465)}\n", + "SM06: {0: np.float64(436.57382348046167), 1: np.float64(540.598951093273)}\n", + "SM06: {0: np.float64(1050.9392842810691), 1: np.float64(684.2462386054283)}\n", + "E023: {0: np.float64(155.53950365783083), 1: np.float64(203.66391831195494)}\n", + "WDLH: {0: np.float64(60.341196868225445), 1: np.float64(83.25369029102553)}\n", + "WUSB: {0: np.float64(171.1219447128688), 1: np.float64(184.86069327131528)}SM09: {0: np.float64(1074.4637373796509), 1: np.float64(1687.3742375405873)}\n", + "\n", + "B148: {0: np.float64(92.31642133805578), 1: np.float64(201.46178920553015)}\n", + "HOPB: {0: np.float64(1208.379606148019), 1: np.float64(1063.8998006532292)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:30,349 - WARNING - Code 0: Amplitude of WUSB with seis type H >=5000000: 9241718.0\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "B189: {0: np.float64(34.4753817582577), 1: np.float64(65.43859702431322)}\n", + "EGC: {0: np.float64(678.1851369690842), 1: np.float64(324.87341734348854)}\n", + "FUSS: {0: np.float64(0.059236648426600175), 1: np.float64(242.5654210618556)}\n", + "B215: {0: np.float64(133.01212572325366), 1: np.float64(106.53948791727974)}\n", + "EOS3: {0: np.float64(90.92595807874146), 1: np.float64(279.8536114895114)}\n", + "SM02: {0: np.float64(417.23581129689506), 1: np.float64(512.2209515693133)}\n", + "B189: {0: np.float64(154.32185748258058), 1: np.float64(109.06580509420782)}\n", + "E077: {0: np.float64(189.47917302610745), 1: np.float64(226.2122604914514)}\n", + "EGFH: {0: np.float64(9.11180705436152), 1: np.float64(11.674217464775603)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:30,622 - INFO - code == 0 stations for event30: set()\n", + "2026-06-18 15:16:30,622 - INFO - horizontal elements not enough stations for event30: {}\n", + "2026-06-18 15:16:30,623 - INFO - Event: 31 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WPL: {0: np.float64(108.69106602142736), 1: np.float64(112.90397404308726)}YULB: {0: np.float64(116.71028194318863), 1: np.float64(133.7903223828239)}\n", + "\n", + "B148: {0: np.float64(269.2171620785681), 1: np.float64(409.1901662964466)}\n", + "EGC: {0: np.float64(1347.371843017134), 1: np.float64(1131.8534287318682)}\n", + "ESL: {0: np.float64(943.9346833269354), 1: np.float64(719.3609494139688)}\n", + "SM02: {0: np.float64(976.0129922387922), 1: np.float64(859.704766470163)}\n", + "EGFH: {0: np.float64(32.68879503909495), 1: np.float64(36.092616512381646)}\n", + "SM06: {0: np.float64(2677.3946549955513), 1: np.float64(1525.5969459112496)}\n", + "SSLB: {0: np.float64(159.53873524997638), 1: np.float64(137.80812506994414)}\n", + "NNSH: {0: np.float64(167.7095879759609), 1: np.float64(299.5314125077079)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:30,956 - INFO - code == 0 stations for event11: {'WUSB'}\n", + "2026-06-18 15:16:30,956 - INFO - horizontal elements not enough stations for event11: {}\n", + "2026-06-18 15:16:30,957 - INFO - Event: 12 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "F059: {0: np.float64(2530.3517641262347), 1: np.float64(4625.480973195414)}\n", + "WPL: {0: np.float64(17.761822294362442), 1: np.float64(25.07935427237404)}\n", + "E077: {0: np.float64(158.49649762416553), 1: np.float64(109.75294928052642)}\n", + "B148: {0: np.float64(37.662660099281375), 1: np.float64(34.33053760096454)}\n", + "B068: {0: np.float64(142.58177446740314), 1: np.float64(157.3180236568484)}\n", + "B090: {0: np.float64(203.7281562348918), 1: np.float64(227.12577446785718)}\n", + "FUSS: {0: np.float64(0.005686382366144147), 1: np.float64(18.5719510861836)}\n", + "SM39: {0: np.float64(3403.4665078793532), 1: np.float64(4290.199167571064)}\n", + "SML: {0: np.float64(62.233671463977146), 1: np.float64(59.35231469914353)}\n", + "YUS: {0: np.float64(404.8709066692412), 1: np.float64(572.8653241209082)}\n", + "ESL: {0: np.float64(113.22126693436824), 1: np.float64(161.0936320525264)}\n", + "ALS: {0: np.float64(240.18974389325777), 1: np.float64(296.3579067952634)}\n", + "CHK: {0: np.float64(265.22661074556436), 1: np.float64(466.3470940421092)}\n", + "SHUL: {0: np.float64(65.08273811463876), 1: np.float64(66.72519121071895)}\n", + "B071: {0: np.float64(23.715680866958415), 1: np.float64(17.937711607019192)}\n", + "SHUL: {0: np.float64(401.79230197951284), 1: np.float64(671.799056344701)}\n", + "F059: {0: np.float64(559.1111569850767), 1: np.float64(594.7880351149286)}\n", + "F002: {0: np.float64(557.4038762273285), 1: np.float64(581.2893758509779)}\n", + "B189: {0: np.float64(26.14888266950688), 1: np.float64(16.144095712700043)}\n", + "E077: {0: np.float64(47.59167021519604), 1: np.float64(54.348504625755126)}\n", + "EGFH: {0: np.float64(53.32936582813354), 1: np.float64(88.61544415744449)}\n", + "B078: {0: np.float64(157.47763249286774), 1: np.float64(147.78205926361932)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:31,733 - INFO - code == 0 stations for event31: set()\n", + "2026-06-18 15:16:31,734 - INFO - horizontal elements not enough stations for event31: {}\n", + "2026-06-18 15:16:31,735 - INFO - Event: 32 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "B138: {0: np.float64(40.804226613675546), 1: np.float64(33.458777801397375)}\n", + "WPL: {0: np.float64(10.674169004531084), 1: np.float64(25.083291022824987)}\n", + "B068: {0: np.float64(43.33734306108156), 1: np.float64(46.93507047486625)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:31,817 - WARNING - time data '2024-04-03T00:18:31' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:31,827 - WARNING - time data '2024-04-03T00:18:31' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:31,833 - WARNING - time data '2024-04-03T00:18:31' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:31,834 - WARNING - time data '2024-04-03T00:16:51' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:31,846 - WARNING - time data '2024-04-03T00:18:31' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:31,847 - WARNING - time data '2024-04-03T00:16:51' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SM39: {0: np.float64(179.25866560515703), 1: np.float64(177.69213703482276)}\n", + "EGC: {0: np.float64(185.93170334119), 1: np.float64(200.0878300088633)}\n", + "YUS: {0: np.float64(93.50532639034155), 1: np.float64(122.28821483656463)}\n", + "SM39: {0: np.float64(849.9872161720473), 1: np.float64(950.8962212076331)}\n", + "F002: {0: np.float64(27.416461136116503), 1: np.float64(32.4264852438241)}\n", + "YUS: {0: np.float64(63.19427768070864), 1: np.float64(74.40712487000633)}\n", + "SML: {0: np.float64(38.11152556856863), 1: np.float64(60.7330204099408)}\n", + "ALS: {0: np.float64(41.22084130115022), 1: np.float64(52.29671847298573)}\n", + "F059: {0: np.float64(108.58755891994731), 1: np.float64(95.94670967284392)}\n", + "SM02: {0: np.float64(337.18536770535013), 1: np.float64(267.6374708756425)}\n", + "B138: {0: np.float64(30.024458064188593), 1: np.float64(18.861266489200037)}WUSB: {0: np.float64(63.745922295475005), 1: np.float64(81.51115353780287)}\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:32,140 - INFO - code == 0 stations for event12: set()\n", + "2026-06-18 15:16:32,141 - INFO - horizontal elements not enough stations for event12: {}\n", + "2026-06-18 15:16:32,142 - INFO - Event: 13 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ALS: {0: np.float64(34.44926541097169), 1: np.float64(34.12018476673518)}\n", + "F002: {0: np.float64(15.821914625782176), 1: np.float64(19.828364247715015)}\n", + "ECB: {0: np.float64(46.35911807116255), 1: np.float64(34.806003311550434)}\n", + "B148: {0: np.float64(20.45580676277285), 1: np.float64(12.448145398043696)}\n", + "TDCB: {0: np.float64(4.8966155408654455), 1: np.float64(8.683539700596)}\n", + "SML: {0: np.float64(31.105828557694377), 1: np.float64(22.702800402129792)}\n", + "ESL: {0: np.float64(44.66236189448515), 1: np.float64(64.07657276629148)}\n", + "ESL: {0: np.float64(23.500594699698986), 1: np.float64(32.1498301292204)}\n", + "SM06: {0: np.float64(79.58820971487849), 1: np.float64(73.52488866010074)}\n", + "SM06: {0: np.float64(222.1232024214826), 1: np.float64(210.175300531208)}\n", + "SM09: {0: np.float64(60.464754107680776), 1: np.float64(100.66795873655653)}\n", + "WDLH: {0: np.float64(13.260923798026466), 1: np.float64(21.098978361611895)}\n", + "SHUL: {0: np.float64(18.08078962543672), 1: np.float64(16.13894562410838)}\n", + "WUSB: {0: np.float64(49.73811982024179), 1: np.float64(44.19347702479723)}\n", + "SSLB: {0: np.float64(8.472041103066996), 1: np.float64(6.489407537783428)}\n", + "B189: {0: np.float64(9.213941308971648), 1: np.float64(7.513843202692728)}\n", + "F059: {0: np.float64(55.17447080025079), 1: np.float64(60.857822628968734)}\n", + "B068: {0: np.float64(23.544324763806255), 1: np.float64(24.566569335464095)}\n", + "SM09: {0: np.float64(135.00953020454747), 1: np.float64(244.21931433782436)}\n", + "YULB: {0: np.float64(8.582325027762801), 1: np.float64(11.046277228376397)}\n", + "HOPB: {0: np.float64(12.100743800011118), 1: np.float64(14.817095453521311)}\n", + "EGC: {0: np.float64(105.00458446241963), 1: np.float64(93.73638856209857)}\n", + "EGC: {0: np.float64(31.56469915652235), 1: np.float64(48.1996978792606)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:32,906 - WARNING - time data '2024-04-03T00:19:15' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:32,916 - WARNING - time data '2024-04-03T00:19:15' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:32,922 - WARNING - time data '2024-04-03T00:19:15' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:32,923 - WARNING - time data '2024-04-03T00:17:35' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "B078: {0: np.float64(11.684336372709597), 1: np.float64(19.065701211198682)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:32,933 - WARNING - time data '2024-04-03T00:19:15' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:32,934 - WARNING - time data '2024-04-03T00:17:35' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:32,934 - INFO - code == 0 stations for event32: set()\n", + "2026-06-18 15:16:32,935 - INFO - horizontal elements not enough stations for event32: {}\n", + "2026-06-18 15:16:32,936 - INFO - Event: 33 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SM39: {0: np.float64(468.1175506229025), 1: np.float64(566.8364618867408)}\n", + "WPL: {0: np.float64(4.1279994693232105), 1: np.float64(4.763912229636415)}\n", + "YUS: {0: np.float64(11.379205720685087), 1: np.float64(15.104487290852994)}\n", + "SM39: {0: np.float64(141.87847558816185), 1: np.float64(163.6165761566778)}\n", + "GWUB: {0: np.float64(13.780679905551931), 1: np.float64(15.268247726076336)}\n", + "YUS: {0: np.float64(15.633140132338477), 1: np.float64(16.46012779020958)}\n", + "SM02: {0: np.float64(205.59733510439966), 1: np.float64(232.81241979372012)}\n", + "SHUL: {0: np.float64(21.476016613846436), 1: np.float64(17.315849376592777)}\n", + "HWA: {0: np.float64(79.06138095975558), 1: np.float64(100.87484207117153)}\n", + "F002: {0: np.float64(20.098960725547283), 1: np.float64(15.953373936058941)}\n", + "WUSB: {0: np.float64(28.440443122023954), 1: np.float64(26.538884821711044)}\n", + "SML: {0: np.float64(8.99948967010416), 1: np.float64(14.162114561050968)}" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:33,357 - INFO - code == 0 stations for event13: set()\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:33,358 - INFO - horizontal elements not enough stations for event13: {}\n", + "2026-06-18 15:16:33,359 - INFO - Event: 14 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WPL: {0: np.float64(4.717309009728118), 1: np.float64(6.569509052704641)}\n", + "F059: {0: np.float64(60.14589858279104), 1: np.float64(55.00854666116347)}\n", + "B148: {0: np.float64(9.073950704495575), 1: np.float64(9.629263454200819)}B045: {0: np.float64(8.033502163780023), 1: np.float64(5.205710512352372)}\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:33,489 - WARNING - time data '2024-04-03T00:20:32' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:33,491 - WARNING - time data '2024-04-03T00:20:52' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:33,499 - WARNING - time data '2024-04-03T00:20:32' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:33,500 - WARNING - time data '2024-04-03T00:20:52' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:33,507 - WARNING - time data '2024-04-03T00:20:32' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:33,508 - WARNING - time data '2024-04-03T00:20:52' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:33,508 - WARNING - time data '2024-04-03T00:18:52' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:33,509 - WARNING - time data '2024-04-03T00:22:32' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:33,520 - WARNING - time data '2024-04-03T00:20:32' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:33,521 - WARNING - time data '2024-04-03T00:20:52' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:33,521 - WARNING - time data '2024-04-03T00:18:52' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:33,522 - WARNING - time data '2024-04-03T00:22:32' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SML: {0: np.float64(8.249027090614506), 1: np.float64(12.430738750405698)}\n", + "SM06: {0: np.float64(35.065944858542544), 1: np.float64(46.94845560344518)}\n", + "HWA: {0: np.float64(11.913209573267741), 1: np.float64(16.118546399720007)}\n", + "B189: {0: np.float64(5.1105174421292725), 1: np.float64(4.752589152157839)}TDCB: {0: np.float64(3.0342786533108304), 1: np.float64(3.627158451751329)}\n", + "\n", + "ESL: {0: np.float64(15.41374111333814), 1: np.float64(17.17807570219185)}\n", + "E077: {0: np.float64(12.700842986018642), 1: np.float64(10.572075064026944)}\n", + "E023: {0: np.float64(17.540353094495853), 1: np.float64(11.058994446146173)}\n", + "SM06: {0: np.float64(68.6297122934571), 1: np.float64(60.89335677833261)}\n", + "HOPB: {0: np.float64(58.68284769642064), 1: np.float64(60.18979254833973)}\n", + "E023: {0: np.float64(16.113220817182135), 1: np.float64(12.446547444721036)}\n", + "SM09: {0: np.float64(94.54942453264616), 1: np.float64(163.8316888422447)}\n", + "SM09: {0: np.float64(52.42007574961006), 1: np.float64(100.46147543338152)}\n", + "YHNB: {0: np.float64(7.521650088395238), 1: np.float64(7.5830464803372815)}\n", + "B138: {0: np.float64(7.57699599109137), 1: np.float64(6.850369571429945)}\n", + "HOPB: {0: np.float64(40.14929731001256), 1: np.float64(88.03462331252419)}\n", + "YUS: {0: np.float64(13.124745014294565), 1: np.float64(11.194690891775394)}\n", + "E004: {0: np.float64(34.158911374810266), 1: np.float64(28.97558062213553)}\n", + "B078: {0: np.float64(4.453105029604626), 1: np.float64(4.327985181398892)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:34,141 - INFO - code == 0 stations for event14: set()\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WUSB: {0: np.float64(23.380606183317774), 1: np.float64(23.89217962038098)}" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:34,142 - INFO - horizontal elements not enough stations for event14: {}\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:34,143 - INFO - Event: 15 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "B148: {0: np.float64(23.605095079881316), 1: np.float64(20.217145930059925)}\n", + "E077: {0: np.float64(21.387598793964827), 1: np.float64(17.404392528998805)}\n", + "EGC: {0: np.float64(53.507177640673895), 1: np.float64(34.45797169976095)}\n", + "WFEN: {0: np.float64(17.651268100609155), 1: np.float64(11.219203049753)}\n", + "B215: {0: np.float64(14.684009056060505), 1: np.float64(7.238627315055271)}\n", + "SM06: {0: np.float64(358.04192928764115), 1: np.float64(183.76067089256694)}\n", + "SM02: {0: np.float64(56.55308316168295), 1: np.float64(119.16708759492273)}\n", + "B071: {0: np.float64(25.839513199435114), 1: np.float64(12.321831285016556)}\n", + "NNSH: {0: np.float64(7.529793090560886), 1: np.float64(6.80893461390898)}F059: {0: np.float64(262.7019996198157), 1: np.float64(164.85613879445125)}\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:34,461 - INFO - code == 0 stations for event33: set()\n", + "2026-06-18 15:16:34,462 - INFO - horizontal elements not enough stations for event33: {}\n", + "2026-06-18 15:16:34,463 - INFO - Event: 34 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SM09: {0: np.float64(150.51207137978923), 1: np.float64(237.9326617765582)}\n", + "WPL: {0: np.float64(4.171431542743721), 1: np.float64(6.872960806196688)}\n", + "B068: {0: np.float64(17.969834398782332), 1: np.float64(18.82127320598295)}\n", + "WCS: {0: np.float64(2.8354468003604207), 1: np.float64(1.5055752574964658)}\n", + "C024: {0: np.float64(14.148482652342944), 1: np.float64(16.20130421520243)}\n", + "B090: {0: np.float64(17.43748769383146), 1: np.float64(15.754305915052479)}\n", + "SM39: {0: np.float64(436.61697256319934), 1: np.float64(1045.1997908059286)}\n", + "SM39: {0: np.float64(299.22151669869123), 1: np.float64(354.46865366727366)}\n", + "ALS: {0: np.float64(18.67434902951407), 1: np.float64(11.273074660377757)}\n", + "YUS: {0: np.float64(47.347342694327175), 1: np.float64(65.39527508291681)}\n", + "SM02: {0: np.float64(185.55189723572454), 1: np.float64(174.77593939730167)}\n", + "SHUL: {0: np.float64(48.340199505430064), 1: np.float64(64.07078817029561)}\n", + "SML: {0: np.float64(19.070430449156685), 1: np.float64(18.548458121724995)}\n", + "HWA: {0: np.float64(47.816585501430495), 1: np.float64(46.43805092772273)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:34,986 - INFO - code == 0 stations for event15: set()\n", + "2026-06-18 15:16:34,986 - INFO - horizontal elements not enough stations for event15: {}\n", + "2026-06-18 15:16:34,987 - INFO - Event: 16 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "F059: {0: np.float64(296.5233020612531), 1: np.float64(381.84807366893733)}\n", + "WPL: {0: np.float64(25.22833331935439), 1: np.float64(31.453284629252135)}\n", + "CHKH: {0: np.float64(9.490903571909435), 1: np.float64(11.497995295124992)}\n", + "WCS: {0: np.float64(11.273472600818275), 1: np.float64(10.149466832384357)}\n", + "YHNB: {0: np.float64(136.15778794247603), 1: np.float64(164.69285010937168)}C024: {0: np.float64(16.43306144790735), 1: np.float64(10.97174579906385)}\n", + "\n", + "ALS: {0: np.float64(23.254098523308954), 1: np.float64(31.676021817749202)}\n", + "B090: {0: np.float64(52.64659289964585), 1: np.float64(50.06513585602892)}\n", + "ECB: {0: np.float64(35.32171028349231), 1: np.float64(41.069930122120816)}\n", + "SM39: {0: np.float64(632.2595440674963), 1: np.float64(1031.5204154901564)}\n", + "ESL: {0: np.float64(86.92210289346451), 1: np.float64(75.68416617712151)}\n", + "YUS: {0: np.float64(102.24787282650391), 1: np.float64(183.4735246922505)}\n", + "SM06: {0: np.float64(96.26516833159342), 1: np.float64(148.7315439071159)}\n", + "CHK: {0: np.float64(101.06791116732933), 1: np.float64(50.520323393516634)}\n", + "WUSB: {0: np.float64(26.014570509353867), 1: np.float64(27.686317955474788)}\n", + "B148: {0: np.float64(9.088624172933816), 1: np.float64(10.272478165252895)}\n", + "E077: {0: np.float64(12.42836883876117), 1: np.float64(19.151016750144766)}\n", + "SHUL: {0: np.float64(90.46706730467551), 1: np.float64(93.71741190137334)}\n", + "B068: {0: np.float64(9.044193078626702), 1: np.float64(8.140412450601351)}\n", + "SML: {0: np.float64(140.31701552748595), 1: np.float64(160.7393877864448)}\n", + "SM02: {0: np.float64(63.23902811883474), 1: np.float64(82.24154788690016)}\n", + "B071: {0: np.float64(44.252369391048795), 1: np.float64(44.35493196916471)}\n", + "F059: {0: np.float64(302.35854430550626), 1: np.float64(290.84407967160803)}\n", + "EGFH: {0: np.float64(5.407690663617321), 1: np.float64(8.026270342593426)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:35,807 - INFO - code == 0 stations for event34: set()\n", + "2026-06-18 15:16:35,807 - INFO - horizontal elements not enough stations for event34: {}\n", + "2026-06-18 15:16:35,808 - INFO - Event: 35 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WPL: {0: np.float64(18.651449291921317), 1: np.float64(33.945254898442315)}B138: {0: np.float64(86.03525570242334), 1: np.float64(77.38091704463797)}\n", + "\n", + "SM39: {0: np.float64(1898.1239580902702), 1: np.float64(2022.0419460171088)}\n", + "FUSB: {0: np.float64(27.58042047974168), 1: np.float64(26.813118793499424)}\n", + "YUS: {0: np.float64(25.465441797608065), 1: np.float64(38.210904527431396)}\n", + "C024: {0: np.float64(40.92927819527682), 1: np.float64(39.76155957049594)}\n", + "ALS: {0: np.float64(157.81047869743105), 1: np.float64(97.03013228780547)}\n", + "CHK: {0: np.float64(171.23863696807507), 1: np.float64(213.09137770336287)}\n", + "SHUL: {0: np.float64(81.12917300369558), 1: np.float64(103.85139505726994)}\n", + "HWA: {0: np.float64(77.97542018063868), 1: np.float64(74.3023642539105)}\n", + "F002: {0: np.float64(68.35055924512031), 1: np.float64(43.8931888289733)}\n", + "TPUB: {0: np.float64(26.0075255499336), 1: np.float64(17.747842869877406)}\n", + "SML: {0: np.float64(89.83295642984669), 1: np.float64(128.42770649759782)}\n", + "ECB: {0: np.float64(65.27470136216157), 1: np.float64(54.90278153424186)}\n", + "F059: {0: np.float64(182.52526886523867), 1: np.float64(155.95291843743328)}\n", + "TDCB: {0: np.float64(48.810351588711406), 1: np.float64(40.65745975281674)}\n", + "B138: {0: np.float64(428.8072880912068), 1: np.float64(286.1344021031379)}\n", + "LATB: {0: np.float64(128.36480128146854), 1: np.float64(132.79094482431853)}\n", + "ALS: {0: np.float64(386.0561492164971), 1: np.float64(396.9327038144889)}\n", + "ESL: {0: np.float64(115.28871363229989), 1: np.float64(114.52708562682939)}\n", + "B045: {0: np.float64(35.15086076837872), 1: np.float64(68.20342134920324)}\n", + "SM06: {0: np.float64(278.870937036407), 1: np.float64(311.5545381762442)}\n", + "TPUB: {0: np.float64(87.86080886530918), 1: np.float64(191.48879667991076)}\n", + "E004: {0: np.float64(94.45009782495994), 1: np.float64(155.98954723065904)}\n", + "ECB: {0: np.float64(55.98024277997232), 1: np.float64(25.18762672559769)}\n", + "SM09: {0: np.float64(386.750044860735), 1: np.float64(819.1938375361926)}\n", + "ESL: {0: np.float64(84.76644595712662), 1: np.float64(101.07992139583143)}\n", + "HOPB: {0: np.float64(352.74003728641634), 1: np.float64(385.2986723215964)}\n", + "E023: {0: np.float64(121.76401843050334), 1: np.float64(97.65417437182867)}\n", + "SM06: {0: np.float64(130.1642001257775), 1: np.float64(119.65384438954365)}\n", + "B078: {0: np.float64(52.2637616751762), 1: np.float64(28.877454445094397)}\n", + "SSLB: {0: np.float64(25.71239901644751), 1: np.float64(36.30963095027465)}\n", + "WUSB: {0: np.float64(95.74949883255428), 1: np.float64(137.18452047736875)}\n", + "SM09: {0: np.float64(1309.0481522545595), 1: np.float64(2169.4306120282963)}\n", + "B148: {0: np.float64(67.6767469976082), 1: np.float64(96.96924681147067)}\n", + "WUSB: {0: np.float64(70.07304114249605), 1: np.float64(74.24689502837494)}\n", + "NNSH: {0: np.float64(221.03454101450478), 1: np.float64(126.88770149584597)}\n", + "FUSS: {0: np.float64(0.019334560581991417), 1: np.float64(33.673093067823935)}\n", + "B148: {0: np.float64(45.79852859676309), 1: np.float64(47.10468793183191)}\n", + "B189: {0: np.float64(101.88342432495047), 1: np.float64(66.33214096544549)}\n", + "E077: {0: np.float64(509.72041628340156), 1: np.float64(399.7621375049204)}\n", + "E077: {0: np.float64(128.23867516718673), 1: np.float64(152.34449583623)}\n", + "B215: {0: np.float64(494.6904419646941), 1: np.float64(217.91777860023052)}\n", + "B068: {0: np.float64(84.37203010957052), 1: np.float64(85.02197458513649)}\n", + "SM02: {0: np.float64(501.26504171011265), 1: np.float64(519.3353754751474)}\n", + "EGC: {0: np.float64(281.70483057588467), 1: np.float64(236.4004464205618)}\n", + "B215: {0: np.float64(224.94738270525585), 1: np.float64(143.9423431797898)}\n", + "EGFH: {0: np.float64(12.220687346939306), 1: np.float64(10.308265013082094)}\n", + "SM02: {0: np.float64(193.61362301696835), 1: np.float64(327.63404432535344)}\n", + "B078: {0: np.float64(8.198693333914642), 1: np.float64(14.768838726658625)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:37,459 - INFO - code == 0 stations for event35: set()\n", + "2026-06-18 15:16:37,460 - INFO - horizontal elements not enough stations for event35: {}\n", + "2026-06-18 15:16:37,464 - INFO - Event: 36 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WPL: {0: np.float64(39.307931063119284), 1: np.float64(44.5415052997157)}\n", + "NNSH: {0: np.float64(92.67357344239133), 1: np.float64(108.07471011861752)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:37,525 - INFO - code == 0 stations for event16: set()\n", + "2026-06-18 15:16:37,526 - INFO - horizontal elements not enough stations for event16: {}\n", + "2026-06-18 15:16:37,527 - INFO - Event: 17 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "E037: {0: np.float64(132.05698857209543), 1: np.float64(136.20566069535283)}\n", + "WPL: {0: np.float64(15.087226159400336), 1: np.float64(26.86177014121785)}\n", + "B090: {0: np.float64(90.89782429171247), 1: np.float64(59.450862975617824)}\n", + "E037: {0: np.float64(48.69026510826891), 1: np.float64(78.05910500634089)}\n", + "SM39: {0: np.float64(4424.50927201376), 1: np.float64(4437.8997064385785)}\n", + "YHNB: {0: np.float64(19.201620273990045), 1: np.float64(23.036916207168154)}\n", + "YUS: {0: np.float64(75.7329602562282), 1: np.float64(106.13689036459942)}\n", + "SM39: {0: np.float64(456.9336090963389), 1: np.float64(392.4192551082962)}\n", + "SML: {0: np.float64(85.79249304627288), 1: np.float64(101.48710610340551)}\n", + "F059: {0: np.float64(128.1268521551737), 1: np.float64(132.29189976665657)}\n", + "B071: {0: np.float64(34.96816645086177), 1: np.float64(27.635022135822283)}\n", + "B138: {0: np.float64(18.640085932256387), 1: np.float64(16.52866779330009)}\n", + "F059: {0: np.float64(1019.2194646532289), 1: np.float64(899.0740098801207)}\n", + "NDS: {0: np.float64(34.00459836171127), 1: np.float64(39.31625222804489)}\n", + "ALS: {0: np.float64(65.42414505499038), 1: np.float64(49.965616381863335)}\n", + "B045: {0: np.float64(14.830979928526205), 1: np.float64(13.573058109379534)}\n", + "HWA: {0: np.float64(381.0861326582167), 1: np.float64(441.3693409855727)}\n", + "HWA: {0: np.float64(20.2764477214656), 1: np.float64(30.300323455307513)}\n", + "TDCB: {0: np.float64(30.08678752122059), 1: np.float64(37.151801709992284)}\n", + "TDCB: {0: np.float64(19.642607415174904), 1: np.float64(16.49947296343488)}ESL: {0: np.float64(228.07426592038328), 1: np.float64(233.43996025723595)}\n", + "\n", + "LATB: {0: np.float64(72.39628096616724), 1: np.float64(61.023203524177866)}\n", + "SM06: {0: np.float64(1345.9712443850506), 1: np.float64(775.15695927111)}\n", + "ESL: {0: np.float64(32.439562133969225), 1: np.float64(44.638851347806416)}\n", + "SSLB: {0: np.float64(20.84833832162112), 1: np.float64(17.86184174815945)}\n", + "SM06: {0: np.float64(147.30322979590676), 1: np.float64(113.9298835127615)}\n", + "SM09: {0: np.float64(617.9833666546136), 1: np.float64(1337.193352476544)}\n", + "SSLB: {0: np.float64(13.853920320421375), 1: np.float64(10.435689892105051)}\n", + "WUSB: {0: np.float64(105.62896411029395), 1: np.float64(202.02511478272106)}\n", + "B148: {0: np.float64(64.6507643400793), 1: np.float64(57.0529835451795)}\n", + "E023: {0: np.float64(59.2192397326533), 1: np.float64(55.42293421085358)}\n", + "E077: {0: np.float64(146.82935298737144), 1: np.float64(136.82212256417986)}\n", + "SM09: {0: np.float64(616.3361435808725), 1: np.float64(529.0173788740541)}\n", + "B215: {0: np.float64(84.10991866187582), 1: np.float64(50.52697740271438)}\n", + "HOPB: {0: np.float64(278.50188186316876), 1: np.float64(176.16111523939966)}\n", + "SM02: {0: np.float64(824.4832759705439), 1: np.float64(1255.1624875646207)}\n", + "E004: {0: np.float64(52.42228786655022), 1: np.float64(58.51511552347751)}\n", + "WUSB: {0: np.float64(95.47339783281535), 1: np.float64(77.29290278123436)}\n", + "EGFH: {0: np.float64(13.890387234344164), 1: np.float64(21.394535686421968)}\n", + "NNSH: {0: np.float64(56.47311070050294), 1: np.float64(36.22209662620061)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:38,926 - INFO - code == 0 stations for event36: set()\n", + "2026-06-18 15:16:38,927 - INFO - horizontal elements not enough stations for event36: {}\n", + "2026-06-18 15:16:38,928 - INFO - Event: 37 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "FUSS: {0: np.float64(0.005051637755469553), 1: np.float64(25.624387389754183)}\n", + "ESL: {0: np.float64(21.16654125248683), 1: np.float64(22.045866082650896)}\n", + "B189: {0: np.float64(18.074052799723486), 1: np.float64(8.836657896197496)}\n", + "E077: {0: np.float64(57.902018510346814), 1: np.float64(114.61773442858166)}\n", + "SM06: {0: np.float64(72.43794329808628), 1: np.float64(74.18941494227788)}\n", + "B068: {0: np.float64(14.629319112519616), 1: np.float64(15.531493440602924)}\n", + "SM09: {0: np.float64(61.56114061428664), 1: np.float64(82.20993326824052)}\n", + "B215: {0: np.float64(43.572934990074785), 1: np.float64(29.168099518319917)}\n", + "HOPB: {0: np.float64(645.6227617771331), 1: np.float64(453.35585780526833)}\n", + "GWUB: {0: np.float64(39.311618673254905), 1: np.float64(51.071568667840424)}\n", + "SM39: {0: np.float64(214.26035982255053), 1: np.float64(132.9934138150794)}\n", + "SM02: {0: np.float64(105.17792531173498), 1: np.float64(122.64229097327183)}\n", + "YUS: {0: np.float64(16.575052981363743), 1: np.float64(15.62754570335376)}\n", + "SM02: {0: np.float64(67.75036002759583), 1: np.float64(98.00728875239079)}\n", + "NNSH: {0: np.float64(31.56755611687418), 1: np.float64(28.94849589449405)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:39,362 - INFO - code == 0 stations for event17: set()\n", + "2026-06-18 15:16:39,362 - INFO - horizontal elements not enough stations for event17: {}\n", + "2026-06-18 15:16:39,367 - INFO - Event: 54 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ECB: {0: np.float64(18.765519754004767), 1: np.float64(13.951992380767765)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:39,413 - INFO - code == 0 stations for event37: set()\n", + "2026-06-18 15:16:39,413 - INFO - horizontal elements not enough stations for event37: {}\n", + "2026-06-18 15:16:39,414 - INFO - Event: 38 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WPL: {0: np.float64(22.40304172592909), 1: np.float64(56.67825297982631)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:39,437 - WARNING - time data '2024-04-03T00:39:53' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:39,445 - WARNING - time data '2024-04-03T00:39:53' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:39,452 - WARNING - time data '2024-04-03T00:39:53' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:39,453 - WARNING - time data '2024-04-03T00:38:13' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:39,463 - WARNING - time data '2024-04-03T00:39:53' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:39,464 - WARNING - time data '2024-04-03T00:38:13' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WPL: {0: np.float64(30.14932576656276), 1: np.float64(43.48417689836908)}\n", + "WFEN: {0: np.float64(25.135864487200653), 1: np.float64(48.95030129668022)}\n", + "TDCB: {0: np.float64(22.925765300650344), 1: np.float64(22.384457153765588)}\n", + "WCS: {0: np.float64(9.735078386591118), 1: np.float64(6.3234106894649385)}\n", + "LATB: {0: np.float64(143.25584394778002), 1: np.float64(96.78699459302604)}\n", + "EYUL: {0: np.float64(11.26678928915798), 1: np.float64(12.284146157716187)}\n", + "SM06: {0: np.float64(253.50849128069208), 1: np.float64(364.283315524394)}\n", + "G041: {0: np.float64(40.027926225531175), 1: np.float64(78.71874262765158)}\n", + "E037: {0: np.float64(230.96626333495752), 1: np.float64(204.77570367292498)}\n", + "F059: {0: np.float64(191.60976153579415), 1: np.float64(181.15786616177553)}\n", + "WJS: {0: np.float64(13.076095992795496), 1: np.float64(9.54623949465442)}\n", + "E077: {0: np.float64(156.54746665116124), 1: np.float64(122.65457308814229)}\n", + "YHNB: {0: np.float64(16.945211011132482), 1: np.float64(16.95510947848749)}\n", + "E023: {0: np.float64(120.91241989055749), 1: np.float64(84.82666469637411)}\n", + "B090: {0: np.float64(73.5767513626099), 1: np.float64(51.46789010492744)}\n", + "SM09: {0: np.float64(242.2527332411733), 1: np.float64(358.81810618068175)}\n", + "SM39: {0: np.float64(974.7831681890095), 1: np.float64(1680.3997400618728)}\n", + "HOPB: {0: np.float64(645.5970881907373), 1: np.float64(453.1923656845967)}\n", + "YUS: {0: np.float64(301.1466353432333), 1: np.float64(256.62187601949097)}\n", + "YHNB: {0: np.float64(44.68402744121181), 1: np.float64(43.47120154476216)}\n", + "CHK: {0: np.float64(118.07989802538869), 1: np.float64(73.34278614799516)}\n", + "NDS: {0: np.float64(37.37234176352973), 1: np.float64(38.22562125893798)}\n", + "F002: {0: np.float64(28.232346373072982), 1: np.float64(42.71030238972079)}\n", + "WUSB: {0: np.float64(114.59927396788702), 1: np.float64(148.1155570262106)}\n", + "SHUL: {0: np.float64(252.231769199029), 1: np.float64(194.98539816967573)}\n", + "F002: {0: np.float64(142.93621490303886), 1: np.float64(233.973709688838)}NNSH: {0: np.float64(27.3150887793548), 1: np.float64(24.0367331900678)}\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:40,378 - INFO - code == 0 stations for event38: set()\n", + "2026-06-18 15:16:40,379 - INFO - horizontal elements not enough stations for event38: {}\n", + "2026-06-18 15:16:40,380 - INFO - Event: 39 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WHP: {0: np.float64(20.635107966358945), 1: np.float64(19.977842635980796)}WPL: {0: np.float64(10.103604941131843), 1: np.float64(17.12124236075245)}\n", + "\n", + "B148: {0: np.float64(29.14138100453444), 1: np.float64(24.928559092392963)}\n", + "SML: {0: np.float64(82.51395799667769), 1: np.float64(176.11851089418934)}\n", + "TDCB: {0: np.float64(12.594437650105153), 1: np.float64(15.336395347672521)}\n", + "B071: {0: np.float64(26.925688552558988), 1: np.float64(26.2450221873353)}\n", + "SML: {0: np.float64(41.0932707757203), 1: np.float64(75.44739799875217)}\n", + "F059: {0: np.float64(553.1484232288244), 1: np.float64(808.8521296223873)}\n", + "ESL: {0: np.float64(18.665334762756366), 1: np.float64(26.324450061883084)}\n", + "ELD: {0: np.float64(22.010984012546384), 1: np.float64(14.11344722480092)}\n", + "B071: {0: np.float64(14.253387524940372), 1: np.float64(13.70593532886956)}\n", + "CHKH: {0: np.float64(26.113297486281176), 1: np.float64(32.4043024068612)}\n", + "E037: {0: np.float64(34.19267059683857), 1: np.float64(26.852673621966474)}\n", + "B138: {0: np.float64(51.291727001015204), 1: np.float64(76.23771392810312)}\n", + "E077: {0: np.float64(20.360373455491075), 1: np.float64(24.183971224810417)}\n", + "YHNB: {0: np.float64(26.14874098801192), 1: np.float64(26.61794444672199)}\n", + "NDS: {0: np.float64(9.575402132633528), 1: np.float64(13.180824352146232)}\n", + "B068: {0: np.float64(19.508895948427845), 1: np.float64(30.362257908288306)}\n", + "C024: {0: np.float64(55.85670656149331), 1: np.float64(44.900779512144034)}\n", + "C024: {0: np.float64(31.426049190051174), 1: np.float64(25.543418276635855)}\n", + "ALS: {0: np.float64(88.68436835853775), 1: np.float64(69.11256125217972)}\n", + "B215: {0: np.float64(35.78662152544226), 1: np.float64(23.51098809900652)}\n", + "B045: {0: np.float64(35.44338428478157), 1: np.float64(31.39311824438936)}\n", + "YUS: {0: np.float64(51.20871355799821), 1: np.float64(60.38992199120074)}\n", + "TPUB: {0: np.float64(22.321278165021017), 1: np.float64(26.48853557569984)}\n", + "ECB: {0: np.float64(21.54446198172192), 1: np.float64(12.907349332459699)}\n", + "WUSB: {0: np.float64(40.84271814629037), 1: np.float64(36.72023983352464)}\n", + "ECB: {0: np.float64(116.75032810380691), 1: np.float64(82.12256553297469)}\n", + "EDH: {0: np.float64(10.763865404776551), 1: np.float64(10.08399071191832)}\n", + "NNSH: {0: np.float64(9.136697179063189), 1: np.float64(13.772570576996909)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:41,294 - INFO - code == 0 stations for event39: set()\n", + "2026-06-18 15:16:41,295 - INFO - horizontal elements not enough stations for event39: {}\n", + "2026-06-18 15:16:41,296 - INFO - Event: 40 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "TDCB: {0: np.float64(19.847477818401504), 1: np.float64(16.21510538869678)}\n", + "WPL: {0: np.float64(12.442675447617182), 1: np.float64(14.70576130641261)}\n", + "LATB: {0: np.float64(48.45134761686643), 1: np.float64(33.758975075196744)}\n", + "B090: {0: np.float64(64.30337100634821), 1: np.float64(40.2136257328254)}\n", + "ESL: {0: np.float64(171.04821778580924), 1: np.float64(323.77812828776126)}\n", + "SM39: {0: np.float64(1027.053031749028), 1: np.float64(898.7792242596901)}\n", + "YUS: {0: np.float64(95.37369943659345), 1: np.float64(209.38726651227796)}\n", + "SM06: {0: np.float64(273.3467173576684), 1: np.float64(331.41039540224585)}\n", + "SSLB: {0: np.float64(20.025631263149656), 1: np.float64(34.540003009146346)}\n", + "SHUL: {0: np.float64(117.01535058761051), 1: np.float64(102.56785554089099)}\n", + "WDLH: {0: np.float64(33.758571994305264), 1: np.float64(23.579882968617277)}\n", + "SML: {0: np.float64(80.47196491791388), 1: np.float64(136.55923363716317)}\n", + "B078: {0: np.float64(40.18369236655117), 1: np.float64(46.335510743238714)}\n", + "B071: {0: np.float64(28.07922016506562), 1: np.float64(18.804046979078823)}\n", + "WUSB: {0: np.float64(126.87291249904187), 1: np.float64(163.2859536660483)}\n", + "F059: {0: np.float64(420.48691048258803), 1: np.float64(462.45164505046426)}\n", + "NFF: {0: np.float64(14.076823552763395), 1: np.float64(12.832072533845139)}\n", + "C024: {0: np.float64(48.211830753591585), 1: np.float64(59.74438514003906)}\n", + "B148: {0: np.float64(50.42585151002503), 1: np.float64(67.73857129070423)}\n", + "SYNB: {0: np.float64(62.667170430279334), 1: np.float64(50.05016710786229)}\n", + "EHYH: {0: np.float64(26.51778059924057), 1: np.float64(28.746366713998892)}\n", + "HWA: {0: np.float64(161.18751832885226), 1: np.float64(130.48374206999083)}\n", + "ECB: {0: np.float64(59.390636758384076), 1: np.float64(72.13859850170357)}\n", + "FUSS: {0: np.float64(0.006835463742563355), 1: np.float64(22.99854434641895)}\n", + "TDCB: {0: np.float64(17.784430433885678), 1: np.float64(18.997770880014727)}\n", + "EOS3: {0: np.float64(17.99704697015021), 1: np.float64(45.41349158918382)}\n", + "ESL: {0: np.float64(116.29979288643736), 1: np.float64(131.83838316534693)}\n", + "B189: {0: np.float64(17.59016188849875), 1: np.float64(17.657687725965808)}\n", + "SM06: {0: np.float64(657.3329133073962), 1: np.float64(421.6328729181553)}\n", + "B068: {0: np.float64(59.162584868914244), 1: np.float64(31.611702973710084)}\n", + "SSLB: {0: np.float64(49.46079103596837), 1: np.float64(37.35095621690722)}\n", + "HGSD: {0: np.float64(447.50168601770724), 1: np.float64(551.0512601236093)}\n", + "SM09: {0: np.float64(569.1488812851472), 1: np.float64(476.3186459147898)}\n", + "YULB: {0: np.float64(35.28185715693852), 1: np.float64(50.85568234040338)}\n", + "HOPB: {0: np.float64(124.38244963449681), 1: np.float64(95.82919616444129)}\n", + "EGC: {0: np.float64(799.5862013509212), 1: np.float64(632.7455959851151)}\n", + "B078: {0: np.float64(36.23502643982085), 1: np.float64(24.542809020319375)}\n", + "GWUB: {0: np.float64(35.921480716804666), 1: np.float64(61.410746022026885)}\n", + "WUSB: {0: np.float64(93.01959504598679), 1: np.float64(109.73719311296044)}\n", + "SM02: {0: np.float64(235.8750961636416), 1: np.float64(480.18365865995975)}\n", + "B148: {0: np.float64(33.58818592075613), 1: np.float64(49.55618420230123)}\n", + "EGFH: {0: np.float64(13.819539151412428), 1: np.float64(26.427716374245957)}\n", + "FUSS: {0: np.float64(0.00659397540623323), 1: np.float64(23.33426965424163)}\n", + "NNSH: {0: np.float64(10.787311573698586), 1: np.float64(10.53773162255507)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:42,805 - INFO - code == 0 stations for event54: set()\n", + "2026-06-18 15:16:42,806 - INFO - horizontal elements not enough stations for event54: {}\n", + "2026-06-18 15:16:42,807 - INFO - Event: 55 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "B189: {0: np.float64(12.843978500989165), 1: np.float64(9.312975081436507)}\n", + "E077: {0: np.float64(19.637118107314855), 1: np.float64(26.609681864909316)}\n", + "E077: {0: np.float64(98.6999041890181), 1: np.float64(70.92257252861617)}\n", + "E023: {0: np.float64(24.48154885369901), 1: np.float64(20.139249791146618)}\n", + "B068: {0: np.float64(19.11394514673347), 1: np.float64(20.979317259217524)}\n", + "SM09: {0: np.float64(58.94213592146016), 1: np.float64(88.31427293144759)}\n", + "EGC: {0: np.float64(182.0112047727154), 1: np.float64(199.90781656899188)}\n", + "HOPB: {0: np.float64(129.77326736307919), 1: np.float64(277.34180038810547)}\n", + "SM02: {0: np.float64(355.5137003509062), 1: np.float64(340.79781573638206)}\n", + "YHNB: {0: np.float64(10.949853209585992), 1: np.float64(10.86356758417289)}\n", + "EGFH: {0: np.float64(10.408348089989662), 1: np.float64(12.456422611489376)}\n", + "NDS: {0: np.float64(8.450273986437589), 1: np.float64(8.61198709251583)}\n", + "NNSH: {0: np.float64(36.761967268184705), 1: np.float64(26.672804312911925)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:43,235 - INFO - code == 0 stations for event40: set()\n", + "2026-06-18 15:16:43,235 - INFO - horizontal elements not enough stations for event40: {}\n", + "2026-06-18 15:16:43,236 - INFO - Event: 41 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SM39: {0: np.float64(97.9741292209184), 1: np.float64(104.77372250390542)}\n", + "ESL: {0: np.float64(5.551048751448379), 1: np.float64(6.172677495921812)}\n", + "NNSH: {0: np.float64(6.97969467241569), 1: np.float64(8.417665748491045)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:43,338 - INFO - code == 0 stations for event55: set()\n", + "2026-06-18 15:16:43,338 - INFO - horizontal elements not enough stations for event55: {}\n", + "2026-06-18 15:16:43,340 - INFO - Event: 56 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SM06: {0: np.float64(39.73588262315257), 1: np.float64(28.60899029570129)}\n", + "WPL: {0: np.float64(1.4628339589789938), 1: np.float64(2.3976910655991843)}\n", + "F059: {0: np.float64(23.74538222187572), 1: np.float64(42.07435442562718)}\n", + "B148: {0: np.float64(3.0783876282604754), 1: np.float64(4.012379793781264)}\n", + "SM09: {0: np.float64(22.365767018215454), 1: np.float64(35.44925173567831)}\n", + "TDCB: {0: np.float64(1.3001373351661738), 1: np.float64(1.0391971821008525)}\n", + "SM39: {0: np.float64(72.81078136853591), 1: np.float64(56.313761898442166)}\n", + "SML: {0: np.float64(4.410187251736609), 1: np.float64(6.47321814251119)}\n", + "SM02: {0: np.float64(21.46337963631863), 1: np.float64(25.58615818612773)}\n", + "ESL: {0: np.float64(11.758379910943136), 1: np.float64(20.32578244914986)}\n", + "SM06: {0: np.float64(16.037079436720514), 1: np.float64(18.547009045351423)}\n", + "F059: {0: np.float64(60.835985055084215), 1: np.float64(42.65270537510493)}\n", + "HWA: {0: np.float64(7.73546123575991), 1: np.float64(11.137377900784386)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:43,795 - INFO - code == 0 stations for event41: set()\n", + "2026-06-18 15:16:43,796 - INFO - horizontal elements not enough stations for event41: {}\n", + "2026-06-18 15:16:43,797 - INFO - Event: 42 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SM02: {0: np.float64(15.69219834608582), 1: np.float64(20.168699459232236)}\n", + "WPL: {0: np.float64(1.9162800852131785), 1: np.float64(2.7782877425678882)}\n", + "SM09: {0: np.float64(30.49432476656943), 1: np.float64(27.17345216593595)}\n", + "B148: {0: np.float64(4.507672279123809), 1: np.float64(5.161614401623646)}\n", + "B090: {0: np.float64(3.72096677523488), 1: np.float64(3.1195113350732373)}\n", + "TDCB: {0: np.float64(2.311950173910585), 1: np.float64(3.297226610380182)}\n", + "YULB: {0: np.float64(3.7019337913243757), 1: np.float64(2.5677779227992317)}\n", + "ESL: {0: np.float64(11.252145161482565), 1: np.float64(13.99732886266426)}\n", + "C024: {0: np.float64(4.413754430546049), 1: np.float64(4.078042756276642)}\n", + "SM06: {0: np.float64(38.347237580045494), 1: np.float64(45.41529101677842)}\n", + "ALS: {0: np.float64(5.333313687530897), 1: np.float64(7.462360982278914)}\n", + "E023: {0: np.float64(7.6498698742332625), 1: np.float64(5.988786514887206)}\n", + "SM09: {0: np.float64(91.40265705905666), 1: np.float64(145.88517484843976)}\n", + "SHUL: {0: np.float64(11.814147606266458), 1: np.float64(9.87725661184673)}\n", + "HOPB: {0: np.float64(18.04814351235904), 1: np.float64(17.006492459499224)}\n", + "F002: {0: np.float64(12.60619738550526), 1: np.float64(13.418356748626755)}\n", + "YHNB: {0: np.float64(7.6547381850992124), 1: np.float64(5.838569641189297)}\n", + "WUSB: {0: np.float64(5.550926874768532), 1: np.float64(5.712678502557474)}\n", + "SM39: {0: np.float64(148.88222415039556), 1: np.float64(131.9499377201022)}\n", + "B215: {0: np.float64(14.025274213922495), 1: np.float64(8.185245447695857)}\n", + "EGFH: {0: np.float64(1.2254274486638794), 1: np.float64(1.5607289938742712)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:44,459 - INFO - code == 0 stations for event56: set()\n", + "2026-06-18 15:16:44,460 - INFO - horizontal elements not enough stations for event56: {}\n", + "2026-06-18 15:16:44,461 - INFO - Event: 57 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SM02: {0: np.float64(53.8477245482751), 1: np.float64(35.49025359405755)}\n", + "WPL: {0: np.float64(1.765199404469269), 1: np.float64(3.232831192807883)}\n", + "YHNB: {0: np.float64(3.17399411319615), 1: np.float64(4.595067912666628)}\n", + "SM39: {0: np.float64(48.446769125461586), 1: np.float64(40.3473946724037)}\n", + "HWA: {0: np.float64(12.219610159389047), 1: np.float64(15.823418483714237)}\n", + "WUSB: {0: np.float64(9.006049560075752), 1: np.float64(11.5518147109623)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:44,727 - INFO - code == 0 stations for event42: set()\n", + "2026-06-18 15:16:44,728 - INFO - horizontal elements not enough stations for event42: {}\n", + "2026-06-18 15:16:44,729 - INFO - Event: 43 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SHUL: {0: np.float64(11.307756115212001), 1: np.float64(11.964761494093816)}\n", + "WPL: {0: np.float64(10.55466034936947), 1: np.float64(9.95448542831295)}\n", + "SML: {0: np.float64(11.349620590873085), 1: np.float64(16.160557463457202)}\n", + "B148: {0: np.float64(11.551558258368155), 1: np.float64(10.409052465715748)}\n", + "F059: {0: np.float64(31.300863774037875), 1: np.float64(61.40796290066064)}\n", + "TDCB: {0: np.float64(6.691049354520281), 1: np.float64(7.053000817115243)}\n", + "SM06: {0: np.float64(350.8515607135407), 1: np.float64(185.56748104268485)}\n", + "NDS: {0: np.float64(2.493517110117951), 1: np.float64(5.29741411875017)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:45,077 - WARNING - Code 0: Amplitude of SHUL with seis type H >=5000000: 6676461.0\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "EOS3: {0: np.float64(22.23158883342694), 1: np.float64(80.49750676198198)}\n", + "HWA: {0: np.float64(14.217133265248307), 1: np.float64(16.075005557874732)}\n", + "SM09: {0: np.float64(62.96445535346327), 1: np.float64(102.5672894674594)}\n", + "ESL: {0: np.float64(11.76030240341906), 1: np.float64(26.084167426201216)}\n", + "HOPB: {0: np.float64(61.186434950085854), 1: np.float64(106.97067993142055)}\n", + "C024: {0: np.float64(9.227362523334417), 1: np.float64(12.964940895817719)}\n", + "SM06: {0: np.float64(157.15423249973443), 1: np.float64(73.26798472138633)}\n", + "SM39: {0: np.float64(117.29497366231347), 1: np.float64(101.81743226457198)}\n", + "E004: {0: np.float64(26.7788730089115), 1: np.float64(24.44897203199891)}\n", + "SM02: {0: np.float64(99.32915881766331), 1: np.float64(84.79235579410894)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:45,413 - INFO - code == 0 stations for event43: {'SHUL'}\n", + "2026-06-18 15:16:45,414 - INFO - horizontal elements not enough stations for event43: {}\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SM09: {0: np.float64(25.74951350260274), 1: np.float64(50.314001826121576)}" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:45,415 - INFO - Event: 44 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "WUSB: {0: np.float64(14.680271357145118), 1: np.float64(12.68830438141412)}WPL: {0: np.float64(546.9408455744132), 1: np.float64(423.11720457954846)}\n", + "\n", + "E077: {0: np.float64(25.42738363079353), 1: np.float64(28.08902077838737)}\n", + "WCS: {0: np.float64(104.48154860783379), 1: np.float64(67.6395993439809)}\n", + "EGC: {0: np.float64(23.62033803858646), 1: np.float64(27.451067543627065)}\n", + "YHNB: {0: np.float64(152.0372059999901), 1: np.float64(144.0101634202094)}\n", + "B215: {0: np.float64(9.025731930099752), 1: np.float64(7.093390362007371)}\n", + "SM39: {0: np.float64(10086.760607806997), 1: np.float64(5381.189674307771)}\n", + "SM02: {0: np.float64(29.784611101433814), 1: np.float64(32.16101798989897)}\n", + "EGFH: {0: np.float64(0.6780916863182926), 1: np.float64(0.859053187163164)}\n", + "SHUL: {0: np.float64(893.1253664134239), 1: np.float64(1272.8853179456114)}\n", + "F002: {0: np.float64(1037.8047445306138), 1: np.float64(1208.2913655342893)}\n", + "NNSH: {0: np.float64(12.860992323004885), 1: np.float64(10.370626369222196)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:45,873 - INFO - code == 0 stations for event57: set()\n", + "2026-06-18 15:16:45,873 - INFO - horizontal elements not enough stations for event57: {}\n", + "2026-06-18 15:16:45,874 - INFO - Event: 58 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SML: {0: np.float64(1542.3245903346588), 1: np.float64(744.8186441614704)}\n", + "WPL: {0: np.float64(1.0497325795288774), 1: np.float64(1.0985150622022906)}\n", + "B071: {0: np.float64(222.5259039113881), 1: np.float64(224.62029083344714)}\n", + "F059: {0: np.float64(7486.067386075069), 1: np.float64(10150.318374909548)}\n", + "FUSS: {0: np.float64(0.003735823115554462), 1: np.float64(1.0125810688928567)}\n", + "B138: {0: np.float64(340.13633026644555), 1: np.float64(200.81798628517976)}\n", + "LATB: {0: np.float64(2.963202124117519), 1: np.float64(3.8752600170568328)}\n", + "ALS: {0: np.float64(249.52001767958367), 1: np.float64(184.35514251697833)}\n", + "SML: {0: np.float64(7.03569925770998), 1: np.float64(5.773233310615974)}\n", + "SM06: {0: np.float64(23.95651354665476), 1: np.float64(16.51104838104339)}\n", + "EOS3: {0: np.float64(2.2656638565478424), 1: np.float64(7.203658162650325)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:46,301 - WARNING - Code 0: Amplitude of HWA with seis type H >=5000000: 6723868.0\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "TDCB: {0: np.float64(90.03487788138922), 1: np.float64(105.14869796642101)}\n", + "E077: {0: np.float64(3.2854080681280227), 1: np.float64(3.578635173001563)}\n", + "ESL: {0: np.float64(1482.492277277574), 1: np.float64(1547.1848957105858)}\n", + "SM09: {0: np.float64(18.37916024138623), 1: np.float64(31.490604249705996)}\n", + "YHNB: {0: np.float64(2.5331289726637385), 1: np.float64(2.774584866981996)}\n", + "SM06: {0: np.float64(9366.711991473103), 1: np.float64(4312.17909616857)}\n", + "C024: {0: np.float64(2.441788658542666), 1: np.float64(3.482976419408932)}\n", + "SSLB: {0: np.float64(261.45677284706073), 1: np.float64(116.71235228303055)}\n", + "SM39: {0: np.float64(47.76497841066867), 1: np.float64(53.16823282178052)}\n", + "SM09: {0: np.float64(1309.6000225070145), 1: np.float64(2217.9264852951937)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:46,635 - WARNING - Code 0: Amplitude of WUSB with seis type H >=5000000: 16097058.0\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ALS: {0: np.float64(2.804594538799397), 1: np.float64(2.428643413596618)}\n", + "B148: {0: np.float64(733.8209476249938), 1: np.float64(393.22020981114395)}\n", + "GWUB: {0: np.float64(1.9527408045904227), 1: np.float64(2.42254988031706)}\n", + "SM02: {0: np.float64(19.273100896442692), 1: np.float64(18.1206850153313)}\n", + "FUSS: {0: np.float64(0.02107208645422183), 1: np.float64(103.82758441433488)}\n", + "B045: {0: np.float64(1.7083654294972164), 1: np.float64(1.9320737748562793)}\n", + "EHYH: {0: np.float64(224.72988607907493), 1: np.float64(118.2501660058012)}\n", + "B189: {0: np.float64(77.748195795464), 1: np.float64(82.04882233853304)}\n", + "HWA: {0: np.float64(6.345529971879938), 1: np.float64(4.809865099151415)}\n", + "E077: {0: np.float64(189.88723904409918), 1: np.float64(353.67297778288656)}\n", + "EGC: {0: np.float64(2410.056455548563), 1: np.float64(2751.3470338484985)}\n", + "NNSH: {0: np.float64(1.5862589890942613), 1: np.float64(3.221466323816519)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:47,094 - INFO - code == 0 stations for event58: set()\n", + "2026-06-18 15:16:47,094 - INFO - horizontal elements not enough stations for event58: {}\n", + "2026-06-18 15:16:47,095 - INFO - Event: 59 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "B215: {0: np.float64(262.2938274275189), 1: np.float64(194.16569110610516)}\n", + "WPL: {0: np.float64(5.538076257268767), 1: np.float64(4.442126107160854)}\n", + "GWUB: {0: np.float64(222.9925883250699), 1: np.float64(206.3972260102439)}\n", + "YHNB: {0: np.float64(5.109661692908982), 1: np.float64(5.567377707420113)}\n", + "SM02: {0: np.float64(1437.1285327028304), 1: np.float64(2959.8872463543153)}\n", + "B090: {0: np.float64(8.73877027285458), 1: np.float64(5.098176073357807)}\n", + "EGFH: {0: np.float64(70.2556973903662), 1: np.float64(83.25656540465474)}\n", + "SM39: {0: np.float64(83.03357386057607), 1: np.float64(72.80491297536553)}\n", + "F059: {0: np.float64(41.620774881432965), 1: np.float64(46.06093323330602)}\n", + "NNSH: {0: np.float64(67.08797758741527), 1: np.float64(62.696518064451105)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:47,395 - INFO - code == 0 stations for event44: {'HWA', 'WUSB'}\n", + "2026-06-18 15:16:47,395 - INFO - horizontal elements not enough stations for event44: {}\n", + "2026-06-18 15:16:47,396 - INFO - Event: 45 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "TDCB: {0: np.float64(9.539918893366806), 1: np.float64(13.645710057171078)}\n", + "NDS: {0: np.float64(3.697242989738981), 1: np.float64(3.1733316422893423)}\n", + "ESL: {0: np.float64(40.57005365905962), 1: np.float64(45.2284442476933)}\n", + "C024: {0: np.float64(5.6891819578710185), 1: np.float64(4.619559282900189)}\n", + "SM06: {0: np.float64(211.25662008653586), 1: np.float64(239.0534917489553)}\n", + "F059: {0: np.float64(166.1209720924457), 1: np.float64(137.50341107676925)}\n", + "HOPB: {0: np.float64(30.16005911346575), 1: np.float64(20.820221109550946)}HWA: {0: np.float64(13.133329809496605), 1: np.float64(16.366051204057108)}\n", + "\n", + "TPUB: {0: np.float64(1.5048577239173728), 1: np.float64(1.563307277923084)}\n", + "B215: {0: np.float64(48.479397626451366), 1: np.float64(29.129502555772874)}\n", + "SM02: {0: np.float64(166.26240566930053), 1: np.float64(194.82907784210616)}\n", + "TDCB: {0: np.float64(2.8900694966327434), 1: np.float64(3.6391628206263134)}\n", + "WUSB: {0: np.float64(54.25808783448395), 1: np.float64(62.17868670746809)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:47,863 - INFO - code == 0 stations for event45: set()\n", + "2026-06-18 15:16:47,864 - INFO - horizontal elements not enough stations for event45: {}\n", + "2026-06-18 15:16:47,865 - INFO - Event: 46 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "LATB: {0: np.float64(11.029017022278563), 1: np.float64(19.1591200399935)}\n", + "F002: {0: np.float64(14.582471147023876), 1: np.float64(13.112562054804224)}\n", + "ESL: {0: np.float64(15.447650485951929), 1: np.float64(15.402197327163229)}\n", + "WPL: {0: np.float64(4.96735325825734), 1: np.float64(6.513011885545733)}\n", + "SM06: {0: np.float64(55.361430310014434), 1: np.float64(68.48156896294734)}\n", + "TDCB: {0: np.float64(3.1847566314603184), 1: np.float64(3.0360643987937386)}\n", + "SSLB: {0: np.float64(2.648035359921593), 1: np.float64(2.2900302720132246)}\n", + "SM06: {0: np.float64(39.90585454681081), 1: np.float64(59.977972699659006)}\n", + "E023: {0: np.float64(14.65057841912171), 1: np.float64(11.52148310617873)}\n", + "SM09: {0: np.float64(42.64110061976452), 1: np.float64(53.30806645996236)}\n", + "SM09: {0: np.float64(55.9791311607354), 1: np.float64(114.9907307691666)}\n", + "YHNB: {0: np.float64(6.154488471689985), 1: np.float64(4.484631838791801)}\n", + "HOPB: {0: np.float64(33.43121995308791), 1: np.float64(44.84916028698152)}\n", + "C024: {0: np.float64(9.718984186915998), 1: np.float64(10.474210155920083)}\n", + "WUSB: {0: np.float64(13.800084747843687), 1: np.float64(23.940692901832072)}\n", + "EGC: {0: np.float64(26.272235996318532), 1: np.float64(20.94815918395122)}\n", + "B148: {0: np.float64(5.000402941444458), 1: np.float64(4.987871191000849)}\n", + "SM39: {0: np.float64(108.16653870122687), 1: np.float64(78.52479795069472)}\n", + "E077: {0: np.float64(9.93511533624833), 1: np.float64(12.688878673170697)}\n", + "B215: {0: np.float64(15.886248105414724), 1: np.float64(9.999934104262028)}\n", + "GWUB: {0: np.float64(8.016725432790096), 1: np.float64(9.204552470828338)}\n", + "SM02: {0: np.float64(31.91941111683938), 1: np.float64(30.105510539579196)}\n", + "HWA: {0: np.float64(22.10441098902089), 1: np.float64(14.904397421173407)}\n", + "ECB: {0: np.float64(23.65184079901709), 1: np.float64(14.609159000707152)}\n", + "NNSH: {0: np.float64(2.6106973059812812), 1: np.float64(5.079960688300312)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:48,660 - INFO - code == 0 stations for event59: set()\n", + "2026-06-18 15:16:48,660 - INFO - horizontal elements not enough stations for event59: {}\n", + "2026-06-18 15:16:48,661 - INFO - Event: 60 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "NNSH: {0: np.float64(3.7113778513481988), 1: np.float64(3.443633154674042)}LATB: {0: np.float64(5.717017085837682), 1: np.float64(6.166905016490161)}\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:48,717 - INFO - code == 0 stations for event46: set()\n", + "2026-06-18 15:16:48,718 - INFO - horizontal elements not enough stations for event46: {}\n", + "2026-06-18 15:16:48,719 - INFO - Event: 47 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ESL: {0: np.float64(4.714771771294284), 1: np.float64(5.594774758931812)}\n", + "LATB: {0: np.float64(33.43883026824455), 1: np.float64(21.380328919486963)}\n", + "ESL: {0: np.float64(26.49863546744196), 1: np.float64(38.279962198520195)}\n", + "SM06: {0: np.float64(15.24010806247037), 1: np.float64(13.124841060171697)}\n", + "SM06: {0: np.float64(173.88447181968357), 1: np.float64(133.67549838536831)}\n", + "E023: {0: np.float64(5.950575841290384), 1: np.float64(4.937149343459437)}\n", + "SM02: {0: np.float64(15.1955442667598), 1: np.float64(11.743601502668861)}\n", + "E077: {0: np.float64(13.131260953555255), 1: np.float64(15.455253663157219)}\n", + "HOPB: {0: np.float64(19.694625631236327), 1: np.float64(18.68039750202095)}\n", + "E004: {0: np.float64(103.12379222654253), 1: np.float64(93.84674645084365)}\n", + "SM39: {0: np.float64(38.29550714243768), 1: np.float64(33.18046988291908)}\n", + "SM09: {0: np.float64(111.88036381918366), 1: np.float64(104.8641822299805)}\n", + "B215: {0: np.float64(9.719904644111132), 1: np.float64(5.719363532734221)}\n", + "HOPB: {0: np.float64(37.371743709255185), 1: np.float64(31.656819963162366)}\n", + "SM39: {0: np.float64(145.13494623072222), 1: np.float64(184.82259611693317)}\n", + "YUS: {0: np.float64(72.68325559478868), 1: np.float64(95.05928294623462)}\n", + "SHUL: {0: np.float64(7.134546594369903), 1: np.float64(4.403611641501884)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:49,284 - INFO - code == 0 stations for event60: set()\n", + "2026-06-18 15:16:49,285 - INFO - horizontal elements not enough stations for event60: {}\n", + "2026-06-18 15:16:49,286 - INFO - Event: 61 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SM02: {0: np.float64(104.95731656566026), 1: np.float64(109.23496701360541)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:49,317 - INFO - code == 0 stations for event47: set()\n", + "2026-06-18 15:16:49,317 - INFO - horizontal elements not enough stations for event47: {}\n", + "2026-06-18 15:16:49,318 - INFO - Event: 48 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WPL: {0: np.float64(1.975914389116284), 1: np.float64(1.9669011092531339)}\n", + "WPL: {0: np.float64(245.98761234378495), 1: np.float64(208.01168481665485)}\n", + "TDCB: {0: np.float64(1.9397853846646669), 1: np.float64(2.5371670205636323)}\n", + "F042: {0: np.float64(285.73744951500987), 1: np.float64(309.46455725166845)}\n", + "LATB: {0: np.float64(3.8169082185166476), 1: np.float64(3.999717234806938)}\n", + "YHNB: {0: np.float64(184.7556941895152), 1: np.float64(182.97896713207788)}\n", + "E023: {0: np.float64(3.3401121518569323), 1: np.float64(4.885334282114147)}\n", + "SM39: {0: np.float64(8621.23330289743), 1: np.float64(5868.003839144906)}\n", + "HOPB: {0: np.float64(15.664545883952181), 1: np.float64(16.850087173094526)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:49,610 - WARNING - time data '2024-04-03T00:47:02' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:49,611 - WARNING - time data '2024-04-03T00:47:42' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "YHNB: {0: np.float64(4.6666716414775795), 1: np.float64(4.23064224415368)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:49,624 - WARNING - time data '2024-04-03T00:47:02' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:49,625 - WARNING - time data '2024-04-03T00:47:42' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:49,633 - WARNING - time data '2024-04-03T00:47:02' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:49,633 - WARNING - time data '2024-04-03T00:47:42' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:49,634 - WARNING - time data '2024-04-03T00:45:22' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:49,634 - WARNING - time data '2024-04-03T00:49:22' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:49,645 - WARNING - time data '2024-04-03T00:47:02' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:49,646 - WARNING - time data '2024-04-03T00:47:42' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:49,647 - WARNING - time data '2024-04-03T00:45:22' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:49,648 - WARNING - time data '2024-04-03T00:49:22' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CHK: {0: np.float64(305.6091592297546), 1: np.float64(246.04619210490688)}\n", + "SM09: {0: np.float64(38.42347796178083), 1: np.float64(50.43572029130265)}\n", + "F002: {0: np.float64(627.3347262130305), 1: np.float64(513.480550283245)}\n", + "B215: {0: np.float64(9.264177963886416), 1: np.float64(5.504740905246618)}\n", + "F059: {0: np.float64(1784.9448459152502), 1: np.float64(2097.804909472637)}\n", + "SM02: {0: np.float64(9.874051580395165), 1: np.float64(9.072654417902855)}\n", + "FUSB: {0: np.float64(190.62326236566423), 1: np.float64(182.575745818367)}\n", + "NDS: {0: np.float64(234.2781006015427), 1: np.float64(200.18205009403408)}\n", + "B045: {0: np.float64(210.721725644398), 1: np.float64(199.41218106683064)}\n", + "HWA: {0: np.float64(3.8463597042991604), 1: np.float64(4.202700010386234)}\n", + "WUSB: {0: np.float64(7.3038452271223315), 1: np.float64(6.300207044939975)}\n", + "NNSH: {0: np.float64(3.25184298565597), 1: np.float64(2.8997223700518036)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:50,138 - INFO - code == 0 stations for event61: set()\n", + "2026-06-18 15:16:50,139 - INFO - horizontal elements not enough stations for event61: {}\n", + "2026-06-18 15:16:50,140 - INFO - Event: 62 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "HWA: {0: np.float64(1396.1216026351544), 1: np.float64(994.0421152600686)}\n", + "F002: {0: np.float64(9.529699003591139), 1: np.float64(10.00941305465587)}\n", + "TDCB: {0: np.float64(123.06151977339479), 1: np.float64(168.67985504541218)}\n", + "TDCB: {0: np.float64(1.6194252922537113), 1: np.float64(1.907106035782124)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:50,281 - WARNING - Code 0: Amplitude of LATB with seis type H >=5000000: 9785735.0\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ESL: {0: np.float64(7.1784208009679125), 1: np.float64(14.055429101095926)}\n", + "ESL: {0: np.float64(649.2566626165684), 1: np.float64(625.6893513281884)}\n", + "SM06: {0: np.float64(41.1941324437635), 1: np.float64(38.24208817925133)}\n", + "SM06: {0: np.float64(2641.301376868649), 1: np.float64(3955.125515825253)}\n", + "SSLB: {0: np.float64(108.4002959178669), 1: np.float64(96.27026407223548)}\n", + "SHUL: {0: np.float64(7.569277983315975), 1: np.float64(6.57182519807953)}E023: {0: np.float64(509.15095002085644), 1: np.float64(462.4847824343713)}\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:50,582 - WARNING - Code 0: Amplitude of HOPB with seis type H >=5000000: 5273610.0\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "F059: {0: np.float64(41.06152538333457), 1: np.float64(44.59837407313886)}\n", + "SM09: {0: np.float64(4303.036883153252), 1: np.float64(9770.83814445554)}\n", + "SM09: {0: np.float64(38.58388945574366), 1: np.float64(50.390192894452284)}\n", + "B215: {0: np.float64(540.6391250564454), 1: np.float64(246.07580566257468)}\n", + "EGC: {0: np.float64(27.048656852401542), 1: np.float64(17.213850401677064)}\n", + "GWUB: {0: np.float64(382.5209566730857), 1: np.float64(752.299472884546)}\n", + "SM39: {0: np.float64(372.60523286922944), 1: np.float64(325.24037111805364)}\n", + "SM02: {0: np.float64(4124.55929195606), 1: np.float64(4991.548179179615)}\n", + "YUS: {0: np.float64(11.418659578379774), 1: np.float64(14.01178942451074)}\n", + "SM02: {0: np.float64(59.35337816950822), 1: np.float64(36.028093669623715)}\n", + "NNSH: {0: np.float64(209.57331833403765), 1: np.float64(194.84197719092555)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:50,888 - INFO - code == 0 stations for event48: {'LATB', 'HOPB'}\n", + "2026-06-18 15:16:50,889 - INFO - horizontal elements not enough stations for event48: {}\n", + "2026-06-18 15:16:50,890 - INFO - Event: 49 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ESL: {0: np.float64(5.648831955691216), 1: np.float64(5.552206153509459)}\n", + "SM06: {0: np.float64(28.25022339847589), 1: np.float64(24.1391241586156)}\n", + "HWA: {0: np.float64(7.767232722341457), 1: np.float64(12.414078674982786)}\n", + "E037: {0: np.float64(23.642222007096837), 1: np.float64(21.380673578541636)}\n", + "E023: {0: np.float64(10.42229409386355), 1: np.float64(8.281383416427612)}\n", + "NNSH: {0: np.float64(2.49020984858013), 1: np.float64(3.961342643216084)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:51,153 - INFO - code == 0 stations for event62: set()\n", + "2026-06-18 15:16:51,154 - INFO - horizontal elements not enough stations for event62: {}\n", + "2026-06-18 15:16:51,155 - INFO - Event: 63 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SM09: {0: np.float64(27.503400480797932), 1: np.float64(30.85759578211071)}\n", + "WPL: {0: np.float64(15.891880537680963), 1: np.float64(30.10725877002623)}\n", + "SM39: {0: np.float64(46.54581028753414), 1: np.float64(29.531613494371186)}\n", + "SM02: {0: np.float64(26.991657960630622), 1: np.float64(17.41705082777324)}\n", + "WJS: {0: np.float64(6.624153258005009), 1: np.float64(2.553759423008551)}\n", + "YHNB: {0: np.float64(17.497073261323244), 1: np.float64(29.487348403876787)}\n", + "B090: {0: np.float64(74.65034488174979), 1: np.float64(65.68042917694729)}\n", + "SM39: {0: np.float64(1361.7926360209296), 1: np.float64(1657.2564511347987)}\n", + "HWA: {0: np.float64(15.798029938086454), 1: np.float64(20.02983876655995)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:51,506 - INFO - code == 0 stations for event49: set()\n", + "2026-06-18 15:16:51,506 - INFO - horizontal elements not enough stations for event49: {}\n", + "2026-06-18 15:16:51,507 - INFO - Event: 50 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "YUS: {0: np.float64(48.204772146673484), 1: np.float64(70.9918982961)}\n", + "WPL: {0: np.float64(16.99324732388652), 1: np.float64(48.65191076209842)}\n", + "WFEN: {0: np.float64(24.595374853144616), 1: np.float64(76.04543126888919)}\n", + "EOS4: {0: np.float64(71.47612301535946), 1: np.float64(54.04901244736148)}\n", + "F042: {0: np.float64(21.25941522682368), 1: np.float64(25.282407635898377)}\n", + "SML: {0: np.float64(78.51602691140748), 1: np.float64(105.77610250385423)}\n", + "G041: {0: np.float64(33.74972755470801), 1: np.float64(37.456570585168855)}\n", + "B071: {0: np.float64(14.92240413330431), 1: np.float64(21.31371942652727)}\n", + "YHNB: {0: np.float64(13.903082024415792), 1: np.float64(17.701956052024364)}\n", + "ELD: {0: np.float64(8.763180367011882), 1: np.float64(7.1329770443136775)}\n", + "B090: {0: np.float64(51.24410365186527), 1: np.float64(37.826013870964914)}\n", + "B138: {0: np.float64(36.72162394504008), 1: np.float64(25.212956557522055)}\n", + "SM39: {0: np.float64(753.9898604576455), 1: np.float64(1171.6977330775244)}\n", + "C024: {0: np.float64(29.9558841575522), 1: np.float64(25.817374334919855)}\n", + "YUS: {0: np.float64(157.54833370752343), 1: np.float64(141.2830046487644)}\n", + "ALS: {0: np.float64(39.75284312511003), 1: np.float64(37.00114472297701)}\n", + "CHK: {0: np.float64(41.733799639385694), 1: np.float64(34.145602218546735)}\n", + "HWA: {0: np.float64(434.56271409313314), 1: np.float64(379.9172073451196)}\n", + "SHUL: {0: np.float64(105.15065482780895), 1: np.float64(134.890882621267)}\n", + "LATB: {0: np.float64(26.483435306125006), 1: np.float64(38.98151048037877)}\n", + "F002: {0: np.float64(47.65359790692587), 1: np.float64(58.67368588120124)}\n", + "ESL: {0: np.float64(72.15979028372922), 1: np.float64(87.72956517635821)}\n", + "SML: {0: np.float64(54.361722372804095), 1: np.float64(126.84065469266817)}\n", + "SM06: {0: np.float64(729.1523124483492), 1: np.float64(776.4700303608072)}\n", + "B071: {0: np.float64(40.049854029275664), 1: np.float64(44.28929922390264)}\n", + "SSLB: {0: np.float64(17.30440706673854), 1: np.float64(23.913697640905777)}\n", + "F059: {0: np.float64(443.0799885282431), 1: np.float64(596.5353212817693)}\n", + "SM09: {0: np.float64(2920.3350423281236), 1: np.float64(5228.834308241055)}\n", + "CHKH: {0: np.float64(11.391799254723178), 1: np.float64(15.722953500696912)}\n", + "HOPB: {0: np.float64(82.21946318223287), 1: np.float64(80.75955019132111)}\n", + "B138: {0: np.float64(54.84390839366884), 1: np.float64(32.37224512470904)}\n", + "WDLH: {0: np.float64(17.290101691307363), 1: np.float64(25.2176836910997)}\n", + "C024: {0: np.float64(42.04806454703706), 1: np.float64(49.43147628255845)}\n", + "WUSB: {0: np.float64(42.06573205761617), 1: np.float64(60.73320848397018)}\n", + "ALS: {0: np.float64(46.047322504729394), 1: np.float64(45.017661944672874)}\n", + "B148: {0: np.float64(29.640732109501695), 1: np.float64(37.49987169630334)}B045: {0: np.float64(32.830976137222684), 1: np.float64(39.89928042255819)}\n", + "\n", + "E077: {0: np.float64(44.857180840041764), 1: np.float64(53.94467675845523)}\n", + "B068: {0: np.float64(29.476492851321332), 1: np.float64(20.00754528554665)}\n", + "EGC: {0: np.float64(260.601647173527), 1: np.float64(246.0823729551231)}\n", + "HWA: {0: np.float64(70.04003023212634), 1: np.float64(90.31472060118632)}\n", + "B215: {0: np.float64(32.05269649405683), 1: np.float64(36.65693994679831)}\n", + "ECB: {0: np.float64(48.91092170537266), 1: np.float64(37.330683196525015)}\n", + "TPUB: {0: np.float64(13.34253568451017), 1: np.float64(13.862856670379927)}\n", + "WCKO: {0: np.float64(22.0903083624392), 1: np.float64(24.40494533347593)}\n", + "TDCB: {0: np.float64(14.05694607203686), 1: np.float64(21.04785508458605)}\n", + "SM02: {0: np.float64(2074.563717059648), 1: np.float64(3021.441107777968)}\n", + "LATB: {0: np.float64(19.420726345886617), 1: np.float64(31.82928457988991)}\n", + "ESL: {0: np.float64(99.89647672769435), 1: np.float64(116.2034799729575)}\n", + "NNSH: {0: np.float64(37.446663723246445), 1: np.float64(13.137499257001732)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:53,220 - INFO - code == 0 stations for event63: set()\n", + "2026-06-18 15:16:53,221 - INFO - horizontal elements not enough stations for event63: {}\n", + "2026-06-18 15:16:53,222 - INFO - Event: 64 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WPL: {0: np.float64(8.358424982214341), 1: np.float64(10.259206559563037)}\n", + "SM06: {0: np.float64(154.5571751725156), 1: np.float64(102.66072872019156)}\n", + "SSLB: {0: np.float64(14.858801389080488), 1: np.float64(18.79350123374035)}\n", + "FUSS: {0: np.float64(0.004444738572696338), 1: np.float64(6.742854388282762)}\n", + "E023: {0: np.float64(17.920300115393548), 1: np.float64(12.280596264289452)}\n", + "TDCB: {0: np.float64(5.083603205404644), 1: np.float64(5.30870849722998)}\n", + "E004: {0: np.float64(33.69960822526701), 1: np.float64(34.15332633512685)}\n", + "SM06: {0: np.float64(102.68866264626739), 1: np.float64(88.29705738780478)}\n", + "WDLH: {0: np.float64(27.57769630924389), 1: np.float64(32.73950920516698)}\n", + "F059: {0: np.float64(89.23888621275552), 1: np.float64(82.88166393695577)}\n", + "WUSB: {0: np.float64(66.86168987224823), 1: np.float64(83.10882459402795)}\n", + "B189: {0: np.float64(9.49976069425441), 1: np.float64(7.586590866273906)}\n", + "B148: {0: np.float64(41.63079992924202), 1: np.float64(49.169910798073644)}\n", + "E077: {0: np.float64(23.149603611701583), 1: np.float64(20.113857821465906)}\n", + "SYNB: {0: np.float64(32.63335647278114), 1: np.float64(25.461165690765053)}\n", + "E023: {0: np.float64(19.5662850428528), 1: np.float64(28.517647045958686)}\n", + "EHYH: {0: np.float64(16.298248929985068), 1: np.float64(11.802348867671698)}\n", + "HOPB: {0: np.float64(35.14320601251792), 1: np.float64(39.43712252881131)}\n", + "SM09: {0: np.float64(154.5562599154895), 1: np.float64(165.8299842984625)}\n", + "FUSS: {0: np.float64(0.0036045207083895015), 1: np.float64(11.98689835179519)}\n", + "YHNB: {0: np.float64(8.497927182396005), 1: np.float64(8.543910513081098)}\n", + "EOS3: {0: np.float64(24.37269200505903), 1: np.float64(51.33472476659406)}\n", + "C024: {0: np.float64(22.524672712151943), 1: np.float64(20.86771705909898)}\n", + "B189: {0: np.float64(23.161558656320143), 1: np.float64(24.907663516196077)}\n", + "SM39: {0: np.float64(245.61685822087304), 1: np.float64(211.51290458838142)}\n", + "E077: {0: np.float64(31.077047884467536), 1: np.float64(31.9493688967085)}\n", + "SM02: {0: np.float64(111.32172152462705), 1: np.float64(85.43900893620697)}\n", + "B068: {0: np.float64(38.99957695712444), 1: np.float64(43.86496739451729)}\n", + "HGSD: {0: np.float64(201.2202998612154), 1: np.float64(185.833219892579)}\n", + "YULB: {0: np.float64(20.850223378270353), 1: np.float64(31.020338603022115)}\n", + "HWA: {0: np.float64(43.732657597762795), 1: np.float64(39.33298769216349)}\n", + "EGC: {0: np.float64(288.7175520706206), 1: np.float64(176.5311828945302)}\n", + "WUSB: {0: np.float64(48.050601786426725), 1: np.float64(30.337425004982688)}\n", + "B215: {0: np.float64(23.054117561427816), 1: np.float64(19.983117117711423)}\n", + "WHP: {0: np.float64(8.77879759686424), 1: np.float64(9.747544169060868)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:54,463 - WARNING - time data '2024-04-03T01:01:50' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:54,476 - WARNING - time data '2024-04-03T01:01:50' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WCKO: {0: np.float64(22.519794241214097), 1: np.float64(12.519449170409386)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:54,485 - WARNING - time data '2024-04-03T01:01:50' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:54,486 - WARNING - time data '2024-04-03T01:00:10' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:54,498 - WARNING - time data '2024-04-03T01:01:50' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:54,499 - WARNING - time data '2024-04-03T01:00:10' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "NNSH: {0: np.float64(6.029987920273829), 1: np.float64(5.378890428618444)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:54,512 - INFO - code == 0 stations for event64: set()\n", + "2026-06-18 15:16:54,513 - INFO - horizontal elements not enough stations for event64: {}\n", + "2026-06-18 15:16:54,513 - INFO - Event: 65 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "GWUB: {0: np.float64(25.747499895600626), 1: np.float64(34.80803498312932)}\n", + "LATB: {0: np.float64(46.49154424071795), 1: np.float64(36.840104894186545)}\n", + "SM02: {0: np.float64(224.82058176883595), 1: np.float64(318.8945656499489)}\n", + "ESL: {0: np.float64(17.070693146575767), 1: np.float64(26.515173702506914)}\n", + "EGFH: {0: np.float64(4.652062538006611), 1: np.float64(8.258531669792827)}\n", + "SM06: {0: np.float64(42.347174199489935), 1: np.float64(50.87342452243758)}\n", + "B078: {0: np.float64(53.89257541270137), 1: np.float64(32.386895665124804)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:54,745 - INFO - code == 0 stations for event50: set()\n", + "2026-06-18 15:16:54,746 - INFO - horizontal elements not enough stations for event50: {}\n", + "2026-06-18 15:16:54,747 - INFO - Event: 51 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "F059: {0: np.float64(67.54586740409798), 1: np.float64(38.369338263938566)}\n", + "WPL: {0: np.float64(103.96255487687615), 1: np.float64(163.80642075926872)}\n", + "E077: {0: np.float64(28.39340595150039), 1: np.float64(24.82388616124193)}\n", + "WFEN: {0: np.float64(221.18742040404098), 1: np.float64(91.87170183892681)}\n", + "E023: {0: np.float64(22.224182791004072), 1: np.float64(30.29626316593755)}\n", + "WCS: {0: np.float64(37.84130920789064), 1: np.float64(40.570764563420006)}\n", + "HOPB: {0: np.float64(91.4386693893091), 1: np.float64(89.64172603643269)}\n", + "NDS: {0: np.float64(8.118227461990074), 1: np.float64(7.807888724436961)}\n", + "WJS: {0: np.float64(139.31972805515883), 1: np.float64(117.29746689740342)}\n", + "GWUB: {0: np.float64(28.713826013084248), 1: np.float64(34.54389333441399)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:55,105 - INFO - code == 0 stations for event65: set()\n", + "2026-06-18 15:16:55,106 - INFO - horizontal elements not enough stations for event65: {}\n", + "2026-06-18 15:16:55,107 - INFO - Event: 66 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "B090: {0: np.float64(522.7387061607863), 1: np.float64(423.0040418154764)}\n", + "F002: {0: np.float64(9.690955613952193), 1: np.float64(10.39968720730513)}SM39: {0: np.float64(3880.0107993232114), 1: np.float64(2696.736199008112)}\n", + "\n", + "WPL: {0: np.float64(1.99570311972777), 1: np.float64(3.022628022947091)}\n", + "CHK: {0: np.float64(521.9500903227126), 1: np.float64(638.2553678758156)}\n", + "B148: {0: np.float64(3.2817868854142107), 1: np.float64(3.9459721443337323)}\n", + "YUS: {0: np.float64(1053.6556394093911), 1: np.float64(1637.4514665146157)}\n", + "SML: {0: np.float64(5.207240073837937), 1: np.float64(6.397037272043227)}\n", + "ESL: {0: np.float64(51.531646059883116), 1: np.float64(44.104849156401286)}\n", + "SHUL: {0: np.float64(667.7116668113654), 1: np.float64(667.2478863301321)}\n", + "SM06: {0: np.float64(20.24139479274634), 1: np.float64(23.13327242326354)}\n", + "SML: {0: np.float64(481.8681902185034), 1: np.float64(775.8753978704071)}\n", + "F059: {0: np.float64(40.2313633733593), 1: np.float64(56.89213299642264)}\n", + "B071: {0: np.float64(93.25770924955593), 1: np.float64(212.0913631247358)}\n", + "B090: {0: np.float64(3.3875359114631594), 1: np.float64(3.0209913155231356)}\n", + "F059: {0: np.float64(2208.0703575872), 1: np.float64(3191.841884449906)}\n", + "C024: {0: np.float64(3.6379972055988756), 1: np.float64(2.9021311083789914)}\n", + "ELD: {0: np.float64(140.9794192624213), 1: np.float64(81.35454448225262)}\n", + "EGC: {0: np.float64(39.9372562599263), 1: np.float64(36.58238078167188)}\n", + "B138: {0: np.float64(204.7557334019932), 1: np.float64(170.91051531042157)}\n", + "SM39: {0: np.float64(46.957669140845745), 1: np.float64(31.01427346047592)}\n", + "ALS: {0: np.float64(3.28401797738801), 1: np.float64(4.039173411787957)}\n", + "HWA: {0: np.float64(411.39285751478616), 1: np.float64(524.0476170982182)}\n", + "ECB: {0: np.float64(543.9550053140288), 1: np.float64(590.61670245905)}\n", + "SHUL: {0: np.float64(24.22343610338665), 1: np.float64(15.74626869626813)}\n", + "TDCB: {0: np.float64(72.76772280584855), 1: np.float64(97.28935494063046)}\n", + "ESL: {0: np.float64(1318.4104508388716), 1: np.float64(2594.7587326992652)}\n", + "HWA: {0: np.float64(7.3904766831328095), 1: np.float64(7.357095162200492)}\n", + "SM06: {0: np.float64(826.959146316326), 1: np.float64(926.2637348521082)}\n", + "ECB: {0: np.float64(7.15652277411651), 1: np.float64(6.774053031161042)}\n", + "SSLB: {0: np.float64(187.23547479219255), 1: np.float64(159.37679578269302)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:56,282 - WARNING - Code 0: Amplitude of WUSB with seis type H >=5000000: 9393039.0\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WUSB: {0: np.float64(7.260685318133729), 1: np.float64(11.262932040174329)}\n", + "B148: {0: np.float64(242.6853890277102), 1: np.float64(226.50792693854578)}\n", + "EGFH: {0: np.float64(1.5940430370595056), 1: np.float64(2.7903758521168034)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:56,389 - INFO - code == 0 stations for event66: set()\n", + "2026-06-18 15:16:56,389 - INFO - horizontal elements not enough stations for event66: {}\n", + "2026-06-18 15:16:56,390 - INFO - Event: 67 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "EHYH: {0: np.float64(210.2326554358102), 1: np.float64(309.704796085361)}\n", + "WPL: {0: np.float64(3.3327950394510855), 1: np.float64(7.258346902944255)}\n", + "WFEN: {0: np.float64(3.7715684740206052), 1: np.float64(6.70654380683076)}\n", + "FUSS: {0: np.float64(0.03940748262277186), 1: np.float64(169.70651617333667)}\n", + "WCS: {0: np.float64(1.2678509943583918), 1: np.float64(1.2191121526378876)}\n", + "EHD: {0: np.float64(119.0424231643554), 1: np.float64(121.11792732368875)}\n", + "EYUL: {0: np.float64(1.2759120834543194), 1: np.float64(1.01546125109165)}\n", + "B189: {0: np.float64(56.87679111801899), 1: np.float64(73.32510978696129)}\n", + "G041: {0: np.float64(7.653155709244649), 1: np.float64(7.419206939429025)}\n", + "YULB: {0: np.float64(195.63142559427015), 1: np.float64(253.2664493717497)}\n", + "SM02: {0: np.float64(551.6470499756344), 1: np.float64(1256.8580400106744)}\n", + "WJS: {0: np.float64(1.1131706713571616), 1: np.float64(0.9280714106821504)}\n", + "NNSH: {0: np.float64(166.30270120883878), 1: np.float64(113.3092207488283)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:56,888 - INFO - code == 0 stations for event51: {'WUSB'}\n", + "2026-06-18 15:16:56,888 - INFO - horizontal elements not enough stations for event51: {}\n", + "2026-06-18 15:16:56,889 - INFO - Event: 52 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "YUS: {0: np.float64(23.78633829718319), 1: np.float64(21.01678589670648)}\n", + "WPL: {0: np.float64(10.436854067449794), 1: np.float64(10.619243329099687)}\n", + "CHK: {0: np.float64(11.458866107001182), 1: np.float64(14.6585276706578)}\n", + "FUSS: {0: np.float64(0.004573995033719589), 1: np.float64(12.03802796009054)}\n", + "SML: {0: np.float64(12.090908465845054), 1: np.float64(16.73547561572979)}\n", + "LATB: {0: np.float64(36.59969402722891), 1: np.float64(25.769151779676093)}\n", + "B071: {0: np.float64(3.79545775938686), 1: np.float64(4.0355384195476836)}\n", + "ESL: {0: np.float64(12.722900274928456), 1: np.float64(11.319616928607271)}F059: {0: np.float64(41.9405405097917), 1: np.float64(58.919872624277886)}\n", + "\n", + "C024: {0: np.float64(7.311511458761902), 1: np.float64(6.6231348842494)}\n", + "SM06: {0: np.float64(55.220402487995635), 1: np.float64(44.336134748767265)}\n", + "ALS: {0: np.float64(8.43328111305718), 1: np.float64(9.36651471271941)}\n", + "TDCB: {0: np.float64(4.203837824927325), 1: np.float64(5.131556115296229)}\n", + "B045: {0: np.float64(4.925107008425313), 1: np.float64(6.717866525762233)}\n", + "E077: {0: np.float64(19.252045284416457), 1: np.float64(28.90867203500369)}\n", + "TDCB: {0: np.float64(4.500150793867341), 1: np.float64(6.540268691417184)}\n", + "E023: {0: np.float64(19.323910437727655), 1: np.float64(20.134610186686327)}\n", + "ESL: {0: np.float64(19.63648306384228), 1: np.float64(19.379936182571832)}\n", + "SM09: {0: np.float64(81.0995540312568), 1: np.float64(100.45369026344902)}\n", + "HOPB: {0: np.float64(98.80459488360167), 1: np.float64(60.769253583634)}\n", + "SM06: {0: np.float64(33.54457695702185), 1: np.float64(36.301966597799755)}\n", + "YHNB: {0: np.float64(13.2612333124214), 1: np.float64(13.533703645784861)}\n", + "SSLB: {0: np.float64(2.941822510850093), 1: np.float64(3.9326055567786504)}\n", + "E004: {0: np.float64(115.10068980873177), 1: np.float64(63.080011050719335)}\n", + "WUSB: {0: np.float64(12.465008370660623), 1: np.float64(14.372103694663565)}\n", + "SM39: {0: np.float64(114.47543920824049), 1: np.float64(126.45575875717363)}\n", + "B148: {0: np.float64(6.676345937195915), 1: np.float64(7.057885841941604)}\n", + "B215: {0: np.float64(27.944234012607815), 1: np.float64(18.716426166964226)}EOS3: {0: np.float64(3.985565952790542), 1: np.float64(12.192096901961555)}\n", + "\n", + "SM02: {0: np.float64(46.883802212903), 1: np.float64(40.39004129651897)}\n", + "B189: {0: np.float64(3.04131537618899), 1: np.float64(4.137869565838176)}\n", + "WUSB: {0: np.float64(24.610317430856583), 1: np.float64(25.110084681730633)}\n", + "B068: {0: np.float64(5.274616534031761), 1: np.float64(5.77873419164338)}\n", + "YULB: {0: np.float64(3.503121461179481), 1: np.float64(3.9603229349191773)}\n", + "NNSH: {0: np.float64(6.273627729714952), 1: np.float64(10.385212513244452)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:57,982 - INFO - code == 0 stations for event52: set()\n", + "2026-06-18 15:16:57,983 - INFO - horizontal elements not enough stations for event52: {}\n", + "2026-06-18 15:16:57,984 - INFO - Event: 53 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "EGC: {0: np.float64(49.844717550354126), 1: np.float64(28.484690568128936)}\n", + "WPL: {0: np.float64(3.3010191484309797), 1: np.float64(6.045057511985161)}\n", + "YHNB: {0: np.float64(4.501778985981557), 1: np.float64(4.489142546647432)}\n", + "EGFH: {0: np.float64(1.5424770670363168), 1: np.float64(2.688605525291459)}\n", + "SM39: {0: np.float64(62.45615962118402), 1: np.float64(72.4351880365089)}\n", + "B078: {0: np.float64(7.155319534115411), 1: np.float64(3.414195435733726)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:58,169 - INFO - code == 0 stations for event67: set()\n", + "2026-06-18 15:16:58,169 - INFO - horizontal elements not enough stations for event67: {}\n", + "2026-06-18 15:16:58,170 - INFO - Event: 68 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "F059: {0: np.float64(22.53710067563611), 1: np.float64(21.124084965866675)}\n", + "C024: {0: np.float64(4.383997462133277), 1: np.float64(7.405029232736014)}\n", + "FUSS: {0: np.float64(0.003876729991729394), 1: np.float64(3.66728842347571)}\n", + "B045: {0: np.float64(6.690543345487194), 1: np.float64(7.780208248162907)}\n", + "LATB: {0: np.float64(17.694332884834637), 1: np.float64(16.791084929521578)}\n", + "TDCB: {0: np.float64(3.4993662164843586), 1: np.float64(3.0079159743378954)}\n", + "ESL: {0: np.float64(9.339778900310446), 1: np.float64(11.019530585830255)}\n", + "LATB: {0: np.float64(5.778077771787259), 1: np.float64(7.0341810312341355)}\n", + "SM06: {0: np.float64(24.148006072787343), 1: np.float64(20.275541143189557)}\n", + "SM06: {0: np.float64(25.22923503959133), 1: np.float64(21.18507971479081)}\n", + "TDCB: {0: np.float64(4.572893689698767), 1: np.float64(3.962986371010044)}\n", + "E023: {0: np.float64(7.076879389968004), 1: np.float64(6.392073198422233)}\n", + "E077: {0: np.float64(21.757685451208914), 1: np.float64(17.197278433949503)}\n", + "SM09: {0: np.float64(30.80996254662451), 1: np.float64(44.59291136772738)}\n", + "E023: {0: np.float64(12.278617065446928), 1: np.float64(9.552694357864018)}\n", + "HOPB: {0: np.float64(13.925456962420652), 1: np.float64(15.114185696776065)}\n", + "SM09: {0: np.float64(31.52555588354578), 1: np.float64(63.91022178753532)}\n", + "E004: {0: np.float64(21.581369234141505), 1: np.float64(17.74633179079253)}\n", + "HOPB: {0: np.float64(143.67974014622806), 1: np.float64(160.47511191618852)}\n", + "WUSB: {0: np.float64(18.39729034549677), 1: np.float64(16.82218277719226)}\n", + "E004: {0: np.float64(12.27489646213475), 1: np.float64(13.135566636398861)}\n", + "B148: {0: np.float64(5.101341171716159), 1: np.float64(5.686126612478113)}\n", + "SM39: {0: np.float64(90.13463217373241), 1: np.float64(126.74583555047461)}\n", + "SM02: {0: np.float64(23.945974773812054), 1: np.float64(16.632591614257592)}\n", + "FUSS: {0: np.float64(0.003417300091068556), 1: np.float64(1.8900191289893418)}\n", + "EOS3: {0: np.float64(10.932632160232371), 1: np.float64(19.33981918340016)}\n", + "E077: {0: np.float64(4.365673136043151), 1: np.float64(4.156577934303703)}\n", + "HWA: {0: np.float64(5.3100675939370525), 1: np.float64(4.904576147351158)}\n", + "B215: {0: np.float64(12.144714455382456), 1: np.float64(5.412913891511831)}\n", + "GWUB: {0: np.float64(5.7971470324216865), 1: np.float64(5.900797359896799)}\n", + "NNSH: {0: np.float64(8.601295129027804), 1: np.float64(5.457269693657006)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:59,216 - INFO - code == 0 stations for event68: set()\n", + "2026-06-18 15:16:59,217 - INFO - horizontal elements not enough stations for event68: {}\n", + "2026-06-18 15:16:59,218 - INFO - Event: 69 started\n", + "2026-06-18 15:16:59,219 - WARNING - time data '2024-04-03T00:53:09' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:59,229 - WARNING - time data '2024-04-03T00:53:09' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:59,235 - WARNING - time data '2024-04-03T00:53:09' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:59,236 - WARNING - time data '2024-04-03T00:51:29' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:59,246 - WARNING - time data '2024-04-03T00:53:09' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:16:59,246 - WARNING - time data '2024-04-03T00:51:29' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SM02: {0: np.float64(23.723540389887294), 1: np.float64(29.10620688339854)}\n", + "TDCB: {0: np.float64(1.4553559256264534), 1: np.float64(2.4439681004826594)}\n", + "LATB: {0: np.float64(6.6390885348886535), 1: np.float64(5.919489631624412)}\n", + "NNSH: {0: np.float64(1.793199028047713), 1: np.float64(1.9597769556576345)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:59,349 - INFO - code == 0 stations for event53: set()\n", + "2026-06-18 15:16:59,350 - INFO - horizontal elements not enough stations for event53: {}\n", + "2026-06-18 15:16:59,355 - INFO - Event: 72 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WPL: {0: np.float64(40.3150556722089), 1: np.float64(58.47184755902478)}\n", + "SM06: {0: np.float64(16.437401104746208), 1: np.float64(14.40118771945875)}\n", + "WFEN: {0: np.float64(62.43549179415694), 1: np.float64(55.542759036007766)}\n", + "E023: {0: np.float64(6.282319047040334), 1: np.float64(7.676340079698373)}\n", + "SM09: {0: np.float64(17.559608080661764), 1: np.float64(18.865429513491403)}\n", + "WCS: {0: np.float64(17.96336338215589), 1: np.float64(12.995190016940734)}\n", + "HOPB: {0: np.float64(7.945193012613684), 1: np.float64(8.426836156064079)}\n", + "E037: {0: np.float64(202.210044217229), 1: np.float64(167.38857726299722)}\n", + "EGC: {0: np.float64(14.927967679285295), 1: np.float64(14.673973514785512)}\n", + "G041: {0: np.float64(52.106000329979), 1: np.float64(40.10195321190931)}\n", + "SM39: {0: np.float64(31.407746705722715), 1: np.float64(41.78364949063151)}\n", + "YHNB: {0: np.float64(66.80369435434012), 1: np.float64(123.6571352071748)}\n", + "ALS: {0: np.float64(1.9964798979812972), 1: np.float64(2.0670922265382528)}\n", + "B090: {0: np.float64(115.17411035067363), 1: np.float64(96.55678396624194)}\n", + "SM02: {0: np.float64(14.95247521162691), 1: np.float64(9.922673567970541)}\n", + "SM39: {0: np.float64(1332.2529162321978), 1: np.float64(762.6591417959628)}\n", + "F002: {0: np.float64(3.789122306828999), 1: np.float64(5.8328759466999225)}\n", + "YUS: {0: np.float64(140.84342714817055), 1: np.float64(152.00746157976658)}\n", + "EGFH: {0: np.float64(0.5010723091996271), 1: np.float64(0.92193466267931)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:16:59,963 - INFO - code == 0 stations for event69: set()\n", + "2026-06-18 15:16:59,964 - INFO - horizontal elements not enough stations for event69: {}\n", + "2026-06-18 15:16:59,965 - INFO - Event: 70 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SHUL: {0: np.float64(209.69327469863342), 1: np.float64(262.15074136470724)}\n", + "FUSS: {0: np.float64(0.003719216855600231), 1: np.float64(0.7415551974698729)}\n", + "WHP: {0: np.float64(30.231409825337753), 1: np.float64(30.805026862964755)}\n", + "TDCB: {0: np.float64(0.44779572378258053), 1: np.float64(0.5647165116209915)}\n", + "SML: {0: np.float64(238.28902197313394), 1: np.float64(418.2809244164542)}\n", + "ESL: {0: np.float64(6.38639752017407), 1: np.float64(10.148322995879315)}\n", + "B071: {0: np.float64(41.086013131169004), 1: np.float64(124.3288749597409)}\n", + "F059: {0: np.float64(494.8905287965758), 1: np.float64(802.1239276254399)}\n", + "SM06: {0: np.float64(14.68863013056552), 1: np.float64(19.606741885305063)}\n", + "ELD: {0: np.float64(14.766932177857072), 1: np.float64(14.9145983429537)}\n", + "CHKH: {0: np.float64(19.73703993590762), 1: np.float64(20.364096326581574)}\n", + "SHUL: {0: np.float64(4.629800814997226), 1: np.float64(5.272840618350026)}\n", + "FUSB: {0: np.float64(39.11883920797931), 1: np.float64(27.863978794925522)}\n", + "F059: {0: np.float64(12.803010709412117), 1: np.float64(15.525471132474403)}\n", + "SM09: {0: np.float64(12.745254778475022), 1: np.float64(23.734444592584747)}\n", + "NDS: {0: np.float64(78.99570558937035), 1: np.float64(68.03811192610983)}\n", + "YULB: {0: np.float64(1.2822622402523225), 1: np.float64(0.995169982138167)}\n", + "C024: {0: np.float64(90.02121800681388), 1: np.float64(99.06724138950823)}\n", + "SM02: {0: np.float64(13.361853953631838), 1: np.float64(9.941764886429116)}\n", + "ALS: {0: np.float64(101.79198699548274), 1: np.float64(70.86667625544993)}\n", + "B045: {0: np.float64(49.95492200031402), 1: np.float64(44.1874854425444)}\n", + "HWA: {0: np.float64(2.972036515968446), 1: np.float64(6.179743851047249)}\n", + "WUSB: {0: np.float64(2.9973865259734276), 1: np.float64(3.1983536539929673)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:00,907 - INFO - code == 0 stations for event70: set()\n", + "2026-06-18 15:17:00,907 - INFO - horizontal elements not enough stations for event70: {}\n", + "2026-06-18 15:17:00,908 - INFO - Event: 71 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "HWA: {0: np.float64(229.87209604906002), 1: np.float64(292.4655667899619)}\n", + "WPL: {0: np.float64(6.858898131564097), 1: np.float64(13.961812616751216)}\n", + "ECB: {0: np.float64(66.22290910351555), 1: np.float64(59.54129494360426)}\n", + "WFEN: {0: np.float64(12.499869687456277), 1: np.float64(10.27925523921134)}\n", + "TPUB: {0: np.float64(19.275038108499423), 1: np.float64(24.759480141493352)}\n", + "WCS: {0: np.float64(4.037168636163679), 1: np.float64(2.5533491116763516)}\n", + "EDH: {0: np.float64(4.978895456483164), 1: np.float64(4.800896117559431)}\n", + "YHNB: {0: np.float64(8.294207471326574), 1: np.float64(11.253310656607946)}\n", + "TDCB: {0: np.float64(38.71138467112754), 1: np.float64(55.113213823041235)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:01,221 - WARNING - Code 0: Amplitude of LATB with seis type H >=5000000: 5108489.0\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "B090: {0: np.float64(19.175852465476176), 1: np.float64(18.18296199621679)}\n", + "SM39: {0: np.float64(222.46487215987463), 1: np.float64(564.4119682179403)}\n", + "ESL: {0: np.float64(211.87052276684304), 1: np.float64(307.9287708092443)}\n", + "YUS: {0: np.float64(41.25827836204742), 1: np.float64(41.38731146849237)}\n", + "SM06: {0: np.float64(2085.8077124246447), 1: np.float64(863.4146708092377)}\n", + "SSLB: {0: np.float64(99.46011952419822), 1: np.float64(83.66385714035015)}\n", + "CHK: {0: np.float64(18.467421646684826), 1: np.float64(17.89083500060116)}\n", + "E023: {0: np.float64(171.82489163551094), 1: np.float64(265.7485533579025)}\n", + "SM09: {0: np.float64(592.8569731984505), 1: np.float64(769.2686849480265)}\n", + "SHUL: {0: np.float64(41.84471913086605), 1: np.float64(54.5743841360604)}\n", + "HOPB: {0: np.float64(480.3093817311025), 1: np.float64(602.1553658141472)}\n", + "F002: {0: np.float64(30.039206141132624), 1: np.float64(28.214508389455226)}\n", + "E004: {0: np.float64(140.35185094024843), 1: np.float64(122.6353648306721)}\n", + "SML: {0: np.float64(17.564430906576188), 1: np.float64(30.817720102912258)}\n", + "WDLH: {0: np.float64(43.76787008235141), 1: np.float64(47.943220245277935)}\n", + "B071: {0: np.float64(18.546552715331824), 1: np.float64(13.92062452078319)}\n", + "B078: {0: np.float64(82.21106209646773), 1: np.float64(100.55926795915944)}\n", + "F059: {0: np.float64(117.19488162806908), 1: np.float64(123.95387105935258)}\n", + "WUSB: {0: np.float64(291.6724746820788), 1: np.float64(341.5651287465286)}\n", + "FUSB: {0: np.float64(3.4559222006148596), 1: np.float64(3.8332718389169935)}\n", + "NFF: {0: np.float64(28.589182205242018), 1: np.float64(16.92767636758859)}\n", + "C024: {0: np.float64(15.75357179357909), 1: np.float64(20.828399250482093)}\n", + "B148: {0: np.float64(111.40965154362434), 1: np.float64(126.74928491622985)}\n", + "B045: {0: np.float64(14.25057040491961), 1: np.float64(6.669520034113623)}\n", + "FUSS: {0: np.float64(0.01784099232069067), 1: np.float64(48.67824060123118)}\n", + "EHYH: {0: np.float64(32.90638004174947), 1: np.float64(39.47715136858425)}\n", + "HWA: {0: np.float64(60.559968771918435), 1: np.float64(53.33807495413467)}\n", + "B189: {0: np.float64(42.83646163212935), 1: np.float64(38.14432646055442)}\n", + "ECB: {0: np.float64(18.114044182061903), 1: np.float64(20.17533155111313)}\n", + "E077: {0: np.float64(515.5608046378616), 1: np.float64(569.2170935165828)}\n", + "TPUB: {0: np.float64(7.706714342809506), 1: np.float64(6.808357891063531)}\n", + "YULB: {0: np.float64(31.62681441050865), 1: np.float64(30.408716593496443)}\n", + "TDCB: {0: np.float64(12.415827869375), 1: np.float64(10.065460909000448)}\n", + "EGC: {0: np.float64(418.2189085145319), 1: np.float64(421.2076817768124)}\n", + "LATB: {0: np.float64(13.699854208554411), 1: np.float64(15.808993119131722)}\n", + "B215: {0: np.float64(169.69349512092788), 1: np.float64(95.27005482884765)}\n", + "ESL: {0: np.float64(71.66095266234188), 1: np.float64(44.84115444094144)}\n", + "SM06: {0: np.float64(140.68700406101388), 1: np.float64(161.49657063142587)}\n", + "WCKO: {0: np.float64(34.12616248547532), 1: np.float64(28.31520964151297)}\n", + "SSLB: {0: np.float64(6.438724158143578), 1: np.float64(11.389102967673152)}\n", + "GWUB: {0: np.float64(108.09669167882932), 1: np.float64(124.39884896803687)}\n", + "E023: {0: np.float64(14.353503977274324), 1: np.float64(13.272544581266025)}\n", + "SM02: {0: np.float64(454.92702464347144), 1: np.float64(346.49692848260355)}\n", + "SM09: {0: np.float64(168.7722886692038), 1: np.float64(282.2744350448683)}\n", + "EGFH: {0: np.float64(13.675539849419573), 1: np.float64(20.717175570395426)}\n", + "WDLH: {0: np.float64(9.524381943837838), 1: np.float64(14.787350325777568)}\n", + "NNSH: {0: np.float64(228.28444677609687), 1: np.float64(59.92819128328783)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:02,881 - INFO - code == 0 stations for event72: {'LATB'}\n", + "2026-06-18 15:17:02,882 - INFO - horizontal elements not enough stations for event72: {}\n", + "2026-06-18 15:17:02,883 - INFO - Event: 73 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "B078: {0: np.float64(9.65347885418597), 1: np.float64(6.804916591691954)}\n", + "ESL: {0: np.float64(47.65772281349251), 1: np.float64(34.5889751176709)}\n", + "WUSB: {0: np.float64(26.026437992726677), 1: np.float64(26.904729593729165)}\n", + "B148: {0: np.float64(15.332083653655603), 1: np.float64(17.51546646111615)}\n", + "SM06: {0: np.float64(132.34341048819272), 1: np.float64(196.32841013876228)}\n", + "F059: {0: np.float64(216.63418058268442), 1: np.float64(189.66240852737562)}\n", + "EHYH: {0: np.float64(5.0110998524734445), 1: np.float64(5.807747719255799)}\n", + "HOPB: {0: np.float64(24.652561241816063), 1: np.float64(21.563274967261066)}\n", + "SM39: {0: np.float64(244.71791249639298), 1: np.float64(213.54029452240349)}\n", + "FUSS: {0: np.float64(0.0034787411060581896), 1: np.float64(11.735727140498748)}\n", + "B189: {0: np.float64(9.425419232630205), 1: np.float64(7.4616639828989175)}\n", + "SHUL: {0: np.float64(41.944626215244746), 1: np.float64(46.010018708810016)}\n", + "E077: {0: np.float64(17.989165435935025), 1: np.float64(14.815983170043403)}\n", + "B068: {0: np.float64(7.245649498570482), 1: np.float64(7.396100609284735)}\n", + "HGSD: {0: np.float64(65.17104995778968), 1: np.float64(79.72770391708346)}\n", + "YULB: {0: np.float64(6.297470572238091), 1: np.float64(7.784491901810252)}\n", + "HWA: {0: np.float64(36.72259983889738), 1: np.float64(36.32946480633981)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:03,512 - INFO - code == 0 stations for event73: set()\n", + "2026-06-18 15:17:03,513 - INFO - horizontal elements not enough stations for event73: {}\n", + "2026-06-18 15:17:03,514 - INFO - Event: 74 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "B215: {0: np.float64(30.020261714364345), 1: np.float64(20.387489117414034)}\n", + "B148: {0: np.float64(19.874353689483275), 1: np.float64(14.958522999625893)}\n", + "SML: {0: np.float64(27.190207738850887), 1: np.float64(31.921580167783883)}\n", + "WCKO: {0: np.float64(9.617622856984466), 1: np.float64(8.99210134120072)}\n", + "ESL: {0: np.float64(11.02777337356206), 1: np.float64(12.749179082351622)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:03,711 - WARNING - time data '2024-04-03T01:06:23' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:03,712 - WARNING - time data '2024-04-03T01:06:43' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:03,723 - WARNING - time data '2024-04-03T01:06:23' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:03,724 - WARNING - time data '2024-04-03T01:06:43' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:03,731 - WARNING - time data '2024-04-03T01:06:23' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:03,731 - WARNING - time data '2024-04-03T01:06:43' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:03,732 - WARNING - time data '2024-04-03T01:04:43' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:03,733 - WARNING - time data '2024-04-03T01:08:23' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:03,744 - WARNING - time data '2024-04-03T01:06:23' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:03,745 - WARNING - time data '2024-04-03T01:06:43' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:03,746 - WARNING - time data '2024-04-03T01:04:43' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:03,746 - WARNING - time data '2024-04-03T01:08:23' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "GWUB: {0: np.float64(10.2062914506372), 1: np.float64(11.8624057880974)}\n", + "SM06: {0: np.float64(65.06894723532525), 1: np.float64(73.05826784176304)}\n", + "SM02: {0: np.float64(120.87630060950374), 1: np.float64(82.68573339143452)}\n", + "F059: {0: np.float64(132.95061767768547), 1: np.float64(122.87597301308412)}\n", + "SM39: {0: np.float64(127.03159551916026), 1: np.float64(147.688929685816)}\n", + "EGFH: {0: np.float64(2.7052569830501594), 1: np.float64(3.2777472798593323)}\n", + "YUS: {0: np.float64(27.5487615983893), 1: np.float64(24.545615395190868)}\n", + "SM02: {0: np.float64(44.603573247289866), 1: np.float64(49.05495096765489)}\n", + "NNSH: {0: np.float64(10.515532816051149), 1: np.float64(9.716055329150867)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:04,000 - INFO - code == 0 stations for event71: set()\n", + "2026-06-18 15:17:04,001 - INFO - horizontal elements not enough stations for event71: {}\n", + "2026-06-18 15:17:04,005 - INFO - Event: 90 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "F002: {0: np.float64(26.480231944825523), 1: np.float64(19.95841427923958)}\n", + "EHYH: {0: np.float64(6.31887024289057), 1: np.float64(7.389491094799463)}\n", + "WUSB: {0: np.float64(16.022550875579196), 1: np.float64(17.469180817407093)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:04,117 - INFO - code == 0 stations for event74: set()\n", + "2026-06-18 15:17:04,118 - INFO - horizontal elements not enough stations for event74: {}\n", + "2026-06-18 15:17:04,119 - INFO - Event: 75 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WPL: {0: np.float64(11.722311132931878), 1: np.float64(19.024724920594643)}\n", + "YHNB: {0: np.float64(10.275501738383188), 1: np.float64(9.538918686259859)}\n", + "HWA: {0: np.float64(21.023355464225975), 1: np.float64(21.10713628238606)}\n", + "B090: {0: np.float64(21.507746412171716), 1: np.float64(18.28067770663799)}\n", + "YULB: {0: np.float64(7.757942048903765), 1: np.float64(8.595479688120781)}\n", + "SM39: {0: np.float64(412.37936600136464), 1: np.float64(375.25135348102555)}\n", + "B215: {0: np.float64(18.335204500426702), 1: np.float64(12.245582043112956)}\n", + "YUS: {0: np.float64(37.60545764975813), 1: np.float64(34.84084198910386)}\n", + "YUS: {0: np.float64(18.29665214854322), 1: np.float64(29.182662600270334)}\n", + "SM02: {0: np.float64(53.20252686598677), 1: np.float64(81.5420592311818)}\n", + "SHUL: {0: np.float64(33.48139964949323), 1: np.float64(56.97113334306221)}\n", + "F002: {0: np.float64(16.491777200422277), 1: np.float64(21.946894376000813)}\n", + "EOS4: {0: np.float64(39.5288518731749), 1: np.float64(27.091767830374124)}\n", + "EGFH: {0: np.float64(2.523605240262092), 1: np.float64(4.380033191869827)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:04,679 - INFO - code == 0 stations for event90: set()\n", + "2026-06-18 15:17:04,679 - INFO - horizontal elements not enough stations for event90: {}\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "F002: {0: np.float64(28.321798472943335), 1: np.float64(35.831096441584066)}" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:04,680 - INFO - Event: 91 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "B071: {0: np.float64(20.918263436962512), 1: np.float64(14.995228110400383)}F002: {0: np.float64(16.8255282198724), 1: np.float64(22.04232075190036)}\n", + "\n", + "F059: {0: np.float64(132.9570199379999), 1: np.float64(122.26674615194429)}\n", + "FUSS: {0: np.float64(0.003548989428435119), 1: np.float64(10.239989824609518)}\n", + "B138: {0: np.float64(29.38124495097538), 1: np.float64(30.20344591845156)}\n", + "LATB: {0: np.float64(19.455726005762674), 1: np.float64(25.670888222628477)}\n", + "C024: {0: np.float64(11.916673076333964), 1: np.float64(18.75560146503359)}\n", + "ESL: {0: np.float64(22.06550463206495), 1: np.float64(23.15984580447887)}\n", + "B045: {0: np.float64(21.10154273288521), 1: np.float64(27.93233602576519)}\n", + "SM06: {0: np.float64(62.691021353123915), 1: np.float64(61.04679893088096)}\n", + "F059: {0: np.float64(55.1941026611381), 1: np.float64(77.72849222229935)}\n", + "E077: {0: np.float64(13.368066789589859), 1: np.float64(17.724381681600775)}\n", + "HWA: {0: np.float64(48.38545738060694), 1: np.float64(65.25026192624219)}\n", + "TDCB: {0: np.float64(9.721447959102456), 1: np.float64(8.003190236484263)}\n", + "HOPB: {0: np.float64(64.56099623912647), 1: np.float64(49.08597912075845)}\n", + "LATB: {0: np.float64(26.206058413806048), 1: np.float64(32.61325707801535)}\n", + "SM09: {0: np.float64(75.32894593197832), 1: np.float64(103.34587438694469)}\n", + "ESL: {0: np.float64(34.096694637029664), 1: np.float64(38.02169111745217)}\n", + "EGC: {0: np.float64(47.18141656377586), 1: np.float64(31.193144512467057)}\n", + "SM39: {0: np.float64(80.473566838164), 1: np.float64(175.62740427011192)}\n", + "SM06: {0: np.float64(229.94317098367188), 1: np.float64(119.68841098829553)}\n", + "YUS: {0: np.float64(28.837773681348303), 1: np.float64(47.02534192212538)}\n", + "SSLB: {0: np.float64(13.142077615654568), 1: np.float64(11.37340941194006)}\n", + "SM02: {0: np.float64(71.63301326495937), 1: np.float64(130.30439689976663)}\n", + "E023: {0: np.float64(14.966936911801193), 1: np.float64(16.450569886359606)}\n", + "SM09: {0: np.float64(119.06307967526016), 1: np.float64(258.6705386787801)}\n", + "HOPB: {0: np.float64(38.26390824314315), 1: np.float64(62.04587634146934)}\n", + "HWA: {0: np.float64(21.71173648162079), 1: np.float64(21.53810808728681)}\n", + "WUSB: {0: np.float64(48.04638894227029), 1: np.float64(61.45927256348883)}\n", + "EWT: {0: np.float64(6.016060768549256), 1: np.float64(7.2668538959897315)}\n", + "WUSB: {0: np.float64(16.415373496271624), 1: np.float64(24.130301784514973)}\n", + "FUSS: {0: np.float64(0.003780220136829251), 1: np.float64(6.113104258994046)}\n", + "B189: {0: np.float64(13.663313115488933), 1: np.float64(10.54705454334278)}\n", + "EGFH: {0: np.float64(1.5662084281983024), 1: np.float64(2.800787293138129)}\n", + "E077: {0: np.float64(24.941283180755484), 1: np.float64(16.914841135555676)}\n", + "NNSH: {0: np.float64(9.19379590186065), 1: np.float64(4.185639270801972)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:05,997 - INFO - code == 0 stations for event91: set()\n", + "2026-06-18 15:17:05,998 - INFO - horizontal elements not enough stations for event91: {}\n", + "2026-06-18 15:17:05,999 - INFO - Event: 92 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "HGSD: {0: np.float64(77.1244709144155), 1: np.float64(116.18297534002957)}\n", + "WPL: {0: np.float64(40.26819042113739), 1: np.float64(48.87293741040093)}\n", + "EGC: {0: np.float64(93.09218966247758), 1: np.float64(75.91519407484593)}\n", + "GWUB: {0: np.float64(15.009620049659809), 1: np.float64(20.06100898354906)}\n", + "WCS: {0: np.float64(26.336226050667488), 1: np.float64(13.410974178801865)}\n", + "SM02: {0: np.float64(144.88143462206514), 1: np.float64(99.31054542428771)}\n", + "YHNB: {0: np.float64(50.58604880941014), 1: np.float64(44.53432852188204)}\n", + "B090: {0: np.float64(57.218598516003325), 1: np.float64(111.63130154767394)}\n", + "NNSH: {0: np.float64(8.698306380032536), 1: np.float64(5.737223625163657)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:06,269 - INFO - code == 0 stations for event75: set()\n", + "2026-06-18 15:17:06,270 - INFO - horizontal elements not enough stations for event75: {}\n", + "2026-06-18 15:17:06,271 - INFO - Event: 76 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "B148: {0: np.float64(4.940799703306008), 1: np.float64(5.09966882749147)}SM39: {0: np.float64(2598.389957806714), 1: np.float64(1869.7410708511434)}\n", + "\n", + "SML: {0: np.float64(93.87479578362598), 1: np.float64(162.7467199108975)}\n", + "ESL: {0: np.float64(30.243827779216122), 1: np.float64(29.551104129777777)}\n", + "B071: {0: np.float64(24.59476489482418), 1: np.float64(26.58080893132915)}\n", + "SM06: {0: np.float64(24.96908110894632), 1: np.float64(16.694115658079838)}\n", + "F059: {0: np.float64(2102.129897684503), 1: np.float64(1416.9173861879065)}\n", + "F059: {0: np.float64(38.24447548407835), 1: np.float64(72.85235586519562)}\n", + "C024: {0: np.float64(60.82987135492943), 1: np.float64(94.72494853041431)}\n", + "SM02: {0: np.float64(15.871189965425948), 1: np.float64(19.733635868631698)}\n", + "SM09: {0: np.float64(28.037384602905213), 1: np.float64(32.3550389063123)}\n", + "EGC: {0: np.float64(13.208876427745114), 1: np.float64(11.04342395820404)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:06,717 - WARNING - Code 0: Amplitude of HWA with seis type H >=5000000: 10133172.0\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SM39: {0: np.float64(50.02125358315189), 1: np.float64(48.848533189578454)}\n", + "TDCB: {0: np.float64(24.788302036424046), 1: np.float64(33.442177944903314)}\n", + "YUS: {0: np.float64(5.007401882418558), 1: np.float64(10.620914508230229)}\n", + "ESL: {0: np.float64(249.08836185993954), 1: np.float64(324.60748894018275)}\n", + "SM06: {0: np.float64(7902.41767534197), 1: np.float64(6010.660050503607)}\n", + "SHUL: {0: np.float64(8.719088995684112), 1: np.float64(6.244544440455459)}\n", + "SSLB: {0: np.float64(58.68432207859075), 1: np.float64(43.50566901537973)}\n", + "E004: {0: np.float64(70.10100234078298), 1: np.float64(91.45599992222614)}\n", + "SM09: {0: np.float64(1218.1454366705566), 1: np.float64(1478.1015198224763)}\n", + "HWA: {0: np.float64(9.182925205413403), 1: np.float64(5.646433483425171)}\n", + "HOPB: {0: np.float64(69.31121513301889), 1: np.float64(136.40348704685758)}\n", + "WUSB: {0: np.float64(6.689404519368088), 1: np.float64(8.677450964483505)}\n", + "WUSB: {0: np.float64(162.75266237343962), 1: np.float64(304.5256907552365)}\n", + "B148: {0: np.float64(84.6659257005688), 1: np.float64(51.68987167844459)}\n", + "EGFH: {0: np.float64(1.1586954791363522), 1: np.float64(1.4753918534570374)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:07,288 - INFO - code == 0 stations for event76: set()\n", + "2026-06-18 15:17:07,289 - INFO - horizontal elements not enough stations for event76: {}\n", + "2026-06-18 15:17:07,290 - INFO - Event: 77 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "TDCB: {0: np.float64(11.97660338090258), 1: np.float64(19.92465444131082)}\n", + "FUSS: {0: np.float64(0.01191314196734027), 1: np.float64(67.97152022840086)}\n", + "ESL: {0: np.float64(12.726408294094066), 1: np.float64(11.545391216500926)}\n", + "B189: {0: np.float64(22.734891055880844), 1: np.float64(24.184934483360394)}\n", + "E077: {0: np.float64(76.43963883893343), 1: np.float64(91.48587418564347)}\n", + "SM06: {0: np.float64(33.63372593051632), 1: np.float64(43.443666666026616)}\n", + "EGC: {0: np.float64(453.06214774018497), 1: np.float64(389.86695896556796)}\n", + "F059: {0: np.float64(20.40024280325606), 1: np.float64(23.03012961554531)}\n", + "GWUB: {0: np.float64(94.51295912317889), 1: np.float64(103.99140546755507)}\n", + "SM09: {0: np.float64(27.395396094462384), 1: np.float64(32.38571422937269)}\n", + "SM02: {0: np.float64(2118.244387600254), 1: np.float64(4101.805468290376)}\n", + "SM39: {0: np.float64(424.51350105428884), 1: np.float64(256.44381164542597)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:07,698 - WARNING - time data '2024-04-03T01:19:35' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:07,700 - WARNING - time data '2024-04-03T01:19:55' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:07,715 - WARNING - time data '2024-04-03T01:19:35' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:07,716 - WARNING - time data '2024-04-03T01:19:55' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:07,725 - WARNING - time data '2024-04-03T01:19:35' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:07,726 - WARNING - time data '2024-04-03T01:19:55' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:07,727 - WARNING - time data '2024-04-03T01:17:55' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "YUS: {0: np.float64(14.14842864515669), 1: np.float64(22.262425224531434)}" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:07,728 - WARNING - time data '2024-04-03T01:21:35' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:07,741 - WARNING - time data '2024-04-03T01:19:35' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:07,742 - WARNING - time data '2024-04-03T01:19:55' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:07,743 - WARNING - time data '2024-04-03T01:17:55' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:07,743 - WARNING - time data '2024-04-03T01:21:35' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "EGFH: {0: np.float64(12.67874646730606), 1: np.float64(15.41020678114896)}\n", + "NNSH: {0: np.float64(26.89093842628439), 1: np.float64(29.38739067114674)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:07,850 - INFO - code == 0 stations for event92: {'HWA'}\n", + "2026-06-18 15:17:07,851 - INFO - horizontal elements not enough stations for event92: {}\n", + "2026-06-18 15:17:07,852 - INFO - Event: 93 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SHUL: {0: np.float64(7.7434425217001195), 1: np.float64(6.842257707963805)}\n", + "WPL: {0: np.float64(2.8215475036819253), 1: np.float64(4.248213982458893)}\n", + "WUSB: {0: np.float64(11.684334967422839), 1: np.float64(11.041570944226725)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:07,927 - INFO - code == 0 stations for event77: set()\n", + "2026-06-18 15:17:07,928 - INFO - horizontal elements not enough stations for event77: {}\n", + "2026-06-18 15:17:07,929 - INFO - Event: 78 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ESL: {0: np.float64(6.49058056059336), 1: np.float64(9.160990687912541)}\n", + "WPL: {0: np.float64(43.965252912558476), 1: np.float64(66.90702154527524)}\n", + "WFEN: {0: np.float64(144.3511415528072), 1: np.float64(190.2840083441624)}\n", + "SM06: {0: np.float64(31.76339237426265), 1: np.float64(37.20252840086766)}\n", + "F059: {0: np.float64(18.80210817911524), 1: np.float64(19.598979044708564)}\n", + "WCS: {0: np.float64(22.111594625356954), 1: np.float64(10.243513066174305)}\n", + "SM09: {0: np.float64(45.24289065770496), 1: np.float64(69.58905542821354)}\n", + "E037: {0: np.float64(312.7891111546463), 1: np.float64(481.95143292071344)}\n", + "HOPB: {0: np.float64(83.61570297252078), 1: np.float64(67.5603577987742)}\n", + "YHNB: {0: np.float64(3.6287707226563204), 1: np.float64(3.0009600793888382)}\n", + "WJS: {0: np.float64(27.75508711992362), 1: np.float64(42.710542703109034)}\n", + "SM39: {0: np.float64(48.90703991095906), 1: np.float64(76.29914727973774)}\n", + "YHNB: {0: np.float64(239.70409666453244), 1: np.float64(161.4767834831669)}\n", + "SM02: {0: np.float64(25.41186085150913), 1: np.float64(45.07186391605888)}\n", + "SM39: {0: np.float64(2268.5090247091102), 1: np.float64(2403.157027771061)}\n", + "YUS: {0: np.float64(149.0063102931362), 1: np.float64(256.5486344287534)}\n", + "HWA: {0: np.float64(18.081099877587313), 1: np.float64(14.252159133817754)}\n", + "SHUL: {0: np.float64(75.41725253079899), 1: np.float64(104.66819723723647)}\n", + "EWT: {0: np.float64(7.37179187571056), 1: np.float64(7.5640074662858945)}\n", + "F002: {0: np.float64(90.60185779343836), 1: np.float64(57.23364950099472)}\n", + "WUSB: {0: np.float64(11.98054942707149), 1: np.float64(17.209481185577783)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:08,705 - INFO - code == 0 stations for event93: set()\n", + "2026-06-18 15:17:08,706 - INFO - horizontal elements not enough stations for event93: {}\n", + "2026-06-18 15:17:08,707 - INFO - Event: 94 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SML: {0: np.float64(114.45707457823647), 1: np.float64(159.01798163229546)}\n", + "LATB: {0: np.float64(6.382033985632302), 1: np.float64(6.067258810744482)}\n", + "B071: {0: np.float64(150.16829430519275), 1: np.float64(136.51154355589202)}\n", + "B138: {0: np.float64(191.2504070221012), 1: np.float64(184.5171535046401)}\n", + "SM06: {0: np.float64(43.94726443135764), 1: np.float64(39.04556587525249)}\n", + "FUSB: {0: np.float64(97.09673882212151), 1: np.float64(143.07288379331484)}\n", + "F059: {0: np.float64(46.49941148923533), 1: np.float64(85.59598630062679)}\n", + "E077: {0: np.float64(5.579890962863566), 1: np.float64(5.7346365760269435)}\n", + "NDS: {0: np.float64(282.563578462468), 1: np.float64(167.9979260601628)}\n", + "E023: {0: np.float64(6.132363587611731), 1: np.float64(8.4801129181423)}\n", + "B045: {0: np.float64(191.6567541406875), 1: np.float64(228.3449252234681)}\n", + "HOPB: {0: np.float64(44.49706144974614), 1: np.float64(61.09490414281125)}\n", + "NDS: {0: np.float64(3.899022597993465), 1: np.float64(2.963416633773512)}\n", + "EWT: {0: np.float64(5.552058726440129), 1: np.float64(9.231655266127104)}\n", + "HWA: {0: np.float64(138.45241416130426), 1: np.float64(148.13566564122075)}\n", + "TPUB: {0: np.float64(43.779076055313396), 1: np.float64(36.84195071245192)}\n", + "NNSH: {0: np.float64(9.750516406152867), 1: np.float64(28.930917516338315)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:09,321 - INFO - code == 0 stations for event94: set()\n", + "2026-06-18 15:17:09,322 - INFO - horizontal elements not enough stations for event94: {}\n", + "2026-06-18 15:17:09,323 - INFO - Event: 95 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "TDCB: {0: np.float64(183.5856215784575), 1: np.float64(138.18340120120598)}\n", + "WPL: {0: np.float64(38.91587359519659), 1: np.float64(71.19284976236689)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:09,399 - WARNING - Code 0: Amplitude of LATB with seis type H >=5000000: 8616150.0\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ESL: {0: np.float64(128.57045284855514), 1: np.float64(166.98763618105485)}\n", + "FUSS: {0: np.float64(0.020053858013853305), 1: np.float64(91.44783661113088)}\n", + "SM06: {0: np.float64(248.46437178118828), 1: np.float64(242.19156220867552)}\n", + "TDCB: {0: np.float64(42.356170071513986), 1: np.float64(46.951919574641785)}\n", + "SSLB: {0: np.float64(30.057823807280396), 1: np.float64(38.223885328056426)}\n", + "SM06: {0: np.float64(736.5590111758736), 1: np.float64(858.4549818717809)}\n", + "E023: {0: np.float64(412.48077023207117), 1: np.float64(367.1093207399248)}\n", + "F059: {0: np.float64(488.043064345578), 1: np.float64(650.5557224561177)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:09,695 - WARNING - Code 0: Amplitude of HOPB with seis type H >=5000000: 9315451.0\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "E077: {0: np.float64(163.60860275101163), 1: np.float64(233.18854533629582)}\n", + "SM09: {0: np.float64(1027.7005352897895), 1: np.float64(1172.9542855179827)}\n", + "E004: {0: np.float64(122.80506422193461), 1: np.float64(143.82962804073344)}\n", + "E004: {0: np.float64(233.37340732235992), 1: np.float64(197.86715673844677)}\n", + "SM09: {0: np.float64(647.6096726966214), 1: np.float64(1997.521962074966)}\n", + "WDLH: {0: np.float64(50.434942299814495), 1: np.float64(63.45217353469748)}\n", + "E023: {0: np.float64(235.30146371923928), 1: np.float64(267.470724537573)}\n", + "WUSB: {0: np.float64(219.93991617034672), 1: np.float64(194.17927615318564)}\n", + "NDS: {0: np.float64(75.71514299231353), 1: np.float64(103.6038746228114)}\n", + "NFF: {0: np.float64(27.191619133115555), 1: np.float64(31.899421593642785)}\n", + "C024: {0: np.float64(42.19949086418988), 1: np.float64(35.812930814632345)}\n", + "B148: {0: np.float64(70.85848113647315), 1: np.float64(68.86199403464917)}\n", + "SM39: {0: np.float64(906.9183641859727), 1: np.float64(1262.4941175439428)}\n", + "SM02: {0: np.float64(562.8645768830314), 1: np.float64(545.7866027951144)}\n", + "FUSS: {0: np.float64(0.05481357546495249), 1: np.float64(177.09526727246856)}\n", + "E077: {0: np.float64(450.26324621174393), 1: np.float64(523.2862729970777)}\n", + "B068: {0: np.float64(241.18080306593515), 1: np.float64(193.0522981725442)}\n", + "YULB: {0: np.float64(27.889598963768044), 1: np.float64(17.57430283001025)}\n", + "HWA: {0: np.float64(112.98861711561666), 1: np.float64(250.7439507975412)}\n", + "EGC: {0: np.float64(746.8987947555266), 1: np.float64(521.0498586472333)}\n", + "NNSH: {0: np.float64(35.72498724245651), 1: np.float64(90.16297307664342)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:10,446 - INFO - code == 0 stations for event95: set()\n", + "2026-06-18 15:17:10,447 - INFO - horizontal elements not enough stations for event95: {}\n", + "2026-06-18 15:17:10,448 - INFO - Event: 96 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "B215: {0: np.float64(254.2870345087229), 1: np.float64(264.5092015193582)}\n", + "WPL: {0: np.float64(2.7789868264505824), 1: np.float64(5.78985639509694)}\n", + "SM02: {0: np.float64(493.33907569657924), 1: np.float64(752.6087626165355)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:10,549 - WARNING - time data '2024-04-03T01:22:45' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:10,566 - WARNING - time data '2024-04-03T01:22:45' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:10,576 - WARNING - time data '2024-04-03T01:22:45' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:10,577 - WARNING - time data '2024-04-03T01:24:25' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:10,590 - WARNING - time data '2024-04-03T01:22:45' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:10,591 - WARNING - time data '2024-04-03T01:24:25' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SM06: {0: np.float64(28.9050338551414), 1: np.float64(22.8854761530708)}\n", + "NNSH: {0: np.float64(223.97050047568484), 1: np.float64(137.46367932307322)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:10,609 - INFO - code == 0 stations for event78: {'LATB', 'HOPB'}\n", + "2026-06-18 15:17:10,610 - INFO - horizontal elements not enough stations for event78: {}\n", + "2026-06-18 15:17:10,611 - INFO - Event: 79 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "F059: {0: np.float64(23.109512648376477), 1: np.float64(20.656967220121615)}\n", + "ESL: {0: np.float64(340.8489106076243), 1: np.float64(304.73714481201904)}\n", + "SM09: {0: np.float64(41.44597146526993), 1: np.float64(42.31623519693295)}\n", + "SM06: {0: np.float64(1699.927568863431), 1: np.float64(1234.7985362458617)}\n", + "HOPB: {0: np.float64(7.2664898911636735), 1: np.float64(5.0225495106246285)}\n", + "E037: {0: np.float64(1277.5388634761723), 1: np.float64(1556.1092030395744)}\n", + "SM39: {0: np.float64(78.13066877603484), 1: np.float64(64.40586496655841)}\n", + "E004: {0: np.float64(1658.938690213458), 1: np.float64(1067.8456003196159)}\n", + "SM02: {0: np.float64(25.554243343411464), 1: np.float64(23.5133393245643)}\n", + "SM09: {0: np.float64(1059.4602239738665), 1: np.float64(1292.1054702821991)}\n", + "SM39: {0: np.float64(2268.795229608616), 1: np.float64(2402.394652379632)}\n", + "B215: {0: np.float64(488.5266316618378), 1: np.float64(312.42567449532567)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:11,033 - INFO - code == 0 stations for event79: set()\n", + "2026-06-18 15:17:11,034 - INFO - horizontal elements not enough stations for event79: {}\n", + "2026-06-18 15:17:11,035 - INFO - Event: 80 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "HWA: {0: np.float64(13.814345626222249), 1: np.float64(9.701918934816659)}\n", + "WPL: {0: np.float64(6.986649486039086), 1: np.float64(9.050962916023556)}\n", + "EWT: {0: np.float64(1.9420222832611984), 1: np.float64(2.5336470551242933)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:11,122 - INFO - code == 0 stations for event96: set()\n", + "2026-06-18 15:17:11,123 - INFO - horizontal elements not enough stations for event96: {}\n", + "2026-06-18 15:17:11,124 - INFO - Event: 97 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WFEN: {0: np.float64(11.192554499881709), 1: np.float64(11.140427930657133)}\n", + "YHNB: {0: np.float64(16.98581542921162), 1: np.float64(12.18186981035377)}\n", + "SM06: {0: np.float64(8.655540534221695), 1: np.float64(11.050175574000015)}\n", + "B090: {0: np.float64(10.604425960308483), 1: np.float64(10.773225294108009)}\n", + "SM39: {0: np.float64(206.65898049332418), 1: np.float64(188.04612122302103)}\n", + "SHUL: {0: np.float64(4.418920098237278), 1: np.float64(3.079049175428346)}\n", + "YUS: {0: np.float64(17.62593513404542), 1: np.float64(20.59868140434063)}\n", + "E077: {0: np.float64(17.27482784358256), 1: np.float64(19.0398218254674)}\n", + "SM09: {0: np.float64(16.01536582101887), 1: np.float64(15.731969656280643)}\n", + "SHUL: {0: np.float64(25.984565489003927), 1: np.float64(27.98168931767509)}\n", + "HOPB: {0: np.float64(9.069890985462482), 1: np.float64(13.492275670929125)}\n", + "F002: {0: np.float64(21.06618284076497), 1: np.float64(18.184826539484696)}\n", + "EGC: {0: np.float64(7.676851193699394), 1: np.float64(6.266883951807292)}\n", + "SML: {0: np.float64(23.237643414260443), 1: np.float64(16.13045666163692)}\n", + "SM39: {0: np.float64(35.54946086178594), 1: np.float64(41.990970035956394)}\n", + "B071: {0: np.float64(10.486907910447849), 1: np.float64(5.447908390744104)}\n", + "ALS: {0: np.float64(5.69026307029716), 1: np.float64(6.492582452696256)}\n", + "F059: {0: np.float64(61.75471104229989), 1: np.float64(71.09160027550064)}\n", + "SM02: {0: np.float64(10.99431231572694), 1: np.float64(11.719888273959858)}\n", + "B138: {0: np.float64(16.910529719389363), 1: np.float64(14.15444405751298)}\n", + "C024: {0: np.float64(13.983778360093007), 1: np.float64(13.104765555969662)}\n", + "ALS: {0: np.float64(16.930812162799718), 1: np.float64(17.107900439220852)}\n", + "HWA: {0: np.float64(4.422192081138493), 1: np.float64(3.5106290066395687)}\n", + "B045: {0: np.float64(18.497011693950625), 1: np.float64(16.951810048389515)}\n", + "EWT: {0: np.float64(0.7399196328270512), 1: np.float64(1.2298620848562556)}\n", + "NNSH: {0: np.float64(1.280685899611543), 1: np.float64(0.8102318271936413)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:12,087 - INFO - code == 0 stations for event97: set()\n", + "2026-06-18 15:17:12,088 - INFO - horizontal elements not enough stations for event97: {}\n", + "2026-06-18 15:17:12,089 - INFO - Event: 98 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "HWA: {0: np.float64(30.795951897892014), 1: np.float64(36.35289212494284)}\n", + "FUSS: {0: np.float64(0.003118609414454139), 1: np.float64(4.57998980575451)}\n", + "TDCB: {0: np.float64(5.8188705950056), 1: np.float64(7.998820514272281)}\n", + "SML: {0: np.float64(12.621423376924705), 1: np.float64(10.720675869615054)}\n", + "ESL: {0: np.float64(16.04846841615123), 1: np.float64(23.172002242568524)}\n", + "ESL: {0: np.float64(12.157909590384769), 1: np.float64(14.113400479925334)}\n", + "SSLB: {0: np.float64(4.398055476949106), 1: np.float64(5.59932256017844)}\n", + "SM09: {0: np.float64(91.91068401806162), 1: np.float64(149.17672883681175)}\n", + "SM06: {0: np.float64(42.574828372596855), 1: np.float64(49.762549054021825)}\n", + "HOPB: {0: np.float64(76.75591393320117), 1: np.float64(59.036555496639195)}\n", + "B071: {0: np.float64(3.536852676303956), 1: np.float64(2.805139884292684)}\n", + "WUSB: {0: np.float64(20.037828604729253), 1: np.float64(24.31841482026357)}\n", + "TDCB: {0: np.float64(3.8770720961118683), 1: np.float64(3.1220621378326068)}\n", + "B148: {0: np.float64(14.890833616768463), 1: np.float64(9.697203099385698)}\n", + "F059: {0: np.float64(32.36921135752569), 1: np.float64(35.14158343919054)}\n", + "B189: {0: np.float64(8.286217357616449), 1: np.float64(7.327001367651944)}\n", + "E077: {0: np.float64(17.266560483113626), 1: np.float64(19.049863879685795)}\n", + "E077: {0: np.float64(19.513744886696244), 1: np.float64(16.371320155336345)}\n", + "SM09: {0: np.float64(33.4576988989642), 1: np.float64(90.21848094069344)}\n", + "B215: {0: np.float64(18.993761494513826), 1: np.float64(11.974698740594723)}\n", + "NDS: {0: np.float64(2.4128948670234154), 1: np.float64(5.300377580315433)}\n", + "GWUB: {0: np.float64(16.820240280595947), 1: np.float64(35.82909068236723)}\n", + "EGC: {0: np.float64(43.5196558853276), 1: np.float64(37.52259602586743)}\n", + "SM02: {0: np.float64(110.09987572903873), 1: np.float64(93.45393094839548)}\n", + "SM39: {0: np.float64(74.83544853910928), 1: np.float64(75.8131020606947)}\n", + "EGFH: {0: np.float64(2.4137128702858206), 1: np.float64(3.023568605360779)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:12,927 - INFO - code == 0 stations for event80: set()\n", + "2026-06-18 15:17:12,928 - INFO - horizontal elements not enough stations for event80: {}\n", + "2026-06-18 15:17:12,929 - INFO - Event: 81 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SM02: {0: np.float64(38.54742990494436), 1: np.float64(52.72671181826675)}\n", + "SM39: {0: np.float64(363.59457947685144), 1: np.float64(653.8489336050415)}\n", + "YUS: {0: np.float64(8.885433885895434), 1: np.float64(11.421697528766641)}\n", + "HWA: {0: np.float64(13.941980106335608), 1: np.float64(10.630534354353154)}\n", + "EWT: {0: np.float64(5.837682584899483), 1: np.float64(6.999265518099374)}\n", + "SHUL: {0: np.float64(12.229155818658759), 1: np.float64(18.733116738911754)}\n", + "WUSB: {0: np.float64(10.691581716018879), 1: np.float64(17.480941186021038)}F059: {0: np.float64(65.35020394790591), 1: np.float64(80.181363995529)}\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:13,260 - INFO - code == 0 stations for event98: set()\n", + "2026-06-18 15:17:13,261 - INFO - horizontal elements not enough stations for event98: {}\n", + "2026-06-18 15:17:13,262 - INFO - Event: 99 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "B138: {0: np.float64(11.527621310384509), 1: np.float64(7.674696622096469)}\n", + "WPL: {0: np.float64(1.6558974465480212), 1: np.float64(2.207878803943867)}\n", + "SML: {0: np.float64(4.3601691670056555), 1: np.float64(8.64831061130277)}\n", + "NDS: {0: np.float64(11.30478768040218), 1: np.float64(11.023005551275466)}\n", + "ESL: {0: np.float64(19.13155731854243), 1: np.float64(27.518109318947715)}\n", + "C024: {0: np.float64(7.096949341680959), 1: np.float64(8.111076396287125)}\n", + "SM06: {0: np.float64(547.793065659836), 1: np.float64(552.2059590903942)}\n", + "HWA: {0: np.float64(25.641207612038176), 1: np.float64(25.404842653765634)}\n", + "SHUL: {0: np.float64(10.930944866137448), 1: np.float64(8.520206002286562)}\n", + "TDCB: {0: np.float64(18.72269366449149), 1: np.float64(17.82932832773418)}\n", + "SSLB: {0: np.float64(2.471487491811017), 1: np.float64(1.3246981623831742)}\n", + "LATB: {0: np.float64(21.502319700582312), 1: np.float64(42.42237737342058)}\n", + "F059: {0: np.float64(94.70980583696945), 1: np.float64(118.58817232572915)}\n", + "ESL: {0: np.float64(19.190693101656702), 1: np.float64(20.33594806548652)}\n", + "HOPB: {0: np.float64(17.832465793980735), 1: np.float64(14.150938246993206)}\n", + "SM39: {0: np.float64(36.27386817666625), 1: np.float64(51.02156342641482)}\n", + "SM06: {0: np.float64(66.07183501555006), 1: np.float64(69.02922653687435)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:13,925 - WARNING - time data '2024-04-03T01:23:56' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:13,927 - WARNING - time data '2024-04-03T01:24:16' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:13,936 - WARNING - time data '2024-04-03T01:23:56' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:13,937 - WARNING - time data '2024-04-03T01:24:16' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:13,943 - WARNING - time data '2024-04-03T01:23:56' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:13,944 - WARNING - time data '2024-04-03T01:24:16' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:13,945 - WARNING - time data '2024-04-03T01:22:16' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:13,947 - WARNING - time data '2024-04-03T01:25:56' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:13,958 - WARNING - time data '2024-04-03T01:23:56' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:13,958 - WARNING - time data '2024-04-03T01:24:16' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:13,959 - WARNING - time data '2024-04-03T01:22:16' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:13,960 - WARNING - time data '2024-04-03T01:25:56' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SM09: {0: np.float64(238.73427151055427), 1: np.float64(938.674109305914)}\n", + "SM02: {0: np.float64(30.331310164814337), 1: np.float64(49.80789549510593)}\n", + "HOPB: {0: np.float64(50.92166413494851), 1: np.float64(70.68966133447064)}\n", + "WUSB: {0: np.float64(31.431988097034854), 1: np.float64(57.37346743877201)}\n", + "HWA: {0: np.float64(38.50135798213559), 1: np.float64(62.65194906866393)}\n", + "FUSS: {0: np.float64(0.004054188573186892), 1: np.float64(13.386282949110873)}\n", + "WUSB: {0: np.float64(8.284062783622836), 1: np.float64(9.175731241868997)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:14,237 - INFO - code == 0 stations for event99: set()\n", + "2026-06-18 15:17:14,238 - INFO - horizontal elements not enough stations for event99: {}\n", + "2026-06-18 15:17:14,239 - INFO - Event: 100 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "E077: {0: np.float64(24.20812398225843), 1: np.float64(41.77643636003132)}\n", + "TDCB: {0: np.float64(3.3838396414100367), 1: np.float64(5.1487542309055945)}\n", + "B215: {0: np.float64(16.379452168010324), 1: np.float64(15.347555713876586)}\n", + "SM02: {0: np.float64(89.48623968127868), 1: np.float64(155.51786788568134)}\n", + "E037: {0: np.float64(25.22306546254401), 1: np.float64(25.62349060961357)}\n", + "B189: {0: np.float64(9.883071722608069), 1: np.float64(6.162319887380096)}\n", + "EGFH: {0: np.float64(1.4886638504100118), 1: np.float64(1.5119768896441568)}\n", + "E077: {0: np.float64(19.371635087842755), 1: np.float64(21.70949868799598)}\n", + "NNSH: {0: np.float64(11.524247759941078), 1: np.float64(9.345663880435001)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:14,529 - INFO - code == 0 stations for event81: set()\n", + "2026-06-18 15:17:14,530 - INFO - horizontal elements not enough stations for event81: {}\n", + "2026-06-18 15:17:14,531 - INFO - Event: 82 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "E023: {0: np.float64(19.606525758275573), 1: np.float64(15.85320338441397)}\n", + "F002: {0: np.float64(8.419860699469188), 1: np.float64(7.2553161122512115)}\n", + "SM09: {0: np.float64(179.00892300951585), 1: np.float64(203.92328354434292)}\n", + "B148: {0: np.float64(5.109823140564829), 1: np.float64(6.30330261601107)}\n", + "HOPB: {0: np.float64(62.79388221616948), 1: np.float64(45.26322857398922)}\n", + "TDCB: {0: np.float64(2.1994567950374635), 1: np.float64(3.5107831369420506)}\n", + "YHNB: {0: np.float64(11.2689889544047), 1: np.float64(14.182274933855709)}\n", + "SML: {0: np.float64(14.22185551359207), 1: np.float64(14.033769413299407)}\n", + "SM39: {0: np.float64(199.85952257701754), 1: np.float64(171.1777598097756)}\n", + "ESL: {0: np.float64(9.577384563518093), 1: np.float64(11.232038031612358)}\n", + "B215: {0: np.float64(17.697189071849106), 1: np.float64(15.844956051072469)}\n", + "SM06: {0: np.float64(30.55244463156511), 1: np.float64(27.086159935870285)}\n", + "GWUB: {0: np.float64(20.05365640646576), 1: np.float64(22.974972236775315)}\n", + "F059: {0: np.float64(39.63956685230351), 1: np.float64(42.45236544548976)}\n", + "SM02: {0: np.float64(44.14937085581161), 1: np.float64(78.17654695284271)}\n", + "TPUB: {0: np.float64(3.3466662345581337), 1: np.float64(2.573420276815127)}\n", + "EWT: {0: np.float64(7.636814708377162), 1: np.float64(10.617216204133987)}\n", + "E077: {0: np.float64(4.397687220524898), 1: np.float64(5.342024894779761)}\n", + "NNSH: {0: np.float64(18.937318706920223), 1: np.float64(14.050215232880065)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:15,124 - INFO - code == 0 stations for event100: set()\n", + "2026-06-18 15:17:15,125 - INFO - horizontal elements not enough stations for event100: {}\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "HOPB: {0: np.float64(11.986371131180128), 1: np.float64(17.140331893441473)}" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:15,126 - INFO - Event: 101 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "SM09: {0: np.float64(22.614822773048243), 1: np.float64(29.521900220240806)}\n", + "F002: {0: np.float64(9.334812470340225), 1: np.float64(13.630356636430296)}\n", + "C024: {0: np.float64(19.44140469209731), 1: np.float64(22.062499819007204)}\n", + "SM39: {0: np.float64(49.32746001619022), 1: np.float64(82.60269925816519)}\n", + "FUSS: {0: np.float64(0.0031404984958083764), 1: np.float64(3.188646429973398)}\n", + "B215: {0: np.float64(6.851644595248531), 1: np.float64(4.480099017439483)}\n", + "TDCB: {0: np.float64(3.3888863593562135), 1: np.float64(5.1537113797471035)}\n", + "YUS: {0: np.float64(8.447578633702781), 1: np.float64(10.753619193600366)}\n", + "ESL: {0: np.float64(13.854697477830596), 1: np.float64(14.072138041539477)}\n", + "SM02: {0: np.float64(18.378430953133172), 1: np.float64(21.60714646762672)}\n", + "SM06: {0: np.float64(36.73627750573654), 1: np.float64(25.44634385914114)}\n", + "F059: {0: np.float64(47.93661301434616), 1: np.float64(39.94105916561583)}\n", + "SM09: {0: np.float64(28.02569342990693), 1: np.float64(38.93533794996628)}\n", + "HWA: {0: np.float64(9.773724956756487), 1: np.float64(11.395653562572226)}\n", + "B138: {0: np.float64(10.826270963548124), 1: np.float64(9.42382744722375)}\n", + "WUSB: {0: np.float64(10.112476052969066), 1: np.float64(10.539766647754218)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:15,714 - INFO - code == 0 stations for event82: set()\n", + "2026-06-18 15:17:15,714 - INFO - horizontal elements not enough stations for event82: {}\n", + "2026-06-18 15:17:15,715 - INFO - Event: 83 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "C024: {0: np.float64(4.4542146576810735), 1: np.float64(5.543275458813402)}\n", + "WPL: {0: np.float64(42.28498686175584), 1: np.float64(132.5742490581998)}\n", + "EGC: {0: np.float64(30.362565711401224), 1: np.float64(22.7383505407235)}\n", + "WFEN: {0: np.float64(29.88257672734689), 1: np.float64(33.286136358021714)}\n", + "SM39: {0: np.float64(57.40826992462881), 1: np.float64(61.35907592696735)}\n", + "WCS: {0: np.float64(19.74916029224422), 1: np.float64(17.66872653961637)}\n", + "GWUB: {0: np.float64(16.69620344082901), 1: np.float64(19.129295045486668)}\n", + "SM02: {0: np.float64(33.9526484491251), 1: np.float64(34.812562751113454)}\n", + "E037: {0: np.float64(110.31481103486306), 1: np.float64(90.21323399317684)}\n", + "F042: {0: np.float64(18.704238165108503), 1: np.float64(19.103945887397863)}\n", + "WJS: {0: np.float64(6.744288661539382), 1: np.float64(21.5909151171367)}\n", + "HWA: {0: np.float64(7.7393401223625), 1: np.float64(7.941376394787669)}\n", + "YHNB: {0: np.float64(49.3844239573612), 1: np.float64(59.29141979808905)}\n", + "WUSB: {0: np.float64(20.59394344973568), 1: np.float64(27.665827649257203)}\n", + "B090: {0: np.float64(45.07236413730131), 1: np.float64(39.83782496409916)}\n", + "EGFH: {0: np.float64(1.2836082980345456), 1: np.float64(1.2152146189864086)}\n", + "SM39: {0: np.float64(772.8744258110858), 1: np.float64(1149.9503408867906)}\n", + "YUS: {0: np.float64(109.89436201405029), 1: np.float64(111.99940145370934)}\n", + "NNSH: {0: np.float64(2.999353372404961), 1: np.float64(2.1722181009616364)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:16,407 - INFO - code == 0 stations for event101: set()\n", + "2026-06-18 15:17:16,408 - INFO - horizontal elements not enough stations for event101: {}\n", + "2026-06-18 15:17:16,409 - INFO - Event: 102 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "LATB: {0: np.float64(26.785723569749358), 1: np.float64(44.232116172133686)}\n", + "E037: {0: np.float64(44.308244860221706), 1: np.float64(46.25027624951358)}\n", + "SHUL: {0: np.float64(62.928601353965426), 1: np.float64(66.8273478657572)}\n", + "E077: {0: np.float64(31.05764786783633), 1: np.float64(36.11572286146596)}\n", + "EOS4: {0: np.float64(79.813874703506), 1: np.float64(48.91224214270813)}\n", + "E023: {0: np.float64(23.255697745600862), 1: np.float64(36.96656500128788)}\n", + "F002: {0: np.float64(71.46577233052054), 1: np.float64(49.09550106860372)}\n", + "HOPB: {0: np.float64(33.55842660235002), 1: np.float64(96.6800486561866)}\n", + "WHP: {0: np.float64(31.832782656694057), 1: np.float64(24.352689440836006)}\n", + "E004: {0: np.float64(33.9194732247374), 1: np.float64(57.787097291877814)}\n", + "B071: {0: np.float64(39.4520256608801), 1: np.float64(47.13603569012093)}\n", + "NDS: {0: np.float64(8.719539303196102), 1: np.float64(10.120400612594178)}\n", + "F059: {0: np.float64(279.1014750375207), 1: np.float64(409.9445136876666)}\n", + "EWT: {0: np.float64(8.301171046807351), 1: np.float64(11.438296517829206)}\n", + "ELD: {0: np.float64(14.754622490342104), 1: np.float64(9.044879940618138)}\n", + "B138: {0: np.float64(72.90211319259424), 1: np.float64(59.49748792660037)}\n", + "NNSH: {0: np.float64(5.884697624891761), 1: np.float64(4.793651715193083)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:16,975 - INFO - code == 0 stations for event102: set()\n", + "2026-06-18 15:17:16,976 - INFO - horizontal elements not enough stations for event102: {}\n", + "2026-06-18 15:17:16,977 - INFO - Event: 103 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "FUSB: {0: np.float64(22.276341491953808), 1: np.float64(16.28683451554956)}\n", + "LATB: {0: np.float64(11.26570823842576), 1: np.float64(12.563278119990144)}\n", + "NDS: {0: np.float64(17.26935094097742), 1: np.float64(11.067435395014508)}\n", + "C024: {0: np.float64(57.850336237898134), 1: np.float64(44.96233137355554)}\n", + "SHUL: {0: np.float64(6.046261825786763), 1: np.float64(10.998436898973125)}\n", + "ALS: {0: np.float64(42.18738098078886), 1: np.float64(69.52238723539864)}\n", + "EOS3: {0: np.float64(10.201864902895558), 1: np.float64(47.61792972408246)}\n", + "B045: {0: np.float64(76.02515349665521), 1: np.float64(58.687219779060065)}F059: {0: np.float64(20.534153747420692), 1: np.float64(22.92516391505045)}\n", + "\n", + "E077: {0: np.float64(13.910502142901622), 1: np.float64(7.3386808300415804)}\n", + "E023: {0: np.float64(9.25399540859832), 1: np.float64(9.856213694532258)}\n", + "HWA: {0: np.float64(110.75166266201275), 1: np.float64(170.63853059890428)}\n", + "SM09: {0: np.float64(17.759269307844647), 1: np.float64(23.943495390066808)}\n", + "TPUB: {0: np.float64(22.829896097383692), 1: np.float64(18.136864880607398)}\n", + "HOPB: {0: np.float64(34.30253380675965), 1: np.float64(52.01264716522449)}\n", + "TDCB: {0: np.float64(28.23679099608507), 1: np.float64(51.9311130115417)}\n", + "EWT: {0: np.float64(7.738829423974188), 1: np.float64(12.124868524165981)}\n", + "LATB: {0: np.float64(50.6834716418028), 1: np.float64(43.104744112412796)}\n", + "E004: {0: np.float64(15.013356340205803), 1: np.float64(22.617949422216643)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:17,656 - WARNING - time data '2024-04-03T01:25:40' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:17,657 - WARNING - time data '2024-04-03T01:26:00' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:17,667 - WARNING - time data '2024-04-03T01:25:40' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:17,668 - WARNING - time data '2024-04-03T01:26:00' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:17,674 - WARNING - time data '2024-04-03T01:25:40' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:17,675 - WARNING - time data '2024-04-03T01:26:00' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:17,676 - WARNING - time data '2024-04-03T01:24:00' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:17,676 - WARNING - time data '2024-04-03T01:27:40' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:17,687 - WARNING - time data '2024-04-03T01:25:40' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:17,688 - WARNING - time data '2024-04-03T01:26:00' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ESL: {0: np.float64(169.4271890902967), 1: np.float64(97.1372756644954)}" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:17,689 - WARNING - time data '2024-04-03T01:24:00' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:17,690 - WARNING - time data '2024-04-03T01:27:40' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "YHNB: {0: np.float64(4.189087250973072), 1: np.float64(3.1085475697672975)}\n", + "SM39: {0: np.float64(27.018097790472847), 1: np.float64(33.60269280855822)}\n", + "SM06: {0: np.float64(264.83174582202525), 1: np.float64(273.0334564240731)}\n", + "YUS: {0: np.float64(4.538479620906802), 1: np.float64(4.573282952288878)}\n", + "SSLB: {0: np.float64(27.762258501684215), 1: np.float64(33.842753716363305)}\n", + "SM02: {0: np.float64(16.021079399745982), 1: np.float64(11.25897039731381)}\n", + "E023: {0: np.float64(58.29340901018222), 1: np.float64(60.33253572736138)}\n", + "SM09: {0: np.float64(397.51534117258296), 1: np.float64(655.7835588476859)}\n", + "HOPB: {0: np.float64(120.70599612051329), 1: np.float64(157.58879395453087)}\n", + "HWA: {0: np.float64(3.901943540137293), 1: np.float64(4.18238628168517)}\n", + "E004: {0: np.float64(69.98528948019437), 1: np.float64(89.12878291750565)}\n", + "ECB: {0: np.float64(3.2845180058952264), 1: np.float64(3.52354766840432)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:18,118 - INFO - code == 0 stations for event103: set()\n", + "2026-06-18 15:17:18,119 - INFO - horizontal elements not enough stations for event103: {}\n", + "2026-06-18 15:17:18,120 - INFO - Event: 104 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WDLH: {0: np.float64(17.200525233518114), 1: np.float64(24.003397757406884)}\n", + "WPL: {0: np.float64(2.1635194318821886), 1: np.float64(3.3208547467980605)}\n", + "B078: {0: np.float64(33.35345117733763), 1: np.float64(36.61197677407762)}\n", + "EWT: {0: np.float64(32.12769805385867), 1: np.float64(31.979507550548675)}\n", + "WCS: {0: np.float64(0.8151357210366439), 1: np.float64(0.5614677703157761)}\n", + "WUSB: {0: np.float64(232.79601937381113), 1: np.float64(270.15958617090996)}\n", + "SM39: {0: np.float64(88.61478811848396), 1: np.float64(61.24842799388242)}\n", + "NFF: {0: np.float64(18.094322087581986), 1: np.float64(25.533549111261426)}\n", + "YUS: {0: np.float64(11.31817774467556), 1: np.float64(11.733330059193351)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:18,386 - WARNING - time data '2024-04-03T01:13:23' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:18,387 - WARNING - time data '2024-04-03T01:13:43' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:18,397 - WARNING - time data '2024-04-03T01:13:23' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:18,398 - WARNING - time data '2024-04-03T01:13:43' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:18,405 - WARNING - time data '2024-04-03T01:13:23' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:18,405 - WARNING - time data '2024-04-03T01:13:43' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:18,406 - WARNING - time data '2024-04-03T01:11:43' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:18,407 - WARNING - time data '2024-04-03T01:15:23' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:18,417 - WARNING - time data '2024-04-03T01:13:23' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:18,418 - WARNING - time data '2024-04-03T01:13:43' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:18,419 - WARNING - time data '2024-04-03T01:11:43' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:18,419 - WARNING - time data '2024-04-03T01:15:23' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "B148: {0: np.float64(77.67337667390643), 1: np.float64(73.06283964173953)}\n", + "SYNB: {0: np.float64(43.48976226864816), 1: np.float64(28.73933923460505)}\n", + "SHUL: {0: np.float64(27.026751847799595), 1: np.float64(53.123342845994834)}\n", + "F002: {0: np.float64(14.464655133859614), 1: np.float64(13.53430077412136)}\n", + "FUSS: {0: np.float64(0.007643968555009739), 1: np.float64(24.386071251802996)}\n", + "SML: {0: np.float64(8.782581107251199), 1: np.float64(11.401798510132998)}\n", + "EHYH: {0: np.float64(8.537421040352202), 1: np.float64(11.866503204561006)}\n", + "F059: {0: np.float64(128.50404071708624), 1: np.float64(175.7231220630018)}\n", + "EOS3: {0: np.float64(20.923208726289047), 1: np.float64(112.56548533085228)}\n", + "C024: {0: np.float64(4.075360210365965), 1: np.float64(5.083648182708602)}\n", + "B189: {0: np.float64(54.60658360431033), 1: np.float64(31.616452965582383)}\n", + "ALS: {0: np.float64(5.128818817400921), 1: np.float64(5.44782272190371)}\n", + "E077: {0: np.float64(65.10862635987189), 1: np.float64(64.88213289034385)}\n", + "B068: {0: np.float64(57.64855381532786), 1: np.float64(53.60001853590869)}\n", + "HGSD: {0: np.float64(151.5212364965922), 1: np.float64(284.59254404884655)}\n", + "HWA: {0: np.float64(14.06210129994477), 1: np.float64(13.332329023851418)}\n", + "YULB: {0: np.float64(16.503288674587235), 1: np.float64(19.83244989037615)}\n", + "ECB: {0: np.float64(5.439717833978032), 1: np.float64(5.080787061865947)}\n", + "EGC: {0: np.float64(216.97506141726), 1: np.float64(106.56062349615088)}\n", + "TDCB: {0: np.float64(1.3750434421202944), 1: np.float64(2.009009969573841)}\n", + "B215: {0: np.float64(152.28930874503948), 1: np.float64(110.17805410585164)}\n", + "ESL: {0: np.float64(73.40961847933053), 1: np.float64(62.72018612543892)}\n", + "SM06: {0: np.float64(32.150998424019726), 1: np.float64(34.35466256423737)}\n", + "WCKO: {0: np.float64(19.31349095591291), 1: np.float64(18.78098783890687)}\n", + "SSLB: {0: np.float64(3.6449745402965243), 1: np.float64(2.631070259954229)}\n", + "GWUB: {0: np.float64(44.16626290888221), 1: np.float64(71.96951479574813)}\n", + "SM09: {0: np.float64(26.246339522209208), 1: np.float64(35.327936633092555)}\n", + "SM02: {0: np.float64(270.73487540002884), 1: np.float64(224.530956118909)}\n", + "HOPB: {0: np.float64(4.6987532177752085), 1: np.float64(4.043823806322725)}\n", + "EGFH: {0: np.float64(7.031366111301352), 1: np.float64(6.121055267717426)}\n", + "WUSB: {0: np.float64(13.837790948384272), 1: np.float64(9.259043275929164)}\n", + "B148: {0: np.float64(6.507253047449595), 1: np.float64(7.394861814258668)}\n", + "NNSH: {0: np.float64(19.39403733187365), 1: np.float64(32.47550864262563)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:19,555 - INFO - code == 0 stations for event83: set()\n", + "2026-06-18 15:17:19,555 - INFO - horizontal elements not enough stations for event83: {}\n", + "2026-06-18 15:17:19,556 - INFO - Event: 84 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WPL: {0: np.float64(13.926228107633015), 1: np.float64(13.834637129223893)}EHYH: {0: np.float64(2.795081300332426), 1: np.float64(1.847904117009768)}\n", + "\n", + "YHNB: {0: np.float64(47.953915178412316), 1: np.float64(51.33038354767688)}\n", + "FUSS: {0: np.float64(0.0032691848896184116), 1: np.float64(2.0490992088021596)}\n", + "B090: {0: np.float64(22.11896697895145), 1: np.float64(21.837519957815655)}\n", + "B189: {0: np.float64(1.8278264201964842), 1: np.float64(1.766702813121633)}\n", + "SM39: {0: np.float64(592.1022455227562), 1: np.float64(765.059611333436)}\n", + "E077: {0: np.float64(5.005898092406098), 1: np.float64(5.091495401772065)}\n", + "YUS: {0: np.float64(105.09008406304446), 1: np.float64(69.74866500866932)}\n", + "YULB: {0: np.float64(2.820634385571326), 1: np.float64(2.3714750990149547)}\n", + "EGC: {0: np.float64(42.44304886821718), 1: np.float64(38.087861235539606)}\n", + "SHUL: {0: np.float64(60.738480006840675), 1: np.float64(64.22556208574333)}\n", + "SM02: {0: np.float64(14.481749097280503), 1: np.float64(27.976483377688634)}\n", + "F002: {0: np.float64(56.448395786538484), 1: np.float64(123.61121764667753)}\n", + "EGFH: {0: np.float64(1.3300602020308472), 1: np.float64(3.415764855806972)}\n", + "SML: {0: np.float64(54.97959614958681), 1: np.float64(50.48633705766013)}\n", + "B071: {0: np.float64(19.190107129928865), 1: np.float64(19.05330840750015)}\n", + "NNSH: {0: np.float64(2.4115452684162593), 1: np.float64(1.0548554154193868)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:20,181 - INFO - code == 0 stations for event104: set()\n", + "2026-06-18 15:17:20,182 - INFO - horizontal elements not enough stations for event104: {}\n", + "2026-06-18 15:17:20,182 - INFO - Event: 105 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "F059: {0: np.float64(197.63531598848704), 1: np.float64(238.93670616512296)}\n", + "WFEN: {0: np.float64(1.214730121877395), 1: np.float64(0.978674462842982)}\n", + "B045: {0: np.float64(33.39311839082717), 1: np.float64(33.721442472859735)}\n", + "FUSS: {0: np.float64(0.003952847181089307), 1: np.float64(2.613182723912362)}\n", + "TDCB: {0: np.float64(1.4688293606249616), 1: np.float64(2.0029354548175107)}\n", + "HWA: {0: np.float64(68.03721079517769), 1: np.float64(56.82268026688803)}\n", + "SML: {0: np.float64(6.11384052127357), 1: np.float64(6.638030552298142)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:20,491 - WARNING - time data '2024-04-03T01:13:52' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:20,492 - WARNING - time data '2024-04-03T01:14:12' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:20,503 - WARNING - time data '2024-04-03T01:13:52' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:20,504 - WARNING - time data '2024-04-03T01:14:12' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:20,510 - WARNING - time data '2024-04-03T01:13:52' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:20,511 - WARNING - time data '2024-04-03T01:14:12' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:20,512 - WARNING - time data '2024-04-03T01:12:12' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:20,513 - WARNING - time data '2024-04-03T01:15:52' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:20,523 - WARNING - time data '2024-04-03T01:13:52' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:20,524 - WARNING - time data '2024-04-03T01:14:12' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:20,525 - WARNING - time data '2024-04-03T01:12:12' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:20,525 - WARNING - time data '2024-04-03T01:15:52' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "B071: {0: np.float64(1.4088999879944941), 1: np.float64(1.3955823343033746)}\n", + "TDCB: {0: np.float64(12.245850254574115), 1: np.float64(22.593983003777776)}\n", + "LATB: {0: np.float64(90.86346319114803), 1: np.float64(78.17798777896158)}\n", + "WCS: {0: np.float64(0.43452298850785437), 1: np.float64(0.34771629397508624)}\n", + "ESL: {0: np.float64(59.377905523312705), 1: np.float64(50.38979297097786)}\n", + "F059: {0: np.float64(28.30916735631657), 1: np.float64(31.255210982800893)}\n", + "SM09: {0: np.float64(22.714114454514707), 1: np.float64(46.14327586313618)}\n", + "SM06: {0: np.float64(149.33703005586338), 1: np.float64(151.6594936129439)}\n", + "YULB: {0: np.float64(1.133719238482007), 1: np.float64(0.918532929831069)}\n", + "SSLB: {0: np.float64(22.516897065267003), 1: np.float64(10.85362531908031)}\n", + "SM39: {0: np.float64(36.66994217274839), 1: np.float64(56.20271247566002)}\n", + "E023: {0: np.float64(33.52576025675699), 1: np.float64(37.110319620606695)}\n", + "GWUB: {0: np.float64(2.9052723092717803), 1: np.float64(4.052090826434673)}SM09: {0: np.float64(190.02570318156137), 1: np.float64(291.6191103950704)}\n", + "\n", + "HOPB: {0: np.float64(106.25360847172479), 1: np.float64(136.67774571199075)}\n", + "SM02: {0: np.float64(32.283342981641354), 1: np.float64(35.562038255183644)}\n", + "WUSB: {0: np.float64(10.808244494525667), 1: np.float64(11.83233963365423)}B078: {0: np.float64(16.403844325183993), 1: np.float64(17.22122941978086)}\n", + "\n", + "EWT: {0: np.float64(24.970601045149206), 1: np.float64(22.6500848181558)}\n", + "NNSH: {0: np.float64(1.5014118721385195), 1: np.float64(2.191385535680346)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:21,115 - INFO - code == 0 stations for event105: set()\n", + "2026-06-18 15:17:21,116 - INFO - horizontal elements not enough stations for event105: {}\n", + "2026-06-18 15:17:21,117 - INFO - Event: 106 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WUSB: {0: np.float64(74.61210710545075), 1: np.float64(88.58854902838354)}\n", + "B148: {0: np.float64(22.618380168217865), 1: np.float64(35.390135198362444)}\n", + "SM06: {0: np.float64(19.926039838559554), 1: np.float64(15.215330372649086)}\n", + "F059: {0: np.float64(13.79279473382441), 1: np.float64(16.463218622941575)}\n", + "FUSS: {0: np.float64(0.008912692751153322), 1: np.float64(33.05490511236007)}\n", + "SM09: {0: np.float64(31.82620545567342), 1: np.float64(25.781988901925697)}\n", + "E077: {0: np.float64(95.6969446879092), 1: np.float64(50.249543065477965)}\n", + "SM39: {0: np.float64(48.37747784156341), 1: np.float64(35.46619596532156)}\n", + "HGSD: {0: np.float64(187.3549580067363), 1: np.float64(174.93724148774268)}\n", + "SM02: {0: np.float64(14.818737068228552), 1: np.float64(11.321800741768499)}\n", + "YULB: {0: np.float64(19.80738290519404), 1: np.float64(16.44343132134802)}\n", + "B215: {0: np.float64(65.42516242622546), 1: np.float64(68.30486061325118)}\n", + "SM02: {0: np.float64(188.4849532346438), 1: np.float64(176.91461879128232)}\n", + "HWA: {0: np.float64(5.141302151276815), 1: np.float64(5.930755617950936)}\n", + "NNSH: {0: np.float64(34.90353297477355), 1: np.float64(33.145068169414905)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:21,653 - INFO - code == 0 stations for event84: set()\n", + "2026-06-18 15:17:21,654 - INFO - horizontal elements not enough stations for event84: {}\n", + "2026-06-18 15:17:21,655 - INFO - Event: 85 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WUSB: {0: np.float64(7.823470470289119), 1: np.float64(9.411326768663805)}\n", + "WPL: {0: np.float64(8.537564495333156), 1: np.float64(14.261078474013292)}\n", + "NNSH: {0: np.float64(2.0819646406483434), 1: np.float64(1.9733698872876302)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:21,766 - INFO - code == 0 stations for event106: set()\n", + "2026-06-18 15:17:21,767 - INFO - horizontal elements not enough stations for event106: {}\n", + "2026-06-18 15:17:21,768 - INFO - Event: 107 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "TDCB: {0: np.float64(20.33312227454662), 1: np.float64(13.249465127698368)}\n", + "TDCB: {0: np.float64(0.3608817142407546), 1: np.float64(0.33676882287642207)}\n", + "ESL: {0: np.float64(20.026091875369833), 1: np.float64(19.95979504739442)}\n", + "EOS3: {0: np.float64(8.339670203315348), 1: np.float64(29.809375955562455)}\n", + "ESL: {0: np.float64(2.310882981521862), 1: np.float64(2.15082085728825)}\n", + "F059: {0: np.float64(70.13501584880485), 1: np.float64(91.8172096138519)}\n", + "SM09: {0: np.float64(3.381310532946016), 1: np.float64(8.791926973819063)}\n", + "B189: {0: np.float64(22.772297740819347), 1: np.float64(17.768162574136518)}\n", + "SM39: {0: np.float64(6.807646719426673), 1: np.float64(5.638344445145707)}\n", + "SM02: {0: np.float64(5.299684340042359), 1: np.float64(2.6592572427427648)}\n", + "E077: {0: np.float64(17.658903020364242), 1: np.float64(24.688537228954868)}\n", + "E004: {0: np.float64(15.79699170618349), 1: np.float64(26.674628831044615)}\n", + "HOPB: {0: np.float64(83.48554009697453), 1: np.float64(66.02138904931137)}\n", + "YHNB: {0: np.float64(18.992965926656847), 1: np.float64(15.257786622477665)}\n", + "HWA: {0: np.float64(0.834315220649789), 1: np.float64(1.235296200121435)}\n", + "B068: {0: np.float64(19.63991156844528), 1: np.float64(29.77414365715566)}\n", + "WUSB: {0: np.float64(1.1591732375453603), 1: np.float64(1.8811297608096067)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:22,283 - INFO - code == 0 stations for event107: set()\n", + "2026-06-18 15:17:22,284 - INFO - horizontal elements not enough stations for event107: {}\n", + "2026-06-18 15:17:22,288 - INFO - Event: 108 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "B138: {0: np.float64(29.88424579092739), 1: np.float64(28.343208948407582)}\n", + "ESL: {0: np.float64(3.661813302152556), 1: np.float64(6.137295465416588)}\n", + "C024: {0: np.float64(23.259018107562973), 1: np.float64(20.55137701399487)}\n", + "B215: {0: np.float64(33.52483737098903), 1: np.float64(18.859743695527534)}\n", + "SHUL: {0: np.float64(2.049496436544279), 1: np.float64(1.3727510118197865)}\n", + "YUS: {0: np.float64(54.70936347165857), 1: np.float64(60.44261606978301)}\n", + "F059: {0: np.float64(5.286950175743005), 1: np.float64(7.518723929995752)}\n", + "B078: {0: np.float64(21.116023899942086), 1: np.float64(22.264135115664384)}\n", + "HOPB: {0: np.float64(1.0716192498814192), 1: np.float64(1.24703422889083)}\n", + "WHP: {0: np.float64(16.268176093975626), 1: np.float64(17.6147275643291)}\n", + "SM02: {0: np.float64(2.246150902177361), 1: np.float64(3.037716108881236)}\n", + "NNSH: {0: np.float64(12.289221531945985), 1: np.float64(10.395887707511791)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:22,711 - INFO - code == 0 stations for event85: set()\n", + "2026-06-18 15:17:22,712 - INFO - horizontal elements not enough stations for event85: {}\n", + "2026-06-18 15:17:22,713 - INFO - Event: 86 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "EGFH: {0: np.float64(0.12093299019831652), 1: np.float64(0.18511831030715165)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:22,761 - INFO - code == 0 stations for event108: set()\n", + "2026-06-18 15:17:22,762 - INFO - horizontal elements not enough stations for event108: {}\n", + "2026-06-18 15:17:22,763 - INFO - Event: 109 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WPL: {0: np.float64(7.83608404393189), 1: np.float64(10.846018407681619)}\n", + "TDCB: {0: np.float64(0.7353342792392428), 1: np.float64(0.5373044360831022)}\n", + "WFEN: {0: np.float64(6.531084998368568), 1: np.float64(11.663556342537873)}\n", + "ESL: {0: np.float64(2.276927731446189), 1: np.float64(2.763200599951049)}\n", + "WCS: {0: np.float64(3.3299433082361114), 1: np.float64(2.1932727951536544)}\n", + "SM06: {0: np.float64(7.775884839068612), 1: np.float64(8.464712207079824)}E037: {0: np.float64(74.58800372370028), 1: np.float64(72.37646798185898)}\n", + "\n", + "YHNB: {0: np.float64(29.794741916202522), 1: np.float64(24.31001318393956)}\n", + "SM39: {0: np.float64(158.78078465814616), 1: np.float64(186.3743117449796)}\n", + "SHUL: {0: np.float64(1.8482329741979746), 1: np.float64(1.860745528101165)}\n", + "YUS: {0: np.float64(14.879784117877799), 1: np.float64(18.782617307432066)}\n", + "F059: {0: np.float64(8.15629459990798), 1: np.float64(6.678755028252806)}\n", + "E077: {0: np.float64(3.878071168219027), 1: np.float64(3.3538807127029693)}\n", + "SM09: {0: np.float64(19.121284508189326), 1: np.float64(28.142933415424025)}\n", + "SHUL: {0: np.float64(13.850016930008039), 1: np.float64(21.01111739041527)}\n", + "SM39: {0: np.float64(56.620424522642786), 1: np.float64(24.35045879162209)}SML: {0: np.float64(27.620722758220836), 1: np.float64(27.242683205765783)}\n", + "\n", + "SM02: {0: np.float64(7.555389679877586), 1: np.float64(5.524556830580658)}\n", + "B071: {0: np.float64(10.4629050755535), 1: np.float64(10.291471061899443)}\n", + "F059: {0: np.float64(51.49464742714967), 1: np.float64(55.528960788495915)}\n", + "B138: {0: np.float64(19.833738162800003), 1: np.float64(14.154743232238236)}\n", + "HWA: {0: np.float64(2.1204006842094065), 1: np.float64(3.28424357079408)}\n", + "NDS: {0: np.float64(25.16751190943666), 1: np.float64(18.01349921844789)}\n", + "EWT: {0: np.float64(1.2843884311341491), 1: np.float64(0.965560655919865)}\n", + "C024: {0: np.float64(20.544543920462875), 1: np.float64(11.736522542745693)}\n", + "ALS: {0: np.float64(19.5217951735345), 1: np.float64(10.576728108217335)}\n", + "EGFH: {0: np.float64(0.13471988704456866), 1: np.float64(0.11059255233220969)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:23,734 - INFO - code == 0 stations for event109: set()\n", + "2026-06-18 15:17:23,734 - INFO - horizontal elements not enough stations for event109: {}\n", + "2026-06-18 15:17:23,735 - INFO - Event: 110 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WPL: {0: np.float64(2.4240819540111844), 1: np.float64(3.4986912223054905)}\n", + "WCS: {0: np.float64(1.1542322855793334), 1: np.float64(1.0924414882418434)}\n", + "HWA: {0: np.float64(14.85166829805112), 1: np.float64(13.05807382688332)}\n", + "TDCB: {0: np.float64(7.732839405302397), 1: np.float64(12.822703447266324)}\n", + "EYUL: {0: np.float64(1.5911924835574702), 1: np.float64(1.1927222946061953)}\n", + "LATB: {0: np.float64(69.79072746752212), 1: np.float64(43.115278661527185)}\n", + "G041: {0: np.float64(8.321096452309101), 1: np.float64(8.555493901618108)}\n", + "ESL: {0: np.float64(13.789401149443611), 1: np.float64(18.234166871917886)}\n", + "E023: {0: np.float64(37.53088213443135), 1: np.float64(38.5788558756982)}\n", + "WJS: {0: np.float64(3.7292354096938096), 1: np.float64(9.183261833219529)}\n", + "SM09: {0: np.float64(77.24375095507067), 1: np.float64(151.273022679891)}\n", + "B090: {0: np.float64(3.7087161953055547), 1: np.float64(4.832972539695996)}\n", + "HOPB: {0: np.float64(114.62515079037337), 1: np.float64(88.87346648837749)}\n", + "YUS: {0: np.float64(12.37018785764213), 1: np.float64(19.203076406314583)}\n", + "E004: {0: np.float64(104.02142702713529), 1: np.float64(111.09448013603868)}\n", + "EWT: {0: np.float64(14.758343940927158), 1: np.float64(17.433274749102317)}\n", + "CHK: {0: np.float64(6.928255465145362), 1: np.float64(7.054513129643941)}\n", + "WUSB: {0: np.float64(20.121851563026063), 1: np.float64(25.697268344322314)}\n", + "B148: {0: np.float64(6.931035969539574), 1: np.float64(5.856707742263797)}\n", + "SHUL: {0: np.float64(16.433717930137785), 1: np.float64(23.856874644362307)}\n", + "F002: {0: np.float64(29.9383618000762), 1: np.float64(48.772926529927226)}\n", + "FUSS: {0: np.float64(0.006094408306004673), 1: np.float64(19.103266045602766)}\n", + "SML: {0: np.float64(3.999736204989249), 1: np.float64(6.789007992001146)}\n", + "B189: {0: np.float64(15.517281484676607), 1: np.float64(10.04825236881951)}\n", + "B071: {0: np.float64(14.191918021595471), 1: np.float64(11.240996507356659)}\n", + "E077: {0: np.float64(80.26572846971604), 1: np.float64(63.69411839306305)}\n", + "F059: {0: np.float64(48.078453119694665), 1: np.float64(101.99538320696088)}\n", + "B215: {0: np.float64(73.03519132773509), 1: np.float64(27.63540237366895)}\n", + "ELD: {0: np.float64(1.919487696055217), 1: np.float64(3.2789630729107744)}\n", + "GWUB: {0: np.float64(18.833694615722603), 1: np.float64(38.62315660643711)}\n", + "C024: {0: np.float64(5.057043768565025), 1: np.float64(5.357154051142699)}\n", + "SM02: {0: np.float64(38.978730540121205), 1: np.float64(63.494329778071986)}\n", + "ALS: {0: np.float64(7.074934513422488), 1: np.float64(6.9779701433937005)}\n", + "EGFH: {0: np.float64(0.9452828896708769), 1: np.float64(1.115507992325066)}\n", + "B045: {0: np.float64(55.90009773635373), 1: np.float64(30.44799617245854)}\n", + "NNSH: {0: np.float64(19.167631728879787), 1: np.float64(19.39004900225066)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:25,007 - INFO - code == 0 stations for event86: set()\n", + "2026-06-18 15:17:25,007 - INFO - horizontal elements not enough stations for event86: {}\n", + "2026-06-18 15:17:25,009 - INFO - Event: 87 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ESL: {0: np.float64(11.395672223374664), 1: np.float64(15.491831484947154)}\n", + "HWA: {0: np.float64(9.445332636306441), 1: np.float64(10.013876277122067)}\n", + "SM06: {0: np.float64(29.977562781757292), 1: np.float64(46.70371338065874)}\n", + "ECB: {0: np.float64(6.944451559999055), 1: np.float64(21.17370036734128)}\n", + "TPUB: {0: np.float64(3.5534778012635977), 1: np.float64(3.5109523522731205)}\n", + "SHUL: {0: np.float64(10.411354571572199), 1: np.float64(11.56254299437582)}\n", + "ESL: {0: np.float64(21.90412362989677), 1: np.float64(19.270380922805785)}\n", + "F059: {0: np.float64(36.032305041905886), 1: np.float64(39.7398211804118)}\n", + "SM06: {0: np.float64(29.40745577390382), 1: np.float64(59.123638591213)}\n", + "SM09: {0: np.float64(92.03528166866947), 1: np.float64(105.99638468119811)}\n", + "SSLB: {0: np.float64(1.9386918247867921), 1: np.float64(1.550784697461646)}\n", + "HOPB: {0: np.float64(8.643198567951282), 1: np.float64(13.627194224444862)}\n", + "WUSB: {0: np.float64(10.885958509235877), 1: np.float64(13.694584719743148)}\n", + "SM39: {0: np.float64(208.8379416763798), 1: np.float64(84.33208718298285)}\n", + "SYNB: {0: np.float64(3.7499558871766165), 1: np.float64(3.929412581815138)}\n", + "SM02: {0: np.float64(49.48242119596286), 1: np.float64(30.10999431030576)}\n", + "B148: {0: np.float64(5.425671614683511), 1: np.float64(4.543203234377655)}\n", + "EHYH: {0: np.float64(5.284479853535077), 1: np.float64(4.492302706128887)}\n", + "HWA: {0: np.float64(11.903992780383659), 1: np.float64(17.284332310751118)}\n", + "FUSS: {0: np.float64(0.0025972170517205664), 1: np.float64(5.590638257350941)}\n", + "NNSH: {0: np.float64(3.328507418123988), 1: np.float64(2.4329938788393948)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:25,857 - INFO - code == 0 stations for event87: set()\n", + "2026-06-18 15:17:25,858 - INFO - horizontal elements not enough stations for event87: {}\n", + "2026-06-18 15:17:25,859 - INFO - Event: 88 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "B189: {0: np.float64(21.305007138225893), 1: np.float64(15.066614552115446)}\n", + "HGSD: {0: np.float64(48.03015162956647), 1: np.float64(58.28411785808748)}\n", + "FUSS: {0: np.float64(0.0039127642347030036), 1: np.float64(2.9546846643966496)}\n", + "YULB: {0: np.float64(4.311098039657836), 1: np.float64(5.1078505984358955)}\n", + "LATB: {0: np.float64(21.328066381833004), 1: np.float64(12.68196269946631)}\n", + "EGC: {0: np.float64(108.71828784225177), 1: np.float64(130.39344420867394)}\n", + "TDCB: {0: np.float64(2.4853987315529857), 1: np.float64(2.184362018637059)}\n", + "E077: {0: np.float64(12.916823957163547), 1: np.float64(16.370186964235284)}\n", + "WCKO: {0: np.float64(2.2672725350578), 1: np.float64(3.480454304888016)}\n", + "E023: {0: np.float64(12.023827719963732), 1: np.float64(7.316316480989415)}\n", + "B078: {0: np.float64(2.3583431362937515), 1: np.float64(2.3979434239658395)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:26,231 - INFO - code == 0 stations for event110: set()\n", + "2026-06-18 15:17:26,232 - INFO - horizontal elements not enough stations for event110: {}\n", + "2026-06-18 15:17:26,233 - INFO - Event: 111 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SM09: {0: np.float64(46.875875922921594), 1: np.float64(51.03112878268397)}\n", + "WPL: {0: np.float64(13.471720923497843), 1: np.float64(22.292388271423437)}\n", + "HOPB: {0: np.float64(35.076673572658756), 1: np.float64(45.74248812356159)}\n", + "E037: {0: np.float64(159.11458678596603), 1: np.float64(185.2586499711628)}\n", + "YHNB: {0: np.float64(6.476545352294632), 1: np.float64(6.779934056242221)}\n", + "SM39: {0: np.float64(47.386568749995256), 1: np.float64(36.10130853184033)}YHNB: {0: np.float64(31.215072780027363), 1: np.float64(51.0934709110242)}\n", + "\n", + "SM02: {0: np.float64(20.759764161116248), 1: np.float64(32.2515029214232)}\n", + "SM39: {0: np.float64(237.1222087574404), 1: np.float64(314.1637815894874)}\n", + "EWT: {0: np.float64(4.6532101712946154), 1: np.float64(4.638325116425051)}\n", + "NNSH: {0: np.float64(1.8613594896434291), 1: np.float64(2.596051713386105)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:26,595 - INFO - code == 0 stations for event88: set()\n", + "2026-06-18 15:17:26,596 - INFO - horizontal elements not enough stations for event88: {}\n", + "2026-06-18 15:17:26,597 - INFO - Event: 89 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SHUL: {0: np.float64(40.47644017091742), 1: np.float64(48.195245245727094)}\n", + "WPL: {0: np.float64(44.39642164929626), 1: np.float64(71.16971818103293)}\n", + "SML: {0: np.float64(58.478984270069674), 1: np.float64(81.42167082373876)}\n", + "WFEN: {0: np.float64(104.08544294059386), 1: np.float64(121.67889331993534)}\n", + "F059: {0: np.float64(122.36835797378447), 1: np.float64(156.92765534435074)}\n", + "WCS: {0: np.float64(19.942331669622185), 1: np.float64(21.517665999108036)}\n", + "NDS: {0: np.float64(47.11335959115749), 1: np.float64(26.777844699546108)}\n", + "E037: {0: np.float64(226.37670304898162), 1: np.float64(163.93778266475087)}\n", + "TDCB: {0: np.float64(29.460132803371145), 1: np.float64(23.36915825947503)}\n", + "LATB: {0: np.float64(90.02706173822591), 1: np.float64(95.69116417486849)}\n", + "WJS: {0: np.float64(26.203195227211655), 1: np.float64(43.42310824362816)}\n", + "ESL: {0: np.float64(47.5605207204134), 1: np.float64(66.16432477132138)}\n", + "YHNB: {0: np.float64(63.3663813940551), 1: np.float64(74.23937797788152)}\n", + "SM06: {0: np.float64(157.85679249595225), 1: np.float64(88.29478405838982)}\n", + "B090: {0: np.float64(134.29283105313783), 1: np.float64(81.9282069140689)}\n", + "E023: {0: np.float64(53.39884139207461), 1: np.float64(57.435331454412555)}\n", + "SM39: {0: np.float64(1547.1428505300128), 1: np.float64(2847.865310646902)}\n", + "SM09: {0: np.float64(144.3756077104178), 1: np.float64(351.6553402923177)}\n", + "YUS: {0: np.float64(194.18673674997564), 1: np.float64(187.946186760372)}\n", + "HOPB: {0: np.float64(277.57075050412953), 1: np.float64(293.03823595206325)}\n", + "E004: {0: np.float64(138.24452023468726), 1: np.float64(134.25140882763978)}\n", + "SHUL: {0: np.float64(114.9782355189594), 1: np.float64(125.72100818893055)}\n", + "EWT: {0: np.float64(33.75143346346285), 1: np.float64(39.44886741629519)}\n", + "F002: {0: np.float64(79.68253975749414), 1: np.float64(106.38177957314024)}\n", + "WUSB: {0: np.float64(45.02584183474535), 1: np.float64(74.03685540079405)}\n", + "WHP: {0: np.float64(55.39155897488972), 1: np.float64(59.73107373390168)}\n", + "SML: {0: np.float64(412.209443412446), 1: np.float64(610.9337811724995)}\n", + "FUSS: {0: np.float64(0.013261555080269523), 1: np.float64(26.566550754923934)}\n", + "B071: {0: np.float64(125.94119954119503), 1: np.float64(129.2950972348404)}\n", + "E077: {0: np.float64(180.09249237236895), 1: np.float64(123.47594890855015)}\n", + "F059: {0: np.float64(747.3754027408909), 1: np.float64(375.0921436192444)}\n", + "B215: {0: np.float64(93.81763874202538), 1: np.float64(61.39137994690144)}\n", + "B138: {0: np.float64(161.3800907980298), 1: np.float64(178.99231365132204)}\n", + "SM02: {0: np.float64(81.0944821035169), 1: np.float64(87.15636426616103)}\n", + "FUSB: {0: np.float64(25.140900930620415), 1: np.float64(33.29449685245506)}\n", + "NNSH: {0: np.float64(34.901922589980096), 1: np.float64(41.26735245647458)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:27,790 - INFO - code == 0 stations for event111: set()\n", + "2026-06-18 15:17:27,791 - INFO - horizontal elements not enough stations for event111: {}\n", + "2026-06-18 15:17:27,792 - INFO - Event: 112 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "NDS: {0: np.float64(38.42965824290912), 1: np.float64(53.67162332244998)}\n", + "B148: {0: np.float64(4.317183477739217), 1: np.float64(5.748649330195913)}\n", + "C024: {0: np.float64(71.69507462525361), 1: np.float64(102.97564068865965)}\n", + "SM06: {0: np.float64(24.071860979848818), 1: np.float64(25.227187756352013)}\n", + "ALS: {0: np.float64(85.37161753561516), 1: np.float64(98.63014592328797)}\n", + "E077: {0: np.float64(7.490429402318916), 1: np.float64(12.848006782195736)}\n", + "B045: {0: np.float64(159.8631358577212), 1: np.float64(142.57358139668963)}\n", + "SM09: {0: np.float64(50.76100262539965), 1: np.float64(76.50847501250733)}\n", + "HOPB: {0: np.float64(26.575768035663693), 1: np.float64(40.144884815485426)}\n", + "NDS: {0: np.float64(5.0793880920653285), 1: np.float64(3.266272753324437)}\n", + "HWA: {0: np.float64(350.3530704184276), 1: np.float64(318.9216507192982)}\n", + "SM39: {0: np.float64(57.774490215403006), 1: np.float64(94.75428849445224)}\n", + "ECB: {0: np.float64(57.389552646498316), 1: np.float64(41.880077772971575)}\n", + "EWT: {0: np.float64(2.860243760726706), 1: np.float64(3.310161828479609)}\n", + "TPUB: {0: np.float64(38.968047774405676), 1: np.float64(42.52501382498953)}\n", + "TDCB: {0: np.float64(26.04851582342231), 1: np.float64(37.4208481967443)}\n", + "NNSH: {0: np.float64(2.205495186420374), 1: np.float64(2.398808140354399)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:28,390 - INFO - code == 0 stations for event112: set()\n", + "2026-06-18 15:17:28,391 - INFO - horizontal elements not enough stations for event112: {}\n", + "2026-06-18 15:17:28,392 - INFO - Event: 113 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "LATB: {0: np.float64(193.3931488909791), 1: np.float64(105.4979605731896)}\n", + "TDCB: {0: np.float64(1.6747027395938416), 1: np.float64(1.4124097205735497)}\n", + "ESL: {0: np.float64(138.76150836581448), 1: np.float64(200.28712829166503)}\n", + "LATB: {0: np.float64(4.751598254174246), 1: np.float64(5.9868515748152635)}\n", + "ESL: {0: np.float64(4.2692414590686205), 1: np.float64(5.164949190429026)}\n", + "SM06: {0: np.float64(716.5345999784047), 1: np.float64(807.7882932990925)}\n", + "SSLB: {0: np.float64(54.87691149206937), 1: np.float64(57.48526665503893)}\n", + "SM06: {0: np.float64(7.4734112472141065), 1: np.float64(8.404405483086482)}\n", + "E023: {0: np.float64(95.30179592821867), 1: np.float64(114.61378232789565)}\n", + "E077: {0: np.float64(3.234346026338073), 1: np.float64(6.323197302900897)}\n", + "SM09: {0: np.float64(584.3363044755587), 1: np.float64(1158.0161517004253)}\n", + "E023: {0: np.float64(9.141963672468114), 1: np.float64(5.38181936094752)}\n", + "HOPB: {0: np.float64(230.06228810212673), 1: np.float64(255.02079754502665)}\n", + "SM09: {0: np.float64(27.86745908402138), 1: np.float64(60.96321841667453)}\n", + "E004: {0: np.float64(162.43914655477664), 1: np.float64(165.6773359212782)}\n", + "HOPB: {0: np.float64(9.042347460501988), 1: np.float64(9.124455981476263)}\n", + "WDLH: {0: np.float64(44.10703694566214), 1: np.float64(46.457440777139325)}\n", + "NDS: {0: np.float64(3.94186866431742), 1: np.float64(4.2646938626953075)}\n", + "NFF: {0: np.float64(29.50411021400863), 1: np.float64(40.17602486979882)}\n", + "SM39: {0: np.float64(37.28792552909165), 1: np.float64(51.53223413159689)}\n", + "B148: {0: np.float64(130.1278574452551), 1: np.float64(238.64836004812224)}\n", + "SM02: {0: np.float64(12.53291754274597), 1: np.float64(15.386050790110327)}\n", + "EWT: {0: np.float64(1.6485923771828956), 1: np.float64(2.0690654273164886)}\n", + "FUSS: {0: np.float64(0.009935276496561356), 1: np.float64(45.94471775791006)}\n", + "WUSB: {0: np.float64(5.606123032813384), 1: np.float64(8.985629859512464)}\n", + "EHYH: {0: np.float64(38.76417588103982), 1: np.float64(28.556725447663577)}\n", + "NNSH: {0: np.float64(1.9122385219161018), 1: np.float64(3.1432404357956876)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:29,274 - INFO - code == 0 stations for event113: set()\n", + "2026-06-18 15:17:29,275 - INFO - horizontal elements not enough stations for event113: {}\n", + "2026-06-18 15:17:29,276 - INFO - Event: 114 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "EOS3: {0: np.float64(27.243610314223123), 1: np.float64(96.94485233484266)}\n", + "WPL: {0: np.float64(8.464504549937876), 1: np.float64(28.605417432911217)}\n", + "B189: {0: np.float64(112.17371583350237), 1: np.float64(90.78573784560281)}\n", + "WFEN: {0: np.float64(4.244382442914329), 1: np.float64(5.556314260998015)}\n", + "E077: {0: np.float64(116.79211767775016), 1: np.float64(103.5296131469743)}\n", + "WCS: {0: np.float64(3.412603457582729), 1: np.float64(3.114782584707461)}\n", + "B068: {0: np.float64(128.7080024430352), 1: np.float64(122.31134575971018)}\n", + "YHNB: {0: np.float64(16.17724250697474), 1: np.float64(10.454879720773034)}\n", + "B215: {0: np.float64(202.96734078737768), 1: np.float64(153.188255289494)}\n", + "B090: {0: np.float64(10.885336995710038), 1: np.float64(9.865026321080563)}\n", + "GWUB: {0: np.float64(93.93152330858594), 1: np.float64(133.78178202543882)}\n", + "SM39: {0: np.float64(164.7461426403413), 1: np.float64(198.50333308289598)}\n", + "SM02: {0: np.float64(375.10769921721544), 1: np.float64(594.1356525951315)}\n", + "YUS: {0: np.float64(16.2766520163306), 1: np.float64(24.07294230521097)}\n", + "EDH: {0: np.float64(6.837717951550799), 1: np.float64(9.6992648668404)}\n", + "NNSH: {0: np.float64(74.91680498311804), 1: np.float64(57.44534313579912)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:29,834 - INFO - code == 0 stations for event89: set()\n", + "2026-06-18 15:17:29,834 - INFO - horizontal elements not enough stations for event89: {}\n", + "2026-06-18 15:17:29,839 - INFO - Event: 126 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SHUL: {0: np.float64(19.05657469566434), 1: np.float64(19.92669729715332)}\n", + "WPL: {0: np.float64(6.181048881157275), 1: np.float64(8.644618504996544)}\n", + "F002: {0: np.float64(14.117550955620356), 1: np.float64(15.785624327408168)}\n", + "E037: {0: np.float64(40.21025477701373), 1: np.float64(41.82513468699523)}\n", + "WHP: {0: np.float64(4.175005762064823), 1: np.float64(4.613338150669898)}\n", + "YHNB: {0: np.float64(11.856897275546276), 1: np.float64(18.34341946190994)}\n", + "SML: {0: np.float64(23.05465345109214), 1: np.float64(31.497431974892805)}\n", + "SM39: {0: np.float64(299.123982664337), 1: np.float64(352.4443071879137)}\n", + "B071: {0: np.float64(9.979128321996122), 1: np.float64(9.487939472542166)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:30,115 - WARNING - time data '2024-04-03T01:33:32' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:30,125 - WARNING - time data '2024-04-03T01:33:32' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:30,131 - WARNING - time data '2024-04-03T01:33:32' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:30,132 - WARNING - time data '2024-04-03T01:31:52' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:30,143 - WARNING - time data '2024-04-03T01:33:32' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:30,144 - WARNING - time data '2024-04-03T01:31:52' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "F059: {0: np.float64(74.45917420434627), 1: np.float64(54.64349583851986)}\n", + "SHUL: {0: np.float64(15.953570083450895), 1: np.float64(27.056400661150754)}\n", + "CHKH: {0: np.float64(2.25283243078914), 1: np.float64(2.1674993633870256)}\n", + "SML: {0: np.float64(17.628236065370253), 1: np.float64(20.216690428741988)}\n", + "FUSB: {0: np.float64(3.3904808254814895), 1: np.float64(4.094966879255493)}\n", + "F059: {0: np.float64(36.87889933532546), 1: np.float64(46.911926884970406)}\n", + "NDS: {0: np.float64(3.2264191238253814), 1: np.float64(5.616696637379687)}\n", + "B045: {0: np.float64(5.5740225460329125), 1: np.float64(8.007893778127354)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:30,410 - WARNING - time data '2024-04-03T01:33:44' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:30,421 - WARNING - time data '2024-04-03T01:33:44' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:30,428 - WARNING - time data '2024-04-03T01:33:44' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:30,429 - WARNING - time data '2024-04-03T01:32:04' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "TDCB: {0: np.float64(5.24619329667255), 1: np.float64(5.138449181923524)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:30,448 - WARNING - time data '2024-04-03T01:33:44' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:30,449 - WARNING - time data '2024-04-03T01:32:04' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "C024: {0: np.float64(11.868854799568531), 1: np.float64(12.408753714189194)}\n", + "LATB: {0: np.float64(25.773140342285394), 1: np.float64(19.1124866993433)}\n", + "ALS: {0: np.float64(10.283387252184692), 1: np.float64(14.841048038009804)}\n", + "ESL: {0: np.float64(16.431053878511566), 1: np.float64(17.234691204713563)}\n", + "SM06: {0: np.float64(71.91294360380671), 1: np.float64(102.33744350218436)}\n", + "HWA: {0: np.float64(23.34273365275555), 1: np.float64(22.01332544794818)}\n", + "SSLB: {0: np.float64(5.136691348476606), 1: np.float64(3.034469342296074)}\n", + "ECB: {0: np.float64(7.615457702912883), 1: np.float64(5.800807766771676)}\n", + "E023: {0: np.float64(33.92359794018419), 1: np.float64(25.211406066826832)}\n", + "TPUB: {0: np.float64(2.767252250889083), 1: np.float64(2.89227974822302)}\n", + "SM09: {0: np.float64(576.5964268561919), 1: np.float64(1029.696181244164)}\n", + "TDCB: {0: np.float64(9.848046794877854), 1: np.float64(12.912731459704977)}\n", + "HOPB: {0: np.float64(74.40030355993724), 1: np.float64(56.249314374489835)}\n", + "LATB: {0: np.float64(14.857031085967568), 1: np.float64(12.850008865615246)}\n", + "E004: {0: np.float64(31.98772759835205), 1: np.float64(36.90592536550954)}\n", + "EWT: {0: np.float64(12.409873280060545), 1: np.float64(10.575329211802893)}\n", + "ESL: {0: np.float64(24.851782067370518), 1: np.float64(36.9076966796227)}\n", + "WUSB: {0: np.float64(21.9374044319384), 1: np.float64(24.016405794667932)}\n", + "SSLB: {0: np.float64(6.252752709512982), 1: np.float64(7.852598512762341)}\n", + "E023: {0: np.float64(15.614881561966634), 1: np.float64(22.600113245100808)}B148: {0: np.float64(8.814545354188333), 1: np.float64(11.339594151063904)}\n", + "\n", + "SM09: {0: np.float64(74.2647484588846), 1: np.float64(147.04455517423176)}\n", + "FUSS: {0: np.float64(0.003812106213432863), 1: np.float64(3.2555527091504795)}\n", + "HOPB: {0: np.float64(37.96793637289876), 1: np.float64(48.0643780064455)}\n", + "B189: {0: np.float64(8.473793119613234), 1: np.float64(4.27880495421973)}\n", + "WDLH: {0: np.float64(4.406214756128616), 1: np.float64(4.263608059383765)}\n", + "E077: {0: np.float64(16.47141940829316), 1: np.float64(28.044656330044628)}\n", + "B078: {0: np.float64(6.827248558847036), 1: np.float64(6.362290446765084)}\n", + "B215: {0: np.float64(22.2725496958134), 1: np.float64(20.337872998720886)}\n", + "WUSB: {0: np.float64(42.959065857700566), 1: np.float64(75.77181964507878)}\n", + "GWUB: {0: np.float64(18.539702142007005), 1: np.float64(19.19019171028872)}\n", + "NFF: {0: np.float64(3.4574240583227307), 1: np.float64(3.439008994273285)}\n", + "SM02: {0: np.float64(72.36440836890358), 1: np.float64(91.56876769557717)}\n", + "B148: {0: np.float64(17.58145649598676), 1: np.float64(15.243500603966092)}\n", + "NNSH: {0: np.float64(17.56497462284205), 1: np.float64(13.59237638488342)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:31,577 - INFO - code == 0 stations for event126: set()\n", + "2026-06-18 15:17:31,578 - INFO - horizontal elements not enough stations for event126: {}\n", + "2026-06-18 15:17:31,579 - INFO - Event: 127 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "FUSS: {0: np.float64(0.0036275030125379605), 1: np.float64(11.166347794953502)}\n", + "SM06: {0: np.float64(5.746667444660239), 1: np.float64(5.653341179218098)}\n", + "EOS3: {0: np.float64(4.078001296062734), 1: np.float64(9.539622009135936)}\n", + "E023: {0: np.float64(1.7032402778320508), 1: np.float64(1.5362317450791512)}\n", + "B189: {0: np.float64(8.386432417292127), 1: np.float64(6.600364487670829)}\n", + "SM09: {0: np.float64(12.036778218272568), 1: np.float64(9.66827959033871)}\n", + "E077: {0: np.float64(13.027874774408192), 1: np.float64(20.02401787845209)}\n", + "HOPB: {0: np.float64(4.633585560441296), 1: np.float64(5.472286374981361)}\n", + "YULB: {0: np.float64(2.1424411044815854), 1: np.float64(3.1333390503129017)}\n", + "FUSB: {0: np.float64(0.8489551684512492), 1: np.float64(0.5396681110131156)}\n", + "B215: {0: np.float64(35.29487911367578), 1: np.float64(20.777150194780525)}\n", + "SM39: {0: np.float64(15.786890819148994), 1: np.float64(15.482959474088672)}\n", + "SM02: {0: np.float64(5.123970203525288), 1: np.float64(5.499382556133682)}\n", + "WCKO: {0: np.float64(3.059926500054767), 1: np.float64(2.9636315294068623)}\n", + "NNSH: {0: np.float64(1.5078433420878827), 1: np.float64(1.1098032094857455)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:32,085 - INFO - code == 0 stations for event127: set()\n", + "2026-06-18 15:17:32,086 - INFO - horizontal elements not enough stations for event127: {}\n", + "2026-06-18 15:17:32,087 - INFO - Event: 128 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "GWUB: {0: np.float64(13.948091234529102), 1: np.float64(14.06942205112777)}\n", + "WFEN: {0: np.float64(8.106031417066822), 1: np.float64(8.24042071261028)}\n", + "SM02: {0: np.float64(63.498933937879976), 1: np.float64(59.966135208889874)}\n", + "WCS: {0: np.float64(2.8510833273993157), 1: np.float64(1.9103997861486863)}\n", + "EGFH: {0: np.float64(1.5117894791460715), 1: np.float64(2.677409906811379)}\n", + "F042: {0: np.float64(4.561438839383916), 1: np.float64(5.700413092103633)}\n", + "NNSH: {0: np.float64(12.430540691701472), 1: np.float64(9.213303615536821)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:32,342 - INFO - code == 0 stations for event114: set()\n", + "2026-06-18 15:17:32,343 - INFO - horizontal elements not enough stations for event114: {}\n", + "2026-06-18 15:17:32,344 - INFO - Event: 115 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "F002: {0: np.float64(16.374609964512), 1: np.float64(24.12501466587407)}\n", + "YHNB: {0: np.float64(5.544797810451643), 1: np.float64(5.534365610980621)}\n", + "B071: {0: np.float64(7.875011373804657), 1: np.float64(8.416290584602619)}\n", + "SM39: {0: np.float64(119.10146560982487), 1: np.float64(80.10420885841506)}\n", + "B138: {0: np.float64(19.435379510754114), 1: np.float64(12.665152197472677)}\n", + "FUSB: {0: np.float64(3.8753467047179004), 1: np.float64(4.753574523707042)}\n", + "NDS: {0: np.float64(6.101104929712116), 1: np.float64(4.931247746765963)}\n", + "SHUL: {0: np.float64(8.93063307933842), 1: np.float64(7.519802547869036)}\n", + "FUSB: {0: np.float64(1.954941658324954), 1: np.float64(3.187771327732049)}B045: {0: np.float64(15.81769895887072), 1: np.float64(15.86540523045988)}\n", + "\n", + "NDS: {0: np.float64(2.2335167439394428), 1: np.float64(2.8290274871746366)}\n", + "HWA: {0: np.float64(14.12993036724904), 1: np.float64(27.391275845142708)}\n", + "TPUB: {0: np.float64(3.39908023822745), 1: np.float64(3.2185194435511346)}\n", + "HWA: {0: np.float64(5.89126374458637), 1: np.float64(6.843361482603379)}\n", + "LATB: {0: np.float64(6.03037582145466), 1: np.float64(9.36988045748965)}\n", + "SM06: {0: np.float64(49.96353274084129), 1: np.float64(53.87126848046733)}\n", + "E023: {0: np.float64(24.410328849534746), 1: np.float64(19.73697524524172)}\n", + "SM06: {0: np.float64(36.48460336848322), 1: np.float64(20.06345952501403)}\n", + "E004: {0: np.float64(7.29543017134535), 1: np.float64(12.74345652670699)}\n", + "E023: {0: np.float64(10.283042468945947), 1: np.float64(11.347552510008054)}\n", + "HOPB: {0: np.float64(127.20758953060684), 1: np.float64(61.900053651831)}\n", + "HOPB: {0: np.float64(29.233677854978485), 1: np.float64(38.19820273335372)}\n", + "B148: {0: np.float64(8.680393409158194), 1: np.float64(14.30813821077813)}\n", + "SM09: {0: np.float64(42.30247090351886), 1: np.float64(45.549607013716056)}\n", + "E004: {0: np.float64(11.052642959473564), 1: np.float64(9.66028923011597)}\n", + "SYNB: {0: np.float64(6.405764814530025), 1: np.float64(6.850120016600863)}\n", + "EWT: {0: np.float64(7.026293697593564), 1: np.float64(9.81430558721804)}\n", + "EOS3: {0: np.float64(4.957495472146131), 1: np.float64(17.460339660324713)}\n", + "FUSS: {0: np.float64(0.006052774170223601), 1: np.float64(17.100666536294966)}\n", + "E077: {0: np.float64(3.851821010806365), 1: np.float64(5.333036972900444)}\n", + "B189: {0: np.float64(5.051705222195993), 1: np.float64(6.44244601026113)}\n", + "EGC: {0: np.float64(21.506561321387025), 1: np.float64(19.903499126773184)}\n", + "B215: {0: np.float64(24.86574053708559), 1: np.float64(15.512453230026097)}\n", + "B215: {0: np.float64(7.33611125265772), 1: np.float64(5.053608913633593)}\n", + "SM02: {0: np.float64(45.5267003478515), 1: np.float64(40.94639888837129)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:33,575 - INFO - code == 0 stations for event128: set()\n", + "2026-06-18 15:17:33,575 - INFO - horizontal elements not enough stations for event128: {}\n", + "2026-06-18 15:17:33,576 - INFO - Event: 129 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SM02: {0: np.float64(15.619437475080142), 1: np.float64(16.59454831127783)}\n", + "WCS: {0: np.float64(1.2771532271961439), 1: np.float64(1.121799173540643)}\n", + "NNSH: {0: np.float64(1.6467193379960883), 1: np.float64(1.4233456873856296)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:33,699 - INFO - code == 0 stations for event115: set()\n", + "2026-06-18 15:17:33,700 - INFO - horizontal elements not enough stations for event115: {}\n", + "2026-06-18 15:17:33,701 - INFO - Event: 116 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "F042: {0: np.float64(12.51777491512485), 1: np.float64(25.66658828651138)}\n", + "LATB: {0: np.float64(3.6902240410088427), 1: np.float64(3.8284763671225157)}\n", + "YUS: {0: np.float64(39.41190413690313), 1: np.float64(48.91290230010859)}\n", + "E037: {0: np.float64(7.454247806272304), 1: np.float64(8.652534429821221)}\n", + "E077: {0: np.float64(4.233218624167697), 1: np.float64(4.11510005242667)}\n", + "CHK: {0: np.float64(27.980305253184405), 1: np.float64(36.374856289614236)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:33,892 - WARNING - time data '2024-04-03T01:36:18' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:33,893 - WARNING - time data '2024-04-03T01:36:38' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:33,901 - WARNING - time data '2024-04-03T01:36:18' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:33,902 - WARNING - time data '2024-04-03T01:36:38' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:33,908 - WARNING - time data '2024-04-03T01:36:18' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:33,909 - WARNING - time data '2024-04-03T01:36:38' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:33,910 - WARNING - time data '2024-04-03T01:34:38' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:33,911 - WARNING - time data '2024-04-03T01:38:18' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:33,921 - WARNING - time data '2024-04-03T01:36:18' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:33,922 - WARNING - time data '2024-04-03T01:36:38' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:33,923 - WARNING - time data '2024-04-03T01:34:38' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:33,924 - WARNING - time data '2024-04-03T01:38:18' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "E023: {0: np.float64(3.864053593783825), 1: np.float64(5.793237800974618)}\n", + "HOPB: {0: np.float64(36.48574951008125), 1: np.float64(24.646239694316897)}\n", + "SHUL: {0: np.float64(30.371409613199578), 1: np.float64(86.79860295508102)}\n", + "E004: {0: np.float64(7.343021723631986), 1: np.float64(8.054821392618916)}\n", + "F002: {0: np.float64(40.18186647366446), 1: np.float64(39.03453696928893)}\n", + "FUSB: {0: np.float64(0.8510065969484923), 1: np.float64(0.7088536224206858)}\n", + "SML: {0: np.float64(14.824320243500024), 1: np.float64(15.311044226369722)}\n", + "YHNB: {0: np.float64(1.0034395420598317), 1: np.float64(1.7024035770532313)}\n", + "F059: {0: np.float64(94.19642142387411), 1: np.float64(194.14344774216602)}\n", + "NDS: {0: np.float64(1.6974396925863562), 1: np.float64(1.1139026144413402)}\n", + "CHKH: {0: np.float64(9.034846529021513), 1: np.float64(6.460032757086605)}\n", + "SM39: {0: np.float64(12.222669169044938), 1: np.float64(14.379316622981543)}\n", + "B215: {0: np.float64(3.7066225809590705), 1: np.float64(3.1914343788215875)}\n", + "NDS: {0: np.float64(4.0587560793447235), 1: np.float64(4.610214561939135)}\n", + "EWT: {0: np.float64(1.7219681486393181), 1: np.float64(1.509557286542323)}\n", + "C024: {0: np.float64(10.472429130946953), 1: np.float64(8.307058413826626)}\n", + "ALS: {0: np.float64(30.60294603865584), 1: np.float64(23.020112834010177)}\n", + "NNSH: {0: np.float64(1.2331873917418295), 1: np.float64(1.4277771175152787)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:34,508 - INFO - code == 0 stations for event116: set()\n", + "2026-06-18 15:17:34,508 - INFO - horizontal elements not enough stations for event116: {}\n", + "2026-06-18 15:17:34,509 - INFO - Event: 117 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ECB: {0: np.float64(30.062734144040956), 1: np.float64(21.015681749727595)}\n", + "ESL: {0: np.float64(2.107964989501646), 1: np.float64(2.0677533513841078)}\n", + "TDCB: {0: np.float64(3.4874762218739526), 1: np.float64(4.066682189836153)}\n", + "F059: {0: np.float64(6.394094570988791), 1: np.float64(7.888261013176358)}\n", + "ESL: {0: np.float64(115.35806619245737), 1: np.float64(100.69947535364592)}\n", + "E004: {0: np.float64(8.58340882116599), 1: np.float64(10.133562929671383)}\n", + "HOPB: {0: np.float64(36.479016459417124), 1: np.float64(24.64409798972332)}\n", + "SM06: {0: np.float64(83.95582007022729), 1: np.float64(64.40545773230797)}\n", + "SM09: {0: np.float64(10.525974716712172), 1: np.float64(18.643591492912115)}\n", + "WUSB: {0: np.float64(13.59629376387698), 1: np.float64(20.762114578801967)}\n", + "NDS: {0: np.float64(2.5598984994771317), 1: np.float64(1.7567112864447834)}\n", + "B148: {0: np.float64(7.000451673317966), 1: np.float64(9.575404924572727)}\n", + "B215: {0: np.float64(3.7209055333446344), 1: np.float64(2.027755768428415)}\n", + "EHYH: {0: np.float64(8.925229500073321), 1: np.float64(9.963804457226264)}\n", + "SM02: {0: np.float64(8.35952916438717), 1: np.float64(5.149248965371839)}\n", + "FUSS: {0: np.float64(0.002860987078301549), 1: np.float64(6.926214352479035)}\n", + "HGSD: {0: np.float64(175.30355338548304), 1: np.float64(136.0232773071911)}\n", + "HWA: {0: np.float64(2.362874534222738), 1: np.float64(2.953272851973984)}\n", + "EGC: {0: np.float64(208.84303329879916), 1: np.float64(86.94974729543696)}\n", + "EWT: {0: np.float64(2.562200628146888), 1: np.float64(2.516496561103733)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:35,232 - INFO - code == 0 stations for event117: set()\n", + "2026-06-18 15:17:35,233 - INFO - horizontal elements not enough stations for event117: {}\n", + "2026-06-18 15:17:35,234 - INFO - Event: 118 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "EGFH: {0: np.float64(6.3854164134068805), 1: np.float64(13.126331930647329)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:35,282 - INFO - code == 0 stations for event129: set()\n", + "2026-06-18 15:17:35,283 - INFO - horizontal elements not enough stations for event129: {}\n", + "2026-06-18 15:17:35,284 - INFO - Event: 130 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WPL: {0: np.float64(3.175310220968856), 1: np.float64(4.906408499365217)}\n", + "WPL: {0: np.float64(15.743285170810438), 1: np.float64(18.918522988469114)}\n", + "WFEN: {0: np.float64(3.4320590066282612), 1: np.float64(3.750438026673694)}\n", + "WCS: {0: np.float64(6.661471795950766), 1: np.float64(4.793223020581292)}\n", + "WCS: {0: np.float64(0.9292398155685115), 1: np.float64(0.9675153911068795)}\n", + "B090: {0: np.float64(36.15584754949445), 1: np.float64(19.116564449220842)}\n", + "YHNB: {0: np.float64(4.767875970618776), 1: np.float64(5.370332382549526)}\n", + "SM39: {0: np.float64(163.60093623027373), 1: np.float64(143.80497304587195)}\n", + "SM39: {0: np.float64(140.16336240103303), 1: np.float64(96.92338739737393)}\n", + "YUS: {0: np.float64(167.72500472856382), 1: np.float64(173.91738154122461)}\n", + "SML: {0: np.float64(16.4736889941571), 1: np.float64(17.559539887679154)}\n", + "B071: {0: np.float64(4.973349670310721), 1: np.float64(4.713869944954943)}\n", + "CHK: {0: np.float64(24.88595299949478), 1: np.float64(35.078881125730966)}\n", + "C024: {0: np.float64(5.687375171493212), 1: np.float64(4.683008554748444)}\n", + "B045: {0: np.float64(4.219813822102776), 1: np.float64(5.458597017422354)}\n", + "SHUL: {0: np.float64(100.7359881492245), 1: np.float64(56.589859575158094)}\n", + "SML: {0: np.float64(35.56070313793117), 1: np.float64(46.33904592255034)}\n", + "F059: {0: np.float64(144.3104861304588), 1: np.float64(477.5673146826175)}\n", + "HWA: {0: np.float64(7.602639819442888), 1: np.float64(7.44189812155992)}\n", + "B138: {0: np.float64(21.297456979115854), 1: np.float64(23.66656647775597)}\n", + "ECB: {0: np.float64(5.491612447732403), 1: np.float64(5.871701343159034)}\n", + "C024: {0: np.float64(32.56105776126463), 1: np.float64(38.01165719607337)}\n", + "TDCB: {0: np.float64(2.073146028631311), 1: np.float64(2.554339812151089)}\n", + "ALS: {0: np.float64(49.840037127849286), 1: np.float64(51.54612479248617)}\n", + "LATB: {0: np.float64(11.839680305285107), 1: np.float64(11.202310717343307)}\n", + "SM06: {0: np.float64(36.54753332555969), 1: np.float64(47.11301017279096)}\n", + "SSLB: {0: np.float64(2.8254553130766533), 1: np.float64(3.1996073891758336)}\n", + "HWA: {0: np.float64(43.311068390877246), 1: np.float64(41.031142648528956)}\n", + "SM09: {0: np.float64(76.23794547082858), 1: np.float64(56.12816946928548)}\n", + "ECB: {0: np.float64(34.631135461321705), 1: np.float64(26.758115090158945)}\n", + "WUSB: {0: np.float64(17.346233623907047), 1: np.float64(18.677773330298862)}\n", + "TDCB: {0: np.float64(4.467949552093077), 1: np.float64(6.335732727309887)}\n", + "B148: {0: np.float64(6.446949679153012), 1: np.float64(6.0931399645610504)}\n", + "ESL: {0: np.float64(92.17038526345638), 1: np.float64(136.33283873043095)}\n", + "FUSS: {0: np.float64(0.0034877412048679515), 1: np.float64(7.046085618120495)}\n", + "SM06: {0: np.float64(104.0413609899917), 1: np.float64(113.99178298170665)}\n", + "HGSD: {0: np.float64(21.38646655768922), 1: np.float64(23.57403749577229)}\n", + "SSLB: {0: np.float64(13.102286319193652), 1: np.float64(16.378397431906166)}\n", + "SM02: {0: np.float64(59.107579987242104), 1: np.float64(31.557427511150088)}\n", + "HOPB: {0: np.float64(18.054705393954436), 1: np.float64(21.935118976126446)}\n", + "NNSH: {0: np.float64(6.592966619612578), 1: np.float64(5.64881410243163)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:36,768 - INFO - code == 0 stations for event118: set()\n", + "2026-06-18 15:17:36,769 - INFO - horizontal elements not enough stations for event118: {}\n", + "2026-06-18 15:17:36,770 - INFO - Event: 119 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WDLH: {0: np.float64(9.549155030201995), 1: np.float64(15.251240902317884)}\n", + "WPL: {0: np.float64(1.340286503643995), 1: np.float64(2.0903191097697724)}\n", + "EWT: {0: np.float64(4.7747069556989405), 1: np.float64(5.930300277134686)}\n", + "B148: {0: np.float64(3.857644078820135), 1: np.float64(3.37453305963311)}\n", + "WUSB: {0: np.float64(41.36082949034248), 1: np.float64(57.296005730287106)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:36,937 - WARNING - time data '2024-04-03T01:38:25' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:36,939 - WARNING - time data '2024-04-03T01:38:45' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:36,959 - WARNING - time data '2024-04-03T01:38:25' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:36,960 - WARNING - time data '2024-04-03T01:38:45' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:36,969 - WARNING - time data '2024-04-03T01:38:25' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:36,970 - WARNING - time data '2024-04-03T01:38:45' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:36,971 - WARNING - time data '2024-04-03T01:36:45' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:36,971 - WARNING - time data '2024-04-03T01:40:25' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:36,988 - WARNING - time data '2024-04-03T01:38:25' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:36,989 - WARNING - time data '2024-04-03T01:38:45' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:36,990 - WARNING - time data '2024-04-03T01:36:45' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:36,991 - WARNING - time data '2024-04-03T01:40:25' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "FUSS: {0: np.float64(0.0036534307493915116), 1: np.float64(8.292335909779387)}\n", + "FUSS: {0: np.float64(0.0035700051409019522), 1: np.float64(2.918102265276365)}\n", + "B189: {0: np.float64(9.89118284557422), 1: np.float64(10.362379981808754)}\n", + "TDCB: {0: np.float64(1.3801918880342843), 1: np.float64(1.3280669629968223)}\n", + "B068: {0: np.float64(17.24065646172057), 1: np.float64(8.49879339514937)}\n", + "SM06: {0: np.float64(20.921065978054095), 1: np.float64(17.009062227167334)}\n", + "YULB: {0: np.float64(17.63409618049078), 1: np.float64(14.572993889570036)}\n", + "B071: {0: np.float64(2.628592002713214), 1: np.float64(1.8506536453610427)}\n", + "EGC: {0: np.float64(263.1306033965437), 1: np.float64(182.13992587134132)}\n", + "EOS3: {0: np.float64(3.0378808759449467), 1: np.float64(6.308023149809478)}\n", + "SM02: {0: np.float64(59.464714040472444), 1: np.float64(61.822035055707836)}\n", + "SM09: {0: np.float64(30.661829842890107), 1: np.float64(29.8110424063793)}\n", + "HOPB: {0: np.float64(7.905386678822801), 1: np.float64(10.905183993450425)}\n", + "EGFH: {0: np.float64(6.5805334764015715), 1: np.float64(11.409866635775352)}\n", + "SM39: {0: np.float64(59.66795802655001), 1: np.float64(50.282569720459534)}\n", + "NNSH: {0: np.float64(7.468546123056574), 1: np.float64(10.8700707256353)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:37,478 - INFO - code == 0 stations for event130: set()\n", + "2026-06-18 15:17:37,478 - INFO - horizontal elements not enough stations for event130: {}\n", + "2026-06-18 15:17:37,479 - INFO - Event: 131 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "GWUB: {0: np.float64(3.9517685528304174), 1: np.float64(5.447563144078113)}\n", + "WPL: {0: np.float64(78.53897455599704), 1: np.float64(77.92569202549303)}\n", + "WCS: {0: np.float64(25.620640028778872), 1: np.float64(20.723288935574683)}\n", + "HWA: {0: np.float64(7.90304137887258), 1: np.float64(5.865643551482025)}\n", + "E037: {0: np.float64(135.9281995450631), 1: np.float64(160.2519941526534)}\n", + "ECB: {0: np.float64(3.8992299695773016), 1: np.float64(4.028113900012753)}\n", + "F042: {0: np.float64(85.79835594365223), 1: np.float64(109.2056985583831)}\n", + "WUSB: {0: np.float64(5.340796558523181), 1: np.float64(6.660366289366328)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:37,787 - INFO - code == 0 stations for event119: set()\n", + "2026-06-18 15:17:37,787 - INFO - horizontal elements not enough stations for event119: {}\n", + "2026-06-18 15:17:37,788 - INFO - Event: 120 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "EYUL: {0: np.float64(37.480237434635725), 1: np.float64(38.84947170702291)}\n", + "WPL: {0: np.float64(2.323578621575926), 1: np.float64(3.4508020312861993)}\n", + "G041: {0: np.float64(66.64588557681785), 1: np.float64(64.52662384279473)}\n", + "WFEN: {0: np.float64(3.7030523356332368), 1: np.float64(3.556483619278628)}\n", + "B090: {0: np.float64(146.44427025466447), 1: np.float64(161.22257761380072)}\n", + "SM39: {0: np.float64(115.49945701227227), 1: np.float64(57.51847152543883)}\n", + "SM39: {0: np.float64(634.3448775369126), 1: np.float64(1188.2452816889368)}\n", + "CHK: {0: np.float64(173.53911614733912), 1: np.float64(215.72524949001067)}\n", + "SHUL: {0: np.float64(11.302518861983208), 1: np.float64(12.824134890460952)}\n", + "YUS: {0: np.float64(542.7412592758342), 1: np.float64(580.030456878364)}\n", + "F002: {0: np.float64(8.694195126311966), 1: np.float64(9.206187749196598)}\n", + "WHP: {0: np.float64(4.27106669001397), 1: np.float64(1.9924748151112694)}\n", + "SML: {0: np.float64(9.491649105059102), 1: np.float64(11.367280596897386)}\n", + "SHUL: {0: np.float64(361.05118071354116), 1: np.float64(282.1033239418755)}\n", + "FUSB: {0: np.float64(3.4942787105587825), 1: np.float64(2.5529246142046715)}\n", + "F002: {0: np.float64(792.8442285659435), 1: np.float64(722.2297473951253)}\n", + "NDS: {0: np.float64(3.541858070723702), 1: np.float64(2.0022919560683734)}\n", + "B071: {0: np.float64(69.57007475929504), 1: np.float64(99.43537321858724)}\n", + "C024: {0: np.float64(4.541629752635046), 1: np.float64(4.6477609694811175)}\n", + "F059: {0: np.float64(512.7085448368364), 1: np.float64(906.2379991802181)}\n", + "ALS: {0: np.float64(4.256050341975232), 1: np.float64(7.092777724269543)}\n", + "ELD: {0: np.float64(43.84914086029478), 1: np.float64(35.52146652551394)}\n", + "B045: {0: np.float64(9.622609930057159), 1: np.float64(9.698650393253459)}\n", + "CHKH: {0: np.float64(59.20777559010578), 1: np.float64(86.81631251597936)}\n", + "B138: {0: np.float64(130.35584144966217), 1: np.float64(112.4170734002885)}\n", + "C024: {0: np.float64(150.26796816200917), 1: np.float64(157.1375221872671)}\n", + "HWA: {0: np.float64(11.967552923466418), 1: np.float64(20.748377176106317)}\n", + "TDCB: {0: np.float64(3.1970259270891646), 1: np.float64(5.5933679055962084)}\n", + "LATB: {0: np.float64(14.510542922755459), 1: np.float64(21.443549398564734)}\n", + "HWA: {0: np.float64(150.6100389288493), 1: np.float64(115.43139294197665)}\n", + "ESL: {0: np.float64(5.933504111309116), 1: np.float64(9.106468661655926)}\n", + "ECB: {0: np.float64(427.43056293287924), 1: np.float64(354.52124369101045)}\n", + "TPUB: {0: np.float64(42.24499238503941), 1: np.float64(45.856178502410344)}\n", + "SM06: {0: np.float64(57.14654748151579), 1: np.float64(40.62062974636353)}\n", + "TDCB: {0: np.float64(42.5143323843712), 1: np.float64(59.70040701623649)}\n", + "SSLB: {0: np.float64(1.9918144064390717), 1: np.float64(2.8906446194577122)}\n", + "ESL: {0: np.float64(257.9497021551147), 1: np.float64(458.02965213174565)}\n", + "E023: {0: np.float64(11.92719591539707), 1: np.float64(14.770233519811658)}\n", + "SM09: {0: np.float64(38.162057336487344), 1: np.float64(52.970187107637116)}\n", + "SM06: {0: np.float64(609.231041777295), 1: np.float64(723.5709333171708)}\n", + "HOPB: {0: np.float64(59.74569931725039), 1: np.float64(32.89129707310568)}\n", + "SM09: {0: np.float64(424.79107816957736), 1: np.float64(528.4719084088077)}\n", + "EWT: {0: np.float64(4.710423301255926), 1: np.float64(4.343743282431479)}\n", + "HOPB: {0: np.float64(167.96164957203712), 1: np.float64(126.72560721371087)}\n", + "WUSB: {0: np.float64(14.913242533184054), 1: np.float64(18.81290696420327)}\n", + "WDLH: {0: np.float64(75.74460902717698), 1: np.float64(84.57317909225013)}\n", + "NFF: {0: np.float64(2.495666757017823), 1: np.float64(2.1547183717571046)}\n", + "WUSB: {0: np.float64(150.44396295794542), 1: np.float64(201.5816382129916)}\n", + "FUSS: {0: np.float64(0.0031523155122272686), 1: np.float64(10.524218198117058)}B148: {0: np.float64(103.4575330200555), 1: np.float64(154.51799935581252)}\n", + "\n", + "B189: {0: np.float64(3.42860442326215), 1: np.float64(2.892042071481524)}\n", + "EHYH: {0: np.float64(143.76815040846208), 1: np.float64(212.25362575448298)}\n", + "B215: {0: np.float64(19.062222275474152), 1: np.float64(9.909534770967824)}\n", + "GWUB: {0: np.float64(14.957400971262734), 1: np.float64(29.384887248354186)}\n", + "FUSS: {0: np.float64(0.018695055177897803), 1: np.float64(81.3436997304853)}\n", + "SM02: {0: np.float64(38.61886943827472), 1: np.float64(30.391602719857048)}\n", + "EOS3: {0: np.float64(31.81759036287589), 1: np.float64(136.5101576728713)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:39,827 - WARNING - time data '2024-04-03T01:39:04' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:39,839 - WARNING - time data '2024-04-03T01:39:04' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:39,848 - WARNING - time data '2024-04-03T01:39:04' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:39,849 - WARNING - time data '2024-04-03T01:37:24' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "E077: {0: np.float64(98.13068033929524), 1: np.float64(110.42575975376243)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:39,861 - WARNING - time data '2024-04-03T01:39:04' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:39,862 - WARNING - time data '2024-04-03T01:37:24' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "NNSH: {0: np.float64(5.72506373235515), 1: np.float64(12.321334155011922)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:39,876 - INFO - code == 0 stations for event120: set()\n", + "2026-06-18 15:17:39,877 - INFO - horizontal elements not enough stations for event120: {}\n", + "2026-06-18 15:17:39,878 - INFO - Event: 121 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "B068: {0: np.float64(88.19131591231735), 1: np.float64(116.75278675126351)}\n", + "WPL: {0: np.float64(93.75375376959745), 1: np.float64(111.62155946254094)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:39,959 - WARNING - Code 0: Amplitude of HGSD with seis type H >=5000000: 7040919.0\n", + "2026-06-18 15:17:39,970 - WARNING - Code 0: Amplitude of WFEN with seis type H >=5000000: 10536909.0\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "YULB: {0: np.float64(103.05805808013719), 1: np.float64(104.53840669206777)}\n", + "WCS: {0: np.float64(65.85314762505756), 1: np.float64(36.58866643695241)}\n", + "EGC: {0: np.float64(1472.8345628692866), 1: np.float64(1442.802358053385)}\n", + "G041: {0: np.float64(325.8964996259405), 1: np.float64(317.0178924684391)}\n", + "WCKO: {0: np.float64(131.95406954067462), 1: np.float64(124.16374480468305)}\n", + "WJS: {0: np.float64(341.2297003401242), 1: np.float64(195.81295019619898)}\n", + "SM02: {0: np.float64(322.22165231173375), 1: np.float64(336.7327125911019)}\n", + "B090: {0: np.float64(416.11238104766375), 1: np.float64(510.04862606612346)}\n", + "SM39: {0: np.float64(1960.3554484465171), 1: np.float64(2060.8506827685214)}\n", + "EGFH: {0: np.float64(29.252009875105088), 1: np.float64(36.095182326795054)}\n", + "YUS: {0: np.float64(467.77331111546965), 1: np.float64(458.01296181981724)}\n", + "NNSH: {0: np.float64(61.8684447240493), 1: np.float64(45.341713536997545)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:40,440 - INFO - code == 0 stations for event131: {'HGSD'}\n", + "2026-06-18 15:17:40,441 - INFO - horizontal elements not enough stations for event131: {}\n", + "2026-06-18 15:17:40,442 - INFO - Event: 132 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WPL: {0: np.float64(65.30414849126586), 1: np.float64(76.67896404767981)}\n", + "SHUL: {0: np.float64(415.39471661532025), 1: np.float64(344.37003520147124)}\n", + "G041: {0: np.float64(84.78182961317897), 1: np.float64(75.5787662955203)}\n", + "F002: {0: np.float64(463.12279300923035), 1: np.float64(608.992659853503)}\n", + "B090: {0: np.float64(162.52109668598382), 1: np.float64(98.84790484904143)}\n", + "WHP: {0: np.float64(268.7284793812621), 1: np.float64(202.01235351424504)}\n", + "SM39: {0: np.float64(553.5793254701741), 1: np.float64(567.794856529881)}\n", + "SML: {0: np.float64(443.1757218271156), 1: np.float64(496.1258847321416)}\n", + "CHK: {0: np.float64(106.20242309370262), 1: np.float64(73.32993454705924)}B071: {0: np.float64(217.6239778925333), 1: np.float64(391.4673354030888)}\n", + "\n", + "YUS: {0: np.float64(304.51804416911307), 1: np.float64(261.4469739668283)}\n", + "F059: {0: np.float64(1189.9676746795137), 1: np.float64(1127.3396983245786)}\n", + "ELD: {0: np.float64(111.82367695631267), 1: np.float64(87.06597618364958)}\n", + "B138: {0: np.float64(488.84804709691923), 1: np.float64(317.6635067919392)}\n", + "SHUL: {0: np.float64(307.1514596118039), 1: np.float64(289.5619918816019)}\n", + "F002: {0: np.float64(302.43196487648066), 1: np.float64(260.06817687501325)}\n", + "SML: {0: np.float64(207.11862116621865), 1: np.float64(254.627163548679)}\n", + "LDU: {0: np.float64(33.73326506700292), 1: np.float64(23.92055023814543)}\n", + "B071: {0: np.float64(70.6509338590639), 1: np.float64(96.67191297167804)}\n", + "C024: {0: np.float64(417.67035913080935), 1: np.float64(840.4827597368551)}\n", + "F059: {0: np.float64(531.5475620054151), 1: np.float64(794.244264437976)}\n", + "ALS: {0: np.float64(721.8300393149669), 1: np.float64(548.5393171617583)}\n", + "ELD: {0: np.float64(20.5143502637228), 1: np.float64(16.06241267572843)}\n", + "B045: {0: np.float64(431.0834176970219), 1: np.float64(604.2506939199461)}\n", + "B138: {0: np.float64(116.40265569368242), 1: np.float64(123.57089464618768)}\n", + "C024: {0: np.float64(107.23556463897421), 1: np.float64(163.39509198748289)}\n", + "ALS: {0: np.float64(154.38700028378608), 1: np.float64(167.0856027624518)}\n", + "HWA: {0: np.float64(698.4376396004328), 1: np.float64(458.1780143043776)}\n", + "ECB: {0: np.float64(190.92037155281062), 1: np.float64(165.41845069605978)}\n", + "ESL: {0: np.float64(372.7966868161344), 1: np.float64(436.8406932719415)}\n", + "HWA: {0: np.float64(156.39799934361162), 1: np.float64(91.95588586533577)}\n", + "ECB: {0: np.float64(206.23126660068758), 1: np.float64(158.90743224259492)}\n", + "SM06: {0: np.float64(4375.44155802558), 1: np.float64(4292.3859636011275)}\n", + "TDCB: {0: np.float64(41.533618040340414), 1: np.float64(73.54574895550708)}\n", + "E023: {0: np.float64(642.7849552569933), 1: np.float64(717.3876260226405)}\n", + "ESL: {0: np.float64(385.8876454432546), 1: np.float64(334.35056605670707)}\n", + "SM09: {0: np.float64(1886.6267633571958), 1: np.float64(1292.3011735639045)}\n", + "HOPB: {0: np.float64(666.633836132965), 1: np.float64(640.7284900215757)}\n", + "SM06: {0: np.float64(573.9937460140137), 1: np.float64(561.625406150645)}\n", + "E004: {0: np.float64(831.9290787014612), 1: np.float64(1258.8169664201628)}\n", + "SSLB: {0: np.float64(42.911898421054), 1: np.float64(49.29057350743405)}\n", + "SM09: {0: np.float64(355.82204233963273), 1: np.float64(471.2474975071203)}\n", + "WDLH: {0: np.float64(320.5481429641629), 1: np.float64(205.47772341899523)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:42,058 - WARNING - Code 0: Amplitude of WUSB with seis type H >=5000000: 4767237.0\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WUSB: {0: np.float64(199.62841574458406), 1: np.float64(257.36329296735255)}\n", + "B148: {0: np.float64(151.57465208499463), 1: np.float64(184.79245477902913)}\n", + "B148: {0: np.float64(80.8142156282508), 1: np.float64(125.96682922441829)}\n", + "SYNB: {0: np.float64(107.53987269327187), 1: np.float64(58.76514900593759)}\n", + "EHYH: {0: np.float64(79.80408835874502), 1: np.float64(126.0922681832824)}\n", + "B189: {0: np.float64(32.40324846585583), 1: np.float64(34.58100172897599)}\n", + "E077: {0: np.float64(79.02236838523545), 1: np.float64(89.29223947385705)}\n", + "FUSS: {0: np.float64(0.05242044471494875), 1: np.float64(137.89154718831003)}\n", + "B068: {0: np.float64(98.28784974700191), 1: np.float64(68.06628149614646)}\n", + "EHD: {0: np.float64(17.337464020635156), 1: np.float64(24.95207044258379)}\n", + "EGC: {0: np.float64(1263.351792872674), 1: np.float64(908.8664173573948)}\n", + "E077: {0: np.float64(372.33051156408936), 1: np.float64(751.9824161680118)}\n", + "B215: {0: np.float64(94.4991933824264), 1: np.float64(71.27414683174612)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:42,481 - WARNING - time data '2024-04-03T01:51:38' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:42,482 - WARNING - time data '2024-04-03T01:52:18' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:42,493 - WARNING - time data '2024-04-03T01:51:38' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:42,494 - WARNING - time data '2024-04-03T01:52:18' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:42,501 - WARNING - time data '2024-04-03T01:51:38' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:42,502 - WARNING - time data '2024-04-03T01:52:18' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:42,503 - WARNING - time data '2024-04-03T01:49:58' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:42,503 - WARNING - time data '2024-04-03T01:53:58' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "B068: {0: np.float64(353.5076178296829), 1: np.float64(464.5345494390643)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:42,514 - WARNING - time data '2024-04-03T01:51:38' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:42,515 - WARNING - time data '2024-04-03T01:52:18' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:42,516 - WARNING - time data '2024-04-03T01:49:58' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:42,517 - WARNING - time data '2024-04-03T01:53:58' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "GWUB: {0: np.float64(91.55629751162094), 1: np.float64(84.50556808145488)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:42,538 - WARNING - time data '2024-04-03T01:39:46' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:42,539 - WARNING - time data '2024-04-03T01:40:06' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:42,548 - WARNING - time data '2024-04-03T01:39:46' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:42,549 - WARNING - time data '2024-04-03T01:40:06' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:42,557 - WARNING - time data '2024-04-03T01:39:46' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:42,558 - WARNING - time data '2024-04-03T01:40:06' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:42,559 - WARNING - time data '2024-04-03T01:38:06' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:42,559 - WARNING - time data '2024-04-03T01:41:46' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:42,571 - WARNING - time data '2024-04-03T01:39:46' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:42,571 - WARNING - time data '2024-04-03T01:40:06' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:42,572 - WARNING - time data '2024-04-03T01:38:06' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:42,573 - WARNING - time data '2024-04-03T01:41:46' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "YULB: {0: np.float64(74.88027100676494), 1: np.float64(81.03253948149344)}\n", + "SM02: {0: np.float64(281.8056043078792), 1: np.float64(221.9966807558084)}\n", + "EGC: {0: np.float64(2864.721357148084), 1: np.float64(1376.9568395341037)}\n", + "EGFH: {0: np.float64(30.742184971324896), 1: np.float64(24.4692876784097)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:42,679 - INFO - code == 0 stations for event132: set()\n", + "2026-06-18 15:17:42,680 - INFO - horizontal elements not enough stations for event132: {}\n", + "2026-06-18 15:17:42,681 - INFO - Event: 133 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "B215: {0: np.float64(611.7491518987063), 1: np.float64(619.9144019086139)}\n", + "WPL: {0: np.float64(5.742683132162471), 1: np.float64(6.553560213378959)}\n", + "B148: {0: np.float64(9.427180911104063), 1: np.float64(9.119982316094278)}\n", + "WCKO: {0: np.float64(341.32417869577955), 1: np.float64(253.35445013505102)}\n", + "B071: {0: np.float64(6.6689486822689386), 1: np.float64(5.238852495557262)}\n", + "GWUB: {0: np.float64(549.7922058404293), 1: np.float64(668.2629204736306)}\n", + "B189: {0: np.float64(5.169121977724267), 1: np.float64(4.964600793700377)}\n", + "SM02: {0: np.float64(1253.6887543878802), 1: np.float64(2769.7584812647856)}\n", + "HOPB: {0: np.float64(9.30964829414859), 1: np.float64(12.799531727665716)}\n", + "EDH: {0: np.float64(67.2464904443013), 1: np.float64(57.844685359058175)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:43,019 - INFO - code == 0 stations for event121: {'WFEN', 'WUSB'}\n", + "2026-06-18 15:17:43,020 - INFO - horizontal elements not enough stations for event121: {}\n", + "2026-06-18 15:17:43,021 - INFO - Event: 122 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SM09: {0: np.float64(88.95126730755094), 1: np.float64(60.59218477962592)}\n", + "F002: {0: np.float64(304.0889213735899), 1: np.float64(246.31653266847954)}\n", + "YHNB: {0: np.float64(7.571430553554933), 1: np.float64(5.9209239643424)}\n", + "TDCB: {0: np.float64(33.19913656875849), 1: np.float64(59.74868144790281)}\n", + "EGC: {0: np.float64(188.77698183509457), 1: np.float64(159.0916097391827)}\n", + "SML: {0: np.float64(288.7984113018272), 1: np.float64(292.04596261846655)}\n", + "B215: {0: np.float64(10.728880969954686), 1: np.float64(8.52107645795301)}\n", + "ESL: {0: np.float64(114.22481145353039), 1: np.float64(249.8727329092173)}\n", + "SHUL: {0: np.float64(41.69116784823798), 1: np.float64(61.15591974016459)}SM06: {0: np.float64(1380.7432728252618), 1: np.float64(673.0426816271788)}\n", + "\n", + "F002: {0: np.float64(42.93570705965226), 1: np.float64(46.21424761536322)}\n", + "F059: {0: np.float64(394.08110898543794), 1: np.float64(535.7506779228963)}\n", + "ECB: {0: np.float64(29.70863741007834), 1: np.float64(34.78544848946623)}\n", + "SM02: {0: np.float64(513.589285187487), 1: np.float64(538.0686277210153)}\n", + "WUSB: {0: np.float64(15.978390542867754), 1: np.float64(25.455586698781588)}EGC: {0: np.float64(532.1552191719784), 1: np.float64(344.9333341826873)}\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:43,515 - INFO - code == 0 stations for event133: set()\n", + "2026-06-18 15:17:43,515 - INFO - horizontal elements not enough stations for event133: {}\n", + "2026-06-18 15:17:43,516 - INFO - Event: 134 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "YUS: {0: np.float64(126.95901947947638), 1: np.float64(145.62961609551323)}\n", + "WPL: {0: np.float64(2.3037502986890055), 1: np.float64(2.647425716075484)}\n", + "B148: {0: np.float64(3.9788466706419623), 1: np.float64(3.822631177754506)}\n", + "WFEN: {0: np.float64(5.375941100515878), 1: np.float64(5.710954822337017)}\n", + "SHUL: {0: np.float64(134.48886408531789), 1: np.float64(142.74310329286925)}\n", + "SML: {0: np.float64(7.673521779757777), 1: np.float64(8.521469762242615)}\n", + "TDCB: {0: np.float64(3.7529789699891), 1: np.float64(2.854229254154076)}\n", + "SM06: {0: np.float64(88.04461169404452), 1: np.float64(74.72238865145299)}\n", + "HWA: {0: np.float64(181.09728693327872), 1: np.float64(185.10723537406966)}\n", + "E037: {0: np.float64(61.31516426835307), 1: np.float64(91.3785741201087)}\n", + "ECB: {0: np.float64(144.22141651441635), 1: np.float64(105.64028036192407)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:43,964 - INFO - code == 0 stations for event122: set()\n", + "2026-06-18 15:17:43,965 - INFO - horizontal elements not enough stations for event122: {}\n", + "2026-06-18 15:17:43,966 - INFO - Event: 123 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "E004: {0: np.float64(41.640256900086015), 1: np.float64(48.94313068143283)}\n", + "ESL: {0: np.float64(16.97774004378737), 1: np.float64(21.520180971185653)}\n", + "HOPB: {0: np.float64(118.65209170229737), 1: np.float64(124.33827581290917)}\n", + "SM06: {0: np.float64(78.5720079892366), 1: np.float64(62.84674557685807)}\n", + "B090: {0: np.float64(5.06671796731008), 1: np.float64(4.447177894148335)}\n", + "E077: {0: np.float64(19.702299384427505), 1: np.float64(18.98192368012545)}\n", + "C024: {0: np.float64(4.129340772766098), 1: np.float64(4.40123804184735)}\n", + "E023: {0: np.float64(27.063256945067423), 1: np.float64(35.46958493067153)}\n", + "SM02: {0: np.float64(38.63325251862668), 1: np.float64(40.284420419853085)}\n", + "SM09: {0: np.float64(185.48174795984986), 1: np.float64(247.94974606904563)}\n", + "F002: {0: np.float64(18.837633048620557), 1: np.float64(20.66731586194905)}\n", + "HOPB: {0: np.float64(54.216143598102846), 1: np.float64(44.199472457198354)}\n", + "ECB: {0: np.float64(15.855178951179871), 1: np.float64(11.44043880921768)}\n", + "EGC: {0: np.float64(37.07965310543977), 1: np.float64(40.94676308049593)}\n", + "WUSB: {0: np.float64(4.152539830805973), 1: np.float64(7.1257780223305165)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:44,425 - INFO - code == 0 stations for event134: set()\n", + "2026-06-18 15:17:44,426 - INFO - horizontal elements not enough stations for event134: {}\n", + "2026-06-18 15:17:44,427 - INFO - Event: 135 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SM39: {0: np.float64(140.6369858610944), 1: np.float64(153.41459507598083)}\n", + "WPL: {0: np.float64(60.175413286436346), 1: np.float64(96.93103808577592)}\n", + "EWT: {0: np.float64(8.479788820877133), 1: np.float64(13.159827146103103)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:44,526 - INFO - code == 0 stations for event123: set()\n", + "2026-06-18 15:17:44,526 - INFO - horizontal elements not enough stations for event123: {}\n", + "2026-06-18 15:17:44,527 - INFO - Event: 124 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WFEN: {0: np.float64(259.4047787594999), 1: np.float64(133.41879452504062)}\n", + "WPL: {0: np.float64(4.511279692685468), 1: np.float64(5.396527154813345)}\n", + "WCS: {0: np.float64(32.19136931744239), 1: np.float64(26.490527346899697)}\n", + "E037: {0: np.float64(33.82612691077837), 1: np.float64(26.4165001785743)}\n", + "E037: {0: np.float64(103.9012510173028), 1: np.float64(100.5454762651788)}\n", + "YHNB: {0: np.float64(13.989653357025901), 1: np.float64(28.731435167291846)}\n", + "B090: {0: np.float64(295.46348025742543), 1: np.float64(260.4271340000909)}\n", + "SM39: {0: np.float64(146.8559282140622), 1: np.float64(163.44806544356246)}\n", + "SM39: {0: np.float64(1619.0741216088766), 1: np.float64(1588.6409278328724)}\n", + "SML: {0: np.float64(20.580194685152456), 1: np.float64(23.90088362992097)}\n", + "YUS: {0: np.float64(482.45534698117234), 1: np.float64(494.6398623362912)}\n", + "B071: {0: np.float64(5.548311703823921), 1: np.float64(5.506818030991605)}\n", + "F059: {0: np.float64(69.59519386890133), 1: np.float64(72.99747476648915)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:44,938 - WARNING - time data '2024-04-03T01:53:59' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:44,960 - WARNING - time data '2024-04-03T01:53:59' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:44,973 - WARNING - time data '2024-04-03T01:53:59' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:44,974 - WARNING - time data '2024-04-03T01:52:19' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "B138: {0: np.float64(10.489040902930261), 1: np.float64(9.730173564023591)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:44,990 - WARNING - time data '2024-04-03T01:53:59' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:44,991 - WARNING - time data '2024-04-03T01:52:19' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SHUL: {0: np.float64(791.562601611617), 1: np.float64(795.8222331039782)}\n", + "C024: {0: np.float64(9.229859428669437), 1: np.float64(8.33457763844226)}\n", + "F002: {0: np.float64(635.3713189145035), 1: np.float64(596.3501774427713)}\n", + "SML: {0: np.float64(336.8901519884109), 1: np.float64(388.192123781568)}\n", + "B071: {0: np.float64(108.5006580397218), 1: np.float64(188.02328694078648)}\n", + "HWA: {0: np.float64(29.18301369825759), 1: np.float64(19.148395882646856)}\n", + "F059: {0: np.float64(3220.5733067362876), 1: np.float64(7223.718449320728)}\n", + "TDCB: {0: np.float64(4.364894503260775), 1: np.float64(7.672849168012089)}\n", + "ELD: {0: np.float64(55.51944009072553), 1: np.float64(41.70767758217472)}\n", + "ESL: {0: np.float64(17.552071727534557), 1: np.float64(18.405444327955117)}B138: {0: np.float64(179.38823061484322), 1: np.float64(151.5530174730938)}\n", + "\n", + "HOPB: {0: np.float64(66.13168374662142), 1: np.float64(71.85286828268102)}\n", + "C024: {0: np.float64(192.55445792324824), 1: np.float64(351.9606884576228)}\n", + "WUSB: {0: np.float64(19.681113089701824), 1: np.float64(18.894544005299622)}\n", + "ALS: {0: np.float64(374.0263322191255), 1: np.float64(370.73038508598097)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:45,489 - WARNING - time data '2024-04-03T01:44:05' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:45,490 - WARNING - time data '2024-04-03T01:44:25' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:45,500 - WARNING - time data '2024-04-03T01:44:05' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:45,501 - WARNING - time data '2024-04-03T01:44:25' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:45,507 - WARNING - time data '2024-04-03T01:44:05' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:45,508 - WARNING - time data '2024-04-03T01:44:25' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:45,509 - WARNING - time data '2024-04-03T01:42:25' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:45,509 - WARNING - time data '2024-04-03T01:46:05' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:45,520 - WARNING - time data '2024-04-03T01:44:05' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:45,521 - WARNING - time data '2024-04-03T01:44:25' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:45,521 - WARNING - time data '2024-04-03T01:42:25' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:45,522 - WARNING - time data '2024-04-03T01:46:05' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "B045: {0: np.float64(53.608330919573255), 1: np.float64(69.13053500101982)}\n", + "B148: {0: np.float64(8.84480669863329), 1: np.float64(7.196919528388987)}\n", + "EOS3: {0: np.float64(21.727323932092805), 1: np.float64(33.098333898735625)}\n", + "B189: {0: np.float64(7.925949013719159), 1: np.float64(4.590070431485539)}\n", + "E077: {0: np.float64(11.183553018051533), 1: np.float64(16.607391446787343)}\n", + "HWA: {0: np.float64(606.1661693743579), 1: np.float64(618.3945709370055)}\n", + "B068: {0: np.float64(10.433158554091982), 1: np.float64(8.840320803276247)}\n", + "TPUB: {0: np.float64(62.06692517955725), 1: np.float64(75.03839920039009)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:45,792 - WARNING - time data '2024-04-03T01:54:06' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:45,793 - WARNING - time data '2024-04-03T01:54:26' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:45,803 - WARNING - time data '2024-04-03T01:54:06' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:45,804 - WARNING - time data '2024-04-03T01:54:26' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:45,810 - WARNING - time data '2024-04-03T01:54:06' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:45,811 - WARNING - time data '2024-04-03T01:54:26' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:45,811 - WARNING - time data '2024-04-03T01:52:26' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:45,812 - WARNING - time data '2024-04-03T01:56:06' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "B215: {0: np.float64(24.163994828582634), 1: np.float64(19.43520728676988)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:45,823 - WARNING - time data '2024-04-03T01:54:06' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:45,824 - WARNING - time data '2024-04-03T01:54:26' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:45,824 - WARNING - time data '2024-04-03T01:52:26' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:45,825 - WARNING - time data '2024-04-03T01:56:06' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "TDCB: {0: np.float64(42.01577753898603), 1: np.float64(58.729407349568525)}\n", + "SM02: {0: np.float64(60.03815029809691), 1: np.float64(89.27015263292063)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:45,880 - INFO - code == 0 stations for event124: set()\n", + "2026-06-18 15:17:45,881 - INFO - horizontal elements not enough stations for event124: {}\n", + "2026-06-18 15:17:45,882 - INFO - Event: 125 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "LATB: {0: np.float64(125.08991923702209), 1: np.float64(178.84116076032507)}\n", + "ESL: {0: np.float64(1777.3744378466279), 1: np.float64(2360.2371589836443)}\n", + "SM06: {0: np.float64(21.99561681557342), 1: np.float64(29.2135459815109)}\n", + "E077: {0: np.float64(4.554653331615669), 1: np.float64(7.573987353801141)}\n", + "SM06: {0: np.float64(2372.174551848006), 1: np.float64(2064.6921425670866)}\n", + "SM09: {0: np.float64(37.98732475605357), 1: np.float64(61.6286109724363)}\n", + "SSLB: {0: np.float64(169.92131715873165), 1: np.float64(83.44680331022604)}\n", + "SM39: {0: np.float64(135.90217029340045), 1: np.float64(58.39808521258057)}\n", + "E004: {0: np.float64(91.2991794875024), 1: np.float64(97.6333016557274)}\n", + "SM02: {0: np.float64(24.418086762159785), 1: np.float64(23.280998033582442)}\n", + "SM09: {0: np.float64(638.7346149199036), 1: np.float64(921.0746881417452)}\n", + "HOPB: {0: np.float64(118.69219596356844), 1: np.float64(125.82967335400421)}\n", + "WDLH: {0: np.float64(123.02853753717403), 1: np.float64(87.9957799970606)}\n", + "HWA: {0: np.float64(6.341039298182177), 1: np.float64(8.966298987643558)}\n", + "B078: {0: np.float64(137.99383859367146), 1: np.float64(110.53345238495538)}\n", + "WUSB: {0: np.float64(411.7589959859278), 1: np.float64(338.3294850524571)}\n", + "NNSH: {0: np.float64(2.7264637195171852), 1: np.float64(1.2276236921767139)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:46,481 - INFO - code == 0 stations for event125: set()\n", + "2026-06-18 15:17:46,481 - INFO - horizontal elements not enough stations for event125: {}\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "B148: {0: np.float64(201.9134886455441), 1: np.float64(197.68889174446988)}\n", + "FUSS: {0: np.float64(0.020916240512260993), 1: np.float64(70.40410480695324)}\n", + "B189: {0: np.float64(40.07694078070651), 1: np.float64(50.57910206005901)}\n", + "E077: {0: np.float64(141.31063115734042), 1: np.float64(130.39319947297398)}\n", + "B068: {0: np.float64(120.33169273994173), 1: np.float64(94.69140978712775)}\n", + "YULB: {0: np.float64(104.1327714246709), 1: np.float64(101.59917954698729)}\n", + "LONT: {0: np.float64(31.656018618374222), 1: np.float64(49.13399970772432)}\n", + "EGC: {0: np.float64(1427.2895659598762), 1: np.float64(2159.313440789938)}\n", + "SM02: {0: np.float64(725.6168425690556), 1: np.float64(1446.455737451812)}\n", + "EGFH: {0: np.float64(79.33753761808572), 1: np.float64(137.081801469865)}\n", + "NNSH: {0: np.float64(71.72888156213897), 1: np.float64(48.52220370694536)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:47,361 - INFO - code == 0 stations for event135: set()\n", + "2026-06-18 15:17:47,362 - INFO - horizontal elements not enough stations for event135: {}\n", + "2026-06-18 15:17:47,363 - INFO - Event: 136 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WPL: {0: np.float64(3.358205855320352), 1: np.float64(4.419591318633561)}\n", + "WCS: {0: np.float64(2.4960470106225343), 1: np.float64(1.4650702772373934)}\n", + "G041: {0: np.float64(4.526385237133325), 1: np.float64(3.9166124957581836)}\n", + "B090: {0: np.float64(7.255354227181556), 1: np.float64(6.796005712945388)}\n", + "YUS: {0: np.float64(29.145632127252465), 1: np.float64(38.04871686071901)}\n", + "SHUL: {0: np.float64(17.12677990456439), 1: np.float64(12.721139791830488)}\n", + "F002: {0: np.float64(24.84572938504093), 1: np.float64(30.07172091948071)}\n", + "SML: {0: np.float64(11.885305352052296), 1: np.float64(9.956765483524574)}\n", + "B071: {0: np.float64(3.7489371824044606), 1: np.float64(3.155944870581161)}\n", + "F059: {0: np.float64(23.86978640126761), 1: np.float64(25.833633238735864)}\n", + "C024: {0: np.float64(8.661910145985965), 1: np.float64(6.8308165600561335)}\n", + "ALS: {0: np.float64(9.270827384619453), 1: np.float64(11.657851233321527)}\n", + "HWA: {0: np.float64(15.144051429290815), 1: np.float64(8.653327427545062)}\n", + "ECB: {0: np.float64(15.437768611009995), 1: np.float64(17.351639903909245)}\n", + "TDCB: {0: np.float64(1.4733702488313187), 1: np.float64(1.922129330407071)}\n", + "ESL: {0: np.float64(12.808717149809308), 1: np.float64(12.001749436127525)}\n", + "SM06: {0: np.float64(32.92448345324142), 1: np.float64(32.01060964506593)}\n", + "SM09: {0: np.float64(27.9263448309309), 1: np.float64(37.04125456284989)}\n", + "WUSB: {0: np.float64(7.965416663475458), 1: np.float64(8.032615959206886)}\n", + "B148: {0: np.float64(5.854209415131674), 1: np.float64(6.2398863306918475)}\n", + "YULB: {0: np.float64(2.929166017386675), 1: np.float64(3.6165126044326774)}\n", + "EGC: {0: np.float64(81.88411272032238), 1: np.float64(51.24202288457519)}\n", + "SM02: {0: np.float64(22.149276361999473), 1: np.float64(42.790008340782656)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:48,966 - INFO - code == 0 stations for event136: set()\n", + "2026-06-18 15:17:48,967 - INFO - horizontal elements not enough stations for event136: {}\n", + "2026-06-18 15:17:48,968 - INFO - Event: 137 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "LATB: {0: np.float64(55.11470846242509), 1: np.float64(36.61789216732759)}\n", + "ESL: {0: np.float64(50.30281450723323), 1: np.float64(74.67901767577537)}\n", + "SM06: {0: np.float64(450.7406269422343), 1: np.float64(409.8664084047648)}\n", + "SHUL: {0: np.float64(46.89441219840724), 1: np.float64(66.1534985693478)}\n", + "F059: {0: np.float64(106.76082202378802), 1: np.float64(160.99916362956216)}\n", + "E077: {0: np.float64(59.41913445883252), 1: np.float64(35.15944569183768)}\n", + "E023: {0: np.float64(24.584424881288328), 1: np.float64(21.045553863744587)}\n", + "SM09: {0: np.float64(115.40762374093713), 1: np.float64(156.85269346208423)}\n", + "HOPB: {0: np.float64(77.199993334731), 1: np.float64(139.4402490711426)}\n", + "EGC: {0: np.float64(116.16437472891258), 1: np.float64(73.58036867700656)}\n", + "SM39: {0: np.float64(277.9855905961041), 1: np.float64(172.97308296545611)}\n", + "SM02: {0: np.float64(234.82205345463007), 1: np.float64(141.8475198620213)}\n", + "HWA: {0: np.float64(80.93916945920998), 1: np.float64(59.00415988791011)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:50,018 - WARNING - time data '2024-04-03T01:56:24' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:50,025 - WARNING - time data '2024-04-03T01:56:24' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:50,031 - WARNING - time data '2024-04-03T01:56:24' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:50,032 - WARNING - time data '2024-04-03T01:58:04' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:50,042 - WARNING - time data '2024-04-03T01:56:24' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:50,043 - WARNING - time data '2024-04-03T01:58:04' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "EWT: {0: np.float64(13.011390669502239), 1: np.float64(9.647970854749317)}\n", + "WUSB: {0: np.float64(26.625691454202354), 1: np.float64(27.81279421020471)}\n", + "NNSH: {0: np.float64(28.893755907103948), 1: np.float64(13.719347122661915)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:50,197 - INFO - code == 0 stations for event137: set()\n", + "2026-06-18 15:17:50,198 - INFO - horizontal elements not enough stations for event137: {}\n", + "2026-06-18 15:17:50,199 - INFO - Event: 138 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "F002: {0: np.float64(6.770598692093891), 1: np.float64(9.326453366158141)}\n", + "ESL: {0: np.float64(9.170546215800558), 1: np.float64(5.32074518598684)}\n", + "SM06: {0: np.float64(29.37707298490696), 1: np.float64(23.958378243862956)}\n", + "F059: {0: np.float64(10.821489132767915), 1: np.float64(15.460363287041123)}\n", + "SM02: {0: np.float64(11.766883552083627), 1: np.float64(11.36902058398467)}\n", + "EGC: {0: np.float64(8.511818066650664), 1: np.float64(10.797383706159625)}\n", + "SM39: {0: np.float64(29.908758277005003), 1: np.float64(29.409322653487937)}\n", + "SHUL: {0: np.float64(5.031011107801472), 1: np.float64(3.776968542603863)}\n", + "HWA: {0: np.float64(4.932002888245019), 1: np.float64(4.432982328570175)}\n", + "EGFH: {0: np.float64(0.6898955504622638), 1: np.float64(0.9700833869114049)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:51,069 - INFO - code == 0 stations for event138: set()\n", + "2026-06-18 15:17:51,069 - INFO - horizontal elements not enough stations for event138: {}\n", + "2026-06-18 15:17:51,071 - INFO - Event: 139 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "FUSS: {0: np.float64(0.002838762157510978), 1: np.float64(2.2949872639053295)}\n", + "ESL: {0: np.float64(10.566989786666673), 1: np.float64(7.263403397284043)}\n", + "SM06: {0: np.float64(51.39552833832241), 1: np.float64(23.4924932655411)}\n", + "E077: {0: np.float64(7.795073567161438), 1: np.float64(11.15107806767693)}\n", + "SM09: {0: np.float64(33.245399043147486), 1: np.float64(45.304056531145136)}\n", + "SM02: {0: np.float64(21.00542180167769), 1: np.float64(44.77468875413931)}\n", + "SM39: {0: np.float64(29.65440861678376), 1: np.float64(46.000786484702886)}\n", + "SHUL: {0: np.float64(8.751131193616102), 1: np.float64(7.950312391587713)}\n", + "HWA: {0: np.float64(7.832138687125364), 1: np.float64(10.36514252804597)}\n", + "NNSH: {0: np.float64(4.9372030175980655), 1: np.float64(2.6465030768280644)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:52,001 - INFO - code == 0 stations for event139: set()\n", + "2026-06-18 15:17:52,002 - INFO - horizontal elements not enough stations for event139: {}\n", + "2026-06-18 15:17:52,003 - INFO - Event: 140 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SM06: {0: np.float64(9.865506778859693), 1: np.float64(8.49726503436684)}\n", + "E037: {0: np.float64(4.266973245482037), 1: np.float64(4.691251733303614)}\n", + "F059: {0: np.float64(10.47670334225982), 1: np.float64(11.783482627482703)}\n", + "E004: {0: np.float64(5.878807571408744), 1: np.float64(7.0771934434936865)}\n", + "SM02: {0: np.float64(10.554784848875093), 1: np.float64(10.093187466988367)}\n", + "SM09: {0: np.float64(12.26767802292166), 1: np.float64(20.459403847012254)}\n", + "YHNB: {0: np.float64(2.005119919873299), 1: np.float64(1.4199968902149085)}\n", + "NDS: {0: np.float64(1.1497291505284353), 1: np.float64(1.3581155786977113)}\n", + "SHUL: {0: np.float64(3.5914124718703815), 1: np.float64(3.772139188912197)}\n", + "HWA: {0: np.float64(3.146739213898399), 1: np.float64(2.379565350713304)}\n", + "EWT: {0: np.float64(1.9033308138224767), 1: np.float64(1.9716754836773587)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:52,956 - INFO - code == 0 stations for event140: set()\n", + "2026-06-18 15:17:52,957 - INFO - horizontal elements not enough stations for event140: {}\n", + "2026-06-18 15:17:52,958 - INFO - Event: 141 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WPL: {0: np.float64(0.7712988364112882), 1: np.float64(0.7673845901537009)}\n", + "B148: {0: np.float64(1.2181130858237768), 1: np.float64(1.465321930473061)}\n", + "FUSS: {0: np.float64(0.003005558608052107), 1: np.float64(1.1000997354439854)}\n", + "SML: {0: np.float64(1.959105305600195), 1: np.float64(3.2653079104975173)}\n", + "ESL: {0: np.float64(2.0365346360989665), 1: np.float64(2.4478348249379196)}\n", + "LATB: {0: np.float64(10.507361854821504), 1: np.float64(8.446644363780901)}\n", + "F059: {0: np.float64(5.5119341102311346), 1: np.float64(6.996918326937642)}\n", + "HOPB: {0: np.float64(4.253561389940164), 1: np.float64(3.7200762659114237)}\n", + "SM09: {0: np.float64(11.851552526522608), 1: np.float64(11.970488795794598)}\n", + "YHNB: {0: np.float64(0.8537791562838329), 1: np.float64(1.320928734830088)}\n", + "SM39: {0: np.float64(212.09417868823053), 1: np.float64(231.86985046572616)}\n", + "B215: {0: np.float64(1.9520992777439155), 1: np.float64(1.3940260874644959)}\n", + "SM02: {0: np.float64(4.7633972490113345), 1: np.float64(8.006514403456237)}\n", + "WUSB: {0: np.float64(3.67668225958503), 1: np.float64(3.006574812982031)}\n", + "NNSH: {0: np.float64(1.11424560894107), 1: np.float64(1.5015708225388105)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:53,880 - INFO - code == 0 stations for event141: set()\n", + "2026-06-18 15:17:53,881 - INFO - horizontal elements not enough stations for event141: {}\n", + "2026-06-18 15:17:53,882 - INFO - Event: 142 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WFEN: {0: np.float64(14.5233024823043), 1: np.float64(14.997882101483944)}\n", + "WCS: {0: np.float64(3.6303305778806085), 1: np.float64(3.686283405180927)}\n", + "F042: {0: np.float64(12.80160526505844), 1: np.float64(12.899266410597084)}\n", + "G041: {0: np.float64(15.270383738503297), 1: np.float64(17.957741165876488)}\n", + "B090: {0: np.float64(26.98868314370101), 1: np.float64(22.237297743741248)}\n", + "SM39: {0: np.float64(395.198588506111), 1: np.float64(330.4381454438698)}\n", + "SHUL: {0: np.float64(91.9882617615405), 1: np.float64(108.38816930633824)}\n", + "F002: {0: np.float64(109.55343331528053), 1: np.float64(76.31506248687624)}\n", + "SML: {0: np.float64(31.760249946969527), 1: np.float64(45.24480169708888)}\n", + "F059: {0: np.float64(135.2928361405276), 1: np.float64(237.19125124473564)}\n", + "FUSB: {0: np.float64(6.585784028336251), 1: np.float64(6.043748986058699)}\n", + "HWA: {0: np.float64(85.33048086357412), 1: np.float64(69.14813619499613)}\n", + "ECB: {0: np.float64(49.74959143793991), 1: np.float64(39.103537729220555)}\n", + "TPUB: {0: np.float64(4.712890182472066), 1: np.float64(7.095527645708407)}\n", + "TDCB: {0: np.float64(10.351192083756688), 1: np.float64(18.889171705828442)}\n", + "LATB: {0: np.float64(39.27424338428284), 1: np.float64(68.0393161222641)}\n", + "ESL: {0: np.float64(52.35237143965196), 1: np.float64(171.01171962453697)}\n", + "SM06: {0: np.float64(456.4360681996906), 1: np.float64(341.0349889250511)}\n", + "SSLB: {0: np.float64(9.429762750172891), 1: np.float64(8.266224479402737)}\n", + "SM09: {0: np.float64(237.3637374771862), 1: np.float64(402.32618617461003)}\n", + "EWT: {0: np.float64(11.261442565848247), 1: np.float64(14.31187190409652)}\n", + "NFF: {0: np.float64(5.583631465531463), 1: np.float64(4.472946609922788)}\n", + "B148: {0: np.float64(18.16603862536525), 1: np.float64(19.824825265317536)}\n", + "FUSS: {0: np.float64(0.0036203225579207014), 1: np.float64(19.504600107158716)}\n", + "EHD: {0: np.float64(4.3125722239800215), 1: np.float64(4.8652652119569835)}\n", + "E077: {0: np.float64(33.66870336031139), 1: np.float64(41.806655375836186)}\n", + "B068: {0: np.float64(10.870976875282734), 1: np.float64(11.886302829729885)}\n", + "YULB: {0: np.float64(13.230985985769257), 1: np.float64(13.22520257211032)}\n", + "EGC: {0: np.float64(300.057892711456), 1: np.float64(189.3708820554059)}\n", + "GWUB: {0: np.float64(16.741574199582047), 1: np.float64(21.088095087431842)}\n", + "SM02: {0: np.float64(187.89693541823314), 1: np.float64(199.43754711533413)}\n", + "NNSH: {0: np.float64(12.387269855146958), 1: np.float64(13.028900905169541)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:56,094 - INFO - code == 0 stations for event142: set()\n", + "2026-06-18 15:17:56,094 - INFO - horizontal elements not enough stations for event142: {}\n", + "2026-06-18 15:17:56,095 - INFO - Event: 143 started\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ESL: {0: np.float64(9.365691854403337), 1: np.float64(9.23796292253928)}\n", + "F059: {0: np.float64(45.63311622520499), 1: np.float64(44.223995231267814)}\n", + "ELD: {0: np.float64(3.6959715239236384), 1: np.float64(3.2504276567524983)}\n", + "YULB: {0: np.float64(6.2096722014880115), 1: np.float64(5.32943781842886)}\n", + "EGC: {0: np.float64(47.549204870912575), 1: np.float64(38.13560589915407)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:56,386 - WARNING - time data '2024-04-03T01:59:57' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:56,387 - WARNING - time data '2024-04-03T02:00:37' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:56,396 - WARNING - time data '2024-04-03T01:59:57' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:56,397 - WARNING - time data '2024-04-03T02:00:37' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:56,403 - WARNING - time data '2024-04-03T01:59:57' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:56,404 - WARNING - time data '2024-04-03T02:00:37' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:56,404 - WARNING - time data '2024-04-03T01:58:17' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:56,405 - WARNING - time data '2024-04-03T02:02:17' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:56,413 - WARNING - time data '2024-04-03T01:59:57' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:56,414 - WARNING - time data '2024-04-03T02:00:37' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:56,415 - WARNING - time data '2024-04-03T01:58:17' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n", + "2026-06-18 15:17:56,415 - WARNING - time data '2024-04-03T02:02:17' does not match format '%Y-%m-%dT%H:%M:%S.%f', so we use %Y-%m-%dT%H:%M:%S\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "B215: {0: np.float64(9.973931601471435), 1: np.float64(11.013606237039983)}\n", + "SM02: {0: np.float64(36.7947515466597), 1: np.float64(36.127051969419746)}\n", + "F002: {0: np.float64(18.587507131871035), 1: np.float64(25.604100023254514)}\n", + "WUSB: {0: np.float64(11.864758738444365), 1: np.float64(16.15234574312489)}\n", + "EDH: {0: np.float64(2.2053041495081644), 1: np.float64(2.0658256496015377)}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2026-06-18 15:17:56,660 - INFO - code == 0 stations for event143: set()\n", + "2026-06-18 15:17:56,661 - INFO - horizontal elements not enough stations for event143: {}\n", + "2026-06-18 15:17:56,784 - INFO - Magnitude calculation completed.\n", + "2026-06-18 15:17:56,786 - INFO - Running DitingMotion (Polarity)...\n", + "2026-06-18 15:17:56,845 - INFO - DitingMotion starting: 2451 picks, 2 processes\n", + "2026-06-18 15:17:56,963 - INFO - Processing 50 chunks of ~50 picks each\n", + "2026-06-18 15:20:06,538 - INFO - DitingMotion completed: 2451 picks in 129.69s (18.9 picks/sec)\n", + "2026-06-18 15:20:06,571 - INFO - Results saved to demo_results/polarity_picks.csv\n", + "2026-06-18 15:20:06,573 - INFO - DitingMotion completed.\n", + "2026-06-18 15:20:06,574 - INFO - Running GAfocal...\n", + "2026-06-18 15:20:06,575 - INFO - Format converting with polarity and magnitude...\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "we have 144 events in total.\n", + "Magnitude data provided, updating both magnitude and polarity.\n", + "Processing time: 1.02 seconds\n", + " Input the phase file\n", + " Pfile : 240403001737.P24 \n", + " 1.00000000 \n", + " # of solutions: 1\n", + "240403001737.P24\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "psbasemap: Constructing basemap\n", + "pstext: Plotted 1 text-strings\n", + "psmeca: Number of records read: 1\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Pfile : 240403002101.P24 \n", + " 1.00000000 \n", + " # of solutions: 1\n", + "240403002101.P24\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "psbasemap: Constructing basemap\n", + "pstext: Plotted 1 text-strings\n", + "psmeca: Number of records read: 1\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Pfile : 240403002152.P24 \n", + " 0.866666675 \n", + " # of solutions: 1\n", + "240403002152.P24\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "psbasemap: Constructing basemap\n", + "pstext: Plotted 1 text-strings\n", + "psmeca: Number of records read: 1\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Pfile : 240403004354.P24 \n", + " 1.00000000 \n", + " # of solutions: 1\n", + "240403004354.P24\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "psbasemap: Constructing basemap\n", + "pstext: Plotted 1 text-strings\n", + "psmeca: Number of records read: 1\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Pfile : 240403005004.P24 \n", + " 0.750000000 \n", + " # of solutions: 1\n", + "240403005004.P24\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "psbasemap: Constructing basemap\n", + "pstext: Plotted 1 text-strings\n", + "psmeca: Number of records read: 1\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Pfile : 240403005045.P24 \n", + " 0.764705896 \n", + " # of solutions: 1\n", + "240403005045.P24\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "psbasemap: Constructing basemap\n", + "pstext: Plotted 1 text-strings\n", + "psmeca: Number of records read: 1\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Pfile : 240403005409.P24 \n", + " 0.937500000 \n", + " # of solutions: 1\n", + "240403005409.P24\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "psbasemap: Constructing basemap\n", + "pstext: Plotted 1 text-strings\n", + "psmeca: Number of records read: 1\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Pfile : 240403010111.P24 \n", + " 0.866666675 \n", + " # of solutions: 1\n", + "240403010111.P24\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "psbasemap: Constructing basemap\n", + "pstext: Plotted 1 text-strings\n", + "psmeca: Number of records read: 1\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Pfile : 240403010611.P24 \n", + " 1.00000000 \n", + " # of solutions: 1\n", + "240403010611.P24\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "psbasemap: Constructing basemap\n", + "pstext: Plotted 1 text-strings\n", + "psmeca: Number of records read: 1\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Pfile : 240403010715.P24 \n", + " 0.928571403 \n", + " # of solutions: 2\n", + "240403010715.P24\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "psbasemap: Constructing basemap\n", + "pstext: Plotted 1 text-strings\n", + "psmeca: Number of records read: 1\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Pfile : 240403010927.P24 \n", + " 1.00000000 \n", + " # of solutions: 1\n", + "240403010927.P24\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "psbasemap: Constructing basemap\n", + "pstext: Plotted 1 text-strings\n", + "psmeca: Number of records read: 1\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Pfile : 240403011312.P24 \n", + " 0.764705896 \n", + " # of solutions: 1\n", + "240403011312.P24\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "psbasemap: Constructing basemap\n", + "pstext: Plotted 1 text-strings\n", + "psmeca: Number of records read: 1\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Pfile : 240403011343.P24 \n", + " 1.00000000 \n", + " # of solutions: 1\n", + "240403011343.P24\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "psbasemap: Constructing basemap\n", + "pstext: Plotted 1 text-strings\n", + "psmeca: Number of records read: 1\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Pfile : 240403011621.P24 \n", + " 0.625000000 \n", + " # of solutions: 1\n", + "240403011621.P24\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "psbasemap: Constructing basemap\n", + "pstext: Plotted 1 text-strings\n", + "psmeca: Number of records read: 1\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Pfile : 240403011743.P24 \n", + " 0.916666687 \n", + " # of solutions: 1\n", + "240403011743.P24\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "psbasemap: Constructing basemap\n", + "pstext: Plotted 1 text-strings\n", + "psmeca: Number of records read: 1\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Pfile : 240403011931.P24 \n", + " 1.00000000 \n", + " # of solutions: 1\n", + "240403011931.P24\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "psbasemap: Constructing basemap\n", + "pstext: Plotted 1 text-strings\n", + "psmeca: Number of records read: 1\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Pfile : 240403012603.P24 \n", + " 1.00000000 \n", + " # of solutions: 1\n", + "240403012603.P24\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "psbasemap: Constructing basemap\n", + "pstext: Plotted 1 text-strings\n", + "psmeca: Number of records read: 1\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Pfile : 240403013035.P24 \n", + " 0.875000000 \n", + " # of solutions: 1\n", + "240403013035.P24\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "psbasemap: Constructing basemap\n", + "pstext: Plotted 1 text-strings\n", + "psmeca: Number of records read: 1\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Pfile : 240403013327.P24 \n", + " 0.920000017 \n", + " # of solutions: 1\n", + "240403013327.P24\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "psbasemap: Constructing basemap\n", + "pstext: Plotted 1 text-strings\n", + "psmeca: Number of records read: 1\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Pfile : 240403013856.P24 \n", + " 0.833333313 \n", + " # of solutions: 1\n", + "240403013856.P24\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "psbasemap: Constructing basemap\n", + "pstext: Plotted 1 text-strings\n", + "psmeca: Number of records read: 1\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Pfile : 240403013936.P24 \n", + " 0.931034505 \n", + " # of solutions: 1\n", + "240403013936.P24\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "psbasemap: Constructing basemap\n", + "pstext: Plotted 1 text-strings\n", + "psmeca: Number of records read: 1\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Pfile : 240403014544.P24 \n", + " 1.00000000 \n", + " # of solutions: 1\n", + "240403014544.P24\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "psbasemap: Constructing basemap\n", + "pstext: Plotted 1 text-strings\n", + "psmeca: Number of records read: 1\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Pfile : 240403014829.P24 \n", + " 0.666666687 \n", + " # of solutions: 2\n", + "240403014829.P24\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "psbasemap: Constructing basemap\n", + "pstext: Plotted 1 text-strings\n", + "psmeca: Number of records read: 1\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Pfile : 240403014901.P24 \n", + " 0.857142866 \n", + " # of solutions: 1\n", + "240403014901.P24\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "psbasemap: Constructing basemap\n", + "pstext: Plotted 1 text-strings\n", + "psmeca: Number of records read: 1\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Pfile : 240403014941.P24 \n", + " 1.00000000 \n", + " # of solutions: 2\n", + "240403014941.P24\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "psbasemap: Constructing basemap\n", + "pstext: Plotted 1 text-strings\n", + "psmeca: Number of records read: 1\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Pfile : 240403015358.P24 \n", + " 0.931034505 \n", + " # of solutions: 1\n", + "240403015358.P24\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "psbasemap: Constructing basemap\n", + "pstext: Plotted 1 text-strings\n", + "psmeca: Number of records read: 1\n", + "2026-06-18 15:20:17,519 - INFO - GAfocal completed.\n", + "2026-06-18 15:20:17,521 - INFO - Pipeline run completed: demo\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Pipeline finished. Outputs in: demo_results\n" + ] + } + ], + "source": [ + "# Mirror predict.main(): set up logging, then execute the run\n", + "predict.setup_logging(config.result_path, config.name)\n", + "predict.run_pipeline(config)\n", "\n", - "for i, row in enumerate(df.itertuples()):\n", - " mt = pmt.MomentTensor(\n", - " strike=row.strike,\n", - " dip=row.dip,\n", - " rake=row.rake,\n", - " )\n", - " beachball.plot_beachball_mpl(\n", - " mt, geo_ax, size=20, beachball_type='full',\n", - " position=(row.longitude, row.latitude), linewidth=1,\n", - " color_t=mpl_color('k'),\n", - " zorder=9\n", - " )" + "print(\"\\nPipeline finished. Outputs in:\", config.result_path)" ] } ], "metadata": { "kernelspec": { - "display_name": "AutoQuake_v0", + "display_name": "Python 3", "language": "python", "name": "python3" }, diff --git a/env-codespace.yml b/env-codespace.yml index 3c7f112..eb38351 100644 --- a/env-codespace.yml +++ b/env-codespace.yml @@ -1,29 +1,40 @@ +# Codespaces / devcontainer conda environment. +# +# Mirrors env.yml (the local/CI source of truth) with two deliberate changes: +# 1. CPU-only PyTorch -> Codespaces has no GPU and the CUDA build is ~2 GB larger. +# 2. Jupyter tooling -> interactive online development. +# +# Keep the core dependency list below in sync with env.yml when it changes. name: AutoQuake_v0 channels: - conda-forge dependencies: + # --- core (mirrors env.yml) --- - python==3.10.13 - - numpy + - numpy>=1.21.6 - pandas - - scikit-learn + - scikit-learn>=1.6.0 - tqdm - matplotlib - h5py - obspy>=1.3.1 - scipy - - pygmt - - geopy - - cartopy - - pip - fsspec - numba - pydantic + - pyproj + - onnx + - onnxruntime + - pytest + - pytest-cov + # --- visualization (imported by autoquake's plotting modules) --- + - pygmt + - cartopy + # --- interactive dev (Codespaces only) --- - ipykernel - jupyterlab + - pip - pip: - # CPU-only PyTorch (much smaller than CUDA version - saves ~2GB) + # CPU-only PyTorch: much smaller than the CUDA build, and Codespaces has no GPU. - torch --index-url https://download.pytorch.org/whl/cpu - torchvision --index-url https://download.pytorch.org/whl/cpu - - pyrocko - - onnx - - onnxruntime diff --git a/env.yml b/env.yml index 776dfb9..6d3f919 100644 --- a/env.yml +++ b/env.yml @@ -1,4 +1,4 @@ -name: AutoQuake_new +name: AutoQuake channels: - conda-forge dependencies: @@ -16,10 +16,11 @@ dependencies: - numba - pydantic - pyproj + - pytest + - pytest-cov + - onnx + - onnxruntime - pip: - torch - torchvision - - onnx - - onnxruntime - - ipykernel diff --git a/images/for_contributor.png b/images/for_contributor.png deleted file mode 100644 index be03ad4..0000000 Binary files a/images/for_contributor.png and /dev/null differ diff --git a/images/for_normal_user.png b/images/for_normal_user.png deleted file mode 100644 index 977e8fc..0000000 Binary files a/images/for_normal_user.png and /dev/null differ diff --git a/log/config.json b/log/config.json deleted file mode 100644 index 503aaaa..0000000 --- a/log/config.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "LoggingConfig":{ - "version": 1, - "disable_existing_loggers": false, - "formatters": { - "default": { - "format": "%(asctime)s - %(name)s - %(levelname)s - %(message)s" - } - }, - "handlers": { - "console": { - "class": "logging.StreamHandler", - "formatter": "default", - "level": "INFO" - }, - "file": { - "class": "logging.FileHandler", - "formatter": "default", - "filename": "logging.log", - "level": "DEBUG" - } - }, - "root": { - "handlers": ["console", "file"], - "level": "DEBUG" - } - } -} \ No newline at end of file diff --git a/predict.py b/predict.py index d2bd40e..8f04755 100644 --- a/predict.py +++ b/predict.py @@ -1,5 +1,16 @@ +#!/usr/bin/env python +""" +AutoQuake CLI - Automated Earthquake Catalog Generation Pipeline + +Usage: + python predict.py --config config.json + python predict.py --config config.json --dry-run +""" +import argparse import json import logging +import sys +import pandas as pd from pathlib import Path from autoquake.associator import GaMMA @@ -9,128 +20,376 @@ from autoquake.polarity import DitingMotion from autoquake.relocator import H3DD from autoquake.utils import gamma_preprocessing, pol_mag_to_dout, process_for_h3dd_twice -from ParamConfig.config_model import MainConfig - -# Path of config file -CONFIG_JSON = Path(__file__).parents[0].resolve() / 'ParamConfig' / 'params.json' +from ParamConfig.config_model import ( + BatchConfig, + PathResolver, + RunConfig, +) -if __name__ == '__main__': - - # Load config file - with open(CONFIG_JSON, "r", encoding="utf-8") as f: - config_dict = json.load(f) - config = MainConfig(**config_dict) - - # Initialize result path - config.result_path.mkdir(parents=True, exist_ok=True) +def pass_type_judge(sta: str)->bool: + return True +def setup_logging(result_path: Path, config_name: str) -> None: + """Setup logging for a pipeline run.""" + log_file = result_path / f'autoquake_{config_name}.log' logging.basicConfig( - filename=config.result_path / 'logging_file.log', + filename=log_file, filemode='w', format='%(asctime)s - %(name)s - %(levelname)s - %(message)s', level=logging.INFO, ) - - logging.info('Running PhaseNet...') - run_predict(config.PhaseNet.args_list) - phase_picks = PhaseNet.concat_picks( - date_list=config.PhaseNet.date_list, - result_path=config.result_path - ) + # Also log to console + console = logging.StreamHandler() + console.setLevel(logging.INFO) + formatter = logging.Formatter('%(asctime)s - %(levelname)s - %(message)s') + console.setFormatter(formatter) + logging.getLogger('').addHandler(console) - logging.info('Running GaMMA...') - post_phasenet_pickings = gamma_preprocessing( - pickings=phase_picks, - output_dir=config.result_path - ) - - gamma = GaMMA( - station=config.GaMMA.station, - result_path=config.result_path, - center=config.GaMMA.center, # optional - xlim_degree=config.GaMMA.xlim_degree, # optional - ylim_degree=config.GaMMA.ylim_degree, # optional - pickings=post_phasenet_pickings, - vel_model=config.GaMMA.velocity_model, # optional - min_p_picks_per_eq=config.GaMMA.min_p_picks_per_eq, - min_s_picks_per_eq=config.GaMMA.min_s_picks_per_eq, - dbscan_eps=config.GaMMA.eps, - ncpu=config.GaMMA.cpu_number, - use_amplitude=config.GaMMA.use_amplitude # optional, default as False - ) - gamma.run_predict() - - logging.info('H3DD first start') - h3dd = H3DD( - gamma_event=gamma.get_events(), - gamma_picks=gamma.get_picks(), - result_path=config.result_path, - station=config.H3DD.station, - model_3d=config.H3DD.model_3D, - event_name=config.H3DD.event_name_for_first_h3dd, # This for naming dout and hout. - cut_off_distance_for_dd=config.H3DD.cutoff_distance_for_first_h3dd - ) - h3dd.run_h3dd() - - logging.info('processing first H3DD results') - h3dd_events_first, h3dd_picks_first = process_for_h3dd_twice( - station=config.H3DD.station, - dout=h3dd.get_dout(), - event_name_1=config.H3DD.event_name_for_first_h3dd, # This for naming csv for first H3DD. - result_path=config.result_path - ) - logging.info('H3DD second start') - h3dd_2 = H3DD( - gamma_event=h3dd_events_first, - gamma_picks=h3dd_picks_first, - result_path=config.result_path, - station=config.H3DD.station, - model_3d=config.H3DD.model_3D, - event_name=config.H3DD.event_name_for_second_h3dd, - cut_off_distance_for_dd=config.H3DD.cutoff_distance_for_second_h3dd - ) - h3dd_2.run_h3dd() - - - logging.info('Mag_started') - mag = Magnitude( - dout_file=h3dd_2.get_dout(), - station=config.Mag.station, - sac_parent_dir=config.Mag.sac_parent_dir, - pz_dir=config.Mag.pz_dir, - output_dir=config.result_path, +def run_pipeline(config: RunConfig) -> None: + """Execute a single pipeline run based on configuration.""" + logging.info(f'Starting pipeline run: {config.name}') + + # Initialize paths + config.result_path.mkdir(parents=True, exist_ok=True) + resolver = PathResolver(config.result_path) + + # Track outputs for downstream components + phase_picks = None + gamma_events = None + gamma_picks = None + h3dd_dout = None + h3dd_reorder_event = None + mag_events = None + mag_picks = None + + # ========================================================================= + # Phase 1: PhaseNet + # ========================================================================= + if config.is_component_enabled('PhaseNet'): + logging.info('Running PhaseNet...') + run_predict(config.PhaseNet.args_list) + phase_picks = PhaseNet.concat_picks( + date_list=config.PhaseNet.date_list, + result_path=config.result_path + ) + logging.info(f'PhaseNet completed. Output: {phase_picks}') + + # ========================================================================= + # Phase 2: GaMMA + # ========================================================================= + if config.is_component_enabled('GaMMA'): + logging.info('Running GaMMA...') + + # Resolve picks input + if phase_picks is None: + picks_input = resolver.resolve_picks(config.GaMMA.picks_csv) + else: + picks_input = phase_picks + + # Preprocessing phasenet picks's station_id (e.g. "TW.SHUL.00.HL" -> "SHUL") and filter out picks with station_id not in station.csv. + post_phasenet_pickings = gamma_preprocessing( + picks=picks_input, + station=config.GaMMA.station, + ) + + gamma = GaMMA( + station=config.GaMMA.station, + result_path=config.result_path, + center=config.GaMMA.center, + xlim_degree=config.GaMMA.xlim_degree, + ylim_degree=config.GaMMA.ylim_degree, + pickings=post_phasenet_pickings, + vel_model=config.GaMMA.velocity_model, + min_p_picks_per_eq=config.GaMMA.min_p_picks_per_eq, + min_s_picks_per_eq=config.GaMMA.min_s_picks_per_eq, + dbscan_eps=config.GaMMA.eps, + ncpu=config.GaMMA.cpu_number, + use_amplitude=config.GaMMA.use_amplitude + ) + gamma.run_predict() + gamma_events = gamma.get_events() + gamma_picks = gamma.get_picks() + logging.info('GaMMA completed.') + + # ========================================================================= + # Phase 3: H3DD + # ========================================================================= + if config.is_component_enabled('H3DD'): + logging.info('Running H3DD...') + + # Resolve inputs + if gamma_events is None: + events_input = resolver.resolve_gamma_events(config.H3DD.events_csv) + else: + events_input = gamma_events + + if gamma_picks is None: + picks_input = resolver.resolve_gamma_picks(config.H3DD.picks_csv) + else: + picks_input = gamma_picks + + current_events = events_input + current_picks = picks_input + + # Get number of runs from config + run_count = config.H3DD.get_run_count() + + # Run H3DD iterations + for run_idx in range(run_count): + run_config = config.H3DD.get_run_config(run_idx) + if run_config is None: + continue + + event_name = run_config.event_name + cutoff = run_config.cutoff_distances + + logging.info(f'H3DD run {run_idx + 1}/{run_count}: ' + f'event_name={event_name}, cutoff={cutoff}') + + h3dd = H3DD( + gamma_event=current_events, + gamma_picks=current_picks, + result_path=config.result_path, + station=config.H3DD.station, + model_3d=config.H3DD.model_3D, + event_name=event_name, + cut_off_distance_for_dd=cutoff, + # H3DD algorithm parameters + weights=config.H3DD.weights, + priori_weight=config.H3DD.priori_weight, + inv=config.H3DD.inv, + damping_factor=config.H3DD.damping_factor, + rmscut=config.H3DD.rmscut, + max_iter=config.H3DD.max_iter, + constrain_factor=config.H3DD.constrain_factor, + joint_inv_with_single_event_method=config.H3DD.joint_inv_with_single_event_method, + consider_elevation=config.H3DD.consider_elevation + ) + h3dd.run_h3dd() + h3dd_dout = h3dd.get_dout() + + # Capture reorder event from first run, record original gamma_index and h3dd_index. + # Since the idx of events may change after later iteration. + if run_idx == 0: + h3dd_reorder_event = h3dd.get_df_reorder_event() + + # Prepare for next iteration if needed + if run_idx < run_count - 1: + logging.info('Processing H3DD results for next iteration...') + current_events, current_picks = process_for_h3dd_twice( + station=config.H3DD.station, + dout=h3dd_dout, + event_name_1=event_name, + result_path=config.result_path + ) + + logging.info('H3DD completed.') + + # ========================================================================= + # Phase 4: Magnitude + # ========================================================================= + if config.is_component_enabled('Magnitude'): + logging.info('Running Magnitude calculation...') + + # Resolve dout input + if h3dd_dout is None: + dout_input = resolver.resolve_dout(config.Magnitude.dout_file) + else: + dout_input = h3dd_dout + + mag = Magnitude( + dout_file=dout_input, + station=config.Magnitude.station, + sac_parent_dir=config.Magnitude.sac_parent_dir, + pz_dir=config.Magnitude.pz_dir, + output_dir=config.result_path, + ) + mag.run_mag(processes=config.Magnitude.cpu_number) + mag_events = mag.get_events() + mag_picks = mag.get_picks() + logging.info('Magnitude calculation completed.') + + # ========================================================================= + # Phase 5: Polarity (DitingMotion) + # ========================================================================= + polarity_picks = None + if config.is_component_enabled('Polarity'): + logging.info('Running DitingMotion (Polarity)...') + + # Input precedence for Polarity: GaMMA > PhaseNet > explicit Polarity.picks_csv + # Manual file is only intended when both GaMMA and PhaseNet are disabled. + picks_input = None + if gamma_picks is not None: + if config.is_component_enabled('H3DD') and h3dd_reorder_event is not None: + # If H3DD is enabled, pass picks with mapped h3dd_event_index to DitingMotion. + index_map = dict(zip(h3dd_reorder_event['event_index'], h3dd_reorder_event['h3dd_event_index'])) + picks_df = pd.read_csv(gamma_picks) + picks_df['h3dd_event_index'] = picks_df['event_index'].map(index_map).fillna(-1).astype(int) + picks_input = config.result_path / 'gamma_picks_with_h3dd_index.csv' + picks_df.to_csv(picks_input, index=False) + else: + picks_input = gamma_picks + elif phase_picks is not None: + picks_input = phase_picks + elif config.Polarity.picks_csv is not None: + picks_input = resolver.resolve_gamma_picks(config.Polarity.picks_csv) + + if picks_input is None: + raise ValueError('Polarity is enabled but no picks source is available.') + + # Determine data directory + sac_dir = config.Polarity.sac_parent_dir + # h5_dir = config.Polarity.h5_parent_dir + + # if sac_dir: + dt_polarity = DitingMotion( + picks_csv=picks_input, + output_dir=config.result_path, + sac_parent_dir=sac_dir, + # type_judge=pass_type_judge + ) + # elif h5_dir: + # dt_polarity = DitingMotion( + # gamma_picks=picks_input, + # output_dir=config.result_path, + # h5_parent_dir=h5_dir, + # type_judge=config.Polarity.type_judge + # ) + # else: + # raise ValueError('Polarity config requires either sac_parent_dir or h5_parent_dir') + + dt_polarity.run_parallel_predict(processes=config.Polarity.cpu_number) + polarity_picks = dt_polarity.get_picks() + logging.info('DitingMotion completed.') + + # ========================================================================= + # Phase 6: Focal Mechanism (GAfocal) + # ========================================================================= + if config.is_component_enabled('Focal'): + logging.info('Running GAfocal...') + + # Resolve dout input + if h3dd_dout is None: + dout_input = resolver.resolve_dout(config.Focal.dout_file) + + else: + dout_input = h3dd_dout + + # Format conversion with polarity and magnitude + if config.is_component_enabled('Polarity') and polarity_picks is not None: + logging.info('Format converting with polarity and magnitude...') + if config.is_component_enabled('Magnitude'): + df_mag_event = pd.read_csv(mag_events) + df_mag_pick = pd.read_csv(mag_picks) + + df_pol = pd.read_csv(polarity_picks) + polarity_dout_path = config.result_path / 'polarity.dout' + pol_mag_to_dout( + ori_dout=dout_input, + df_pol=df_pol, + output_dout=polarity_dout_path, + df_mag_event=df_mag_event, + df_mag_pick=df_mag_pick, + ) + gafocal_dout = polarity_dout_path + else: + # If you give specific dout, we suppose you already have polarity info in it. + #TODO: But I think we still need to check whether the format is correct. + gafocal_dout = dout_input + + gafocal = GAfocal( + dout_path=gafocal_dout, + result_path=config.result_path + ) + gafocal.run() + logging.info('GAfocal completed.') + + logging.info(f'Pipeline run completed: {config.name}') + + +def parse_args() -> argparse.Namespace: + """Parse command line arguments.""" + parser = argparse.ArgumentParser( + description='AutoQuake - Automated Earthquake Catalog Generation Pipeline', + formatter_class=argparse.RawDescriptionHelpFormatter, + epilog=''' +Examples: + python predict.py --config config.json + python predict.py --config config.json --dry-run + python predict.py -c params.json + ''' ) - mag.run_mag(processes=config.Mag.cpu_number) - - logging.info('Running DitingMotion...') - dt_polarity = DitingMotion( - gamma_picks=gamma.get_picks(), - output_dir=config.result_path, - sac_parent_dir=config.Diting.sac_parent_dir, - h5_parent_dir=config.Diting.h5_parent_dir, - interval=config.Diting.interval, - sampling_rate=config.Diting.sampling_rate, - need_resample=config.Diting.need_resample, - chunk_size=config.Diting.chunk_size, - das_in_data=config.Diting.das_in_data, - type_judge=config.Diting.type_judge, + parser.add_argument( + '--config', '-c', + type=Path, + required=True, + help='Path to JSON configuration file' ) - dt_polarity.run_parallel_predict(processes=config.Diting.cpu_number) - - logging.info('Format converting with pol and mag...') - dout_file_name = pol_mag_to_dout( - ori_dout=h3dd_2.get_dout(), - result_path=config.result_path, - df_reorder_event=h3dd.get_df_reorder_event(), - polarity_picks=dt_polarity.get_picks(), - magnitude_events=mag.get_events(), - magnitude_picks=mag.get_picks() + parser.add_argument( + '--dry-run', + action='store_true', + help='Validate configuration without executing pipeline' ) + return parser.parse_args() - logging.info('GAfocal start') - gafocal = GAfocal( - dout_file_name=dout_file_name, # The reason why here is a str is due to GAfocal execute in-place. - result_path=config.result_path - ) - gafocal.run() + +def load_config(config_path: Path) -> BatchConfig: + """Load and validate configuration file.""" + if not config_path.exists(): + raise FileNotFoundError(f'Configuration file not found: {config_path}') + + with open(config_path, 'r', encoding='utf-8') as f: + config_dict = json.load(f) + + return BatchConfig(**config_dict) + + +def main() -> int: + """Main entry point.""" + args = parse_args() + + try: + print(f'Loading configuration from: {args.config}') + batch_config = load_config(args.config) + print(f'Found {len(batch_config.configs)} configuration(s) to run') + + if args.dry_run: + print('\n=== DRY RUN MODE ===') + for i, config in enumerate(batch_config.configs, 1): + print(f'\nConfig {i}: {config.name}') + print(f' Result path: {config.result_path}') + print(f' Components:') + for component in ['PhaseNet', 'GaMMA', 'H3DD', 'Magnitude', 'Polarity', 'Focal']: + enabled = config.is_component_enabled(component) + status = '[+] enabled' if enabled else '[-] disabled' + print(f' - {component}: {status}') + print('\nConfiguration is valid.') + return 0 + + # Execute each configuration + for i, config in enumerate(batch_config.configs, 1): + print(f'\n{"=" * 60}') + print(f'Running configuration {i}/{len(batch_config.configs)}: {config.name}') + print(f'{"=" * 60}') + + setup_logging(config.result_path, config.name) + run_pipeline(config) + + print('\nAll pipeline runs completed successfully.') + return 0 + + except FileNotFoundError as e: + print(f'Error: {e}', file=sys.stderr) + return 1 + except ValueError as e: + print(f'Configuration error: {e}', file=sys.stderr) + return 1 + except Exception as e: + print(f'Unexpected error: {e}', file=sys.stderr) + logging.exception('Pipeline failed') + return 1 + + +if __name__ == '__main__': + sys.exit(main()) diff --git a/pyproject.toml b/pyproject.toml index 777f37b..03d172a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,6 +9,19 @@ exclude = [ [tool.ruff.lint] select = ["E", "F", "I", "UP"] +ignore = ["E402", "E501"] [tool.ruff.format] -quote-style = "single" \ No newline at end of file +quote-style = "single" + +[tool.pytest.ini_options] +# Put the repo root on sys.path so `ParamConfig`, `autoquake` and `predict` +# import cleanly when pytest is run from the project root. +pythonpath = ["."] +testpaths = ["tests"] +addopts = "-ra --strict-markers" +markers = [ + "unit: fast, pip-only checks of the configuration layer (run anywhere)", + "integration: real pipeline runs needing the full conda env + binaries", + "slow: long-running tests (the end-to-end pipeline)", +] \ No newline at end of file diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 261fff6..0000000 --- a/requirements.txt +++ /dev/null @@ -1,18 +0,0 @@ -python_version==3.10.13 -numpy -pandas -scikit-learn -tqdm -matplotlib -h5py -obspy>=1.3.1 -scipy -pygmt -geopy -cartopy -fsspec -torch -torchvision -pyrocko -onnx -onnxruntime \ No newline at end of file diff --git a/scripts/check-submodule-compat.py b/scripts/check-submodule-compat.py new file mode 100644 index 0000000..b1b71be --- /dev/null +++ b/scripts/check-submodule-compat.py @@ -0,0 +1,342 @@ +#!/usr/bin/env python3 +""" +Submodule Compatibility Checker for AutoQuake + +This script checks for potential compatibility issues when updating git submodules. +It analyzes dependency changes, API changes, and runs tests to identify issues. + +Usage: + # 1. Fetch submodule updates (without merging) + git submodule update --remote --no-merge + + # 2. Run this script to check compatibility + python scripts/check-submodule-compat.py + + # 3. If all looks good, merge the updates + git submodule update --remote --merge +""" + +import subprocess +import sys +import re +import ast +from pathlib import Path +from configparser import ConfigParser +from dataclasses import dataclass, field + + +@dataclass +class SubmoduleInfo: + """Information about a git submodule.""" + + name: str + path: Path + current_commit: str = '' + incoming_commit: str = '' + has_updates: bool = False + + +@dataclass +class CompatibilityReport: + """Report of compatibility issues for a submodule.""" + + submodule: str + dependency_changes: list[str] = field(default_factory=list) + api_breaking_changes: list[str] = field(default_factory=list) + warnings: list[str] = field(default_factory=list) + test_failures: list[str] = field(default_factory=list) + + +def get_all_submodules() -> list[SubmoduleInfo]: + """Auto-detect all submodules from .gitmodules file.""" + gitmodules = Path('.gitmodules') + if not gitmodules.exists(): + print('No .gitmodules file found.') + return [] + + config = ConfigParser() + config.read(gitmodules) + + submodules = [] + for section in config.sections(): + if section.startswith('submodule'): + # Extract name from section like 'submodule "autoquake/GaMMA"' + match = re.search(r'"([^"]+)"', section) + name = match.group(1) if match else section + path = config.get(section, 'path') + submodules.append(SubmoduleInfo(name=name, path=Path(path))) + + return submodules + + +def get_submodule_commits(submodule: SubmoduleInfo) -> SubmoduleInfo: + """Get current and incoming commit hashes for a submodule.""" + if not submodule.path.exists(): + return submodule + + # Get current HEAD commit + try: + result = subprocess.run( + ['git', 'rev-parse', 'HEAD'], + cwd=submodule.path, + capture_output=True, + text=True, + check=True, + ) + submodule.current_commit = result.stdout.strip()[:7] + except subprocess.CalledProcessError: + submodule.current_commit = 'unknown' + + # Get FETCH_HEAD (incoming) commit + try: + result = subprocess.run( + ['git', 'rev-parse', 'FETCH_HEAD'], + cwd=submodule.path, + capture_output=True, + text=True, + check=True, + ) + submodule.incoming_commit = result.stdout.strip()[:7] + submodule.has_updates = submodule.current_commit != submodule.incoming_commit + except subprocess.CalledProcessError: + submodule.incoming_commit = submodule.current_commit + submodule.has_updates = False + + return submodule + + +def check_dependency_changes(submodule: SubmoduleInfo) -> list[str]: + """Check for dependency changes in submodule's requirements.""" + changes = [] + + req_files = [ + submodule.path / 'requirements.txt', + submodule.path / 'pyproject.toml', + submodule.path / 'setup.py', + ] + + for req_file in req_files: + if req_file.exists(): + # Get diff between current and incoming versions + try: + result = subprocess.run( + ['git', 'diff', 'HEAD', 'FETCH_HEAD', '--', req_file.name], + cwd=submodule.path, + capture_output=True, + text=True, + ) + if result.stdout.strip(): + # Parse the diff to extract meaningful changes + for line in result.stdout.split('\n'): + if line.startswith('+') and not line.startswith('+++'): + dep = line[1:].strip() + if dep and not dep.startswith('#'): + changes.append(f'Added/Changed: {dep}') + elif line.startswith('-') and not line.startswith('---'): + dep = line[1:].strip() + if dep and not dep.startswith('#'): + changes.append(f'Removed: {dep}') + except subprocess.CalledProcessError: + pass + + return changes + + +def find_imports_from_submodule(submodule_name: str) -> list[tuple[str, int, str]]: + """Find all imports from a submodule in the autoquake directory.""" + imports = [] + autoquake_dir = Path('autoquake') + + if not autoquake_dir.exists(): + return imports + + # Map submodule names to import patterns + import_patterns = { + 'autoquake/GaMMA': ['gamma', 'GaMMA'], + 'autoquake/EQNet': ['eqnet', 'EQNet', 'phasenet', 'PhaseNet'], + } + + patterns = import_patterns.get(submodule_name, [submodule_name.split('/')[-1]]) + + for py_file in autoquake_dir.rglob('*.py'): + try: + content = py_file.read_text(encoding='utf-8') + for i, line in enumerate(content.split('\n'), 1): + for pattern in patterns: + if f'from {pattern}' in line or f'import {pattern}' in line: + imports.append((str(py_file), i, line.strip())) + except Exception: + pass + + return imports + + +def check_api_changes(submodule: SubmoduleInfo) -> list[str]: + """Check for API changes that might affect AutoQuake.""" + changes = [] + + # Find what we import from this submodule + imports = find_imports_from_submodule(submodule.name) + + if imports: + changes.append(f'Found {len(imports)} imports from {submodule.name}:') + for file, line, import_stmt in imports[:5]: # Show first 5 + changes.append(f' - {file}:{line}: {import_stmt}') + if len(imports) > 5: + changes.append(f' ... and {len(imports) - 5} more') + + # Check if there are changes in Python files + try: + result = subprocess.run( + ['git', 'diff', '--name-only', 'HEAD', 'FETCH_HEAD'], + cwd=submodule.path, + capture_output=True, + text=True, + ) + changed_files = [f for f in result.stdout.strip().split('\n') if f.endswith('.py')] + if changed_files: + changes.append(f'\nPython files changed in {submodule.name}:') + for f in changed_files[:10]: + changes.append(f' - {f}') + if len(changed_files) > 10: + changes.append(f' ... and {len(changed_files) - 10} more') + except subprocess.CalledProcessError: + pass + + return changes + + +def run_tests() -> tuple[bool, list[str]]: + """Run the test suite and return results.""" + failures = [] + + print('\nRunning tests with current submodule versions...') + result = subprocess.run( + ['python', '-m', 'pytest', 'tests/', '-v', '--tb=short', '-x'], + capture_output=True, + text=True, + ) + + if result.returncode != 0: + # Extract failure information + for line in result.stdout.split('\n'): + if 'FAILED' in line or 'ERROR' in line: + failures.append(line.strip()) + + # Also include stderr if there were import errors + if 'ModuleNotFoundError' in result.stderr or 'ImportError' in result.stderr: + for line in result.stderr.split('\n'): + if 'Error' in line: + failures.append(line.strip()) + + return result.returncode == 0, failures + + +def print_report(reports: list[CompatibilityReport], test_passed: bool, test_failures: list[str]): + """Print the compatibility report.""" + print('\n' + '=' * 60) + print('SUBMODULE COMPATIBILITY REPORT') + print('=' * 60) + + # Summarize submodules with updates + submodules_with_updates = [r for r in reports if r.dependency_changes or r.api_breaking_changes] + + if not submodules_with_updates and test_passed: + print('\n All submodules are compatible. Safe to merge.') + return + + for report in reports: + if report.dependency_changes or report.api_breaking_changes or report.warnings: + print(f'\n[{report.submodule}]') + print('-' * 45) + + if report.dependency_changes: + print('\n DEPENDENCY CHANGES:') + for change in report.dependency_changes: + print(f' {change}') + + if report.api_breaking_changes: + print('\n API CHANGES (review required):') + for change in report.api_breaking_changes: + print(f' {change}') + + if report.warnings: + print('\n Warnings:') + for warning in report.warnings: + print(f' {warning}') + + # Test results + print('\n' + '=' * 60) + print('TEST RESULTS') + print('=' * 60) + + if test_passed: + print('\n All tests passed!') + else: + print('\n Some tests failed:') + for failure in test_failures: + print(f' {failure}') + + # Summary and recommendations + print('\n' + '=' * 60) + print('RECOMMENDATIONS') + print('=' * 60) + + if test_passed and not submodules_with_updates: + print('\n Safe to merge submodule updates.') + print(' git submodule update --remote --merge') + else: + print('\n Before merging:') + if not test_passed: + print(' 1. Fix failing tests') + if submodules_with_updates: + print(' 2. Review API changes and update code if needed') + print('\n After fixes:') + print(' git submodule update --remote --merge') + + +def main(): + """Main entry point.""" + print('=' * 60) + print('AutoQuake Submodule Compatibility Checker') + print('=' * 60) + + # Get all submodules + submodules = get_all_submodules() + + if not submodules: + print('No submodules found.') + return + + print(f'\nDetected submodules: {", ".join(s.name for s in submodules)}') + + # Check each submodule + reports = [] + for sm in submodules: + sm = get_submodule_commits(sm) + + if sm.has_updates: + print(f'\n[{sm.name}] {sm.current_commit} -> {sm.incoming_commit}') + else: + print(f'\n[{sm.name}] {sm.current_commit} (no updates)') + continue + + report = CompatibilityReport(submodule=sm.name) + + # Check dependencies + report.dependency_changes = check_dependency_changes(sm) + + # Check API changes + report.api_breaking_changes = check_api_changes(sm) + + reports.append(report) + + # Run tests + test_passed, test_failures = run_tests() + + # Print final report + print_report(reports, test_passed, test_failures) + + +if __name__ == '__main__': + main() diff --git a/tests/conftest.py b/tests/conftest.py new file mode 100644 index 0000000..5a4a11e --- /dev/null +++ b/tests/conftest.py @@ -0,0 +1,144 @@ +"""Shared pytest fixtures and environment guards for the AutoQuake test suite. + +Two layers of tests live under ``tests/``: + +* ``tests/unit`` -- fast, pure-python checks of the configuration layer + (``ParamConfig/config_model.py``). Depend only on ``pydantic`` + ``pandas``, + so they run anywhere (CI, host, container). +* ``tests/integration`` -- a real end-to-end run of ``predict.py`` on the data + kept in ``tests/``. Needs the full conda environment (torch / obspy / + onnxruntime), the ``EQNet`` + ``GaMMA`` submodules and the Linux ``h3dd`` / + ``gafocal`` binaries, so it auto-skips when any of those is unavailable. + +Fixtures here are resolved relative to this file, so tests no longer require +``cd tests`` to find their data. +""" + +from __future__ import annotations + +import importlib.util +import json +import os +import platform +import shutil +from pathlib import Path + +import pytest + +# Directory holding the test materials (this file lives in ``tests/``). +TEST_DATA_DIR = Path(__file__).resolve().parent +REPO_ROOT = TEST_DATA_DIR.parent +PARAMS_TEST_JSON = TEST_DATA_DIR / 'params_test.json' + + +# --------------------------------------------------------------------------- +# Generic fixtures +# --------------------------------------------------------------------------- +@pytest.fixture +def test_data_dir() -> Path: + """Absolute path to the directory containing the test data + config.""" + return TEST_DATA_DIR + + +@pytest.fixture +def params_test_json() -> Path: + """Absolute path to the canonical example config (``params_test.json``).""" + return PARAMS_TEST_JSON + + +@pytest.fixture +def result_dir(tmp_path: Path) -> Path: + """A throwaway result directory so runs never pollute the repo.""" + out = tmp_path / 'result' + out.mkdir() + return out + + +@pytest.fixture +def params_dict() -> dict: + """Parsed ``params_test.json`` as a plain dict (no validation side effects).""" + with open(PARAMS_TEST_JSON, encoding='utf-8') as f: + return json.load(f) + + +# --------------------------------------------------------------------------- +# Integration environment guards +# --------------------------------------------------------------------------- +def _missing_modules(*names: str) -> list[str]: + return [n for n in names if importlib.util.find_spec(n) is None] + + +def _missing_binaries(*paths: Path) -> list[str]: + missing = [] + for p in paths: + if not (p.exists() and os.access(p, os.X_OK)): + missing.append(str(p)) + return missing + + +def _missing_submodules(*paths: Path) -> list[str]: + # A submodule is "present" once it has been checked out (non-empty dir). + return [str(p) for p in paths if not p.exists() or not any(p.iterdir())] + + +def full_env_skip_reason() -> str | None: + """Return a human-readable reason the full pipeline cannot run, else None. + + Used by the integration test to ``pytest.skip`` cleanly on the macOS host + or a bare CI runner instead of erroring on an import / missing binary. + """ + reasons: list[str] = [] + + # h3dd / gafocal are compiled Linux x86-64 ELF binaries. They carry the + # executable bit on any OS, but only actually run on Linux, so gate on the + # platform rather than just os.access(X_OK). + if platform.system() != 'Linux': + reasons.append( + 'h3dd/gafocal are Linux x86-64 binaries; current platform ' + f'is {platform.system()}' + ) + + missing_mods = _missing_modules('torch', 'obspy', 'onnxruntime', 'numba') + if missing_mods: + reasons.append(f'missing python modules: {", ".join(missing_mods)}') + + missing_subs = _missing_submodules( + REPO_ROOT / 'autoquake' / 'EQNet', + REPO_ROOT / 'autoquake' / 'GaMMA', + ) + if missing_subs: + reasons.append(f'uninitialised submodules: {", ".join(missing_subs)}') + + missing_bins = _missing_binaries( + REPO_ROOT / 'H3DD' / 'h3dd', + REPO_ROOT / 'GAfocal' / 'gafocal', + ) + if missing_bins: + reasons.append(f'missing/non-executable binaries: {", ".join(missing_bins)}') + + return '; '.join(reasons) if reasons else None + + +@pytest.fixture +def require_full_env() -> None: + """Skip the test (cleanly) when the full pipeline env is unavailable.""" + reason = full_env_skip_reason() + if reason: + pytest.skip(f'full pipeline environment unavailable: {reason}') + + +@pytest.fixture +def e2e_workdir(tmp_path: Path, monkeypatch: pytest.MonkeyPatch) -> Path: + """Prepare an isolated copy of the test data and chdir into it. + + ``params_test.json`` uses paths relative to ``tests/`` (e.g. ``test_sac``, + ``station.csv``, ``./vel_model/...``). We copy those materials into a temp + directory and run there so the real pipeline writes its outputs into the + sandbox, leaving the repo untouched. + """ + for name in ('test_sac', 'test_pz', 'vel_model'): + shutil.copytree(TEST_DATA_DIR / name, tmp_path / name) + shutil.copy2(TEST_DATA_DIR / 'station.csv', tmp_path / 'station.csv') + shutil.copy2(PARAMS_TEST_JSON, tmp_path / 'params_test.json') + monkeypatch.chdir(tmp_path) + return tmp_path diff --git a/tests/integration/test_pipeline_e2e.py b/tests/integration/test_pipeline_e2e.py new file mode 100644 index 0000000..34fa7dd --- /dev/null +++ b/tests/integration/test_pipeline_e2e.py @@ -0,0 +1,79 @@ +"""End-to-end integration test: the real 6-stage pipeline on the test data. + +One real ``run_pipeline()`` is executed and then asserted at every stage +boundary, so a regression points straight at the offending stage without any +golden fixtures to maintain. The whole thing auto-skips (via ``require_full_env``) +when the conda env, submodules or the Linux ``h3dd``/``gafocal`` binaries are +unavailable -- e.g. on the macOS host or a bare CI runner. + +Run it inside the devcontainer with:: + + pytest tests/integration -m integration --tb=short +""" + +from __future__ import annotations + +import json +from pathlib import Path + +import pytest + +pytestmark = [pytest.mark.integration, pytest.mark.slow] + + +def test_full_pipeline_end_to_end(require_full_env, e2e_workdir: Path): + import pandas as pd + + import predict + from ParamConfig.config_model import BatchConfig + + result_path = e2e_workdir / 'pipeline_test' + with open('params_test.json', encoding='utf-8') as f: + params = json.load(f) + params['configs'][0]['result_path'] = str(result_path) + + cfg = BatchConfig(**params).configs[0] + predict.run_pipeline(cfg) + + # --- PhaseNet --------------------------------------------------------- + picks = result_path / 'picks_phasenet' / 'picks.csv' + assert picks.exists() and picks.stat().st_size > 0, 'PhaseNet picks missing' + + # --- GaMMA ------------------------------------------------------------ + gamma_events = result_path / 'gamma_events.csv' + gamma_picks = result_path / 'gamma_picks.csv' + assert gamma_events.exists(), 'GaMMA events missing' + assert gamma_picks.exists(), 'GaMMA picks missing' + + df_events = pd.read_csv(gamma_events) + assert len(df_events) > 0, 'GaMMA associated zero events' + assert {'longitude', 'latitude', 'depth_km'} <= set(df_events.columns) + # Events must fall inside the configured search region. + xlim = params['configs'][0]['GaMMA']['xlim_degree'] + ylim = params['configs'][0]['GaMMA']['ylim_degree'] + assert df_events['longitude'].between(*xlim).all(), 'event longitude out of region' + assert df_events['latitude'].between(*ylim).all(), 'event latitude out of region' + + df_picks = pd.read_csv(gamma_picks) + assert {'station_id', 'phase_time', 'phase_type', 'event_index'} <= set( + df_picks.columns + ) + + # --- H3DD ------------------------------------------------------------- + douts = list(result_path.glob('*.dat_ch.dout')) + assert douts, 'H3DD produced no .dout relocation file' + assert all(d.stat().st_size > 0 for d in douts), 'H3DD .dout file is empty' + + # --- Magnitude -------------------------------------------------------- + mag_events = result_path / 'mag_events.csv' + assert mag_events.exists() and mag_events.stat().st_size > 0, ( + 'magnitude events missing' + ) + + # --- Polarity --------------------------------------------------------- + polarity = result_path / 'polarity_picks.csv' + assert polarity.exists() and polarity.stat().st_size > 0, 'polarity picks missing' + + # --- Focal (final catalog) ------------------------------------------- + focal = result_path / 'gafocal_catalog.txt' + assert focal.exists() and focal.stat().st_size > 0, 'final focal catalog missing' diff --git a/tests/params_test.json b/tests/params_test.json new file mode 100644 index 0000000..661ed99 --- /dev/null +++ b/tests/params_test.json @@ -0,0 +1,113 @@ +{ + "configs": [ + { + "name": "pipeline", + "result_path": "./pipeline_test", + + "PhaseNet": { + "enabled": true, + "data_parent_dir": "test_sac", + "station_csv": "station.csv", + "start": "20240423", + "end": "20240424", + "pz_dir": "test_pz", + "data_list": null, + "hdf5_file": null, + "prefix": "", + "format": "SAC", + "dataset": "das", + "model": "phasenet", + "resume": "", + "backbone": "unet", + "phases": ["P", "S"], + "device": "cpu", + "workers": 0, + "batch_size": 1, + "use_deterministic_algorithms": true, + "amp": true, + "world_size": 1, + "dist_url": "env://", + "plot_figure": false, + "min_prob": 0.3, + "add_polarity": false, + "add_event": true, + "sampling_rate": 100.0, + "highpass_filter": 0.0, + "response_path": null, + "response_xml": null, + "subdir_level": 0, + "cut_patch": false, + "nt": 20480, + "nx": 5120, + "resample_time": false, + "resample_space": false, + "system": null, + "location": null, + "skip_existing": false + }, + + "GaMMA": { + "enabled": true, + "picks_csv": null, + "station": "station.csv", + "velocity_model": "./vel_model/Hualien_1D.vel", + "center": [121.625, 24.0], + "xlim_degree": [121, 122.25], + "ylim_degree": [23.25, 24.75], + "min_p_picks_per_eq": 4, + "min_s_picks_per_eq": 0, + "eps": 17.0, + "cpu_number": 5, + "use_amplitude": false + }, + + "H3DD": { + "enabled": true, + "events_csv": null, + "picks_csv": null, + "station": "station.csv", + "model_3D": "./vel_model/tomops_H14", + "weights": [1.0, 1.0, 0.1], + "priori_weight": [1.0, 0.75, 0.5, 0.25, 0.0], + "inv": 2, + "damping_factor": 0.0, + "rmscut": 1.0e-4, + "max_iter": 5, + "constrain_factor": 0.0, + "joint_inv_with_single_event_method": 1, + "consider_elevation": 0, + "runs": { + "first": { + "event_name": "H3DD_1", + "cutoff_distances": 0.0 + }, + "second": { + "event_name": "H3DD_2", + "cutoff_distances": 2.0 + } + } + }, + + "Magnitude": { + "enabled": true, + "dout_file": null, + "station": "station.csv", + "sac_parent_dir": "test_sac", + "pz_dir": "test_pz", + "cpu_number": 5 + }, + + "Polarity": { + "enabled": true, + "picks_csv": null, + "sac_parent_dir": "test_sac", + "cpu_number": 5 + }, + + "Focal": { + "enabled": true, + "dout_file": null + } + } + ] +} diff --git a/tests/station.csv b/tests/station.csv new file mode 100644 index 0000000..833fed0 --- /dev/null +++ b/tests/station.csv @@ -0,0 +1,7 @@ +net,station,latitude,longitude,elevation +CWASN,EGC,23.7078,121.5476,9.0 +CWASN,ESL,23.812,121.4416,180.0 +TSMIP,B090,23.6462,120.6559,241.0 +TSMIP,F002,23.5982,121.5202,18.0 +CWB24,SHUL,23.7875,121.5627,35.0 +CWB24,EGFH,23.6688,121.4274,132.0 diff --git a/tests/test_pz/SAC_PZs_TW_B090_HLE_10_2018.341.00.00.00.0000_2599.365.23.59.59.99999 b/tests/test_pz/SAC_PZs_TW_B090_HLE_10_2018.341.00.00.00.0000_2599.365.23.59.59.99999 new file mode 100644 index 0000000..5598733 --- /dev/null +++ b/tests/test_pz/SAC_PZs_TW_B090_HLE_10_2018.341.00.00.00.0000_2599.365.23.59.59.99999 @@ -0,0 +1,38 @@ +* ********************************** +* NETWORK (KNETWK): TW +* STATION (KSTNM): B090 +* LOCATION (KHOLE): 10 +* CHANNEL (KCMPNM): HLE +* CREATED : 2024-12-30T02:09:29 +* START : 2018-12-07T00:00:00 +* END : 2599-12-31T23:59:59 +* DESCRIPTION : TCU090, Tong-Tou Elementary School +* LATITUDE : 23.646230 +* LONGITUDE : 120.655890 +* ELEVATION : 241.0 +* DEPTH : 0.0 +* DIP : 90.0 +* AZIMUTH : 90.0 +* SAMPLE RATE : 100.0 +* INPUT UNIT : M +* OUTPUT UNIT : COUNTS +* INSTTYPE : TitanCWB,TitanCWB, with buildin sensor Titan Accel +* INSTGAIN : 1.020000e+00 (M/S**2) +* COMMENT : N/A +* SENSITIVITY : 4.080000e+05 (M/S**2) +* A0 : 1.007730e+18 +* ********************************** +ZEROS 4 + +0.000000e+00 +0.000000e+00 + +0.000000e+00 +0.000000e+00 + -5.150000e+02 +0.000000e+00 + +0.000000e+00 +0.000000e+00 +POLES 7 + -9.770000e+02 +3.280000e+02 + -9.770000e+02 -3.280000e+02 + -1.486000e+03 +2.512000e+03 + -1.486000e+03 -2.512000e+03 + -5.736000e+03 +4.946000e+03 + -5.736000e+03 -4.946000e+03 + -6.283190e-03 +0.000000e+00 +CONSTANT +4.111539e+23 diff --git a/tests/test_pz/SAC_PZs_TW_B090_HLN_10_2018.341.00.00.00.0000_2599.365.23.59.59.99999 b/tests/test_pz/SAC_PZs_TW_B090_HLN_10_2018.341.00.00.00.0000_2599.365.23.59.59.99999 new file mode 100644 index 0000000..de14919 --- /dev/null +++ b/tests/test_pz/SAC_PZs_TW_B090_HLN_10_2018.341.00.00.00.0000_2599.365.23.59.59.99999 @@ -0,0 +1,38 @@ +* ********************************** +* NETWORK (KNETWK): TW +* STATION (KSTNM): B090 +* LOCATION (KHOLE): 10 +* CHANNEL (KCMPNM): HLN +* CREATED : 2024-12-30T02:09:29 +* START : 2018-12-07T00:00:00 +* END : 2599-12-31T23:59:59 +* DESCRIPTION : TCU090, Tong-Tou Elementary School +* LATITUDE : 23.646230 +* LONGITUDE : 120.655890 +* ELEVATION : 241.0 +* DEPTH : 0.0 +* DIP : 90.0 +* AZIMUTH : 0.0 +* SAMPLE RATE : 100.0 +* INPUT UNIT : M +* OUTPUT UNIT : COUNTS +* INSTTYPE : TitanCWB,TitanCWB, with buildin sensor Titan Accel +* INSTGAIN : 1.020000e+00 (M/S**2) +* COMMENT : N/A +* SENSITIVITY : 4.080000e+05 (M/S**2) +* A0 : 1.007730e+18 +* ********************************** +ZEROS 4 + +0.000000e+00 +0.000000e+00 + +0.000000e+00 +0.000000e+00 + -5.150000e+02 +0.000000e+00 + +0.000000e+00 +0.000000e+00 +POLES 7 + -9.770000e+02 +3.280000e+02 + -9.770000e+02 -3.280000e+02 + -1.486000e+03 +2.512000e+03 + -1.486000e+03 -2.512000e+03 + -5.736000e+03 +4.946000e+03 + -5.736000e+03 -4.946000e+03 + -6.283190e-03 +0.000000e+00 +CONSTANT +4.111539e+23 diff --git a/tests/test_pz/SAC_PZs_TW_B090_HLZ_10_2018.341.00.00.00.0000_2599.365.23.59.59.99999 b/tests/test_pz/SAC_PZs_TW_B090_HLZ_10_2018.341.00.00.00.0000_2599.365.23.59.59.99999 new file mode 100644 index 0000000..e18e690 --- /dev/null +++ b/tests/test_pz/SAC_PZs_TW_B090_HLZ_10_2018.341.00.00.00.0000_2599.365.23.59.59.99999 @@ -0,0 +1,38 @@ +* ********************************** +* NETWORK (KNETWK): TW +* STATION (KSTNM): B090 +* LOCATION (KHOLE): 10 +* CHANNEL (KCMPNM): HLZ +* CREATED : 2024-12-30T02:09:29 +* START : 2018-12-07T00:00:00 +* END : 2599-12-31T23:59:59 +* DESCRIPTION : TCU090, Tong-Tou Elementary School +* LATITUDE : 23.646230 +* LONGITUDE : 120.655890 +* ELEVATION : 241.0 +* DEPTH : 0.0 +* DIP : 0.0 +* AZIMUTH : 0.0 +* SAMPLE RATE : 100.0 +* INPUT UNIT : M +* OUTPUT UNIT : COUNTS +* INSTTYPE : TitanCWB,TitanCWB, with buildin sensor Titan Accel +* INSTGAIN : 1.020000e+00 (M/S**2) +* COMMENT : N/A +* SENSITIVITY : 4.080000e+05 (M/S**2) +* A0 : 1.007730e+18 +* ********************************** +ZEROS 4 + +0.000000e+00 +0.000000e+00 + +0.000000e+00 +0.000000e+00 + -5.150000e+02 +0.000000e+00 + +0.000000e+00 +0.000000e+00 +POLES 7 + -9.770000e+02 +3.280000e+02 + -9.770000e+02 -3.280000e+02 + -1.486000e+03 +2.512000e+03 + -1.486000e+03 -2.512000e+03 + -5.736000e+03 +4.946000e+03 + -5.736000e+03 -4.946000e+03 + -6.283190e-03 +0.000000e+00 +CONSTANT +4.111539e+23 diff --git a/tests/test_pz/SAC_PZs_TW_EGC_HLE_10_2018.319.00.00.00.0000_2599.365.23.59.59.99999 b/tests/test_pz/SAC_PZs_TW_EGC_HLE_10_2018.319.00.00.00.0000_2599.365.23.59.59.99999 new file mode 100644 index 0000000..efb5eee --- /dev/null +++ b/tests/test_pz/SAC_PZs_TW_EGC_HLE_10_2018.319.00.00.00.0000_2599.365.23.59.59.99999 @@ -0,0 +1,34 @@ +* ********************************** +* NETWORK (KNETWK): TW +* STATION (KSTNM): EGC +* LOCATION (KHOLE): 10 +* CHANNEL (KCMPNM): HLE +* CREATED : 2024-12-30T02:05:08 +* START : 2018-11-15T00:00:00 +* END : 2599-12-31T23:59:59 +* DESCRIPTION : Ji-Ci Elementary School +* LATITUDE : 23.707805 +* LONGITUDE : 121.547557 +* ELEVATION : 9.0 +* DEPTH : 0.0 +* DIP : 90.0 +* AZIMUTH : 90.0 +* SAMPLE RATE : 100.0 +* INPUT UNIT : M +* OUTPUT UNIT : COUNTS +* INSTTYPE : SMART24A,SMART24A series, with buildin sensor PA-2 +* INSTGAIN : 2.583340e-01 (M/S**2) +* COMMENT : N/A +* SENSITIVITY : 3.091930e+05 (M/S**2) +* A0 : 2.313560e+09 +* ********************************** +ZEROS 3 + +0.000000e+00 +0.000000e+00 + +0.000000e+00 +0.000000e+00 + -3.333000e+03 +0.000000e+00 +POLES 4 + -7.420000e+02 +1.014000e+03 + -7.420000e+02 -1.014000e+03 + -8.663000e+02 +0.000000e+00 + -5.638000e+03 +0.000000e+00 +CONSTANT +7.153366e+14 diff --git a/tests/test_pz/SAC_PZs_TW_EGC_HLN_10_2018.319.00.00.00.0000_2599.365.23.59.59.99999 b/tests/test_pz/SAC_PZs_TW_EGC_HLN_10_2018.319.00.00.00.0000_2599.365.23.59.59.99999 new file mode 100644 index 0000000..8dff194 --- /dev/null +++ b/tests/test_pz/SAC_PZs_TW_EGC_HLN_10_2018.319.00.00.00.0000_2599.365.23.59.59.99999 @@ -0,0 +1,34 @@ +* ********************************** +* NETWORK (KNETWK): TW +* STATION (KSTNM): EGC +* LOCATION (KHOLE): 10 +* CHANNEL (KCMPNM): HLN +* CREATED : 2024-12-30T02:05:08 +* START : 2018-11-15T00:00:00 +* END : 2599-12-31T23:59:59 +* DESCRIPTION : Ji-Ci Elementary School +* LATITUDE : 23.707805 +* LONGITUDE : 121.547557 +* ELEVATION : 9.0 +* DEPTH : 0.0 +* DIP : 90.0 +* AZIMUTH : 0.0 +* SAMPLE RATE : 100.0 +* INPUT UNIT : M +* OUTPUT UNIT : COUNTS +* INSTTYPE : SMART24A,SMART24A series, with buildin sensor PA-2 +* INSTGAIN : 2.600280e-01 (M/S**2) +* COMMENT : N/A +* SENSITIVITY : 3.077880e+05 (M/S**2) +* A0 : 2.313560e+09 +* ********************************** +ZEROS 3 + +0.000000e+00 +0.000000e+00 + +0.000000e+00 +0.000000e+00 + -3.333000e+03 +0.000000e+00 +POLES 4 + -7.420000e+02 +1.014000e+03 + -7.420000e+02 -1.014000e+03 + -8.663000e+02 +0.000000e+00 + -5.638000e+03 +0.000000e+00 +CONSTANT +7.120860e+14 diff --git a/tests/test_pz/SAC_PZs_TW_EGC_HLZ_10_2018.319.00.00.00.0000_2599.365.23.59.59.99999 b/tests/test_pz/SAC_PZs_TW_EGC_HLZ_10_2018.319.00.00.00.0000_2599.365.23.59.59.99999 new file mode 100644 index 0000000..7194ffc --- /dev/null +++ b/tests/test_pz/SAC_PZs_TW_EGC_HLZ_10_2018.319.00.00.00.0000_2599.365.23.59.59.99999 @@ -0,0 +1,34 @@ +* ********************************** +* NETWORK (KNETWK): TW +* STATION (KSTNM): EGC +* LOCATION (KHOLE): 10 +* CHANNEL (KCMPNM): HLZ +* CREATED : 2024-12-30T02:05:08 +* START : 2018-11-15T00:00:00 +* END : 2599-12-31T23:59:59 +* DESCRIPTION : Ji-Ci Elementary School +* LATITUDE : 23.707805 +* LONGITUDE : 121.547557 +* ELEVATION : 9.0 +* DEPTH : 0.0 +* DIP : 0.0 +* AZIMUTH : 0.0 +* SAMPLE RATE : 100.0 +* INPUT UNIT : M +* OUTPUT UNIT : COUNTS +* INSTTYPE : SMART24A,SMART24A series, with buildin sensor PA-2 +* INSTGAIN : 2.633090e-01 (M/S**2) +* COMMENT : N/A +* SENSITIVITY : 3.080780e+05 (M/S**2) +* A0 : 2.313560e+09 +* ********************************** +ZEROS 3 + +0.000000e+00 +0.000000e+00 + +0.000000e+00 +0.000000e+00 + -3.333000e+03 +0.000000e+00 +POLES 4 + -7.420000e+02 +1.014000e+03 + -7.420000e+02 -1.014000e+03 + -8.663000e+02 +0.000000e+00 + -5.638000e+03 +0.000000e+00 +CONSTANT +7.127570e+14 diff --git a/tests/test_pz/SAC_PZs_TW_EGFH_HH1_00_2011.354.00.00.00.0000_2599.365.23.59.59.99999 b/tests/test_pz/SAC_PZs_TW_EGFH_HH1_00_2011.354.00.00.00.0000_2599.365.23.59.59.99999 new file mode 100644 index 0000000..807e167 --- /dev/null +++ b/tests/test_pz/SAC_PZs_TW_EGFH_HH1_00_2011.354.00.00.00.0000_2599.365.23.59.59.99999 @@ -0,0 +1,36 @@ +* ********************************** +* NETWORK (KNETWK): TW +* STATION (KSTNM): EGFH +* LOCATION (KHOLE): 00 +* CHANNEL (KCMPNM): HH1 +* CREATED : 2019-03-11T03:10:36 +* START : 2011-12-20T00:00:00 +* END : 2599-12-31T23:59:59 +* DESCRIPTION : Guangfu +* LATITUDE : 23.668800 +* LONGITUDE : 121.427400 +* ELEVATION : 132.0 +* DEPTH : 295.0 +* DIP : 90.0 +* AZIMUTH : 0.0 +* SAMPLE RATE : 100.0 +* INPUT UNIT : M +* OUTPUT UNIT : COUNTS +* INSTTYPE : CMG-3T, 360 s, 2000 V/m/s-DM-24 Mk3 Fixed Gain +* INSTGAIN : 5.980000e+03 (M/S) +* COMMENT : T37078 A3391 +* SENSITIVITY : 1.861750e+09 (M/S) +* A0 : 4.323000e+10 +* ********************************** +ZEROS 3 + +0.000000e+00 +0.000000e+00 + +0.000000e+00 +0.000000e+00 + +0.000000e+00 +0.000000e+00 +POLES 6 + -1.234020e-02 +1.234020e-02 + -1.234020e-02 -1.234020e-02 + -1.888280e+02 +1.955400e+02 + -1.888280e+02 -1.955400e+02 + -2.592220e+02 +7.196450e+02 + -2.592220e+02 -7.196450e+02 +CONSTANT +8.048345e+19 diff --git a/tests/test_pz/SAC_PZs_TW_EGFH_HH2_00_2011.354.00.00.00.0000_2599.365.23.59.59.99999 b/tests/test_pz/SAC_PZs_TW_EGFH_HH2_00_2011.354.00.00.00.0000_2599.365.23.59.59.99999 new file mode 100644 index 0000000..a34c7f6 --- /dev/null +++ b/tests/test_pz/SAC_PZs_TW_EGFH_HH2_00_2011.354.00.00.00.0000_2599.365.23.59.59.99999 @@ -0,0 +1,36 @@ +* ********************************** +* NETWORK (KNETWK): TW +* STATION (KSTNM): EGFH +* LOCATION (KHOLE): 00 +* CHANNEL (KCMPNM): HH2 +* CREATED : 2019-03-11T03:10:36 +* START : 2011-12-20T00:00:00 +* END : 2599-12-31T23:59:59 +* DESCRIPTION : Guangfu +* LATITUDE : 23.668800 +* LONGITUDE : 121.427400 +* ELEVATION : 132.0 +* DEPTH : 295.0 +* DIP : 90.0 +* AZIMUTH : 90.0 +* SAMPLE RATE : 100.0 +* INPUT UNIT : M +* OUTPUT UNIT : COUNTS +* INSTTYPE : CMG-3T, 360 s, 2000 V/m/s-DM-24 Mk3 Fixed Gain +* INSTGAIN : 5.952000e+03 (M/S) +* COMMENT : T37078 A3391 +* SENSITIVITY : 1.864640e+09 (M/S) +* A0 : 4.323000e+10 +* ********************************** +ZEROS 3 + +0.000000e+00 +0.000000e+00 + +0.000000e+00 +0.000000e+00 + +0.000000e+00 +0.000000e+00 +POLES 6 + -1.234020e-02 +1.234020e-02 + -1.234020e-02 -1.234020e-02 + -1.888280e+02 +1.955400e+02 + -1.888280e+02 -1.955400e+02 + -2.592220e+02 +7.196450e+02 + -2.592220e+02 -7.196450e+02 +CONSTANT +8.060839e+19 diff --git a/tests/test_pz/SAC_PZs_TW_EGFH_HHZ_00_2011.354.00.00.00.0000_2599.365.23.59.59.99999 b/tests/test_pz/SAC_PZs_TW_EGFH_HHZ_00_2011.354.00.00.00.0000_2599.365.23.59.59.99999 new file mode 100644 index 0000000..cc80f1a --- /dev/null +++ b/tests/test_pz/SAC_PZs_TW_EGFH_HHZ_00_2011.354.00.00.00.0000_2599.365.23.59.59.99999 @@ -0,0 +1,36 @@ +* ********************************** +* NETWORK (KNETWK): TW +* STATION (KSTNM): EGFH +* LOCATION (KHOLE): 00 +* CHANNEL (KCMPNM): HHZ +* CREATED : 2019-03-11T03:10:36 +* START : 2011-12-20T00:00:00 +* END : 2599-12-31T23:59:59 +* DESCRIPTION : Guangfu +* LATITUDE : 23.668800 +* LONGITUDE : 121.427400 +* ELEVATION : 132.0 +* DEPTH : 295.0 +* DIP : 0.0 +* AZIMUTH : 0.0 +* SAMPLE RATE : 100.0 +* INPUT UNIT : M +* OUTPUT UNIT : COUNTS +* INSTTYPE : CMG-3T, 360 s, 2000 V/m/s-DM-24 Mk3 Fixed Gain +* INSTGAIN : 5.942000e+03 (M/S) +* COMMENT : T37078 A3391 +* SENSITIVITY : 1.863290e+09 (M/S) +* A0 : 4.323000e+10 +* ********************************** +ZEROS 3 + +0.000000e+00 +0.000000e+00 + +0.000000e+00 +0.000000e+00 + +0.000000e+00 +0.000000e+00 +POLES 6 + -1.234020e-02 +1.234020e-02 + -1.234020e-02 -1.234020e-02 + -1.888280e+02 +1.955400e+02 + -1.888280e+02 -1.955400e+02 + -2.592220e+02 +7.196450e+02 + -2.592220e+02 -7.196450e+02 +CONSTANT +8.055002e+19 diff --git a/tests/test_pz/SAC_PZs_TW_ESL_HLE_10_2018.318.00.00.00.0000_2599.365.23.59.59.99999 b/tests/test_pz/SAC_PZs_TW_ESL_HLE_10_2018.318.00.00.00.0000_2599.365.23.59.59.99999 new file mode 100644 index 0000000..d849840 --- /dev/null +++ b/tests/test_pz/SAC_PZs_TW_ESL_HLE_10_2018.318.00.00.00.0000_2599.365.23.59.59.99999 @@ -0,0 +1,34 @@ +* ********************************** +* NETWORK (KNETWK): TW +* STATION (KSTNM): ESL +* LOCATION (KHOLE): 10 +* CHANNEL (KCMPNM): HLE +* CREATED : 2024-12-30T02:05:08 +* START : 2018-11-14T00:00:00 +* END : 2599-12-31T23:59:59 +* DESCRIPTION : Si-Lin Elementary School +* LATITUDE : 23.812100 +* LONGITUDE : 121.441500 +* ELEVATION : 178.0 +* DEPTH : 0.0 +* DIP : 90.0 +* AZIMUTH : 90.0 +* SAMPLE RATE : 100.0 +* INPUT UNIT : M +* OUTPUT UNIT : COUNTS +* INSTTYPE : SMART24A,SMART24A series, with buildin sensor PA-2 +* INSTGAIN : 2.617870e-01 (M/S**2) +* COMMENT : N/A +* SENSITIVITY : 3.081740e+05 (M/S**2) +* A0 : 2.313560e+09 +* ********************************** +ZEROS 3 + +0.000000e+00 +0.000000e+00 + +0.000000e+00 +0.000000e+00 + -3.333000e+03 +0.000000e+00 +POLES 4 + -7.420000e+02 +1.014000e+03 + -7.420000e+02 -1.014000e+03 + -8.663000e+02 +0.000000e+00 + -5.638000e+03 +0.000000e+00 +CONSTANT +7.129791e+14 diff --git a/tests/test_pz/SAC_PZs_TW_ESL_HLN_10_2018.318.00.00.00.0000_2599.365.23.59.59.99999 b/tests/test_pz/SAC_PZs_TW_ESL_HLN_10_2018.318.00.00.00.0000_2599.365.23.59.59.99999 new file mode 100644 index 0000000..b141c0f --- /dev/null +++ b/tests/test_pz/SAC_PZs_TW_ESL_HLN_10_2018.318.00.00.00.0000_2599.365.23.59.59.99999 @@ -0,0 +1,34 @@ +* ********************************** +* NETWORK (KNETWK): TW +* STATION (KSTNM): ESL +* LOCATION (KHOLE): 10 +* CHANNEL (KCMPNM): HLN +* CREATED : 2024-12-30T02:05:08 +* START : 2018-11-14T00:00:00 +* END : 2599-12-31T23:59:59 +* DESCRIPTION : Si-Lin Elementary School +* LATITUDE : 23.812100 +* LONGITUDE : 121.441500 +* ELEVATION : 178.0 +* DEPTH : 0.0 +* DIP : 90.0 +* AZIMUTH : 0.0 +* SAMPLE RATE : 100.0 +* INPUT UNIT : M +* OUTPUT UNIT : COUNTS +* INSTTYPE : SMART24A,SMART24A series, with buildin sensor PA-2 +* INSTGAIN : 2.645350e-01 (M/S**2) +* COMMENT : N/A +* SENSITIVITY : 3.093960e+05 (M/S**2) +* A0 : 2.313560e+09 +* ********************************** +ZEROS 3 + +0.000000e+00 +0.000000e+00 + +0.000000e+00 +0.000000e+00 + -3.333000e+03 +0.000000e+00 +POLES 4 + -7.420000e+02 +1.014000e+03 + -7.420000e+02 -1.014000e+03 + -8.663000e+02 +0.000000e+00 + -5.638000e+03 +0.000000e+00 +CONSTANT +7.158062e+14 diff --git a/tests/test_pz/SAC_PZs_TW_ESL_HLZ_10_2018.318.00.00.00.0000_2599.365.23.59.59.99999 b/tests/test_pz/SAC_PZs_TW_ESL_HLZ_10_2018.318.00.00.00.0000_2599.365.23.59.59.99999 new file mode 100644 index 0000000..bfe346b --- /dev/null +++ b/tests/test_pz/SAC_PZs_TW_ESL_HLZ_10_2018.318.00.00.00.0000_2599.365.23.59.59.99999 @@ -0,0 +1,34 @@ +* ********************************** +* NETWORK (KNETWK): TW +* STATION (KSTNM): ESL +* LOCATION (KHOLE): 10 +* CHANNEL (KCMPNM): HLZ +* CREATED : 2024-12-30T02:05:08 +* START : 2018-11-14T00:00:00 +* END : 2599-12-31T23:59:59 +* DESCRIPTION : Si-Lin Elementary School +* LATITUDE : 23.812100 +* LONGITUDE : 121.441500 +* ELEVATION : 178.0 +* DEPTH : 0.0 +* DIP : 0.0 +* AZIMUTH : 0.0 +* SAMPLE RATE : 100.0 +* INPUT UNIT : M +* OUTPUT UNIT : COUNTS +* INSTTYPE : SMART24A,SMART24A series, with buildin sensor PA-2 +* INSTGAIN : 2.596730e-01 (M/S**2) +* COMMENT : N/A +* SENSITIVITY : 3.088310e+05 (M/S**2) +* A0 : 2.313560e+09 +* ********************************** +ZEROS 3 + +0.000000e+00 +0.000000e+00 + +0.000000e+00 +0.000000e+00 + -3.333000e+03 +0.000000e+00 +POLES 4 + -7.420000e+02 +1.014000e+03 + -7.420000e+02 -1.014000e+03 + -8.663000e+02 +0.000000e+00 + -5.638000e+03 +0.000000e+00 +CONSTANT +7.144991e+14 diff --git a/tests/test_pz/SAC_PZs_TW_F002_HLE_10_2019.057.00.00.00.0000_2599.365.23.59.59.99999 b/tests/test_pz/SAC_PZs_TW_F002_HLE_10_2019.057.00.00.00.0000_2599.365.23.59.59.99999 new file mode 100644 index 0000000..78e29d7 --- /dev/null +++ b/tests/test_pz/SAC_PZs_TW_F002_HLE_10_2019.057.00.00.00.0000_2599.365.23.59.59.99999 @@ -0,0 +1,34 @@ +* ********************************** +* NETWORK (KNETWK): TW +* STATION (KSTNM): F002 +* LOCATION (KHOLE): 10 +* CHANNEL (KCMPNM): HLE +* CREATED : 2024-12-30T02:09:29 +* START : 2019-02-26T00:00:00 +* END : 2599-12-31T23:59:59 +* DESCRIPTION : HWA002, Fong-Bin Elementary School +* LATITUDE : 23.598203 +* LONGITUDE : 121.520174 +* ELEVATION : 18.0 +* DEPTH : 0.0 +* DIP : 90.0 +* AZIMUTH : 90.0 +* SAMPLE RATE : 100.0 +* INPUT UNIT : M +* OUTPUT UNIT : COUNTS +* INSTTYPE : SMART24A+,SMART24A series, with buildin sensor PA- +* INSTGAIN : 2.532550e-01 (M/S**2) +* COMMENT : N/A +* SENSITIVITY : 3.080250e+05 (M/S**2) +* A0 : 2.313530e+09 +* ********************************** +ZEROS 3 + +0.000000e+00 +0.000000e+00 + +0.000000e+00 +0.000000e+00 + -3.333000e+03 +0.000000e+00 +POLES 4 + -7.420000e+02 +1.014000e+03 + -7.420000e+02 -1.014000e+03 + -8.663000e+02 +0.000000e+00 + -5.638000e+03 +0.000000e+00 +CONSTANT +7.126251e+14 diff --git a/tests/test_pz/SAC_PZs_TW_F002_HLN_10_2019.057.00.00.00.0000_2599.365.23.59.59.99999 b/tests/test_pz/SAC_PZs_TW_F002_HLN_10_2019.057.00.00.00.0000_2599.365.23.59.59.99999 new file mode 100644 index 0000000..d405e8e --- /dev/null +++ b/tests/test_pz/SAC_PZs_TW_F002_HLN_10_2019.057.00.00.00.0000_2599.365.23.59.59.99999 @@ -0,0 +1,34 @@ +* ********************************** +* NETWORK (KNETWK): TW +* STATION (KSTNM): F002 +* LOCATION (KHOLE): 10 +* CHANNEL (KCMPNM): HLN +* CREATED : 2024-12-30T02:09:29 +* START : 2019-02-26T00:00:00 +* END : 2599-12-31T23:59:59 +* DESCRIPTION : HWA002, Fong-Bin Elementary School +* LATITUDE : 23.598203 +* LONGITUDE : 121.520174 +* ELEVATION : 18.0 +* DEPTH : 0.0 +* DIP : 90.0 +* AZIMUTH : 0.0 +* SAMPLE RATE : 100.0 +* INPUT UNIT : M +* OUTPUT UNIT : COUNTS +* INSTTYPE : SMART24A+,SMART24A series, with buildin sensor PA- +* INSTGAIN : 2.586910e-01 (M/S**2) +* COMMENT : N/A +* SENSITIVITY : 3.127880e+05 (M/S**2) +* A0 : 2.313530e+09 +* ********************************** +ZEROS 3 + +0.000000e+00 +0.000000e+00 + +0.000000e+00 +0.000000e+00 + -3.333000e+03 +0.000000e+00 +POLES 4 + -7.420000e+02 +1.014000e+03 + -7.420000e+02 -1.014000e+03 + -8.663000e+02 +0.000000e+00 + -5.638000e+03 +0.000000e+00 +CONSTANT +7.236445e+14 diff --git a/tests/test_pz/SAC_PZs_TW_F002_HLZ_10_2019.057.00.00.00.0000_2599.365.23.59.59.99999 b/tests/test_pz/SAC_PZs_TW_F002_HLZ_10_2019.057.00.00.00.0000_2599.365.23.59.59.99999 new file mode 100644 index 0000000..e1c054c --- /dev/null +++ b/tests/test_pz/SAC_PZs_TW_F002_HLZ_10_2019.057.00.00.00.0000_2599.365.23.59.59.99999 @@ -0,0 +1,34 @@ +* ********************************** +* NETWORK (KNETWK): TW +* STATION (KSTNM): F002 +* LOCATION (KHOLE): 10 +* CHANNEL (KCMPNM): HLZ +* CREATED : 2024-12-30T02:09:29 +* START : 2019-02-26T00:00:00 +* END : 2599-12-31T23:59:59 +* DESCRIPTION : HWA002, Fong-Bin Elementary School +* LATITUDE : 23.598203 +* LONGITUDE : 121.520174 +* ELEVATION : 18.0 +* DEPTH : 0.0 +* DIP : 0.0 +* AZIMUTH : 0.0 +* SAMPLE RATE : 100.0 +* INPUT UNIT : M +* OUTPUT UNIT : COUNTS +* INSTTYPE : SMART24A+,SMART24A series, with buildin sensor PA- +* INSTGAIN : 2.456860e-01 (M/S**2) +* COMMENT : N/A +* SENSITIVITY : 3.140260e+05 (M/S**2) +* A0 : 2.313530e+09 +* ********************************** +ZEROS 3 + +0.000000e+00 +0.000000e+00 + +0.000000e+00 +0.000000e+00 + -3.333000e+03 +0.000000e+00 +POLES 4 + -7.420000e+02 +1.014000e+03 + -7.420000e+02 -1.014000e+03 + -8.663000e+02 +0.000000e+00 + -5.638000e+03 +0.000000e+00 +CONSTANT +7.265086e+14 diff --git a/tests/test_pz/SAC_PZs_TW_SHUL_HH1_00_2018.121.00.00.00.0000_2599.365.23.59.59.99999 b/tests/test_pz/SAC_PZs_TW_SHUL_HH1_00_2018.121.00.00.00.0000_2599.365.23.59.59.99999 new file mode 100644 index 0000000..8c6c115 --- /dev/null +++ b/tests/test_pz/SAC_PZs_TW_SHUL_HH1_00_2018.121.00.00.00.0000_2599.365.23.59.59.99999 @@ -0,0 +1,34 @@ +* ********************************** +* NETWORK (KNETWK): TW +* STATION (KSTNM): SHUL +* LOCATION (KHOLE): 00 +* CHANNEL (KCMPNM): HH1 +* CREATED : 2019-03-11T03:10:36 +* START : 2018-05-01T00:00:00 +* END : 2599-12-31T23:59:59 +* DESCRIPTION : Shulian +* LATITUDE : 23.787500 +* LONGITUDE : 121.562700 +* ELEVATION : 35.3 +* DEPTH : 150.0 +* DIP : 90.0 +* AZIMUTH : 0.0 +* SAMPLE RATE : 100.0 +* INPUT UNIT : M +* OUTPUT UNIT : COUNTS +* INSTTYPE : KS2000, 120 s, 2000 V/m/s-null +* INSTGAIN : 2.172000e+03 (M/S) +* COMMENT : N/A +* SENSITIVITY : 6.599190e+08 (M/S) +* A0 : 9.853340e+04 +* ********************************** +ZEROS 3 + +0.000000e+00 +0.000000e+00 + +0.000000e+00 +0.000000e+00 + +0.000000e+00 +0.000000e+00 +POLES 4 + -3.600000e-02 +3.800000e-02 + -3.600000e-02 -3.800000e-02 + -2.220000e+02 +2.220000e+02 + -2.220000e+02 -2.220000e+02 +CONSTANT +6.502406e+13 diff --git a/tests/test_pz/SAC_PZs_TW_SHUL_HH2_00_2018.121.00.00.00.0000_2599.365.23.59.59.99999 b/tests/test_pz/SAC_PZs_TW_SHUL_HH2_00_2018.121.00.00.00.0000_2599.365.23.59.59.99999 new file mode 100644 index 0000000..2eb9e98 --- /dev/null +++ b/tests/test_pz/SAC_PZs_TW_SHUL_HH2_00_2018.121.00.00.00.0000_2599.365.23.59.59.99999 @@ -0,0 +1,34 @@ +* ********************************** +* NETWORK (KNETWK): TW +* STATION (KSTNM): SHUL +* LOCATION (KHOLE): 00 +* CHANNEL (KCMPNM): HH2 +* CREATED : 2019-03-11T03:10:36 +* START : 2018-05-01T00:00:00 +* END : 2599-12-31T23:59:59 +* DESCRIPTION : Shulian +* LATITUDE : 23.787500 +* LONGITUDE : 121.562700 +* ELEVATION : 35.3 +* DEPTH : 150.0 +* DIP : 90.0 +* AZIMUTH : 90.0 +* SAMPLE RATE : 100.0 +* INPUT UNIT : M +* OUTPUT UNIT : COUNTS +* INSTTYPE : KS2000, 120 s, 2000 V/m/s-null +* INSTGAIN : 2.178000e+03 (M/S) +* COMMENT : N/A +* SENSITIVITY : 6.670780e+08 (M/S) +* A0 : 9.853340e+04 +* ********************************** +ZEROS 3 + +0.000000e+00 +0.000000e+00 + +0.000000e+00 +0.000000e+00 + +0.000000e+00 +0.000000e+00 +POLES 4 + -3.600000e-02 +3.800000e-02 + -3.600000e-02 -3.800000e-02 + -2.220000e+02 +2.220000e+02 + -2.220000e+02 -2.220000e+02 +CONSTANT +6.572946e+13 diff --git a/tests/test_pz/SAC_PZs_TW_SHUL_HHZ_00_2018.121.00.00.00.0000_2599.365.23.59.59.99999 b/tests/test_pz/SAC_PZs_TW_SHUL_HHZ_00_2018.121.00.00.00.0000_2599.365.23.59.59.99999 new file mode 100644 index 0000000..9f3b405 --- /dev/null +++ b/tests/test_pz/SAC_PZs_TW_SHUL_HHZ_00_2018.121.00.00.00.0000_2599.365.23.59.59.99999 @@ -0,0 +1,34 @@ +* ********************************** +* NETWORK (KNETWK): TW +* STATION (KSTNM): SHUL +* LOCATION (KHOLE): 00 +* CHANNEL (KCMPNM): HHZ +* CREATED : 2019-03-11T03:10:36 +* START : 2018-05-01T00:00:00 +* END : 2599-12-31T23:59:59 +* DESCRIPTION : Shulian +* LATITUDE : 23.787500 +* LONGITUDE : 121.562700 +* ELEVATION : 35.3 +* DEPTH : 150.0 +* DIP : 0.0 +* AZIMUTH : 0.0 +* SAMPLE RATE : 100.0 +* INPUT UNIT : M +* OUTPUT UNIT : COUNTS +* INSTTYPE : KS2000, 120 s, 2000 V/m/s-null +* INSTGAIN : 2.072000e+03 (M/S) +* COMMENT : N/A +* SENSITIVITY : 6.326440e+08 (M/S) +* A0 : 9.853340e+04 +* ********************************** +ZEROS 3 + +0.000000e+00 +0.000000e+00 + +0.000000e+00 +0.000000e+00 + +0.000000e+00 +0.000000e+00 +POLES 4 + -3.600000e-02 +3.800000e-02 + -3.600000e-02 -3.800000e-02 + -2.220000e+02 +2.220000e+02 + -2.220000e+02 -2.220000e+02 +CONSTANT +6.233656e+13 diff --git a/tests/test_sac/20240423/2024.114.00.00.00.1000.TW.B090.10.HLZ.D.SAC b/tests/test_sac/20240423/2024.114.00.00.00.1000.TW.B090.10.HLZ.D.SAC new file mode 100644 index 0000000..c2dafa0 Binary files /dev/null and b/tests/test_sac/20240423/2024.114.00.00.00.1000.TW.B090.10.HLZ.D.SAC differ diff --git a/tests/test_sac/20240423/2024.114.00.00.00.5600.TW.B090.10.HLE.D.SAC b/tests/test_sac/20240423/2024.114.00.00.00.5600.TW.B090.10.HLE.D.SAC new file mode 100644 index 0000000..3325fdf Binary files /dev/null and b/tests/test_sac/20240423/2024.114.00.00.00.5600.TW.B090.10.HLE.D.SAC differ diff --git a/tests/test_sac/20240423/2024.114.00.00.01.6500.TW.ESL.10.HLE.D.SAC b/tests/test_sac/20240423/2024.114.00.00.01.6500.TW.ESL.10.HLE.D.SAC new file mode 100644 index 0000000..eb4b805 Binary files /dev/null and b/tests/test_sac/20240423/2024.114.00.00.01.6500.TW.ESL.10.HLE.D.SAC differ diff --git a/tests/test_sac/20240423/2024.114.00.00.02.0000.TW.ESL.10.HLN.D.SAC b/tests/test_sac/20240423/2024.114.00.00.02.0000.TW.ESL.10.HLN.D.SAC new file mode 100644 index 0000000..83a213e Binary files /dev/null and b/tests/test_sac/20240423/2024.114.00.00.02.0000.TW.ESL.10.HLN.D.SAC differ diff --git a/tests/test_sac/20240423/2024.114.00.00.02.0500.TW.ESL.10.HLZ.D.SAC b/tests/test_sac/20240423/2024.114.00.00.02.0500.TW.ESL.10.HLZ.D.SAC new file mode 100644 index 0000000..c6602ad Binary files /dev/null and b/tests/test_sac/20240423/2024.114.00.00.02.0500.TW.ESL.10.HLZ.D.SAC differ diff --git a/tests/test_sac/20240423/2024.114.00.00.04.0100.TW.B090.10.HLN.D.SAC b/tests/test_sac/20240423/2024.114.00.00.04.0100.TW.B090.10.HLN.D.SAC new file mode 100644 index 0000000..db9fdc7 Binary files /dev/null and b/tests/test_sac/20240423/2024.114.00.00.04.0100.TW.B090.10.HLN.D.SAC differ diff --git a/tests/test_sac/20240423/2024.114.10.18.50.0000.TW.F002.10.HLE.D.SAC b/tests/test_sac/20240423/2024.114.10.18.50.0000.TW.F002.10.HLE.D.SAC new file mode 100644 index 0000000..7548cae Binary files /dev/null and b/tests/test_sac/20240423/2024.114.10.18.50.0000.TW.F002.10.HLE.D.SAC differ diff --git a/tests/test_sac/20240423/2024.114.10.18.50.0000.TW.F002.10.HLN.D.SAC b/tests/test_sac/20240423/2024.114.10.18.50.0000.TW.F002.10.HLN.D.SAC new file mode 100644 index 0000000..bf713d5 Binary files /dev/null and b/tests/test_sac/20240423/2024.114.10.18.50.0000.TW.F002.10.HLN.D.SAC differ diff --git a/tests/test_sac/20240423/2024.114.10.18.50.0000.TW.F002.10.HLZ.D.SAC b/tests/test_sac/20240423/2024.114.10.18.50.0000.TW.F002.10.HLZ.D.SAC new file mode 100644 index 0000000..85f20f3 Binary files /dev/null and b/tests/test_sac/20240423/2024.114.10.18.50.0000.TW.F002.10.HLZ.D.SAC differ diff --git a/tests/test_sac/20240423/2024.114.10.22.21.0000.TW.EGC.10.HLE.D.SAC b/tests/test_sac/20240423/2024.114.10.22.21.0000.TW.EGC.10.HLE.D.SAC new file mode 100644 index 0000000..b5fc132 Binary files /dev/null and b/tests/test_sac/20240423/2024.114.10.22.21.0000.TW.EGC.10.HLE.D.SAC differ diff --git a/tests/test_sac/20240423/2024.114.10.22.21.0000.TW.EGC.10.HLN.D.SAC b/tests/test_sac/20240423/2024.114.10.22.21.0000.TW.EGC.10.HLN.D.SAC new file mode 100644 index 0000000..61ee541 Binary files /dev/null and b/tests/test_sac/20240423/2024.114.10.22.21.0000.TW.EGC.10.HLN.D.SAC differ diff --git a/tests/test_sac/20240423/2024.114.10.22.21.0000.TW.EGC.10.HLZ.D.SAC b/tests/test_sac/20240423/2024.114.10.22.21.0000.TW.EGC.10.HLZ.D.SAC new file mode 100644 index 0000000..3e7e27a Binary files /dev/null and b/tests/test_sac/20240423/2024.114.10.22.21.0000.TW.EGC.10.HLZ.D.SAC differ diff --git a/tests/test_sac/20240423/TW.EGFH.00.HH1.D.2024,114,14:16:37.SAC b/tests/test_sac/20240423/TW.EGFH.00.HH1.D.2024,114,14:16:37.SAC new file mode 100644 index 0000000..8a6ec93 Binary files /dev/null and b/tests/test_sac/20240423/TW.EGFH.00.HH1.D.2024,114,14:16:37.SAC differ diff --git a/tests/test_sac/20240423/TW.EGFH.00.HH2.D.2024,114,14:16:37.SAC b/tests/test_sac/20240423/TW.EGFH.00.HH2.D.2024,114,14:16:37.SAC new file mode 100644 index 0000000..bbf1ae0 Binary files /dev/null and b/tests/test_sac/20240423/TW.EGFH.00.HH2.D.2024,114,14:16:37.SAC differ diff --git a/tests/test_sac/20240423/TW.EGFH.00.HHZ.D.2024,114,14:16:37.SAC b/tests/test_sac/20240423/TW.EGFH.00.HHZ.D.2024,114,14:16:37.SAC new file mode 100644 index 0000000..1ae8986 Binary files /dev/null and b/tests/test_sac/20240423/TW.EGFH.00.HHZ.D.2024,114,14:16:37.SAC differ diff --git a/tests/test_sac/20240423/TW.SHUL.00.HH1.D.2024,114,15:34:00.SAC b/tests/test_sac/20240423/TW.SHUL.00.HH1.D.2024,114,15:34:00.SAC new file mode 100644 index 0000000..eb35692 Binary files /dev/null and b/tests/test_sac/20240423/TW.SHUL.00.HH1.D.2024,114,15:34:00.SAC differ diff --git a/tests/test_sac/20240423/TW.SHUL.00.HH2.D.2024,114,15:34:00.SAC b/tests/test_sac/20240423/TW.SHUL.00.HH2.D.2024,114,15:34:00.SAC new file mode 100644 index 0000000..800486a Binary files /dev/null and b/tests/test_sac/20240423/TW.SHUL.00.HH2.D.2024,114,15:34:00.SAC differ diff --git a/tests/test_sac/20240423/TW.SHUL.00.HHZ.D.2024,114,15:34:00.SAC b/tests/test_sac/20240423/TW.SHUL.00.HHZ.D.2024,114,15:34:00.SAC new file mode 100644 index 0000000..39fc7c8 Binary files /dev/null and b/tests/test_sac/20240423/TW.SHUL.00.HHZ.D.2024,114,15:34:00.SAC differ diff --git a/tests/unit/test_config_generation.py b/tests/unit/test_config_generation.py new file mode 100644 index 0000000..fc3336e --- /dev/null +++ b/tests/unit/test_config_generation.py @@ -0,0 +1,100 @@ +"""Unit tests for pure generation/helper logic in ``config_model``. + +Covers date-list generation, archive time-format validation, H3DD run +bookkeeping and the legacy single-config wrapping in ``BatchConfig``. +""" + +from __future__ import annotations + +from pathlib import Path +from types import SimpleNamespace + +import pytest + +from ParamConfig.config_model import ( + BatchConfig, + H3DDConfig, + PhaseNetConfigReceiver, +) + +pytestmark = pytest.mark.unit + + +# --------------------------------------------------------------------------- +# PhaseNet date-list / time-format helpers (called on a stub to avoid the +# filesystem-touching full construction). +# --------------------------------------------------------------------------- +def test_generate_date_list_is_start_inclusive_end_exclusive(): + stub = SimpleNamespace(start='20240423', end='20240426') + assert PhaseNetConfigReceiver._generate_date_list(stub) == [ + '20240423', + '20240424', + '20240425', + ] + + +def test_generate_date_list_single_day(): + stub = SimpleNamespace(start='20240423', end='20240424') + assert PhaseNetConfigReceiver._generate_date_list(stub) == ['20240423'] + + +def test_time_code_checker_accepts_yyyymmdd(): + stub = SimpleNamespace(start='20240423', end='20240424') + # Should not raise. + PhaseNetConfigReceiver._time_code_checker(stub) + + +def test_time_code_checker_rejects_non_archive_format(): + stub = SimpleNamespace(start='2024-04-23T00:00:00', end='20240424') + with pytest.raises(ValueError, match='YYYYMMDD'): + PhaseNetConfigReceiver._time_code_checker(stub) + + +# --------------------------------------------------------------------------- +# H3DD run bookkeeping +# --------------------------------------------------------------------------- +def _run(name: str, cutoff: float) -> dict: + return {'event_name': name, 'cutoff_distances': cutoff} + + +def test_h3dd_run_count_zero_without_runs(): + cfg = H3DDConfig(enabled=False) + assert cfg.get_run_count() == 0 + assert cfg.get_run_config(0) is None + + +def test_h3dd_single_run(): + cfg = H3DDConfig(enabled=False, runs={'first': _run('H3DD_1', 0.0)}) + assert cfg.get_run_count() == 1 + assert cfg.get_run_config(0).event_name == 'H3DD_1' + assert cfg.get_run_config(1) is None + + +def test_h3dd_double_run(): + cfg = H3DDConfig( + enabled=False, + runs={'first': _run('H3DD_1', 0.0), 'second': _run('H3DD_2', 2.0)}, + ) + assert cfg.get_run_count() == 2 + assert cfg.get_run_config(0).cutoff_distances == 0.0 + assert cfg.get_run_config(1).event_name == 'H3DD_2' + assert cfg.get_run_config(2) is None + + +# --------------------------------------------------------------------------- +# BatchConfig legacy-format handling +# --------------------------------------------------------------------------- +def test_legacy_single_config_is_wrapped(tmp_path: Path): + batch = BatchConfig(name='legacy', result_path=str(tmp_path / 'r')) + assert len(batch.configs) == 1 + assert batch.configs[0].name == 'legacy' + + +def test_batch_format_preserves_order(tmp_path: Path): + batch = BatchConfig( + configs=[ + {'name': 'a', 'result_path': str(tmp_path / 'a')}, + {'name': 'b', 'result_path': str(tmp_path / 'b')}, + ] + ) + assert [c.name for c in batch.configs] == ['a', 'b'] diff --git a/tests/unit/test_config_validation.py b/tests/unit/test_config_validation.py new file mode 100644 index 0000000..7c224bc --- /dev/null +++ b/tests/unit/test_config_validation.py @@ -0,0 +1,134 @@ +"""Unit tests for the cross-component validation rules in ``RunConfig``. + +These exercise ``ParamConfig.config_model`` only (pydantic + pandas), so they +are fast and run anywhere. Every ``RunConfig`` here points ``result_path`` at a +``tmp_path`` so the implicit ``mkdir`` never touches the repo. +""" + +from __future__ import annotations + +from pathlib import Path + +import pytest +from pydantic import ValidationError + +from ParamConfig.config_model import ( + GaMMAConfig, + RunConfig, +) + +pytestmark = pytest.mark.unit + + +def _gamma_enabled(**overrides) -> dict: + base = dict( + enabled=True, + station='station.csv', + velocity_model='velocity.vel', + center=(121.625, 24.0), + xlim_degree=[121.0, 122.25], + ylim_degree=[23.25, 24.75], + ) + base.update(overrides) + return base + + +def _h3dd_enabled(**overrides) -> dict: + base = dict( + enabled=True, + station='station.csv', + model_3D='tomops_H14', + runs={'first': {'event_name': 'H3DD_1', 'cutoff_distances': 0.0}}, + ) + base.update(overrides) + return base + + +# --------------------------------------------------------------------------- +# Component-level required-when-enabled validation +# --------------------------------------------------------------------------- +def test_gamma_missing_required_fields_raises(): + with pytest.raises(ValidationError, match='required when GaMMA is enabled'): + GaMMAConfig(enabled=True) # missing station/velocity_model/center/... + + +def test_gamma_disabled_allows_missing_fields(): + cfg = GaMMAConfig(enabled=False) + assert cfg.enabled is False + + +# --------------------------------------------------------------------------- +# RunConfig cross-component dependency rules +# --------------------------------------------------------------------------- +def test_gamma_without_phasenet_or_picks_raises(tmp_path: Path): + with pytest.raises(ValidationError, match='no picks_csv provided'): + RunConfig(result_path=tmp_path / 'r', GaMMA=_gamma_enabled()) + + +def test_gamma_with_explicit_picks_ok(tmp_path: Path): + cfg = RunConfig( + result_path=tmp_path / 'r', + GaMMA=_gamma_enabled(picks_csv='picks.csv'), + ) + assert cfg.is_component_enabled('GaMMA') + + +def test_h3dd_without_gamma_requires_csvs(tmp_path: Path): + with pytest.raises( + ValidationError, match='events_csv/picks_csv not fully provided' + ): + RunConfig(result_path=tmp_path / 'r', H3DD=_h3dd_enabled()) + + +def test_h3dd_with_explicit_csvs_ok(tmp_path: Path): + cfg = RunConfig( + result_path=tmp_path / 'r', + H3DD=_h3dd_enabled(events_csv='e.csv', picks_csv='p.csv'), + ) + assert cfg.is_component_enabled('H3DD') + + +def test_magnitude_without_h3dd_requires_dout(tmp_path: Path): + mag = dict( + enabled=True, + station='station.csv', + sac_parent_dir='test_sac', + pz_dir='test_pz', + ) + with pytest.raises(ValidationError, match='no dout_file provided'): + RunConfig(result_path=tmp_path / 'r', Magnitude=mag) + + +def test_polarity_manual_picks_with_upstream_enabled_raises(tmp_path: Path): + with pytest.raises( + ValidationError, match='only be set when both GaMMA and PhaseNet are disabled' + ): + RunConfig( + result_path=tmp_path / 'r', + GaMMA=_gamma_enabled(picks_csv='picks.csv'), + Polarity={'enabled': True, 'picks_csv': 'manual.csv'}, + ) + + +def test_polarity_with_gamma_upstream_ok(tmp_path: Path): + cfg = RunConfig( + result_path=tmp_path / 'r', + GaMMA=_gamma_enabled(picks_csv='picks.csv'), + Polarity={'enabled': True, 'sac_parent_dir': 'test_sac'}, + ) + assert cfg.is_component_enabled('Polarity') + + +def test_focal_without_inputs_raises(tmp_path: Path): + with pytest.raises(ValidationError, match='no dout_file provided'): + RunConfig(result_path=tmp_path / 'r', Focal={'enabled': True}) + + +# --------------------------------------------------------------------------- +# is_component_enabled defaults +# --------------------------------------------------------------------------- +def test_is_component_enabled_for_absent_component(tmp_path: Path): + cfg = RunConfig(result_path=tmp_path / 'r') + assert cfg.is_component_enabled('PhaseNet') is False + assert cfg.is_component_enabled('GaMMA') is False + assert cfg.is_component_enabled('Focal') is False diff --git a/tests/unit/test_params_test_json.py b/tests/unit/test_params_test_json.py new file mode 100644 index 0000000..3f32a13 --- /dev/null +++ b/tests/unit/test_params_test_json.py @@ -0,0 +1,58 @@ +"""Guard the canonical example config (``tests/params_test.json``). + +If the JSON drifts away from what ``config_model`` accepts, this fails fast in +CI -- before anyone discovers it by launching the real (slow) pipeline. + +We build ``BatchConfig`` directly (not via ``predict.load_config``) to keep the +test pip-only: importing ``predict`` would pull in torch/obspy/onnxruntime. +``result_path`` is redirected into ``tmp_path`` so the implicit ``mkdir`` never +creates ``pipeline_test`` in the repo, and we ``chdir`` into the data dir so the +config's relative paths (``test_sac``, ``station.csv``) resolve. +""" + +from __future__ import annotations + +from pathlib import Path + +import pytest + +from ParamConfig.config_model import BatchConfig + +pytestmark = pytest.mark.unit + +ALL_COMPONENTS = ['PhaseNet', 'GaMMA', 'H3DD', 'Magnitude', 'Polarity', 'Focal'] + + +@pytest.fixture +def loaded_config( + params_dict: dict, + tmp_path: Path, + test_data_dir: Path, + monkeypatch: pytest.MonkeyPatch, +): + params_dict['configs'][0]['result_path'] = str(tmp_path / 'pipeline_test') + monkeypatch.chdir(test_data_dir) + return BatchConfig(**params_dict) + + +def test_params_test_json_parses_to_single_run(loaded_config): + assert len(loaded_config.configs) == 1 + assert loaded_config.configs[0].name == 'pipeline' + + +def test_all_six_components_enabled(loaded_config): + cfg = loaded_config.configs[0] + for component in ALL_COMPONENTS: + assert cfg.is_component_enabled(component), f'{component} should be enabled' + + +def test_phasenet_archive_expansion(loaded_config): + phasenet = loaded_config.configs[0].PhaseNet + # start=20240423, end=20240424 -> exactly one archive day. + assert phasenet.date_list == ['20240423'] + assert phasenet.args_list is not None + assert len(phasenet.args_list) == 1 + + +def test_h3dd_configured_for_two_runs(loaded_config): + assert loaded_config.configs[0].H3DD.get_run_count() == 2 diff --git a/tests/unit/test_path_resolver.py b/tests/unit/test_path_resolver.py new file mode 100644 index 0000000..37c4df5 --- /dev/null +++ b/tests/unit/test_path_resolver.py @@ -0,0 +1,38 @@ +"""Unit tests for ``PathResolver`` explicit-path resolution. + +Auto-detection is currently commented out in ``config_model.py``; these tests +pin the active behaviour: an explicit path is returned when it exists and a +missing explicit path raises ``FileNotFoundError``. +""" + +from __future__ import annotations + +from pathlib import Path + +import pytest + +from ParamConfig.config_model import PathResolver + +pytestmark = pytest.mark.unit + +RESOLVE_METHODS = [ + 'resolve_picks', + 'resolve_gamma_picks', + 'resolve_gamma_events', + 'resolve_dout', +] + + +@pytest.mark.parametrize('method', RESOLVE_METHODS) +def test_returns_existing_explicit_path(method: str, tmp_path: Path): + resolver = PathResolver(tmp_path) + target = tmp_path / 'input.dat' + target.write_text('content') + assert getattr(resolver, method)(target) == target + + +@pytest.mark.parametrize('method', RESOLVE_METHODS) +def test_missing_explicit_path_raises(method: str, tmp_path: Path): + resolver = PathResolver(tmp_path) + with pytest.raises(FileNotFoundError): + getattr(resolver, method)(tmp_path / 'does_not_exist.dat') diff --git a/tests/vel_model/Hualien_1D.vel b/tests/vel_model/Hualien_1D.vel new file mode 100755 index 0000000..662c003 --- /dev/null +++ b/tests/vel_model/Hualien_1D.vel @@ -0,0 +1,61 @@ +0,3.89464,2.29031 +1,4.31682,2.56823 +2,4.54983,2.70878 +3,4.78285,2.84904 +4,4.9713,2.94127 +5,5.15991,3.03332 +6,5.34837,3.12557 +7,5.4535,3.18084 +8,5.55863,3.23611 +9,5.66379,3.29139 +10,5.76894,3.34665 +11,5.83623,3.38542 +12,5.90351,3.42417 +13,5.9708,3.46292 +14,6.03808,3.50167 +15,6.10536,3.54044 +16,6.16456,3.57736 +17,6.22375,3.61427 +18,6.28295,3.65119 +19,6.34212,3.68812 +20,6.40132,3.72503 +21,6.46481,3.75941 +22,6.52831,3.79376 +23,6.59181,3.82814 +24,6.6553,3.8625 +25,6.7188,3.89686 +26,6.78559,3.92813 +27,6.85238,3.95937 +28,6.91921,3.99064 +29,6.986,4.02189 +30,7.0528,4.05315 +31,7.09693,4.08313 +32,7.14105,4.11309 +33,7.18518,4.14307 +34,7.22933,4.17304 +35,7.27345,4.203 +36,7.3093,4.21799 +37,7.34518,4.23299 +38,7.38103,4.24798 +39,7.4169,4.26297 +40,7.45276,4.27795 +41,7.48371,4.29184 +42,7.51467,4.30573 +43,7.54564,4.31962 +44,7.57659,4.33351 +45,7.60753,4.34739 +46,7.63647,4.36501 +47,7.6654,4.38261 +48,7.69432,4.40022 +49,7.72327,4.41783 +50,7.7522,4.43543 +51,7.77329,4.4416 +52,7.7944,4.44776 +53,7.8155,4.45393 +54,7.8366,4.46009 +55,7.85769,4.46625 +56,7.87385,4.47392 +57,7.88999,4.48157 +58,7.90613,4.48924 +59,7.92228,4.49689 +60,7.93842,4.50456 diff --git a/tests/vel_model/tomops_H14 b/tests/vel_model/tomops_H14 new file mode 100755 index 0000000..76dc929 --- /dev/null +++ b/tests/vel_model/tomops_H14 @@ -0,0 +1,3298 @@ + 0.001 0.100 76 61 27 + 119.00 119.08 119.16 119.24 119.32 119.40 119.48 119.56 119.64 119.72 119.80 119.88 119.96 120.04 120.12 120.20 120.28 120.36 120.44 120.52 120.60 120.68 120.76 120.84 120.92 121.00 121.08 121.16 121.24 121.32 121.40 121.48 121.56 121.64 121.72 121.80 121.88 121.96 122.04 122.12 122.20 122.28 122.36 122.44 122.52 122.60 122.68 122.76 122.84 122.92 123.00 123.08 123.16 123.24 123.32 123.40 123.48 123.56 123.64 123.72 123.80 123.88 123.96 124.04 124.12 124.20 124.28 124.36 124.44 124.52 124.60 124.68 124.76 124.84 124.92 125.00 + 21.30 21.38 21.46 21.54 21.62 21.70 21.78 21.86 21.94 22.02 22.10 22.18 22.26 22.34 22.42 22.50 22.58 22.66 22.74 22.82 22.90 22.98 23.06 23.14 23.22 23.30 23.38 23.46 23.54 23.62 23.70 23.78 23.86 23.94 24.02 24.10 24.18 24.26 24.34 24.42 24.50 24.58 24.66 24.74 24.82 24.90 24.98 25.06 25.14 25.22 25.30 25.38 25.46 25.54 25.62 25.70 25.78 25.86 25.94 26.02 26.10 + -5.00 0.00 0.50 3.00 6.00 10.00 15.00 20.00 25.00 30.00 35.00 40.00 45.00 50.00 55.00 60.00 65.00 70.00 80.00 90.00 100.00 120.00 140.00 170.00 200.00 250.00 300.00 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.818 2.489 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.534 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.932 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.051 2.789 3.000 3.015 2.887 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.490 1.992 1.918 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 1.917 1.931 2.205 2.190 2.203 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 1.648 1.646 1.911 1.721 2.253 3.000 3.000 3.000 3.000 2.502 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 1.814 2.011 2.806 2.048 3.000 3.000 3.000 3.000 3.000 2.458 1.799 2.005 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.500 2.473 2.765 3.000 2.443 3.000 3.000 3.000 3.000 3.000 2.650 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.095 2.217 2.003 3.000 2.610 3.000 2.988 3.000 3.000 3.000 3.000 2.127 3.000 2.711 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 1.650 2.208 3.000 3.000 2.994 3.000 3.000 3.000 3.000 3.000 3.000 2.613 2.126 2.100 2.397 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 1.909 2.177 2.398 2.087 2.884 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.364 3.000 2.605 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.587 2.317 1.955 3.000 2.865 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.930 2.248 2.333 3.000 2.876 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.175 2.074 2.056 2.690 2.910 3.000 2.974 3.000 3.000 3.000 2.999 3.000 3.000 3.000 2.996 3.000 2.602 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.673 2.516 1.807 2.192 2.591 2.937 2.396 2.529 3.000 3.000 3.079 2.995 3.000 3.000 3.000 2.314 3.000 2.821 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.817 2.268 2.556 1.952 2.871 2.810 2.936 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.986 3.000 2.650 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.021 2.097 2.122 1.676 3.000 3.000 3.000 2.885 2.853 3.100 3.101 3.000 3.000 3.000 2.260 2.466 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.248 2.162 2.106 1.701 2.282 2.898 2.940 2.807 2.766 3.142 3.147 3.000 3.000 3.000 2.914 2.836 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.775 2.194 2.574 2.447 2.135 1.804 2.391 2.842 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.669 2.943 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.136 2.176 2.540 2.171 1.808 2.089 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.731 2.009 2.579 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.636 2.209 2.531 2.078 2.197 2.537 3.000 3.000 2.649 3.000 3.000 2.996 2.979 3.300 3.006 2.841 1.989 2.702 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.367 2.718 2.131 2.125 2.510 2.604 2.501 2.748 2.931 3.000 3.000 3.000 3.000 3.000 3.000 2.021 2.645 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.246 2.274 2.122 2.045 2.351 3.000 3.000 2.527 2.990 3.000 3.000 3.000 3.000 3.000 2.496 1.573 2.867 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.864 2.038 3.000 2.493 2.386 3.000 2.909 2.971 3.000 3.000 3.000 3.000 3.000 3.000 3.000 1.660 2.322 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.256 2.088 2.226 2.144 2.961 3.000 3.000 3.000 3.000 3.004 2.985 2.987 3.000 3.000 3.000 2.286 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.429 1.798 1.723 3.000 3.000 3.000 3.000 3.000 3.005 2.983 2.940 3.000 2.571 3.000 2.184 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.854 1.961 2.160 2.509 2.662 3.000 3.000 3.000 3.075 3.003 2.999 3.000 3.000 3.000 3.000 2.740 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.367 2.847 2.791 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.376 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.590 1.879 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.001 3.000 3.000 3.000 2.813 2.868 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.200 2.312 2.340 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.442 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.107 2.167 2.759 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.314 2.953 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.733 2.714 2.528 3.000 3.000 3.000 2.957 2.962 2.991 3.000 3.000 2.115 1.494 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.491 2.151 2.077 2.773 3.000 3.000 3.000 3.000 3.000 2.348 1.345 1.474 3.000 3.000 3.000 3.000 3.000 3.003 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.569 1.643 2.674 2.895 3.000 3.000 3.000 3.000 3.000 3.000 2.167 1.660 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.677 3.000 2.847 2.636 2.689 3.000 3.000 2.833 3.000 3.000 2.810 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.340 2.489 2.672 1.921 1.919 2.285 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.566 2.692 2.665 1.938 1.373 1.394 2.431 3.000 2.993 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 1.885 1.656 2.613 3.000 2.841 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 2.345 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 3.000 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.849 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.845 4.575 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 2.818 2.489 3.109 3.847 3.847 3.848 3.847 3.818 3.847 3.847 3.847 4.089 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 2.534 3.275 3.847 3.847 3.847 3.847 3.850 3.847 3.847 3.798 3.875 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.018 3.796 3.687 3.698 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.390 3.846 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.537 3.847 3.847 3.039 3.441 3.923 2.932 3.621 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 2.051 2.789 3.881 4.504 2.887 3.636 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 2.490 1.992 1.918 3.270 3.847 3.847 3.847 3.821 3.804 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 1.917 1.931 2.205 2.190 2.203 3.847 3.847 3.847 3.876 3.065 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 1.648 1.646 1.911 1.721 2.253 3.340 3.847 3.847 3.830 2.502 3.162 3.847 3.847 3.847 3.847 3.728 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 1.814 2.011 2.806 2.048 3.195 3.622 3.598 3.847 3.847 2.458 1.799 2.005 3.847 3.847 3.851 3.816 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 2.500 2.473 2.765 3.847 2.443 3.847 3.909 3.847 3.847 3.847 2.650 3.102 3.881 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 2.095 2.217 2.003 3.847 2.610 3.199 2.988 5.076 3.847 3.847 3.847 2.127 3.968 2.711 3.499 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.135 1.650 2.208 3.274 3.847 2.994 3.611 3.847 3.847 3.847 3.847 3.844 2.613 2.126 2.100 2.397 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 1.909 2.177 2.398 2.087 2.884 3.596 3.786 3.896 4.634 4.300 3.850 3.847 3.847 2.364 3.421 2.605 3.233 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.623 2.587 2.317 1.955 3.123 2.865 3.922 3.863 3.834 3.962 4.100 3.887 3.817 3.824 2.248 2.333 3.346 2.876 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.917 3.825 3.847 3.847 3.847 3.847 2.175 2.074 2.056 2.690 2.910 3.775 4.087 3.654 3.580 3.802 4.188 3.648 4.074 3.842 2.996 3.374 2.602 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.913 3.852 3.847 3.847 3.847 3.847 2.673 2.516 1.807 2.192 2.591 2.937 2.396 2.529 3.353 3.799 4.482 3.760 3.847 3.847 3.221 2.314 3.030 2.821 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 2.817 2.268 2.556 1.952 2.871 2.810 2.936 3.755 3.847 3.876 4.222 3.917 3.847 3.847 4.272 3.361 3.498 2.650 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.971 3.847 3.847 3.847 3.847 3.847 3.847 3.847 2.021 2.097 2.122 1.676 3.105 3.062 3.767 4.173 4.322 4.012 5.034 3.847 3.847 3.847 2.260 2.466 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 4.098 3.847 3.847 3.847 3.847 3.847 3.847 3.847 2.248 2.162 2.106 1.701 2.282 2.898 4.129 4.075 5.189 3.845 4.373 3.847 3.847 3.847 2.914 2.836 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.805 3.847 3.847 3.847 3.847 3.847 3.847 2.775 2.194 2.574 2.447 2.135 1.804 2.391 3.678 3.821 3.731 3.826 3.847 3.847 3.847 3.847 3.398 2.669 2.943 3.220 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 2.136 2.176 2.540 2.171 1.808 2.089 3.474 3.847 3.977 3.847 3.908 4.000 3.620 4.171 3.835 2.731 2.009 2.579 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 2.636 2.209 2.531 2.078 2.197 2.537 3.442 3.340 2.649 3.945 4.960 5.032 3.407 4.982 3.866 2.841 1.989 2.702 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 2.367 2.718 2.131 2.125 2.510 2.604 2.501 2.748 3.972 3.944 3.847 3.847 3.847 3.847 3.399 2.021 2.645 3.810 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 2.246 2.274 2.122 2.045 2.351 3.187 3.907 2.527 2.990 3.859 3.847 3.847 3.847 3.847 2.496 1.573 2.867 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 2.864 2.038 3.312 2.493 2.386 3.281 2.909 2.971 3.449 3.685 3.487 3.748 3.778 3.411 3.323 1.660 2.322 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.750 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 2.256 2.088 2.226 2.144 2.961 3.847 3.847 3.847 3.847 3.909 6.374 7.338 3.840 3.847 3.224 2.286 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.783 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.140 2.429 1.798 1.723 3.120 3.914 3.943 3.891 3.984 3.978 3.660 5.338 3.522 2.571 3.976 2.184 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.801 3.623 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 2.854 1.961 2.160 2.509 2.662 3.838 3.862 3.955 4.894 4.873 3.657 3.797 3.947 3.847 3.847 2.740 3.349 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.729 3.671 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 2.367 2.847 2.791 3.691 3.847 3.895 3.847 3.847 3.934 3.597 3.685 3.847 3.847 3.847 2.376 3.273 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 4.624 3.946 3.847 3.847 3.847 4.090 3.805 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 2.590 1.879 3.468 3.799 3.993 3.847 3.847 3.847 3.764 4.461 3.847 3.780 3.847 2.813 2.868 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.901 3.731 3.815 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.780 3.709 3.801 3.847 3.847 4.009 3.941 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 2.200 2.312 2.340 3.387 3.847 3.905 3.875 3.847 3.792 3.695 3.666 3.923 4.777 3.045 2.442 3.522 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.831 3.685 3.855 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.700 3.742 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.267 2.107 2.167 2.759 3.329 3.994 4.108 3.730 3.629 3.878 3.513 3.333 4.071 3.819 2.314 2.953 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 4.025 3.830 3.847 3.847 3.847 3.803 3.841 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 2.733 2.714 2.528 3.260 3.756 4.192 3.309 7.040 3.583 3.033 3.294 2.115 1.494 3.286 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.773 3.761 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 2.491 2.151 2.077 2.773 4.611 3.928 3.795 3.847 3.706 2.348 1.345 1.474 3.793 3.847 3.847 3.847 3.894 4.001 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 2.569 1.643 2.674 2.895 3.017 3.847 3.844 3.786 3.660 3.485 2.167 1.660 3.434 3.294 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 2.677 3.395 2.847 2.636 2.689 3.308 3.519 2.833 3.848 3.805 2.810 3.477 3.596 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.846 3.893 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 2.340 2.489 2.672 1.921 1.919 2.285 3.068 3.366 4.225 3.516 3.115 3.914 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 2.566 2.692 2.665 1.938 1.373 1.394 2.431 3.269 3.191 3.285 3.272 3.865 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 1.885 1.656 2.613 3.025 2.841 3.148 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.047 3.123 2.345 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.687 3.522 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.793 3.793 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 3.847 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 3.865 3.879 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.199 4.172 4.125 4.187 4.320 4.433 4.145 4.027 4.145 4.166 4.115 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.360 4.518 4.625 4.651 4.269 4.304 4.380 4.210 4.145 4.145 4.145 4.145 4.145 4.192 4.155 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.032 4.110 4.359 4.495 4.145 4.480 4.141 4.032 4.230 4.145 4.146 4.162 4.145 4.141 4.146 4.166 4.225 4.521 4.173 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.053 4.029 4.035 4.086 4.065 4.145 4.145 4.082 4.027 4.080 4.019 4.145 4.145 4.145 4.155 4.145 4.145 4.088 4.370 4.175 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.068 4.145 4.145 3.799 4.145 4.145 4.157 4.103 4.018 3.933 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.392 4.300 4.217 4.152 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 3.583 3.658 4.145 4.473 4.387 4.295 4.185 4.151 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 3.762 4.145 4.474 4.514 4.481 4.516 4.421 4.332 4.207 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 3.972 3.956 4.120 4.265 4.283 4.279 4.145 4.145 4.315 4.199 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 3.912 3.937 4.042 4.066 4.143 4.187 4.145 4.145 4.343 4.251 4.110 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.003 4.004 3.942 3.898 4.192 4.430 4.145 4.145 4.422 4.218 3.961 4.145 4.145 4.145 4.012 3.980 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.227 4.063 3.761 3.810 4.580 5.019 4.409 4.145 4.116 3.995 3.723 3.076 3.413 4.074 4.080 4.069 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.256 4.039 3.584 3.858 4.454 4.815 4.686 4.145 4.212 4.253 4.530 3.786 3.788 4.156 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 3.981 4.074 4.102 3.933 4.119 4.359 4.572 5.085 4.145 4.211 4.193 4.203 4.216 3.975 4.037 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.030 3.787 3.765 3.829 4.145 4.095 4.149 4.239 4.261 4.220 4.235 4.246 4.139 4.093 3.880 4.052 4.264 4.145 4.169 4.194 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.076 3.747 3.605 3.500 3.579 3.918 4.022 4.206 4.610 4.693 4.461 4.400 4.283 3.789 3.706 3.788 4.052 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.368 4.266 3.996 3.840 3.760 3.766 4.028 4.251 4.279 4.617 4.722 4.508 4.537 4.861 3.891 3.696 3.638 3.737 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.220 4.276 4.145 4.145 4.145 4.145 4.331 4.065 3.875 3.856 3.880 3.937 4.298 4.185 4.572 4.692 4.579 4.503 4.857 4.245 4.004 3.907 3.806 3.859 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.166 4.219 4.145 4.145 4.145 4.145 4.369 4.101 3.872 3.832 3.830 3.772 3.978 4.163 4.425 4.643 4.845 4.858 4.732 4.184 4.135 4.119 4.153 3.997 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.381 4.150 3.950 3.834 3.735 3.678 3.650 3.995 4.211 4.813 4.942 5.254 4.145 4.145 4.685 4.772 4.651 4.155 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.496 4.145 4.145 4.145 4.145 4.145 4.145 4.145 3.978 3.835 3.782 3.599 3.581 3.732 4.244 4.653 4.701 4.385 4.608 4.220 4.200 4.792 4.901 4.857 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.427 4.416 4.145 4.145 4.145 4.145 4.145 4.145 4.131 3.940 3.796 3.539 3.457 3.759 4.588 4.518 4.693 4.458 4.768 4.391 4.145 4.354 4.339 4.282 4.045 3.908 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.249 4.252 4.145 4.145 4.145 4.145 4.145 4.433 4.362 4.126 3.949 3.784 3.642 3.726 4.505 4.305 4.405 4.459 4.607 4.273 4.145 4.203 4.235 4.140 3.939 3.790 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.458 4.464 4.285 4.018 3.799 3.674 3.529 3.825 3.929 4.130 4.428 4.551 4.470 4.593 4.481 4.497 4.385 3.748 3.512 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.421 4.333 4.072 3.855 3.695 3.482 3.497 3.605 3.889 4.621 4.983 4.732 4.717 4.591 4.588 4.638 4.184 3.825 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.409 4.115 3.943 3.764 3.476 3.487 3.558 3.999 4.581 4.645 4.586 4.621 4.457 4.276 4.319 4.083 3.793 3.605 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.308 4.091 3.990 3.875 3.645 3.742 3.796 4.069 4.243 4.171 4.228 4.252 4.347 4.284 4.097 3.832 3.439 3.384 3.778 3.993 4.145 4.145 4.145 4.145 4.145 4.161 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.030 3.954 3.847 3.642 3.775 3.850 3.985 3.997 3.940 4.074 4.143 4.532 4.509 4.118 3.984 3.801 3.758 3.919 4.064 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 3.997 3.914 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 3.989 3.910 3.791 3.807 3.810 4.007 4.104 4.145 4.294 4.348 4.738 4.990 4.460 4.270 4.447 4.426 4.277 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.188 4.214 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.003 3.923 4.141 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.072 4.058 3.913 3.799 3.813 3.993 4.162 4.364 4.528 4.542 4.390 4.986 4.594 4.439 5.216 5.109 4.199 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 3.830 3.808 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.289 4.083 3.924 3.837 3.862 4.030 4.287 4.570 4.635 4.455 4.505 4.414 4.423 4.802 4.145 3.610 3.568 4.145 4.198 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.215 4.145 4.145 3.727 3.714 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.050 3.951 3.840 3.785 4.044 4.185 4.193 4.716 4.612 4.482 4.347 4.145 4.145 4.145 4.128 4.034 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.126 4.008 4.145 4.145 4.145 4.661 4.297 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 3.968 3.944 3.893 3.954 4.134 4.145 4.145 4.145 4.361 4.235 4.204 4.192 4.214 4.614 4.490 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.217 4.166 4.064 4.145 4.145 4.145 4.145 4.145 4.145 4.145 3.922 3.848 3.890 4.145 4.145 4.540 4.322 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 3.992 3.981 3.940 3.964 4.129 4.206 4.273 4.169 4.143 4.057 4.088 4.173 4.423 4.485 4.505 4.530 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.238 4.202 4.104 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 3.831 3.904 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.042 4.003 3.974 4.063 4.201 4.141 4.242 4.297 4.321 4.232 4.092 3.988 4.168 4.232 4.352 4.707 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.456 4.385 4.145 4.145 4.145 4.109 4.113 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.012 4.119 4.206 4.024 4.002 4.168 4.437 4.574 4.178 3.897 4.167 3.836 3.775 4.367 4.145 4.145 4.145 4.159 4.208 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.305 4.145 4.145 4.145 4.145 4.020 4.054 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.094 4.024 3.794 3.711 3.890 4.164 4.249 4.212 4.224 4.390 3.654 3.569 3.984 4.145 4.145 4.145 4.239 4.256 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.064 3.938 3.777 3.770 3.884 4.046 4.148 4.179 4.138 4.164 3.834 3.853 3.878 3.507 4.033 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.013 3.939 3.894 3.910 4.033 4.159 4.282 4.186 4.193 4.126 4.174 4.147 3.934 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.217 4.280 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.074 3.964 3.942 4.051 4.115 4.261 4.203 4.201 4.245 4.322 4.383 4.383 4.278 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.190 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.120 4.145 4.145 4.145 4.145 4.145 4.145 4.173 4.099 4.039 3.997 3.810 3.701 3.713 4.003 4.253 4.170 4.193 4.292 4.251 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 3.860 3.807 3.822 3.965 4.127 4.096 4.114 4.183 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.053 4.019 3.916 3.899 4.059 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 3.845 3.800 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.181 4.225 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.220 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 3.985 3.960 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 4.145 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.857 4.931 4.648 4.648 4.648 4.648 4.113 4.091 4.500 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.838 4.813 4.690 4.750 5.061 5.155 4.589 4.351 4.614 4.673 4.609 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.586 4.683 5.134 5.554 5.588 5.350 4.706 4.727 4.917 4.700 4.593 4.629 4.648 4.708 4.740 4.753 4.646 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.411 4.587 5.297 5.750 5.623 5.217 4.603 4.450 4.782 4.669 4.649 4.663 4.621 4.695 4.704 4.720 4.704 5.150 5.006 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.450 4.379 4.399 4.515 4.617 4.648 4.648 4.574 4.503 4.606 4.541 4.635 4.682 4.650 4.684 4.614 4.588 4.470 4.968 4.910 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.497 4.439 4.648 4.360 4.273 4.648 4.648 4.706 4.626 4.520 4.378 4.648 4.648 4.648 4.627 4.619 4.648 4.648 4.648 4.676 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 5.027 4.902 4.769 4.594 4.425 4.436 4.588 4.648 4.648 4.607 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 3.913 4.067 4.642 5.191 5.006 4.836 4.693 4.621 4.500 4.616 4.613 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.097 4.355 4.988 5.326 5.253 5.151 5.202 5.116 4.762 4.669 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.342 4.286 4.468 4.754 4.908 4.980 5.134 5.243 5.128 4.833 4.746 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.267 4.213 4.372 4.478 4.641 4.770 4.648 4.874 5.011 4.941 4.708 4.648 4.648 4.648 4.648 4.397 4.592 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.391 4.374 4.320 4.190 4.574 5.016 4.754 4.670 5.351 5.208 4.504 3.793 4.648 4.648 4.432 4.406 4.500 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.896 4.768 4.526 4.097 4.019 5.011 6.038 4.918 4.709 4.912 4.694 4.225 3.411 3.858 4.320 4.515 4.550 4.596 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.595 4.600 4.648 4.783 4.823 4.570 3.913 4.082 4.921 5.713 5.274 4.859 4.828 4.758 5.117 4.185 4.208 4.409 4.701 4.648 4.648 4.648 4.648 4.631 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.624 4.672 4.473 4.529 4.585 4.366 4.542 4.863 5.129 5.616 5.229 4.964 4.816 5.033 4.974 4.377 4.390 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.462 4.130 4.049 4.133 4.153 4.419 4.504 4.633 5.109 5.171 5.034 4.958 4.815 4.648 4.244 4.451 4.975 4.648 4.812 4.761 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.505 4.019 3.793 3.662 3.765 4.196 4.274 4.544 5.160 5.335 5.123 5.242 4.937 4.089 3.989 4.113 4.816 4.902 4.851 4.655 4.618 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.910 4.784 4.396 4.150 4.007 4.039 4.401 4.629 4.666 5.124 5.458 5.077 5.401 5.947 4.338 4.005 3.853 4.207 4.519 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.794 4.907 4.648 4.648 4.648 4.898 4.847 4.453 4.170 4.149 4.305 4.392 4.665 4.467 5.130 5.524 5.168 5.246 6.018 5.054 4.629 4.437 4.192 4.287 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.678 4.779 4.648 4.648 4.648 4.648 4.876 4.524 4.172 4.114 4.266 4.358 4.560 4.782 5.063 5.434 5.747 5.889 5.476 5.020 4.860 4.882 4.707 4.378 4.553 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.880 4.664 4.338 4.190 4.117 4.181 4.182 4.648 5.313 5.675 5.796 6.495 5.187 5.034 5.323 5.492 5.316 4.584 4.454 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 5.266 5.345 4.648 4.648 4.648 4.648 4.648 4.712 4.468 4.166 4.154 3.913 3.994 4.217 4.807 5.225 5.251 4.764 5.282 4.737 4.972 5.541 5.761 5.486 4.803 4.648 4.648 4.648 4.648 4.648 4.648 4.595 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 5.182 5.207 4.648 4.648 4.648 4.648 4.648 4.808 4.689 4.338 4.172 3.909 3.761 4.221 5.131 4.781 5.237 4.975 5.766 4.921 4.912 4.950 5.029 4.862 4.542 4.253 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.910 4.931 4.648 4.648 4.648 4.648 4.648 5.014 5.026 4.639 4.347 4.151 3.993 4.026 4.842 4.628 5.062 5.253 5.459 5.028 5.043 4.817 4.866 4.687 4.464 4.195 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 5.075 5.153 4.889 4.472 4.114 4.030 3.814 4.155 4.325 4.612 5.031 5.066 4.935 5.255 4.945 5.218 4.987 4.077 3.849 4.214 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 5.056 4.952 4.576 4.216 4.044 3.763 3.814 3.896 4.210 5.319 5.593 5.141 5.482 5.141 5.225 5.492 4.927 4.327 4.270 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 5.004 5.018 4.631 4.354 4.171 3.805 3.918 3.864 4.551 5.340 5.302 5.296 5.552 5.349 5.071 4.934 4.914 4.364 4.076 4.540 4.648 4.648 4.648 4.648 4.648 4.648 4.663 4.648 4.648 4.648 4.648 4.650 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.866 4.555 4.375 4.267 3.979 4.127 4.160 4.536 4.867 4.820 4.982 5.100 5.438 5.268 4.819 4.501 3.799 3.680 4.103 4.470 4.648 4.648 4.648 4.648 4.648 4.736 4.631 4.613 4.648 4.648 4.673 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.477 4.329 4.190 3.957 4.103 4.191 4.420 4.629 4.667 4.864 4.846 5.598 5.430 4.832 4.796 4.434 4.146 4.449 4.670 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.413 4.348 4.528 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.389 4.278 4.152 4.224 4.076 4.393 4.688 4.870 4.996 4.833 5.481 5.857 5.277 5.011 5.251 5.214 4.901 4.768 4.739 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.777 4.783 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.425 4.341 4.546 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.506 4.484 4.279 4.107 4.007 4.293 4.609 4.930 5.224 5.144 4.803 6.056 5.591 5.052 6.211 6.243 4.802 4.607 4.793 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.747 4.648 4.648 4.648 4.646 4.635 4.648 4.648 4.648 4.648 4.585 4.648 4.206 4.208 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.809 4.514 4.256 4.102 4.099 4.342 4.785 5.172 5.121 4.861 5.221 5.265 5.054 5.412 5.326 4.271 4.251 4.760 4.846 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.668 4.641 4.648 4.648 4.640 4.668 4.648 4.648 4.078 4.234 4.583 4.579 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.473 4.323 4.188 4.048 4.258 4.707 5.048 5.408 5.420 5.557 5.226 5.110 5.072 5.276 5.037 4.750 4.757 4.680 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.664 4.676 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.616 4.645 4.511 4.648 4.648 4.922 5.115 4.761 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.461 4.359 4.292 4.183 4.342 4.712 4.929 5.158 5.133 5.160 4.858 5.058 4.996 5.210 5.355 5.161 4.977 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.567 4.691 4.664 4.520 4.648 4.648 4.648 4.648 4.648 4.648 4.480 4.368 4.267 4.334 4.648 5.044 5.113 4.858 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.392 4.334 4.261 4.396 4.716 4.744 4.907 4.880 4.686 4.577 4.854 4.936 5.099 5.248 5.363 5.082 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.619 4.777 4.779 4.631 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.484 4.200 4.342 4.648 4.648 4.648 4.648 5.178 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.495 4.417 4.378 4.582 4.848 4.491 4.806 5.017 5.188 4.701 4.749 4.655 4.671 4.905 5.188 5.286 5.357 4.648 4.758 4.751 4.648 4.635 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 5.142 4.927 4.648 4.648 4.581 4.534 4.551 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.474 4.620 4.790 4.477 4.459 4.733 5.269 4.949 4.749 4.512 4.967 4.288 4.073 4.865 4.919 4.648 4.648 4.768 4.777 4.666 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.863 4.771 4.648 4.648 4.550 4.463 4.483 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.572 4.572 4.447 4.136 4.024 4.252 4.731 4.763 4.823 4.911 5.157 4.098 3.892 4.459 4.314 4.510 4.648 4.786 4.799 4.778 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.582 4.345 4.087 4.084 4.239 4.477 4.677 4.787 4.671 4.665 4.269 4.296 4.458 4.013 4.268 4.630 4.800 4.650 4.690 4.674 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.660 4.477 4.339 4.250 4.251 4.429 4.675 5.000 4.789 4.675 4.623 4.724 4.846 4.591 4.570 4.700 4.920 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.744 4.648 4.648 4.752 4.897 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.525 4.381 4.306 4.466 4.555 4.804 4.604 4.574 4.712 4.774 5.046 5.203 4.720 4.605 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.705 4.740 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.607 4.648 4.648 4.648 4.648 4.648 4.648 4.672 4.574 4.478 4.426 4.166 4.005 4.014 4.409 4.852 4.631 4.651 4.858 4.735 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.337 4.274 4.327 4.421 4.624 4.557 4.577 4.678 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.555 4.508 4.343 4.248 4.493 4.636 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.250 4.183 4.508 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.711 4.787 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.715 4.772 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.537 4.490 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.440 4.384 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 4.648 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.279 5.575 5.129 5.129 5.129 5.129 4.282 4.375 4.789 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.474 5.523 5.333 5.332 5.745 5.871 4.895 4.620 4.870 5.089 5.114 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.111 5.212 5.889 6.555 6.501 6.120 4.985 4.890 5.116 5.103 5.108 5.147 5.180 5.234 5.281 5.297 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 4.804 5.021 6.170 6.985 6.199 5.807 5.024 4.928 5.150 5.070 5.093 5.174 5.188 5.284 5.290 5.290 5.289 5.880 5.619 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 4.776 4.673 4.776 4.977 5.130 5.229 5.316 5.117 5.045 5.137 5.012 5.111 5.226 5.230 5.305 5.107 4.985 5.002 5.757 5.534 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 4.726 5.129 4.861 4.836 5.005 5.224 5.217 5.173 5.135 4.911 4.931 5.060 5.122 5.211 5.075 4.942 4.992 5.402 5.327 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 4.775 5.129 5.129 5.521 5.387 5.280 5.205 4.922 4.799 4.939 5.036 5.011 4.977 5.015 4.974 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 4.479 4.592 5.293 5.836 5.533 5.279 5.277 5.155 4.970 5.161 5.073 5.129 5.129 5.123 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 4.962 4.425 4.623 5.381 6.175 5.919 5.416 5.771 5.825 5.447 5.473 5.119 5.129 5.123 5.129 5.129 5.129 5.129 5.101 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 4.694 4.516 4.636 5.062 5.557 5.733 5.619 5.936 6.128 5.682 5.469 5.129 5.129 5.109 5.081 4.884 5.070 5.009 5.011 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 4.663 4.433 4.536 4.819 5.179 5.526 5.614 5.472 5.637 5.625 5.349 5.102 5.129 5.129 4.844 4.808 4.827 5.066 5.068 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 4.816 4.695 4.640 4.515 4.862 5.546 5.487 5.438 6.328 6.976 5.618 4.645 4.843 5.019 4.905 4.838 4.896 5.129 5.044 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.205 5.230 4.971 4.518 4.315 4.964 5.922 5.584 5.269 5.670 5.779 5.246 4.244 4.604 4.968 5.065 5.092 5.102 5.109 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 4.981 5.008 5.129 5.242 5.310 5.132 4.439 4.304 5.011 6.119 6.008 5.359 5.266 5.014 5.461 4.801 4.745 4.959 5.224 5.268 5.223 5.187 5.093 5.085 5.095 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.001 5.046 5.086 4.955 4.932 4.979 4.824 4.851 5.149 5.431 5.910 5.791 5.547 5.231 6.077 6.031 4.947 4.875 5.406 5.467 5.337 5.195 5.053 5.011 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 4.985 4.622 4.393 4.384 4.422 4.681 4.746 4.836 5.273 5.488 5.524 5.581 5.617 5.359 4.824 4.901 5.693 5.745 5.456 5.224 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 4.938 4.467 4.119 3.979 3.929 4.425 4.555 4.799 5.246 5.476 5.572 6.008 5.446 4.529 4.312 4.566 5.777 5.838 5.493 5.178 5.017 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.322 5.129 5.129 5.170 5.272 5.167 4.822 4.503 4.307 4.326 4.754 4.797 4.930 5.072 5.506 5.267 5.863 6.322 5.103 4.486 4.193 4.865 5.363 5.302 5.151 5.082 5.124 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.330 5.501 5.535 5.286 5.217 5.298 5.204 4.838 4.578 4.498 4.753 4.967 4.779 4.869 5.242 5.930 5.294 5.554 6.274 6.160 5.688 5.117 4.683 4.812 5.121 5.129 5.137 5.149 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.124 5.302 5.474 5.129 5.129 5.205 5.177 4.863 4.599 4.545 4.728 5.152 5.275 5.194 5.314 5.758 5.681 5.913 5.530 5.636 5.970 5.818 5.173 4.706 4.784 5.117 5.104 5.121 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.226 4.977 5.129 5.129 5.129 5.126 5.261 5.080 4.719 4.696 4.659 4.911 5.118 5.219 5.722 5.616 5.527 6.271 5.127 5.518 6.047 5.767 5.583 4.863 4.826 5.116 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.864 5.887 5.450 5.129 5.129 5.129 5.129 5.155 4.962 4.600 4.740 4.657 4.678 5.001 5.279 5.559 5.388 5.142 5.716 4.782 5.471 6.133 6.048 5.855 5.105 4.784 5.129 5.129 5.129 5.129 5.046 4.962 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.783 5.958 5.822 5.129 5.129 5.129 5.129 5.272 5.220 4.856 4.700 4.743 4.488 5.057 5.176 4.930 5.464 5.471 6.096 4.967 5.290 5.450 5.747 5.475 4.955 4.606 4.714 5.129 5.129 5.129 5.063 5.042 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.421 5.603 5.129 5.129 5.129 5.129 5.129 5.475 5.624 5.249 4.835 4.641 4.562 4.656 4.979 4.983 5.425 5.892 6.057 5.654 5.634 5.428 5.960 5.528 5.228 4.765 4.773 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.134 5.191 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.162 5.129 5.129 5.129 5.129 5.129 5.129 5.489 5.664 5.468 5.072 4.565 4.574 4.501 4.706 4.870 5.009 5.613 5.579 5.506 5.480 5.175 6.141 5.580 4.753 4.553 4.664 5.129 5.129 5.129 5.120 5.129 5.129 5.129 5.129 5.249 5.252 5.129 5.129 5.129 5.129 5.129 5.125 5.155 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.587 5.517 5.194 4.664 4.562 4.389 4.484 4.327 4.690 5.809 5.862 5.274 5.659 5.243 5.691 6.242 5.985 5.163 4.927 5.128 5.101 5.067 5.035 5.129 5.129 5.129 5.129 5.139 5.132 5.129 5.129 5.129 5.129 5.129 5.152 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.437 5.493 5.237 4.809 4.755 4.494 4.619 4.332 5.018 5.296 5.540 5.419 5.994 5.813 5.385 5.640 6.488 5.314 4.868 5.040 5.129 5.129 5.129 5.129 5.129 5.140 5.159 5.111 4.995 5.081 5.113 5.112 5.068 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.275 5.355 5.076 4.759 4.717 4.522 4.571 4.598 4.873 5.286 5.661 5.745 5.611 6.249 6.004 5.699 5.955 4.817 4.564 4.911 5.162 5.129 5.129 5.129 5.129 5.160 5.153 4.990 4.922 4.928 5.127 5.138 5.082 5.152 5.275 5.177 5.129 5.129 5.129 5.116 5.112 5.129 5.129 5.129 4.876 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 4.981 4.740 4.567 4.496 4.548 4.581 4.864 5.655 5.887 5.981 5.348 6.310 6.285 5.633 6.384 5.925 5.136 5.245 5.335 5.154 5.129 5.129 5.129 5.119 5.121 5.005 4.926 5.129 5.129 5.185 5.129 5.255 5.372 5.129 5.129 5.129 5.108 5.164 5.135 5.172 5.127 4.920 4.785 4.787 5.020 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 4.964 4.824 4.672 4.624 4.805 4.377 4.630 5.264 5.714 5.848 4.985 5.478 5.767 5.853 5.849 6.262 6.259 5.591 5.377 5.246 5.129 5.129 5.129 5.129 5.114 5.129 5.129 5.129 5.129 5.173 5.129 5.129 5.318 5.306 5.254 5.129 5.179 5.199 5.129 5.164 5.082 4.970 4.851 4.782 5.076 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 4.927 4.903 4.697 4.577 4.264 4.519 5.000 5.497 5.879 5.398 4.928 6.059 6.110 5.186 5.992 7.004 5.422 5.367 5.420 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.215 5.241 5.225 5.129 5.129 5.153 5.142 5.084 5.052 5.093 4.974 4.981 5.078 4.732 4.698 5.111 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.198 4.921 4.626 4.475 4.398 4.621 5.270 5.683 5.367 4.844 5.718 6.084 5.463 5.754 6.308 5.284 5.171 5.481 5.452 5.357 5.346 5.174 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.185 5.129 5.129 5.168 5.182 5.122 5.082 5.035 5.045 5.078 5.138 5.076 4.595 4.745 5.026 5.051 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 4.886 4.712 4.637 4.407 4.621 5.213 5.461 5.883 5.921 6.777 6.241 5.792 5.541 6.120 6.026 5.472 5.396 5.429 5.162 5.158 5.097 5.129 5.129 5.129 5.129 5.129 5.129 5.129 4.985 5.137 5.119 5.020 5.096 5.161 5.117 5.129 5.129 5.047 5.074 5.108 5.104 5.105 5.092 5.542 5.547 5.260 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 4.887 4.774 4.711 4.605 4.916 5.342 5.422 5.770 5.584 5.702 5.366 6.007 5.717 5.694 5.712 5.607 5.463 5.491 5.171 5.126 5.109 5.129 5.129 5.129 5.129 5.129 5.129 5.129 4.975 5.147 5.153 5.049 5.163 5.129 5.129 5.129 5.129 5.129 4.949 4.903 4.841 4.984 5.165 5.499 5.439 5.375 5.456 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 4.877 4.774 4.629 4.983 5.422 5.062 5.503 5.531 5.184 5.060 5.983 5.773 5.616 6.100 6.232 5.313 5.437 5.308 5.334 5.133 5.120 5.192 5.090 5.129 5.129 5.129 5.108 5.113 5.388 5.388 5.259 5.280 5.129 5.129 5.129 5.129 5.120 4.954 4.871 4.780 4.990 5.122 5.129 5.392 5.551 5.706 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.026 4.924 4.843 5.159 5.513 4.656 5.335 5.979 6.377 5.201 5.677 5.478 5.151 5.814 6.005 5.386 5.842 5.757 5.557 5.453 5.129 5.133 5.123 5.129 5.129 5.129 5.129 5.338 5.451 5.414 5.359 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.105 5.121 5.129 5.129 5.545 5.675 5.360 5.123 5.152 5.038 4.971 5.121 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.142 5.076 4.956 5.058 5.166 4.941 5.035 5.275 5.896 5.466 5.489 5.598 6.147 5.208 4.778 5.232 5.478 5.528 5.570 5.431 5.415 5.385 5.273 5.276 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.173 5.304 5.335 5.219 5.115 5.137 4.985 4.852 4.883 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.134 5.107 5.029 4.773 4.565 4.464 4.681 5.234 5.296 5.490 5.717 5.892 5.367 5.026 5.153 4.840 5.074 5.391 5.329 5.319 5.323 5.223 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.140 4.921 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.285 5.157 4.815 4.471 4.407 4.603 4.862 5.249 5.494 5.204 5.090 5.015 5.082 5.365 4.846 4.913 5.293 5.449 5.360 5.320 5.225 5.098 5.166 5.127 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.136 5.269 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.190 4.939 4.747 4.617 4.644 4.760 5.112 5.677 5.251 5.045 5.146 5.337 5.764 5.483 5.145 5.379 5.594 5.518 5.331 5.166 5.146 5.170 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.297 5.129 5.129 5.206 5.403 5.451 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 4.996 4.846 4.717 4.814 4.859 5.099 4.812 4.926 5.176 5.093 5.482 5.689 5.193 5.199 5.463 5.413 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.296 5.232 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.072 5.129 5.129 5.129 5.129 5.129 5.129 5.163 5.063 4.946 4.940 4.707 4.500 4.600 4.944 5.427 5.226 5.067 5.255 5.194 5.186 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.143 5.023 4.945 5.124 4.970 5.132 5.104 5.064 5.141 5.139 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.126 5.030 4.817 4.580 4.914 5.088 5.125 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 4.730 4.642 4.876 5.139 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.111 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.183 5.368 5.454 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.117 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.350 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 4.974 4.884 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 4.864 4.772 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.079 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 5.129 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 6.206 6.146 5.658 5.658 5.658 4.640 4.794 5.431 5.689 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.887 6.262 6.188 6.089 6.300 6.455 5.200 4.993 5.219 5.522 5.688 5.754 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.755 5.853 6.547 7.132 7.165 6.909 5.424 5.107 5.264 5.531 5.669 5.784 5.802 5.813 5.683 5.658 5.658 5.680 5.763 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.318 5.574 6.915 7.766 6.673 6.440 5.593 5.457 5.387 5.550 5.757 5.916 5.909 5.966 6.025 6.173 6.263 6.819 6.379 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.042 5.303 5.605 5.635 5.688 5.893 5.680 5.638 5.611 5.535 5.790 6.048 6.066 6.129 5.817 5.760 5.938 6.985 6.361 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.170 5.523 5.523 5.508 5.580 5.769 5.634 5.657 5.803 5.614 5.586 5.753 5.829 6.024 5.854 5.644 5.744 6.334 6.004 5.676 5.656 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.429 5.434 5.597 5.871 5.668 5.584 5.786 5.593 5.364 5.465 5.479 5.611 5.685 5.669 5.681 5.940 5.880 5.777 5.756 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.216 5.213 5.742 6.375 5.854 5.596 6.022 5.804 5.493 5.667 5.545 5.574 5.710 5.706 5.643 5.740 5.776 5.732 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.399 4.957 4.996 5.677 6.618 6.084 5.502 6.033 5.967 6.064 5.996 5.647 5.623 5.718 5.657 5.587 5.629 5.679 5.687 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.114 4.806 4.749 5.252 6.135 6.290 5.788 6.015 6.409 6.455 5.971 5.586 5.598 5.650 5.540 5.444 5.498 5.508 5.497 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.555 5.206 4.793 4.671 5.095 5.873 6.379 6.268 5.699 5.956 6.235 5.804 5.449 5.548 5.615 5.430 5.318 5.351 5.363 5.393 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.577 5.380 5.123 4.929 4.926 5.454 6.029 6.265 5.717 6.102 6.913 6.298 5.536 5.632 5.791 5.596 5.423 5.405 5.367 5.496 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.607 5.637 5.692 5.636 5.441 5.057 4.860 5.256 5.551 5.962 5.842 5.924 6.328 6.633 5.543 5.715 6.048 5.857 5.786 5.726 5.638 5.600 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.631 5.479 5.565 5.614 5.632 5.573 5.056 4.844 5.395 5.837 6.138 5.830 5.610 5.740 6.959 5.963 5.723 6.008 6.058 6.055 5.966 5.837 5.653 5.462 5.437 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.597 5.426 5.488 5.577 5.442 5.343 5.331 5.261 5.201 5.455 5.550 6.022 5.986 6.113 5.886 7.058 7.005 5.901 5.793 6.079 6.306 6.137 5.807 5.526 5.355 5.433 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.581 5.536 5.589 5.631 5.370 5.016 4.808 4.810 5.071 5.081 5.116 5.403 5.456 5.853 5.912 6.209 6.369 6.027 5.996 6.330 6.758 6.250 5.740 5.527 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.669 5.652 5.594 5.435 4.991 4.716 4.542 4.923 5.170 5.209 5.333 5.505 5.647 6.013 5.784 5.579 5.290 5.612 6.443 7.162 6.353 5.792 5.595 5.562 5.656 5.661 5.616 5.639 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 6.089 6.061 5.945 5.797 5.688 5.491 5.404 5.185 5.106 4.943 5.341 5.458 5.434 5.511 5.791 5.947 6.112 5.835 5.933 5.600 5.425 5.907 6.922 6.391 5.894 5.660 5.580 5.549 5.658 5.638 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 6.125 6.203 6.127 5.982 5.822 5.555 5.483 5.507 5.478 5.429 5.893 5.813 5.627 5.516 5.887 5.903 5.655 5.554 6.355 6.570 5.843 5.527 5.664 5.859 5.791 5.684 5.636 5.578 5.653 5.635 5.643 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.516 5.800 6.101 6.156 6.024 5.841 5.612 5.451 5.620 5.821 5.540 5.839 6.359 5.831 5.633 5.875 5.804 5.826 5.373 6.143 6.663 6.273 5.589 5.119 5.428 5.653 5.712 5.707 5.636 5.637 5.648 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.715 5.766 5.905 5.915 5.822 5.736 5.692 5.553 5.549 5.714 5.609 5.627 6.111 5.840 5.739 5.872 5.561 5.932 5.180 6.005 6.585 5.881 5.672 5.235 5.347 5.562 5.684 5.689 5.691 5.709 5.617 5.618 5.651 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.941 6.386 6.319 6.122 5.934 5.787 5.641 5.630 5.525 5.441 5.655 5.730 5.481 5.579 5.525 5.665 6.119 5.658 5.885 5.082 5.839 6.297 6.265 6.312 5.515 5.223 5.378 5.621 5.675 5.660 5.616 5.333 5.560 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 6.271 6.565 6.494 6.282 5.658 5.658 5.617 5.693 5.772 5.742 5.566 5.777 5.679 5.777 5.393 5.342 5.981 5.942 6.022 5.068 5.489 6.052 6.444 6.138 5.357 5.048 5.279 5.629 5.734 5.689 5.589 5.369 5.513 5.719 5.623 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.689 5.922 6.154 6.139 5.995 5.658 5.658 5.658 5.797 5.982 5.920 5.670 5.490 5.595 5.692 5.625 5.636 5.496 5.819 5.684 5.718 5.680 5.874 7.012 6.756 6.165 5.696 5.501 5.699 5.658 5.658 5.544 5.461 5.474 5.658 5.658 5.705 5.723 5.658 5.658 5.658 5.658 5.658 5.647 5.662 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.619 5.684 5.814 5.827 5.658 5.658 5.658 5.577 5.742 5.936 5.927 5.914 5.426 5.502 5.880 5.867 5.701 5.306 5.760 5.853 6.182 5.878 5.510 6.287 6.088 6.045 5.846 5.491 5.712 5.898 5.776 5.565 5.508 5.464 5.658 5.642 5.799 5.763 5.587 5.616 5.658 5.658 5.562 5.585 5.689 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.630 5.691 5.658 5.658 5.658 5.658 5.597 5.731 5.977 5.937 5.841 5.380 5.398 5.736 5.786 5.359 5.405 5.474 5.931 5.849 6.017 5.491 5.783 6.500 6.733 6.141 5.697 5.739 5.707 5.625 5.503 5.658 5.658 5.618 5.652 5.660 5.679 5.496 5.482 5.658 5.614 5.613 5.697 5.757 5.649 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.675 5.658 5.658 5.658 5.658 5.658 5.732 5.915 5.934 5.812 5.447 5.523 5.724 5.677 5.403 5.363 5.191 5.920 5.777 5.925 6.063 5.569 6.514 6.739 5.618 5.561 5.891 5.847 5.690 5.542 5.658 5.633 5.629 5.621 5.553 5.484 5.421 5.539 5.588 5.562 5.664 5.784 5.826 5.658 5.658 5.658 5.681 5.685 5.678 5.646 5.486 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.668 5.658 5.658 5.658 5.658 5.582 5.652 5.774 5.896 5.755 5.377 5.344 5.525 5.412 5.408 5.122 5.259 5.867 6.121 5.498 5.852 5.801 6.024 6.538 5.696 5.529 5.858 5.922 5.730 5.533 5.455 5.486 5.613 5.602 5.465 5.342 5.331 5.622 5.660 5.590 5.696 5.868 5.895 5.820 5.658 5.699 5.657 5.709 5.739 5.594 5.422 5.430 5.579 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.644 5.624 5.658 5.658 5.658 5.658 5.667 5.778 5.843 5.664 5.376 5.192 5.415 5.451 5.159 5.116 5.666 6.006 6.315 5.450 5.760 6.039 5.725 6.453 6.090 5.853 5.804 5.790 5.545 5.388 5.509 5.491 5.632 5.629 5.528 5.386 5.444 5.701 5.752 5.765 5.970 6.091 5.960 5.883 5.658 5.861 5.792 5.813 5.854 5.714 5.471 5.282 5.396 5.566 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.629 5.539 5.658 5.658 5.661 5.658 5.710 5.658 5.658 5.537 5.400 5.233 5.257 5.538 5.132 5.001 5.312 5.708 6.250 5.441 5.396 5.534 5.820 6.200 6.239 6.526 6.202 5.856 5.433 5.218 5.495 5.609 5.693 5.640 5.506 5.413 5.585 5.896 5.870 5.826 5.929 5.943 5.916 5.859 5.846 5.871 5.829 5.882 5.847 5.670 5.537 5.351 5.293 5.582 5.586 5.606 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.606 5.635 5.658 5.658 5.658 5.658 5.483 5.435 5.392 5.279 5.274 5.057 5.145 5.399 5.649 5.877 5.775 5.314 5.669 5.535 5.489 5.985 6.148 5.676 6.008 5.497 5.234 5.404 5.646 5.699 5.626 5.566 5.617 5.658 5.658 5.658 5.644 5.754 5.783 5.802 5.794 5.764 5.768 5.747 5.731 5.624 5.490 5.508 5.586 5.657 5.713 5.385 5.430 5.536 5.614 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.543 5.380 5.187 5.197 5.185 5.213 5.694 5.790 5.743 5.357 5.812 5.681 5.588 6.032 6.348 6.039 5.932 5.849 5.793 5.879 5.884 5.702 5.633 5.658 5.658 5.658 5.658 5.658 5.479 5.597 5.715 5.694 5.670 5.682 5.776 5.793 5.706 5.634 5.561 5.538 5.733 5.932 5.743 5.142 5.479 5.571 5.578 5.588 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.480 5.377 5.244 5.254 5.055 5.074 5.461 5.454 5.705 5.824 6.267 5.989 5.730 5.513 5.932 5.894 5.999 5.937 6.137 6.352 6.033 5.760 5.615 5.592 5.658 5.658 5.658 5.644 5.433 5.470 5.689 5.619 5.582 5.717 5.835 5.849 5.745 5.668 5.626 5.580 5.845 6.002 5.875 5.800 6.338 5.912 5.737 5.731 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.513 5.444 5.366 5.346 5.212 5.517 5.827 5.766 5.776 5.763 5.658 5.898 6.303 5.873 5.951 5.550 5.550 5.882 6.324 6.315 5.954 5.887 5.661 5.811 5.658 5.658 5.658 5.560 5.322 5.381 5.520 5.580 5.675 5.870 5.936 5.852 5.701 5.617 5.615 5.644 5.669 5.790 5.795 5.775 5.948 5.712 5.867 6.004 5.777 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.632 5.617 5.549 5.436 5.211 5.493 5.804 5.592 5.802 5.933 5.710 5.688 6.266 6.035 6.306 6.248 5.380 5.018 5.869 6.109 6.041 6.084 6.103 5.896 5.674 5.636 5.620 5.605 5.529 5.624 5.873 5.841 5.854 5.946 5.902 5.762 5.646 5.562 5.544 5.590 5.607 5.704 5.801 5.767 5.825 5.926 6.282 6.287 5.962 5.658 5.680 5.697 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.682 5.725 5.682 5.514 5.324 5.517 5.816 5.411 5.640 5.758 6.153 5.839 6.005 5.941 5.643 6.080 6.147 5.783 6.427 6.583 6.534 6.374 6.267 6.004 5.787 5.750 5.717 5.753 5.866 6.014 6.008 5.898 5.914 5.948 5.764 5.563 5.498 5.527 5.533 5.613 5.689 5.759 5.757 5.743 5.742 5.822 6.087 6.086 5.752 5.591 5.600 5.585 5.496 5.623 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.774 5.733 5.585 5.444 5.389 5.327 5.420 5.579 5.513 5.761 5.968 5.937 6.123 6.012 5.810 6.245 6.436 6.175 6.227 6.349 6.191 6.171 6.109 5.915 6.010 6.038 6.026 6.028 6.002 5.883 5.800 5.750 5.763 5.642 5.545 5.658 5.658 5.658 5.658 5.658 5.658 5.631 5.713 5.718 5.722 5.798 5.778 5.665 5.595 5.578 5.452 5.295 5.412 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.708 5.663 5.651 5.574 5.425 5.329 5.155 5.207 5.533 5.586 5.763 6.252 6.159 6.180 6.808 6.318 5.686 5.790 6.065 5.863 5.855 5.918 5.826 5.909 5.967 5.994 5.961 5.907 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.704 5.704 5.711 5.702 5.658 5.686 5.643 5.529 5.416 5.499 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.872 5.759 5.485 5.163 4.984 5.135 5.252 5.580 5.772 5.580 5.409 5.600 5.955 5.965 5.599 5.462 5.967 5.989 5.906 5.934 5.846 5.751 5.825 5.860 5.860 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.662 5.688 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.650 5.581 5.633 5.855 6.039 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.494 5.369 5.253 5.353 5.160 5.245 5.668 5.526 5.428 5.690 5.652 5.909 5.527 5.466 6.138 6.217 6.155 5.968 5.815 5.687 5.730 5.745 5.728 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.684 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.890 5.857 5.659 5.684 5.971 6.069 5.951 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.585 5.477 5.354 5.306 5.310 5.524 5.699 5.818 5.719 5.615 5.728 5.375 5.576 5.979 6.113 6.036 5.904 5.885 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.731 5.669 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.885 5.839 5.707 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.602 5.579 5.658 5.658 5.658 5.658 5.658 5.658 5.633 5.562 5.676 5.694 5.418 5.732 5.853 5.844 5.800 5.568 5.540 5.744 5.866 5.872 5.783 5.693 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.737 5.707 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.893 5.893 5.713 5.960 5.555 5.489 5.651 5.681 5.680 5.701 5.702 5.649 5.582 5.559 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.792 5.621 5.435 5.118 5.314 5.609 5.715 5.717 5.705 5.658 5.658 5.648 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.672 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.333 5.208 5.395 5.630 5.764 5.747 5.689 5.642 5.658 5.655 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.668 5.636 5.609 5.700 5.844 5.743 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.735 5.665 5.650 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.706 5.910 6.087 5.783 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.664 5.565 5.558 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.872 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.488 5.350 5.421 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.359 5.259 5.390 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.518 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 5.658 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.556 6.582 6.316 6.042 6.042 5.200 5.372 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.641 6.830 6.723 6.502 6.568 5.602 5.497 5.602 5.825 6.023 6.074 6.063 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.240 6.451 6.867 6.889 6.993 7.084 5.898 5.567 5.680 5.896 6.027 6.106 6.111 6.124 6.172 6.186 6.075 6.042 6.117 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 5.813 6.133 7.187 7.250 6.574 6.673 6.132 5.898 5.821 6.042 6.205 6.238 6.168 6.235 6.435 6.699 7.078 7.391 6.507 6.162 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 5.498 5.795 6.253 6.060 6.040 6.346 6.178 6.084 5.911 5.945 6.186 6.456 6.456 6.512 6.639 6.661 7.017 7.765 6.857 6.231 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 5.652 5.883 6.118 6.033 5.990 6.143 5.840 5.856 5.894 5.911 6.083 6.355 6.522 6.855 6.825 6.499 6.699 7.509 6.706 6.177 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 5.997 5.880 5.852 6.013 5.673 5.626 5.704 5.872 6.089 6.184 6.129 6.392 6.565 6.516 6.420 6.723 6.487 6.281 6.141 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 5.941 5.834 6.021 6.385 5.800 5.705 5.939 5.945 6.194 6.407 6.118 6.161 6.358 6.316 6.148 6.280 6.310 6.337 6.164 6.051 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 5.777 5.608 5.511 5.803 6.306 5.708 5.585 5.843 5.765 6.432 6.507 6.124 6.177 6.350 6.219 6.071 6.112 6.186 6.206 6.043 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 5.918 5.603 5.196 4.943 5.301 6.025 5.801 5.681 5.749 5.725 6.530 6.469 6.062 6.190 6.308 6.113 5.988 6.004 6.006 5.974 5.994 6.004 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 5.929 5.600 5.184 4.841 5.159 5.988 6.016 6.019 5.602 5.541 6.390 6.417 5.907 6.111 6.281 6.078 5.907 5.866 5.836 5.852 5.928 5.992 6.036 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 5.941 5.741 5.531 5.154 5.183 5.795 5.993 6.134 5.539 5.401 6.309 6.747 6.049 6.145 6.501 6.447 6.091 5.916 5.821 5.857 6.016 6.023 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 5.944 5.919 5.869 5.855 5.406 5.297 5.803 5.737 5.837 5.743 5.506 6.045 6.902 6.290 6.538 7.250 6.931 6.563 6.350 6.165 6.048 6.055 6.026 5.956 5.900 6.009 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 5.937 5.912 5.833 5.743 5.730 5.278 5.152 5.725 5.696 5.717 5.601 5.560 5.988 6.774 6.873 6.751 7.409 7.230 7.052 6.855 6.521 6.147 5.940 5.860 5.846 5.992 6.010 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 5.915 5.883 5.859 5.702 5.593 5.638 5.488 5.514 5.914 5.540 5.730 5.471 5.582 5.986 6.393 7.116 6.538 6.782 6.697 6.994 6.887 6.338 5.907 5.773 5.769 5.824 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 5.946 5.945 6.001 6.027 5.874 5.645 5.486 5.437 5.787 5.674 5.630 5.806 5.709 5.763 5.920 6.362 7.489 6.986 6.644 6.227 6.979 6.850 6.236 5.968 5.950 5.886 6.042 6.043 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.194 6.066 6.079 6.126 6.164 6.290 6.197 5.810 5.517 5.535 5.821 5.868 5.711 5.796 5.707 5.856 6.179 7.218 7.036 6.429 6.379 7.262 7.041 6.476 6.201 6.050 5.993 6.016 5.983 5.990 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.452 6.375 6.292 6.272 6.172 6.036 6.122 6.131 6.109 5.745 5.747 6.007 6.066 5.967 5.883 5.995 6.049 5.718 6.462 6.903 6.513 6.496 7.645 7.535 6.748 6.231 5.996 5.973 5.991 5.971 5.989 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.356 6.439 6.626 6.704 6.453 6.181 6.416 6.309 6.149 5.996 6.243 6.181 6.367 5.941 5.834 6.185 6.199 5.465 6.045 6.978 6.730 6.206 6.451 7.036 6.584 6.190 6.048 6.008 6.034 6.020 6.020 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.166 6.445 6.688 6.767 6.584 6.260 6.281 6.296 6.351 6.082 6.033 5.999 6.242 6.206 6.097 5.922 6.313 5.563 5.906 6.845 7.018 6.158 5.742 6.326 6.386 6.239 6.142 6.067 6.070 6.056 5.997 6.029 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.065 6.197 6.374 6.454 6.427 6.393 6.379 6.269 6.163 6.170 6.090 6.157 5.989 6.205 6.089 6.149 5.739 6.213 5.417 5.639 6.841 6.863 6.189 6.009 6.111 6.173 6.191 6.102 6.076 6.139 6.022 5.905 5.909 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.209 6.456 6.616 6.631 6.475 6.309 6.188 6.138 6.077 6.124 6.255 6.067 6.252 6.224 6.183 5.994 6.058 5.587 5.908 5.500 5.691 6.618 7.190 6.614 6.125 5.726 5.837 6.025 6.018 5.992 6.015 5.760 5.773 5.871 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.647 6.864 6.799 6.564 6.312 6.116 6.043 6.102 6.308 6.389 6.405 6.219 5.840 6.151 5.922 5.886 5.548 5.633 5.471 5.597 5.987 6.889 6.835 6.184 5.770 5.881 6.064 6.073 6.015 5.989 5.798 5.753 5.895 5.890 5.937 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.197 6.430 6.547 6.482 6.301 6.099 6.021 6.033 6.097 6.204 6.291 6.262 6.589 6.184 6.285 6.170 5.684 5.570 5.547 5.649 5.710 5.743 6.553 6.747 6.766 6.687 6.432 6.356 6.236 6.076 5.924 5.834 5.802 5.882 5.899 5.993 6.042 6.042 6.042 6.042 6.042 6.010 6.015 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 5.980 6.058 6.207 6.162 6.102 6.008 5.957 5.940 5.979 6.057 6.103 6.236 6.145 6.499 6.625 6.270 6.396 6.009 5.868 5.700 5.586 5.776 5.893 6.313 6.602 6.585 6.672 6.565 6.619 6.447 6.130 5.901 5.826 5.808 5.905 6.020 6.091 6.067 5.897 5.866 6.042 6.042 5.856 5.893 5.952 5.924 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 5.953 6.003 6.094 6.008 5.966 5.903 5.906 5.945 6.057 6.229 6.174 6.146 6.071 6.166 6.487 6.230 6.131 6.168 5.748 5.547 5.387 5.764 6.071 6.021 6.919 6.816 6.259 6.422 6.575 6.330 6.061 5.909 5.854 5.861 5.915 6.016 6.112 6.079 5.864 5.909 6.046 6.019 5.983 5.971 6.013 5.961 6.005 6.042 6.002 5.992 5.981 6.264 6.059 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.070 6.127 6.042 6.042 5.919 5.940 5.994 6.145 6.354 6.225 6.090 5.955 6.129 6.683 6.377 6.039 6.098 5.892 5.914 5.636 5.886 6.196 5.626 6.367 6.471 6.106 6.481 7.051 6.670 6.272 5.988 5.918 5.930 5.936 5.963 6.018 5.929 5.871 5.955 6.004 5.952 6.072 6.154 6.188 6.029 6.008 5.966 5.999 6.093 6.160 6.135 5.959 6.095 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.196 6.163 6.043 5.959 5.946 5.963 6.002 6.109 6.227 6.289 6.286 6.083 6.071 6.355 6.233 6.100 5.980 5.912 5.872 5.907 5.903 6.314 5.902 6.124 6.607 6.661 6.309 6.847 6.773 6.368 6.022 5.857 5.847 5.912 5.935 5.945 5.761 5.764 5.967 6.023 5.915 5.927 6.130 6.304 6.309 6.263 6.070 6.032 6.269 6.271 5.993 5.831 6.033 6.073 6.069 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.045 5.952 5.921 5.933 5.970 6.051 6.170 6.264 6.325 6.295 6.181 6.006 6.087 6.051 5.946 5.889 5.812 5.597 5.893 6.250 6.496 6.216 5.715 6.054 6.443 6.452 6.469 6.240 5.995 5.860 5.748 5.824 5.996 6.067 6.129 5.908 5.943 6.142 6.127 6.047 6.282 6.374 6.350 6.352 6.451 6.361 6.351 6.584 6.612 6.278 5.882 5.827 5.856 5.947 5.977 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 5.969 5.896 5.887 5.956 5.984 6.080 6.218 6.282 6.206 6.102 6.033 5.902 5.810 6.015 6.105 5.982 5.803 5.363 5.807 6.326 6.183 5.958 5.755 5.985 5.953 6.505 6.944 5.963 5.559 5.509 5.597 5.924 6.217 6.071 5.939 5.831 6.076 6.360 6.281 6.305 6.401 6.255 6.308 6.321 6.370 6.355 6.432 6.598 6.526 6.242 5.941 5.705 5.699 5.906 5.972 6.044 6.075 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 5.967 6.007 6.096 6.213 6.182 6.008 5.887 5.850 5.843 5.803 5.812 5.847 5.898 5.851 5.345 5.443 6.156 6.538 6.177 5.726 5.797 6.008 6.221 6.195 5.968 5.423 5.306 5.626 6.095 6.229 6.031 6.011 6.087 6.174 6.207 6.029 6.066 6.335 6.204 6.152 6.227 6.229 6.233 6.277 6.238 6.035 5.882 5.976 6.185 6.289 6.085 5.948 6.019 6.025 5.982 5.929 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.034 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 5.981 5.817 5.807 5.841 5.814 5.805 5.837 5.752 5.736 5.656 5.595 6.027 6.604 6.514 5.786 5.650 6.342 6.431 6.337 5.971 5.846 5.776 5.989 6.253 6.117 6.004 6.062 6.145 6.113 6.134 5.950 5.832 6.164 6.169 6.028 6.114 6.157 6.332 6.259 6.104 6.046 6.092 6.131 6.460 6.515 5.960 5.790 6.116 6.052 5.983 5.971 6.047 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.032 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 5.773 5.790 5.776 5.848 5.928 5.837 5.574 5.703 5.750 5.855 6.316 6.606 6.002 5.751 5.775 6.057 6.162 6.390 6.160 6.105 6.415 6.302 6.100 6.028 6.035 5.977 5.923 5.904 5.875 5.812 5.819 6.003 5.921 6.051 6.274 6.436 6.357 6.196 6.192 6.347 6.252 6.639 6.767 6.369 6.267 6.426 6.116 6.114 6.128 6.131 6.140 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 5.806 5.863 5.899 5.989 6.072 5.881 5.898 6.061 5.978 5.735 6.139 6.548 6.303 5.969 5.671 5.973 5.881 5.914 6.313 6.661 6.449 6.230 6.375 6.333 6.228 6.001 5.937 5.818 5.751 5.719 5.668 5.684 5.729 5.980 6.295 6.429 6.333 6.134 6.030 6.135 6.189 6.354 6.690 6.440 6.154 5.984 5.952 6.266 6.285 6.193 6.141 6.133 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.002 6.035 6.060 6.087 6.054 5.810 5.886 6.010 5.858 5.749 6.036 6.427 6.307 6.131 5.824 5.943 5.883 5.486 5.155 5.779 5.947 6.199 6.565 6.522 6.351 6.206 6.140 6.097 6.044 5.964 5.881 5.889 5.950 6.081 6.278 6.309 6.185 6.021 5.929 5.980 6.155 6.358 6.537 6.407 6.174 6.129 6.408 6.818 6.468 6.222 6.139 6.113 6.110 6.074 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.090 6.120 6.109 5.967 5.740 5.838 6.083 5.931 5.835 5.795 6.025 6.011 6.243 5.920 5.605 5.653 5.974 5.867 5.928 6.093 6.685 6.896 6.663 6.356 6.306 6.394 6.344 6.301 6.426 6.352 6.160 6.101 6.112 6.144 6.032 5.845 5.766 5.782 5.903 6.061 6.200 6.315 6.266 6.137 6.066 6.178 6.359 6.137 5.970 5.998 6.074 6.008 5.937 5.996 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.067 6.137 6.109 5.988 5.845 5.840 5.917 5.774 5.885 5.903 5.911 5.879 5.993 5.794 5.684 5.642 5.809 6.001 5.788 5.905 6.326 6.509 6.466 6.225 6.333 6.736 6.871 6.723 6.557 6.340 6.115 6.081 6.134 6.163 5.998 5.839 5.772 5.819 5.952 6.052 6.138 6.060 6.162 6.104 6.064 6.063 6.082 6.034 6.017 6.010 5.977 5.750 5.684 5.836 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.076 6.093 6.041 5.996 6.009 6.070 5.945 5.868 5.800 5.836 5.680 6.031 6.517 6.633 6.250 6.072 6.079 5.992 5.940 6.243 6.207 6.030 5.961 6.231 6.456 6.463 6.452 6.377 6.205 6.010 6.042 6.042 6.301 6.247 6.077 6.025 6.023 6.040 6.042 6.036 6.042 6.089 6.074 6.067 6.052 6.059 6.069 6.094 6.104 6.027 5.817 5.739 5.873 6.042 6.042 6.042 + 6.042 6.042 6.042 6.049 5.977 6.042 6.087 6.212 6.239 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.066 6.060 6.125 6.078 6.013 5.888 5.730 5.763 5.575 5.580 6.023 6.127 6.151 6.100 6.053 6.079 5.670 5.630 6.172 6.118 6.037 6.171 6.274 6.156 6.125 6.183 6.224 6.121 6.012 6.042 6.042 6.042 6.310 6.337 6.074 6.128 6.103 6.030 6.032 6.042 6.077 6.047 6.068 6.062 6.076 6.103 6.126 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.078 6.007 6.017 6.212 6.430 6.408 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.020 5.976 5.984 6.003 6.080 5.745 5.512 6.093 6.073 5.909 6.247 5.869 6.128 5.571 5.695 6.523 6.552 6.297 6.347 6.383 6.173 6.067 6.078 6.145 6.098 6.047 6.042 6.042 6.042 6.042 6.385 6.322 6.190 6.091 6.032 6.042 6.042 6.042 6.039 6.052 6.070 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.267 6.259 6.125 6.068 6.189 6.465 6.373 6.257 6.069 6.042 6.042 6.042 6.042 6.016 6.042 6.042 6.042 6.027 6.037 6.042 6.042 6.042 6.042 6.042 6.070 6.040 5.978 5.864 5.985 6.552 6.494 6.151 5.940 5.926 6.052 5.495 5.779 6.386 6.471 6.316 6.260 6.361 6.042 6.041 6.054 6.066 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.238 6.160 6.043 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.251 6.163 6.045 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.057 6.046 5.968 6.042 6.042 6.042 6.042 6.042 6.042 6.113 6.152 6.300 6.392 6.135 6.247 6.285 6.127 6.094 6.073 5.948 6.138 6.385 6.373 6.174 6.049 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.098 6.128 6.119 6.029 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.301 6.194 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.396 6.346 6.056 6.157 5.955 5.742 5.913 6.170 6.163 6.107 6.068 6.008 5.901 5.891 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.043 6.047 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.097 6.135 6.098 6.008 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.200 6.007 5.920 5.727 5.670 5.886 6.115 6.140 6.082 6.006 5.961 5.931 5.940 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.121 6.029 5.953 6.042 5.879 6.010 6.066 6.086 6.072 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 5.834 5.727 5.786 5.952 6.167 6.198 6.133 6.057 6.002 6.018 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.043 5.980 5.961 6.066 6.294 6.352 6.369 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.194 6.133 6.045 6.001 6.021 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.341 6.557 6.482 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.132 6.038 5.903 5.862 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.028 5.829 5.627 5.709 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 5.740 5.613 5.774 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.001 6.003 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 6.042 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.899 6.966 6.619 6.431 5.961 6.104 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.858 7.079 7.232 6.719 6.504 6.103 6.130 6.099 6.195 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.601 6.864 7.129 6.585 6.545 6.817 6.340 6.095 6.185 6.240 6.367 6.392 6.375 6.373 6.400 6.465 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.331 6.605 7.201 6.545 6.438 6.712 6.526 6.216 6.229 6.283 6.540 6.488 6.423 6.474 6.613 6.795 7.169 7.324 6.751 6.477 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.078 6.273 6.833 6.429 6.463 6.732 6.601 6.389 6.271 6.417 6.665 6.613 6.565 6.676 6.929 6.971 7.417 7.689 7.088 6.586 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.185 6.362 6.615 6.403 6.334 6.462 6.166 6.193 6.093 6.255 6.774 6.767 6.794 7.069 7.325 6.999 7.365 8.024 7.244 6.561 6.345 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.477 6.317 6.184 6.322 5.991 6.048 5.908 6.102 6.671 6.639 6.602 7.072 7.366 7.246 7.198 7.640 7.204 6.642 6.366 6.265 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.576 6.596 6.428 6.372 6.006 6.163 5.988 6.074 6.528 6.828 6.598 6.818 7.018 6.935 6.748 6.962 6.946 6.728 6.413 6.283 6.328 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.374 6.251 6.203 6.182 6.073 6.184 5.822 5.929 5.852 5.913 6.620 6.914 6.607 6.714 6.769 6.701 6.570 6.671 6.844 6.689 6.504 6.427 6.371 6.350 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.307 6.086 5.752 5.525 5.782 6.193 5.762 5.905 5.838 5.808 6.647 6.979 6.721 6.789 6.830 6.702 6.607 6.652 6.738 6.559 6.430 6.404 6.341 6.322 6.261 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.264 6.046 5.780 5.426 5.616 6.076 5.861 6.018 5.729 5.675 6.440 6.948 6.575 6.619 6.946 6.933 6.690 6.622 6.613 6.447 6.339 6.326 6.265 6.314 6.301 6.346 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.458 6.291 6.070 5.948 5.629 5.535 5.796 5.886 5.939 5.511 5.504 6.345 7.187 6.711 6.412 6.843 7.241 6.940 6.659 6.530 6.432 6.395 6.335 6.299 6.367 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.403 6.230 6.059 6.074 5.775 5.651 6.066 5.804 5.773 5.626 5.596 6.220 7.226 7.088 6.741 7.069 7.610 7.274 6.962 6.706 6.550 6.492 6.331 6.158 6.079 6.352 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.517 6.377 6.115 5.907 5.918 5.656 5.559 6.034 5.924 5.985 5.929 5.828 6.071 6.789 7.646 7.006 6.938 7.497 7.366 7.246 6.935 6.643 6.454 6.250 6.123 6.160 6.357 6.392 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.413 6.395 6.216 5.954 5.893 5.993 5.871 5.929 6.252 5.843 5.959 5.730 5.675 5.900 6.330 7.483 6.876 6.669 7.030 7.440 7.573 6.874 6.408 6.339 6.182 6.148 6.295 6.433 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.441 6.406 6.371 6.263 6.070 6.026 6.080 6.089 6.324 6.318 6.134 6.198 6.090 5.841 5.815 6.196 7.244 7.131 6.751 6.515 7.027 7.408 6.865 6.520 6.382 6.206 6.206 6.354 6.458 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.671 6.516 6.443 6.442 6.469 6.429 6.375 6.223 6.053 5.989 6.213 6.158 5.894 6.300 6.031 5.741 5.968 6.744 7.219 7.174 6.601 6.973 7.455 7.250 6.942 6.570 6.358 6.321 6.335 6.379 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.702 6.598 6.556 6.504 6.453 6.457 6.496 6.386 6.174 5.904 6.000 6.075 5.863 6.018 6.407 6.061 5.696 6.318 7.092 7.679 6.845 7.251 8.311 7.769 7.078 6.605 6.395 6.364 6.295 6.343 6.360 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.533 6.688 6.835 6.890 6.790 6.645 6.611 6.437 6.327 6.441 6.458 6.256 6.235 5.962 5.934 6.551 6.318 5.667 5.872 6.549 7.095 6.507 6.870 8.549 7.743 6.916 6.601 6.474 6.461 6.403 6.397 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.509 6.860 7.030 7.027 6.925 6.655 6.411 6.243 6.295 6.365 6.633 6.392 6.252 6.289 6.038 6.103 6.383 5.859 5.930 6.571 7.013 6.391 6.197 7.630 7.467 6.850 6.667 6.575 6.606 6.502 6.404 6.353 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.664 6.898 6.971 6.963 6.944 6.863 6.575 6.367 6.342 6.354 6.704 6.480 6.323 6.393 6.061 5.782 6.044 5.798 5.718 6.427 6.833 6.301 6.148 7.251 7.147 6.863 6.639 6.564 6.569 6.527 6.371 6.281 6.272 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.587 6.633 6.870 6.886 6.855 6.787 6.732 6.672 6.742 6.627 6.378 6.688 6.825 6.555 6.334 5.918 5.582 5.956 6.010 5.835 6.268 6.777 6.479 6.256 6.420 6.499 6.549 6.504 6.480 6.531 6.450 6.272 6.221 6.190 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.430 6.553 6.721 6.968 6.948 6.785 6.673 6.609 6.616 6.746 6.677 6.615 6.613 6.587 6.664 6.465 6.307 5.826 5.977 6.002 5.957 6.095 6.814 7.425 7.034 6.179 6.654 6.669 6.603 6.498 6.590 6.478 6.150 6.141 6.142 6.155 6.383 6.383 6.383 6.383 6.383 6.383 6.378 6.388 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.411 6.533 6.664 6.831 6.741 6.548 6.472 6.470 6.501 6.572 6.550 6.636 6.981 6.753 6.764 6.482 6.677 6.405 5.946 5.825 5.913 5.924 6.445 6.935 6.805 6.180 7.163 7.119 6.808 6.501 6.406 6.325 6.119 6.117 6.100 6.126 6.318 6.383 6.383 6.383 6.356 6.354 6.382 6.383 6.383 6.383 6.383 6.381 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.344 6.384 6.517 6.457 6.376 6.342 6.339 6.366 6.387 6.419 6.455 6.484 6.514 6.954 6.839 6.429 6.371 6.676 6.873 6.142 5.684 5.764 6.307 6.578 6.503 6.226 5.913 6.989 7.043 6.889 6.586 6.291 6.208 6.129 6.144 6.215 6.309 6.407 6.420 6.388 6.383 6.295 6.269 6.240 6.212 6.197 6.231 6.383 6.387 6.386 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.315 6.360 6.499 6.375 6.189 6.185 6.255 6.347 6.448 6.526 6.518 6.558 6.596 6.707 6.820 6.311 6.347 6.442 6.422 5.965 5.589 5.728 6.384 6.400 6.840 6.597 6.133 7.097 7.296 7.217 6.845 6.531 6.324 6.245 6.219 6.329 6.495 6.581 6.601 6.542 6.529 6.398 6.389 6.234 6.175 6.189 6.238 6.325 6.369 6.417 6.524 6.585 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.326 6.403 6.553 6.439 6.221 6.244 6.315 6.396 6.542 6.662 6.569 6.509 6.335 6.421 6.688 6.409 6.221 6.230 6.169 6.067 6.027 6.073 6.218 5.651 6.485 7.420 6.915 7.133 7.377 7.563 7.243 6.720 6.482 6.403 6.299 6.378 6.533 6.557 6.693 6.748 6.471 6.213 6.448 6.416 6.358 6.247 6.235 6.305 6.375 6.492 6.540 6.518 6.468 6.521 6.486 6.385 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.360 6.520 6.644 6.467 6.315 6.319 6.367 6.438 6.558 6.662 6.671 6.707 6.543 6.485 6.594 6.397 6.393 6.388 6.187 5.894 6.036 6.056 6.351 5.905 6.425 7.365 6.895 6.555 6.687 7.108 7.144 6.819 6.510 6.379 6.368 6.467 6.522 6.536 6.674 6.873 6.664 5.990 6.042 6.228 6.515 6.559 6.493 6.369 6.395 6.614 6.546 6.298 6.422 6.480 6.411 6.356 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.347 6.444 6.467 6.362 6.318 6.329 6.363 6.450 6.598 6.724 6.780 6.878 6.876 6.615 6.401 6.256 6.434 6.231 5.915 5.727 5.890 6.129 6.357 5.974 6.042 6.941 6.998 6.557 6.236 6.511 6.766 6.797 6.450 6.384 6.550 6.736 6.676 6.569 6.644 6.838 6.654 6.062 6.270 6.387 6.504 6.578 6.746 6.733 6.795 6.968 6.807 6.482 6.332 6.264 6.223 6.282 6.307 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.440 6.377 6.329 6.268 6.267 6.294 6.390 6.555 6.652 6.612 6.652 6.728 6.627 6.348 6.379 6.534 6.265 6.228 5.784 5.803 6.191 6.281 5.874 5.852 6.730 7.238 6.462 6.401 5.969 6.092 6.312 6.355 6.596 6.891 6.597 6.269 6.295 6.659 6.864 6.674 6.535 6.601 6.472 6.616 6.670 6.703 6.677 6.871 6.978 6.793 6.487 6.257 6.158 6.096 6.269 6.336 6.350 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.385 6.414 6.354 6.383 6.383 6.383 6.302 6.385 6.532 6.565 6.375 6.346 6.416 6.496 6.445 6.484 6.342 6.129 6.240 5.684 5.625 6.184 6.286 5.790 5.642 6.476 7.137 6.888 6.778 6.080 5.707 5.882 6.360 6.933 6.971 6.453 6.545 6.753 6.801 6.528 6.207 6.369 6.783 6.600 6.537 6.574 6.616 6.581 6.614 6.570 6.310 6.274 6.354 6.720 6.528 6.407 6.436 6.354 6.349 6.322 6.301 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.387 6.356 6.285 6.383 6.383 6.383 6.383 6.383 6.443 6.443 6.308 6.240 6.257 6.340 6.434 6.536 6.446 6.149 6.071 5.795 5.839 6.335 6.360 5.845 5.494 6.009 6.920 7.057 6.758 6.087 5.655 5.761 6.387 7.062 6.816 6.548 6.672 6.735 6.574 6.422 6.079 6.078 6.665 6.503 6.463 6.514 6.601 6.677 6.515 6.326 6.294 6.359 6.439 6.692 6.362 6.111 6.388 6.435 6.438 6.371 6.345 6.406 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.365 6.383 6.383 6.383 6.383 6.383 6.383 6.392 6.397 6.296 6.179 6.140 6.211 6.335 6.505 6.565 6.415 6.032 5.957 6.225 6.297 6.084 5.759 5.437 5.803 6.514 6.672 6.314 6.302 5.757 5.805 6.481 6.794 6.422 6.458 6.570 6.490 6.329 6.255 6.201 6.142 6.324 6.186 6.195 6.389 6.598 6.662 6.532 6.400 6.429 6.445 6.566 6.932 6.705 6.399 6.449 6.340 6.426 6.466 6.459 6.450 6.456 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.406 6.436 6.342 6.223 6.189 6.276 6.395 6.523 6.572 6.415 6.208 6.229 6.272 5.985 6.280 6.115 5.784 5.773 6.028 6.390 6.635 6.720 6.474 6.953 6.730 6.464 6.561 6.679 6.659 6.500 6.305 6.234 6.201 6.084 5.963 5.891 5.935 6.177 6.528 6.727 6.671 6.468 6.396 6.466 6.527 6.737 6.782 6.530 6.386 6.171 6.424 6.495 6.492 6.473 6.435 6.447 6.450 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.374 6.413 6.357 6.301 6.319 6.410 6.480 6.491 6.476 6.360 6.260 6.369 6.284 5.983 6.336 6.501 6.241 5.977 5.827 6.191 6.408 6.175 6.109 6.486 6.140 6.066 6.458 6.525 6.557 6.592 6.590 6.661 6.568 6.240 6.035 6.012 6.114 6.252 6.473 6.593 6.552 6.393 6.304 6.341 6.549 6.738 6.874 6.686 6.427 6.372 6.805 6.775 6.489 6.467 6.461 6.440 6.470 6.449 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.445 6.482 6.461 6.425 6.420 6.560 6.654 6.358 6.192 6.313 6.323 6.157 6.375 5.965 5.854 6.029 6.113 6.247 6.217 6.273 6.585 6.791 6.401 6.176 6.418 6.768 6.945 6.892 6.655 6.416 6.291 6.290 6.216 6.167 6.197 6.201 6.169 6.208 6.322 6.450 6.560 6.676 6.601 6.380 6.283 6.418 6.371 6.241 6.287 6.415 6.484 6.366 6.329 6.353 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.388 6.403 6.426 6.427 6.413 6.388 6.440 6.494 6.224 6.240 6.333 6.140 6.008 6.393 5.780 5.583 5.742 5.983 5.980 6.191 6.285 6.364 6.431 6.121 5.897 6.226 6.688 6.853 6.704 6.542 6.424 6.270 6.268 6.281 6.256 6.227 6.243 6.253 6.320 6.391 6.457 6.538 6.596 6.521 6.377 6.296 6.303 6.271 6.290 6.370 6.358 6.212 5.998 6.045 6.209 6.383 6.383 6.383 + 6.383 6.383 6.383 6.381 6.377 6.383 6.333 6.396 6.497 6.444 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.379 6.353 6.355 6.349 6.393 6.437 6.447 6.449 6.499 6.445 6.562 6.353 6.146 5.992 6.469 6.269 6.166 5.944 5.894 5.861 6.113 6.091 6.347 6.347 6.054 5.970 6.143 6.218 6.190 6.277 6.385 6.353 6.293 6.383 6.407 6.507 6.531 6.453 6.416 6.425 6.452 6.524 6.555 6.558 6.465 6.372 6.334 6.355 6.374 6.406 6.465 6.426 6.254 5.968 6.010 6.185 6.383 6.383 6.383 + 6.383 6.383 6.383 6.398 6.393 6.379 6.383 6.542 6.672 6.696 6.383 6.383 6.383 6.383 6.383 6.383 6.357 6.336 6.311 6.299 6.284 6.364 6.411 6.446 6.440 6.428 6.419 6.454 6.234 6.156 5.945 6.419 6.586 6.404 6.224 6.209 6.334 6.168 6.044 6.462 6.428 6.293 6.161 6.253 6.231 6.071 6.196 6.364 6.377 6.376 6.480 6.421 6.592 6.625 6.579 6.455 6.447 6.487 6.513 6.537 6.408 6.383 6.348 6.361 6.404 6.443 6.492 6.512 6.475 6.414 6.383 6.317 6.345 6.383 6.383 6.383 + 6.383 6.383 6.383 6.555 6.463 6.372 6.383 6.798 6.819 6.710 6.441 6.383 6.383 6.410 6.406 6.396 6.327 6.283 6.275 6.280 6.285 6.383 6.383 6.383 6.383 6.368 6.410 6.544 6.437 6.392 6.263 6.815 6.914 6.259 6.326 6.165 6.623 6.513 6.338 6.829 6.812 6.470 6.448 6.519 6.384 6.228 6.265 6.407 6.425 6.450 6.500 6.383 6.414 6.531 6.595 6.518 6.476 6.455 6.468 6.407 6.395 6.383 6.360 6.379 6.431 6.443 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.616 6.507 6.400 6.380 6.754 6.703 6.616 6.554 6.536 6.522 6.457 6.343 6.289 6.280 6.362 6.383 6.313 6.312 6.341 6.383 6.383 6.383 6.383 6.405 6.438 6.370 6.287 6.566 7.081 6.954 6.212 6.117 6.205 6.370 6.167 6.267 6.679 6.715 6.541 6.521 6.580 6.467 6.369 6.371 6.416 6.403 6.383 6.383 6.383 6.383 6.447 6.440 6.465 6.426 6.380 6.425 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.489 6.389 6.300 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.184 6.185 6.383 6.383 6.544 6.417 6.325 6.305 6.383 6.383 6.383 6.383 6.383 6.454 6.452 6.516 6.694 6.564 6.441 6.482 6.397 6.409 6.503 6.453 6.450 6.583 6.594 6.475 6.377 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.412 6.416 6.405 6.364 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.371 6.225 6.236 6.383 6.383 6.383 6.383 6.383 6.078 6.121 6.383 6.383 6.743 6.680 6.565 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.587 6.555 6.320 6.348 6.393 6.201 6.209 6.356 6.443 6.384 6.363 6.366 6.281 6.371 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.408 6.410 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.337 6.261 6.323 6.383 6.116 6.351 6.248 6.205 6.383 6.775 6.792 6.842 6.495 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.286 6.276 6.223 6.093 6.139 6.346 6.480 6.409 6.372 6.362 6.272 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.313 6.313 6.383 6.195 6.399 6.492 6.573 6.769 6.774 6.725 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.233 6.148 6.133 6.333 6.383 6.551 6.468 6.419 6.390 6.380 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.744 6.822 6.768 6.757 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.559 6.445 6.356 6.313 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.947 6.878 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.457 6.278 6.116 6.103 6.230 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.367 6.134 5.919 6.016 6.192 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.109 5.989 6.158 6.298 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.348 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 6.383 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 7.058 7.143 7.055 6.742 6.532 6.725 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.860 7.125 7.310 7.050 6.589 6.413 6.632 6.522 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.795 6.965 7.132 6.511 6.221 6.476 6.648 6.473 6.553 6.546 6.587 6.645 6.634 6.608 6.595 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.698 6.816 6.923 6.234 6.497 6.773 6.705 6.391 6.486 6.468 6.641 6.740 6.719 6.754 6.804 6.899 7.047 7.135 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.593 6.654 7.010 6.605 6.825 6.987 6.784 6.382 6.403 6.541 6.824 6.886 6.844 6.957 7.064 7.000 7.179 7.338 7.190 6.808 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.631 6.717 6.801 6.516 6.609 6.713 6.615 6.496 6.404 6.501 7.124 7.128 7.032 7.124 7.117 7.036 7.248 7.638 7.347 6.903 6.675 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.739 6.666 6.638 6.757 6.696 6.643 6.372 6.382 6.916 7.018 7.075 7.402 7.401 7.313 7.293 7.706 7.611 7.091 6.731 6.612 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.911 7.284 6.822 6.623 6.548 6.586 6.376 6.420 6.737 6.936 7.120 7.459 7.449 7.281 7.202 7.611 7.518 7.130 6.705 6.544 6.500 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.681 6.658 6.574 6.613 6.862 6.527 6.574 6.345 6.363 6.199 6.326 6.713 7.173 7.356 7.442 7.007 7.048 7.087 7.228 7.387 7.056 6.826 6.638 6.486 6.395 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.627 6.438 6.295 6.263 6.464 6.842 6.306 6.320 6.123 6.104 6.620 7.255 7.576 7.424 6.773 7.130 7.072 7.140 7.280 6.970 6.793 6.625 6.405 6.380 6.426 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.526 6.418 6.331 6.190 6.407 6.744 6.335 6.224 5.985 6.010 6.502 7.128 7.429 7.093 6.993 7.580 7.184 7.227 7.218 6.942 6.674 6.505 6.392 6.483 6.458 6.384 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.766 6.773 6.627 6.429 6.330 6.258 6.224 6.498 6.430 6.135 5.743 5.894 6.567 7.321 7.378 6.928 7.094 7.779 7.333 7.271 7.224 7.068 6.807 6.672 6.655 6.682 6.642 6.607 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.847 6.835 6.672 6.418 6.285 6.136 6.143 6.521 6.394 6.205 5.842 5.762 6.286 7.002 7.458 7.252 7.082 7.405 7.310 7.342 7.287 7.096 6.900 6.740 6.622 6.604 6.646 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.718 6.909 6.817 6.571 6.389 6.279 6.153 6.167 6.414 6.495 6.755 6.361 5.974 5.965 6.500 7.535 7.302 6.950 7.176 7.174 7.256 7.178 7.024 6.863 6.635 6.432 6.450 6.577 6.645 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.832 6.745 6.551 6.320 6.403 6.486 6.473 6.631 6.617 6.338 6.492 6.245 5.871 5.902 6.325 7.248 7.357 7.305 7.349 7.687 7.665 7.291 7.028 6.897 6.566 6.368 6.434 6.685 6.651 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.968 6.822 6.633 6.429 6.314 6.469 6.551 6.572 6.676 6.549 6.283 6.442 6.302 5.910 5.904 6.260 7.150 7.490 7.494 6.852 7.308 7.812 7.431 7.109 6.814 6.490 6.358 6.513 6.694 6.733 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 7.048 7.000 6.809 6.694 6.632 6.637 6.674 6.517 6.361 6.401 6.476 6.286 6.218 6.314 6.083 5.844 5.992 6.637 7.278 7.701 6.830 7.109 7.746 7.701 7.442 7.030 6.683 6.547 6.562 6.664 6.666 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.997 6.936 6.886 6.845 6.838 6.935 6.896 6.637 6.510 6.568 6.519 6.354 6.123 6.178 6.490 6.001 5.710 6.159 6.980 7.897 6.930 6.950 7.912 8.235 7.979 7.339 6.857 6.706 6.632 6.669 6.664 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.836 7.105 7.176 7.080 6.915 6.889 6.901 6.799 6.846 6.907 6.568 6.317 6.260 6.377 6.812 6.320 5.739 5.803 6.352 7.295 7.054 6.980 8.137 8.618 8.228 7.514 7.032 6.922 6.849 6.790 6.692 6.653 6.662 6.719 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 7.200 7.335 7.403 7.185 6.854 6.679 6.635 6.694 6.886 6.972 6.679 6.428 6.465 6.473 6.497 6.600 6.077 6.057 6.544 7.180 7.206 6.550 7.984 8.350 7.685 7.435 7.171 7.077 6.938 6.790 6.648 6.575 6.661 6.743 6.657 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.790 7.086 7.201 7.263 7.169 7.014 6.769 6.780 6.829 6.934 7.146 6.955 6.539 6.385 6.237 6.173 6.292 6.411 6.135 6.363 7.053 7.361 6.381 7.731 8.277 7.779 7.462 7.187 7.066 7.032 6.812 6.585 6.478 6.558 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.795 6.870 6.888 6.875 6.884 6.876 6.841 6.942 6.844 6.800 7.035 7.000 6.581 6.304 6.021 5.867 6.140 6.770 6.209 6.053 6.466 6.858 6.606 6.930 7.537 7.605 7.450 7.253 7.161 7.171 6.835 6.539 6.441 6.559 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.735 6.626 6.867 6.925 6.795 6.766 6.726 6.712 6.841 6.843 6.907 7.194 7.056 6.577 6.363 6.277 6.142 6.253 6.529 6.287 6.179 6.495 7.526 7.342 6.057 7.260 7.543 7.620 7.419 7.400 7.180 6.603 6.341 6.358 6.490 6.671 6.754 6.662 6.662 6.662 6.662 6.719 6.618 6.549 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.667 6.696 6.601 6.830 7.013 6.909 6.812 6.754 6.685 6.711 6.712 6.872 7.142 6.935 6.555 6.275 6.308 6.463 6.073 6.006 6.066 6.224 6.505 7.591 7.199 5.977 7.625 7.759 7.673 7.243 7.107 6.874 6.468 6.231 6.216 6.407 6.693 6.797 6.672 6.621 6.680 6.778 6.744 6.674 6.544 6.662 6.662 6.649 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.675 6.736 6.586 6.483 6.554 6.693 6.776 6.760 6.702 6.725 6.741 6.765 6.929 6.940 6.492 6.312 6.406 6.755 6.297 5.844 5.765 6.263 6.774 6.819 6.816 6.283 7.080 7.046 7.526 7.232 6.998 6.870 6.664 6.339 6.315 6.553 6.868 6.935 6.871 6.698 6.636 6.698 6.639 6.584 6.662 6.617 6.729 6.772 6.804 6.660 6.652 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.622 6.682 6.838 6.704 6.472 6.445 6.598 6.721 6.758 6.756 6.802 6.878 6.942 6.944 6.967 6.704 6.886 6.728 6.536 6.165 5.804 5.819 6.190 6.777 6.967 7.042 6.707 7.221 7.350 8.109 7.720 7.348 7.092 6.916 6.604 6.610 6.921 7.274 7.244 7.106 6.865 6.642 6.732 6.607 6.459 6.424 6.570 6.787 6.977 7.082 7.036 6.980 6.958 6.921 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.627 6.718 6.926 6.875 6.604 6.613 6.687 6.736 6.786 6.844 6.872 6.842 6.695 6.648 6.627 6.626 6.651 6.517 6.546 6.400 6.211 6.077 6.105 6.103 6.714 7.694 7.595 7.364 7.072 7.861 8.131 7.646 7.259 7.087 6.829 6.772 6.984 7.050 6.887 6.949 6.677 6.343 6.642 6.751 6.603 6.469 6.563 6.828 7.109 7.290 7.072 7.021 6.978 6.852 6.700 6.603 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.618 6.732 6.946 6.920 6.713 6.710 6.784 6.826 6.895 6.988 6.993 6.872 6.762 6.701 6.654 6.675 6.739 6.764 6.719 6.362 6.267 6.245 6.274 5.981 6.388 7.601 7.159 6.869 6.761 7.433 8.009 7.826 7.481 7.300 7.135 7.057 7.056 6.942 6.915 7.093 6.908 6.294 6.247 6.481 6.742 6.673 6.606 6.658 6.796 6.902 6.744 6.786 6.928 6.777 6.655 6.585 6.580 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.614 6.700 6.780 6.741 6.673 6.685 6.742 6.817 6.897 6.912 6.933 6.931 6.959 6.717 6.455 6.546 6.632 6.642 6.430 6.167 6.099 6.291 6.037 5.706 6.035 6.947 7.000 6.922 6.647 7.053 7.653 7.985 7.569 7.189 7.077 7.047 6.882 6.601 6.682 7.118 6.811 6.273 6.320 6.450 6.630 6.583 6.579 6.627 6.683 6.814 6.777 6.702 6.682 6.622 6.610 6.593 6.594 6.681 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.708 6.671 6.631 6.654 6.599 6.641 6.691 6.780 6.790 6.788 6.931 7.089 6.938 6.669 6.745 6.862 6.667 6.417 6.191 6.024 6.220 6.115 5.776 6.041 6.948 7.265 6.751 6.484 6.590 7.005 7.255 7.154 6.978 7.035 6.801 6.482 6.451 6.595 6.844 6.527 6.559 6.508 6.531 6.769 6.734 6.624 6.581 6.619 6.732 6.711 6.571 6.574 6.601 6.633 6.673 6.623 6.639 6.658 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.684 6.589 6.556 6.614 6.662 6.662 6.623 6.735 6.824 6.810 6.888 6.974 7.050 6.966 7.042 7.004 6.765 6.604 6.208 6.115 6.429 6.173 5.708 5.730 6.589 7.345 6.796 6.673 6.676 6.510 6.728 7.073 6.888 6.995 6.570 6.788 6.851 6.654 6.310 6.266 6.658 6.643 6.601 6.694 6.726 6.748 6.744 6.695 6.635 6.648 6.618 6.777 6.877 6.602 6.759 6.708 6.570 6.571 6.552 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.655 6.534 6.539 6.662 6.662 6.636 6.558 6.709 6.793 6.817 6.815 6.823 6.924 7.064 7.189 6.946 6.778 6.570 6.163 6.376 6.895 6.386 5.793 5.631 6.167 7.110 7.175 6.743 6.508 6.133 6.199 6.988 6.982 6.863 6.755 6.908 7.025 6.766 6.407 6.301 6.701 6.809 6.610 6.621 6.710 6.787 6.838 6.811 6.750 6.677 6.585 6.762 6.822 6.533 6.644 6.743 6.625 6.610 6.584 6.622 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.631 6.541 6.677 6.717 6.689 6.650 6.654 6.777 6.956 7.062 6.883 6.878 6.695 6.396 6.651 6.892 6.233 5.661 5.532 5.982 6.952 7.122 6.388 6.346 6.105 6.160 6.878 7.076 6.461 6.384 6.722 6.927 6.808 6.699 6.586 6.702 6.689 6.483 6.498 6.692 6.805 6.866 6.905 6.935 6.695 6.510 6.853 7.142 6.867 6.644 6.528 6.562 6.679 6.632 6.618 6.594 6.648 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.628 6.662 6.727 6.727 6.651 6.574 6.606 6.767 6.922 6.942 6.857 6.837 6.763 6.633 6.477 6.260 6.188 5.835 5.688 5.824 6.317 7.095 6.774 6.411 6.297 6.901 6.744 6.815 6.475 6.654 6.969 6.984 6.836 6.684 6.509 6.388 6.342 6.270 6.284 6.493 6.798 7.158 7.218 7.086 6.986 6.851 6.895 6.806 6.795 6.752 6.673 6.811 6.886 6.674 6.644 6.584 6.605 6.711 6.740 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.628 6.670 6.694 6.678 6.637 6.615 6.659 6.772 6.869 6.843 6.797 6.768 6.687 6.579 6.445 6.367 6.335 6.113 6.005 5.974 5.851 6.667 6.786 6.402 6.298 6.407 6.383 6.524 6.496 6.720 7.003 7.219 7.333 7.239 6.870 6.535 6.429 6.328 6.405 6.550 6.782 7.021 7.043 6.973 6.896 6.896 7.015 6.876 6.994 6.854 6.642 6.790 6.917 6.704 6.650 6.640 6.640 6.678 6.723 6.680 6.669 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.642 6.662 6.652 6.664 6.659 6.662 6.662 6.662 6.632 6.627 6.623 6.667 6.715 6.766 6.776 6.787 6.870 7.092 6.996 6.640 6.553 6.494 6.401 6.373 6.498 6.103 6.153 6.326 6.320 6.379 6.286 6.600 6.878 6.847 6.474 6.423 6.843 7.333 7.600 7.411 6.996 6.777 6.554 6.489 6.353 6.298 6.398 6.520 6.646 6.715 6.759 6.764 6.819 6.950 6.826 6.620 6.560 6.526 6.466 6.513 6.646 6.766 6.677 6.581 6.607 6.656 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.659 6.659 6.649 6.589 6.664 6.803 6.824 6.667 6.662 6.662 6.662 6.662 6.646 6.656 6.668 6.684 6.702 6.724 6.759 6.833 7.032 7.151 6.888 6.641 6.565 6.407 6.475 6.752 6.081 5.649 5.792 5.985 6.030 6.639 7.232 6.953 6.634 6.173 6.075 6.347 6.617 6.631 6.537 6.486 6.703 6.563 6.486 6.427 6.358 6.427 6.606 6.767 6.830 6.807 6.776 6.882 6.959 6.828 6.617 6.498 6.447 6.494 6.599 6.716 6.563 6.334 6.219 6.361 6.527 6.662 6.662 6.662 + 6.662 6.662 6.662 6.663 6.681 6.673 6.625 6.646 6.821 6.932 6.922 6.662 6.662 6.662 6.662 6.662 6.662 6.637 6.631 6.622 6.644 6.686 6.742 6.822 6.941 7.074 6.985 7.016 6.859 6.407 6.591 6.888 6.469 6.137 5.891 5.893 6.161 6.919 7.289 7.104 6.927 6.493 6.294 6.111 6.060 6.079 6.151 6.472 6.523 6.553 6.598 6.639 6.670 6.732 6.809 6.827 6.811 6.809 6.833 6.926 6.946 6.786 6.602 6.557 6.621 6.657 6.721 6.743 6.580 6.347 6.114 6.270 6.479 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.746 6.788 6.662 6.662 7.023 7.082 6.662 6.662 6.662 6.662 6.662 6.797 6.628 6.603 6.582 6.586 6.608 6.654 6.690 6.739 6.808 6.887 6.881 6.898 6.783 6.481 6.398 6.622 7.098 7.073 6.620 6.358 6.516 7.133 7.257 7.258 7.165 6.835 6.354 6.109 6.124 6.122 6.286 6.540 6.590 6.645 6.732 6.804 6.837 6.848 6.815 6.728 6.721 6.764 6.803 6.899 6.914 6.713 6.587 6.604 6.681 6.747 6.789 6.766 6.685 6.595 6.646 6.475 6.591 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.862 6.811 6.683 6.662 7.062 7.005 6.814 6.690 6.670 6.660 6.650 6.756 6.617 6.564 6.573 6.608 6.635 6.634 6.673 6.690 6.722 6.737 6.757 6.821 6.791 6.701 6.654 7.072 7.757 7.316 6.934 6.482 6.658 7.221 7.110 7.272 7.114 6.762 6.522 6.429 6.406 6.320 6.422 6.662 6.680 6.726 6.777 6.741 6.680 6.761 6.660 6.666 6.686 6.720 6.767 6.824 6.816 6.715 6.623 6.643 6.721 6.764 6.662 6.662 6.743 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.840 6.766 6.724 6.662 6.892 6.844 6.754 6.709 6.768 6.722 6.618 6.615 6.584 6.619 6.662 6.662 6.625 6.631 6.644 6.662 6.662 6.662 6.681 6.694 6.643 6.592 6.715 7.181 7.308 6.824 6.660 6.523 6.611 6.565 6.655 6.856 6.796 6.690 6.636 6.667 6.636 6.561 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.692 6.673 6.649 6.662 6.665 6.728 6.758 6.674 6.662 6.619 6.632 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.728 6.691 6.695 6.662 6.662 6.662 6.662 6.662 6.619 6.486 6.637 6.691 6.724 6.724 6.662 6.620 6.578 6.654 6.662 6.662 6.662 6.662 6.679 6.647 6.655 6.772 6.856 6.703 6.770 6.857 6.789 6.861 6.752 6.694 6.789 6.771 6.715 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.669 6.666 6.651 6.668 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.636 6.662 6.662 6.662 6.377 6.443 6.637 6.563 6.484 6.662 6.797 6.851 6.756 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.694 6.679 6.574 6.555 6.684 6.626 6.563 6.638 6.711 6.688 6.698 6.723 6.653 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.669 6.665 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.348 6.518 6.685 6.728 6.717 6.662 6.826 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.559 6.573 6.482 6.497 6.662 6.787 6.719 6.702 6.749 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.481 6.792 7.013 7.030 6.755 6.764 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.538 6.479 6.455 6.538 6.662 6.847 6.719 6.672 6.723 6.628 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 7.075 7.198 7.093 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.805 6.618 6.509 6.509 6.425 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 7.087 6.893 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.676 6.443 6.265 6.295 6.388 6.650 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.649 6.430 6.218 6.261 6.448 6.651 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.444 6.337 6.425 6.598 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.649 6.686 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 6.662 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 7.343 7.326 7.029 6.874 7.150 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 7.154 7.246 7.283 7.205 6.695 6.518 6.944 6.853 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 7.027 6.928 6.491 6.122 6.425 6.813 6.723 6.873 6.928 6.880 6.938 6.952 6.940 6.952 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.950 6.794 6.570 6.233 6.679 6.980 6.798 6.537 6.751 6.847 6.897 7.076 7.113 7.119 7.143 7.147 7.164 7.168 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.995 6.857 6.842 6.661 7.039 7.061 6.799 6.476 6.625 6.796 7.031 7.291 7.280 7.308 7.360 7.260 7.240 7.244 7.162 7.160 7.010 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 7.054 6.943 6.770 6.633 6.968 7.135 7.042 6.756 6.740 6.849 7.429 7.623 7.571 7.402 7.291 7.290 7.288 7.385 7.445 7.270 7.156 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.904 6.833 6.910 6.937 7.225 7.215 6.927 6.851 6.939 7.559 7.917 7.810 7.518 7.424 7.428 7.270 7.472 7.642 7.485 7.242 6.996 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 7.028 6.997 6.976 7.017 7.504 6.977 7.021 6.978 6.872 6.912 7.164 7.493 7.795 8.163 7.895 7.547 7.312 7.219 7.686 7.732 7.650 7.264 7.060 7.010 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 7.015 6.982 6.858 6.868 7.174 6.851 6.999 6.956 6.885 6.705 6.912 7.169 7.721 8.421 8.235 7.223 7.047 7.193 7.680 7.669 7.378 7.193 6.974 6.829 6.719 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.779 6.709 6.772 6.758 7.296 7.097 6.919 6.544 6.515 6.756 7.387 8.292 8.518 7.046 7.057 7.121 7.455 7.317 7.077 6.969 6.806 6.700 6.672 6.814 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.965 6.844 6.817 6.804 6.792 6.919 7.423 7.104 6.728 6.404 6.415 6.567 6.948 7.700 8.145 7.386 7.443 7.272 7.455 7.312 7.065 6.731 6.613 6.665 6.761 6.754 6.659 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 7.056 7.071 7.029 6.910 6.856 6.876 6.973 7.291 7.208 6.643 6.232 6.389 6.631 6.893 7.317 7.879 7.691 7.688 7.240 7.274 7.380 7.233 6.926 6.823 6.995 7.050 6.917 6.690 6.873 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 7.142 7.219 7.176 6.990 6.848 6.733 6.890 7.152 7.125 6.674 6.162 6.077 6.377 6.689 7.210 7.636 7.367 7.385 7.349 7.523 7.611 7.210 6.991 7.127 7.223 7.060 6.994 6.997 6.935 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 7.133 7.237 7.156 7.055 6.929 6.838 6.888 6.858 6.812 6.817 6.430 6.178 6.132 6.453 7.067 7.358 6.966 7.027 7.219 7.428 7.279 7.012 7.026 7.097 6.917 6.852 6.945 6.978 6.980 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 7.445 7.192 6.975 6.830 6.879 6.993 7.033 7.173 7.026 6.774 6.630 6.490 6.217 6.140 6.321 6.717 7.326 7.239 7.056 7.417 7.671 7.242 7.071 7.129 6.876 6.661 6.757 6.967 6.992 6.992 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 7.542 7.381 7.074 6.806 6.694 6.775 6.862 6.895 7.107 7.008 6.846 6.634 6.441 6.203 6.262 6.408 6.800 7.454 7.544 7.093 7.492 8.340 7.806 7.412 7.029 6.658 6.557 6.795 6.964 7.120 6.990 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 7.430 7.267 7.102 7.018 6.990 7.008 6.900 6.750 6.950 6.956 6.822 6.583 6.496 6.409 6.166 6.075 6.436 7.149 7.588 7.267 7.512 8.067 8.148 7.992 7.393 6.950 6.850 6.903 7.000 7.144 7.093 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 7.309 7.313 7.335 7.331 7.349 7.307 7.036 6.819 6.901 6.848 6.615 6.474 6.502 6.579 6.069 5.770 6.092 6.894 7.818 7.506 7.313 7.812 8.116 8.168 7.537 7.159 7.189 7.155 7.095 7.083 7.022 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 7.424 7.521 7.580 7.486 7.303 7.222 7.070 6.915 6.950 6.826 6.380 6.406 6.589 6.661 6.204 5.830 6.004 6.637 7.603 7.665 7.028 7.375 8.136 8.283 7.720 7.454 7.497 7.499 7.306 7.109 7.028 7.053 7.071 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.928 6.983 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 7.124 7.478 7.550 7.536 7.304 7.107 7.110 7.125 7.127 7.128 7.107 6.741 6.654 6.648 6.560 6.428 6.192 6.177 6.493 7.144 7.767 6.987 7.462 8.207 8.092 7.651 7.542 7.586 7.538 7.270 7.020 6.883 6.964 7.038 6.942 6.918 6.997 6.997 6.997 6.997 6.997 6.997 6.956 7.009 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 7.250 7.315 7.424 7.512 7.434 7.217 7.159 7.173 7.130 7.203 7.248 7.087 6.778 6.519 6.465 6.541 6.726 6.248 6.160 6.877 8.198 7.561 7.613 7.913 7.911 7.848 7.595 7.547 7.572 7.295 6.937 6.808 6.960 7.008 6.934 6.918 6.997 6.997 7.044 7.183 7.030 6.997 6.997 6.989 6.995 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 7.003 7.124 7.072 7.082 7.203 7.276 7.181 7.094 7.148 7.260 7.343 7.193 7.000 6.778 6.321 6.209 6.598 6.945 6.321 6.142 6.664 7.719 7.987 7.444 7.708 8.250 8.211 7.863 7.708 7.709 7.397 6.973 6.798 6.922 7.059 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.964 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 7.020 7.154 7.040 6.948 6.998 7.027 7.002 7.041 7.155 7.204 7.358 7.288 6.902 6.823 6.324 6.134 6.538 6.822 6.479 6.444 6.677 7.690 8.111 7.036 7.532 7.887 8.293 7.935 7.754 7.537 7.149 6.751 6.700 6.907 7.156 7.150 7.044 6.953 6.997 6.997 6.997 6.922 6.843 6.997 6.997 6.913 6.933 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.756 6.900 7.238 7.320 7.232 7.129 7.002 6.959 7.014 6.990 7.099 7.141 6.765 6.681 6.360 6.304 6.306 6.403 6.529 6.783 6.885 7.144 7.763 7.339 7.972 7.603 7.916 7.740 7.532 7.262 6.984 6.659 6.558 6.837 7.325 7.298 7.092 7.022 7.116 7.082 6.969 6.945 6.795 6.742 6.998 6.970 6.970 6.972 6.997 7.056 7.067 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.992 6.744 6.691 6.921 7.153 7.233 7.185 7.096 7.045 7.053 6.989 6.947 7.078 6.781 6.574 6.446 6.522 6.585 6.394 6.374 6.566 6.958 7.016 8.089 7.807 7.570 7.178 7.861 7.804 7.824 7.658 7.452 6.889 6.678 6.989 7.544 7.557 7.264 7.047 7.047 7.093 6.950 6.920 6.809 6.858 7.032 7.147 7.180 7.151 7.218 7.178 7.127 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 7.016 7.049 6.948 6.729 6.818 6.974 7.100 7.124 7.111 7.113 7.130 7.055 6.986 7.067 6.882 6.777 6.753 6.579 6.464 6.219 6.029 6.210 6.927 7.224 7.291 7.502 7.623 7.495 8.140 8.012 8.264 8.183 8.026 7.307 7.034 7.278 7.812 7.891 7.468 7.152 7.002 7.114 6.985 6.836 6.715 6.929 7.325 7.733 7.631 7.455 7.423 7.303 7.173 7.026 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 7.024 7.137 7.306 7.265 6.986 7.032 7.085 7.073 7.052 7.063 7.112 7.069 6.888 6.995 7.124 6.786 6.693 6.565 6.530 6.418 6.391 6.045 6.152 6.756 7.389 7.459 7.450 7.677 7.338 7.716 7.537 7.715 7.929 8.080 7.520 7.054 7.074 7.230 7.052 6.857 6.834 6.669 6.795 7.007 6.978 6.755 6.886 7.267 7.868 7.696 7.554 7.576 7.331 7.134 6.991 6.980 7.022 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 7.007 7.133 7.326 7.374 7.170 7.173 7.270 7.255 7.198 7.185 7.179 6.965 6.817 7.023 7.310 7.070 6.868 6.637 6.688 6.476 6.372 6.072 6.109 6.422 6.974 8.029 7.633 7.266 7.279 7.750 7.662 7.632 7.618 7.742 7.553 7.244 7.080 6.989 6.757 6.733 6.811 6.632 6.658 6.911 7.155 7.034 6.972 6.850 7.055 7.115 7.108 7.206 7.107 7.004 6.963 6.971 7.072 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.989 6.985 7.081 7.180 7.164 7.054 6.997 7.136 7.217 7.192 7.104 7.042 6.870 6.882 6.947 7.011 7.077 6.883 6.758 6.699 6.581 6.277 6.131 5.989 5.894 6.440 7.463 7.671 7.224 7.227 7.799 7.790 7.864 7.572 7.286 7.562 7.476 7.199 6.904 6.728 6.824 6.864 6.719 6.937 7.091 6.941 6.902 6.903 6.738 6.793 7.019 6.884 6.819 6.845 6.905 6.948 6.941 7.013 7.087 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.986 6.971 6.997 6.997 6.990 6.963 6.854 6.959 7.061 7.094 6.988 6.906 6.969 7.167 7.165 7.034 7.243 7.350 7.273 6.898 6.659 6.369 6.237 6.070 5.915 6.400 7.028 7.261 7.147 7.002 7.244 7.791 7.714 7.280 7.182 7.565 7.448 7.106 6.781 6.558 6.588 6.531 6.728 7.015 6.971 6.658 6.564 6.606 6.615 6.688 6.830 6.740 6.614 6.663 6.771 6.931 6.934 6.907 6.985 7.022 7.042 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.935 6.925 6.959 6.921 6.997 6.976 7.022 6.988 6.995 7.150 7.333 7.487 7.448 7.515 7.658 7.750 7.391 6.990 6.797 6.533 6.012 5.738 5.898 6.400 7.017 7.006 6.703 6.836 7.356 7.523 7.014 6.959 7.121 6.935 7.112 6.947 6.689 6.356 6.388 6.738 6.922 6.821 6.722 6.693 6.770 6.932 6.902 6.857 6.882 6.823 6.855 6.816 6.868 7.028 6.969 6.885 6.843 6.875 6.941 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.846 6.939 6.884 7.011 7.082 7.186 7.284 7.349 7.481 7.647 7.606 7.448 7.665 7.179 6.837 7.236 7.307 6.314 5.777 5.808 6.185 6.749 7.215 7.104 7.089 7.253 7.039 6.787 6.733 6.643 6.801 7.221 7.386 7.093 6.627 6.770 7.166 7.212 7.047 7.048 6.982 6.928 7.096 7.348 7.344 7.004 6.950 7.106 7.145 6.989 7.121 7.182 6.950 6.786 6.757 6.867 6.959 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.982 6.997 6.997 6.794 6.723 6.856 7.045 7.116 7.157 7.165 7.217 7.388 7.545 7.493 7.266 7.468 7.307 6.942 7.008 7.228 6.262 5.650 5.717 6.168 6.869 7.421 6.924 7.204 7.264 6.630 6.843 7.105 6.583 6.423 6.835 7.175 7.053 6.884 7.051 7.168 7.200 7.084 7.108 7.197 7.160 7.290 7.479 7.340 6.999 6.999 7.314 7.356 7.090 6.991 7.125 7.100 6.939 6.776 6.763 6.871 7.054 7.101 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.993 6.997 6.997 6.937 6.997 6.997 6.761 6.734 6.950 7.081 7.089 7.040 6.991 7.088 7.292 7.418 7.365 7.217 7.267 7.289 7.111 6.723 6.546 6.098 5.631 5.704 5.934 6.374 7.080 6.836 6.692 6.660 6.784 6.821 6.776 6.400 6.663 7.238 7.390 7.085 6.854 6.867 6.924 7.096 7.010 6.959 7.108 7.324 7.663 7.948 7.811 7.507 7.261 7.124 7.114 7.091 7.059 7.157 7.256 7.164 6.996 6.850 6.798 6.992 7.087 7.085 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.994 7.001 6.997 6.940 6.939 6.997 6.885 6.831 6.852 7.056 7.086 7.044 6.989 6.963 7.036 7.177 7.266 7.219 7.158 7.136 7.083 6.899 6.694 6.812 6.541 6.036 5.968 6.020 6.041 6.576 6.943 6.514 6.437 6.435 6.681 6.794 6.691 7.201 7.838 7.881 7.695 7.376 7.221 7.317 7.332 7.079 6.939 7.038 7.239 7.394 7.534 7.450 7.377 7.461 7.377 7.313 7.318 7.119 7.025 7.001 6.919 6.938 6.941 6.964 6.992 7.021 6.997 7.068 7.044 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 7.008 6.997 6.921 6.932 6.981 6.990 6.973 6.973 7.097 7.098 7.049 6.983 6.974 7.007 7.058 7.102 7.110 7.106 7.144 7.263 7.242 6.985 6.851 6.761 6.556 6.622 6.600 6.302 6.348 6.546 6.552 6.565 6.453 7.032 7.117 6.986 7.113 7.162 7.408 7.742 7.790 7.637 7.525 7.298 7.041 6.896 6.744 6.700 6.693 6.831 6.966 7.077 7.132 7.122 7.264 7.430 7.280 7.035 6.840 6.791 6.905 7.053 7.201 7.121 6.926 6.869 6.968 7.013 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.994 7.002 6.997 6.956 6.997 7.132 7.139 7.060 6.981 6.997 6.997 6.962 6.950 6.966 6.998 7.028 7.041 7.044 7.039 7.157 7.339 7.548 7.417 7.062 6.889 6.656 7.000 7.135 6.615 6.120 6.237 6.223 6.352 6.888 7.867 7.390 7.032 6.734 6.529 6.696 6.960 6.969 6.831 6.773 6.799 6.845 6.811 6.731 6.664 6.689 6.872 7.054 7.139 7.125 7.098 7.296 7.408 7.244 6.980 6.832 6.833 6.956 7.035 6.977 6.740 6.579 6.577 6.741 6.887 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 7.016 7.077 7.032 6.997 6.997 7.308 7.275 7.046 6.997 6.997 7.186 6.990 6.964 6.962 6.962 6.968 6.984 7.009 7.046 7.113 7.249 7.430 7.414 7.390 7.311 6.887 7.345 7.448 6.964 6.554 6.418 6.241 6.543 6.987 7.395 7.326 7.252 6.897 6.630 6.449 6.441 6.523 6.637 6.655 6.745 6.793 6.847 6.877 6.886 6.920 7.115 7.213 7.179 7.129 7.137 7.333 7.347 7.143 6.982 6.928 6.983 7.044 7.056 6.966 6.734 6.472 6.406 6.584 6.822 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 7.293 7.247 6.997 7.321 7.447 7.437 7.051 7.022 7.069 7.132 7.110 7.016 6.969 6.964 6.969 6.979 6.980 6.996 7.045 7.137 7.221 7.219 7.221 7.258 7.037 7.106 7.075 7.170 7.307 7.097 6.684 6.611 7.003 7.458 7.549 7.503 7.233 6.775 6.464 6.385 6.482 6.636 6.743 6.822 6.907 6.992 7.029 7.056 7.076 7.144 7.067 7.026 7.042 7.115 7.287 7.273 7.157 7.009 7.005 7.067 7.121 7.120 7.047 6.943 6.874 6.617 6.740 6.917 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 7.280 7.224 7.132 7.103 7.230 7.260 7.153 6.979 6.976 7.012 7.050 7.037 6.978 6.951 6.997 7.031 7.012 7.013 6.991 7.009 7.029 7.083 7.092 7.095 7.117 7.031 6.958 7.069 7.368 7.534 7.465 6.948 6.837 7.239 7.376 7.466 7.363 7.113 6.848 6.641 6.797 6.710 6.997 6.997 6.997 7.010 7.036 6.997 7.057 6.997 6.997 6.930 6.945 7.017 7.117 7.178 7.160 7.117 7.033 7.019 7.049 6.997 7.019 7.094 7.076 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 7.152 7.115 7.106 7.085 7.074 6.975 6.868 6.997 6.994 6.997 6.997 6.998 7.018 7.135 7.143 6.997 6.997 6.960 6.997 6.997 6.993 7.006 6.990 6.932 6.864 6.848 7.131 7.408 7.257 7.264 7.225 7.189 7.090 7.120 7.215 7.101 7.011 6.959 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.923 6.938 6.987 6.997 7.102 7.075 7.026 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 7.102 7.131 7.122 7.027 6.855 6.819 6.934 6.996 7.024 7.152 7.145 7.086 7.030 6.997 6.997 6.883 6.891 6.997 6.997 6.997 6.997 6.992 6.918 6.884 6.936 7.089 7.021 7.034 7.211 7.265 7.364 7.195 7.088 7.186 7.167 7.122 7.056 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.973 6.991 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 7.010 6.997 6.775 6.830 6.995 7.123 7.139 7.283 7.204 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.927 6.911 6.879 7.005 7.065 7.018 7.106 7.132 7.060 7.099 7.068 7.049 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.903 7.202 7.391 7.469 7.267 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.898 6.936 6.912 6.977 7.132 7.171 7.047 7.039 7.139 7.057 6.969 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 7.570 7.602 7.442 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.894 6.853 6.826 6.950 7.107 7.157 6.966 6.906 6.985 6.854 6.885 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 7.523 7.450 7.369 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 7.074 7.044 6.802 6.679 6.740 6.738 6.808 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 7.209 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.962 6.734 6.545 6.571 6.727 6.888 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.998 6.806 6.616 6.601 6.791 6.955 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.929 6.732 6.761 6.961 7.061 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 7.106 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 6.997 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.594 7.499 7.245 7.067 7.284 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.461 7.358 7.204 6.741 6.570 6.965 7.030 7.218 7.295 7.258 7.365 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.143 6.846 6.493 6.194 6.581 6.851 6.920 7.186 7.356 7.321 7.345 7.381 7.391 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 6.734 6.384 6.333 6.703 7.084 6.904 6.837 7.154 7.370 7.434 7.562 7.628 7.588 7.608 7.571 7.515 7.475 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.456 6.806 6.641 6.773 7.210 7.288 6.973 6.848 7.068 7.256 7.470 7.762 7.754 7.729 7.805 7.716 7.594 7.515 7.463 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.014 6.772 6.893 7.252 7.413 7.222 7.012 7.153 7.373 7.872 8.102 7.871 7.745 7.793 7.777 7.693 7.536 7.567 7.572 7.635 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.339 7.050 6.926 7.081 7.118 7.359 7.227 7.075 7.270 7.481 8.010 8.334 8.040 7.785 7.764 7.762 7.755 7.616 7.671 7.825 7.758 7.736 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.407 7.430 7.398 7.187 7.177 7.422 7.224 7.463 7.286 7.138 7.308 7.711 8.104 8.256 8.359 8.022 7.640 7.538 7.564 7.697 7.736 7.913 7.871 7.744 7.426 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.402 7.398 7.340 7.236 7.351 7.242 7.469 7.440 7.308 7.190 7.395 7.640 8.017 8.433 8.091 7.254 7.146 7.427 7.773 7.753 7.642 7.771 7.624 7.488 7.307 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.355 7.278 7.227 7.215 7.729 7.907 7.582 7.219 7.087 7.047 7.480 7.957 7.928 7.132 6.990 7.322 7.798 7.531 7.249 7.316 7.348 7.314 7.200 7.175 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.519 7.481 7.374 7.395 7.822 7.933 7.370 7.149 6.958 6.744 6.903 7.348 7.802 7.486 7.351 7.579 7.992 7.610 7.170 6.990 7.083 7.242 7.184 7.154 7.102 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.457 7.686 7.661 7.642 7.517 7.526 7.641 7.784 7.173 6.854 6.724 6.645 6.719 7.057 7.852 7.918 7.802 7.735 7.853 7.572 7.198 7.004 7.150 7.352 7.391 7.281 7.098 6.997 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.790 7.747 7.700 7.709 7.529 7.571 7.468 7.434 6.936 6.602 6.471 6.554 6.549 6.922 7.602 7.795 7.832 7.806 7.814 7.528 7.112 7.051 7.456 7.647 7.585 7.432 7.258 7.045 7.268 7.398 7.398 7.383 7.178 7.263 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 8.046 7.820 7.681 7.628 7.621 7.620 7.594 7.332 7.172 6.997 6.918 6.685 6.462 6.432 6.799 7.434 7.315 7.466 7.626 7.756 7.420 7.108 7.224 7.600 7.573 7.441 7.427 7.454 7.392 7.387 7.444 7.420 7.359 7.077 7.085 7.324 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 8.096 7.903 7.595 7.413 7.425 7.509 7.604 7.707 7.645 7.738 7.414 7.158 6.731 6.390 6.324 6.681 7.490 7.268 7.155 7.300 7.661 7.219 7.010 7.459 7.548 7.380 7.383 7.470 7.536 7.468 7.405 7.398 7.398 7.380 7.222 7.260 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.903 7.670 7.406 7.297 7.335 7.374 7.416 7.639 7.753 7.997 7.471 6.991 6.524 6.340 6.347 6.752 7.663 7.474 7.124 7.240 7.950 7.673 7.385 7.541 7.439 7.353 7.400 7.442 7.508 7.419 7.385 7.398 7.398 7.381 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.671 7.613 7.578 7.552 7.537 7.496 7.281 7.335 7.431 7.568 7.166 7.071 6.787 6.261 6.081 6.557 7.419 7.764 7.621 7.611 7.958 8.232 8.524 8.177 7.693 7.574 7.463 7.429 7.483 7.552 7.379 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.414 7.716 7.741 7.761 7.893 7.996 7.770 7.315 7.104 7.019 6.913 6.852 7.161 7.064 6.325 6.035 6.467 7.177 8.126 8.296 7.962 8.139 8.332 8.421 7.989 7.847 7.930 7.763 7.570 7.500 7.565 7.551 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.455 7.795 7.758 7.792 7.853 7.856 7.653 7.283 7.061 6.996 6.794 6.816 7.093 7.002 6.486 6.335 6.566 6.869 7.845 8.095 7.460 7.523 8.059 8.337 7.904 7.877 8.017 8.078 7.879 7.601 7.472 7.465 7.396 7.398 7.398 7.398 7.398 7.398 7.398 7.387 7.332 7.315 7.395 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.629 7.710 7.707 7.691 7.684 7.681 7.578 7.389 7.303 7.528 7.380 7.064 7.076 6.857 6.592 6.544 6.510 6.516 7.174 8.033 7.323 7.416 7.877 7.889 7.762 7.868 7.842 7.735 7.678 7.539 7.336 7.334 7.384 7.339 7.311 7.398 7.437 7.685 7.625 7.420 7.324 7.318 7.417 7.494 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.485 7.579 7.638 7.767 7.873 7.873 7.737 7.576 7.421 7.401 7.466 7.483 7.407 7.212 6.916 6.795 6.709 6.298 6.311 6.913 8.123 7.882 7.713 7.645 7.571 7.786 7.964 7.900 7.794 7.806 7.793 7.517 7.432 7.461 7.410 7.396 7.485 7.583 7.713 7.623 7.422 7.366 7.365 7.431 7.510 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.533 7.477 7.625 7.754 7.811 7.727 7.697 7.722 7.602 7.379 7.388 7.488 7.154 6.971 7.170 6.876 6.371 6.474 6.874 7.872 8.590 7.659 7.490 7.561 7.824 7.965 8.062 8.203 7.953 7.713 7.474 7.440 7.551 7.563 7.558 7.593 7.555 7.592 7.400 7.388 7.387 7.378 7.411 7.462 7.487 7.398 7.395 7.394 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.388 7.405 7.455 7.504 7.482 7.509 7.670 7.688 7.483 7.348 7.479 7.110 6.821 7.177 7.094 6.706 6.650 6.701 7.478 8.246 7.191 7.682 7.868 7.970 7.901 8.000 7.916 7.729 7.413 7.263 7.418 7.737 7.760 7.678 7.706 7.515 7.386 7.295 7.353 7.371 7.387 7.351 7.362 7.403 7.382 7.408 7.368 7.410 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.523 7.707 7.759 7.647 7.546 7.497 7.448 7.431 7.387 7.308 7.340 7.202 7.273 7.081 6.838 6.890 6.843 6.813 6.790 6.624 6.857 7.591 7.328 7.851 7.885 7.942 7.871 7.810 7.683 7.688 7.435 7.132 7.395 8.062 8.003 7.739 7.628 7.576 7.449 7.313 7.382 7.365 7.318 7.351 7.355 7.412 7.455 7.465 7.448 7.423 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.150 7.200 7.471 7.676 7.692 7.594 7.551 7.535 7.471 7.241 7.034 7.131 7.096 6.960 6.961 6.840 6.937 6.821 6.599 6.582 6.731 7.000 8.102 8.219 7.698 7.484 7.803 7.740 7.987 7.949 8.119 7.863 7.397 7.700 8.437 8.259 7.817 7.576 7.502 7.437 7.310 7.428 7.419 7.461 7.542 7.612 7.666 7.714 7.672 7.560 7.465 7.428 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.314 7.171 7.302 7.433 7.454 7.393 7.360 7.395 7.383 7.121 6.973 6.996 7.048 7.020 6.917 6.741 6.957 6.759 6.194 6.236 6.890 7.241 7.530 7.890 7.833 7.714 7.886 7.549 7.888 8.335 8.581 8.016 7.576 7.695 8.258 8.423 7.977 7.644 7.498 7.483 7.386 7.517 7.510 7.713 8.019 8.117 8.116 8.071 7.953 7.719 7.542 7.462 7.510 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.717 7.539 7.197 7.291 7.408 7.385 7.323 7.279 7.284 7.189 6.968 7.008 7.160 7.179 7.194 6.931 6.773 6.777 6.694 6.221 6.337 6.873 7.455 7.635 7.525 7.805 7.696 7.864 7.443 7.513 7.936 8.292 7.869 7.447 7.368 7.722 7.912 7.649 7.340 7.265 7.416 7.488 7.565 7.429 7.527 7.821 7.894 7.872 7.969 7.951 7.788 7.586 7.499 7.536 7.616 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.397 7.398 7.572 7.627 7.276 7.272 7.554 7.627 7.529 7.419 7.294 7.026 6.845 7.054 7.362 7.494 7.506 7.229 6.966 6.794 6.534 6.159 6.283 6.531 7.355 7.924 7.507 7.300 7.621 7.889 7.591 7.461 7.744 8.020 7.756 7.571 7.462 7.377 7.372 7.385 7.179 7.107 7.272 7.443 7.605 7.464 7.238 7.238 7.488 7.493 7.512 7.563 7.610 7.506 7.487 7.536 7.644 7.584 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.394 7.405 7.403 7.398 7.548 7.318 7.153 7.476 7.617 7.578 7.460 7.276 6.984 6.914 7.034 7.220 7.524 7.672 7.415 6.995 6.830 6.535 6.224 6.133 6.198 6.934 7.806 8.135 7.468 7.618 8.102 7.683 7.478 7.641 7.674 7.955 7.954 7.893 7.500 7.241 7.308 7.254 7.231 7.390 7.339 7.284 7.295 7.184 7.194 7.333 7.239 7.117 7.200 7.437 7.389 7.345 7.377 7.482 7.594 7.589 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.391 7.404 7.398 7.398 7.447 7.329 7.049 7.253 7.453 7.501 7.444 7.336 7.272 7.312 7.249 7.145 7.292 7.731 7.764 7.403 7.135 6.863 6.566 6.194 5.997 6.572 7.624 7.976 7.574 7.726 8.040 7.704 7.525 7.506 7.541 7.742 7.637 7.587 7.134 6.830 6.901 6.919 7.138 7.511 7.288 6.957 6.822 6.861 6.972 7.083 7.022 6.909 6.938 7.047 7.001 7.079 7.129 7.207 7.343 7.472 7.549 7.609 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.396 7.406 7.398 7.325 7.376 7.363 7.044 7.190 7.362 7.405 7.384 7.477 7.605 7.665 7.672 7.576 7.488 7.751 7.983 7.665 7.604 7.568 7.026 6.208 5.911 6.165 7.084 7.913 7.811 7.516 7.251 7.364 7.526 7.428 7.683 7.619 7.499 7.533 6.987 6.788 6.711 6.779 7.080 7.298 7.113 6.995 6.950 6.969 7.119 7.242 7.256 7.136 6.959 6.963 6.969 7.051 7.048 7.080 7.138 7.202 7.331 7.474 7.539 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.396 7.400 7.398 7.318 7.369 7.373 7.147 7.168 7.330 7.471 7.592 7.741 7.816 7.819 7.834 7.826 7.716 7.659 7.733 7.336 7.248 7.593 7.260 6.500 6.023 6.055 6.719 7.476 7.789 7.121 7.214 7.555 7.402 7.154 7.073 6.897 7.419 8.013 7.732 7.302 7.139 7.375 7.622 7.453 7.296 7.371 7.438 7.340 7.304 7.547 7.638 7.483 7.413 7.480 7.449 7.297 7.359 7.321 7.039 6.921 7.022 7.254 7.437 7.479 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.408 7.397 7.401 7.398 7.281 7.398 7.353 7.178 7.179 7.348 7.564 7.692 7.740 7.703 7.741 7.875 7.882 7.763 7.640 7.676 7.537 7.388 7.149 6.944 6.584 6.001 5.976 6.443 7.314 7.829 7.079 7.292 7.301 6.890 6.973 7.324 7.197 7.576 7.780 7.520 7.331 7.463 7.703 7.732 7.743 7.621 7.587 7.756 7.795 7.647 7.471 7.396 7.498 7.762 7.760 7.620 7.428 7.601 7.554 7.228 7.021 6.989 7.154 7.360 7.495 7.506 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.394 7.409 7.400 7.356 7.318 7.398 7.398 7.233 7.267 7.449 7.549 7.514 7.536 7.471 7.556 7.766 7.822 7.767 7.655 7.665 7.728 7.659 7.235 6.891 6.571 5.960 5.877 6.152 6.744 7.437 7.391 7.163 6.658 6.547 6.840 7.144 7.067 7.427 7.600 7.490 7.567 7.753 7.827 7.974 8.104 7.889 7.797 7.913 7.837 7.703 7.625 7.653 7.693 7.691 7.663 7.618 7.473 7.505 7.284 7.163 7.192 7.378 7.414 7.443 7.564 7.589 7.516 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.392 7.422 7.398 7.336 7.334 7.398 7.383 7.290 7.402 7.554 7.544 7.484 7.422 7.380 7.419 7.398 7.580 7.637 7.617 7.611 7.616 7.631 7.450 7.164 6.991 6.498 6.176 6.191 6.305 6.927 7.266 6.820 6.512 6.703 6.952 7.126 7.236 7.547 7.958 8.141 8.154 8.003 8.084 8.382 8.525 8.166 7.787 7.780 7.791 7.752 7.645 7.747 7.993 8.040 7.942 7.834 7.722 7.584 7.302 7.136 7.210 7.563 7.658 7.576 7.529 7.510 7.398 7.554 7.488 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.381 7.415 7.398 7.398 7.398 7.398 7.385 7.372 7.443 7.601 7.605 7.514 7.441 7.413 7.419 7.401 7.411 7.490 7.518 7.533 7.602 7.692 7.696 7.340 7.141 7.077 6.871 6.671 6.366 6.703 6.949 6.619 6.471 6.758 7.200 7.544 7.300 7.448 7.785 8.018 8.023 7.931 8.013 8.040 7.800 7.505 7.487 7.451 7.310 7.179 7.168 7.306 7.441 7.524 7.658 7.834 7.897 7.725 7.407 7.200 7.215 7.530 7.806 7.744 7.455 7.329 7.328 7.420 7.411 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.458 7.543 7.429 7.398 7.509 7.450 7.431 7.665 7.707 7.454 7.369 7.377 7.404 7.408 7.398 7.404 7.434 7.517 7.657 7.815 7.925 7.698 7.424 7.429 7.449 7.416 6.907 6.830 6.792 6.288 6.429 7.001 7.433 7.620 7.428 7.379 7.413 7.618 7.683 7.588 7.527 7.573 7.496 7.308 7.227 7.198 7.121 7.106 7.210 7.347 7.450 7.522 7.642 7.843 7.855 7.677 7.427 7.276 7.294 7.389 7.376 7.268 7.062 6.999 7.066 7.180 7.321 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.741 7.680 7.398 7.693 7.663 7.534 7.594 7.666 7.662 7.448 7.363 7.344 7.356 7.372 7.375 7.379 7.400 7.477 7.623 7.761 7.801 7.780 7.660 7.639 7.806 7.774 7.131 6.744 6.614 6.444 6.876 7.123 7.202 7.416 7.577 7.525 7.550 7.603 7.441 7.243 7.256 7.330 7.328 7.171 7.197 7.196 7.187 7.215 7.445 7.634 7.674 7.666 7.715 7.915 7.840 7.673 7.495 7.408 7.403 7.372 7.307 7.186 6.932 6.778 6.831 7.012 7.227 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.788 7.713 7.535 7.440 7.415 7.733 7.546 7.514 7.513 7.515 7.452 7.385 7.366 7.382 7.378 7.372 7.360 7.367 7.401 7.398 7.529 7.592 7.557 7.572 7.446 7.486 7.539 7.196 7.202 7.236 7.029 7.172 7.415 7.661 7.715 7.720 7.625 7.597 7.429 7.235 7.116 7.177 7.173 7.161 7.209 7.394 7.264 7.266 7.294 7.467 7.598 7.523 7.504 7.596 7.801 7.738 7.621 7.514 7.480 7.499 7.398 7.398 7.317 7.293 6.947 6.969 7.139 7.316 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.556 7.506 7.501 7.499 7.461 7.314 7.365 7.403 7.411 7.425 7.398 7.382 7.388 7.394 7.397 7.390 7.398 7.398 7.398 7.398 7.476 7.442 7.394 7.299 7.208 7.173 7.100 7.139 7.538 7.291 7.309 7.503 7.559 7.628 7.600 7.522 7.441 7.299 7.329 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.363 7.336 7.350 7.389 7.385 7.414 7.464 7.509 7.616 7.520 7.484 7.456 7.398 7.429 7.484 7.477 7.398 7.398 7.398 7.326 7.400 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.523 7.520 7.516 7.436 7.311 7.240 7.324 7.373 7.411 7.398 7.398 7.563 7.555 7.398 7.398 7.398 7.333 7.398 7.398 7.398 7.398 7.398 7.244 7.168 7.109 7.219 7.459 7.500 7.523 7.623 7.616 7.638 7.472 7.611 7.588 7.547 7.446 7.354 7.377 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.385 7.359 7.332 7.387 7.398 7.398 7.398 7.446 7.398 7.398 7.398 7.398 7.398 7.472 7.497 7.516 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.521 7.469 7.330 7.284 7.387 7.493 7.658 7.648 7.654 7.659 7.542 7.398 7.398 7.398 7.276 7.274 7.398 7.398 7.398 7.398 7.301 7.216 7.236 7.365 7.332 7.385 7.436 7.593 7.749 7.692 7.467 7.618 7.719 7.701 7.515 7.403 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.388 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.421 7.465 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.411 7.309 7.329 7.476 7.734 7.950 7.985 7.686 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.331 7.322 7.285 7.420 7.490 7.508 7.649 7.673 7.481 7.512 7.677 7.683 7.346 7.317 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.537 8.064 8.128 7.952 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.288 7.327 7.322 7.414 7.596 7.606 7.382 7.354 7.467 7.394 7.160 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 8.036 7.935 7.779 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.327 7.248 7.229 7.347 7.491 7.456 7.223 7.150 7.239 7.189 7.154 7.266 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.811 7.734 7.626 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.476 7.382 7.140 6.984 7.036 7.104 7.196 7.340 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.494 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.472 7.372 7.174 6.980 6.948 7.087 7.264 7.375 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.419 7.271 7.098 7.043 7.171 7.348 7.403 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.397 7.203 7.182 7.337 7.477 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.402 7.525 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 7.398 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.416 7.195 7.036 7.052 7.502 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.612 7.267 7.125 6.718 6.584 6.723 6.973 7.255 7.466 7.554 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.206 6.877 6.592 6.415 6.670 6.800 7.002 7.346 7.578 7.617 7.534 7.531 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.187 6.503 6.650 6.985 7.153 7.050 7.122 7.436 7.700 7.776 7.696 7.720 7.707 7.713 7.685 7.659 7.638 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 6.773 6.716 7.148 7.618 7.471 7.146 7.119 7.345 7.556 7.766 7.793 7.740 7.708 7.812 7.801 7.732 7.651 7.585 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.548 7.356 7.037 6.943 7.309 7.678 7.443 7.187 7.112 7.321 7.578 7.967 7.922 7.652 7.624 7.785 7.871 7.869 7.678 7.618 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.555 7.499 7.347 7.181 7.162 7.471 7.665 7.498 7.175 7.100 7.392 7.705 7.970 8.015 7.705 7.615 7.673 7.811 8.102 7.822 7.706 7.742 7.892 7.919 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.578 7.566 7.556 7.556 7.518 7.721 7.746 7.710 7.349 7.206 7.515 7.903 7.983 7.886 7.872 7.727 7.431 7.507 7.842 7.819 7.736 7.748 7.935 7.968 7.953 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.606 7.692 7.805 7.717 7.768 7.547 7.407 7.570 7.753 7.818 7.798 7.873 7.667 7.141 7.143 7.491 7.717 7.700 7.620 7.929 8.001 7.960 7.580 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.771 7.855 7.778 7.758 8.064 8.166 7.723 7.599 7.411 7.244 7.538 7.664 7.407 6.982 6.929 7.182 7.616 7.614 7.373 7.577 7.904 7.866 7.707 7.547 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 8.103 8.050 7.969 7.993 8.319 8.399 7.789 7.694 7.394 6.971 7.027 7.219 7.252 7.055 7.118 7.283 7.602 7.595 7.241 7.258 7.537 7.734 7.640 7.496 7.435 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 8.215 8.181 8.193 8.203 8.306 8.264 8.035 7.469 7.357 7.114 6.844 6.759 6.938 7.391 7.442 7.513 7.572 7.672 7.495 7.197 7.132 7.386 7.636 7.707 7.534 7.393 7.262 7.556 7.547 7.551 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 8.405 8.222 8.164 8.293 8.248 8.268 8.002 7.553 7.009 6.916 6.893 6.753 6.604 6.802 7.326 7.609 7.834 7.686 7.656 7.386 7.054 7.057 7.438 7.774 7.839 7.714 7.547 7.329 7.278 7.533 7.459 7.372 7.265 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 8.307 8.257 8.089 8.106 8.271 8.193 8.035 7.687 7.221 6.919 7.045 6.988 6.706 6.512 6.662 7.188 7.648 7.904 7.698 7.669 7.417 7.071 7.145 7.590 7.946 7.866 7.781 7.767 7.632 7.522 7.610 7.571 7.369 7.138 7.158 7.439 7.512 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 8.099 7.932 7.845 7.958 8.103 8.092 7.996 7.748 7.533 7.376 7.257 6.975 6.519 6.353 6.787 7.616 7.844 7.603 7.392 7.582 7.405 7.244 7.538 7.839 7.953 7.922 7.882 7.914 7.881 7.762 7.621 7.459 7.212 7.076 7.099 7.236 7.303 7.521 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.529 7.713 7.734 7.810 7.844 7.856 7.939 7.899 7.852 7.595 7.252 6.810 6.428 6.435 6.977 7.842 7.717 7.224 7.100 7.488 7.605 7.444 7.631 7.980 8.130 8.044 7.899 7.829 7.768 7.659 7.482 7.317 7.216 7.321 7.164 7.330 7.389 7.464 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.597 7.726 7.746 7.712 7.741 7.775 7.666 7.677 7.698 7.747 7.535 7.426 6.979 6.453 6.374 6.863 7.593 7.805 7.454 7.254 7.461 7.873 8.165 7.964 7.954 8.056 7.909 7.736 7.646 7.638 7.530 7.452 7.419 7.447 7.556 7.477 7.473 7.519 7.521 7.517 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.591 7.770 7.751 7.777 7.926 7.867 7.591 7.410 7.380 7.450 7.498 7.771 7.406 6.722 6.508 6.800 7.289 7.922 8.068 7.756 7.825 8.007 8.069 8.122 8.272 8.208 7.927 7.748 7.606 7.595 7.627 7.536 7.474 7.556 7.525 7.517 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.616 7.756 7.734 7.763 7.829 7.730 7.519 7.361 7.346 7.389 7.506 7.796 7.367 6.837 6.795 6.965 7.152 7.741 7.907 7.518 7.512 7.869 8.144 8.022 8.095 8.098 8.013 7.929 7.752 7.619 7.618 7.679 7.513 7.556 7.570 7.775 7.731 7.645 7.581 7.527 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.651 7.638 7.679 7.690 7.699 7.720 7.694 7.596 7.500 7.542 7.555 7.475 7.587 7.222 6.747 6.655 6.663 6.921 7.498 8.088 7.592 7.293 7.457 7.541 7.618 7.793 7.694 7.617 7.762 7.978 7.806 7.653 7.694 7.638 7.553 7.512 7.571 7.677 7.660 7.570 7.512 7.530 7.574 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.631 7.639 7.658 7.810 7.808 7.747 7.659 7.584 7.505 7.414 7.405 7.468 7.499 7.241 6.847 6.606 6.436 6.855 7.603 8.222 7.795 7.470 7.521 7.573 7.676 7.779 7.661 7.692 7.958 8.241 8.163 7.861 7.793 7.764 7.728 7.706 7.659 7.624 7.608 7.561 7.582 7.602 7.663 7.721 7.556 7.556 7.564 7.579 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.631 7.735 7.786 7.774 7.765 7.766 7.806 7.722 7.498 7.512 7.596 7.435 7.209 7.185 6.754 6.400 6.840 7.484 7.923 7.831 7.183 7.460 7.622 7.750 7.957 8.050 8.117 8.153 8.207 8.226 7.980 7.895 7.883 7.943 7.941 7.835 7.638 7.554 7.617 7.670 7.670 7.698 7.747 7.670 7.545 7.463 7.494 7.549 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.685 7.655 7.667 7.651 7.625 7.617 7.730 7.815 7.644 7.530 7.527 7.561 7.548 7.647 7.024 6.500 6.672 7.240 7.866 7.747 7.126 7.594 7.888 7.654 7.607 7.911 8.149 8.133 7.911 7.850 7.912 7.996 8.020 8.062 8.095 7.830 7.552 7.519 7.669 7.784 7.746 7.692 7.644 7.596 7.437 7.347 7.373 7.514 7.575 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.711 7.873 7.826 7.731 7.645 7.607 7.540 7.487 7.501 7.425 7.329 7.321 7.429 7.340 7.201 6.929 6.730 6.753 6.943 7.407 7.890 7.740 7.771 8.175 7.992 7.636 7.698 7.937 8.031 7.830 7.721 7.987 8.335 8.307 8.110 7.932 7.727 7.579 7.564 7.726 7.881 7.857 7.736 7.656 7.619 7.541 7.482 7.479 7.559 7.738 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.431 7.609 7.809 7.901 7.869 7.747 7.669 7.547 7.327 7.155 7.209 7.207 7.082 7.129 6.944 6.933 6.690 6.594 6.759 7.001 7.393 8.020 8.148 7.643 7.841 7.807 7.462 7.528 7.712 7.946 7.929 7.831 8.153 8.536 8.416 8.098 7.785 7.625 7.631 7.654 7.883 8.074 8.119 8.058 7.976 7.901 7.849 7.750 7.663 7.613 7.714 7.688 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.410 7.518 7.633 7.683 7.652 7.546 7.457 7.363 7.100 6.961 7.084 7.142 6.990 6.894 6.729 6.915 6.810 6.375 6.502 7.134 7.719 8.068 8.267 7.758 7.827 7.893 7.507 7.527 7.858 8.106 7.844 7.793 8.001 8.309 8.385 8.070 7.701 7.543 7.598 7.781 8.170 8.440 8.360 8.231 8.301 8.264 8.210 8.141 7.896 7.726 7.716 7.749 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.473 7.504 7.601 7.659 7.524 7.442 7.357 7.191 6.929 6.889 7.132 7.292 7.294 7.141 6.983 6.953 6.799 6.457 6.629 6.967 7.294 7.709 8.313 8.182 7.898 7.771 7.648 7.853 8.179 8.114 7.857 7.795 7.909 8.226 8.323 8.206 7.830 7.519 7.734 7.895 7.994 8.209 8.282 8.029 7.833 7.954 8.212 8.350 8.110 7.819 7.727 7.719 7.603 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.472 7.556 7.556 7.667 7.661 7.564 7.413 7.172 6.926 6.929 7.149 7.356 7.435 7.418 7.314 7.152 6.800 6.451 6.472 6.567 7.128 7.553 7.736 8.018 7.928 7.551 7.401 7.632 7.965 7.592 7.447 7.742 8.080 8.111 8.042 7.971 7.634 7.347 7.675 8.044 8.087 8.004 8.004 7.967 7.843 7.772 8.001 8.238 8.021 7.792 7.667 7.618 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.425 7.424 7.556 7.766 7.739 7.677 7.501 7.236 7.042 7.001 7.141 7.384 7.538 7.472 7.380 7.351 6.990 6.581 6.419 6.584 7.086 7.540 7.879 7.842 7.476 7.698 7.731 7.668 7.732 7.573 7.808 8.105 8.225 7.928 7.785 7.693 7.529 7.315 7.358 7.524 7.567 7.620 7.669 7.586 7.397 7.300 7.473 7.715 7.662 7.552 7.468 7.431 7.570 7.556 7.597 7.745 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.465 7.244 7.556 7.704 7.750 7.767 7.675 7.557 7.421 7.223 7.165 7.294 7.509 7.501 7.434 7.357 7.192 6.983 6.483 6.340 6.818 7.670 8.265 7.912 7.392 7.666 8.034 8.147 7.879 7.531 7.797 8.113 7.987 7.482 7.302 7.253 7.183 7.156 7.278 7.346 7.319 7.275 7.282 7.276 7.260 7.171 7.240 7.475 7.500 7.384 7.266 7.193 7.245 7.417 7.613 7.742 7.804 7.673 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.575 7.556 7.556 7.556 7.547 7.338 7.556 7.645 7.665 7.556 7.773 7.773 7.688 7.570 7.556 7.363 7.504 7.594 7.447 7.364 7.450 7.228 6.421 6.190 6.543 7.481 8.104 7.949 7.550 7.578 7.870 7.913 7.666 7.540 7.974 8.403 7.997 7.200 6.946 6.850 6.921 7.012 7.044 7.136 7.349 7.420 7.363 7.345 7.409 7.471 7.334 7.164 7.133 7.196 7.200 7.057 7.091 7.248 7.380 7.553 7.726 7.707 7.612 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.560 7.575 7.556 7.556 7.556 7.556 7.516 7.590 7.623 7.556 7.556 7.891 7.556 7.651 7.556 7.556 7.556 7.496 7.626 7.408 7.140 7.200 7.129 6.596 6.309 6.612 7.490 7.912 7.848 7.145 7.135 7.599 8.056 7.661 7.103 7.354 8.234 8.061 7.408 7.076 7.085 7.267 7.335 7.243 7.335 7.569 7.770 7.792 7.688 7.669 7.799 7.795 7.629 7.543 7.568 7.484 7.230 7.146 7.079 7.133 7.283 7.499 7.596 7.579 7.546 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.567 7.560 7.556 7.556 7.556 7.556 7.602 7.669 7.556 7.556 7.556 7.556 7.556 7.659 7.717 7.818 7.556 7.556 7.704 7.588 7.396 7.208 7.175 6.843 6.375 6.475 7.014 7.727 8.169 7.439 7.374 7.570 7.601 7.181 7.272 7.535 7.736 7.558 7.339 7.258 7.484 7.693 7.747 7.781 7.670 7.631 7.949 8.224 8.129 7.875 7.619 7.583 7.653 7.791 7.751 7.492 7.424 7.322 7.192 7.187 7.285 7.498 7.608 7.609 7.611 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.671 7.638 7.729 7.751 7.556 7.556 7.556 7.556 7.556 7.556 7.936 7.940 7.873 7.692 7.742 7.706 7.493 7.326 7.102 6.402 6.240 6.489 7.110 8.200 8.169 7.799 7.463 7.268 7.026 7.273 7.526 7.411 7.333 7.499 7.969 8.184 8.162 8.211 8.010 7.631 7.452 7.588 7.674 7.641 7.631 7.655 7.795 7.940 8.054 7.773 7.525 7.395 7.229 7.203 7.374 7.608 7.800 7.875 7.867 7.840 7.871 7.772 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.690 7.649 7.556 7.798 7.884 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.604 7.843 7.793 7.712 7.735 7.660 7.373 7.387 6.880 6.399 6.463 6.711 7.831 7.802 7.253 6.885 7.064 7.145 7.434 7.758 7.555 7.464 7.706 7.951 7.879 7.967 8.180 8.220 7.948 7.700 7.918 8.151 8.152 7.802 7.582 7.683 7.961 8.163 8.010 7.838 7.544 7.321 7.393 7.582 7.858 7.926 7.908 7.832 7.812 7.857 7.835 7.743 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.807 7.767 7.556 7.705 7.776 7.930 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.641 7.640 7.667 7.454 7.442 7.308 6.830 6.734 6.641 7.330 7.379 6.833 6.530 6.874 7.312 7.853 8.080 7.808 7.797 7.869 7.834 7.826 7.895 8.027 8.182 8.275 8.465 8.461 8.216 7.943 7.609 7.387 7.371 7.530 7.761 7.893 7.855 7.616 7.396 7.353 7.487 7.933 8.032 7.821 7.630 7.579 7.610 7.655 7.561 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.886 7.901 7.556 7.673 7.719 7.556 8.037 8.062 7.691 7.556 7.532 7.530 7.530 7.519 7.518 7.556 7.556 7.556 7.709 7.794 7.687 7.510 7.493 7.398 7.307 6.986 7.347 7.139 6.515 6.482 7.320 7.832 7.969 7.797 7.738 7.883 7.961 7.875 7.870 7.898 7.929 8.010 8.059 8.010 7.906 7.703 7.559 7.467 7.436 7.492 7.552 7.895 7.956 7.861 7.687 7.525 7.383 7.379 7.477 7.468 7.380 7.302 7.262 7.326 7.415 7.517 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.926 7.936 7.860 7.556 7.617 7.766 7.990 8.019 7.900 7.687 7.550 7.508 7.522 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.709 7.655 7.462 7.408 7.644 7.575 7.044 6.782 6.778 6.745 7.288 7.870 7.815 7.631 7.584 7.709 7.897 8.035 7.939 7.770 7.646 7.628 7.636 7.477 7.508 7.489 7.429 7.468 7.573 7.710 7.806 7.918 8.057 8.103 7.936 7.757 7.595 7.437 7.380 7.357 7.323 7.214 7.084 6.957 7.004 7.227 7.406 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.623 7.673 7.669 7.603 7.608 7.709 7.774 7.734 7.674 7.597 7.540 7.564 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.532 7.439 7.339 7.391 7.462 7.188 7.136 7.205 7.219 7.534 7.933 7.857 7.693 7.597 7.632 7.765 7.730 7.634 7.536 7.489 7.452 7.556 7.556 7.556 7.363 7.299 7.344 7.545 7.650 7.556 7.705 7.868 8.007 7.917 7.675 7.556 7.556 7.556 7.556 7.417 7.330 7.190 7.090 7.127 7.299 7.469 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.631 7.650 7.628 7.602 7.556 7.574 7.586 7.533 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.581 7.529 7.399 7.310 7.252 7.187 7.028 6.989 7.392 7.531 7.501 7.608 7.464 7.528 7.490 7.535 7.598 7.466 7.386 7.410 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.489 7.556 7.556 7.645 7.779 7.944 7.838 7.579 7.556 7.556 7.556 7.565 7.552 7.556 7.556 7.556 7.408 7.461 7.546 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.578 7.669 7.651 7.551 7.446 7.505 7.542 7.542 7.742 7.556 7.692 7.556 7.556 7.556 7.556 7.556 7.443 7.556 7.556 7.556 7.556 7.356 7.299 7.227 7.255 7.356 7.507 7.499 7.570 7.537 7.710 7.426 7.569 7.647 7.735 7.645 7.453 7.375 7.427 7.556 7.556 7.556 7.556 7.556 7.556 7.554 7.523 7.465 7.427 7.556 7.611 7.778 7.945 7.600 7.556 7.556 7.556 7.628 7.637 7.648 7.556 7.556 7.556 7.556 7.556 7.555 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.922 8.240 8.255 7.705 7.556 7.556 7.556 7.556 7.556 7.431 7.530 7.556 7.556 7.556 7.448 7.379 7.373 7.453 7.406 7.511 7.507 7.623 7.771 7.843 7.547 7.664 7.834 7.816 7.594 7.422 7.396 7.521 7.556 7.556 7.556 7.556 7.556 7.556 7.544 7.540 7.544 7.423 7.528 7.599 7.736 7.956 7.556 7.556 7.556 7.603 7.630 7.662 7.630 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.757 8.322 8.351 8.183 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.502 7.502 7.465 7.575 7.661 7.649 7.781 7.785 7.550 7.547 7.556 7.668 7.429 7.303 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.569 7.542 7.527 7.541 7.577 7.624 7.703 7.556 7.556 7.563 7.588 7.647 7.629 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 8.281 8.135 7.888 7.696 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.445 7.460 7.457 7.508 7.660 7.612 7.409 7.375 7.420 7.433 7.319 7.384 7.440 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.574 7.574 7.570 7.572 7.591 7.623 7.630 7.556 7.556 7.571 7.587 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.750 7.893 7.766 7.707 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.487 7.405 7.381 7.457 7.591 7.511 7.320 7.222 7.265 7.331 7.421 7.401 7.494 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.568 7.585 7.588 7.617 7.634 7.617 7.587 7.578 7.570 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.732 7.678 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.597 7.475 7.312 7.176 7.147 7.213 7.556 7.507 7.544 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.568 7.623 7.617 7.646 7.660 7.630 7.597 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.664 7.551 7.413 7.244 7.157 7.228 7.399 7.525 7.558 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.608 7.625 7.641 7.667 7.644 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.583 7.486 7.359 7.285 7.339 7.494 7.605 7.561 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.566 7.436 7.390 7.473 7.626 7.697 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.698 7.559 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 7.556 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.729 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.632 7.395 7.219 7.134 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.715 7.635 7.336 7.061 6.907 6.932 7.567 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.668 7.209 7.114 6.919 6.927 7.022 7.714 7.714 7.714 7.714 7.586 7.599 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.145 7.518 7.606 7.278 7.200 7.489 7.702 7.854 7.830 7.647 7.665 7.714 7.715 7.814 7.798 7.781 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.474 7.385 8.045 8.239 7.591 7.239 7.413 7.492 7.648 7.712 7.643 7.662 7.731 7.863 7.853 7.816 7.765 7.751 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.679 7.600 7.572 7.563 7.569 8.095 8.217 7.725 7.298 7.191 7.455 7.609 7.689 7.606 7.567 7.707 7.806 7.873 7.867 7.774 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.710 7.682 7.633 7.573 7.545 7.714 8.163 8.284 7.964 7.429 7.216 7.420 7.777 7.820 7.836 7.681 7.705 7.678 7.827 8.072 7.860 7.780 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.729 8.011 8.307 8.353 8.137 7.642 7.337 7.514 7.924 7.919 7.806 7.719 7.650 7.436 7.621 8.052 7.957 7.826 7.761 7.900 8.030 8.092 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.831 8.273 8.419 8.254 8.085 7.743 7.436 7.616 7.928 7.950 7.832 7.662 7.504 7.212 7.347 7.652 7.823 7.817 7.704 7.797 7.979 8.139 8.134 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 8.366 8.455 8.377 8.304 8.299 8.186 7.727 7.716 7.655 7.530 7.799 7.708 7.349 7.082 7.190 7.385 7.648 7.735 7.575 7.661 7.993 8.126 8.104 7.977 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.762 8.547 8.492 8.388 8.412 8.490 8.531 8.167 8.041 7.732 7.359 7.468 7.633 7.491 7.200 7.239 7.350 7.505 7.630 7.406 7.414 7.759 8.157 8.101 7.967 7.843 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 8.315 8.405 8.470 8.524 8.618 8.371 8.241 7.907 7.806 7.596 7.402 7.292 7.359 7.531 7.425 7.391 7.481 7.574 7.559 7.302 7.257 7.570 7.954 8.138 7.960 7.764 7.605 7.563 7.553 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 8.102 8.259 8.484 8.556 8.597 8.159 7.750 7.499 7.483 7.371 7.203 7.052 7.178 7.420 7.585 7.693 7.564 7.620 7.577 7.266 7.203 7.560 7.948 8.162 8.121 7.887 7.689 7.570 7.520 7.550 7.593 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 8.224 8.408 8.358 8.330 7.971 7.556 7.472 7.580 7.353 7.027 6.898 7.097 7.501 7.895 8.168 7.942 7.745 7.626 7.296 7.220 7.576 8.100 8.192 8.196 8.135 7.946 7.740 7.664 7.614 7.523 7.485 7.480 7.639 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 8.160 8.167 8.070 8.192 8.089 7.698 7.620 7.533 7.223 6.817 6.727 7.145 7.872 8.099 7.940 7.836 7.809 7.653 7.481 7.465 7.773 8.158 8.326 8.296 8.266 8.189 7.938 7.673 7.501 7.348 7.293 7.278 7.383 7.492 7.676 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.838 7.858 7.926 7.863 7.842 8.120 8.228 7.824 7.685 7.571 7.172 6.796 6.820 7.294 7.995 7.992 7.537 7.385 7.642 7.714 7.571 7.710 8.109 8.490 8.534 8.332 8.201 8.070 7.869 7.621 7.399 7.378 7.435 7.370 7.479 7.592 7.622 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.790 7.844 7.844 7.832 7.781 7.757 7.977 8.150 7.856 7.741 7.644 7.296 6.917 6.814 7.214 7.869 7.995 7.524 7.247 7.401 7.707 7.861 7.785 7.939 8.208 8.334 8.204 7.995 7.891 7.794 7.617 7.500 7.620 7.734 7.565 7.629 7.652 7.654 7.649 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.751 7.853 7.855 7.855 7.778 7.661 7.694 7.816 7.777 7.840 7.872 7.440 6.975 6.840 7.120 7.649 8.108 8.004 7.614 7.663 7.747 7.775 7.916 8.079 8.073 8.031 8.050 7.889 7.765 7.731 7.645 7.652 7.801 7.947 7.768 7.684 7.703 7.703 7.682 7.674 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.782 7.795 7.796 7.771 7.739 7.643 7.579 7.570 7.593 7.678 7.758 7.344 6.937 6.898 7.155 7.468 7.929 8.083 7.869 7.797 7.869 7.877 7.846 7.981 8.023 8.116 8.185 7.916 7.680 7.643 7.717 7.760 7.709 7.833 7.822 7.775 7.808 7.751 7.747 7.759 7.723 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.758 7.745 7.751 7.757 7.727 7.684 7.645 7.622 7.589 7.513 7.546 7.526 7.242 7.044 6.931 6.950 7.333 7.775 7.998 7.822 7.599 7.596 7.591 7.635 7.743 7.739 7.769 8.058 8.124 7.867 7.664 7.782 7.840 7.747 7.691 7.675 7.720 7.838 7.824 7.776 7.847 7.930 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.738 7.740 7.714 7.784 7.700 7.628 7.610 7.590 7.534 7.515 7.588 7.549 7.313 7.179 6.985 6.847 7.253 7.934 8.324 7.944 7.643 7.655 7.584 7.561 7.651 7.631 7.658 7.867 8.001 7.954 7.926 8.026 8.085 7.993 7.866 7.758 7.716 7.850 7.899 7.895 7.904 8.068 8.254 8.263 8.128 7.925 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.841 7.776 7.719 7.686 7.738 7.736 7.643 7.697 7.716 7.647 7.483 7.375 6.949 6.703 7.048 7.685 7.959 7.806 7.478 7.733 7.852 7.768 7.791 7.772 7.737 7.859 7.911 7.868 7.970 8.197 8.285 8.356 8.139 7.926 7.749 7.841 7.958 8.026 8.042 8.114 8.195 8.063 7.832 7.729 7.637 7.709 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.763 7.846 7.824 7.732 7.632 7.630 7.693 7.695 7.783 7.774 7.897 7.907 7.580 6.947 6.643 6.883 7.559 7.875 7.495 7.411 7.842 8.147 7.789 7.563 7.602 7.798 7.955 7.870 7.730 7.852 8.076 8.141 8.217 8.245 7.952 7.718 7.867 8.068 8.206 8.195 8.089 7.945 7.719 7.448 7.358 7.406 7.678 7.837 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.908 7.896 7.829 7.711 7.615 7.611 7.642 7.688 7.658 7.772 7.694 7.289 6.796 6.710 6.882 7.271 7.583 7.535 7.584 7.848 8.381 8.295 7.835 7.591 7.690 7.867 7.880 7.823 7.934 8.215 8.288 8.147 7.982 7.800 7.722 7.866 8.108 8.405 8.335 8.047 7.780 7.606 7.496 7.478 7.562 7.746 7.966 7.917 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.690 7.695 7.854 7.956 8.030 8.075 8.029 7.891 7.702 7.517 7.458 7.428 7.430 7.586 7.435 7.071 6.602 6.525 6.869 7.320 7.667 7.863 7.732 7.736 7.931 8.018 7.885 7.679 7.623 7.707 7.713 7.752 7.963 8.232 8.354 8.177 8.059 7.974 7.996 8.065 8.348 8.526 8.423 8.211 7.964 7.860 7.883 7.838 7.802 7.804 7.912 7.962 7.794 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.667 7.667 7.752 7.798 7.869 7.930 7.898 7.798 7.662 7.526 7.496 7.419 7.362 7.443 7.213 7.001 6.699 6.522 6.795 7.474 7.968 7.955 7.875 7.667 7.695 7.735 7.690 7.766 7.910 7.801 7.538 7.540 7.696 7.803 7.850 7.846 7.789 7.818 7.953 8.176 8.464 8.392 8.178 8.088 8.266 8.286 8.348 8.287 8.034 7.886 7.808 7.927 7.955 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.817 7.739 7.743 7.709 7.598 7.456 7.456 7.593 7.605 7.528 7.483 7.342 7.135 6.850 6.717 7.009 7.391 7.629 7.505 8.061 7.852 7.785 7.577 7.769 8.083 8.353 8.138 7.864 7.769 7.811 7.945 7.966 7.962 7.785 7.752 7.997 8.131 8.175 8.230 8.278 8.229 8.332 8.380 8.464 8.565 8.269 7.940 7.816 7.814 7.928 7.987 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.721 7.504 7.409 7.472 7.662 7.685 7.528 7.499 7.497 7.402 6.896 6.618 6.770 7.020 7.461 7.599 8.112 8.281 8.074 7.581 7.623 8.089 8.379 7.756 7.526 7.799 8.055 8.081 8.118 8.193 8.024 7.925 8.078 8.153 8.129 8.154 8.355 8.465 8.362 8.262 8.186 8.242 8.169 7.963 7.797 7.740 7.817 7.954 8.041 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.499 7.560 7.694 7.815 7.646 7.481 7.433 7.500 7.053 6.724 6.707 6.965 7.476 7.784 7.947 7.899 7.565 7.722 7.921 8.136 8.267 7.663 7.428 7.716 8.008 7.958 7.946 7.940 7.931 7.819 7.719 7.699 7.655 7.656 7.733 7.665 7.473 7.549 7.975 8.203 8.049 7.836 7.682 7.611 7.674 7.814 7.952 7.982 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.740 7.714 7.714 7.714 7.714 7.714 7.615 7.833 7.821 7.637 7.413 7.343 7.213 6.950 6.757 6.765 7.295 7.851 7.949 7.870 7.509 7.717 8.213 8.194 8.030 7.566 7.504 7.869 8.075 7.963 7.863 7.824 7.684 7.411 7.317 7.458 7.586 7.605 7.601 7.533 7.375 7.351 7.594 8.030 7.931 7.686 7.491 7.382 7.470 7.648 7.818 7.927 7.947 7.855 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.835 7.835 7.714 7.714 7.714 7.714 7.714 7.714 7.771 7.817 7.702 7.483 7.362 7.326 7.136 6.776 6.638 7.039 7.702 7.953 7.879 7.572 7.750 8.212 8.041 7.842 7.515 7.693 8.256 8.141 7.572 7.361 7.396 7.485 7.414 7.318 7.406 7.512 7.489 7.516 7.511 7.544 7.468 7.411 7.595 7.704 7.640 7.395 7.237 7.299 7.479 7.658 7.810 7.880 7.860 7.776 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.756 7.903 7.863 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.773 7.871 7.716 7.526 7.471 7.436 6.974 6.601 6.967 7.948 8.282 7.867 7.361 7.409 7.657 8.002 8.040 7.544 7.715 8.315 7.783 7.097 7.106 7.318 7.466 7.456 7.559 7.944 7.921 7.715 7.652 7.685 7.770 7.718 7.672 7.653 7.561 7.532 7.370 7.227 7.250 7.354 7.522 7.705 7.789 7.779 7.726 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.935 7.966 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.859 8.098 7.988 7.749 7.632 7.739 7.271 6.664 6.780 7.568 8.256 8.191 7.454 7.213 7.428 7.792 7.524 7.392 7.748 7.685 7.276 6.987 7.022 7.251 7.410 7.538 7.715 7.976 8.081 8.116 8.070 8.032 7.868 7.609 7.600 7.670 7.702 7.583 7.362 7.287 7.308 7.380 7.466 7.649 7.803 7.819 7.763 7.770 7.815 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.881 7.906 7.857 7.714 7.767 7.714 7.714 7.714 7.714 7.714 7.840 7.949 8.114 8.136 8.055 7.889 7.649 7.551 7.322 6.795 6.630 7.039 7.855 8.562 7.803 7.474 7.649 7.741 7.511 7.639 7.890 7.695 7.369 7.294 7.444 7.565 7.618 7.777 7.913 7.964 7.932 7.910 7.842 7.774 7.769 7.836 7.957 7.962 7.953 7.712 7.524 7.550 7.574 7.547 7.550 7.727 7.876 7.965 8.021 8.029 8.099 8.129 7.992 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.918 7.909 7.714 8.054 8.076 7.796 7.714 7.714 7.714 7.970 8.006 7.942 7.842 7.714 7.714 7.944 7.882 7.605 7.350 7.286 7.007 6.665 6.971 7.662 8.447 7.634 7.305 7.287 7.424 7.462 7.826 8.241 7.955 7.669 7.570 7.567 7.600 7.800 8.104 8.266 8.119 7.908 8.054 8.032 7.865 7.707 7.640 7.723 7.800 7.833 7.809 7.744 7.789 7.832 7.948 7.846 7.814 7.880 7.947 8.025 8.086 8.137 8.153 7.999 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.814 8.045 8.060 8.058 8.032 8.116 7.714 8.435 8.439 8.423 8.266 7.714 7.714 7.714 7.714 7.878 7.823 7.685 7.541 7.348 7.364 7.300 6.987 7.105 7.314 8.028 7.511 7.116 6.961 7.191 7.643 8.032 8.279 8.022 7.791 7.778 7.789 7.674 7.704 7.853 8.133 8.262 8.364 8.390 8.236 8.041 7.761 7.536 7.502 7.564 7.718 7.849 7.761 7.723 7.732 7.874 7.948 7.944 7.873 7.803 7.799 7.827 7.873 7.904 7.742 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 8.153 8.243 7.714 7.714 7.714 8.183 8.405 8.515 8.463 7.714 7.714 7.714 7.714 7.714 7.837 7.824 7.706 7.643 7.573 7.479 7.394 7.371 7.398 7.561 7.391 8.061 7.656 7.224 7.056 7.737 8.365 8.255 8.100 7.836 7.829 7.784 7.687 7.646 7.667 7.770 7.968 8.123 8.273 8.309 8.101 7.887 7.673 7.529 7.535 7.613 7.788 7.840 7.706 7.625 7.564 7.535 7.561 7.571 7.595 7.554 7.531 7.532 7.584 7.662 7.709 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 8.006 7.714 7.768 7.740 7.837 8.082 8.137 7.839 7.714 7.714 7.714 7.714 7.714 7.823 7.826 7.714 7.714 7.714 7.629 7.524 7.369 7.286 7.447 7.621 7.482 7.487 7.436 7.382 7.828 8.155 8.294 8.106 7.916 7.762 7.809 7.839 7.746 7.647 7.605 7.661 7.735 7.780 7.869 7.938 7.880 7.862 7.820 7.782 7.782 7.853 7.941 7.850 7.700 7.612 7.554 7.490 7.442 7.385 7.389 7.356 7.252 7.207 7.280 7.473 7.598 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.769 7.790 7.781 7.764 7.714 7.852 7.849 7.784 7.765 7.831 7.738 8.192 7.993 7.834 7.714 7.714 7.714 7.714 7.714 7.572 7.441 7.383 7.355 7.445 7.517 7.497 7.559 7.552 7.968 8.091 7.943 7.761 7.579 7.478 7.532 7.537 7.526 7.544 7.637 7.700 7.703 7.613 7.567 7.634 7.714 7.714 7.714 7.799 7.815 7.924 8.007 7.869 7.714 7.714 7.714 7.554 7.490 7.596 7.494 7.457 7.336 7.287 7.291 7.452 7.612 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.755 7.820 7.802 7.759 7.784 7.808 7.875 8.058 8.273 8.376 8.283 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.656 7.502 7.424 7.351 7.309 7.216 7.341 7.567 7.844 7.789 7.714 7.484 7.518 7.468 7.479 7.519 7.443 7.367 7.398 7.481 7.764 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 8.007 8.044 8.071 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.708 7.458 7.480 7.599 7.694 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.734 7.773 7.732 7.682 7.718 7.798 8.019 8.282 8.425 8.357 7.881 7.714 7.714 7.714 7.714 7.608 7.714 7.714 7.714 7.587 7.475 7.401 7.419 7.442 7.665 7.693 7.704 7.603 7.767 7.515 7.586 7.630 7.720 7.677 7.514 7.401 7.439 7.500 7.697 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.788 7.979 8.045 8.125 7.746 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.683 7.720 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.874 8.328 8.448 8.321 8.136 7.714 7.714 7.714 7.714 7.611 7.598 7.714 7.714 7.714 7.650 7.558 7.535 7.587 7.525 7.631 7.772 7.737 7.783 7.841 7.621 7.701 7.798 7.793 7.628 7.455 7.456 7.533 7.575 7.712 7.710 7.724 7.714 7.714 7.714 7.709 7.714 7.640 7.760 7.945 8.052 8.168 7.714 7.714 7.758 7.776 7.791 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 8.042 8.239 8.065 7.927 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.687 7.687 7.661 7.743 7.895 7.787 7.811 7.802 7.621 7.630 7.648 7.707 7.557 7.448 7.528 7.552 7.714 7.714 7.714 7.703 7.707 7.714 7.714 7.844 7.747 7.683 7.815 7.943 8.053 8.164 7.753 7.767 7.786 7.815 7.800 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.951 7.881 7.841 7.844 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.619 7.620 7.632 7.614 7.717 7.685 7.539 7.481 7.486 7.579 7.533 7.617 7.541 7.634 7.714 7.714 7.714 7.714 7.714 7.702 7.725 7.854 7.910 7.886 7.972 7.977 8.005 8.052 7.862 7.801 7.815 7.851 7.750 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.869 7.827 7.811 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.571 7.561 7.581 7.683 7.595 7.494 7.394 7.373 7.464 7.620 7.682 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.715 7.856 8.048 8.136 8.076 8.054 8.067 7.744 7.818 7.830 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.807 7.751 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.732 7.629 7.539 7.415 7.327 7.380 7.479 7.657 7.713 7.724 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.788 7.970 8.128 8.182 8.154 8.092 7.919 7.810 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.808 7.717 7.637 7.494 7.402 7.406 7.516 7.659 7.722 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.797 7.944 8.001 7.974 8.195 8.175 7.805 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.764 7.715 7.596 7.505 7.511 7.626 7.746 7.791 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.745 7.714 7.714 7.772 7.770 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.658 7.589 7.634 7.746 7.839 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.842 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 7.714 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.606 7.666 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.731 7.424 7.235 7.161 7.349 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.789 7.405 7.275 6.979 7.014 7.330 7.871 7.871 7.871 7.871 7.692 7.661 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.426 7.552 7.347 7.160 7.168 7.440 7.871 7.871 7.872 7.641 7.656 7.808 7.910 7.957 7.942 7.947 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.869 7.871 7.871 7.871 7.871 7.590 7.752 7.750 7.436 7.260 7.290 7.706 7.871 7.675 7.607 7.696 7.916 8.002 7.930 7.935 7.919 7.916 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.787 7.751 7.761 7.797 7.871 7.792 7.930 7.916 7.728 7.425 7.309 7.575 7.714 7.615 7.533 7.701 8.062 8.060 8.023 7.957 7.883 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.832 7.816 7.798 7.797 7.864 7.984 8.119 8.106 8.020 7.656 7.398 7.444 7.781 7.772 7.756 7.872 8.077 8.013 8.035 8.054 7.875 7.894 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.864 7.868 7.871 7.896 8.148 8.223 8.267 8.220 7.815 7.461 7.467 7.738 7.791 7.733 7.773 7.866 7.778 7.987 8.221 7.976 7.822 7.804 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.868 7.865 7.871 7.871 8.332 8.321 8.323 8.257 7.880 7.482 7.436 7.735 7.794 7.722 7.573 7.586 7.529 7.728 7.938 7.957 7.876 7.751 7.717 7.842 8.064 8.124 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.853 7.855 7.986 8.429 8.379 8.466 8.430 8.222 7.729 7.512 7.647 7.705 7.809 7.676 7.583 7.553 7.584 7.682 7.802 7.906 7.798 7.685 7.788 7.964 8.139 8.215 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.930 7.969 8.393 8.385 8.592 8.581 8.537 8.137 7.935 7.883 7.799 7.784 7.885 7.908 7.769 7.597 7.577 7.686 7.801 7.737 7.635 7.707 7.916 8.042 8.178 8.187 7.912 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 8.084 8.212 8.338 8.418 8.642 8.444 8.374 8.186 8.120 8.096 8.013 7.811 7.719 7.675 7.653 7.508 7.527 7.676 7.773 7.617 7.537 7.663 7.870 8.083 8.123 8.150 8.030 7.918 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 8.026 8.163 8.292 8.422 8.603 8.258 8.044 8.093 8.195 8.020 7.822 7.688 7.681 7.661 7.604 7.528 7.546 7.700 7.857 7.679 7.471 7.619 7.827 8.150 8.294 8.239 8.159 8.015 7.886 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.894 8.110 8.184 8.301 8.422 8.166 8.014 8.246 8.436 7.998 7.545 7.413 7.567 7.776 7.708 7.854 7.878 7.839 7.866 7.742 7.552 7.635 7.915 8.103 8.387 8.434 8.275 8.117 8.001 7.869 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.958 8.078 8.171 8.347 8.286 8.154 8.386 8.286 7.843 7.367 7.189 7.412 7.832 7.765 7.791 7.919 7.960 7.944 7.843 7.674 7.759 7.985 8.179 8.351 8.469 8.394 8.154 7.936 7.770 7.679 7.619 7.705 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.897 7.991 8.012 8.005 8.044 8.251 8.309 8.172 8.342 8.056 7.629 7.319 7.138 7.316 7.700 7.709 7.525 7.531 7.743 7.873 7.804 7.785 7.919 8.109 8.290 8.379 8.476 8.424 8.211 7.944 7.765 7.730 7.779 7.873 7.838 7.874 7.849 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.909 7.976 8.004 7.997 7.980 8.029 8.303 8.227 8.441 8.152 7.760 7.447 7.187 7.267 7.608 7.735 7.489 7.307 7.455 7.688 7.760 7.671 7.787 8.006 8.232 8.385 8.406 8.415 8.261 8.034 7.894 7.933 7.994 7.934 7.931 7.894 7.897 7.847 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.930 7.975 7.987 7.910 7.894 7.808 8.099 8.214 8.349 8.145 7.663 7.317 7.179 7.272 7.611 7.919 7.993 7.667 7.605 7.603 7.796 7.678 7.708 7.769 7.862 8.104 8.246 8.227 8.197 8.071 8.027 8.060 8.087 8.012 7.981 8.015 8.000 7.936 7.863 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.923 7.866 7.922 7.885 7.871 7.871 7.775 7.890 7.981 7.968 7.898 7.556 7.262 7.151 7.202 7.506 7.848 8.121 8.063 7.864 7.816 7.710 7.603 7.821 7.781 7.806 8.008 8.021 7.978 8.004 8.104 8.153 8.162 8.080 8.004 8.023 8.120 8.144 8.080 8.041 7.903 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.922 7.925 7.900 7.871 7.871 7.746 7.767 7.821 7.818 7.701 7.644 7.503 7.451 7.328 7.184 7.373 7.606 7.849 7.960 7.770 7.697 7.704 7.613 7.605 7.634 7.667 7.864 8.090 8.102 7.977 8.183 8.330 8.248 8.120 7.955 7.987 8.236 8.302 8.254 8.207 8.257 8.242 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.856 7.711 7.674 7.661 7.677 7.634 7.654 7.685 7.689 7.425 7.146 7.292 7.669 7.842 7.739 7.594 7.619 7.648 7.631 7.697 7.722 7.701 7.744 7.884 8.066 8.144 8.209 8.423 8.356 8.285 8.148 8.077 8.303 8.390 8.270 8.242 8.438 8.584 8.550 8.389 7.928 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.899 7.897 7.757 7.752 7.718 7.680 7.765 7.780 7.755 7.681 7.578 7.250 7.030 7.225 7.622 7.669 7.569 7.527 7.774 7.830 7.763 7.762 7.762 7.854 7.887 7.855 7.945 8.174 8.314 8.420 8.450 8.255 8.164 8.059 8.168 8.220 8.243 8.283 8.405 8.466 8.290 8.080 7.897 7.859 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.986 7.915 7.802 7.724 7.691 7.676 7.762 7.825 7.939 7.845 7.452 7.064 6.986 7.326 7.852 7.882 7.670 7.665 7.834 7.983 7.861 7.737 7.727 7.891 8.042 7.909 7.818 8.019 8.250 8.248 8.303 8.249 8.072 7.885 7.963 8.093 8.229 8.321 8.263 8.129 7.919 7.697 7.610 7.688 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.959 8.077 8.061 7.979 7.846 7.754 7.742 7.788 7.807 7.866 7.849 7.330 6.850 6.825 7.191 7.677 7.805 7.648 7.632 7.763 7.971 7.987 7.868 7.751 7.781 7.930 7.957 7.863 7.916 8.212 8.415 8.394 8.308 8.067 7.867 7.780 7.822 8.131 8.208 8.130 7.939 7.773 7.661 7.649 7.760 7.896 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.835 7.871 7.979 8.011 8.205 8.230 8.209 8.108 7.939 7.810 7.712 7.695 7.668 7.679 7.290 6.777 6.623 6.989 7.628 7.921 7.684 7.448 7.624 7.715 7.860 7.991 7.904 7.797 7.825 7.838 7.864 7.968 8.154 8.328 8.268 8.135 8.043 8.033 7.972 8.080 8.195 8.116 8.003 7.907 7.900 7.969 7.964 7.951 7.957 8.003 8.017 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.761 7.806 7.875 7.936 8.092 8.220 8.302 8.282 8.187 8.022 7.806 7.735 7.636 7.468 7.201 6.821 6.645 6.915 7.555 7.982 7.830 7.650 7.668 7.669 7.868 8.019 8.119 8.074 7.890 7.687 7.627 7.651 7.717 7.837 7.920 7.977 8.028 8.081 8.248 8.436 8.311 8.011 7.850 8.005 8.219 8.368 8.340 8.161 8.028 7.987 8.026 8.047 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.918 7.850 7.918 8.004 8.113 8.170 8.203 8.220 8.069 7.946 7.788 7.515 7.291 6.937 6.824 7.092 7.553 7.776 7.611 7.811 7.774 7.782 7.831 8.171 8.355 8.306 8.004 7.776 7.712 7.703 7.767 7.794 7.846 7.954 8.150 8.394 8.433 8.285 8.148 8.085 8.174 8.336 8.486 8.573 8.514 8.319 8.113 8.016 8.008 8.051 8.069 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.904 7.930 7.870 7.925 8.004 8.179 8.443 8.388 8.038 7.831 7.571 7.480 7.135 6.821 6.977 7.359 7.657 7.612 8.011 8.214 8.045 7.742 7.932 8.406 8.373 7.814 7.517 7.631 7.735 7.775 7.875 8.004 8.057 8.113 8.216 8.275 8.219 8.039 8.105 8.350 8.682 8.771 8.616 8.420 8.234 8.111 8.039 8.013 8.048 8.074 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 8.027 8.162 8.460 8.540 8.167 7.763 7.461 7.340 7.247 7.045 7.065 7.245 7.544 7.704 7.939 8.104 7.790 7.781 7.903 8.159 8.220 7.708 7.354 7.460 7.761 7.953 8.086 8.143 8.187 8.129 7.983 7.841 7.858 8.023 7.915 7.722 7.743 8.124 8.599 8.523 8.149 7.940 7.920 7.975 8.061 8.085 8.106 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 8.550 8.330 7.849 7.451 7.249 7.298 7.300 7.298 7.215 7.484 7.798 7.997 7.955 7.865 8.147 8.154 8.033 8.000 7.711 7.458 7.573 7.725 7.876 8.142 8.430 8.244 7.774 7.615 7.885 8.220 8.343 8.259 8.082 7.867 7.929 8.285 8.447 8.118 7.807 7.745 7.796 7.959 8.088 8.087 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.913 7.937 7.871 7.871 8.316 8.353 8.034 7.633 7.457 7.540 7.533 7.322 7.091 7.253 7.705 7.834 8.065 7.932 8.272 8.234 8.017 8.001 7.878 7.917 8.194 7.845 7.457 7.398 7.740 8.116 8.057 7.851 7.985 8.092 8.090 8.147 8.191 7.988 7.735 7.753 7.839 7.851 7.739 7.617 7.600 7.769 7.985 8.075 8.057 8.041 8.018 7.912 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 8.232 8.014 7.871 7.871 7.871 7.871 8.254 8.287 7.953 7.735 7.757 7.871 7.648 7.117 7.247 7.938 8.119 8.180 7.776 7.650 7.779 7.889 7.938 7.976 7.980 8.480 8.077 7.551 7.480 7.563 7.774 7.897 8.025 8.055 7.846 7.833 7.975 8.025 7.830 7.689 7.639 7.564 7.452 7.498 7.489 7.477 7.547 7.760 7.913 8.001 7.995 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 8.180 8.301 8.236 7.871 7.871 7.871 7.871 7.871 8.548 8.544 8.294 7.933 7.828 7.997 7.879 7.249 7.169 7.845 8.403 8.293 7.684 7.354 7.525 7.963 7.911 7.925 8.194 8.026 7.618 7.476 7.606 7.647 7.868 7.935 7.866 7.855 7.807 7.859 8.080 8.159 7.922 7.782 7.830 7.812 7.738 7.676 7.522 7.429 7.432 7.654 7.745 7.899 7.854 7.912 7.914 7.901 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 8.262 8.303 8.268 8.243 7.871 7.871 7.871 7.871 8.581 8.584 8.539 8.479 8.282 7.965 7.728 7.683 7.624 7.271 7.144 7.783 8.507 8.325 7.535 7.245 7.591 7.948 7.879 7.992 8.262 8.086 7.692 7.607 7.736 7.814 7.983 8.135 8.123 8.075 8.197 8.262 8.101 7.967 7.884 7.913 7.897 7.918 8.027 8.006 7.889 7.846 7.698 7.633 7.663 7.840 7.974 8.071 8.116 8.131 8.232 8.203 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 8.428 8.321 8.268 8.158 7.871 7.871 8.112 8.641 8.586 8.517 8.453 8.445 8.373 8.185 7.898 7.596 7.385 7.271 7.099 6.942 7.621 8.621 8.237 7.324 7.155 7.475 7.761 7.687 8.019 8.361 8.224 7.975 7.985 7.939 7.827 7.781 7.920 8.286 8.469 8.415 8.296 8.009 7.895 7.921 7.875 7.686 7.617 7.718 7.796 7.850 8.101 8.092 7.994 7.815 7.811 7.893 7.979 8.055 8.126 8.242 8.300 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.947 8.342 8.339 7.871 7.871 7.871 8.276 8.481 8.552 8.498 8.367 8.351 8.413 8.428 8.352 8.112 7.760 7.524 7.345 7.320 7.333 7.242 7.656 8.159 8.461 7.467 7.027 7.212 7.415 7.706 7.981 8.238 8.342 8.253 8.229 8.045 7.861 7.688 7.739 7.995 8.081 8.221 8.293 8.125 8.010 7.858 7.715 7.528 7.565 7.641 7.728 7.728 7.929 8.022 7.960 7.854 7.773 7.755 7.760 7.798 7.858 7.951 8.039 7.916 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.952 7.871 7.871 7.871 7.975 8.087 8.370 8.402 8.254 8.108 8.259 8.380 8.467 8.459 8.399 7.949 7.701 7.554 7.431 7.376 7.362 7.433 7.852 8.092 9.005 7.856 7.156 7.100 7.604 8.144 8.248 8.411 8.173 8.022 8.104 8.079 7.958 7.765 7.733 7.881 8.033 8.317 8.443 8.237 7.996 7.738 7.574 7.512 7.584 7.620 7.620 7.600 7.663 7.712 7.678 7.629 7.664 7.750 7.695 7.675 7.705 7.774 7.874 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.901 7.946 7.976 8.025 7.962 7.871 7.871 8.088 8.169 8.355 8.489 8.478 8.394 7.992 7.871 7.871 7.674 7.566 7.451 7.340 7.427 7.781 8.121 8.318 7.902 7.571 7.952 8.105 8.261 8.092 8.094 7.943 7.863 8.015 8.076 7.933 7.731 7.718 7.752 7.928 8.126 8.250 8.162 7.998 7.849 7.728 7.644 7.657 7.673 7.595 7.543 7.550 7.646 7.656 7.566 7.496 7.566 7.594 7.463 7.468 7.545 7.699 7.776 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.900 7.908 7.895 7.966 7.908 7.952 8.007 8.133 8.341 8.457 8.462 8.299 7.992 7.871 7.871 7.871 7.871 7.732 7.583 7.529 7.517 7.568 7.804 7.965 7.826 7.654 8.349 8.188 8.073 7.907 7.797 7.590 7.504 7.600 7.701 7.782 7.887 7.976 8.001 7.907 7.909 7.861 7.861 7.829 7.820 7.783 7.784 7.820 7.825 7.829 7.806 7.810 7.846 7.742 7.634 7.569 7.633 7.668 7.543 7.466 7.471 7.631 7.766 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.891 7.919 7.997 7.946 7.957 7.995 8.119 8.303 8.449 8.418 8.269 7.988 7.871 7.871 7.871 7.871 7.871 7.837 7.695 7.598 7.532 7.500 7.475 7.783 7.900 7.918 8.101 7.774 7.658 7.643 7.592 7.560 7.572 7.585 7.559 7.596 7.767 8.007 8.155 7.871 7.871 7.871 7.859 7.871 7.871 7.871 7.871 7.924 7.883 7.861 7.871 7.871 7.871 7.871 7.836 7.838 7.865 7.751 7.687 7.612 7.610 7.733 7.833 7.880 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.893 7.870 7.884 7.986 8.173 8.364 8.373 8.229 8.072 7.956 7.871 7.871 7.784 7.765 7.871 7.862 7.797 7.679 7.615 7.613 7.682 7.838 7.940 7.764 7.690 7.711 7.670 7.785 7.781 7.776 7.719 7.652 7.588 7.631 7.716 7.854 8.071 8.232 7.968 7.871 7.871 7.871 7.871 7.871 7.871 7.961 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.807 7.798 7.843 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 8.036 8.153 8.067 7.989 7.923 7.871 7.871 7.793 7.767 7.871 7.871 7.871 7.748 7.716 7.757 7.738 7.736 8.065 7.957 7.795 7.865 7.743 7.814 7.908 7.888 7.712 7.585 7.577 7.653 7.710 7.774 7.899 8.051 8.217 8.387 7.974 7.871 7.871 7.871 8.010 8.131 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.882 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 8.021 8.005 7.984 7.971 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.870 7.864 7.895 8.093 7.990 7.882 7.895 7.815 7.782 7.787 7.827 7.724 7.627 7.662 7.612 7.619 7.704 7.815 7.828 7.964 8.190 8.407 8.461 7.950 7.871 8.074 8.146 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.953 7.997 8.003 8.027 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.795 7.783 7.815 7.757 7.800 7.765 7.742 7.667 7.612 7.721 7.712 7.871 7.852 7.871 7.871 7.778 7.722 7.696 7.765 7.831 8.029 8.252 8.439 8.517 8.346 8.134 7.871 8.079 7.952 7.875 7.900 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.958 7.972 7.954 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.809 7.744 7.741 7.757 7.696 7.707 7.629 7.545 7.580 7.624 7.871 7.871 7.901 7.871 7.871 7.871 7.871 7.780 7.744 7.779 7.906 8.165 8.463 8.527 8.376 8.192 8.176 7.871 7.918 7.920 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.922 7.892 7.787 7.776 7.662 7.551 7.551 7.607 7.787 7.862 7.899 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.815 7.933 8.177 8.424 8.548 8.346 8.168 8.064 7.945 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.948 7.892 7.886 7.724 7.638 7.603 7.639 7.756 7.851 7.904 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.874 7.930 8.120 8.326 8.447 8.350 8.105 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.872 7.885 7.799 7.703 7.728 7.745 7.857 7.949 7.965 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 8.119 8.167 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.861 7.801 7.789 7.872 7.979 8.008 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.994 7.984 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 7.871 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.543 7.150 7.227 7.770 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.399 7.261 7.028 7.110 7.416 7.913 7.913 7.913 7.913 7.913 7.680 7.885 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.428 7.379 7.245 7.242 7.336 7.481 7.913 7.913 7.913 7.615 7.626 7.772 7.916 7.980 7.988 7.997 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.854 7.913 7.913 7.913 7.913 7.613 7.572 7.536 7.478 7.491 7.399 7.552 7.815 7.784 7.636 7.699 7.870 7.979 7.963 7.983 7.969 7.958 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.902 7.826 7.804 7.913 7.913 7.913 7.823 7.780 7.775 7.724 7.625 7.564 7.507 7.703 7.618 7.609 7.795 8.026 8.060 8.042 7.982 7.912 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.879 7.869 7.913 7.913 7.913 7.991 7.953 7.995 7.953 7.759 7.618 7.497 7.556 7.639 7.712 7.894 7.974 8.017 8.065 8.002 7.873 7.980 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.927 7.917 7.916 7.913 7.947 8.053 8.047 8.164 8.146 7.839 7.525 7.542 7.477 7.583 7.670 7.723 7.712 7.788 8.105 8.186 7.973 7.950 7.980 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.941 7.924 7.913 7.962 8.086 8.162 8.250 8.246 7.933 7.540 7.414 7.420 7.596 7.686 7.526 7.420 7.463 7.946 8.132 8.027 7.926 7.829 7.901 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.933 7.917 7.913 7.975 8.064 8.151 8.305 8.309 8.119 7.698 7.395 7.371 7.591 7.766 7.558 7.449 7.580 7.796 7.882 7.926 7.960 7.871 7.728 7.698 7.950 8.020 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.912 7.908 7.961 8.045 8.116 8.241 8.295 8.217 7.893 7.652 7.603 7.786 7.868 7.782 7.692 7.685 7.734 7.755 7.811 7.892 7.889 7.773 7.706 7.745 7.928 8.101 8.123 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.925 7.943 7.970 8.084 8.205 8.161 8.123 7.962 7.852 7.885 8.008 7.857 7.730 7.546 7.405 7.421 7.636 7.789 7.871 7.839 7.754 7.750 7.805 7.865 7.951 8.059 8.123 7.972 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.933 7.956 7.994 8.050 8.040 7.933 7.905 7.934 7.969 8.057 8.093 8.051 7.737 7.349 7.295 7.572 7.822 7.954 7.884 7.708 7.717 7.813 7.872 7.892 7.999 8.149 8.155 8.083 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.959 7.978 8.020 8.035 7.930 8.034 8.124 8.052 8.033 8.046 8.020 7.873 7.481 7.536 7.730 7.862 8.014 8.023 7.784 7.688 7.785 7.871 8.012 8.075 8.072 8.145 8.128 8.107 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 8.008 8.001 7.913 8.027 8.130 8.034 8.195 8.250 8.159 8.043 7.849 7.776 7.786 7.542 7.615 7.858 7.954 8.081 8.084 7.844 7.766 7.811 7.865 7.991 8.120 8.141 8.050 8.067 8.040 7.987 7.934 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.966 8.027 8.051 8.074 8.030 8.169 8.132 8.304 8.223 8.076 7.906 7.606 7.550 7.571 7.496 7.501 7.690 7.902 8.061 8.054 7.881 7.845 7.912 7.987 8.018 8.093 8.173 8.149 8.006 8.027 8.063 8.064 8.091 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 8.015 8.028 7.962 7.913 8.120 8.304 8.451 8.359 8.167 7.883 7.584 7.480 7.473 7.468 7.481 7.537 7.682 7.863 7.905 7.801 7.773 7.910 8.057 8.152 8.143 8.161 8.187 8.161 8.082 8.139 8.210 8.170 8.134 7.931 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.938 7.964 7.969 7.911 7.913 8.100 8.316 8.369 8.280 8.039 7.823 7.682 7.542 7.573 7.669 7.779 7.666 7.642 7.698 7.757 7.691 7.648 7.712 7.897 8.119 8.220 8.169 8.144 8.182 8.226 8.208 8.262 8.282 8.241 8.218 8.126 7.949 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.950 7.939 7.974 8.000 7.913 7.913 8.102 8.226 8.155 8.066 7.886 7.698 7.641 7.502 7.568 7.689 7.854 7.907 7.838 7.778 7.723 7.631 7.617 7.622 7.679 7.907 8.065 8.116 8.130 8.183 8.243 8.278 8.206 8.254 8.355 8.393 8.312 8.205 8.129 7.937 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.960 7.913 7.913 7.913 7.921 8.018 8.061 7.909 7.782 7.689 7.719 7.713 7.559 7.543 7.554 7.691 7.891 7.852 7.754 7.791 7.733 7.597 7.519 7.525 7.645 7.841 7.990 8.051 8.218 8.314 8.335 8.244 8.117 8.247 8.483 8.492 8.376 8.275 8.224 7.947 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.822 7.842 7.813 7.771 7.737 7.804 7.655 7.407 7.456 7.601 7.674 7.738 7.773 7.686 7.741 7.837 7.807 7.750 7.699 7.698 7.735 7.846 7.966 8.091 8.248 8.230 8.229 8.153 8.123 8.344 8.509 8.399 8.324 8.331 8.359 7.942 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.897 7.763 7.746 7.751 7.779 7.751 7.696 7.707 7.603 7.407 7.399 7.556 7.585 7.552 7.579 7.669 7.752 7.800 7.815 7.838 7.946 7.980 7.939 7.919 7.972 8.062 8.194 8.245 8.167 8.095 8.067 8.090 8.216 8.275 8.250 8.262 8.268 8.132 7.878 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.930 7.882 7.820 7.751 7.706 7.688 7.714 7.746 7.702 7.559 7.355 7.251 7.365 7.650 7.797 7.723 7.693 7.766 7.894 7.895 7.812 7.815 7.946 8.114 8.061 8.027 8.114 8.121 8.036 8.065 8.071 7.980 7.864 7.881 7.957 8.071 8.197 8.153 8.029 7.964 7.798 7.853 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 8.013 8.037 7.933 7.853 7.783 7.735 7.714 7.706 7.686 7.493 7.222 7.098 7.172 7.469 7.815 7.825 7.849 7.906 7.931 7.901 7.873 7.840 7.864 7.940 8.006 8.006 8.075 8.224 8.274 8.181 8.103 8.038 7.944 7.886 7.896 8.000 8.035 8.032 7.974 7.955 7.818 7.805 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 8.052 8.204 8.081 8.072 7.959 7.841 7.765 7.651 7.615 7.548 7.295 7.045 7.031 7.349 7.714 7.591 7.499 7.710 7.877 7.883 7.817 7.851 7.919 7.918 7.930 7.997 8.070 8.165 8.291 8.375 8.300 8.187 8.154 8.102 8.147 8.169 8.065 7.912 7.895 7.934 7.987 8.000 8.024 7.944 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.836 7.822 7.936 7.980 8.035 8.152 8.272 8.310 8.261 8.166 7.972 7.857 7.719 7.580 7.451 7.209 6.998 7.091 7.444 7.761 7.583 7.478 7.683 7.830 7.913 7.941 8.088 8.187 8.031 7.810 7.726 7.756 7.805 7.917 8.072 8.258 8.300 8.219 8.337 8.502 8.383 8.169 7.956 7.909 8.037 8.189 8.227 8.154 8.072 7.970 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.850 7.931 7.863 7.934 8.012 8.150 8.277 8.309 8.293 8.212 8.120 7.982 7.691 7.488 7.283 7.091 7.214 7.566 7.872 7.845 7.846 7.851 7.932 7.992 8.124 8.237 8.325 8.182 7.979 7.864 7.793 7.764 7.752 7.794 7.962 8.274 8.602 8.572 8.438 8.352 8.236 8.268 8.304 8.266 8.334 8.386 8.303 8.193 8.129 8.032 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.936 7.934 7.900 7.971 8.111 8.271 8.460 8.524 8.317 8.077 7.791 7.555 7.528 7.297 7.324 7.609 7.760 7.710 8.032 8.237 8.269 8.145 8.097 8.226 8.291 8.039 7.826 7.808 7.788 7.784 7.822 7.819 7.873 8.055 8.355 8.622 8.561 8.347 8.368 8.538 8.695 8.616 8.496 8.457 8.413 8.354 8.269 8.234 8.077 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.954 7.967 8.108 8.291 8.520 8.601 8.353 7.978 7.680 7.413 7.585 7.576 7.408 7.501 7.553 7.477 7.727 8.006 8.134 8.170 8.058 8.195 8.316 8.062 7.714 7.630 7.799 7.992 8.095 8.083 8.069 8.106 8.170 8.223 8.347 8.555 8.494 8.420 8.522 8.678 8.710 8.529 8.381 8.338 8.333 8.340 8.338 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 8.399 8.419 8.457 8.515 8.339 7.972 7.683 7.471 7.541 7.863 7.739 7.436 7.383 7.441 7.632 7.848 8.204 8.402 7.993 8.015 8.271 8.269 7.964 7.706 7.548 7.680 7.938 8.263 8.361 8.234 8.154 8.296 8.502 8.634 8.709 8.658 8.648 8.700 8.718 8.591 8.339 8.165 8.177 8.269 8.287 8.198 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 8.457 8.608 8.594 8.154 7.913 7.913 8.317 8.088 7.818 7.656 7.817 8.137 7.939 7.468 7.263 7.429 7.520 7.905 8.057 8.333 7.950 7.951 8.216 8.363 8.560 8.404 7.725 7.461 7.427 7.747 8.039 8.021 7.939 8.053 8.182 8.308 8.435 8.482 8.333 8.158 8.147 8.202 8.191 8.088 8.009 8.010 8.062 8.180 7.914 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 8.524 8.494 8.581 7.913 7.913 7.913 7.913 8.209 8.272 8.128 7.960 7.987 8.163 8.038 7.500 7.316 7.599 7.767 8.117 7.924 7.926 7.857 7.718 7.847 8.280 8.777 8.903 7.791 7.337 7.295 7.493 7.761 7.936 8.059 8.003 7.821 7.867 8.212 8.484 8.279 7.972 7.783 7.692 7.705 7.805 7.872 7.887 7.856 7.966 7.928 7.946 7.907 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 8.040 8.442 8.481 8.398 7.913 7.913 7.913 7.913 8.164 8.392 8.494 8.279 7.971 7.860 7.996 8.083 7.638 7.411 7.835 8.273 8.162 7.712 7.669 7.927 8.273 8.333 8.372 8.946 8.640 7.791 7.473 7.467 7.599 7.878 8.042 7.980 7.803 7.691 7.809 8.107 8.266 8.288 8.154 8.018 7.847 7.744 7.738 7.689 7.676 7.686 7.893 8.005 8.024 7.973 7.953 7.964 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 8.055 8.355 8.356 7.913 7.913 7.913 7.913 7.913 8.443 8.434 8.440 8.415 8.176 7.914 7.775 7.786 7.791 7.576 7.473 8.028 8.707 8.191 7.603 7.492 7.946 8.230 8.359 8.355 8.706 8.615 7.956 7.659 7.686 7.795 7.948 7.988 7.936 7.886 7.996 8.086 7.988 7.859 7.798 7.875 7.813 7.795 7.953 7.999 7.906 7.953 7.850 7.853 7.901 7.962 8.067 8.122 8.159 8.126 7.958 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.979 8.111 7.913 7.913 7.913 7.913 7.913 8.239 8.335 8.348 8.358 8.394 8.369 8.138 7.874 7.655 7.475 7.408 7.335 7.304 7.895 8.978 8.413 7.667 7.389 7.731 8.092 8.144 8.138 8.446 8.495 8.134 7.904 7.816 7.725 7.675 7.842 8.211 8.272 8.163 8.060 7.999 7.985 7.943 7.881 7.628 7.619 7.735 7.800 7.840 8.057 8.049 7.966 7.832 7.806 7.921 8.012 8.045 8.004 7.976 7.983 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 8.072 8.171 8.187 8.189 8.267 8.370 8.408 8.383 8.170 7.805 7.568 7.393 7.341 7.416 7.469 7.859 8.685 8.526 7.676 7.102 7.448 7.878 8.129 8.025 8.183 8.367 8.388 8.128 7.879 7.781 7.713 7.805 8.068 8.066 8.032 8.001 8.039 7.995 7.914 7.858 7.642 7.674 7.651 7.663 7.749 7.893 7.896 7.755 7.733 7.676 7.753 7.797 7.817 7.780 7.759 7.879 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.930 7.980 8.045 8.043 7.973 8.100 8.195 8.301 8.385 8.394 8.361 8.067 7.766 7.590 7.459 7.390 7.385 7.488 7.909 8.451 8.626 7.653 7.043 7.055 7.677 8.167 8.014 8.116 8.172 8.022 7.955 8.092 8.082 7.862 7.759 7.831 7.907 8.040 8.021 7.922 7.848 7.779 7.693 7.577 7.582 7.567 7.573 7.677 7.764 7.768 7.661 7.654 7.661 7.814 7.765 7.729 7.745 7.749 7.844 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.947 7.949 7.938 7.913 7.913 8.009 8.120 8.199 8.268 8.267 8.226 8.082 7.913 7.935 7.867 7.618 7.521 7.435 7.473 7.856 8.428 8.412 7.772 7.377 7.582 7.966 8.270 8.049 7.979 8.018 7.913 7.934 8.159 8.226 7.958 7.810 7.773 7.809 7.916 7.989 7.897 7.794 7.725 7.623 7.523 7.478 7.481 7.493 7.552 7.576 7.737 7.680 7.586 7.571 7.740 7.738 7.623 7.639 7.689 7.775 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.935 7.956 7.971 8.017 8.106 8.211 8.263 8.238 8.156 8.065 8.003 7.996 7.964 7.913 7.775 7.675 7.600 7.626 7.692 7.918 8.164 7.727 7.641 8.242 8.220 8.201 8.076 7.949 7.778 7.567 7.602 7.798 7.992 8.218 8.283 8.188 8.074 8.021 7.955 7.884 7.819 7.759 7.713 7.702 7.689 7.603 7.770 7.648 7.718 7.859 7.815 7.686 7.616 7.728 7.782 7.675 7.595 7.604 7.729 7.814 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.946 7.953 7.941 8.002 8.113 8.215 8.216 8.116 8.031 7.994 7.969 7.965 7.913 7.913 7.908 7.804 7.682 7.651 7.627 7.680 7.966 7.929 7.905 8.163 7.817 7.821 7.784 7.720 7.655 7.617 7.660 7.740 7.870 8.115 8.362 8.481 8.442 8.295 7.996 7.897 7.913 7.913 7.913 7.910 7.878 7.908 7.840 7.857 7.913 7.913 7.913 7.761 7.697 7.759 7.806 7.774 7.678 7.679 7.761 7.859 7.930 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.922 7.890 7.964 8.066 7.988 7.913 8.031 7.994 7.979 7.974 7.963 7.847 7.872 7.890 7.871 7.777 7.733 7.712 7.855 7.960 8.044 7.863 7.768 7.683 7.724 7.866 7.907 7.857 7.792 7.723 7.733 7.820 7.952 8.137 8.395 8.641 8.691 8.548 7.954 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.875 7.786 7.815 7.870 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.993 7.998 8.015 8.012 7.961 7.874 7.843 7.913 7.913 7.826 7.796 7.831 7.878 7.813 8.216 8.208 7.899 7.880 7.851 7.866 7.933 7.988 7.880 7.723 7.717 7.759 7.818 7.925 8.114 8.416 8.610 8.759 8.918 7.972 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.856 7.887 7.914 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.903 8.039 8.039 8.047 7.992 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.924 7.939 7.945 8.141 8.120 7.929 7.894 7.944 7.904 7.821 7.917 7.879 7.768 7.738 7.700 7.694 7.714 7.763 7.842 8.169 8.444 8.785 8.838 8.736 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 8.015 8.016 8.040 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.844 7.821 7.867 7.796 7.745 7.719 7.827 7.806 7.705 7.747 7.773 7.913 7.913 7.913 7.884 7.788 7.679 7.602 7.734 7.926 8.207 8.498 8.660 8.537 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 8.015 7.978 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.903 7.808 7.795 7.762 7.719 7.823 7.781 7.658 7.644 7.671 7.813 7.913 7.940 7.925 7.913 7.913 7.913 7.757 7.731 7.834 7.978 8.181 8.394 8.418 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.971 7.921 7.913 7.879 7.799 7.681 7.640 7.657 7.699 7.913 7.937 7.930 7.913 7.913 7.913 7.913 7.913 7.913 7.857 7.911 8.086 8.186 8.137 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.969 7.956 7.913 7.829 7.753 7.706 7.699 7.743 7.832 7.941 7.942 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.924 7.879 7.776 7.778 7.784 7.885 7.913 8.016 7.965 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.945 7.904 7.820 7.887 8.004 8.060 8.041 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 8.016 7.992 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 7.913 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.716 7.449 7.772 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.784 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.716 7.462 7.361 7.405 7.955 7.955 7.955 7.955 7.955 7.955 7.632 7.729 7.900 8.018 8.042 8.036 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.859 7.798 7.565 7.507 7.511 7.666 7.726 7.834 7.955 7.827 7.701 7.778 7.942 8.025 8.037 8.026 8.006 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.946 7.955 7.955 7.955 7.955 7.974 7.952 7.850 7.710 7.651 7.621 7.593 7.616 7.606 7.654 7.728 7.869 8.012 8.044 8.011 7.964 7.964 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 8.004 8.038 8.010 7.876 7.776 7.665 7.561 7.633 7.550 7.613 7.671 7.764 7.927 7.988 7.950 7.888 7.967 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 8.017 8.036 8.029 7.959 7.744 7.578 7.439 7.407 7.656 7.569 7.582 7.541 7.679 7.981 8.001 7.905 7.988 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 8.000 8.038 8.056 8.070 7.791 7.568 7.508 7.385 7.462 7.614 7.533 7.338 7.444 8.059 8.086 7.947 7.934 7.944 7.996 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.976 7.955 7.955 8.033 7.993 7.731 7.688 7.339 7.466 7.710 7.619 7.459 7.615 8.004 7.991 7.933 7.909 7.923 7.927 8.001 7.955 8.026 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 8.034 7.991 7.811 7.626 7.507 7.616 7.813 7.868 7.726 7.715 7.873 7.929 7.908 7.908 7.928 7.889 7.809 7.763 7.925 8.025 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 8.022 8.001 7.831 7.719 7.750 7.880 7.963 7.943 7.664 7.416 7.429 7.733 7.954 7.959 7.924 7.894 7.837 7.814 7.935 7.898 8.046 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 8.007 7.841 7.808 7.820 7.829 7.916 8.204 8.198 7.780 7.298 7.245 7.578 7.850 8.039 8.024 7.883 7.825 7.845 7.933 7.909 7.866 8.133 8.104 8.006 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 8.031 7.940 7.921 7.993 7.986 8.097 8.378 8.290 7.947 7.488 7.456 7.662 7.783 7.965 8.130 8.017 7.840 7.834 7.896 7.907 7.966 7.986 8.110 8.080 8.001 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.987 8.078 8.065 8.179 8.134 7.980 8.017 8.137 8.123 8.215 8.179 8.062 7.846 7.567 7.600 7.786 7.834 7.951 8.109 8.093 7.960 7.869 7.846 7.899 7.964 7.987 8.050 8.051 8.063 8.025 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 8.008 8.070 8.115 8.137 7.955 7.994 8.078 8.129 8.151 8.130 7.903 7.821 7.663 7.524 7.560 7.731 7.889 8.038 8.152 8.045 7.948 7.924 7.896 7.883 7.963 8.054 8.107 8.068 8.087 8.089 8.008 7.997 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.900 7.991 8.014 7.958 7.955 8.023 8.180 8.128 8.099 7.981 7.756 7.641 7.554 7.486 7.545 7.622 7.799 7.996 8.120 8.036 7.871 7.878 7.926 7.946 7.983 8.053 8.154 8.193 8.144 8.141 8.137 8.033 8.026 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 8.000 7.937 7.989 8.010 7.955 7.955 8.248 8.210 8.120 8.012 7.941 7.862 7.698 7.601 7.556 7.591 7.584 7.647 7.822 7.963 7.919 7.788 7.815 7.920 7.969 8.019 8.079 8.144 8.215 8.265 8.233 8.207 8.203 8.153 8.059 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.999 8.005 8.015 7.955 7.955 7.955 8.270 8.150 8.027 7.906 7.838 7.971 7.865 7.777 7.710 7.692 7.677 7.629 7.682 7.776 7.822 7.750 7.673 7.752 7.916 8.038 8.066 8.119 8.215 8.269 8.298 8.260 8.254 8.254 8.197 8.074 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 8.009 7.963 7.891 7.770 7.725 7.884 7.843 7.764 7.702 7.751 7.786 7.715 7.691 7.758 7.767 7.649 7.575 7.601 7.703 7.843 8.027 8.143 8.215 8.275 8.312 8.302 8.241 8.258 8.294 8.245 8.056 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.919 7.880 7.859 7.742 7.681 7.640 7.575 7.617 7.682 7.713 7.715 7.796 7.799 7.819 7.900 7.885 7.744 7.700 7.717 7.749 7.855 8.021 8.172 8.263 8.238 8.247 8.236 8.223 8.298 8.336 8.280 8.027 8.015 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.941 7.838 7.802 7.778 7.738 7.756 7.719 7.678 7.634 7.672 7.633 7.586 7.759 7.851 7.868 7.947 8.023 7.895 7.868 7.914 7.916 7.888 7.965 8.043 8.189 8.305 8.317 8.262 8.257 8.196 8.236 8.259 8.227 8.026 7.995 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.937 7.955 7.936 7.720 7.701 7.714 7.727 7.766 7.713 7.698 7.722 7.823 7.834 7.628 7.675 7.819 7.916 8.003 8.049 7.961 7.973 8.087 8.153 8.084 8.047 8.016 8.045 8.126 8.259 8.297 8.218 8.184 8.134 8.163 8.279 8.219 8.010 7.989 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.987 8.013 7.938 7.863 7.783 7.723 7.693 7.716 7.734 7.646 7.543 7.527 7.613 7.652 7.501 7.659 7.805 7.870 7.925 8.025 7.968 7.917 7.994 8.146 8.179 8.107 8.086 8.094 8.092 8.139 8.249 8.297 8.242 8.208 8.126 8.153 8.244 8.194 8.129 7.996 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.994 8.136 8.044 7.973 7.902 7.827 7.722 7.676 7.766 7.656 7.452 7.337 7.428 7.541 7.417 7.478 7.752 7.984 7.957 7.907 7.929 7.972 7.995 8.064 8.151 8.162 8.136 8.134 8.158 8.167 8.204 8.239 8.254 8.289 8.307 8.256 8.149 8.233 8.244 8.160 8.042 8.034 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.853 7.955 7.955 8.007 8.034 8.034 8.083 8.089 7.955 8.011 7.947 7.822 7.697 7.700 7.591 7.382 7.372 7.506 7.575 7.456 7.476 7.788 7.982 7.998 7.983 8.003 8.124 8.158 8.044 8.007 8.022 8.034 8.034 8.075 8.138 8.156 8.175 8.288 8.374 8.357 8.311 8.295 8.241 8.345 8.383 8.350 8.064 8.032 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.844 7.892 7.965 7.925 7.965 8.045 8.143 8.211 8.222 8.148 8.065 7.935 7.745 7.692 7.602 7.387 7.330 7.540 7.766 7.809 7.807 8.014 8.160 8.093 8.117 8.063 8.180 8.278 8.176 8.061 8.046 8.041 7.997 7.986 8.032 8.168 8.353 8.399 8.386 8.344 8.339 8.402 8.470 8.486 8.490 8.493 8.434 8.103 8.040 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.937 7.925 7.968 8.055 8.180 8.278 8.305 8.184 7.963 7.816 7.761 7.760 7.620 7.448 7.550 7.714 7.829 7.999 8.283 8.313 8.139 8.212 8.199 8.169 8.181 8.131 8.071 7.998 8.011 8.010 8.024 8.070 8.194 8.330 8.490 8.576 8.506 8.498 8.544 8.617 8.589 8.571 8.520 8.507 8.472 8.182 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.982 7.983 8.034 8.153 8.288 8.332 8.192 7.941 7.757 7.696 7.760 7.882 7.579 7.547 7.614 7.595 7.705 8.069 8.362 8.267 8.014 8.056 8.114 8.089 7.993 7.910 7.942 8.047 8.082 8.081 8.140 8.226 8.251 8.361 8.578 8.724 8.742 8.722 8.709 8.709 8.648 8.508 8.472 8.448 8.409 8.149 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 8.171 8.208 8.222 8.237 8.172 7.942 7.719 7.692 7.792 8.116 7.958 7.708 7.524 7.472 7.616 8.047 8.671 8.507 7.944 7.823 8.061 8.144 8.092 7.952 7.782 7.800 7.880 8.027 8.186 8.241 8.294 8.399 8.548 8.654 8.848 8.873 8.829 8.840 8.762 8.583 8.433 8.300 8.263 8.123 8.054 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 8.216 8.262 7.955 7.951 8.036 8.136 8.039 7.835 7.750 7.937 8.245 8.280 8.022 7.537 7.454 7.573 7.990 8.408 8.392 8.015 7.957 8.260 8.397 8.367 8.275 7.906 7.690 7.724 7.966 8.075 8.024 7.967 8.100 8.290 8.487 8.653 8.645 8.528 8.407 8.372 8.390 8.389 8.293 8.196 8.139 8.029 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 8.048 8.032 7.955 7.955 7.955 7.955 8.099 8.097 8.013 7.904 7.932 8.189 8.192 7.880 7.507 7.519 7.692 8.038 8.146 8.446 8.282 7.966 7.875 8.001 8.284 8.468 7.884 7.496 7.499 7.776 8.009 8.087 8.145 8.115 7.959 8.057 8.328 8.415 8.366 8.157 7.987 7.977 8.071 8.146 8.171 8.131 8.018 8.055 8.127 7.939 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 8.062 8.154 8.076 8.054 7.903 7.839 7.888 7.845 7.652 7.506 7.757 8.077 8.138 8.013 8.398 8.452 8.337 8.223 8.020 8.388 8.793 8.238 7.755 7.583 7.630 7.777 7.914 8.043 7.989 7.904 7.993 8.074 8.121 8.078 8.075 8.030 7.910 7.936 8.055 8.089 8.033 7.964 8.150 8.305 8.260 8.103 8.008 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 8.148 8.174 8.191 8.004 7.813 7.721 7.712 7.659 7.594 7.693 8.161 8.531 8.082 7.871 8.021 8.322 8.107 8.272 8.199 8.345 8.723 8.355 7.845 7.700 7.696 7.742 7.790 7.879 7.856 7.954 8.141 8.028 7.851 7.751 7.811 7.836 7.810 7.894 7.963 7.970 7.999 7.950 8.068 8.300 8.202 8.190 8.178 8.155 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 8.077 8.096 8.120 8.147 7.955 7.899 7.756 7.656 7.586 7.564 7.555 7.697 8.318 9.069 8.310 7.991 7.834 8.111 8.176 8.337 8.244 8.416 8.588 8.396 8.038 7.884 7.757 7.704 7.780 8.046 7.926 8.023 8.292 8.294 8.071 7.913 7.825 7.770 7.832 7.863 7.829 7.765 7.850 7.918 7.977 7.956 7.873 7.921 7.978 8.013 7.954 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.990 7.998 8.022 8.059 8.038 7.955 7.955 7.955 7.955 7.733 7.627 7.536 7.476 7.607 7.782 8.161 9.015 8.308 7.667 7.527 7.930 8.299 8.763 8.311 8.365 8.455 8.352 8.061 7.910 7.766 7.751 7.852 8.080 7.872 7.908 8.006 8.006 7.888 7.938 7.880 7.924 7.923 7.829 7.727 7.691 7.719 7.758 7.794 7.794 7.745 7.801 7.831 7.853 7.856 7.856 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.993 7.989 7.990 7.955 7.955 7.955 7.955 7.955 7.955 7.980 7.818 7.689 7.592 7.514 7.524 7.673 8.111 8.874 8.518 7.527 7.157 7.219 7.835 8.634 8.198 8.118 8.122 7.910 7.730 7.722 7.756 7.856 7.980 8.047 7.898 7.912 7.859 7.772 7.764 7.878 7.844 7.774 7.712 7.752 7.806 7.787 7.760 7.824 7.777 7.752 7.778 7.861 7.814 7.843 7.889 7.929 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 8.024 8.074 8.098 8.125 8.094 8.051 8.014 7.966 7.866 7.746 7.632 7.580 7.619 8.002 8.608 8.498 7.563 7.230 7.320 7.955 8.271 8.174 8.150 8.195 8.063 7.834 7.788 7.906 7.953 7.946 7.883 7.801 7.833 7.859 7.826 7.746 7.732 7.638 7.555 7.485 7.554 7.645 7.674 7.645 7.800 7.722 7.724 7.772 7.918 7.887 7.826 7.854 7.891 7.920 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.992 8.027 8.074 8.102 8.124 8.099 8.067 8.051 8.036 8.026 7.938 7.871 7.787 7.715 7.729 7.906 8.234 8.397 7.652 7.659 8.171 8.318 8.287 8.211 8.042 7.930 7.721 7.594 7.648 7.797 7.972 8.103 8.083 8.008 7.973 7.918 7.856 7.729 7.773 7.682 7.679 7.669 7.653 7.679 7.722 7.792 7.927 7.883 7.790 7.737 7.822 7.873 7.822 7.747 7.775 7.860 7.893 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.950 7.974 8.019 8.048 8.063 8.033 7.942 8.005 8.024 8.017 8.003 8.024 7.907 7.792 7.765 7.830 8.011 8.178 7.902 8.052 8.371 8.044 8.016 7.954 7.862 7.763 7.706 7.672 7.725 7.829 7.972 8.097 8.145 8.147 8.118 7.965 7.955 7.955 7.955 7.955 7.909 7.874 7.862 7.803 7.815 7.892 7.955 7.975 7.862 7.789 7.811 7.892 7.912 7.770 7.755 7.808 7.896 7.968 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.950 7.878 7.915 7.927 7.987 7.955 7.955 7.953 8.027 8.039 8.034 7.987 7.974 7.945 7.860 7.821 7.826 8.016 8.136 8.138 8.119 8.009 7.867 7.870 7.963 7.989 7.932 7.923 7.789 7.783 7.835 7.919 8.033 8.175 8.286 8.310 8.270 8.027 7.955 7.955 7.955 7.955 7.962 8.007 7.990 7.944 7.924 7.955 7.955 7.964 7.850 7.845 7.916 7.948 7.846 7.841 7.873 7.931 7.963 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 8.063 8.060 8.069 8.009 7.934 7.921 7.955 7.881 7.860 7.902 8.013 7.960 8.282 8.458 8.110 7.998 7.963 7.979 7.908 8.026 8.088 7.879 7.843 7.861 7.887 7.956 8.064 8.316 8.481 8.448 8.173 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.896 7.894 7.939 7.954 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 8.070 8.065 8.079 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.963 8.008 8.007 8.170 8.190 7.976 7.884 7.981 8.047 7.912 7.979 8.015 7.930 7.894 7.858 7.943 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.958 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 8.065 8.057 8.036 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.892 7.862 7.923 7.828 7.715 7.724 7.881 7.940 7.827 7.804 7.830 7.897 8.000 7.955 7.967 7.939 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.894 7.871 7.791 7.873 7.946 7.905 7.769 7.723 7.731 7.747 7.868 7.955 7.970 7.968 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 8.013 7.971 7.911 8.014 7.905 7.792 7.743 7.733 7.737 7.801 7.955 7.966 7.968 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 8.000 7.976 7.955 7.936 7.933 7.784 7.828 7.781 7.844 7.941 7.999 7.962 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.962 7.941 7.844 7.809 7.839 7.887 7.955 7.955 8.036 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.988 7.955 7.882 7.909 7.991 8.091 8.121 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 8.064 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 7.955 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.862 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.757 7.579 7.997 7.997 7.997 7.997 7.997 7.997 7.703 7.723 7.855 8.024 8.082 8.084 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.778 7.570 7.515 7.717 7.997 7.997 7.997 7.906 7.749 7.763 7.914 8.051 8.096 8.093 8.022 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.705 7.620 7.582 7.582 7.753 7.780 7.676 7.745 7.865 8.021 8.090 8.087 8.047 8.010 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.896 7.660 7.545 7.426 7.459 7.526 7.613 7.740 7.974 8.033 8.001 7.977 8.039 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.932 7.908 7.511 7.407 7.397 7.487 7.539 7.526 7.743 8.046 8.033 7.964 8.004 8.030 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.814 7.678 7.876 7.492 7.486 7.572 7.591 7.488 7.670 8.150 8.132 8.016 7.976 7.991 8.032 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.755 7.661 7.663 7.569 7.732 7.822 7.771 7.947 8.280 8.146 8.040 7.965 7.954 7.964 7.994 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.792 7.740 7.627 7.672 7.769 7.973 8.040 8.111 8.164 8.125 8.055 8.000 7.954 7.925 7.923 7.933 7.997 8.024 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.922 7.825 7.788 7.832 7.837 7.943 7.837 7.674 7.734 8.035 8.154 8.079 8.008 7.960 7.911 7.892 7.908 7.969 8.037 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.984 7.897 7.876 7.889 7.770 7.787 7.922 7.745 7.408 7.472 7.860 8.136 8.242 8.153 8.003 7.933 7.895 7.921 7.935 7.839 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 8.056 8.031 8.119 8.102 7.984 7.989 8.052 8.019 8.180 8.176 7.948 7.548 7.580 7.845 7.989 8.133 8.258 8.180 7.993 7.919 7.936 7.923 7.902 7.920 8.039 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 8.061 8.102 8.117 8.114 8.017 7.972 8.027 8.131 8.212 8.299 8.232 7.978 7.670 7.692 7.846 7.909 7.974 8.081 8.174 8.139 8.024 7.967 7.956 7.946 7.935 7.935 8.044 8.076 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 8.037 8.062 8.023 7.977 8.001 8.049 8.127 8.200 8.232 8.169 7.942 7.697 7.711 7.801 7.883 7.946 8.016 8.045 8.042 8.097 8.088 8.023 8.015 7.976 7.958 7.995 8.138 8.099 8.054 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 8.023 7.935 7.995 8.032 8.011 7.974 8.059 8.038 8.054 8.120 8.246 8.175 7.962 7.727 7.695 7.679 7.744 7.882 8.038 8.086 7.942 7.924 8.034 8.113 8.108 8.039 8.011 8.034 8.089 8.166 8.088 8.073 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 8.021 8.027 8.064 8.072 7.997 8.029 8.125 8.023 7.957 8.096 8.314 8.234 7.997 7.758 7.613 7.571 7.594 7.775 7.999 8.097 7.892 7.823 7.925 8.039 8.117 8.122 8.071 8.060 8.127 8.152 8.162 8.107 8.093 8.070 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 8.082 7.957 7.910 8.014 8.271 8.197 7.945 7.735 7.588 7.547 7.501 7.597 7.862 8.071 7.859 7.705 7.731 7.880 8.026 8.109 8.164 8.148 8.157 8.156 8.171 8.184 8.111 8.103 8.072 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.984 7.927 7.873 7.876 7.983 7.929 7.833 7.742 7.596 7.559 7.530 7.527 7.700 7.886 7.814 7.689 7.655 7.707 7.811 7.978 8.113 8.180 8.206 8.211 8.204 8.237 8.236 8.186 8.121 8.065 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.973 7.922 7.845 7.793 7.707 7.591 7.634 7.697 7.599 7.577 7.662 7.679 7.741 7.844 7.896 7.792 7.699 7.712 7.794 7.840 7.971 8.117 8.207 8.231 8.266 8.297 8.264 8.237 8.197 8.082 8.064 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.934 7.865 7.844 7.823 7.720 7.629 7.599 7.645 7.507 7.479 7.671 7.813 7.896 7.923 8.016 7.967 7.868 7.835 7.834 7.837 7.930 8.014 8.146 8.235 8.262 8.298 8.341 8.296 8.253 8.223 8.114 8.100 8.077 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.984 7.754 7.771 7.805 7.837 7.780 7.767 7.781 7.817 7.703 7.529 7.602 7.832 7.952 7.973 8.070 8.110 8.036 8.019 8.026 7.972 7.964 7.966 8.026 8.111 8.211 8.266 8.282 8.336 8.287 8.264 8.255 8.109 8.066 8.047 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 8.003 8.017 8.000 7.945 7.768 7.738 7.774 7.842 7.893 7.861 7.821 7.824 7.769 7.626 7.682 7.844 7.977 7.989 8.079 8.078 7.951 7.998 8.147 8.217 8.167 8.059 8.008 8.055 8.129 8.199 8.257 8.326 8.358 8.340 8.250 8.260 8.155 8.070 8.038 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 8.140 8.073 7.966 7.882 7.800 7.766 7.851 7.936 7.822 7.691 7.667 7.635 7.566 7.579 7.761 7.953 8.018 8.006 7.991 7.906 7.953 8.117 8.257 8.318 8.260 8.174 8.125 8.109 8.136 8.186 8.258 8.326 8.377 8.333 8.280 8.282 8.280 8.076 8.049 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 8.100 8.115 8.039 7.978 7.875 7.758 7.793 7.899 7.858 7.698 7.594 7.541 7.499 7.543 7.802 7.933 8.033 8.050 8.003 7.941 8.003 8.113 8.219 8.233 8.212 8.207 8.208 8.203 8.204 8.159 8.188 8.305 8.330 8.324 8.322 8.309 8.337 8.331 8.062 8.068 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.926 7.895 7.997 7.991 8.015 8.000 8.055 8.135 8.113 8.055 8.041 7.914 7.767 7.768 7.853 7.828 7.677 7.565 7.634 7.715 7.696 7.912 8.118 8.105 8.077 7.935 7.929 8.008 8.171 8.273 8.326 8.285 8.216 8.171 8.184 8.265 8.333 8.285 8.201 8.184 8.219 8.168 8.298 8.345 8.339 8.233 8.057 8.065 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.943 7.997 7.982 7.942 7.971 8.017 8.088 8.138 8.160 8.066 7.917 7.777 7.750 7.858 7.862 7.642 7.489 7.524 7.781 7.948 8.026 8.242 8.094 8.134 8.097 7.936 7.927 8.042 8.209 8.253 8.221 8.214 8.219 8.221 8.221 8.223 8.232 8.288 8.273 8.166 8.138 8.155 8.230 8.318 8.284 8.144 8.091 8.089 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.953 8.003 8.034 8.071 8.087 8.059 7.957 7.812 7.792 7.927 7.947 7.658 7.428 7.520 7.726 8.035 8.158 8.344 8.031 7.956 8.054 8.079 8.035 8.105 8.150 8.180 8.141 8.167 8.171 8.221 8.230 8.172 8.136 8.172 8.290 8.423 8.403 8.358 8.357 8.350 8.295 8.119 8.085 8.074 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 8.045 8.029 7.989 8.014 8.038 7.962 7.808 7.748 7.865 8.045 7.926 7.607 7.562 7.623 7.877 8.136 8.353 8.026 7.860 7.921 8.087 8.188 8.205 8.260 8.213 8.118 8.100 8.115 8.134 8.118 8.117 8.135 8.164 8.221 8.378 8.450 8.441 8.428 8.320 8.338 8.096 8.074 8.047 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 8.024 7.954 7.923 8.009 8.022 7.910 7.791 7.902 8.180 8.238 7.986 7.690 7.671 7.844 8.207 8.413 8.173 7.905 7.940 8.211 8.409 8.374 8.391 8.219 8.008 7.989 8.029 7.968 7.921 7.962 8.082 8.201 8.245 8.351 8.458 8.431 8.333 8.276 8.247 8.175 8.156 8.072 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.994 7.934 8.030 8.006 7.914 7.907 8.189 8.240 8.002 7.674 7.618 7.870 8.343 8.652 8.538 8.206 8.041 8.039 8.282 8.496 8.414 8.250 7.980 7.916 8.058 7.983 7.857 7.909 7.977 8.005 8.024 8.165 8.328 8.397 8.273 8.145 8.077 8.088 8.100 8.075 8.021 7.979 7.983 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 8.072 7.940 7.945 8.073 8.024 7.851 7.670 7.679 7.936 8.373 8.756 8.780 8.331 8.081 8.008 7.928 8.041 8.377 8.459 8.073 7.811 7.771 7.772 7.696 7.755 7.900 7.981 7.943 7.879 7.949 8.010 8.144 8.188 8.041 7.960 7.965 7.988 7.939 7.867 7.961 8.018 8.019 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 8.062 8.081 8.017 7.869 7.808 7.832 7.757 7.614 7.664 7.999 8.039 7.961 8.293 8.737 8.630 8.074 7.934 8.011 8.168 8.466 8.640 8.240 7.913 7.825 7.780 7.691 7.661 7.688 7.888 7.919 7.895 7.878 7.822 7.973 8.147 8.152 8.012 7.907 7.864 7.833 7.798 7.901 8.149 8.163 8.050 8.053 8.125 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 8.047 8.054 8.040 7.997 7.981 7.758 7.690 7.689 7.720 7.687 7.814 8.376 8.630 7.887 8.000 8.304 8.407 7.986 7.970 8.194 8.279 8.524 8.625 8.329 8.080 7.921 7.891 7.822 7.917 7.752 7.845 7.903 8.001 7.902 7.851 7.909 8.079 8.154 8.115 7.925 7.747 7.728 7.812 7.922 8.038 8.000 7.921 7.937 7.985 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.767 7.684 7.662 7.675 7.781 8.012 8.344 8.737 7.875 7.403 7.813 8.453 8.335 8.323 8.298 8.317 8.292 8.245 8.259 8.160 8.014 7.904 7.930 8.121 7.893 7.912 7.861 7.861 7.794 7.853 7.972 8.144 8.069 7.890 7.777 7.687 7.730 7.814 7.906 7.936 7.939 7.852 7.920 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 8.044 7.887 7.766 7.687 7.675 7.734 7.945 8.344 8.800 8.362 7.624 7.436 7.776 8.229 8.617 8.359 8.151 8.005 7.841 7.778 7.704 7.680 7.879 8.222 8.282 8.066 8.052 7.962 7.880 7.835 7.880 7.986 7.998 7.900 7.999 7.982 7.829 7.899 7.922 7.925 7.928 8.022 7.940 7.841 7.911 8.002 8.047 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 8.047 8.039 8.072 8.102 8.104 8.080 8.018 7.922 7.824 7.767 7.747 7.852 8.259 8.675 8.574 7.678 7.148 7.409 7.996 8.369 8.343 8.153 8.109 8.039 7.909 7.763 7.727 7.870 8.030 8.020 7.957 8.008 8.011 7.977 7.854 7.819 7.808 7.783 7.745 7.815 7.843 7.860 7.943 7.997 7.943 7.956 8.064 8.077 7.962 7.973 8.044 8.129 8.119 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 8.034 8.051 8.066 8.114 8.121 8.115 8.071 8.028 7.960 7.892 7.847 7.858 8.145 8.534 8.610 7.770 7.543 8.040 8.363 8.413 8.311 8.071 7.897 7.790 7.644 7.593 7.639 7.784 7.928 7.976 7.973 8.015 8.025 7.978 7.790 7.750 7.746 7.768 7.782 7.789 7.773 7.847 7.941 8.040 8.011 7.942 7.941 7.929 7.946 7.991 7.938 8.005 8.020 7.991 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.988 7.915 7.964 8.028 8.027 8.036 7.978 7.968 8.084 8.066 8.041 8.003 7.924 7.886 8.066 8.338 8.407 8.000 8.267 8.520 8.266 8.263 8.162 7.980 7.814 7.756 7.701 7.668 7.716 7.792 7.877 7.913 7.944 8.009 8.053 8.082 7.997 7.997 7.997 7.987 7.932 7.916 7.871 7.843 7.882 8.006 8.086 8.021 7.930 7.899 8.020 8.068 7.902 7.898 7.895 7.946 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 8.001 7.957 7.902 7.920 8.008 8.025 7.997 7.997 8.092 8.080 8.063 8.031 7.996 7.938 7.894 7.950 8.145 8.261 8.235 8.409 8.260 8.061 8.048 8.109 8.044 7.936 7.970 7.881 7.787 7.805 7.834 7.873 7.914 7.965 8.020 8.051 8.044 7.960 7.981 7.997 7.997 8.005 8.005 7.989 7.946 7.924 7.920 7.997 8.042 7.944 7.897 8.002 8.076 7.959 7.958 7.928 7.983 8.015 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 8.080 8.099 8.074 7.997 7.963 7.945 7.919 7.911 7.971 8.133 8.121 8.354 8.591 8.245 8.103 8.038 8.060 7.938 7.963 8.143 8.044 7.941 7.922 7.925 7.923 7.980 7.997 8.111 8.157 8.150 8.094 7.998 7.997 7.997 7.997 7.997 8.007 8.028 7.997 7.990 7.997 7.997 7.997 7.981 7.997 7.997 7.997 8.005 7.963 7.993 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 8.060 8.085 8.076 7.998 7.997 7.997 7.997 7.997 7.997 8.005 8.082 8.092 8.228 8.179 7.964 7.897 7.979 8.085 8.039 8.002 8.045 8.022 7.997 7.986 7.974 7.988 8.014 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.975 7.991 7.996 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 8.051 8.040 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.955 7.928 8.008 7.885 7.743 7.772 7.912 7.987 7.920 7.889 7.883 7.873 7.997 8.003 7.997 8.012 8.034 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 8.003 7.937 7.840 7.875 7.959 7.963 7.859 7.810 7.800 7.792 7.812 7.997 7.997 8.008 7.999 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 8.017 7.949 7.976 7.997 7.940 7.882 7.847 7.808 7.785 7.812 7.887 8.003 8.009 7.989 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 8.006 8.000 7.997 8.001 7.997 7.941 7.940 7.835 7.917 7.952 8.049 8.065 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 8.006 7.910 7.840 7.911 7.910 7.997 7.997 7.997 8.078 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 8.029 7.997 7.913 7.946 7.983 8.015 8.162 8.159 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 8.108 8.107 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 7.997 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 7.916 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 7.700 7.786 7.969 8.085 8.128 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 7.983 7.958 8.039 8.039 8.039 8.018 7.944 7.799 7.867 8.014 8.111 8.129 8.093 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 7.913 7.713 7.655 7.738 8.039 7.883 7.793 7.949 8.062 8.108 8.122 8.099 8.082 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 7.742 7.614 7.432 7.325 7.437 7.650 7.830 8.077 8.101 8.047 8.059 8.102 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 7.987 7.627 7.455 7.382 7.500 7.697 7.755 8.001 8.045 8.019 8.054 8.133 8.192 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 7.874 7.631 7.574 7.661 7.828 7.958 8.101 8.046 8.091 8.133 8.140 8.175 8.218 8.082 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 7.790 7.756 7.795 7.944 8.149 8.413 8.412 8.295 8.156 8.179 8.190 8.156 8.156 8.178 8.095 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 7.837 7.887 7.918 7.898 7.921 8.262 8.404 8.256 8.108 8.090 8.150 8.178 8.138 8.116 8.126 8.130 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 7.966 7.965 7.980 7.817 7.787 7.935 7.938 7.968 8.108 8.095 8.067 8.119 8.149 8.111 8.075 8.078 8.062 8.062 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.121 8.045 8.080 8.031 7.990 7.882 7.754 7.883 7.929 7.665 7.765 8.078 8.171 8.151 8.084 8.067 8.095 8.050 8.018 8.034 8.002 8.088 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.076 8.119 8.118 8.122 8.043 7.989 8.017 8.070 8.202 8.355 8.265 7.856 7.884 8.096 8.130 8.148 8.144 8.088 8.021 8.006 7.990 7.965 7.990 7.983 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.087 8.053 8.061 8.015 7.987 8.010 8.078 8.182 8.349 8.498 8.323 7.970 7.938 8.025 8.040 8.054 8.075 8.100 8.074 7.979 7.961 7.979 7.979 7.967 7.973 8.085 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 7.992 8.019 8.048 8.048 8.037 8.060 8.124 8.192 8.343 8.578 8.458 8.030 7.902 7.884 7.887 7.945 8.017 8.047 8.064 8.056 8.008 7.988 8.012 7.958 7.960 8.015 8.162 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.056 8.006 8.067 8.102 8.097 8.065 8.079 8.102 8.199 8.486 8.814 8.613 8.117 7.774 7.704 7.726 7.805 7.944 8.045 8.013 8.002 8.033 8.048 8.038 8.012 7.989 8.003 8.058 8.068 8.100 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.088 8.078 8.039 8.105 8.006 7.949 8.157 8.551 8.817 8.537 8.089 7.669 7.610 7.615 7.694 7.887 8.040 8.002 7.946 8.019 8.085 8.058 8.020 8.001 7.988 8.034 8.102 8.173 8.145 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 7.903 7.842 8.047 8.397 8.467 8.235 7.946 7.583 7.542 7.535 7.590 7.836 8.043 8.001 7.894 7.890 8.010 8.055 8.056 8.045 8.001 8.048 8.118 8.194 8.221 8.141 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.021 7.915 7.845 7.886 8.082 8.071 7.988 7.852 7.528 7.528 7.582 7.579 7.752 7.999 7.999 7.872 7.809 7.890 7.955 8.050 8.090 8.052 8.042 8.128 8.207 8.267 8.298 8.142 8.110 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.038 7.883 7.846 7.870 7.795 7.813 7.817 7.553 7.538 7.679 7.711 7.784 7.932 8.012 7.860 7.789 7.837 7.912 7.968 8.067 8.091 8.060 8.080 8.179 8.255 8.296 8.298 8.203 8.116 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.014 7.924 7.918 7.907 7.862 7.757 7.725 7.728 7.554 7.519 7.670 7.804 7.902 7.955 8.024 7.906 7.843 7.855 7.941 7.913 8.053 8.085 8.077 8.099 8.138 8.195 8.278 8.313 8.290 8.232 8.112 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.006 7.837 7.875 7.899 7.890 7.879 7.796 7.745 7.655 7.557 7.600 7.768 7.964 8.044 8.066 7.988 7.992 7.969 7.971 7.953 7.996 8.048 8.088 8.084 8.143 8.188 8.243 8.299 8.299 8.274 8.222 8.101 8.091 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 7.924 7.798 7.813 7.878 7.920 7.935 7.908 7.792 7.721 7.659 7.683 7.850 8.061 8.079 8.105 8.053 8.022 8.059 8.091 8.102 8.105 8.071 8.099 8.092 8.140 8.169 8.222 8.292 8.305 8.312 8.264 8.250 8.165 8.107 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.090 8.071 7.964 7.863 7.812 7.872 7.943 7.927 7.950 7.852 7.735 7.650 7.681 7.879 8.123 8.193 8.172 8.093 7.982 8.010 8.132 8.205 8.283 8.304 8.278 8.209 8.096 8.131 8.167 8.271 8.293 8.313 8.288 8.267 8.201 8.169 8.121 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.176 8.185 8.065 7.950 7.820 7.787 7.899 7.993 7.886 7.746 7.674 7.657 7.674 7.863 7.978 8.114 8.198 8.187 8.022 7.962 7.990 8.153 8.270 8.338 8.387 8.368 8.318 8.277 8.165 8.133 8.150 8.166 8.238 8.204 8.207 8.172 8.113 8.095 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 7.934 7.974 8.039 8.039 8.045 8.064 8.039 8.083 8.099 8.085 7.999 7.852 7.756 7.846 7.976 7.914 7.664 7.579 7.654 7.700 7.907 8.042 8.074 8.148 8.167 8.053 7.945 7.956 8.103 8.317 8.332 8.295 8.299 8.321 8.344 8.377 8.257 8.110 8.136 8.131 8.108 8.123 8.144 8.098 8.076 8.066 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 7.934 7.907 8.039 8.012 7.989 8.006 8.050 8.084 8.113 8.054 7.959 7.839 7.752 7.861 8.007 7.874 7.600 7.464 7.638 7.866 7.962 8.207 8.159 8.234 8.344 8.161 7.958 7.890 7.958 8.209 8.441 8.424 8.330 8.285 8.280 8.301 8.350 8.404 8.429 8.039 8.097 8.105 8.102 8.120 8.063 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 7.990 7.997 8.007 8.010 7.999 7.979 7.951 7.886 7.817 7.907 8.015 7.895 7.604 7.484 7.603 7.846 8.095 8.385 8.112 8.068 8.252 8.277 8.152 8.038 7.913 8.062 8.285 8.513 8.500 8.435 8.372 8.297 8.250 8.286 8.389 8.497 8.320 8.253 8.210 8.149 8.063 8.053 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.050 7.987 7.958 7.921 7.935 7.945 7.906 7.835 7.829 8.006 8.017 7.830 7.700 7.740 7.938 8.211 8.395 8.204 7.972 8.124 8.252 8.247 8.150 8.117 8.131 8.274 8.432 8.581 8.612 8.496 8.369 8.283 8.248 8.278 8.389 8.477 8.431 8.366 8.142 8.077 8.057 8.042 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.015 7.891 7.919 7.965 7.947 7.828 7.783 7.950 8.156 8.060 7.891 7.864 7.962 8.312 8.460 8.257 7.979 8.075 8.299 8.435 8.376 8.340 8.223 8.242 8.360 8.459 8.454 8.485 8.401 8.277 8.196 8.190 8.318 8.387 8.379 8.348 8.307 8.232 8.165 8.069 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 7.994 7.942 7.945 7.979 7.933 7.846 7.973 8.216 8.137 7.839 7.777 7.883 8.297 8.829 8.617 8.338 8.138 8.172 8.448 8.616 8.375 8.338 8.390 8.329 8.313 8.169 8.112 8.152 8.105 8.070 8.083 8.188 8.253 8.244 8.170 8.123 8.139 8.168 8.131 8.077 7.983 7.904 8.023 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.035 7.982 7.935 7.937 7.902 7.990 8.124 7.989 7.871 7.860 7.947 8.244 8.959 8.690 8.116 7.999 8.099 8.240 8.341 8.387 8.357 8.434 8.325 8.184 8.030 7.964 8.008 8.036 7.979 7.844 7.860 7.943 7.962 7.986 8.015 8.006 8.066 8.093 8.098 8.025 7.901 7.873 7.930 7.974 7.983 8.034 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.034 7.887 7.872 7.948 8.020 7.916 7.868 8.146 8.217 8.106 8.720 8.719 8.056 7.807 7.854 8.144 8.370 8.372 8.335 8.306 8.099 8.047 7.948 7.850 7.813 7.798 7.803 7.763 7.803 7.833 7.902 8.093 8.158 8.059 8.012 7.983 7.975 8.006 7.987 8.012 8.122 8.186 8.076 8.040 8.080 8.041 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 7.809 7.751 7.754 7.832 7.867 7.887 8.260 8.695 8.059 8.244 8.475 8.163 7.928 7.889 8.173 8.339 8.589 8.734 8.522 8.281 8.217 8.059 7.937 7.965 7.628 7.612 7.719 7.855 7.850 7.839 7.946 8.043 8.102 8.166 8.156 7.919 7.836 7.934 8.118 8.293 8.403 8.137 8.016 8.045 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 7.815 7.692 7.690 7.745 7.887 8.159 8.445 8.671 7.978 7.771 7.928 8.187 8.154 8.142 8.223 8.428 8.333 8.333 8.422 8.303 8.114 7.926 8.034 8.190 7.839 7.871 7.873 7.834 7.807 7.736 7.905 8.008 8.074 8.055 8.156 7.976 7.942 7.970 8.093 8.209 8.354 8.081 7.923 8.007 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.061 7.764 7.699 7.748 7.894 8.186 8.521 8.611 8.023 7.594 7.552 8.300 8.535 8.288 8.236 8.174 8.015 8.072 8.112 8.055 7.970 7.991 8.190 8.298 8.099 8.175 8.165 8.042 7.982 7.851 8.057 8.290 8.255 8.150 8.103 8.004 8.087 8.010 8.090 8.110 8.207 8.060 7.895 7.921 8.027 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.103 8.093 8.089 7.919 7.805 7.807 7.894 8.108 8.394 8.586 8.464 7.838 7.328 7.735 8.527 8.454 8.203 8.024 7.891 8.078 8.085 7.991 7.875 7.880 7.942 8.018 8.139 8.262 8.219 8.174 8.050 8.002 8.073 8.159 8.226 8.119 8.027 8.071 8.274 8.249 8.229 8.157 8.272 8.202 8.046 8.063 8.197 8.308 8.219 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.125 8.043 7.955 7.917 7.934 8.000 8.258 8.653 8.692 7.848 7.463 7.744 8.652 8.510 8.289 8.163 7.824 7.775 7.728 7.612 7.570 7.633 7.712 7.855 8.006 8.096 8.119 8.153 7.969 7.935 7.975 7.991 8.025 8.007 7.910 7.940 8.146 8.231 8.254 8.121 8.115 8.095 8.041 8.082 8.109 8.176 8.115 8.064 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.019 7.951 7.959 7.983 8.048 8.052 8.056 8.081 8.082 8.057 8.027 7.994 7.991 8.192 8.568 8.508 7.869 8.200 8.342 8.410 8.393 8.366 8.125 7.837 7.748 7.752 7.606 7.573 7.625 7.671 7.748 7.838 7.936 8.037 8.147 8.116 8.062 8.065 8.050 8.029 7.959 7.878 7.841 7.943 8.071 8.237 8.210 8.104 8.073 8.160 8.149 8.045 8.050 7.981 8.000 8.033 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 7.998 7.938 7.940 7.947 7.982 8.039 8.039 8.039 8.131 8.072 8.028 7.988 7.955 8.031 8.252 8.297 8.050 8.438 8.384 8.085 8.095 8.185 8.107 7.913 7.901 7.975 7.790 7.727 7.739 7.748 7.772 7.816 7.878 7.928 8.008 8.022 8.022 8.041 8.070 8.033 8.012 7.998 7.971 7.957 7.975 8.089 8.146 8.060 8.026 8.134 8.219 8.126 8.086 7.960 8.024 8.057 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.116 8.102 8.049 8.006 7.957 7.949 8.033 8.247 8.267 8.349 8.559 8.258 8.167 8.121 8.155 8.013 7.903 7.976 8.094 7.986 7.931 7.940 7.930 7.937 7.981 7.991 8.012 8.051 8.064 8.071 8.084 8.105 8.124 8.039 8.100 8.106 8.117 8.056 7.982 7.997 8.060 8.017 8.046 8.154 8.269 8.170 8.043 8.055 8.053 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.115 8.114 8.100 8.078 8.039 8.039 8.039 8.062 8.182 8.206 8.324 8.188 7.942 7.951 8.012 8.054 8.110 8.075 8.016 8.071 8.042 8.040 8.045 8.044 8.054 8.081 8.079 8.039 8.039 8.039 8.097 8.095 8.039 8.039 8.039 8.039 8.039 8.079 8.073 8.039 8.028 8.039 8.051 8.036 8.081 8.234 8.208 8.061 8.035 8.025 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.020 8.126 7.968 7.785 7.811 7.926 7.961 7.953 7.932 7.911 7.924 7.943 7.986 8.041 8.043 8.073 8.065 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.055 8.038 8.018 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.095 7.991 7.878 7.880 7.958 7.954 7.924 7.906 7.876 7.871 7.834 7.913 8.039 8.039 8.053 8.052 8.030 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.026 7.974 7.990 8.039 8.040 7.941 7.930 7.896 7.833 7.842 7.882 7.924 8.039 8.092 8.063 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.056 8.039 8.039 8.062 8.039 7.878 7.961 7.893 7.908 8.009 8.031 8.151 8.157 8.159 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.067 7.972 7.863 7.879 7.942 8.007 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.086 8.039 8.039 7.969 8.026 8.093 8.122 8.222 8.252 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.181 8.202 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 8.039 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 7.809 7.945 8.094 8.153 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.014 7.930 7.929 8.018 8.134 8.158 8.162 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.067 8.100 8.100 7.954 8.022 8.161 8.279 8.298 8.195 8.148 8.137 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.063 7.934 7.568 7.656 7.821 8.208 8.493 8.391 8.182 8.135 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 7.962 7.589 7.724 8.097 8.383 8.473 8.125 8.054 8.147 8.213 8.206 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 7.921 7.855 7.938 7.989 8.347 8.533 8.409 7.941 8.000 8.144 8.247 8.242 8.249 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.095 8.066 8.124 8.291 8.477 8.581 8.435 8.052 8.078 8.169 8.247 8.308 8.332 8.328 8.159 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.098 8.187 8.191 8.051 8.128 8.472 8.226 8.112 8.170 8.242 8.297 8.325 8.334 8.314 8.149 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.143 8.105 8.118 8.136 8.002 7.774 8.003 8.329 8.160 8.144 8.102 8.144 8.241 8.297 8.307 8.305 8.292 8.171 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.168 8.181 8.136 8.078 8.043 8.040 7.995 7.848 7.882 7.863 8.008 8.264 8.149 8.051 8.092 8.182 8.248 8.255 8.261 8.273 8.227 8.172 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.144 8.120 8.089 8.055 8.017 8.016 8.086 8.184 8.232 8.337 8.175 8.170 8.300 8.176 8.056 8.023 8.059 8.140 8.178 8.190 8.205 8.254 8.206 8.176 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.048 8.052 8.053 8.053 8.063 8.110 8.173 8.256 8.419 8.577 8.298 8.183 8.221 8.123 8.056 8.057 8.057 8.059 8.066 8.099 8.144 8.197 8.198 8.161 8.183 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.118 8.025 8.099 8.105 8.143 8.167 8.177 8.213 8.297 8.620 8.857 8.359 8.051 8.054 7.997 7.992 8.076 8.135 8.121 8.067 8.043 8.091 8.153 8.167 8.136 8.141 8.198 8.162 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.125 8.176 8.134 8.157 8.136 8.169 8.395 8.863 8.885 8.309 7.873 7.900 7.876 7.880 8.020 8.151 8.155 8.124 8.061 8.040 8.090 8.147 8.132 8.107 8.130 8.179 8.164 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.023 8.129 8.439 8.753 8.641 8.199 7.749 7.783 7.809 7.846 7.977 8.125 8.163 8.123 8.116 8.082 8.068 8.078 8.115 8.083 8.098 8.123 8.237 8.186 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.072 7.884 8.039 8.332 8.485 8.363 8.094 7.693 7.711 7.770 7.841 7.975 8.103 8.152 8.117 8.115 8.098 8.084 8.077 8.087 8.053 8.070 8.121 8.173 8.236 8.193 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 7.891 7.907 8.147 8.265 8.231 8.013 7.683 7.700 7.789 7.825 7.977 8.111 8.141 8.093 8.038 8.062 8.064 8.117 8.096 8.044 8.050 8.093 8.161 8.240 8.311 8.198 8.169 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.099 7.945 7.832 7.983 8.097 8.152 7.963 7.720 7.708 7.812 7.884 7.991 8.088 8.149 8.065 8.014 8.029 8.048 8.061 8.109 8.057 8.017 8.033 8.120 8.193 8.256 8.304 8.201 8.180 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.067 7.997 7.886 7.950 8.077 8.075 7.895 7.754 7.718 7.802 7.925 8.043 8.107 8.167 8.080 8.021 8.031 8.065 8.026 8.104 8.142 8.029 8.031 8.075 8.149 8.221 8.256 8.290 8.239 8.163 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.003 7.949 7.948 7.946 8.119 8.043 7.840 7.790 7.762 7.770 7.900 8.043 8.128 8.198 8.131 8.062 8.033 8.069 8.058 8.050 8.128 8.089 8.039 8.063 8.119 8.169 8.225 8.257 8.242 8.196 8.160 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 7.983 7.910 7.923 7.950 8.045 8.072 7.864 7.788 7.781 7.770 7.889 8.060 8.124 8.223 8.158 8.077 8.051 8.111 8.150 8.145 8.165 8.165 8.115 8.042 8.089 8.146 8.207 8.233 8.234 8.214 8.169 8.166 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.078 7.978 7.920 7.888 7.898 7.941 8.058 7.977 7.849 7.780 7.764 7.885 8.088 8.196 8.264 8.219 8.096 8.076 8.184 8.279 8.298 8.322 8.351 8.286 8.157 8.037 8.019 8.157 8.200 8.202 8.240 8.174 8.100 8.153 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.155 8.058 7.969 7.871 7.864 7.917 7.942 7.963 7.968 7.855 7.806 7.906 8.030 8.192 8.259 8.310 8.138 8.084 8.138 8.351 8.454 8.455 8.499 8.486 8.356 8.219 8.100 8.100 8.136 8.139 8.136 8.131 8.122 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.077 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.136 8.123 8.038 7.882 7.810 7.892 7.925 7.836 7.903 7.922 7.870 8.094 8.186 8.160 8.173 8.342 8.217 8.043 7.999 8.173 8.494 8.583 8.569 8.591 8.607 8.376 8.247 8.232 8.100 8.100 8.107 8.087 8.087 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 7.958 7.953 8.100 8.100 8.100 8.122 8.128 8.100 8.064 8.049 8.018 7.915 7.865 7.902 7.905 7.837 7.791 7.831 7.856 8.078 8.467 8.386 8.241 8.330 8.272 8.106 8.012 7.973 8.175 8.544 8.692 8.666 8.667 8.667 8.642 8.549 8.512 8.232 8.100 8.100 8.085 8.091 8.088 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.006 7.996 8.100 8.100 8.045 8.034 8.021 8.004 8.005 7.977 7.944 7.894 7.916 8.022 8.007 7.896 7.768 7.783 7.796 8.001 8.416 8.485 8.343 8.332 8.327 8.240 8.150 8.078 8.083 8.224 8.570 8.779 8.779 8.747 8.689 8.622 8.592 8.618 8.650 8.335 8.100 8.100 8.091 8.087 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.093 8.025 8.009 7.969 7.934 7.932 7.907 7.890 7.906 8.054 8.110 8.059 7.920 7.879 7.898 8.014 8.190 8.458 8.257 8.355 8.361 8.263 8.261 8.276 8.235 8.287 8.422 8.665 8.861 8.848 8.745 8.675 8.610 8.561 8.566 8.591 8.591 8.497 8.142 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.103 7.946 7.920 7.924 7.953 7.923 7.883 7.933 8.084 8.116 8.146 8.087 8.093 8.256 8.344 8.374 8.148 8.346 8.510 8.357 8.280 8.325 8.351 8.373 8.445 8.621 8.702 8.852 8.808 8.639 8.510 8.494 8.546 8.508 8.454 8.413 8.377 8.328 8.155 8.095 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.114 8.004 7.935 7.966 7.977 7.917 7.891 8.028 8.158 8.044 8.077 8.149 8.299 8.450 8.381 8.200 8.217 8.529 8.598 8.383 8.160 8.244 8.413 8.461 8.507 8.477 8.577 8.573 8.496 8.484 8.456 8.424 8.359 8.295 8.211 8.171 8.225 8.247 8.195 8.134 8.014 7.984 8.070 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.076 7.961 7.972 7.978 7.980 8.080 8.151 8.076 8.018 8.085 8.188 8.509 8.307 8.016 8.075 8.431 8.528 8.371 8.271 8.089 8.194 8.368 8.495 8.532 8.429 8.312 8.174 8.105 8.069 8.147 8.143 8.094 8.044 8.005 8.037 8.121 8.143 8.160 8.069 7.941 7.869 7.957 8.005 8.014 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.092 7.943 7.917 7.949 8.054 8.099 8.004 8.055 8.209 8.197 8.407 8.408 7.910 7.743 7.989 8.258 8.327 8.354 8.161 8.077 8.148 8.271 8.269 8.210 7.950 7.762 7.798 7.799 7.804 7.823 7.959 8.047 8.035 7.965 7.974 7.936 7.979 8.012 7.987 7.961 8.021 8.113 8.068 8.053 8.069 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 7.994 7.839 7.838 7.939 7.979 7.969 8.082 8.409 8.334 8.415 8.380 7.988 7.802 7.885 8.087 8.282 8.580 8.641 8.381 8.268 8.325 8.092 8.102 7.980 7.615 7.794 7.807 7.746 7.703 7.669 7.740 7.816 7.889 8.027 8.082 7.900 7.820 7.862 7.917 8.104 8.310 8.208 8.082 8.080 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 7.943 7.763 7.728 7.766 7.827 7.912 8.095 8.301 8.179 8.478 8.375 8.009 7.926 8.065 8.176 8.445 8.327 8.464 8.529 8.420 8.284 7.970 8.001 8.075 7.846 7.966 7.890 7.774 7.637 7.477 7.486 7.614 7.854 8.074 8.235 7.974 7.861 7.864 7.892 8.018 8.277 8.280 8.027 8.056 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 7.763 7.701 7.724 7.817 7.949 8.198 8.361 7.964 8.167 8.268 8.270 8.239 8.122 8.315 8.213 8.281 8.427 8.374 8.212 8.138 8.087 8.030 7.977 7.805 8.025 8.272 8.250 8.019 7.726 7.826 8.014 8.105 8.242 8.263 7.999 7.948 7.915 7.990 8.045 8.089 8.119 7.908 7.801 8.061 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.019 7.763 7.748 7.872 8.095 8.219 8.371 8.321 8.299 7.996 8.237 8.710 8.297 8.149 8.347 8.256 8.139 8.233 8.166 8.031 8.008 7.910 7.930 7.968 8.123 8.239 8.224 8.127 8.057 8.085 8.259 8.424 8.411 8.223 8.179 8.178 8.217 8.253 8.284 8.161 8.063 7.937 7.854 7.953 8.129 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 7.947 7.871 7.940 8.094 8.180 8.318 8.586 8.117 7.537 7.858 8.758 8.491 8.016 8.356 8.145 7.852 7.824 7.725 7.609 7.672 7.674 7.742 7.914 8.150 8.285 8.305 8.114 8.058 8.114 8.230 8.284 8.253 8.097 8.041 8.296 8.340 8.496 8.439 8.246 8.126 8.085 7.984 7.999 8.047 8.062 8.131 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.085 8.032 8.015 8.020 8.053 8.077 8.095 8.063 8.039 8.034 8.108 8.227 8.527 8.670 7.954 7.961 8.229 8.379 8.378 8.284 8.199 7.996 7.875 7.815 7.693 7.567 7.569 7.578 7.615 7.730 7.907 8.084 8.216 8.167 8.057 8.123 8.185 8.144 7.992 7.901 7.917 8.027 8.062 8.332 8.405 8.249 8.283 8.313 8.119 8.081 8.090 8.042 8.048 8.077 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.062 7.992 7.994 7.994 8.026 8.047 8.100 8.100 8.016 8.053 8.072 8.124 8.371 8.477 7.834 8.150 8.541 8.101 8.071 8.210 8.198 8.031 7.858 7.854 7.881 7.733 7.656 7.671 7.709 7.770 7.847 7.926 8.002 8.011 7.949 7.992 8.069 8.085 8.022 7.985 7.962 8.009 8.008 8.127 8.252 8.195 8.285 8.414 8.340 8.184 8.152 8.010 8.069 8.111 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.159 8.139 8.094 8.037 8.037 8.137 8.388 8.422 8.271 8.389 8.302 8.184 8.175 8.270 8.139 7.957 7.864 7.933 8.029 7.938 7.907 7.929 7.957 7.982 7.997 7.979 7.980 7.989 7.953 7.978 8.048 8.093 8.098 8.119 8.129 8.171 8.163 8.130 8.128 8.104 8.176 8.256 8.289 8.410 8.303 8.111 8.129 8.137 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.153 8.306 8.349 8.433 8.273 8.016 7.982 8.089 8.071 8.049 8.133 8.121 8.081 8.076 8.050 8.053 8.074 8.111 8.143 8.143 8.108 8.100 8.100 8.099 8.100 8.140 8.164 8.147 8.162 8.148 8.190 8.224 8.204 8.105 8.006 8.034 8.102 8.179 8.428 8.399 8.206 8.154 8.118 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.144 8.135 8.240 8.074 7.871 7.847 7.953 7.969 7.920 7.983 8.029 8.015 7.995 7.987 8.038 8.076 8.110 8.128 8.131 8.129 8.108 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.138 8.173 8.171 8.097 8.054 8.090 8.136 8.306 8.371 8.211 8.145 8.095 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.202 8.061 7.947 7.919 7.964 7.967 7.944 8.011 8.018 7.976 7.921 7.898 7.992 8.021 8.074 8.113 8.118 8.104 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.134 8.128 8.183 8.133 8.101 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.071 8.017 7.992 8.100 8.100 8.061 8.018 8.035 8.074 7.935 7.989 7.953 8.022 8.100 8.167 8.174 8.172 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.129 8.055 7.943 7.935 8.021 7.975 8.036 8.100 8.100 8.241 8.221 8.215 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.141 8.077 7.929 7.910 7.973 8.055 8.125 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.129 8.100 8.100 8.007 8.052 8.131 8.150 8.194 8.332 8.330 8.281 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.273 8.281 8.254 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 8.100 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.056 8.154 8.189 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.236 8.193 8.222 8.189 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.180 8.604 8.720 8.595 8.363 8.230 8.195 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.327 8.713 8.924 8.819 8.499 8.298 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.173 8.474 8.640 8.535 8.297 8.288 8.375 8.427 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.009 7.977 8.162 8.269 8.503 8.512 8.291 8.003 8.130 8.263 8.346 8.452 8.268 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.174 8.197 8.162 8.162 8.375 8.360 8.257 8.045 8.048 8.138 8.224 8.429 8.506 8.283 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.400 8.421 8.234 8.076 8.110 8.319 8.236 8.225 8.204 8.148 8.279 8.473 8.514 8.368 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.204 8.224 8.300 8.349 8.168 7.968 8.021 8.295 8.325 8.437 8.261 8.187 8.249 8.261 8.446 8.467 8.458 8.247 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.152 8.120 8.149 8.174 8.138 8.010 7.829 7.827 8.222 8.499 8.274 8.123 8.169 8.239 8.215 8.319 8.446 8.462 8.306 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.081 8.085 8.078 8.077 8.174 8.237 8.218 8.212 8.216 8.333 8.459 8.229 8.055 8.071 8.170 8.224 8.252 8.264 8.282 8.479 8.333 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.153 8.162 8.152 8.185 8.235 8.243 8.265 8.406 8.372 8.289 8.358 8.163 8.041 8.074 8.130 8.167 8.207 8.233 8.265 8.225 8.371 8.273 8.260 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.213 8.169 8.198 8.378 8.659 8.558 8.298 8.285 8.143 8.058 8.164 8.140 8.143 8.153 8.202 8.213 8.221 8.162 8.286 8.239 8.263 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.151 8.265 8.586 8.764 8.568 8.238 8.221 8.130 8.110 8.149 8.175 8.162 8.153 8.158 8.175 8.182 8.220 8.246 8.185 8.198 8.231 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.158 8.294 8.635 8.700 8.500 8.172 8.151 8.119 8.126 8.171 8.207 8.190 8.171 8.154 8.134 8.122 8.181 8.218 8.215 8.156 8.176 8.217 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.561 8.567 8.410 8.116 8.058 8.076 8.154 8.208 8.223 8.224 8.198 8.162 8.130 8.108 8.116 8.190 8.204 8.154 8.092 8.190 8.216 8.220 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.387 8.496 8.306 8.015 7.955 7.989 8.131 8.271 8.281 8.243 8.200 8.165 8.135 8.098 8.118 8.144 8.152 8.142 8.084 8.060 8.131 8.220 8.226 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.268 8.466 8.246 7.950 7.854 7.874 8.079 8.249 8.329 8.294 8.206 8.175 8.158 8.122 8.104 8.122 8.119 8.095 8.061 8.055 8.050 8.111 8.215 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.157 7.998 8.060 8.238 8.312 8.219 8.143 7.927 7.811 7.947 8.164 8.302 8.330 8.265 8.203 8.189 8.179 8.112 8.116 8.176 8.033 8.035 8.031 7.994 8.086 8.079 8.209 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.131 8.066 7.967 7.864 8.152 8.212 8.150 8.051 7.947 7.823 7.896 8.073 8.215 8.292 8.275 8.231 8.223 8.226 8.174 8.121 8.149 8.181 8.088 8.054 8.037 7.982 8.028 8.053 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.127 8.023 7.983 7.882 7.961 8.144 8.082 8.009 8.018 7.893 7.899 8.033 8.134 8.199 8.220 8.197 8.188 8.260 8.301 8.208 8.235 8.162 8.054 7.972 8.000 8.164 8.125 8.034 8.052 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.034 7.971 7.876 7.862 8.029 8.060 8.018 7.989 7.925 7.936 8.073 8.108 8.116 8.157 8.146 8.144 8.220 8.361 8.377 8.311 8.292 8.262 8.095 7.959 7.991 8.115 8.105 8.042 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.132 8.069 7.983 7.876 7.819 7.910 8.035 8.103 8.020 7.948 7.953 8.002 8.057 8.041 8.112 8.094 8.107 8.145 8.308 8.459 8.446 8.452 8.371 8.232 8.150 7.994 7.948 8.150 8.158 8.145 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.125 8.032 7.903 7.851 7.884 7.947 8.094 8.103 7.987 8.040 8.110 8.099 8.018 8.079 8.075 8.057 8.082 8.211 8.438 8.577 8.539 8.554 8.493 8.343 8.166 8.138 8.030 8.162 8.138 8.129 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.109 8.093 8.162 8.162 8.162 8.162 8.162 8.162 8.130 8.117 8.084 7.995 7.915 7.903 7.963 8.044 8.085 8.004 8.076 8.257 8.313 8.175 8.109 8.024 7.985 8.008 8.077 8.302 8.591 8.681 8.617 8.628 8.653 8.548 8.321 8.234 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 7.990 7.991 8.162 8.162 8.162 8.169 8.169 8.165 8.058 8.056 8.061 8.047 8.042 7.969 8.013 8.094 8.130 8.004 8.043 8.274 8.460 8.413 8.320 8.183 8.053 7.980 8.020 8.217 8.448 8.670 8.781 8.718 8.734 8.751 8.699 8.560 8.282 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.058 8.130 8.162 8.162 8.097 8.051 8.011 8.004 7.987 7.960 7.956 8.042 8.078 8.132 8.183 8.236 8.145 8.089 8.202 8.455 8.479 8.611 8.435 8.192 8.057 8.034 8.132 8.388 8.602 8.765 8.830 8.793 8.810 8.828 8.781 8.687 8.380 8.265 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.164 8.050 8.005 7.962 7.960 7.945 7.904 7.961 8.122 8.176 8.315 8.352 8.314 8.303 8.330 8.464 8.344 8.489 8.622 8.283 8.112 8.129 8.219 8.316 8.460 8.674 8.809 8.850 8.862 8.856 8.824 8.773 8.711 8.604 8.259 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.034 7.971 7.971 8.010 7.993 7.971 8.045 8.140 8.144 8.302 8.447 8.490 8.451 8.511 8.356 8.206 8.491 8.367 8.107 7.952 8.116 8.379 8.463 8.554 8.698 8.798 8.795 8.816 8.836 8.793 8.708 8.591 8.484 8.302 8.153 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.173 7.994 8.017 8.019 8.019 8.033 8.119 8.113 8.120 8.318 8.527 8.540 8.393 8.335 8.109 8.317 8.355 8.108 7.961 7.884 8.186 8.475 8.484 8.618 8.729 8.665 8.599 8.584 8.539 8.488 8.398 8.319 8.235 8.202 8.166 8.162 8.099 8.162 8.162 8.162 8.083 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.047 7.991 8.008 8.054 8.137 8.175 8.148 8.239 8.377 8.432 8.273 8.158 7.967 8.171 8.351 8.287 8.012 7.779 7.972 8.405 8.527 8.465 8.549 8.284 8.215 8.287 8.186 8.019 7.993 8.105 8.113 8.111 8.110 8.067 7.949 8.093 8.004 8.101 8.069 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 7.961 7.950 8.007 8.100 8.166 8.212 8.271 8.334 8.380 8.120 7.930 7.865 8.078 8.211 8.226 8.207 8.105 8.065 8.541 8.715 8.452 8.418 8.074 8.031 8.278 8.130 7.869 7.743 7.738 7.780 7.855 7.956 8.028 8.014 7.913 7.872 7.880 7.732 8.102 8.136 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 7.952 7.865 7.890 8.017 8.072 8.205 8.282 8.175 8.331 8.096 7.875 7.878 8.062 8.288 8.325 8.213 8.261 8.544 8.660 8.371 8.127 8.100 7.879 7.729 7.942 8.109 8.049 7.802 7.557 7.517 7.599 7.825 8.049 8.098 7.928 7.835 7.816 7.759 7.928 8.020 8.312 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 7.992 7.778 7.778 7.878 7.944 8.096 8.250 8.080 8.193 8.209 8.115 8.056 8.163 8.235 8.297 8.321 8.516 8.429 8.364 8.018 7.989 8.168 8.005 7.724 7.792 8.122 8.245 8.186 7.835 7.692 7.797 7.916 8.141 8.135 7.912 7.827 7.848 7.874 7.913 7.979 8.277 8.297 8.119 8.118 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 7.779 7.750 7.831 7.992 8.144 8.267 8.145 8.282 8.499 8.597 8.365 8.172 8.253 8.430 8.168 8.011 8.064 8.260 8.019 7.996 8.114 8.038 7.894 7.790 7.880 7.847 8.094 8.143 7.991 8.051 8.147 8.279 8.146 8.056 7.929 8.022 8.071 8.147 8.106 8.142 8.175 7.991 7.886 8.150 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.087 7.813 7.859 8.065 8.279 8.291 8.208 8.261 7.980 8.044 8.411 8.418 8.177 8.227 8.330 8.028 7.949 8.027 7.967 7.870 7.750 7.729 7.823 8.000 8.067 8.056 8.112 8.102 8.166 8.112 8.199 8.347 8.261 8.136 8.102 8.171 8.261 8.415 8.292 8.193 8.181 8.048 7.973 7.995 8.041 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.159 8.090 8.084 8.076 8.057 7.978 7.977 8.112 8.323 8.374 8.287 7.925 7.834 8.065 8.403 8.434 8.364 8.252 8.180 8.013 7.888 7.854 7.798 7.716 7.614 7.609 7.693 7.852 7.999 8.102 8.181 8.072 8.176 8.171 8.152 8.008 7.994 8.032 8.071 7.993 8.064 8.235 8.314 8.393 8.437 8.255 8.191 8.129 8.100 8.111 8.152 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.135 8.086 8.067 8.060 8.069 8.066 8.054 8.153 8.308 8.404 8.375 7.746 7.982 8.461 8.459 8.090 8.169 8.260 8.154 7.952 7.787 7.846 7.855 7.748 7.631 7.676 7.812 7.915 7.955 8.004 8.069 7.924 7.931 8.005 7.999 7.896 7.889 7.924 8.035 8.033 7.999 8.134 8.252 8.420 8.566 8.431 8.322 8.266 8.159 8.158 8.153 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.044 8.125 8.290 8.461 8.380 8.125 8.259 8.386 8.299 8.117 8.156 8.230 8.030 7.899 7.888 7.970 7.992 7.925 7.873 7.917 8.007 8.061 8.063 8.056 8.040 8.009 7.962 7.987 7.944 7.929 7.962 7.992 8.102 8.195 8.150 8.168 8.175 8.298 8.520 8.483 8.486 8.368 8.163 8.193 8.192 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.246 8.365 8.376 8.387 8.326 8.170 8.069 8.061 8.046 8.026 8.052 8.155 8.196 8.119 8.080 8.026 8.008 8.053 8.154 8.190 8.208 8.207 8.235 8.306 8.176 8.172 8.140 8.068 8.076 7.997 8.055 8.157 8.165 8.123 8.065 8.085 8.217 8.360 8.616 8.523 8.291 8.242 8.209 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.198 8.166 8.206 8.154 8.002 7.935 7.956 7.992 7.941 7.941 8.105 8.169 8.122 8.046 8.032 8.066 8.103 8.147 8.153 8.178 8.184 8.197 8.165 8.162 8.162 8.162 8.162 8.162 8.162 8.120 8.138 8.151 8.131 8.080 8.009 7.998 8.203 8.459 8.525 8.379 8.296 8.205 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.200 8.122 8.034 7.989 7.988 8.047 7.970 8.042 8.150 8.144 8.076 8.019 8.066 8.068 8.088 8.124 8.167 8.172 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.176 8.165 8.126 8.075 8.012 8.112 8.294 8.350 8.350 8.296 8.196 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.148 8.057 8.062 8.162 8.118 8.147 8.162 8.056 8.093 8.066 8.061 8.162 8.130 8.162 8.162 8.246 8.275 8.326 8.269 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.171 8.162 8.162 8.162 8.254 8.315 8.329 8.221 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.181 8.150 8.053 7.904 8.089 8.062 8.093 8.157 8.162 8.162 8.162 8.255 8.266 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.204 8.194 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.215 8.196 8.108 7.937 7.989 8.089 8.165 8.207 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.069 8.162 8.226 8.211 8.162 8.424 8.375 8.358 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.170 8.334 8.334 8.223 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 8.162 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.222 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.268 8.264 8.245 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.422 8.269 8.229 8.256 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.222 8.355 8.330 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.346 8.200 8.120 8.279 8.421 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.173 8.231 8.228 8.228 8.228 8.309 8.171 8.060 8.208 8.282 8.246 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.345 8.590 8.353 8.368 8.286 8.228 8.194 8.174 8.195 8.154 8.080 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.310 8.709 8.708 8.386 8.180 8.151 8.320 8.439 8.507 8.272 8.094 8.222 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.495 8.574 8.353 8.178 8.191 8.361 8.586 8.843 8.429 8.153 8.239 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.178 8.257 8.336 8.296 8.240 8.146 8.184 8.589 8.776 8.410 8.130 8.195 8.228 8.509 8.336 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.202 8.284 8.258 8.279 8.465 8.655 8.371 8.137 8.176 8.233 8.343 8.442 8.419 8.284 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.226 8.238 8.341 8.449 8.534 8.595 8.349 8.176 8.196 8.183 8.233 8.378 8.424 8.435 8.438 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.225 8.323 8.541 8.681 8.709 8.574 8.335 8.215 8.209 8.191 8.190 8.234 8.287 8.418 8.423 8.402 8.314 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.701 8.726 8.662 8.498 8.312 8.256 8.238 8.200 8.196 8.209 8.226 8.272 8.363 8.386 8.395 8.336 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.526 8.702 8.542 8.350 8.265 8.295 8.301 8.263 8.225 8.223 8.222 8.219 8.256 8.293 8.356 8.361 8.302 8.274 8.252 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.465 8.679 8.413 8.194 8.154 8.329 8.333 8.302 8.250 8.230 8.212 8.184 8.189 8.206 8.249 8.306 8.290 8.208 8.263 8.246 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.497 8.506 8.298 8.021 7.958 8.217 8.367 8.314 8.234 8.211 8.204 8.182 8.183 8.170 8.185 8.213 8.259 8.229 8.166 8.265 8.252 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.385 8.441 8.188 7.922 7.815 8.198 8.237 8.272 8.234 8.187 8.186 8.189 8.191 8.168 8.223 8.167 8.133 8.221 8.034 7.983 8.255 8.242 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.331 8.228 7.865 7.761 7.952 8.228 8.251 8.263 8.200 8.172 8.206 8.198 8.121 8.130 8.180 8.143 8.130 8.113 7.989 8.011 8.236 8.237 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.041 7.812 7.832 8.004 8.212 8.268 8.268 8.241 8.223 8.224 8.146 8.104 8.228 8.203 8.248 8.153 7.972 7.969 8.121 8.082 8.231 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.174 8.149 8.097 8.196 8.228 8.228 8.228 8.195 8.117 8.052 7.938 8.025 8.147 8.241 8.255 8.254 8.250 8.163 8.123 8.126 8.228 8.228 8.192 8.117 7.824 7.915 8.061 8.061 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.149 8.083 7.999 7.874 8.228 8.228 8.254 8.278 8.264 8.228 8.125 8.029 8.040 8.117 8.229 8.233 8.266 8.313 8.175 8.190 8.272 8.286 8.098 8.057 8.059 7.804 7.987 8.041 8.001 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.200 8.083 7.983 7.858 7.885 8.121 8.215 8.265 8.316 8.206 8.193 8.060 8.021 8.030 8.111 8.168 8.220 8.298 8.367 8.312 8.256 8.289 8.291 8.136 8.061 8.131 8.041 7.840 8.014 8.039 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.198 8.110 8.008 7.856 7.843 7.948 8.127 8.237 8.271 8.217 8.156 8.133 8.054 8.032 8.052 8.100 8.161 8.215 8.340 8.438 8.406 8.367 8.348 8.230 8.224 8.069 7.988 8.068 8.023 8.058 8.110 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.217 8.141 8.085 7.936 7.847 7.944 8.054 8.167 8.211 8.199 8.169 8.202 8.136 8.070 8.014 8.044 8.086 8.150 8.271 8.449 8.520 8.512 8.446 8.427 8.264 8.109 8.058 7.885 8.155 8.047 8.064 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.116 8.164 8.228 8.228 8.228 8.228 8.228 8.228 8.123 8.166 8.150 8.058 7.911 7.974 8.121 8.186 8.144 8.143 8.157 8.222 8.227 8.154 8.045 7.981 8.022 8.060 8.172 8.356 8.540 8.686 8.709 8.593 8.563 8.411 8.209 8.082 8.180 8.143 8.100 8.069 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.121 8.052 8.115 8.228 8.228 8.228 8.233 8.228 8.104 8.109 8.115 8.101 8.018 7.997 8.200 8.316 8.226 8.142 8.135 8.186 8.268 8.262 8.140 8.047 8.016 8.029 8.040 8.203 8.437 8.650 8.863 8.819 8.708 8.630 8.521 8.370 8.244 8.228 8.246 8.083 8.086 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.121 8.117 8.189 8.228 8.228 8.194 8.063 8.032 8.024 8.001 7.991 8.042 8.035 8.259 8.463 8.426 8.355 8.266 8.216 8.247 8.255 8.294 8.140 8.088 8.128 8.144 8.177 8.298 8.488 8.750 8.939 8.862 8.713 8.650 8.598 8.524 8.452 8.451 8.365 8.081 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.205 8.061 8.008 7.985 7.988 7.947 8.003 8.105 8.217 8.432 8.556 8.556 8.479 8.415 8.396 8.191 8.271 8.233 8.079 8.122 8.204 8.332 8.430 8.488 8.543 8.759 8.869 8.843 8.706 8.653 8.622 8.579 8.544 8.438 8.347 8.327 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.201 8.022 8.027 8.032 8.043 8.047 8.117 8.193 8.302 8.474 8.616 8.541 8.418 8.440 8.229 8.141 8.283 8.122 8.019 8.106 8.257 8.502 8.618 8.594 8.598 8.574 8.631 8.683 8.598 8.496 8.462 8.427 8.415 8.459 8.449 8.299 8.286 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.059 8.052 8.075 8.102 8.133 8.245 8.282 8.375 8.514 8.466 8.237 8.219 8.166 8.070 8.150 8.211 7.998 7.969 8.124 8.395 8.585 8.524 8.445 8.346 8.353 8.397 8.364 8.245 8.217 8.256 8.305 8.342 8.367 8.296 8.208 8.280 8.228 8.228 8.129 8.134 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.081 8.047 8.086 8.145 8.193 8.313 8.367 8.396 8.359 8.064 7.920 8.114 8.061 8.107 8.085 8.048 8.014 8.048 8.341 8.598 8.304 8.188 8.103 8.136 8.190 8.058 7.955 7.988 8.004 8.047 8.158 8.222 8.180 8.157 8.180 8.131 8.202 8.069 8.141 8.169 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.000 8.015 8.105 8.150 8.219 8.376 8.304 8.273 8.162 7.911 7.932 7.984 8.134 8.203 8.019 7.947 8.261 8.636 8.481 8.229 8.161 8.015 7.916 7.986 8.022 7.983 7.865 7.848 7.845 7.878 8.027 8.125 8.144 8.100 8.062 8.063 7.919 7.910 8.184 8.196 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.171 7.922 7.908 8.009 8.143 8.139 8.207 8.184 8.191 8.207 8.039 7.925 8.043 8.117 8.144 8.177 8.250 8.352 8.651 8.269 8.186 8.414 8.201 7.790 7.801 8.022 8.097 8.125 8.037 7.841 7.773 7.855 8.083 8.139 8.066 7.983 8.033 8.064 8.003 8.041 8.117 8.274 8.211 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.047 7.837 7.892 8.097 8.199 8.225 8.084 8.168 8.399 8.245 8.004 8.064 8.251 8.247 8.184 8.343 8.366 8.556 8.371 8.237 8.298 8.086 8.023 7.943 7.973 7.855 7.974 8.091 8.025 7.836 7.711 8.053 8.145 8.086 8.029 8.108 8.189 8.162 8.180 8.210 8.550 8.512 8.227 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 7.846 7.834 8.028 8.329 8.459 8.315 8.259 8.496 8.429 8.289 8.295 8.066 8.077 8.265 8.316 8.130 8.246 8.392 8.254 7.899 7.691 7.798 8.036 8.088 7.972 7.940 7.973 8.109 7.995 7.897 8.196 8.333 8.222 8.077 8.169 8.311 8.286 8.282 8.336 8.530 8.585 8.263 8.115 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.215 8.125 7.977 7.892 7.981 8.357 8.465 8.285 8.017 8.207 8.538 8.512 8.568 8.281 8.179 8.284 8.181 7.988 8.050 8.086 7.910 7.777 7.735 7.799 7.974 8.015 7.901 7.834 7.797 8.056 8.195 8.093 8.071 8.156 8.093 8.076 8.188 8.151 8.085 8.332 8.492 8.576 8.662 8.497 8.338 8.219 8.251 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.216 8.149 8.063 8.017 8.081 8.407 8.501 8.343 8.090 8.326 8.557 8.648 8.515 8.205 8.097 8.246 8.111 7.867 7.928 7.932 7.811 7.706 7.670 7.859 8.029 8.019 7.927 7.942 7.851 7.902 8.142 8.170 8.168 8.103 7.943 7.995 8.213 8.113 7.989 8.236 8.449 8.410 8.608 8.675 8.559 8.383 8.303 8.213 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.140 8.146 8.404 8.526 8.373 8.127 8.335 8.418 8.418 8.194 7.994 7.999 8.073 7.958 7.911 8.052 8.102 8.035 7.886 7.837 7.948 8.059 8.073 8.059 8.129 8.205 8.197 8.264 8.092 8.029 8.014 7.860 7.863 8.101 8.061 8.019 8.118 8.306 8.486 8.553 8.627 8.539 8.331 8.279 8.213 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.274 8.338 8.293 8.283 8.341 8.339 8.252 8.104 8.007 7.969 8.046 8.095 8.168 8.205 8.177 8.097 7.971 7.961 8.035 8.099 8.114 8.127 8.227 8.459 8.605 8.479 8.207 8.078 8.016 7.873 7.827 7.978 7.976 7.964 8.030 8.118 8.292 8.457 8.691 8.546 8.307 8.292 8.275 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.214 8.174 8.231 8.234 8.166 8.090 8.009 8.012 8.033 8.036 8.111 8.214 8.262 8.236 8.147 8.099 8.106 8.114 8.124 8.142 8.146 8.179 8.239 8.228 8.228 8.228 8.228 8.081 7.968 7.995 8.073 8.071 8.029 7.995 8.003 7.999 8.240 8.563 8.553 8.460 8.407 8.369 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.256 8.197 8.136 8.109 8.072 8.090 8.111 8.228 8.151 8.201 8.198 8.182 8.168 8.145 8.139 8.139 8.155 8.160 8.194 8.226 8.276 8.307 8.315 8.228 8.228 8.228 8.228 8.228 8.228 8.185 8.152 8.119 8.076 8.046 8.182 8.448 8.493 8.543 8.506 8.345 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.190 8.151 8.135 8.116 8.169 8.195 8.228 8.062 8.054 8.133 8.164 8.189 8.221 8.230 8.228 8.228 8.256 8.318 8.311 8.310 8.297 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.208 8.220 8.231 8.261 8.306 8.391 8.390 8.453 8.522 8.311 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.242 8.263 8.199 7.861 7.924 8.134 8.186 8.211 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.235 8.252 8.363 8.401 8.422 8.385 8.306 8.419 8.323 8.224 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.297 8.314 8.224 8.228 8.005 8.050 8.167 8.273 8.340 8.258 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.291 8.399 8.357 8.281 8.304 8.249 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.192 8.159 8.228 8.272 8.271 8.228 8.424 8.435 8.449 8.430 8.312 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.240 8.177 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.410 8.423 8.405 8.391 8.335 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 8.228 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.307 8.329 8.375 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.404 8.536 8.498 8.358 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.326 8.270 8.510 8.686 8.472 8.320 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.437 8.543 8.347 8.347 8.347 8.302 8.243 8.262 8.516 8.545 8.320 8.316 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.585 8.917 8.772 8.439 8.364 8.294 8.280 8.401 8.689 8.579 8.328 8.360 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.460 9.039 8.945 8.607 8.348 8.268 8.351 8.576 9.032 8.781 8.499 8.542 8.444 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.521 8.701 8.608 8.419 8.330 8.398 8.689 9.120 8.767 8.507 8.602 8.735 8.522 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.506 8.507 8.389 8.385 8.658 8.862 8.650 8.411 8.495 8.670 8.748 8.685 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.469 8.456 8.471 8.609 8.737 8.561 8.356 8.352 8.482 8.623 8.636 8.602 8.426 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.438 8.583 8.714 8.678 8.462 8.331 8.326 8.351 8.373 8.551 8.599 8.613 8.457 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.708 8.620 8.402 8.327 8.322 8.324 8.335 8.367 8.440 8.596 8.586 8.521 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.515 8.748 8.509 8.352 8.335 8.337 8.320 8.317 8.326 8.342 8.347 8.536 8.545 8.486 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.638 8.558 8.315 8.281 8.347 8.361 8.355 8.335 8.342 8.353 8.340 8.347 8.347 8.379 8.428 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.184 8.269 8.347 8.347 8.347 8.347 8.347 8.337 8.314 8.342 8.347 8.347 8.328 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.176 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.335 8.338 8.290 8.247 8.328 8.347 8.347 8.347 8.340 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.210 8.347 8.347 8.347 8.347 8.290 8.347 8.347 8.347 8.347 8.335 8.338 8.239 8.266 8.319 8.347 8.347 8.345 8.346 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.297 8.247 8.314 8.347 8.347 8.291 8.271 8.281 8.314 8.347 8.334 8.326 8.221 8.218 8.286 8.310 8.347 8.347 8.351 8.345 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.167 8.216 8.347 8.347 8.288 8.272 8.238 8.268 8.332 8.291 8.287 8.108 8.134 8.310 8.347 8.183 8.347 8.341 8.345 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.162 8.066 8.219 8.347 8.295 8.301 8.222 8.223 8.227 8.292 8.226 8.143 8.223 8.316 8.347 8.164 8.347 8.346 8.348 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.304 8.311 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.054 8.107 8.102 8.295 8.318 8.296 8.217 8.180 8.197 8.332 8.188 8.219 8.293 8.391 8.221 8.108 8.347 8.348 8.346 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.245 8.197 8.144 8.347 8.347 8.347 8.347 8.665 8.347 8.347 8.206 8.020 8.010 8.155 8.225 8.271 8.326 8.252 8.215 8.240 8.350 8.231 8.232 8.335 8.234 8.135 8.068 8.347 8.348 8.346 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.280 8.165 8.102 8.036 8.187 8.347 8.347 8.603 8.587 8.362 8.347 8.117 8.072 8.047 8.129 8.227 8.302 8.284 8.259 8.228 8.347 8.332 8.270 8.252 8.323 8.230 8.117 7.957 8.201 8.345 8.346 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.302 8.203 8.120 8.056 8.095 8.151 8.263 8.420 8.521 8.375 8.274 8.240 8.165 8.124 8.162 8.170 8.196 8.247 8.298 8.303 8.317 8.347 8.347 8.366 8.407 8.265 8.130 8.014 7.976 8.167 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.292 8.242 8.177 8.069 8.097 8.184 8.227 8.278 8.402 8.352 8.286 8.251 8.211 8.154 8.151 8.173 8.179 8.168 8.253 8.343 8.393 8.422 8.353 8.356 8.391 8.344 8.298 8.005 7.984 7.906 8.169 8.347 8.348 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.281 8.291 8.287 8.347 8.347 8.347 8.347 8.347 8.266 8.243 8.211 8.148 8.099 8.214 8.285 8.246 8.260 8.312 8.255 8.249 8.234 8.188 8.151 8.187 8.246 8.187 8.171 8.298 8.418 8.528 8.555 8.361 8.374 8.366 8.336 8.263 8.102 8.022 7.979 8.152 8.350 8.351 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.297 8.168 8.165 8.292 8.347 8.347 8.347 8.347 8.210 8.187 8.178 8.194 8.123 8.206 8.364 8.371 8.321 8.317 8.261 8.262 8.252 8.221 8.159 8.144 8.262 8.295 8.182 8.219 8.342 8.459 8.619 8.651 8.500 8.445 8.391 8.346 8.284 7.981 8.125 7.980 8.093 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.291 8.193 8.173 8.312 8.347 8.347 8.347 8.275 8.113 8.113 8.141 8.153 8.185 8.365 8.483 8.454 8.392 8.348 8.335 8.254 8.215 8.204 8.092 8.136 8.278 8.276 8.256 8.326 8.355 8.451 8.599 8.678 8.629 8.534 8.402 8.318 8.285 8.178 8.214 7.975 8.105 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.241 8.239 8.347 8.347 8.332 8.151 8.125 8.111 8.114 8.114 8.150 8.342 8.507 8.559 8.490 8.381 8.324 8.313 8.201 8.243 8.154 8.009 8.115 8.249 8.290 8.362 8.382 8.324 8.291 8.451 8.624 8.585 8.438 8.338 8.264 8.160 8.290 8.191 8.122 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.164 8.146 8.139 8.152 8.148 8.164 8.327 8.490 8.593 8.542 8.405 8.268 8.263 8.258 8.121 8.179 8.043 8.001 8.159 8.248 8.296 8.319 8.323 8.291 8.276 8.374 8.475 8.417 8.282 8.239 8.259 8.223 8.191 8.122 8.189 8.424 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.159 8.158 8.208 8.253 8.247 8.416 8.517 8.528 8.498 8.399 8.212 8.163 8.088 8.110 8.075 8.052 7.977 8.097 8.310 8.259 8.234 8.283 8.301 8.308 8.252 8.202 8.200 8.256 8.207 8.197 8.228 8.192 8.103 8.123 8.246 8.351 8.364 8.342 8.247 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.171 8.184 8.270 8.328 8.406 8.608 8.497 8.349 8.256 8.148 8.088 7.979 8.014 8.099 8.077 7.947 8.035 8.427 8.332 8.146 8.264 8.226 8.212 8.224 8.203 8.205 8.179 8.209 8.191 8.159 8.129 8.014 8.053 8.152 8.226 8.376 8.355 8.305 8.293 8.288 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.322 8.121 8.164 8.287 8.335 8.471 8.493 8.310 8.225 8.112 7.981 8.071 7.947 8.034 8.269 8.277 8.113 8.374 8.247 8.268 8.233 8.177 8.034 8.073 8.128 8.232 8.462 8.464 8.251 8.133 8.058 8.004 8.046 8.088 8.112 8.259 8.325 8.217 8.379 8.335 8.329 8.315 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.318 8.012 8.035 8.176 8.326 8.355 8.325 8.351 8.357 8.184 7.929 7.988 8.099 8.209 8.433 8.650 8.460 8.591 8.397 8.429 8.446 8.247 8.355 8.206 8.132 8.115 8.339 8.519 8.575 8.323 7.995 8.092 8.200 8.137 8.068 8.185 8.333 8.337 8.406 8.388 8.489 8.371 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 7.952 8.071 8.362 8.479 8.327 8.312 8.552 8.448 7.964 7.911 8.006 8.182 8.595 8.578 8.366 8.383 8.475 8.599 8.465 8.209 8.240 8.278 8.335 8.230 8.224 8.338 8.667 8.492 8.326 8.246 8.358 8.418 8.285 8.254 8.431 8.511 8.519 8.560 8.648 8.904 8.484 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 7.949 8.020 8.368 8.629 8.477 8.334 8.636 8.761 8.240 8.239 8.210 8.247 8.517 8.480 8.175 8.441 8.524 8.414 8.407 8.315 8.086 8.108 8.386 8.328 8.301 8.245 8.465 8.425 8.320 8.304 8.251 8.402 8.561 8.448 8.449 8.475 8.570 8.709 8.713 8.925 9.080 8.851 8.363 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.078 8.373 8.762 8.569 8.589 8.791 8.576 8.309 8.414 8.617 8.400 8.375 8.373 8.237 8.390 8.255 8.088 7.994 7.867 7.798 7.894 8.076 8.086 8.189 8.271 8.222 8.320 8.336 8.291 8.149 8.116 8.204 8.403 8.570 8.548 8.611 8.688 8.548 8.719 9.082 9.021 8.740 8.518 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.198 8.439 8.757 8.685 8.406 8.518 8.300 8.326 8.237 8.268 8.221 8.092 8.028 8.053 8.271 8.276 8.227 8.138 7.997 7.978 8.047 8.044 8.002 8.157 8.452 8.598 8.720 8.443 8.422 8.472 8.162 8.080 8.401 8.488 8.565 8.643 8.689 8.656 8.616 8.820 8.929 8.703 8.428 8.223 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.342 8.441 8.451 8.333 8.385 8.374 8.529 8.338 8.258 8.192 8.147 8.247 8.268 8.309 8.255 8.232 8.174 8.122 8.155 8.166 8.082 7.954 8.037 8.486 8.876 8.705 8.414 8.432 8.490 8.279 8.107 8.304 8.328 8.299 8.327 8.539 8.711 8.568 8.666 8.676 8.545 8.440 8.307 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.330 8.326 8.309 8.343 8.377 8.356 8.372 8.261 8.230 8.261 8.290 8.345 8.365 8.358 8.341 8.357 8.336 8.296 8.252 8.199 8.125 8.028 8.056 8.273 8.541 8.469 8.401 8.440 8.365 8.267 8.198 8.327 8.328 8.204 8.090 8.127 8.238 8.319 8.483 8.446 8.445 8.537 8.516 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.328 8.305 8.307 8.280 8.267 8.293 8.328 8.344 8.296 8.241 8.243 8.268 8.260 8.239 8.241 8.239 8.231 8.205 8.212 8.284 8.375 8.357 8.336 8.370 8.304 8.254 8.208 8.310 8.394 8.335 8.238 8.136 8.146 8.306 8.466 8.388 8.407 8.560 8.611 8.531 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.273 8.281 8.277 8.288 8.329 8.347 8.234 8.000 8.115 8.194 8.299 8.325 8.354 8.408 8.415 8.377 8.328 8.290 8.297 8.299 8.262 8.214 8.347 8.347 8.347 8.253 8.266 8.371 8.379 8.407 8.405 8.454 8.479 8.509 8.427 8.407 8.519 8.452 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.393 8.329 8.146 7.953 8.136 8.123 8.336 8.339 8.424 8.465 8.480 8.500 8.383 8.347 8.347 8.346 8.325 8.318 8.347 8.347 8.347 8.347 8.347 8.347 8.356 8.382 8.505 8.634 8.636 8.606 8.533 8.393 8.464 8.393 8.345 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.438 8.397 8.347 8.347 8.120 8.221 8.312 8.430 8.480 8.507 8.347 8.347 8.347 8.381 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.422 8.439 8.674 8.630 8.558 8.431 8.434 8.334 8.337 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.340 8.347 8.347 8.374 8.366 8.347 8.347 8.546 8.554 8.564 8.599 8.553 8.435 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.423 8.424 8.555 8.493 8.481 8.338 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.513 8.536 8.568 8.554 8.532 8.499 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.387 8.395 8.433 8.472 8.403 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 8.347 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.600 8.665 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.594 8.558 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.522 8.481 8.454 8.454 8.454 8.454 8.454 8.915 8.890 8.547 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.983 8.909 8.690 8.548 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.969 8.710 8.477 8.645 8.534 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.405 8.380 8.446 8.440 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.410 8.454 8.414 8.375 8.407 8.442 8.454 8.454 8.387 8.331 8.426 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.346 8.345 8.454 8.407 8.392 8.385 8.379 8.454 8.438 8.313 8.340 8.413 8.454 8.454 8.454 8.454 8.454 8.453 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.420 8.433 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.335 8.248 8.334 8.415 8.347 8.254 8.277 8.454 8.367 8.303 8.383 8.424 8.454 8.454 8.454 8.454 8.453 8.453 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.398 8.339 8.288 8.405 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.379 8.296 8.266 8.227 8.207 8.384 8.306 8.184 8.210 8.394 8.196 8.252 8.416 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.423 8.332 8.268 8.310 8.364 8.447 8.454 8.617 8.401 8.454 8.454 8.454 8.317 8.283 8.265 8.190 8.088 8.287 8.321 8.213 8.269 8.296 8.215 8.301 8.387 8.454 8.454 8.454 8.454 8.454 8.454 8.456 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.354 8.294 8.309 8.353 8.359 8.450 8.602 8.626 8.454 8.454 8.454 8.362 8.309 8.321 8.315 8.029 8.069 8.279 8.316 8.283 8.315 8.292 8.301 8.397 8.454 8.454 8.454 8.306 8.283 8.454 8.459 8.462 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.399 8.454 8.454 8.454 8.454 8.454 8.454 8.315 8.321 8.308 8.326 8.372 8.417 8.522 8.582 8.346 8.310 8.454 8.454 8.287 8.310 8.353 8.328 8.094 8.125 8.191 8.290 8.343 8.365 8.380 8.367 8.391 8.454 8.454 8.454 8.281 8.290 8.454 8.462 8.460 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.315 8.394 8.386 8.454 8.454 8.454 8.395 8.318 8.276 8.303 8.325 8.362 8.424 8.483 8.552 8.518 8.311 8.229 8.224 8.277 8.266 8.297 8.364 8.318 8.215 8.167 8.198 8.250 8.340 8.416 8.443 8.388 8.432 8.448 8.451 8.454 8.274 8.259 8.454 8.449 8.446 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.352 8.258 8.287 8.397 8.454 8.454 8.454 8.274 8.237 8.299 8.379 8.382 8.399 8.468 8.533 8.541 8.362 8.305 8.257 8.251 8.221 8.205 8.260 8.386 8.349 8.236 8.183 8.135 8.167 8.360 8.468 8.450 8.438 8.467 8.463 8.461 8.187 8.285 8.259 8.454 8.445 8.458 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.332 8.316 8.285 8.403 8.426 8.454 8.454 8.279 8.284 8.355 8.418 8.395 8.421 8.505 8.548 8.401 8.270 8.291 8.256 8.215 8.135 8.094 8.231 8.375 8.303 8.175 8.115 8.115 8.298 8.458 8.519 8.460 8.371 8.456 8.481 8.420 8.267 8.295 8.142 8.454 8.459 8.457 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.405 8.343 8.344 8.454 8.454 8.454 8.308 8.307 8.340 8.453 8.466 8.401 8.415 8.504 8.459 8.282 8.222 8.243 8.176 8.156 8.069 8.106 8.327 8.351 8.214 8.183 8.142 8.261 8.361 8.420 8.419 8.423 8.430 8.383 8.392 8.353 8.113 8.072 8.150 8.473 8.470 8.442 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.408 8.371 8.454 8.384 8.300 8.337 8.410 8.490 8.591 8.469 8.327 8.393 8.489 8.366 8.236 8.187 8.130 8.134 8.097 8.050 8.232 8.390 8.255 8.194 8.157 8.173 8.213 8.270 8.364 8.395 8.441 8.468 8.363 8.256 8.113 8.077 8.017 8.137 8.496 8.487 8.449 8.417 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.251 8.305 8.443 8.565 8.703 8.652 8.400 8.295 8.381 8.338 8.293 8.141 8.120 8.113 8.134 8.145 8.184 8.241 8.333 8.114 8.032 8.063 8.030 8.106 8.189 8.417 8.512 8.466 8.364 8.115 7.904 7.866 7.961 7.954 8.157 8.483 8.547 8.497 8.459 8.430 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.240 8.335 8.542 8.767 8.786 8.543 8.313 8.300 8.228 8.171 8.226 8.253 8.341 8.306 8.307 8.326 8.244 8.319 8.263 8.096 8.265 8.180 8.101 8.107 8.228 8.406 8.543 8.374 8.103 7.974 8.014 7.960 7.887 8.011 8.290 8.421 8.536 8.521 8.499 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.312 8.189 8.381 8.647 8.788 8.653 8.467 8.423 8.278 8.159 8.178 8.327 8.555 8.648 8.607 8.482 8.380 8.381 8.383 8.415 8.641 8.582 8.545 8.350 8.169 8.272 8.489 8.389 8.193 8.108 8.218 8.159 7.958 7.974 8.186 8.462 8.580 8.659 8.663 8.569 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.156 8.302 8.518 8.711 8.626 8.601 8.606 8.437 8.375 8.323 8.386 8.511 8.653 8.699 8.913 8.645 8.772 8.978 8.908 8.789 8.560 8.719 8.609 8.388 8.321 8.368 8.316 8.299 8.215 8.185 8.258 8.226 8.095 8.186 8.439 8.658 8.881 8.914 8.898 8.909 8.800 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.383 8.564 8.611 8.566 8.622 8.646 8.464 8.543 8.666 8.659 8.683 8.618 8.548 8.859 8.867 8.566 8.387 8.391 8.534 8.576 8.775 8.505 8.421 8.416 8.213 8.261 8.316 8.214 8.095 8.142 8.227 8.252 8.369 8.496 8.630 8.780 8.776 8.785 8.912 8.908 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.497 8.725 8.711 8.538 8.597 8.521 8.381 8.480 8.516 8.667 8.599 8.399 8.390 8.547 8.453 8.363 8.330 8.271 8.451 8.745 8.700 8.307 8.276 8.392 8.307 8.302 8.271 8.270 8.255 8.144 8.163 8.347 8.452 8.466 8.510 8.605 8.691 8.676 8.849 9.293 9.238 8.642 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.445 8.600 8.631 8.444 8.503 8.491 8.597 8.739 8.552 8.590 8.552 8.623 8.752 8.606 8.377 8.343 8.305 8.225 8.364 8.531 8.444 8.053 7.935 8.309 8.722 8.505 8.337 8.464 8.526 8.395 8.196 8.325 8.417 8.308 8.275 8.429 8.622 8.623 8.667 8.897 9.062 8.865 8.489 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.445 8.442 8.455 8.492 8.581 8.556 8.592 8.670 8.536 8.633 8.669 8.608 8.527 8.491 8.537 8.540 8.384 8.244 8.251 8.317 8.309 8.122 8.048 8.226 8.537 8.549 8.626 8.699 8.631 8.528 8.477 8.612 8.533 8.332 8.288 8.227 8.346 8.414 8.402 8.440 8.589 8.719 8.570 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.521 8.518 8.541 8.515 8.538 8.575 8.599 8.487 8.364 8.342 8.364 8.304 8.193 8.185 8.281 8.342 8.264 8.208 8.285 8.379 8.385 8.435 8.512 8.468 8.418 8.380 8.541 8.695 8.575 8.530 8.301 8.321 8.406 8.344 8.203 8.236 8.518 8.567 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.446 8.428 8.444 8.470 8.484 8.497 8.534 8.300 8.208 8.249 8.383 8.385 8.327 8.340 8.376 8.363 8.296 8.237 8.239 8.262 8.268 8.292 8.303 8.257 8.200 8.180 8.360 8.554 8.596 8.713 8.605 8.632 8.578 8.459 8.233 8.173 8.379 8.494 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.508 8.509 8.454 8.454 8.454 8.241 8.280 8.359 8.354 8.468 8.525 8.514 8.498 8.476 8.457 8.432 8.394 8.349 8.304 8.228 8.168 8.124 8.231 8.396 8.483 8.707 8.822 8.894 8.795 8.651 8.427 8.285 8.380 8.466 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.532 8.519 8.454 8.454 8.454 8.308 8.334 8.439 8.537 8.598 8.618 8.590 8.557 8.594 8.568 8.565 8.532 8.519 8.497 8.424 8.338 8.255 8.280 8.331 8.338 8.454 8.572 8.822 8.914 8.813 8.632 8.466 8.464 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.648 8.638 8.626 8.624 8.607 8.555 8.493 8.458 8.393 8.360 8.454 8.454 8.454 8.454 8.532 8.531 8.697 8.589 8.561 8.521 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.630 8.645 8.641 8.635 8.597 8.556 8.556 8.506 8.439 8.454 8.454 8.454 8.454 8.454 8.518 8.516 8.562 8.594 8.558 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.534 8.529 8.514 8.517 8.519 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 8.454 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.530 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.450 8.409 8.497 8.508 8.525 8.512 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.438 8.446 8.496 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.458 8.416 8.465 8.423 8.449 8.480 8.481 8.440 8.510 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.455 8.403 8.429 8.469 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.472 8.525 8.525 8.450 8.292 8.413 8.385 8.395 8.392 8.391 8.440 8.487 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.430 8.398 8.428 8.423 8.518 8.525 8.537 8.525 8.525 8.525 8.525 8.471 8.478 8.525 8.525 8.525 8.162 8.191 8.370 8.368 8.363 8.415 8.501 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.506 8.502 8.525 8.525 8.525 8.525 8.525 8.377 8.410 8.417 8.427 8.446 8.498 8.719 8.567 8.525 8.525 8.525 8.525 8.394 8.397 8.525 8.456 8.445 8.147 8.128 8.336 8.302 8.375 8.394 8.500 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.507 8.410 8.469 8.478 8.525 8.525 8.486 8.423 8.392 8.446 8.454 8.444 8.526 8.663 8.653 8.533 8.489 8.388 8.351 8.377 8.298 8.358 8.416 8.453 8.367 8.102 8.072 8.231 8.351 8.419 8.447 8.476 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.526 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.425 8.416 8.416 8.450 8.472 8.525 8.387 8.384 8.477 8.500 8.444 8.446 8.575 8.654 8.505 8.387 8.469 8.360 8.339 8.272 8.273 8.366 8.422 8.408 8.355 8.240 8.154 8.264 8.343 8.390 8.488 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.505 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.421 8.395 8.323 8.459 8.474 8.525 8.401 8.478 8.562 8.491 8.393 8.453 8.639 8.575 8.410 8.333 8.358 8.312 8.268 8.231 8.298 8.379 8.320 8.235 8.189 8.150 8.136 8.227 8.331 8.468 8.547 8.525 8.525 8.525 8.525 8.525 8.525 8.527 8.533 8.532 8.528 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.456 8.369 8.399 8.464 8.495 8.508 8.518 8.631 8.637 8.453 8.375 8.498 8.576 8.444 8.331 8.345 8.300 8.257 8.297 8.271 8.215 8.252 8.152 8.066 8.051 8.014 8.108 8.211 8.377 8.519 8.638 8.525 8.525 8.525 8.525 8.525 8.525 8.578 8.587 8.576 8.560 8.534 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.431 8.422 8.440 8.439 8.541 8.705 8.733 8.581 8.393 8.416 8.509 8.436 8.338 8.381 8.406 8.317 8.320 8.345 8.254 8.151 8.081 8.001 8.047 8.044 8.082 8.155 8.254 8.443 8.581 8.520 8.309 8.206 8.525 8.525 8.525 8.525 8.602 8.606 8.593 8.566 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.403 8.525 8.474 8.708 8.845 8.721 8.465 8.397 8.441 8.453 8.343 8.389 8.438 8.479 8.427 8.433 8.398 8.251 8.072 8.059 8.148 8.188 8.292 8.260 8.197 8.330 8.531 8.487 8.263 8.146 8.427 8.525 8.358 8.436 8.413 8.525 8.604 8.595 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.374 8.544 8.839 8.857 8.572 8.432 8.435 8.521 8.479 8.444 8.466 8.565 8.556 8.673 8.640 8.589 8.409 8.193 8.184 8.166 8.393 8.399 8.311 8.337 8.394 8.423 8.321 8.269 8.293 8.314 8.298 8.308 8.468 8.459 8.540 8.562 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.506 8.672 8.863 8.648 8.490 8.457 8.567 8.662 8.676 8.662 8.585 8.561 8.642 8.815 8.789 8.477 8.205 8.104 8.236 8.488 8.424 8.424 8.463 8.243 8.297 8.419 8.388 8.319 8.261 8.259 8.291 8.328 8.453 8.513 8.525 8.525 8.670 8.760 8.669 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.558 8.603 8.679 8.704 8.673 8.520 8.585 8.653 8.797 8.657 8.436 8.472 8.723 8.582 8.504 8.398 8.167 8.255 8.589 8.628 8.272 8.504 8.693 8.320 8.154 8.375 8.399 8.361 8.343 8.315 8.281 8.332 8.360 8.439 8.484 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.638 8.595 8.705 8.764 8.588 8.815 8.693 8.904 8.827 8.658 8.789 9.011 8.843 8.584 8.225 8.010 8.212 8.475 8.631 8.067 8.173 8.707 8.751 8.419 8.281 8.343 8.459 8.554 8.396 8.264 8.275 8.226 8.314 8.338 8.360 8.455 8.425 8.458 8.525 8.710 8.556 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.630 8.800 8.799 8.739 8.899 8.807 8.958 9.136 8.818 8.505 8.596 8.785 8.751 8.462 8.184 8.120 8.196 8.361 8.117 8.162 8.525 8.623 8.732 8.914 8.803 8.720 8.766 8.609 8.472 8.355 8.259 8.386 8.287 8.229 8.298 8.288 8.266 8.564 8.776 8.641 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.764 8.740 8.795 8.744 8.733 8.800 8.822 8.693 8.577 8.486 8.445 8.302 8.143 8.093 8.174 8.297 8.081 8.031 8.298 8.466 8.554 8.747 8.900 8.927 8.929 8.746 8.500 8.469 8.469 8.672 8.475 8.284 8.283 8.281 8.120 8.126 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.615 8.660 8.671 8.630 8.605 8.658 8.658 8.566 8.492 8.517 8.465 8.252 8.184 8.212 8.220 8.082 7.996 8.079 8.210 8.316 8.446 8.665 8.673 8.589 8.520 8.505 8.640 8.763 8.989 8.803 8.587 8.412 8.373 8.180 8.108 8.311 8.506 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.522 8.559 8.554 8.593 8.605 8.522 8.525 8.525 8.513 8.475 8.407 8.366 8.410 8.405 8.376 8.350 8.344 8.325 8.326 8.355 8.432 8.436 8.362 8.263 8.372 8.616 8.769 9.010 9.078 8.973 8.688 8.547 8.380 8.194 8.316 8.510 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.499 8.525 8.525 8.602 8.608 8.560 8.555 8.541 8.532 8.511 8.490 8.507 8.494 8.428 8.373 8.406 8.511 8.684 8.903 9.009 9.082 9.036 8.897 8.675 8.409 8.392 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.526 8.617 8.612 8.610 8.608 8.578 8.524 8.520 8.510 8.516 8.576 8.788 8.892 8.903 9.004 9.131 8.928 8.688 8.544 8.569 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.558 8.617 8.586 8.572 8.551 8.478 8.502 8.653 8.761 8.772 8.800 8.608 8.972 8.800 8.608 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.587 8.579 8.610 8.604 8.613 8.607 8.626 8.650 8.624 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 8.525 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.683 8.719 8.726 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.700 8.679 8.655 8.662 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.683 8.637 8.656 8.648 8.721 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.720 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.673 8.671 8.725 8.725 8.721 8.669 8.660 8.644 8.635 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.593 8.725 8.725 8.725 8.725 8.725 8.703 8.606 8.699 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.706 8.640 8.637 8.668 8.657 8.702 8.702 8.720 8.655 8.624 8.686 8.844 8.733 8.725 8.725 8.725 8.725 8.725 8.562 8.527 8.725 8.725 8.725 8.725 8.725 8.485 8.523 8.629 8.697 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.669 8.617 8.531 8.673 8.692 8.762 8.803 8.732 8.636 8.656 8.769 8.790 8.717 8.713 8.725 8.725 8.725 8.725 8.541 8.463 8.614 8.725 8.725 8.725 8.622 8.486 8.436 8.558 8.724 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.680 8.587 8.543 8.596 8.700 8.854 8.828 8.691 8.624 8.686 8.754 8.679 8.674 8.656 8.634 8.671 8.690 8.657 8.541 8.350 8.396 8.403 8.439 8.532 8.597 8.482 8.435 8.576 8.716 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.547 8.578 8.665 8.822 8.828 8.693 8.591 8.652 8.788 8.797 8.728 8.647 8.671 8.653 8.646 8.719 8.688 8.529 8.320 8.208 8.223 8.429 8.546 8.584 8.440 8.400 8.457 8.428 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.641 8.631 8.742 8.822 8.661 8.504 8.655 8.904 8.998 8.918 8.839 8.728 8.675 8.627 8.656 8.735 8.630 8.354 8.133 8.159 8.290 8.318 8.432 8.459 8.289 8.271 8.351 8.522 8.688 8.725 8.671 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.699 8.742 8.734 8.545 8.648 9.026 9.072 8.957 8.815 8.682 8.724 8.817 8.643 8.496 8.412 8.319 8.292 8.286 8.227 8.090 8.280 8.469 8.328 8.137 8.216 8.476 8.608 8.681 8.642 8.675 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.737 8.800 8.794 8.688 8.988 8.930 8.885 8.836 8.774 8.859 8.966 8.803 8.453 8.167 8.067 8.173 8.310 8.465 8.066 7.941 8.223 8.402 8.360 8.249 8.374 8.619 8.743 8.661 8.599 8.658 8.750 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.905 8.894 8.910 9.129 9.029 9.045 9.136 8.979 8.720 8.707 8.800 8.752 8.359 7.972 7.950 8.267 8.687 8.101 7.857 8.089 8.475 8.703 8.549 8.451 8.711 8.931 8.860 8.729 8.673 8.631 8.722 8.671 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.890 9.075 9.187 9.094 8.903 8.825 9.099 9.191 8.837 8.709 8.658 8.299 7.961 7.909 8.169 8.484 7.969 7.773 8.038 8.535 8.626 8.501 8.695 9.070 9.206 9.233 8.923 8.847 8.795 8.913 8.795 8.743 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 9.066 9.035 8.831 8.680 8.929 9.141 9.000 8.831 8.898 8.818 8.366 8.086 8.065 8.171 8.010 7.943 8.118 8.403 8.476 8.485 8.903 9.169 9.084 9.307 9.226 9.226 9.137 9.224 9.008 8.823 8.726 8.651 8.616 8.370 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.852 8.762 8.737 8.838 8.831 8.782 8.734 8.932 8.939 8.586 8.334 8.255 8.319 8.313 8.360 8.435 8.467 8.454 8.463 8.647 8.854 8.933 8.927 9.079 9.376 9.388 9.449 9.252 9.108 8.907 8.785 8.639 8.472 8.522 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.690 8.725 8.725 8.657 8.674 8.668 8.612 8.560 8.538 8.555 8.582 8.642 8.787 8.946 9.224 9.433 9.320 9.262 9.267 9.145 8.924 8.661 8.578 8.703 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.728 8.770 8.762 8.734 8.704 8.629 8.537 8.616 8.706 8.691 8.823 9.228 9.302 9.163 9.250 9.447 9.287 8.987 8.779 8.777 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.736 8.786 8.787 8.722 8.670 8.642 8.660 8.496 8.567 8.888 9.065 9.058 9.065 9.219 9.292 9.179 9.008 8.867 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.798 8.750 8.666 8.725 8.725 8.725 8.725 8.688 8.859 8.886 8.947 9.073 9.122 9.107 8.993 8.854 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 8.725 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.792 8.800 8.737 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.728 8.800 8.799 8.742 8.728 8.773 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.754 8.761 8.821 8.740 8.724 8.755 8.765 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.773 8.760 8.758 8.778 8.730 8.688 8.739 8.814 8.782 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.702 8.701 8.757 8.665 8.652 8.751 8.902 8.870 8.882 8.889 8.855 8.800 8.800 8.725 8.800 8.620 8.582 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.725 8.674 8.671 8.661 8.755 8.965 9.019 8.966 8.899 8.853 8.871 8.839 8.681 8.519 8.510 8.494 8.539 8.612 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.691 8.726 8.774 8.938 8.985 8.996 9.003 9.008 8.950 8.866 8.670 8.437 8.319 8.279 8.375 8.551 8.798 8.458 8.582 8.800 8.777 8.480 8.511 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.782 8.851 9.009 9.058 9.095 9.095 9.122 8.935 8.724 8.611 8.479 8.301 8.120 8.176 8.514 8.844 8.419 8.212 8.358 8.627 8.641 8.524 8.702 8.806 8.800 8.854 8.863 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.960 9.058 9.034 8.857 8.948 9.108 9.032 8.817 8.713 8.622 8.395 8.123 8.045 8.281 8.589 8.213 8.133 8.382 8.757 8.680 8.457 8.484 8.843 9.131 9.125 9.069 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 9.017 8.985 8.780 8.781 9.013 9.096 9.043 8.847 8.965 8.997 8.532 8.144 8.085 8.243 8.238 8.206 8.432 8.716 8.643 8.464 8.815 8.985 9.090 9.295 9.253 9.016 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.851 8.767 8.882 8.950 8.816 8.691 8.625 9.011 9.159 8.647 8.331 8.207 8.277 8.519 8.587 8.554 8.771 8.737 8.721 8.800 8.848 8.937 9.110 9.225 9.336 9.239 9.190 9.015 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.930 8.913 8.652 8.515 8.579 8.913 8.949 8.613 8.535 8.590 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.657 8.726 8.877 8.984 9.054 9.160 9.281 9.054 8.909 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.789 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.869 8.847 8.892 9.112 9.162 9.112 8.914 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.727 8.794 8.928 9.085 9.065 8.973 8.904 8.800 9.095 8.996 8.909 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.937 8.940 8.766 8.800 8.891 8.902 8.959 8.880 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 8.800 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.914 8.902 8.923 8.959 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.971 9.025 8.995 9.000 9.085 8.900 9.004 8.961 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.987 9.014 8.870 8.855 8.999 8.993 8.897 8.905 8.840 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.977 8.945 8.737 8.712 8.908 8.977 8.942 8.872 8.982 8.949 8.927 8.755 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.832 8.693 8.772 8.941 8.826 8.685 8.682 8.938 9.027 8.826 8.649 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.860 8.908 8.961 8.750 8.572 8.632 8.884 8.917 8.775 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.810 8.848 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 8.900 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.331 1.010 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.404 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.552 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 0.738 1.383 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 0.820 0.574 0.594 1.515 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 0.496 0.546 0.746 0.711 0.916 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 0.455 0.462 0.654 0.488 1.252 1.736 1.736 1.736 1.736 1.582 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 0.492 0.633 1.018 0.640 1.532 1.736 1.736 1.736 1.736 1.680 1.034 1.034 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 0.899 1.025 1.594 1.736 1.454 1.736 1.736 1.736 1.736 1.736 1.555 1.588 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 0.664 0.849 0.704 1.736 1.190 1.736 1.736 1.736 1.736 1.736 1.736 1.706 1.736 1.668 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.178 0.422 0.857 1.542 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.042 1.331 1.388 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 0.534 0.633 0.755 0.984 1.599 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.279 1.736 1.543 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 0.858 0.661 0.576 1.420 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.691 1.496 1.161 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 0.624 0.566 0.657 1.323 1.736 1.736 1.717 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.521 1.736 1.607 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 0.895 0.860 0.491 0.714 1.272 1.664 1.210 1.549 1.736 1.736 1.777 1.740 1.736 1.736 1.736 1.338 1.690 1.663 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 0.998 0.735 0.891 0.630 1.142 1.498 1.667 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.726 1.736 1.625 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 0.698 0.690 0.695 0.486 1.625 1.548 1.736 1.676 1.657 1.717 1.719 1.736 1.736 1.736 1.578 1.191 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 0.743 0.664 0.635 0.538 1.139 1.638 1.688 1.638 1.608 1.776 1.775 1.736 1.736 1.736 1.736 1.652 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.112 0.725 0.913 0.850 0.605 0.787 1.256 1.632 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.504 1.531 1.730 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 0.663 0.741 0.982 0.699 0.503 0.879 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.036 1.469 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.008 0.760 0.957 0.685 0.709 1.271 1.736 1.736 1.493 1.736 1.736 1.736 1.730 1.771 1.736 1.736 1.276 1.463 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 0.882 1.180 0.757 0.839 1.330 1.526 1.350 1.544 1.665 1.736 1.736 1.736 1.736 1.736 1.736 0.809 0.998 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 0.830 0.791 0.761 0.895 1.364 1.736 1.736 1.539 1.736 1.736 1.736 1.736 1.736 1.736 1.322 0.720 1.021 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.272 0.776 1.538 1.348 1.199 1.736 1.687 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 0.617 0.769 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 0.805 0.872 1.143 0.868 1.588 1.736 1.736 1.736 1.736 1.736 1.731 1.731 1.736 1.736 1.736 1.300 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.418 1.064 0.793 0.739 1.618 1.736 1.736 1.736 1.736 1.736 1.727 1.730 1.736 1.736 1.736 1.248 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.224 0.920 1.149 1.262 1.586 1.736 1.736 1.736 1.800 1.736 1.735 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.440 1.512 1.642 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.313 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.386 1.143 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.616 1.591 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.146 1.286 1.266 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.394 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.054 1.079 1.447 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.259 1.474 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.442 1.478 1.335 1.736 1.736 1.736 1.723 1.729 1.732 1.736 1.717 0.542 0.369 1.197 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.287 1.024 1.005 1.497 1.736 1.736 1.736 1.736 1.736 1.000 0.264 0.257 1.681 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.269 0.774 1.482 1.521 1.703 1.736 1.736 1.736 1.736 1.736 0.598 0.399 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.384 1.736 1.611 1.472 1.490 1.736 1.736 1.569 1.736 1.736 1.250 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.241 1.304 1.432 0.700 0.516 0.688 1.516 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.393 1.471 1.525 0.564 0.218 0.235 0.981 1.736 1.729 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 0.788 0.396 0.852 1.606 1.492 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.698 1.725 0.992 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 1.736 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.219 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 1.963 2.769 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 1.331 1.010 1.825 2.226 2.226 2.222 2.226 2.210 2.229 2.226 2.226 2.368 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 1.404 2.003 2.226 2.226 2.226 2.226 2.218 2.226 2.226 2.226 2.274 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 1.876 2.202 2.189 2.220 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 1.789 2.210 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.017 2.226 2.226 1.552 1.863 2.233 1.881 2.041 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 0.738 1.383 2.289 2.214 1.883 2.129 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 0.820 0.574 0.594 1.515 2.226 2.226 2.226 2.185 2.221 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 0.496 0.546 0.746 0.711 0.916 2.226 2.226 2.226 2.352 1.827 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 0.455 0.462 0.654 0.488 1.252 2.018 2.226 2.226 2.247 1.582 1.979 2.226 2.226 2.226 2.226 2.142 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 0.492 0.633 1.018 0.640 1.532 2.412 2.324 2.226 2.226 1.680 1.034 1.034 2.226 2.227 2.221 2.207 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 0.899 1.025 1.594 2.226 1.454 2.226 2.257 2.226 2.226 2.226 1.555 1.588 2.198 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 0.664 0.849 0.704 2.226 1.190 1.864 1.773 2.523 2.226 2.226 2.226 1.706 2.053 1.668 2.001 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 1.178 0.422 0.857 1.542 2.226 1.789 2.089 2.226 2.226 2.226 2.226 2.226 1.833 1.042 1.331 1.388 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 0.534 0.633 0.755 0.984 1.599 1.975 2.456 2.232 2.443 2.373 2.224 2.226 2.226 1.279 1.738 1.543 1.930 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 1.798 0.858 0.661 0.576 1.420 1.770 2.363 2.354 2.224 2.614 2.299 2.214 2.411 2.214 1.496 1.161 1.925 1.754 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.250 2.224 2.226 2.226 2.226 2.226 0.624 0.566 0.657 1.323 1.747 2.440 2.127 2.070 2.218 2.239 2.400 2.481 2.421 2.216 1.521 1.785 1.607 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.249 2.231 2.226 2.226 2.226 2.226 0.895 0.860 0.491 0.714 1.272 1.664 1.210 1.549 1.962 2.246 2.712 2.308 2.226 2.226 1.923 1.338 1.690 1.663 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 0.998 0.735 0.891 0.630 1.142 1.498 1.667 2.079 2.226 2.214 2.187 2.262 2.226 2.226 2.318 1.903 1.802 1.625 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.270 2.226 2.226 2.226 2.226 2.226 2.226 2.226 0.698 0.690 0.695 0.486 1.625 1.548 2.263 2.303 2.606 2.570 4.184 2.223 2.226 2.226 1.578 1.191 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.359 2.226 2.226 2.226 2.226 2.226 2.226 2.226 0.743 0.664 0.635 0.538 1.139 1.638 2.260 2.184 2.839 2.226 2.870 2.226 2.226 2.226 2.070 1.652 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 1.112 0.725 0.913 0.850 0.605 0.787 1.256 1.813 2.227 2.171 2.162 2.226 2.226 2.226 2.226 1.950 1.504 1.531 1.730 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 0.663 0.741 0.982 0.699 0.503 0.879 1.992 2.226 2.089 2.226 2.261 2.389 2.246 2.496 2.383 1.817 1.036 1.469 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 1.008 0.760 0.957 0.685 0.709 1.271 1.995 1.811 1.493 2.240 3.391 3.360 2.425 2.633 2.314 1.844 1.276 1.463 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 0.882 1.180 0.757 0.839 1.330 1.526 1.350 1.544 1.975 2.321 2.226 2.226 2.226 2.226 2.122 0.809 0.998 2.199 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 0.830 0.791 0.761 0.895 1.364 1.794 2.148 1.539 1.858 2.234 2.226 2.226 2.226 2.226 1.322 0.720 1.021 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 1.272 0.776 1.538 1.348 1.199 1.788 1.687 1.863 2.092 2.335 2.372 2.268 2.198 2.098 1.977 0.617 0.769 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.184 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 0.805 0.872 1.143 0.868 1.588 2.226 2.226 2.226 2.226 2.522 3.327 4.671 2.222 2.226 2.184 1.300 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.184 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 1.418 1.064 0.793 0.739 1.618 2.309 2.388 2.332 2.260 2.549 2.663 3.414 2.493 1.764 1.965 1.248 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.202 2.172 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 1.224 0.920 1.149 1.262 1.586 2.232 2.309 2.263 4.212 2.764 2.466 2.290 2.358 2.226 2.226 1.746 2.038 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.219 2.166 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 1.440 1.512 1.642 2.239 2.226 2.230 2.226 2.226 2.460 3.025 2.291 2.226 2.226 2.226 1.313 1.874 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.005 2.309 2.226 2.226 2.226 2.428 2.285 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 1.386 1.143 1.951 2.192 2.246 2.226 2.226 2.226 2.447 2.930 2.226 2.284 2.226 1.616 1.591 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.286 2.312 2.231 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.569 2.354 2.210 2.226 2.226 2.313 2.270 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 1.146 1.286 1.266 1.961 2.226 2.270 2.254 2.226 2.211 2.340 2.384 2.670 2.403 1.833 1.394 1.970 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.262 2.289 2.251 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.194 2.197 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 1.782 1.054 1.079 1.447 2.029 2.541 2.419 2.234 2.305 2.220 2.126 2.040 2.260 2.189 1.259 1.474 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.272 2.264 2.226 2.226 2.226 2.183 2.215 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 1.442 1.478 1.335 1.779 2.139 2.469 2.263 2.491 2.200 1.857 1.717 0.542 0.369 1.197 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.189 2.206 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 1.287 1.024 1.005 1.497 2.713 2.465 2.289 2.226 2.050 1.000 0.264 0.257 1.681 2.226 2.226 2.226 2.215 2.193 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 1.269 0.774 1.482 1.521 1.703 2.226 2.225 2.224 2.159 1.905 0.598 0.399 1.787 2.131 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 1.384 1.941 1.611 1.472 1.490 1.959 2.026 1.569 2.182 2.130 1.250 1.931 2.177 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.237 2.265 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 1.241 1.304 1.432 0.700 0.516 0.688 1.516 1.885 2.341 1.988 1.774 2.305 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 1.393 1.471 1.525 0.564 0.218 0.235 0.981 1.781 1.844 1.875 1.835 2.254 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 0.788 0.396 0.852 1.606 1.492 1.809 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 1.698 1.725 0.992 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.142 1.991 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.193 2.193 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 2.226 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.200 2.179 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.389 2.371 2.346 2.367 2.446 2.502 2.399 2.266 2.399 2.267 2.250 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.459 2.534 2.574 2.552 2.413 2.510 2.465 2.324 2.399 2.399 2.399 2.399 2.399 2.382 2.386 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.342 2.363 2.449 2.505 2.399 2.487 2.387 2.441 2.538 2.399 2.402 2.404 2.399 2.382 2.394 2.374 2.502 2.651 2.418 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.323 2.315 2.303 2.297 2.270 2.399 2.399 2.385 2.440 2.507 2.478 2.399 2.399 2.399 2.382 2.399 2.399 2.505 2.612 2.426 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.328 2.399 2.399 2.093 2.399 2.399 2.462 2.467 2.508 2.498 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.608 2.527 2.461 2.424 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.047 2.101 2.399 2.751 2.643 2.490 2.451 2.525 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.132 2.399 2.356 2.612 2.634 2.503 2.504 2.580 2.514 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.264 2.205 2.224 2.283 2.463 2.584 2.399 2.399 2.586 2.538 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.275 2.223 2.218 2.254 2.435 2.620 2.399 2.399 2.719 2.647 2.442 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.342 2.291 2.228 2.271 2.544 2.809 2.399 2.399 2.827 2.699 2.334 2.399 2.399 2.399 2.302 2.293 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.308 2.233 2.150 2.220 2.696 3.181 3.151 2.399 2.532 2.575 2.122 1.670 1.906 2.374 2.336 2.320 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.256 2.144 2.041 2.166 2.556 2.988 3.030 2.399 2.506 2.720 2.756 2.010 2.080 2.376 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.359 2.248 2.130 2.115 2.240 2.461 2.746 2.934 2.399 2.406 2.690 2.741 2.229 2.242 2.358 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.262 2.302 2.168 2.056 2.399 2.269 2.374 2.487 2.450 2.416 2.478 2.652 2.697 2.257 2.166 2.244 2.378 2.399 2.393 2.383 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.208 2.240 2.095 1.961 2.057 2.268 2.433 2.497 2.690 2.738 2.622 2.700 2.721 2.250 1.962 2.069 2.317 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.262 2.231 2.296 2.172 2.064 2.195 2.422 2.531 2.547 2.805 2.858 2.718 2.861 3.152 2.577 2.074 2.042 2.228 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.473 2.505 2.399 2.399 2.399 2.399 2.230 2.284 2.252 2.164 2.261 2.424 2.534 2.498 2.683 2.747 2.743 2.877 2.977 2.655 2.319 2.193 2.281 2.356 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.445 2.470 2.399 2.399 2.399 2.399 2.218 2.204 2.212 2.154 2.181 2.316 2.401 2.515 2.650 2.700 2.808 2.911 2.822 2.506 2.647 2.430 2.297 2.284 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.217 2.157 2.173 2.177 2.147 2.186 2.160 2.340 2.435 2.699 2.808 2.952 2.449 2.399 2.948 2.747 2.318 2.239 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.564 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.154 2.149 2.209 2.264 2.198 2.246 2.470 2.646 2.703 2.736 2.910 2.655 2.490 2.938 2.877 2.367 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.563 2.549 2.399 2.399 2.399 2.399 2.399 2.399 2.213 2.148 2.133 2.151 2.059 2.193 2.595 2.644 2.730 2.734 2.891 2.720 2.399 2.752 2.807 2.454 2.289 2.302 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.501 2.458 2.399 2.399 2.399 2.399 2.399 2.428 2.358 2.235 2.092 2.022 1.979 2.135 2.585 2.539 2.526 2.620 2.794 2.574 2.399 2.496 2.680 2.456 2.147 2.116 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.497 2.507 2.381 2.178 2.058 2.025 2.037 2.203 2.258 2.331 2.592 2.922 2.929 2.827 2.783 2.795 2.674 2.130 1.992 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.491 2.413 2.251 2.164 2.110 2.015 2.033 2.096 2.290 2.763 3.344 3.172 2.862 2.758 2.851 3.010 2.540 2.131 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.424 2.260 2.232 2.184 2.060 2.075 2.126 2.303 2.687 2.993 2.919 2.719 2.542 2.545 3.047 2.795 2.210 1.928 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.363 2.235 2.214 2.181 2.104 2.117 2.210 2.383 2.567 2.700 2.707 2.517 2.486 2.512 2.765 2.769 2.328 1.808 2.132 2.253 2.399 2.399 2.399 2.399 2.399 2.394 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.217 2.192 2.153 2.098 2.145 2.227 2.382 2.507 2.600 2.671 2.661 2.639 2.661 2.660 2.774 2.657 2.028 2.212 2.311 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.366 2.333 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.200 2.182 2.200 2.270 2.232 2.355 2.511 2.399 2.718 2.740 2.789 3.005 2.792 2.843 3.071 2.697 2.415 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.387 2.377 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.363 2.333 2.408 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.235 2.224 2.275 2.328 2.223 2.331 2.574 2.775 2.816 2.794 2.662 3.044 2.891 2.898 3.053 2.980 2.483 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.238 2.231 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.235 2.293 2.332 2.273 2.288 2.461 2.637 2.776 2.820 2.702 2.891 2.787 2.767 2.785 2.399 2.309 2.267 2.399 2.379 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.323 2.399 2.399 2.180 2.183 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.316 2.298 2.237 2.255 2.425 2.525 2.501 2.728 2.760 2.921 2.786 2.399 2.399 2.399 2.465 2.422 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.380 2.436 2.399 2.399 2.399 2.823 2.623 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.250 2.125 2.176 2.367 2.495 2.399 2.399 2.399 2.847 2.715 2.614 2.626 2.399 2.747 2.700 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.589 2.583 2.540 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.599 2.451 2.389 2.399 2.399 2.750 2.609 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.305 2.239 2.242 2.392 2.554 2.644 2.664 2.443 2.627 2.602 2.583 2.567 2.613 2.714 2.739 2.694 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.580 2.572 2.528 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.362 2.365 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.374 2.343 2.324 2.404 2.572 2.646 2.691 2.655 2.677 2.638 2.516 2.388 2.475 2.742 2.897 2.865 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.517 2.503 2.399 2.399 2.399 2.385 2.390 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.324 2.347 2.390 2.356 2.432 2.594 2.810 2.826 2.544 2.311 2.417 2.794 2.828 2.680 2.399 2.399 2.399 2.394 2.378 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.462 2.399 2.399 2.399 2.399 2.364 2.374 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.308 2.238 2.140 2.155 2.333 2.606 2.674 2.546 2.427 2.576 3.254 2.897 2.416 2.399 2.399 2.399 2.375 2.364 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.303 2.215 2.132 2.108 2.181 2.381 2.526 2.564 2.457 2.540 2.907 2.696 2.359 2.249 2.373 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.259 2.222 2.163 2.170 2.325 2.542 2.764 2.481 2.390 2.532 2.564 2.465 2.414 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.481 2.523 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.317 2.216 2.196 2.317 2.558 3.048 2.621 2.322 2.370 2.484 2.525 2.591 2.771 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.431 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.374 2.399 2.399 2.399 2.399 2.399 2.399 2.353 2.299 2.270 2.312 2.389 2.717 2.819 2.478 2.373 2.418 2.473 2.543 2.660 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.249 2.374 2.514 2.436 2.410 2.435 2.445 2.461 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.245 2.280 2.322 2.334 2.388 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.258 2.248 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.438 2.445 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.440 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.307 2.297 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 2.399 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.697 2.692 2.690 2.690 2.690 2.690 2.253 2.210 2.500 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.678 2.650 2.597 2.578 2.762 2.789 2.494 2.382 2.604 2.515 2.503 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.604 2.633 2.778 2.984 3.001 2.852 2.609 2.721 2.725 2.601 2.653 2.670 2.690 2.668 2.660 2.645 2.665 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.525 2.588 2.812 3.015 3.022 2.822 2.601 2.679 2.867 2.766 2.721 2.682 2.671 2.646 2.628 2.660 2.799 3.037 2.941 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.496 2.455 2.445 2.436 2.502 2.690 2.690 2.617 2.684 2.811 2.760 2.692 2.661 2.667 2.641 2.633 2.675 2.809 3.017 2.924 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.533 2.482 2.690 2.359 2.303 2.690 2.690 2.763 2.773 2.835 2.799 2.690 2.690 2.690 2.677 2.680 2.690 2.690 2.690 2.725 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 3.012 2.879 2.781 2.761 2.746 2.653 2.620 2.690 2.690 2.681 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.192 2.289 2.633 3.208 3.070 2.837 2.769 2.860 2.737 2.617 2.662 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.279 2.335 2.573 3.051 3.097 2.883 2.937 3.087 2.864 2.696 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.441 2.342 2.357 2.470 2.766 2.987 2.920 2.929 2.999 2.855 2.670 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.473 2.366 2.350 2.408 2.683 3.007 2.690 2.894 3.124 3.049 2.684 2.690 2.690 2.690 2.690 2.631 2.698 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.713 2.596 2.514 2.395 2.425 2.803 3.205 3.235 2.936 3.430 3.285 2.472 2.027 2.690 2.690 2.553 2.578 2.642 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.645 2.544 2.437 2.314 2.337 2.969 3.668 3.482 3.236 3.212 3.072 2.292 1.844 2.260 2.589 2.594 2.593 2.639 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.701 2.696 2.690 2.612 2.476 2.304 2.169 2.259 2.832 3.598 3.489 3.225 3.057 3.068 3.045 2.161 2.380 2.632 2.667 2.690 2.690 2.690 2.690 2.693 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.689 2.617 2.597 2.439 2.264 2.222 2.384 2.702 3.145 3.323 3.194 3.003 3.065 3.245 2.463 2.534 2.728 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.488 2.517 2.326 2.161 2.160 2.362 2.533 2.726 2.965 3.016 2.934 3.095 3.183 2.516 2.387 2.572 2.795 2.690 2.710 2.653 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.376 2.419 2.213 2.022 2.090 2.354 2.550 2.673 2.985 3.133 3.016 3.200 3.210 2.485 2.080 2.260 2.763 2.955 2.794 2.690 2.692 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.469 2.404 2.512 2.333 2.169 2.266 2.536 2.621 2.683 3.093 3.356 3.136 3.340 3.765 2.975 2.231 2.157 2.555 2.817 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.814 2.888 2.690 2.690 2.690 2.486 2.425 2.488 2.462 2.330 2.380 2.572 2.670 2.626 2.958 3.181 3.176 3.439 3.545 3.191 2.659 2.392 2.552 2.671 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.751 2.811 2.690 2.690 2.690 2.690 2.413 2.370 2.399 2.337 2.331 2.525 2.656 2.862 3.075 3.144 3.316 3.608 3.347 3.289 3.285 2.735 2.523 2.540 2.637 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.443 2.339 2.345 2.375 2.305 2.360 2.355 2.686 3.065 3.189 3.360 3.526 3.173 3.212 3.467 3.083 2.508 2.463 2.519 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.978 3.015 2.690 2.690 2.690 2.690 2.690 2.493 2.377 2.331 2.404 2.458 2.363 2.475 2.736 3.040 3.113 3.109 3.245 3.028 3.116 3.514 3.420 2.573 2.474 2.690 2.690 2.690 2.690 2.690 2.690 2.708 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.983 2.991 2.690 2.690 2.690 2.690 2.690 2.579 2.477 2.351 2.308 2.365 2.219 2.397 2.820 2.925 3.173 3.213 3.369 3.142 3.002 3.119 3.324 2.769 2.530 2.618 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.884 2.880 2.690 2.690 2.690 2.690 2.690 2.716 2.675 2.505 2.274 2.188 2.127 2.304 2.769 2.790 2.901 3.090 3.270 3.194 3.107 3.117 3.143 2.804 2.315 2.329 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.825 2.875 2.718 2.408 2.218 2.198 2.200 2.359 2.449 2.573 2.837 3.263 3.357 3.306 3.218 3.287 3.125 2.297 2.172 2.255 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.808 2.715 2.496 2.368 2.316 2.173 2.177 2.238 2.437 2.824 3.508 3.540 3.337 3.165 3.315 3.603 2.951 2.348 2.272 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.782 2.725 2.491 2.441 2.415 2.240 2.268 2.289 2.443 2.898 3.383 3.458 3.202 3.040 3.118 3.612 3.407 2.504 2.177 2.554 2.690 2.690 2.690 2.690 2.690 2.690 2.687 2.690 2.690 2.690 2.690 2.684 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.628 2.431 2.392 2.367 2.270 2.281 2.391 2.619 2.974 3.096 3.214 3.113 3.003 3.042 3.220 3.346 2.727 1.998 2.146 2.503 2.690 2.690 2.690 2.690 2.690 2.672 2.697 2.700 2.690 2.690 2.679 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.412 2.366 2.308 2.241 2.291 2.376 2.599 2.894 3.034 3.171 3.158 3.081 3.068 3.024 3.299 3.386 2.347 2.333 2.437 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.623 2.584 2.626 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.381 2.342 2.394 2.539 2.374 2.523 2.843 3.078 3.205 3.164 3.226 3.490 3.191 3.257 3.718 3.275 2.671 2.534 2.616 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.661 2.653 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.620 2.589 2.637 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.431 2.401 2.477 2.575 2.367 2.463 2.816 3.171 3.338 3.170 2.922 3.482 3.333 3.339 3.537 3.563 2.784 2.544 2.601 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.672 2.690 2.690 2.690 2.677 2.686 2.690 2.690 2.690 2.690 2.704 2.690 2.483 2.498 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.430 2.496 2.567 2.485 2.456 2.684 2.980 3.155 3.125 3.001 3.339 3.217 3.167 3.180 3.164 2.748 2.586 2.616 2.625 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.669 2.687 2.690 2.690 2.594 2.611 2.690 2.690 2.408 2.530 2.782 2.777 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.558 2.552 2.488 2.478 2.661 2.862 3.001 3.146 3.217 3.496 3.243 3.085 3.081 3.090 2.963 2.821 2.733 2.687 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.741 2.693 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.652 2.692 2.750 2.690 2.690 2.916 3.150 2.941 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.572 2.522 2.365 2.370 2.666 2.861 2.964 3.076 3.208 3.429 3.131 3.072 3.143 3.222 3.295 3.227 3.059 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.815 2.953 3.012 2.975 2.690 2.690 2.690 2.690 2.690 2.690 2.822 2.943 2.745 2.691 2.690 2.997 3.138 2.974 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.576 2.497 2.466 2.681 2.936 2.988 3.050 3.032 3.041 3.002 3.074 3.041 3.100 3.235 3.226 3.139 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.847 2.966 2.982 2.948 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.820 2.687 2.679 2.690 2.690 2.690 2.690 2.838 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.656 2.620 2.584 2.686 2.962 2.964 3.112 3.086 3.158 3.054 2.994 2.803 2.878 3.285 3.482 3.533 3.371 2.690 2.680 2.674 2.690 2.689 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.866 2.825 2.690 2.690 2.675 2.659 2.665 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.591 2.615 2.659 2.593 2.702 2.968 3.363 3.301 3.059 2.733 2.899 3.359 3.458 3.302 3.115 2.690 2.690 2.669 2.675 2.686 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.783 2.768 2.690 2.690 2.660 2.637 2.645 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.617 2.574 2.448 2.310 2.302 2.540 2.974 3.118 3.027 2.935 3.231 4.269 3.771 2.786 2.682 2.656 2.690 2.693 2.679 2.681 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.570 2.440 2.330 2.279 2.345 2.625 2.871 3.005 2.913 3.031 3.578 3.318 2.655 2.546 2.654 2.713 2.697 2.696 2.692 2.693 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.597 2.518 2.454 2.357 2.327 2.554 2.887 3.337 2.941 2.774 2.943 3.002 2.827 2.803 2.874 2.840 2.732 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.756 2.690 2.690 2.817 2.903 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.544 2.447 2.392 2.566 2.896 3.612 3.157 2.683 2.712 2.839 2.872 2.980 3.202 3.054 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.732 2.751 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.648 2.690 2.690 2.690 2.690 2.690 2.690 2.622 2.558 2.521 2.605 2.723 3.055 3.445 2.874 2.697 2.750 2.818 2.902 3.058 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.538 2.615 2.819 2.735 2.723 2.768 2.784 2.794 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.508 2.514 2.549 2.549 2.646 2.713 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.494 2.473 2.645 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.749 2.781 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.742 2.762 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.603 2.593 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.565 2.546 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 2.690 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.974 2.960 2.968 2.968 2.968 2.968 2.280 2.305 2.595 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.951 2.918 2.862 2.782 3.028 3.045 2.596 2.481 2.682 2.755 2.786 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.836 2.882 3.053 3.376 3.375 3.175 2.739 2.803 2.832 2.836 2.926 2.956 2.963 2.938 2.902 2.917 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.684 2.766 3.103 3.458 3.271 3.094 2.776 2.873 3.023 2.993 2.976 2.959 2.959 2.926 2.878 2.914 3.103 3.389 3.305 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.632 2.538 2.572 2.593 2.726 2.852 2.903 2.804 2.854 2.996 2.963 2.921 2.911 2.933 2.922 2.888 2.943 3.130 3.441 3.360 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.563 2.968 2.591 2.571 2.751 2.976 3.006 3.011 3.076 2.993 2.860 2.842 2.878 2.900 2.897 2.939 3.051 3.239 3.217 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.620 2.713 2.968 3.330 3.174 3.066 3.058 3.008 2.879 2.823 2.932 2.945 2.919 2.939 2.970 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.446 2.506 2.883 3.462 3.330 3.136 3.143 3.250 3.035 2.862 2.936 2.968 2.968 2.944 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.750 2.431 2.456 2.779 3.446 3.442 3.149 3.415 3.728 3.199 2.892 2.948 2.968 2.957 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.603 2.435 2.437 2.615 3.067 3.440 3.314 3.397 3.521 3.156 2.902 2.968 2.968 2.954 2.957 2.982 2.973 2.979 2.976 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.678 2.496 2.426 2.518 2.877 3.342 3.450 3.358 3.440 3.356 2.888 2.885 2.968 2.968 2.924 2.954 3.008 2.978 2.978 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.998 2.841 2.734 2.532 2.546 2.963 3.391 3.467 3.463 3.817 3.877 2.809 2.491 2.835 2.990 2.900 2.904 2.972 2.968 2.972 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.914 2.760 2.656 2.511 2.483 3.025 3.498 3.476 3.524 3.726 3.765 2.736 2.308 2.842 3.075 2.959 2.934 2.974 2.959 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.995 2.983 2.968 2.847 2.682 2.480 2.334 2.382 2.977 3.665 3.493 3.472 3.436 3.306 3.101 2.483 2.797 3.114 3.077 3.052 3.033 2.977 2.964 2.971 2.974 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.989 2.957 2.861 2.818 2.647 2.420 2.316 2.485 2.870 3.313 3.415 3.547 3.396 3.448 3.678 2.843 2.866 3.242 3.224 3.168 3.082 2.999 2.963 2.966 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.702 2.690 2.503 2.286 2.224 2.425 2.626 2.831 3.077 3.263 3.254 3.613 3.601 2.881 2.636 3.075 3.332 3.356 3.142 3.026 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.565 2.568 2.363 2.146 2.113 2.425 2.580 2.756 3.073 3.185 3.200 3.549 3.523 2.835 2.285 2.568 3.262 3.495 3.265 3.107 3.035 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 3.059 2.968 2.968 2.951 2.727 2.595 2.662 2.495 2.302 2.302 2.649 2.672 2.758 3.089 3.258 3.274 3.300 3.578 3.359 2.457 2.329 2.890 3.314 3.214 3.081 3.010 2.978 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 3.119 3.252 3.298 3.055 2.982 2.759 2.652 2.654 2.667 2.542 2.486 2.695 2.761 2.761 3.133 3.244 3.298 3.374 3.412 3.739 3.176 2.622 2.816 3.012 3.080 2.968 2.970 2.958 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 3.009 3.104 3.214 2.968 2.968 2.854 2.684 2.578 2.629 2.629 2.603 2.758 2.953 3.041 3.350 3.306 3.371 3.552 3.435 3.786 4.105 2.969 2.702 2.810 2.892 2.968 2.962 2.965 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 3.044 2.923 2.968 2.968 2.968 2.968 2.729 2.601 2.597 2.670 2.612 2.656 2.729 2.911 3.369 3.436 3.405 3.356 3.253 3.492 3.779 3.153 2.634 2.692 2.799 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 3.311 3.341 3.141 2.968 2.968 2.968 2.968 2.787 2.670 2.607 2.671 2.693 2.637 2.805 2.892 3.271 3.367 3.258 3.123 3.161 3.420 3.856 3.534 2.742 2.721 2.881 2.968 2.968 2.968 2.968 2.977 2.997 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 3.305 3.415 3.357 2.968 2.968 2.968 2.968 2.875 2.795 2.679 2.600 2.738 2.604 2.861 2.920 2.950 3.317 3.338 3.362 3.329 3.134 3.183 3.549 3.034 2.798 2.987 3.041 2.968 2.968 2.968 2.978 2.984 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 3.183 3.247 2.968 2.968 2.968 2.968 2.968 3.006 3.029 2.911 2.627 2.558 2.503 2.713 2.884 2.905 3.248 3.419 3.449 3.383 3.373 3.360 3.514 3.156 2.529 2.634 2.801 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.949 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 3.076 2.968 2.968 2.968 2.968 2.968 2.968 3.081 3.164 3.098 2.792 2.540 2.537 2.633 2.683 2.708 2.877 2.906 3.111 3.326 3.492 3.400 3.537 3.472 2.571 2.452 2.582 2.968 2.968 2.968 2.972 2.968 2.968 2.968 2.968 2.942 2.940 2.968 2.968 2.968 2.968 2.968 2.965 2.951 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 3.086 3.018 2.838 2.668 2.667 2.541 2.504 2.516 2.699 2.866 3.182 3.268 3.439 3.367 3.556 3.799 3.364 2.668 2.591 2.894 2.969 3.008 3.006 2.968 2.968 2.968 2.968 2.972 2.971 2.968 2.968 2.968 2.968 2.968 2.966 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 3.037 2.996 2.793 2.667 2.737 2.594 2.571 2.551 2.625 2.985 3.311 3.504 3.455 3.402 3.332 3.691 3.794 2.867 2.543 2.664 2.968 2.968 2.968 2.968 2.968 2.970 2.961 2.982 3.003 2.980 2.959 2.957 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.988 2.916 2.699 2.595 2.608 2.547 2.544 2.596 2.711 3.158 3.381 3.662 3.509 3.433 3.504 3.518 3.661 3.089 2.426 2.545 2.681 2.968 2.968 2.968 2.968 2.964 2.960 2.998 3.013 3.005 2.953 2.961 2.976 2.967 2.953 2.964 2.968 2.968 2.968 2.971 2.970 2.968 2.968 2.968 2.905 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.681 2.590 2.522 2.486 2.513 2.518 2.686 3.201 3.407 3.736 3.645 3.498 3.467 3.202 3.458 3.890 2.957 2.708 2.696 2.924 2.968 2.968 2.968 2.971 2.940 2.979 3.015 2.968 2.968 2.972 2.968 2.960 2.956 2.966 2.968 2.968 2.969 2.964 2.971 2.959 2.968 2.951 2.882 2.839 2.891 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.736 2.629 2.545 2.635 2.864 2.553 2.579 3.032 3.349 3.662 3.494 3.483 3.474 3.298 3.303 3.684 3.741 2.972 2.744 2.725 2.968 2.968 2.968 2.968 2.961 2.968 2.968 2.968 2.968 2.976 2.968 2.968 2.990 2.958 2.943 2.968 2.962 2.951 2.968 2.951 2.961 2.944 2.883 2.844 2.912 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.670 2.613 2.655 2.770 2.573 2.564 2.900 3.247 3.543 3.248 3.131 3.342 3.445 3.408 3.546 3.892 3.082 2.724 2.663 2.968 2.968 2.966 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 3.071 3.013 2.964 2.968 2.968 2.939 2.938 2.938 2.950 2.958 2.936 2.956 2.939 2.797 2.793 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.664 2.692 2.766 2.703 2.616 2.857 3.169 3.301 3.176 3.147 3.370 3.392 3.377 3.413 3.568 3.310 2.936 2.790 2.859 2.886 2.905 2.931 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 3.046 3.137 2.968 2.968 2.956 2.938 2.942 2.938 2.936 2.866 2.951 3.013 2.959 2.750 2.837 3.078 3.078 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.796 2.804 2.746 2.650 2.887 3.168 3.341 3.537 3.589 3.672 3.480 3.342 3.388 3.501 3.533 3.278 3.108 3.057 2.979 2.952 2.967 2.968 2.968 2.968 2.968 2.968 2.968 2.968 3.085 3.180 3.245 3.249 3.136 3.018 2.971 2.968 2.968 2.984 2.971 3.051 3.031 3.024 3.028 3.278 3.479 3.255 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.841 2.811 2.686 2.619 2.999 3.210 3.315 3.477 3.630 3.696 3.287 3.422 3.635 3.663 3.626 3.619 3.407 3.296 3.026 2.987 2.974 2.968 2.968 2.968 2.968 2.968 2.968 2.968 3.093 3.230 3.289 3.315 3.211 2.968 2.968 2.968 2.968 2.968 3.084 3.189 3.014 3.023 3.088 3.307 3.425 3.268 3.148 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.864 2.780 2.711 2.972 3.294 3.247 3.306 3.361 3.443 3.328 3.521 3.481 3.396 3.552 3.431 3.363 3.393 3.122 3.030 2.971 2.968 2.959 2.961 2.968 2.968 2.968 3.014 3.184 3.292 3.271 3.277 3.197 2.968 2.968 2.968 2.968 2.941 3.012 3.078 3.028 3.022 3.025 2.968 3.236 3.204 3.170 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.933 2.890 2.842 2.965 3.283 3.240 3.400 3.480 3.607 3.442 3.533 3.357 3.259 3.662 3.589 3.724 3.631 3.206 3.007 2.967 2.968 2.970 2.968 2.968 2.968 2.968 2.968 3.198 3.202 3.161 3.160 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 3.000 2.971 2.968 2.968 3.169 3.195 3.130 3.007 2.997 2.948 2.927 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.965 2.949 2.890 2.910 2.901 2.875 2.980 3.268 3.570 3.582 3.725 3.537 3.369 3.451 3.414 3.704 3.525 3.163 3.017 2.980 2.983 2.980 2.992 2.985 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.978 3.060 3.084 3.070 3.005 2.989 2.926 2.883 2.896 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.965 2.914 2.873 2.712 2.589 2.556 2.773 3.166 3.344 3.510 3.618 3.517 3.724 3.700 3.148 3.058 3.009 3.072 3.088 3.044 3.016 3.000 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.890 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.920 2.878 2.761 2.646 2.533 2.548 2.808 3.073 3.335 3.467 3.378 3.604 3.626 2.966 2.871 2.962 3.076 3.125 3.099 3.053 3.042 2.990 2.969 2.964 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 3.045 3.116 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.879 2.818 2.742 2.624 2.532 2.754 3.062 3.487 3.454 3.174 3.286 3.394 3.138 3.266 3.229 3.209 3.100 3.051 3.028 3.000 2.976 2.963 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 3.071 2.968 2.968 3.094 3.194 3.185 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.826 2.736 2.664 2.841 3.080 3.350 3.644 3.188 3.178 3.212 3.122 3.302 3.559 3.396 3.147 3.010 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 3.067 3.017 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.913 2.968 2.968 2.968 2.968 2.968 2.968 2.894 2.849 2.833 2.978 3.076 3.093 3.833 3.300 3.118 3.178 3.174 3.231 3.323 3.299 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 3.000 2.902 2.833 3.047 2.996 3.046 3.130 3.123 3.116 3.125 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.833 2.758 2.770 2.737 2.872 2.990 2.997 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.766 2.751 2.829 2.966 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 3.002 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 3.043 3.102 3.072 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.963 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 3.082 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.838 2.818 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.807 2.777 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.949 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 2.968 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.255 3.274 3.274 3.274 3.274 2.402 2.483 2.945 3.276 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.221 3.198 3.212 3.099 3.254 3.238 2.688 2.649 2.907 3.060 3.163 3.275 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.096 3.159 3.325 3.628 3.654 3.515 3.014 2.967 2.969 3.114 3.270 3.333 3.326 3.274 3.271 3.274 3.274 3.269 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 2.865 2.951 3.330 3.737 3.524 3.441 3.106 3.142 3.123 3.231 3.361 3.390 3.384 3.274 3.175 3.215 3.438 3.690 3.643 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.190 2.643 2.737 2.792 2.923 3.079 3.202 3.093 3.142 3.195 3.201 3.251 3.322 3.388 3.300 3.200 3.283 3.552 3.915 3.861 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 2.737 2.948 2.854 2.883 3.090 3.294 3.274 3.245 3.293 3.205 3.138 3.187 3.274 3.275 3.239 3.295 3.449 3.673 3.651 3.493 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 2.920 2.937 3.193 3.531 3.405 3.267 3.351 3.279 3.153 3.143 3.203 3.222 3.254 3.286 3.345 3.453 3.423 3.350 3.246 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 2.745 2.732 3.079 3.596 3.423 3.250 3.465 3.487 3.321 3.191 3.217 3.244 3.257 3.271 3.311 3.347 3.305 3.277 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 2.934 2.637 2.585 2.933 3.604 3.498 3.183 3.543 3.742 3.491 3.273 3.258 3.247 3.257 3.272 3.304 3.316 3.282 3.250 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.240 2.823 2.571 2.523 2.772 3.374 3.693 3.386 3.553 3.694 3.519 3.297 3.251 3.229 3.271 3.288 3.319 3.331 3.308 3.291 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.197 2.983 2.712 2.546 2.668 3.136 3.602 3.700 3.528 3.459 3.500 3.251 3.174 3.218 3.311 3.312 3.337 3.369 3.346 3.318 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.255 3.150 2.995 2.711 2.717 3.184 3.469 3.562 3.466 3.465 3.734 3.430 3.130 3.272 3.457 3.377 3.356 3.399 3.367 3.308 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.290 3.275 3.173 3.033 2.943 2.790 2.703 3.141 3.323 3.429 3.479 3.528 3.822 3.586 3.123 3.523 3.809 3.522 3.468 3.466 3.351 3.298 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.276 3.292 3.214 3.127 2.953 2.765 2.616 2.624 3.107 3.390 3.267 3.259 3.339 3.513 3.694 3.218 3.299 3.738 3.614 3.593 3.560 3.386 3.319 3.319 3.310 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.272 3.278 3.289 3.187 3.100 2.961 2.727 2.533 2.668 3.073 3.173 3.127 3.252 3.247 3.427 3.898 3.601 3.249 3.703 3.685 3.672 3.593 3.426 3.341 3.333 3.315 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.262 3.241 3.231 3.045 2.971 2.858 2.620 2.427 2.606 2.878 2.950 3.049 3.179 3.242 3.476 3.672 3.416 3.137 3.709 3.908 3.954 3.737 3.507 3.388 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.268 3.117 2.936 2.846 2.732 2.518 2.371 2.682 2.869 3.017 3.179 3.189 3.210 3.383 3.604 3.395 2.890 3.181 3.685 4.157 3.912 3.633 3.447 3.362 3.282 3.276 3.274 3.269 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.495 3.525 3.458 3.320 3.137 2.985 2.909 2.857 2.653 2.619 3.004 3.075 3.170 3.198 3.150 3.262 3.259 3.460 3.821 3.074 2.918 3.397 4.079 3.960 3.691 3.489 3.388 3.348 3.274 3.276 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.572 3.675 3.575 3.408 3.216 3.115 2.990 3.063 2.957 2.894 3.101 3.205 3.113 3.146 3.225 3.389 3.309 3.281 3.907 3.655 2.986 3.107 3.452 3.584 3.536 3.390 3.336 3.337 3.273 3.277 3.279 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.240 3.343 3.525 3.559 3.464 3.298 3.204 3.066 3.146 3.192 3.213 3.193 3.444 3.337 3.211 3.318 3.378 3.401 3.382 3.591 3.854 3.124 2.920 3.175 3.326 3.389 3.348 3.330 3.287 3.275 3.273 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.344 3.361 3.407 3.439 3.428 3.351 3.245 3.162 3.247 3.255 3.239 3.301 3.393 3.236 3.200 3.361 3.414 3.349 3.273 3.418 3.706 3.316 2.869 3.025 3.174 3.295 3.318 3.307 3.293 3.267 3.284 3.282 3.277 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.425 3.682 3.678 3.555 3.445 3.345 3.312 3.233 3.198 3.237 3.276 3.244 3.329 3.204 3.053 3.163 3.322 3.460 3.421 3.278 3.308 3.596 3.588 3.060 3.027 3.242 3.328 3.286 3.245 3.246 3.273 3.337 3.297 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.578 3.774 3.776 3.649 3.274 3.274 3.290 3.263 3.291 3.323 3.269 3.407 3.364 3.353 3.157 3.032 3.235 3.324 3.384 3.294 3.220 3.392 3.677 3.381 3.118 3.403 3.410 3.324 3.259 3.254 3.290 3.326 3.298 3.256 3.278 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.294 3.426 3.517 3.536 3.434 3.274 3.274 3.274 3.323 3.419 3.473 3.367 3.358 3.303 3.397 3.349 3.186 3.269 3.363 3.365 3.305 3.460 3.530 3.731 3.544 2.872 3.022 3.231 3.321 3.274 3.274 3.307 3.307 3.293 3.274 3.274 3.256 3.254 3.274 3.274 3.274 3.274 3.274 3.276 3.275 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.308 3.372 3.398 3.407 3.274 3.274 3.274 3.255 3.306 3.385 3.429 3.412 3.243 3.270 3.497 3.515 3.318 3.154 3.016 3.200 3.290 3.418 3.377 3.468 3.734 3.062 2.919 3.097 3.294 3.381 3.362 3.330 3.309 3.281 3.274 3.274 3.260 3.276 3.322 3.290 3.274 3.274 3.293 3.289 3.273 3.273 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.359 3.358 3.274 3.274 3.274 3.274 3.247 3.276 3.340 3.340 3.312 3.175 3.294 3.373 3.350 3.234 3.093 3.118 3.253 3.167 3.302 3.364 3.331 3.734 3.702 3.135 3.128 3.327 3.424 3.396 3.376 3.274 3.274 3.271 3.292 3.294 3.305 3.348 3.370 3.274 3.298 3.313 3.288 3.264 3.272 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.334 3.274 3.274 3.274 3.274 3.274 3.287 3.333 3.311 3.215 3.071 3.221 3.310 3.203 3.180 2.966 3.125 3.231 3.237 3.330 3.407 3.253 3.530 3.822 3.200 3.090 3.253 3.364 3.364 3.362 3.274 3.300 3.298 3.304 3.308 3.315 3.337 3.322 3.298 3.308 3.319 3.295 3.269 3.274 3.274 3.274 3.282 3.277 3.267 3.231 3.237 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.279 3.274 3.274 3.274 3.274 3.270 3.289 3.311 3.268 3.151 3.007 3.065 3.208 3.213 3.170 2.928 3.151 3.345 3.434 3.475 3.539 3.567 3.480 3.654 3.319 3.078 3.210 3.187 3.241 3.273 3.280 3.296 3.283 3.294 3.311 3.339 3.354 3.294 3.300 3.325 3.316 3.276 3.263 3.289 3.274 3.333 3.321 3.306 3.296 3.265 3.278 3.229 3.224 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.282 3.284 3.274 3.274 3.274 3.274 3.289 3.292 3.252 3.113 3.004 2.950 3.048 3.142 2.984 2.889 3.159 3.377 3.529 3.579 3.692 3.670 3.455 3.611 3.673 3.464 3.271 3.118 3.143 3.178 3.250 3.241 3.226 3.215 3.250 3.324 3.350 3.341 3.372 3.398 3.351 3.289 3.261 3.271 3.274 3.323 3.326 3.331 3.328 3.353 3.307 3.169 3.150 3.195 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.287 3.311 3.274 3.274 3.280 3.274 3.271 3.274 3.274 3.113 3.028 2.931 3.016 3.272 3.031 2.869 3.137 3.209 3.353 3.499 3.657 3.422 3.437 3.512 3.543 3.672 3.227 2.991 2.995 3.067 3.147 3.197 3.197 3.192 3.245 3.318 3.365 3.381 3.434 3.514 3.500 3.417 3.316 3.284 3.295 3.300 3.315 3.314 3.315 3.332 3.307 3.159 3.136 3.229 3.264 3.268 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.287 3.287 3.274 3.274 3.274 3.274 3.131 3.056 2.975 2.925 3.028 3.010 2.997 3.239 3.161 3.310 3.340 3.407 3.320 3.498 3.566 3.536 3.701 3.240 2.861 2.867 3.004 3.126 3.177 3.186 3.185 3.215 3.283 3.274 3.274 3.274 3.593 3.602 3.535 3.400 3.330 3.315 3.287 3.284 3.281 3.273 3.261 3.242 3.268 3.309 3.300 3.188 3.206 3.284 3.291 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.044 2.993 3.059 3.091 3.021 3.266 3.354 3.450 3.383 3.285 3.356 3.466 3.590 3.549 3.535 3.587 3.165 3.014 3.096 3.165 3.195 3.210 3.224 3.274 3.274 3.274 3.274 3.265 3.458 3.548 3.579 3.517 3.477 3.402 3.303 3.277 3.287 3.278 3.238 3.183 3.329 3.423 3.361 3.109 3.246 3.372 3.360 3.322 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.145 3.118 3.132 3.107 2.998 3.213 3.455 3.638 3.680 3.511 3.486 3.464 3.439 3.457 3.481 3.667 3.475 3.409 3.393 3.345 3.319 3.298 3.259 3.263 3.274 3.274 3.274 3.254 3.295 3.368 3.463 3.549 3.606 3.504 3.390 3.348 3.348 3.353 3.376 3.411 3.379 3.389 3.421 3.442 3.765 3.701 3.516 3.335 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.204 3.196 3.189 3.099 3.018 3.399 3.528 3.571 3.654 3.711 3.557 3.358 3.500 3.627 3.678 3.628 3.728 3.727 3.728 3.651 3.513 3.421 3.289 3.280 3.274 3.274 3.274 3.255 3.275 3.341 3.453 3.508 3.647 3.594 3.461 3.368 3.313 3.305 3.304 3.339 3.398 3.389 3.423 3.471 3.644 3.683 3.594 3.481 3.281 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.268 3.281 3.247 3.163 3.132 3.442 3.606 3.503 3.448 3.577 3.808 3.607 3.525 3.414 3.433 3.575 3.440 3.416 3.664 3.547 3.427 3.385 3.313 3.282 3.266 3.275 3.312 3.345 3.399 3.481 3.543 3.540 3.621 3.552 3.424 3.335 3.275 3.242 3.232 3.272 3.369 3.437 3.428 3.387 3.431 3.527 3.584 3.515 3.420 3.286 3.289 3.293 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.284 3.300 3.277 3.240 3.235 3.348 3.445 3.487 3.537 3.445 3.561 3.701 3.737 3.589 3.477 3.787 3.447 3.479 3.787 3.466 3.316 3.326 3.327 3.294 3.259 3.274 3.360 3.462 3.570 3.597 3.545 3.462 3.484 3.484 3.417 3.357 3.281 3.245 3.221 3.246 3.310 3.366 3.346 3.313 3.329 3.406 3.519 3.500 3.421 3.324 3.269 3.249 3.208 3.266 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.294 3.284 3.283 3.270 3.291 3.186 3.165 3.289 3.340 3.348 3.395 3.591 3.652 3.359 3.537 3.304 3.607 3.726 3.447 3.337 3.338 3.322 3.311 3.344 3.355 3.432 3.499 3.510 3.483 3.444 3.332 3.274 3.302 3.385 3.355 3.274 3.274 3.274 3.274 3.274 3.274 3.261 3.270 3.279 3.307 3.367 3.385 3.382 3.320 3.269 3.207 3.153 3.188 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.282 3.290 3.272 3.279 3.185 3.132 3.081 3.149 3.304 3.236 3.416 3.685 3.402 3.517 3.632 3.621 3.498 3.283 3.432 3.501 3.414 3.405 3.477 3.492 3.456 3.405 3.383 3.381 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.266 3.272 3.299 3.312 3.274 3.281 3.251 3.198 3.168 3.199 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.248 3.258 3.221 3.166 3.038 2.991 3.084 3.155 3.459 3.748 3.461 3.438 3.760 3.579 3.444 3.121 3.317 3.529 3.471 3.446 3.445 3.429 3.358 3.312 3.306 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.273 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.288 3.303 3.358 3.463 3.530 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.213 3.174 3.105 3.030 3.105 3.135 3.340 3.502 3.311 3.502 3.737 3.567 3.551 3.226 3.430 3.522 3.417 3.365 3.344 3.345 3.297 3.278 3.272 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.268 3.271 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.409 3.396 3.286 3.358 3.520 3.542 3.460 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.189 3.156 3.140 3.266 3.246 3.289 3.782 3.450 3.613 3.544 3.428 3.475 3.607 3.679 3.504 3.346 3.292 3.273 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.256 3.271 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.398 3.363 3.298 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.206 3.195 3.274 3.274 3.274 3.274 3.274 3.274 3.234 3.263 3.425 3.450 3.362 3.971 3.594 3.565 3.643 3.565 3.555 3.585 3.551 3.415 3.311 3.275 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.287 3.279 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.393 3.288 3.121 3.274 3.247 3.329 3.464 3.450 3.410 3.405 3.377 3.318 3.284 3.276 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.171 3.058 3.061 3.036 3.137 3.268 3.304 3.288 3.277 3.277 3.274 3.275 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.106 3.112 3.155 3.210 3.257 3.258 3.256 3.262 3.274 3.278 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.281 3.301 3.327 3.384 3.393 3.290 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.218 3.233 3.259 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.304 3.354 3.442 3.425 3.300 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.180 3.183 3.223 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.373 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.130 3.110 3.159 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.108 3.079 3.132 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.212 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 3.274 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.446 3.462 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.451 3.492 3.498 3.497 3.497 2.625 2.715 3.493 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.381 3.443 3.417 3.353 3.278 2.809 2.879 3.150 3.288 3.406 3.537 3.540 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.286 3.364 3.495 3.536 3.591 3.602 3.298 3.227 3.207 3.334 3.548 3.652 3.623 3.533 3.484 3.484 3.495 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.032 3.096 3.407 3.604 3.489 3.602 3.434 3.362 3.303 3.469 3.720 3.849 3.781 3.609 3.502 3.530 3.709 3.841 3.646 3.530 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 2.806 2.869 2.969 3.037 3.195 3.411 3.419 3.408 3.393 3.547 3.724 3.882 3.896 3.698 3.563 3.656 3.917 4.128 4.041 3.784 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 2.929 2.989 3.076 3.123 3.297 3.490 3.477 3.356 3.378 3.430 3.552 3.740 3.823 3.716 3.610 3.704 3.863 4.085 4.098 3.865 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.177 3.175 3.365 3.656 3.500 3.255 3.365 3.390 3.419 3.597 3.700 3.615 3.602 3.657 3.710 3.833 3.801 3.691 3.546 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.022 2.954 3.169 3.497 3.414 3.248 3.417 3.414 3.426 3.560 3.659 3.615 3.598 3.597 3.631 3.677 3.616 3.557 3.485 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.119 2.878 2.768 3.007 3.428 3.381 3.248 3.425 3.434 3.621 3.705 3.702 3.619 3.560 3.552 3.586 3.601 3.547 3.517 3.508 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.373 3.105 2.785 2.684 2.918 3.379 3.376 3.231 3.345 3.378 3.673 3.708 3.651 3.520 3.544 3.540 3.584 3.596 3.571 3.544 3.545 3.529 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.417 3.224 2.965 2.751 2.870 3.290 3.433 3.501 3.427 3.241 3.351 3.574 3.635 3.493 3.568 3.602 3.637 3.670 3.630 3.587 3.567 3.535 3.502 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.448 3.345 3.183 2.912 2.903 3.290 3.456 3.627 3.389 3.235 3.284 3.763 3.763 3.514 3.701 3.781 3.782 3.790 3.702 3.630 3.539 3.530 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.423 3.376 3.259 3.158 3.027 2.883 3.150 3.331 3.425 3.199 3.206 3.350 3.818 3.922 3.700 3.977 4.027 4.039 3.997 3.764 3.649 3.549 3.539 3.526 3.542 3.517 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.503 3.432 3.330 3.207 3.124 3.031 2.931 3.164 3.357 3.231 3.035 3.134 3.455 3.793 3.935 3.488 3.681 3.953 4.188 4.239 3.866 3.683 3.609 3.566 3.541 3.512 3.516 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.527 3.457 3.339 3.265 3.189 3.000 2.998 3.201 3.234 3.191 3.125 3.141 3.271 3.577 4.205 3.568 3.510 3.738 4.011 4.133 3.903 3.706 3.632 3.583 3.538 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.468 3.472 3.466 3.388 3.317 3.332 3.270 3.007 3.031 3.214 3.130 3.170 3.267 3.304 3.352 3.457 4.173 4.015 3.774 3.797 4.073 4.227 3.931 3.709 3.552 3.537 3.497 3.502 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.565 3.530 3.508 3.446 3.368 3.309 3.364 3.259 3.042 3.195 3.298 3.339 3.362 3.385 3.386 3.436 3.524 3.879 3.946 3.699 3.758 4.196 4.415 4.116 3.796 3.626 3.554 3.519 3.508 3.504 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.689 3.707 3.691 3.630 3.521 3.443 3.404 3.506 3.371 3.240 3.438 3.442 3.499 3.376 3.376 3.471 3.393 3.417 3.790 3.950 3.773 3.734 4.284 4.586 4.252 3.896 3.695 3.605 3.546 3.520 3.513 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.682 3.798 3.874 3.794 3.652 3.584 3.469 3.539 3.462 3.404 3.488 3.439 3.466 3.373 3.433 3.510 3.375 3.333 3.676 4.085 3.683 3.426 3.831 4.181 4.059 3.798 3.674 3.637 3.504 3.523 3.506 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.512 3.646 3.851 3.858 3.746 3.720 3.564 3.544 3.535 3.568 3.488 3.405 3.551 3.409 3.387 3.402 3.363 3.345 3.458 3.879 3.656 3.267 3.504 3.769 3.841 3.755 3.698 3.659 3.540 3.534 3.506 3.499 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.562 3.609 3.640 3.743 3.780 3.714 3.697 3.686 3.695 3.585 3.544 3.562 3.493 3.722 3.533 3.467 3.470 3.398 3.295 3.363 3.728 3.888 3.365 3.404 3.589 3.687 3.703 3.682 3.637 3.585 3.544 3.529 3.523 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.604 3.798 3.975 3.913 3.803 3.719 3.633 3.591 3.623 3.661 3.608 3.522 3.594 3.485 3.616 3.513 3.420 3.485 3.470 3.372 3.362 3.629 3.971 3.722 3.365 3.566 3.641 3.639 3.622 3.603 3.597 3.599 3.565 3.527 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.845 4.038 3.962 3.820 3.706 3.604 3.580 3.637 3.720 3.683 3.668 3.645 3.469 3.563 3.404 3.292 3.329 3.366 3.344 3.454 3.727 3.856 3.864 3.352 3.652 3.744 3.672 3.636 3.615 3.606 3.592 3.557 3.506 3.502 3.503 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.530 3.617 3.734 3.738 3.684 3.584 3.563 3.554 3.609 3.691 3.730 3.768 3.749 3.552 3.616 3.636 3.516 3.474 3.392 3.303 3.521 3.669 3.694 3.633 3.201 3.415 3.701 3.731 3.708 3.636 3.609 3.571 3.530 3.500 3.510 3.492 3.497 3.497 3.497 3.497 3.497 3.497 3.499 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.517 3.538 3.556 3.594 3.584 3.558 3.520 3.501 3.512 3.550 3.592 3.697 3.668 3.733 3.827 3.743 3.732 3.483 3.299 3.493 3.362 3.437 3.566 3.537 3.699 3.510 3.559 3.736 3.742 3.740 3.667 3.625 3.590 3.549 3.517 3.519 3.524 3.533 3.579 3.612 3.497 3.497 3.540 3.542 3.524 3.536 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.525 3.558 3.555 3.553 3.540 3.511 3.494 3.484 3.501 3.546 3.576 3.640 3.576 3.674 3.834 3.777 3.721 3.567 3.487 3.520 3.230 3.225 3.499 3.616 3.802 3.740 3.572 3.678 3.754 3.809 3.779 3.723 3.655 3.596 3.564 3.574 3.584 3.568 3.607 3.635 3.580 3.549 3.567 3.563 3.528 3.535 3.506 3.497 3.504 3.513 3.500 3.442 3.494 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.550 3.544 3.520 3.503 3.498 3.494 3.503 3.531 3.581 3.579 3.605 3.542 3.607 3.819 3.683 3.650 3.496 3.456 3.448 3.296 3.250 3.540 3.561 3.692 3.943 3.489 3.543 3.803 3.780 3.753 3.714 3.667 3.626 3.604 3.604 3.554 3.511 3.568 3.612 3.573 3.569 3.591 3.574 3.540 3.538 3.529 3.546 3.548 3.518 3.466 3.454 3.505 3.528 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.516 3.519 3.509 3.497 3.496 3.504 3.518 3.554 3.592 3.572 3.616 3.579 3.606 3.821 3.703 3.649 3.448 3.344 3.426 3.376 3.455 3.607 3.699 3.654 3.762 3.328 3.432 3.741 3.577 3.589 3.606 3.597 3.579 3.559 3.571 3.527 3.534 3.604 3.609 3.569 3.593 3.583 3.518 3.503 3.567 3.629 3.635 3.628 3.565 3.540 3.533 3.535 3.503 3.492 3.505 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.500 3.520 3.514 3.511 3.509 3.512 3.527 3.550 3.578 3.576 3.572 3.568 3.535 3.601 3.613 3.538 3.398 3.181 3.277 3.405 3.485 3.518 3.579 3.583 3.768 3.705 3.511 3.553 3.525 3.484 3.459 3.459 3.459 3.415 3.416 3.410 3.472 3.543 3.647 3.738 3.708 3.609 3.519 3.456 3.518 3.605 3.660 3.689 3.669 3.659 3.671 3.577 3.426 3.426 3.460 3.499 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.532 3.538 3.535 3.523 3.517 3.514 3.507 3.566 3.591 3.518 3.499 3.430 3.377 3.487 3.540 3.444 3.239 3.151 3.332 3.527 3.545 3.441 3.508 3.624 3.728 3.568 3.408 3.243 3.228 3.248 3.309 3.378 3.384 3.393 3.424 3.497 3.589 3.699 3.827 3.843 3.773 3.703 3.547 3.552 3.591 3.651 3.684 3.679 3.707 3.722 3.602 3.389 3.399 3.460 3.508 3.551 3.554 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.511 3.507 3.503 3.500 3.541 3.539 3.469 3.455 3.385 3.278 3.314 3.446 3.484 3.460 3.232 3.329 3.479 3.474 3.451 3.582 3.633 3.632 3.647 3.294 3.021 3.014 3.118 3.263 3.354 3.377 3.378 3.399 3.435 3.520 3.648 3.815 3.900 3.817 3.737 3.577 3.566 3.605 3.605 3.602 3.599 3.590 3.549 3.514 3.530 3.570 3.501 3.483 3.535 3.564 3.556 3.555 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.506 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.525 3.496 3.484 3.408 3.337 3.377 3.454 3.396 3.576 3.489 3.515 3.512 3.382 3.430 3.576 3.667 3.782 3.674 3.427 3.144 3.006 3.125 3.305 3.382 3.412 3.425 3.423 3.455 3.481 3.500 3.550 3.589 3.626 3.591 3.593 3.656 3.664 3.584 3.563 3.572 3.569 3.512 3.465 3.648 3.715 3.552 3.461 3.582 3.596 3.569 3.554 3.549 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.498 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.446 3.426 3.407 3.458 3.528 3.475 3.523 3.518 3.640 3.710 3.488 3.490 3.566 3.546 3.632 3.589 3.541 3.315 3.129 3.379 3.563 3.584 3.538 3.460 3.430 3.441 3.462 3.451 3.421 3.402 3.430 3.437 3.545 3.681 3.691 3.639 3.627 3.645 3.692 3.750 3.619 3.619 3.661 3.630 3.688 3.876 3.756 3.658 3.577 3.544 3.535 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.447 3.461 3.492 3.536 3.527 3.426 3.522 3.504 3.584 3.699 3.705 3.591 3.543 3.560 3.546 3.674 3.704 3.707 3.586 3.740 3.923 3.846 3.681 3.567 3.508 3.489 3.492 3.470 3.436 3.406 3.429 3.481 3.572 3.740 3.774 3.694 3.621 3.586 3.575 3.556 3.556 3.693 3.691 3.656 3.646 3.737 3.778 3.784 3.635 3.550 3.521 3.518 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.495 3.526 3.556 3.556 3.508 3.455 3.525 3.535 3.522 3.503 3.533 3.765 3.753 3.669 3.478 3.531 3.711 3.697 3.675 3.570 3.654 3.744 3.723 3.621 3.529 3.507 3.533 3.551 3.551 3.520 3.524 3.579 3.684 3.796 3.792 3.669 3.572 3.505 3.468 3.474 3.525 3.660 3.735 3.694 3.593 3.631 3.771 3.858 3.676 3.569 3.510 3.496 3.502 3.496 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.546 3.551 3.529 3.509 3.519 3.543 3.496 3.464 3.500 3.401 3.444 3.661 3.693 3.497 3.491 3.837 3.689 3.697 3.710 3.594 3.549 3.593 3.582 3.488 3.421 3.495 3.596 3.712 3.793 3.756 3.669 3.636 3.647 3.669 3.650 3.621 3.544 3.486 3.466 3.493 3.555 3.616 3.586 3.532 3.551 3.645 3.727 3.645 3.574 3.511 3.473 3.465 3.450 3.477 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.510 3.519 3.502 3.507 3.531 3.591 3.536 3.410 3.381 3.368 3.321 3.410 3.493 3.389 3.358 3.717 3.565 3.606 3.700 3.522 3.495 3.511 3.526 3.528 3.551 3.668 3.809 3.894 3.830 3.719 3.632 3.579 3.555 3.557 3.589 3.615 3.582 3.534 3.510 3.503 3.507 3.506 3.515 3.494 3.503 3.542 3.583 3.589 3.590 3.533 3.472 3.388 3.363 3.413 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.505 3.507 3.520 3.539 3.594 3.623 3.577 3.490 3.397 3.415 3.382 3.450 3.558 3.478 3.758 3.686 3.652 3.579 3.311 3.363 3.421 3.509 3.628 3.749 3.840 3.827 3.736 3.665 3.614 3.580 3.497 3.497 3.478 3.480 3.506 3.501 3.503 3.518 3.497 3.489 3.497 3.491 3.483 3.487 3.500 3.522 3.539 3.547 3.520 3.456 3.368 3.354 3.403 3.497 3.497 3.497 + 3.497 3.497 3.497 3.509 3.532 3.497 3.600 3.652 3.609 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.507 3.503 3.517 3.546 3.576 3.583 3.542 3.488 3.331 3.233 3.499 3.690 3.435 3.523 3.737 3.571 3.396 3.158 3.260 3.449 3.521 3.566 3.648 3.678 3.643 3.586 3.560 3.547 3.532 3.497 3.497 3.497 3.440 3.424 3.493 3.513 3.502 3.488 3.487 3.497 3.496 3.489 3.495 3.500 3.509 3.520 3.526 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.517 3.566 3.553 3.673 3.760 3.710 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.535 3.528 3.527 3.565 3.614 3.458 3.233 3.385 3.560 3.349 3.472 3.615 3.663 3.481 3.320 3.430 3.624 3.577 3.527 3.543 3.576 3.563 3.529 3.513 3.504 3.500 3.497 3.497 3.497 3.497 3.415 3.438 3.479 3.482 3.493 3.497 3.497 3.497 3.499 3.504 3.504 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.646 3.649 3.596 3.526 3.716 3.775 3.704 3.639 3.497 3.497 3.497 3.497 3.497 3.501 3.497 3.497 3.497 3.486 3.493 3.497 3.497 3.497 3.497 3.497 3.504 3.532 3.545 3.501 3.382 3.544 4.002 3.519 3.551 3.656 3.700 3.587 3.650 3.802 3.702 3.543 3.503 3.492 3.497 3.510 3.511 3.500 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.450 3.475 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.606 3.563 3.515 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.486 3.432 3.408 3.497 3.497 3.497 3.497 3.497 3.497 3.564 3.598 3.641 3.632 3.691 3.991 3.712 3.626 3.739 3.713 3.675 3.725 3.728 3.597 3.497 3.489 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.509 3.517 3.513 3.506 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.420 3.432 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.617 3.509 3.357 3.446 3.435 3.452 3.573 3.599 3.566 3.562 3.556 3.490 3.478 3.494 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.498 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.500 3.514 3.519 3.526 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.412 3.300 3.331 3.376 3.395 3.464 3.475 3.462 3.454 3.462 3.442 3.480 3.513 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.517 3.526 3.534 3.497 3.543 3.581 3.542 3.495 3.482 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.397 3.439 3.448 3.448 3.450 3.440 3.427 3.447 3.446 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.515 3.528 3.525 3.618 3.659 3.547 3.452 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.446 3.422 3.433 3.458 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.705 3.703 3.588 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.458 3.404 3.396 3.417 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.458 3.378 3.323 3.347 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.361 3.312 3.359 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.483 3.471 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 3.497 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.591 3.686 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.687 3.733 3.659 3.528 2.999 3.085 3.660 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.576 3.601 3.674 3.501 3.284 3.008 3.181 3.428 3.507 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.470 3.509 3.621 3.409 3.355 3.497 3.509 3.493 3.475 3.518 3.685 3.790 3.780 3.719 3.687 3.689 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.241 3.203 3.407 3.348 3.330 3.610 3.624 3.524 3.507 3.619 3.838 3.959 3.916 3.812 3.767 3.822 3.921 3.950 3.807 3.703 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.077 3.020 3.143 3.156 3.317 3.611 3.663 3.570 3.560 3.759 3.964 4.029 4.046 3.953 3.893 4.033 4.194 4.209 4.109 3.940 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.181 3.174 3.285 3.327 3.461 3.644 3.604 3.480 3.498 3.673 3.905 4.077 4.105 3.988 3.915 4.188 4.329 4.409 4.379 4.131 3.883 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.410 3.374 3.461 3.640 3.547 3.391 3.471 3.603 3.759 3.969 4.152 3.982 3.894 4.108 4.117 4.218 4.224 4.124 3.952 3.856 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.286 3.174 3.276 3.411 3.457 3.439 3.532 3.553 3.659 3.869 4.139 4.019 3.934 3.935 3.954 4.020 3.986 3.938 3.901 3.846 3.739 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.651 3.444 3.160 3.016 3.167 3.314 3.422 3.480 3.547 3.484 3.697 4.032 4.220 4.055 3.905 3.832 3.869 3.910 3.851 3.813 3.817 3.738 3.738 3.713 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.637 3.447 3.159 3.035 3.210 3.415 3.366 3.381 3.464 3.372 3.600 4.054 4.136 3.864 3.760 3.767 3.846 3.866 3.822 3.812 3.806 3.796 3.722 3.712 3.730 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.653 3.516 3.313 3.110 3.209 3.451 3.392 3.447 3.468 3.273 3.335 3.965 4.187 3.835 3.747 3.844 3.905 3.949 3.896 3.868 3.843 3.818 3.809 3.743 3.719 3.709 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.661 3.632 3.542 3.427 3.200 3.162 3.358 3.401 3.515 3.432 3.323 3.332 3.903 4.166 3.783 3.802 4.036 4.085 4.092 4.017 3.946 3.884 3.802 3.787 3.715 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.634 3.554 3.470 3.395 3.245 3.125 3.230 3.342 3.481 3.314 3.363 3.431 3.837 4.290 3.997 3.958 4.230 4.313 4.272 4.121 4.021 3.936 3.862 3.849 3.836 3.715 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.661 3.615 3.530 3.440 3.441 3.389 3.270 3.309 3.395 3.438 3.247 3.396 3.592 3.858 4.199 3.997 3.818 4.010 4.350 4.556 4.299 4.080 3.936 3.849 3.801 3.760 3.714 3.719 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.689 3.698 3.671 3.555 3.465 3.545 3.521 3.450 3.369 3.430 3.639 3.454 3.438 3.441 3.592 4.002 4.076 3.655 3.693 4.048 4.359 4.284 4.076 3.942 3.857 3.788 3.729 3.692 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.698 3.687 3.682 3.661 3.597 3.583 3.684 3.638 3.595 3.485 3.363 3.452 3.534 3.489 3.374 3.395 3.964 4.391 3.762 3.739 3.970 4.220 4.221 4.020 3.921 3.847 3.784 3.713 3.675 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.792 3.767 3.730 3.684 3.630 3.654 3.641 3.562 3.508 3.529 3.518 3.519 3.536 3.553 3.533 3.482 3.472 3.720 4.189 3.768 3.750 4.060 4.418 4.484 4.160 3.953 3.849 3.786 3.710 3.698 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.889 3.884 3.852 3.790 3.665 3.639 3.722 3.650 3.480 3.426 3.397 3.459 3.396 3.491 3.569 3.460 3.367 3.589 4.103 4.048 3.761 4.098 4.560 4.679 4.270 4.034 3.932 3.840 3.790 3.749 3.700 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.760 3.883 3.985 4.014 3.917 3.733 3.585 3.639 3.718 3.597 3.552 3.462 3.523 3.423 3.496 3.566 3.483 3.410 3.587 4.058 4.138 3.637 3.949 4.609 4.685 4.257 4.061 3.950 3.851 3.788 3.752 3.717 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.750 3.820 3.981 4.063 3.980 3.829 3.594 3.521 3.600 3.666 3.726 3.614 3.662 3.607 3.541 3.519 3.526 3.494 3.542 3.783 3.973 3.528 3.621 4.076 4.401 4.289 4.142 4.027 3.908 3.803 3.742 3.717 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.895 3.924 3.980 4.044 4.014 3.890 3.740 3.685 3.666 3.694 3.762 3.583 3.667 3.636 3.518 3.493 3.452 3.371 3.433 3.669 4.046 3.838 3.709 3.895 4.101 4.208 4.163 4.081 3.961 3.831 3.755 3.739 3.731 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.893 4.077 4.134 4.065 4.002 3.911 3.811 3.769 3.800 3.768 3.744 3.795 3.748 3.733 3.587 3.494 3.506 3.429 3.375 3.410 3.607 3.977 4.104 3.692 3.797 3.932 4.127 4.176 4.096 3.953 3.843 3.779 3.753 3.739 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.713 3.799 4.041 4.136 4.035 3.950 3.866 3.809 3.801 3.832 3.792 3.778 3.743 3.770 3.824 3.573 3.466 3.464 3.472 3.463 3.524 3.776 3.847 4.195 3.787 3.877 3.924 4.069 4.153 4.091 3.946 3.843 3.782 3.750 3.740 3.732 3.694 3.694 3.694 3.694 3.694 3.694 3.695 3.690 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.646 3.672 3.824 3.917 3.895 3.855 3.812 3.791 3.797 3.854 3.833 3.790 3.879 3.806 3.728 3.649 3.893 3.747 3.564 3.425 3.496 3.868 3.736 3.865 3.776 3.866 4.063 4.183 4.118 3.977 3.931 3.856 3.779 3.744 3.742 3.737 3.713 3.694 3.694 3.694 3.701 3.692 3.693 3.688 3.694 3.694 3.694 3.695 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.683 3.660 3.632 3.689 3.736 3.740 3.733 3.736 3.748 3.770 3.804 3.784 3.758 3.890 3.991 3.795 3.672 3.895 3.721 3.606 3.382 3.416 3.690 3.640 3.701 3.900 4.016 4.131 4.170 4.135 4.007 3.980 3.928 3.844 3.783 3.764 3.745 3.699 3.710 3.706 3.694 3.716 3.717 3.723 3.716 3.732 3.729 3.693 3.703 3.702 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.703 3.694 3.660 3.688 3.707 3.712 3.718 3.729 3.741 3.755 3.798 3.810 3.775 3.834 3.915 3.738 3.624 3.679 3.592 3.568 3.297 3.289 3.641 3.873 3.924 4.005 3.852 3.840 4.133 4.216 4.222 4.152 4.015 3.903 3.851 3.847 3.814 3.714 3.720 3.814 3.797 3.757 3.727 3.750 3.735 3.742 3.740 3.729 3.731 3.727 3.698 3.681 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.712 3.709 3.674 3.679 3.697 3.715 3.732 3.741 3.754 3.761 3.791 3.850 3.827 3.739 3.736 3.611 3.678 3.698 3.581 3.618 3.449 3.321 3.584 3.900 3.928 4.037 3.707 3.709 4.189 4.251 4.277 4.139 4.032 3.989 3.988 3.922 3.730 3.599 3.717 3.834 3.852 3.830 3.741 3.753 3.764 3.776 3.768 3.750 3.732 3.702 3.654 3.678 3.752 3.762 3.754 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.716 3.695 3.662 3.675 3.696 3.721 3.739 3.757 3.784 3.797 3.808 3.891 3.908 3.783 3.755 3.681 3.708 3.692 3.545 3.583 3.554 3.444 3.416 3.683 3.906 3.870 3.535 3.478 3.914 3.979 4.082 4.080 4.019 3.955 3.908 3.857 3.675 3.627 3.764 3.840 3.790 3.794 3.692 3.665 3.689 3.790 3.854 3.869 3.842 3.730 3.686 3.739 3.789 3.759 3.742 3.733 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.715 3.698 3.669 3.680 3.715 3.736 3.743 3.754 3.774 3.811 3.879 3.956 3.992 3.920 3.768 3.679 3.611 3.631 3.442 3.514 3.493 3.464 3.411 3.596 3.857 3.903 3.817 3.439 3.670 3.921 4.032 3.930 3.863 3.814 3.757 3.696 3.598 3.617 3.689 3.876 4.045 3.900 3.694 3.628 3.564 3.631 3.770 3.940 3.981 3.865 3.811 3.850 3.826 3.733 3.723 3.732 3.738 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.691 3.692 3.699 3.745 3.739 3.723 3.712 3.721 3.791 3.866 3.846 3.853 3.804 3.721 3.730 3.680 3.738 3.530 3.406 3.487 3.620 3.684 3.678 3.760 3.800 3.881 3.501 3.600 3.683 3.597 3.573 3.593 3.698 3.822 3.732 3.595 3.595 3.687 3.872 3.999 3.883 3.725 3.659 3.620 3.706 3.815 3.991 4.033 3.930 3.850 3.825 3.787 3.707 3.676 3.721 3.740 3.780 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.696 3.688 3.696 3.694 3.694 3.694 3.702 3.698 3.713 3.764 3.781 3.743 3.755 3.731 3.683 3.719 3.691 3.672 3.626 3.446 3.522 3.658 3.716 3.704 3.788 3.753 3.856 3.638 3.456 3.399 3.263 3.274 3.377 3.578 3.724 3.637 3.535 3.569 3.687 3.778 3.821 3.826 3.658 3.551 3.552 3.634 3.740 3.851 3.879 3.836 3.754 3.660 3.722 3.764 3.677 3.658 3.715 3.755 3.758 3.744 3.765 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.697 3.700 3.716 3.694 3.694 3.694 3.694 3.694 3.699 3.724 3.735 3.728 3.738 3.725 3.685 3.695 3.661 3.599 3.664 3.564 3.544 3.664 3.640 3.566 3.599 3.577 3.848 3.792 3.473 3.263 3.076 3.112 3.308 3.488 3.634 3.626 3.598 3.631 3.684 3.679 3.636 3.611 3.546 3.478 3.541 3.643 3.681 3.689 3.736 3.793 3.760 3.675 3.746 3.844 3.745 3.649 3.731 3.751 3.759 3.744 3.744 3.743 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.700 3.694 3.694 3.694 3.694 3.694 3.694 3.684 3.681 3.679 3.675 3.684 3.703 3.675 3.713 3.732 3.734 3.717 3.561 3.593 3.751 3.574 3.484 3.578 3.625 3.744 3.668 3.360 3.146 2.939 3.119 3.446 3.611 3.637 3.555 3.564 3.633 3.693 3.682 3.604 3.564 3.530 3.508 3.583 3.692 3.715 3.714 3.744 3.802 3.847 3.765 3.754 3.827 3.743 3.686 3.771 3.792 3.779 3.764 3.729 3.707 3.704 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.678 3.664 3.662 3.671 3.687 3.730 3.754 3.785 3.776 3.740 3.707 3.625 3.673 3.741 3.644 3.519 3.584 3.636 3.661 3.692 3.473 3.363 3.303 3.531 3.834 3.842 3.741 3.672 3.677 3.721 3.738 3.676 3.581 3.504 3.502 3.549 3.646 3.797 3.875 3.855 3.804 3.780 3.762 3.736 3.862 3.910 3.774 3.698 3.711 3.786 3.842 3.846 3.739 3.688 3.670 3.681 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.686 3.671 3.680 3.702 3.739 3.774 3.799 3.785 3.757 3.696 3.632 3.655 3.742 3.695 3.690 3.677 3.613 3.534 3.537 3.718 3.741 3.621 3.605 3.638 3.738 3.838 3.859 3.809 3.792 3.868 3.929 3.850 3.683 3.544 3.514 3.631 3.810 3.917 3.968 3.927 3.837 3.776 3.745 3.773 3.848 3.901 3.878 3.811 3.731 3.794 3.981 3.951 3.752 3.677 3.642 3.650 3.687 3.689 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.766 3.763 3.728 3.719 3.705 3.708 3.729 3.788 3.688 3.641 3.573 3.610 3.679 3.613 3.708 3.779 3.666 3.648 3.594 3.856 3.844 3.803 3.723 3.656 3.736 3.843 3.844 3.770 3.694 3.665 3.713 3.792 3.812 3.819 3.854 3.852 3.810 3.763 3.737 3.759 3.785 3.805 3.773 3.704 3.721 3.825 3.842 3.747 3.710 3.687 3.664 3.650 3.657 3.676 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.751 3.748 3.719 3.696 3.702 3.720 3.778 3.836 3.795 3.612 3.553 3.514 3.632 3.785 3.654 3.627 3.737 3.643 3.549 3.646 3.827 3.827 3.748 3.674 3.687 3.798 3.901 3.942 3.918 3.816 3.747 3.742 3.756 3.756 3.758 3.789 3.806 3.790 3.773 3.759 3.731 3.715 3.713 3.710 3.690 3.702 3.746 3.763 3.770 3.785 3.720 3.628 3.540 3.568 3.628 3.694 3.694 3.694 + 3.694 3.694 3.694 3.696 3.711 3.694 3.722 3.768 3.815 3.744 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.736 3.745 3.721 3.703 3.708 3.724 3.745 3.798 3.889 3.913 3.799 3.620 3.619 3.669 3.757 3.738 3.755 3.853 3.751 3.730 3.796 3.767 3.743 3.649 3.640 3.722 3.817 3.915 3.919 3.860 3.784 3.743 3.741 3.718 3.712 3.690 3.697 3.723 3.737 3.748 3.729 3.679 3.658 3.679 3.687 3.682 3.692 3.707 3.722 3.742 3.750 3.695 3.602 3.506 3.534 3.603 3.694 3.694 3.694 + 3.694 3.694 3.694 3.708 3.746 3.707 3.763 3.852 3.884 3.817 3.694 3.694 3.694 3.694 3.694 3.694 3.735 3.747 3.734 3.717 3.704 3.713 3.717 3.723 3.746 3.780 3.808 3.789 3.732 3.571 3.424 3.635 3.757 3.662 3.824 3.886 3.767 3.666 3.688 3.643 3.628 3.665 3.697 3.764 3.818 3.811 3.765 3.724 3.711 3.706 3.695 3.689 3.678 3.671 3.674 3.723 3.728 3.687 3.646 3.658 3.695 3.694 3.694 3.699 3.706 3.716 3.726 3.723 3.688 3.607 3.619 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.823 3.805 3.755 3.694 3.972 3.947 3.864 3.726 3.694 3.694 3.694 3.718 3.699 3.739 3.744 3.723 3.702 3.685 3.694 3.694 3.694 3.694 3.723 3.719 3.724 3.770 3.626 3.399 3.598 3.829 3.712 3.765 3.865 4.059 3.909 3.775 3.740 3.814 3.762 3.725 3.762 3.800 3.773 3.724 3.694 3.680 3.682 3.685 3.694 3.697 3.692 3.660 3.683 3.700 3.677 3.668 3.695 3.698 3.694 3.707 3.714 3.712 3.704 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.872 3.829 3.786 3.714 3.960 3.912 3.848 3.820 3.800 3.797 3.779 3.749 3.735 3.742 3.703 3.694 3.666 3.651 3.636 3.694 3.694 3.694 3.694 3.701 3.701 3.666 3.569 3.546 3.853 4.165 3.823 3.706 3.863 4.053 3.872 3.773 3.840 3.793 3.713 3.706 3.730 3.769 3.747 3.709 3.680 3.688 3.694 3.694 3.694 3.694 3.707 3.694 3.677 3.701 3.707 3.700 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.788 3.771 3.750 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.725 3.725 3.694 3.694 3.665 3.641 3.618 3.608 3.694 3.694 3.694 3.694 3.694 3.722 3.697 3.670 3.735 3.925 4.075 3.862 3.777 3.904 3.925 3.801 3.779 3.802 3.722 3.658 3.695 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.703 3.693 3.704 3.703 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.707 3.744 3.726 3.694 3.694 3.694 3.694 3.694 3.708 3.713 3.694 3.683 3.589 3.609 3.635 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.714 3.677 3.606 3.635 3.629 3.627 3.724 3.752 3.718 3.704 3.708 3.646 3.633 3.687 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.702 3.697 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.724 3.733 3.702 3.694 3.662 3.724 3.764 3.720 3.694 3.540 3.531 3.542 3.655 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.510 3.573 3.658 3.672 3.691 3.664 3.640 3.642 3.657 3.616 3.644 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.724 3.713 3.694 3.729 3.816 3.799 3.694 3.582 3.543 3.658 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.645 3.698 3.708 3.707 3.694 3.640 3.631 3.642 3.635 3.678 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.824 3.924 3.841 3.694 3.654 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.649 3.621 3.645 3.645 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.934 3.850 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.656 3.595 3.597 3.588 3.622 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.659 3.596 3.538 3.528 3.575 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.592 3.546 3.577 3.610 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.644 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 3.694 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.786 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.840 3.892 3.835 3.582 3.351 3.441 3.860 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.768 3.742 3.805 3.678 3.370 3.209 3.456 3.652 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.653 3.597 3.675 3.409 3.204 3.379 3.638 3.683 3.662 3.654 3.736 3.826 3.848 3.841 3.847 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.460 3.298 3.371 3.203 3.222 3.548 3.708 3.661 3.670 3.705 3.808 3.920 3.959 3.948 3.962 4.019 4.046 4.035 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.387 3.216 3.293 3.278 3.472 3.765 3.747 3.652 3.694 3.816 3.924 3.961 4.020 4.053 4.083 4.215 4.281 4.237 4.095 3.963 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.471 3.389 3.472 3.496 3.641 3.852 3.745 3.652 3.684 3.868 4.017 4.030 4.058 4.026 4.068 4.425 4.541 4.505 4.412 4.208 3.985 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.609 3.525 3.525 3.669 3.706 3.706 3.711 3.843 3.993 4.097 4.196 4.016 4.027 4.288 4.401 4.495 4.522 4.412 4.166 4.016 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.800 3.517 3.323 3.395 3.486 3.670 3.792 3.798 3.809 3.900 4.040 4.252 4.107 4.095 4.087 4.180 4.277 4.318 4.333 4.221 4.080 3.995 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.872 3.849 3.718 3.456 3.270 3.406 3.470 3.698 3.849 3.795 3.707 3.855 4.140 4.360 4.237 4.142 3.998 4.048 4.157 4.175 4.148 4.091 4.073 4.024 3.970 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.851 3.765 3.568 3.457 3.610 3.680 3.694 3.690 3.651 3.546 3.713 4.218 4.468 4.180 3.980 3.932 4.037 4.134 4.136 4.083 4.062 4.102 4.105 4.005 3.948 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.884 3.833 3.699 3.579 3.614 3.716 3.681 3.625 3.585 3.438 3.545 4.085 4.397 4.149 3.961 4.051 4.111 4.206 4.176 4.119 4.089 4.089 4.075 3.992 3.949 3.918 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.835 3.839 3.855 3.839 3.744 3.595 3.523 3.640 3.659 3.581 3.522 3.450 3.532 3.891 4.148 4.088 3.979 4.144 4.216 4.300 4.282 4.197 4.116 4.064 4.017 3.986 3.908 3.884 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.816 3.810 3.797 3.777 3.708 3.588 3.494 3.571 3.608 3.616 3.503 3.487 3.517 3.731 4.151 4.244 4.045 4.205 4.269 4.312 4.309 4.292 4.193 4.069 4.030 3.965 3.962 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.850 3.803 3.794 3.768 3.713 3.693 3.659 3.622 3.628 3.541 3.595 3.499 3.513 3.516 3.721 4.110 4.201 3.981 4.080 4.262 4.435 4.438 4.312 4.190 4.102 4.033 3.989 3.977 3.882 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.866 3.849 3.837 3.790 3.723 3.715 3.721 3.731 3.627 3.468 3.632 3.574 3.528 3.452 3.595 3.945 4.256 3.895 3.828 4.021 4.215 4.298 4.229 4.187 4.141 4.060 3.989 3.870 3.881 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.935 3.908 3.872 3.838 3.794 3.760 3.796 3.784 3.788 3.738 3.564 3.602 3.630 3.567 3.447 3.471 3.838 4.339 4.008 3.913 4.002 4.092 4.258 4.193 4.176 4.118 4.050 3.968 3.895 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.951 4.009 3.959 3.885 3.815 3.811 3.770 3.734 3.715 3.765 3.774 3.688 3.641 3.669 3.658 3.560 3.515 3.822 4.504 4.232 4.025 4.176 4.383 4.559 4.403 4.266 4.145 4.067 3.978 3.894 3.874 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 4.038 4.064 4.036 3.977 3.874 3.822 3.840 3.830 3.738 3.680 3.615 3.530 3.463 3.578 3.688 3.468 3.348 3.562 4.197 4.367 4.048 4.085 4.427 4.772 4.599 4.419 4.301 4.164 4.028 3.937 3.898 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.937 4.123 4.176 4.148 3.989 3.828 3.845 3.969 3.887 3.789 3.617 3.567 3.520 3.668 3.701 3.494 3.355 3.490 3.983 4.431 4.004 4.061 4.509 4.917 4.641 4.382 4.253 4.148 4.049 3.975 3.934 3.865 3.855 3.844 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 4.033 4.159 4.243 4.170 4.010 3.819 3.780 3.884 3.975 3.923 3.773 3.784 3.781 3.745 3.698 3.619 3.460 3.558 3.909 4.244 3.974 3.934 4.318 4.850 4.588 4.420 4.360 4.252 4.092 4.000 3.968 3.922 3.886 3.846 3.844 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 4.002 4.080 4.100 4.107 4.084 4.008 3.871 3.822 3.821 3.894 3.947 3.756 3.717 3.732 3.649 3.647 3.602 3.442 3.564 3.885 4.179 4.182 3.999 4.212 4.455 4.465 4.513 4.487 4.327 4.111 4.010 3.989 4.002 3.971 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 4.050 4.137 4.094 4.037 3.982 3.912 3.859 3.862 3.862 3.931 3.964 3.862 3.803 3.694 3.577 3.566 3.577 3.525 3.595 3.741 4.010 4.165 3.920 4.079 4.180 4.512 4.684 4.495 4.264 4.106 4.035 4.012 3.980 3.930 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.906 4.041 4.154 4.092 3.992 3.945 3.913 3.876 3.896 3.850 3.885 3.867 3.856 3.840 3.637 3.538 3.559 3.620 3.565 3.549 3.737 3.893 4.113 4.145 4.343 3.948 4.240 4.611 4.493 4.252 4.096 4.032 4.014 3.967 3.925 3.876 3.829 3.855 3.855 3.855 3.855 3.845 3.856 3.875 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.842 3.800 3.906 4.035 4.036 3.977 3.942 3.930 3.906 3.937 3.874 3.816 3.946 3.964 3.812 3.705 3.724 3.747 3.737 3.568 3.551 3.835 3.927 4.168 4.574 4.420 3.941 4.263 4.416 4.332 4.214 4.114 4.041 3.997 3.967 3.922 3.859 3.848 3.876 3.893 3.873 3.838 3.825 3.829 3.869 3.855 3.855 3.850 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.796 3.734 3.799 3.856 3.853 3.856 3.874 3.909 3.900 3.909 3.849 3.815 3.982 4.101 3.770 3.652 3.730 3.750 3.791 3.556 3.517 3.774 3.844 4.025 4.238 4.087 3.899 4.248 4.408 4.324 4.267 4.204 4.114 4.056 4.009 3.912 3.800 3.811 3.886 3.920 3.894 3.827 3.810 3.812 3.855 3.855 3.862 3.862 3.868 3.882 3.872 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.849 3.813 3.755 3.779 3.803 3.816 3.845 3.882 3.898 3.853 3.827 3.781 3.825 3.938 3.973 3.715 3.557 3.601 3.627 3.760 3.524 3.406 3.700 3.955 3.997 4.124 4.084 3.848 4.295 4.443 4.444 4.469 4.357 4.208 4.152 4.087 3.923 3.755 3.786 3.920 3.966 3.910 3.799 3.785 3.812 3.874 3.891 3.865 3.843 3.848 3.894 3.931 3.955 3.949 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.864 3.835 3.789 3.793 3.815 3.855 3.887 3.897 3.886 3.825 3.794 3.786 3.818 3.834 3.833 3.682 3.789 3.815 3.697 3.842 3.713 3.501 3.537 3.863 4.079 4.179 4.002 3.789 4.158 4.336 4.393 4.324 4.277 4.319 4.351 4.124 3.802 3.681 3.857 4.019 4.103 4.035 3.828 3.750 3.804 3.893 3.898 3.830 3.753 3.751 3.859 3.941 3.963 3.944 3.918 3.901 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.865 3.825 3.787 3.808 3.843 3.878 3.896 3.894 3.871 3.817 3.801 3.811 3.853 3.864 3.835 3.792 3.843 3.777 3.690 3.788 3.794 3.606 3.378 3.542 3.931 4.066 4.081 3.819 4.015 4.206 4.322 4.371 4.370 4.295 4.305 4.106 3.750 3.674 3.871 3.994 4.020 4.007 3.795 3.659 3.697 3.836 3.883 3.811 3.760 3.745 3.836 3.945 3.970 3.944 3.933 3.915 3.896 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.857 3.816 3.789 3.812 3.845 3.878 3.888 3.892 3.878 3.861 3.892 3.874 3.883 3.922 3.847 3.844 3.758 3.726 3.629 3.682 3.560 3.527 3.445 3.537 3.780 3.899 4.120 3.714 3.864 4.087 4.365 4.418 4.371 4.263 4.157 3.958 3.741 3.734 3.785 3.868 4.049 4.039 3.770 3.549 3.522 3.599 3.687 3.766 3.836 3.810 3.847 3.951 3.999 3.939 3.951 3.926 3.926 3.890 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.796 3.823 3.851 3.859 3.867 3.857 3.853 3.855 3.878 3.920 3.850 3.833 3.865 3.862 3.917 3.835 3.868 3.765 3.643 3.571 3.594 3.735 3.717 3.707 3.753 4.030 3.657 3.647 3.908 3.985 3.931 3.928 4.053 4.102 3.918 3.798 3.735 3.715 3.754 3.826 3.836 3.772 3.629 3.607 3.677 3.732 3.840 3.878 3.800 3.818 3.900 3.955 3.886 3.872 3.882 3.901 3.916 3.873 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.826 3.876 3.880 3.847 3.855 3.855 3.844 3.856 3.885 3.907 3.854 3.849 3.884 3.889 3.953 3.888 3.905 3.911 3.756 3.735 3.657 3.700 3.697 3.657 3.684 3.904 3.724 3.559 3.886 3.728 3.516 3.520 3.873 3.989 3.838 3.701 3.665 3.733 3.763 3.789 3.795 3.732 3.636 3.661 3.741 3.789 3.908 3.948 3.894 3.865 3.871 3.925 3.861 3.796 3.851 3.838 3.880 3.862 3.836 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.857 3.888 3.875 3.855 3.855 3.858 3.851 3.857 3.870 3.889 3.899 3.912 3.948 3.919 3.936 3.896 3.877 3.908 3.783 3.744 3.763 3.767 3.665 3.647 3.620 3.883 3.961 3.662 3.723 3.448 3.298 3.423 3.782 3.855 3.745 3.690 3.706 3.742 3.748 3.715 3.651 3.628 3.635 3.708 3.814 3.886 3.935 3.991 3.993 3.936 3.932 3.957 3.909 3.858 3.948 3.890 3.896 3.886 3.847 3.837 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.860 3.856 3.854 3.850 3.846 3.872 3.915 3.948 3.895 3.895 3.922 3.934 3.956 3.796 3.714 3.794 3.689 3.558 3.654 3.733 3.889 3.869 3.473 3.400 3.238 3.225 3.507 3.700 3.654 3.582 3.643 3.746 3.857 3.882 3.801 3.720 3.681 3.684 3.739 3.835 3.883 3.897 3.932 3.981 3.955 3.921 4.026 4.031 3.963 3.978 3.866 3.868 3.852 3.826 3.803 3.791 3.825 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.861 3.855 3.837 3.840 3.838 3.856 3.908 3.974 3.983 3.969 3.951 3.929 3.920 3.886 3.825 3.826 3.667 3.506 3.554 3.640 3.845 3.902 3.435 3.251 3.299 3.411 3.844 3.953 3.842 3.763 3.779 3.832 3.833 3.775 3.712 3.676 3.666 3.704 3.780 3.899 3.993 4.033 4.010 3.975 3.930 3.991 4.029 3.988 3.880 3.884 3.877 3.941 3.908 3.877 3.803 3.758 3.783 3.837 3.854 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.865 3.851 3.843 3.853 3.864 3.887 3.925 3.971 3.998 3.969 3.926 3.876 3.802 3.820 3.886 3.837 3.744 3.612 3.527 3.530 3.784 3.922 3.633 3.422 3.460 3.479 3.778 3.936 3.857 3.880 3.992 4.060 4.049 3.940 3.786 3.681 3.617 3.747 3.908 3.993 4.071 4.105 4.086 4.038 4.041 4.099 4.100 4.077 3.987 3.943 3.920 4.006 4.054 4.009 3.867 3.787 3.781 3.847 3.855 3.854 3.851 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.868 3.889 3.871 3.855 3.855 3.855 3.858 3.866 3.889 3.900 3.914 3.913 3.891 3.875 3.854 3.837 3.877 3.944 3.813 3.710 3.607 3.561 3.669 3.858 3.865 3.706 3.593 3.527 3.565 4.024 4.093 3.904 3.849 3.937 4.062 4.102 4.018 3.851 3.705 3.660 3.769 3.909 3.950 3.940 3.975 4.017 4.022 4.009 4.022 4.008 4.017 4.031 4.003 3.885 3.897 3.987 3.994 3.929 3.882 3.888 3.866 3.824 3.837 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.874 3.860 3.857 3.900 3.887 3.979 3.951 3.861 3.855 3.855 3.855 3.855 3.860 3.863 3.894 3.884 3.863 3.848 3.854 3.875 3.912 3.966 3.991 3.809 3.681 3.651 3.704 3.867 3.782 3.694 3.625 3.562 3.578 3.764 4.035 3.979 3.817 3.778 3.913 4.059 4.077 4.026 3.878 3.766 3.743 3.808 3.888 3.909 3.885 3.897 3.923 3.938 3.967 3.989 3.965 3.959 3.959 3.943 3.879 3.879 3.917 3.937 3.956 3.961 3.880 3.784 3.707 3.773 3.821 3.855 3.855 3.855 + 3.855 3.855 3.855 3.859 3.881 3.869 3.871 3.920 3.999 4.011 3.959 3.855 3.855 3.855 3.855 3.855 3.855 3.890 3.885 3.863 3.850 3.855 3.872 3.892 3.924 3.966 4.002 3.911 3.768 3.782 3.865 3.930 3.715 3.775 3.750 3.668 3.717 3.899 4.067 4.006 3.811 3.785 3.892 3.995 3.993 3.958 3.870 3.808 3.796 3.822 3.847 3.848 3.824 3.827 3.847 3.879 3.910 3.913 3.890 3.885 3.898 3.887 3.856 3.862 3.877 3.890 3.908 3.906 3.819 3.720 3.634 3.729 3.798 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.928 3.941 3.855 3.855 4.087 4.064 3.855 3.855 3.855 3.855 3.816 3.796 3.874 3.891 3.883 3.874 3.865 3.864 3.867 3.873 3.886 3.902 3.912 3.864 3.768 3.732 3.659 3.783 3.861 3.899 4.122 4.022 3.840 3.791 4.094 4.085 3.939 3.955 3.969 3.976 3.963 3.941 3.875 3.839 3.819 3.818 3.827 3.827 3.822 3.826 3.845 3.886 3.883 3.866 3.843 3.858 3.889 3.884 3.868 3.871 3.879 3.880 3.887 3.864 3.802 3.743 3.855 3.802 3.831 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 4.000 3.977 3.866 3.855 4.108 4.048 3.949 3.889 3.863 3.859 3.856 3.809 3.878 3.902 3.901 3.882 3.863 3.851 3.844 3.853 3.862 3.864 3.847 3.813 3.789 3.729 3.599 3.809 4.062 4.082 4.129 3.962 4.087 4.160 4.061 4.068 4.109 4.059 4.009 3.988 3.982 3.935 3.878 3.849 3.820 3.822 3.831 3.855 3.855 3.861 3.855 3.860 3.861 3.848 3.847 3.874 3.903 3.913 3.896 3.884 3.877 3.874 3.855 3.855 3.826 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 4.017 3.958 3.898 3.855 4.034 3.997 3.940 3.919 3.939 3.935 3.900 3.870 3.893 3.886 3.855 3.855 3.825 3.805 3.816 3.855 3.855 3.855 3.843 3.824 3.781 3.705 3.691 3.952 4.258 3.983 3.945 3.920 4.071 4.015 3.905 3.954 3.998 3.941 3.944 3.953 3.946 3.916 3.862 3.855 3.855 3.855 3.855 3.855 3.855 3.870 3.860 3.840 3.866 3.872 3.869 3.875 3.868 3.855 3.878 3.878 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.932 3.908 3.896 3.855 3.855 3.855 3.855 3.855 3.859 3.895 3.866 3.888 3.880 3.866 3.855 3.822 3.764 3.838 3.855 3.855 3.855 3.855 3.840 3.801 3.768 3.836 4.033 4.174 3.959 3.935 3.999 4.005 3.937 3.886 3.918 3.881 3.833 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.859 3.855 3.842 3.870 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.803 3.846 3.885 3.905 3.898 3.855 3.857 3.829 3.846 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.821 3.826 3.821 3.825 3.823 3.834 3.898 3.878 3.870 3.842 3.846 3.809 3.827 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.856 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.817 3.904 3.979 3.950 3.881 3.767 3.769 3.830 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.848 3.784 3.868 3.915 3.911 3.855 3.836 3.839 3.845 3.829 3.838 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.852 4.037 4.089 3.986 3.858 3.761 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.830 3.883 3.909 3.904 3.863 3.812 3.802 3.848 3.853 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 4.127 4.107 3.994 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.861 3.817 3.782 3.830 3.818 3.799 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 4.014 3.930 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.829 3.779 3.767 3.717 3.732 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.828 3.784 3.736 3.682 3.719 3.841 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.784 3.746 3.741 3.782 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.851 3.856 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 3.855 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.017 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.058 4.063 3.854 3.687 3.810 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.032 3.917 3.908 3.888 3.588 3.456 3.753 3.892 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 3.969 3.735 3.705 3.508 3.268 3.431 3.818 3.889 3.884 3.844 3.853 3.911 3.963 4.016 4.044 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 3.714 3.515 3.458 3.299 3.310 3.609 3.872 3.852 3.875 3.860 3.860 3.947 4.052 4.116 4.122 4.135 4.159 4.157 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 3.732 3.541 3.508 3.519 3.751 3.932 3.894 3.835 3.886 3.918 3.920 3.990 4.116 4.197 4.175 4.235 4.298 4.295 4.099 4.060 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 3.802 3.733 3.749 3.786 3.996 4.128 4.026 3.930 3.947 4.050 4.058 4.090 4.169 4.155 4.177 4.345 4.479 4.516 4.479 4.305 4.136 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 3.991 3.903 3.806 3.859 3.988 4.058 4.010 4.023 4.166 4.221 4.249 4.331 4.156 4.156 4.240 4.380 4.577 4.636 4.530 4.290 4.123 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.058 4.050 3.994 3.826 3.581 3.704 3.852 4.110 4.088 4.109 4.151 4.186 4.265 4.418 4.230 4.154 4.073 4.188 4.409 4.603 4.656 4.428 4.272 4.098 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.068 4.062 3.994 3.837 3.653 3.765 3.853 4.124 4.136 4.069 3.997 4.058 4.264 4.517 4.402 4.158 3.981 4.057 4.279 4.451 4.479 4.374 4.321 4.251 4.179 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.049 3.974 3.897 3.943 3.993 4.097 3.977 3.872 3.813 3.917 4.213 4.503 4.409 4.046 3.935 4.045 4.280 4.413 4.369 4.333 4.371 4.327 4.214 4.134 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.057 4.095 4.091 4.054 4.012 3.952 3.984 4.036 3.893 3.788 3.676 3.771 4.117 4.472 4.508 4.184 4.096 4.169 4.395 4.429 4.347 4.296 4.294 4.282 4.210 4.158 4.118 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.033 4.046 4.077 4.092 4.040 3.975 3.906 3.965 3.931 3.802 3.672 3.573 3.669 3.957 4.264 4.463 4.358 4.262 4.232 4.403 4.456 4.323 4.225 4.187 4.212 4.213 4.181 4.136 4.092 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.033 4.059 4.068 4.086 4.042 4.007 3.924 3.978 3.897 3.808 3.652 3.566 3.602 3.807 4.184 4.387 4.360 4.271 4.193 4.264 4.313 4.299 4.244 4.207 4.264 4.243 4.189 4.050 4.073 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.055 4.072 4.079 4.082 4.025 3.962 3.952 4.005 3.892 3.889 3.724 3.603 3.575 3.767 4.107 4.333 4.266 4.179 4.203 4.262 4.292 4.263 4.286 4.361 4.356 4.283 4.216 4.186 4.074 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.155 4.125 4.082 4.050 4.063 4.015 3.945 4.029 4.034 3.846 3.840 3.712 3.618 3.556 3.680 3.940 4.349 4.052 3.959 4.075 4.161 4.237 4.258 4.363 4.452 4.390 4.301 4.184 4.152 4.079 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.221 4.216 4.158 4.066 4.007 4.061 4.049 3.980 4.076 4.116 3.929 3.854 3.698 3.625 3.552 3.560 3.831 4.383 4.180 4.040 4.065 4.128 4.215 4.231 4.354 4.386 4.369 4.304 4.201 4.107 4.076 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.254 4.255 4.175 4.091 4.045 4.046 4.025 4.011 4.113 4.077 3.886 3.833 3.784 3.721 3.572 3.504 3.748 4.327 4.293 4.119 4.206 4.391 4.443 4.382 4.387 4.364 4.380 4.299 4.177 4.143 4.069 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.258 4.283 4.249 4.195 4.174 4.174 4.061 4.009 4.054 3.900 3.677 3.667 3.796 3.759 3.484 3.378 3.605 4.339 4.489 4.179 4.147 4.385 4.634 4.701 4.632 4.561 4.468 4.317 4.187 4.128 4.075 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.295 4.368 4.403 4.348 4.213 4.160 4.126 4.046 4.032 3.832 3.702 3.773 3.959 3.797 3.498 3.375 3.564 4.148 4.592 4.114 4.051 4.337 4.646 4.655 4.552 4.559 4.508 4.380 4.274 4.198 4.171 4.122 4.065 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.078 4.079 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.160 4.303 4.370 4.353 4.247 4.132 4.072 4.090 4.140 4.108 3.930 3.896 3.958 3.988 3.784 3.597 3.495 3.623 3.946 4.324 4.167 4.083 4.253 4.657 4.478 4.478 4.577 4.477 4.373 4.324 4.281 4.214 4.137 4.073 4.070 4.052 4.050 4.050 4.050 4.050 4.050 4.050 4.053 4.070 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.188 4.203 4.197 4.183 4.124 4.045 3.969 3.950 4.015 4.131 4.046 3.997 3.948 3.906 3.717 3.676 3.605 3.675 3.871 4.174 4.457 4.167 4.185 4.583 4.422 4.503 4.663 4.554 4.441 4.376 4.379 4.336 4.248 4.173 4.117 4.090 4.050 4.050 4.043 4.003 4.036 4.050 4.050 4.050 4.047 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.105 4.169 4.176 4.121 4.076 4.010 3.943 3.888 3.900 4.007 4.157 4.089 3.988 3.872 3.808 3.711 3.735 3.685 3.714 3.834 4.194 4.464 4.101 4.035 4.511 4.693 4.686 4.645 4.588 4.593 4.501 4.409 4.279 4.250 4.212 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.110 4.141 4.179 4.066 4.017 4.006 3.974 3.937 3.907 3.948 4.017 4.056 3.952 3.784 3.699 3.700 3.750 3.664 3.653 3.771 3.944 4.187 4.124 3.929 4.064 4.445 4.802 4.702 4.550 4.473 4.370 4.333 4.242 4.206 4.163 4.073 4.132 4.071 4.050 4.050 4.050 4.044 4.080 4.050 4.050 4.071 4.060 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.055 4.139 4.187 4.142 4.075 4.070 4.068 4.052 3.970 3.895 3.980 4.084 3.905 3.779 3.799 3.867 3.774 3.619 3.656 3.831 3.966 4.273 4.500 4.083 3.908 4.339 4.644 4.552 4.431 4.404 4.325 4.264 4.195 4.196 4.155 4.144 4.154 4.141 4.085 4.027 4.047 4.037 4.094 4.138 4.069 4.071 4.112 4.107 4.050 4.057 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.025 3.984 4.026 4.042 4.041 4.071 4.126 4.109 4.060 3.968 3.901 3.975 4.088 3.860 3.756 3.856 3.943 3.781 3.553 3.555 3.737 3.921 4.220 4.643 4.416 4.024 4.383 4.627 4.481 4.453 4.522 4.400 4.334 4.265 4.151 4.050 4.067 4.134 4.166 4.080 3.971 3.963 4.008 4.085 4.131 4.112 4.096 4.135 4.172 4.170 4.144 4.134 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.028 3.998 3.962 3.977 3.973 3.992 4.049 4.084 4.025 3.961 3.893 3.871 3.927 3.972 3.827 3.793 3.922 3.944 3.825 3.686 3.591 3.695 3.922 4.073 4.422 4.617 4.120 4.374 4.468 4.411 4.607 4.701 4.489 4.382 4.321 4.111 3.923 3.959 4.073 4.140 4.076 3.931 3.922 3.990 4.075 4.107 4.085 4.042 4.111 4.187 4.202 4.173 4.145 4.111 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.048 4.010 3.963 3.950 3.975 4.018 4.051 4.053 4.027 3.950 3.908 3.886 3.873 3.925 3.981 3.887 3.967 4.023 3.954 3.880 3.793 3.669 3.604 3.784 4.123 4.338 4.420 4.029 4.275 4.480 4.466 4.538 4.512 4.536 4.500 4.279 4.007 3.851 3.940 4.082 4.162 4.147 3.985 3.894 3.978 4.106 4.092 3.984 3.897 3.990 4.144 4.204 4.181 4.154 4.119 4.100 4.057 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.046 3.988 3.954 3.977 4.009 4.056 4.073 4.054 4.002 3.936 3.914 3.880 3.860 3.950 4.072 4.032 3.971 3.938 3.879 3.865 3.809 3.686 3.510 3.594 3.952 4.221 4.513 4.146 4.210 4.387 4.386 4.424 4.453 4.586 4.647 4.299 3.914 3.820 3.907 4.015 4.120 4.183 4.049 3.887 3.944 4.066 4.027 3.920 3.912 3.953 4.027 4.107 4.131 4.148 4.120 4.104 4.111 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.054 4.001 3.984 4.016 4.015 4.019 4.023 4.032 4.008 3.963 3.934 3.855 3.843 3.966 4.043 4.090 3.960 3.891 3.809 3.815 3.692 3.616 3.542 3.604 3.840 4.106 4.484 4.081 4.125 4.294 4.373 4.438 4.494 4.509 4.505 4.164 3.824 3.737 3.765 3.876 4.099 4.172 4.010 3.793 3.789 3.829 3.802 3.833 3.863 3.866 3.890 3.997 4.072 4.086 4.087 4.078 4.093 4.073 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.053 4.068 4.050 4.050 4.090 4.025 3.962 3.973 3.997 3.990 3.957 3.912 3.830 3.840 3.917 3.975 4.096 4.056 4.020 3.983 3.906 3.771 3.757 3.781 3.724 3.723 3.999 4.409 4.018 3.868 4.037 4.153 4.205 4.268 4.308 4.247 4.002 3.845 3.739 3.707 3.738 3.831 3.892 3.918 3.822 3.804 3.806 3.816 3.806 3.804 3.813 3.868 3.958 3.999 3.961 3.988 3.988 4.024 4.030 4.006 3.990 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.100 4.096 4.024 3.999 4.013 4.005 3.989 3.954 3.930 3.923 3.943 3.980 3.996 4.100 4.149 4.177 4.140 4.014 3.944 3.894 3.740 3.578 3.560 3.866 4.239 4.014 3.724 4.020 4.062 3.937 4.029 4.346 4.290 4.014 3.791 3.743 3.797 3.812 3.832 3.873 3.889 3.853 3.868 3.888 3.928 3.949 3.902 3.925 3.953 3.963 3.989 3.966 4.019 3.990 3.952 3.969 3.968 3.959 3.954 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.023 4.026 4.044 4.042 4.028 4.027 4.056 4.071 4.093 4.125 4.119 4.158 4.229 4.225 4.193 4.090 4.035 3.990 3.831 3.683 3.636 3.693 3.955 4.154 3.780 4.036 3.946 3.758 3.909 4.191 4.066 3.868 3.777 3.861 3.917 3.899 3.854 3.823 3.816 3.868 3.973 4.088 4.149 4.107 4.031 4.013 4.108 4.179 4.140 4.086 4.150 4.140 4.013 3.979 3.980 3.950 3.954 3.976 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.064 4.050 4.050 4.063 4.084 4.073 4.076 4.088 4.095 4.109 4.146 4.186 4.165 4.170 4.224 4.177 4.198 4.135 3.959 3.862 3.690 3.589 3.650 3.684 3.854 4.075 3.700 3.794 3.761 3.604 3.744 3.867 3.761 3.628 3.730 3.922 4.021 4.015 4.009 3.993 3.969 3.955 4.018 4.147 4.200 4.182 4.149 4.120 4.158 4.276 4.351 4.339 4.323 4.215 4.084 3.987 3.924 3.904 3.910 3.942 4.009 4.032 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.061 4.050 4.050 4.079 4.050 4.050 4.103 4.103 4.066 4.051 4.064 4.067 4.090 4.146 4.188 4.188 4.185 4.207 4.183 4.169 4.177 4.025 3.892 3.654 3.470 3.513 3.617 3.842 3.982 3.594 3.523 3.518 3.495 3.723 3.824 3.784 3.815 3.931 3.999 3.973 3.983 4.052 4.076 4.057 4.043 4.076 4.168 4.266 4.301 4.264 4.223 4.252 4.287 4.232 4.223 4.190 4.166 4.169 4.059 3.937 3.916 3.890 3.926 4.021 4.045 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.062 4.073 4.050 4.077 4.078 4.050 4.146 4.127 4.075 4.020 4.032 4.056 4.065 4.084 4.118 4.158 4.156 4.132 4.125 4.112 4.064 4.039 4.045 3.961 3.794 3.614 3.566 3.598 3.873 3.995 3.683 3.542 3.464 3.454 3.671 3.811 3.866 4.081 4.241 4.263 4.220 4.178 4.166 4.088 3.993 4.020 4.067 4.119 4.239 4.296 4.341 4.358 4.370 4.328 4.277 4.237 4.147 4.155 4.208 4.115 4.048 4.039 3.989 3.996 4.061 4.064 4.050 4.060 4.048 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.069 4.071 4.050 4.084 4.087 4.131 4.148 4.103 4.024 3.995 4.032 4.069 4.080 4.081 4.081 4.081 4.070 4.059 4.061 4.059 4.030 4.021 4.072 3.967 3.834 3.713 3.646 3.690 3.887 3.865 3.727 3.610 3.523 3.628 3.931 4.097 4.081 4.083 4.169 4.277 4.341 4.283 4.152 4.001 3.921 3.970 4.061 4.079 4.073 4.058 4.116 4.174 4.208 4.225 4.228 4.251 4.273 4.262 4.178 4.161 4.171 4.176 4.170 4.200 4.171 4.078 4.031 4.051 4.062 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.066 4.056 4.050 4.095 4.050 4.183 4.163 4.078 4.028 4.050 4.031 4.056 4.075 4.070 4.062 4.049 4.035 4.040 4.067 4.081 4.071 4.048 4.070 3.961 3.848 3.840 3.910 4.016 3.842 3.741 3.614 3.494 3.631 3.941 4.054 4.099 3.979 3.945 4.081 4.208 4.229 4.155 4.042 3.929 3.896 3.951 4.005 4.013 3.985 3.959 3.983 4.048 4.124 4.169 4.185 4.230 4.263 4.240 4.126 4.110 4.123 4.116 4.136 4.162 4.096 3.973 3.938 4.007 4.042 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.052 4.071 4.065 4.050 4.050 4.247 4.207 4.080 4.050 4.050 3.957 3.996 4.045 4.039 4.034 4.017 4.025 4.050 4.068 4.089 4.078 4.066 4.072 4.025 3.974 4.005 4.115 4.149 3.858 3.914 3.807 3.639 3.719 3.976 4.043 4.115 4.012 3.994 4.109 4.157 4.112 4.064 4.010 3.960 3.939 3.967 3.982 3.984 3.957 3.950 3.968 4.014 4.063 4.097 4.117 4.149 4.158 4.083 4.057 4.050 4.053 4.054 4.079 4.090 4.005 3.877 3.855 3.954 4.015 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.205 4.194 4.050 4.279 4.301 4.271 4.092 4.058 4.022 3.976 3.964 4.008 4.038 4.049 4.059 4.060 4.069 4.071 4.073 4.064 4.049 4.045 4.004 3.946 3.959 3.921 4.003 4.043 4.184 4.321 4.092 3.905 3.897 4.134 4.184 4.149 4.176 4.195 4.125 4.087 4.082 4.038 4.004 4.022 3.983 3.989 3.996 3.986 3.970 3.988 4.032 4.040 4.053 4.064 4.087 4.096 4.078 4.055 4.057 4.062 4.065 4.071 4.045 3.994 4.050 3.908 3.983 4.025 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.203 4.204 4.157 4.106 4.128 4.211 4.170 4.086 4.057 4.039 4.002 3.980 4.051 4.067 4.086 4.085 4.075 4.062 4.047 4.052 4.047 4.038 4.019 3.984 3.967 3.949 3.848 3.974 4.130 4.260 4.427 4.125 4.025 4.170 4.206 4.204 4.307 4.257 4.186 4.120 4.060 4.055 4.050 4.050 4.050 4.047 4.050 4.050 4.046 4.050 4.050 4.023 4.027 4.040 4.043 4.063 4.090 4.112 4.091 4.079 4.048 4.050 4.050 3.988 3.960 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.177 4.121 4.091 4.112 4.139 4.108 4.073 4.065 4.072 4.050 4.050 4.057 4.088 4.088 4.088 4.050 4.050 3.986 4.050 4.050 4.040 4.029 4.012 3.987 3.921 3.861 4.001 4.235 4.092 4.176 4.062 4.036 4.082 4.067 4.073 4.185 4.180 4.142 4.074 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.022 4.046 4.065 4.050 4.061 4.071 4.052 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.104 4.101 4.113 4.104 4.058 4.059 4.109 4.132 4.132 4.130 4.112 4.086 4.049 4.050 4.050 3.950 3.948 4.050 4.050 4.050 4.050 4.042 3.991 3.954 3.995 4.167 4.311 4.125 4.141 4.152 4.082 4.054 4.046 4.085 4.124 4.111 4.097 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.042 4.047 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.053 4.050 4.010 4.059 4.148 4.182 4.164 4.168 4.116 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.015 4.049 4.039 4.034 4.096 4.114 4.055 4.032 4.051 4.094 4.091 4.093 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.090 4.254 4.290 4.250 4.140 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.005 4.069 4.156 4.135 4.084 4.010 4.021 4.087 4.116 4.129 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.396 4.344 4.220 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.032 4.079 4.118 4.107 4.064 4.007 3.991 4.071 4.080 4.075 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.349 4.251 4.193 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.054 4.024 3.991 4.028 3.967 3.967 3.950 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.121 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.029 3.998 3.982 3.889 3.906 3.934 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.033 4.007 3.966 3.893 3.922 3.962 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.036 3.965 3.941 3.989 4.010 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.051 4.051 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 4.050 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.296 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.266 4.304 4.221 4.108 4.222 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.178 4.122 4.109 3.956 3.878 4.129 4.157 4.164 4.112 4.093 4.193 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.010 3.878 3.729 3.619 3.794 4.160 4.157 4.139 4.087 4.056 4.096 4.167 4.244 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.258 3.859 3.742 3.668 3.719 3.983 4.195 4.136 4.142 4.090 4.042 4.081 4.187 4.268 4.245 4.266 4.312 4.329 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.104 3.981 3.899 3.994 4.250 4.333 4.246 4.148 4.144 4.124 4.100 4.148 4.282 4.303 4.207 4.257 4.347 4.386 4.320 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.241 4.156 4.205 4.344 4.617 4.571 4.390 4.216 4.179 4.230 4.235 4.281 4.403 4.322 4.191 4.243 4.383 4.453 4.425 4.354 4.294 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.296 4.316 4.347 4.508 4.475 4.337 4.166 4.185 4.323 4.371 4.404 4.518 4.379 4.195 4.148 4.276 4.448 4.577 4.608 4.453 4.334 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.282 4.279 4.281 4.321 4.263 4.189 4.336 4.370 4.338 4.131 4.208 4.284 4.318 4.416 4.573 4.438 4.159 4.033 4.117 4.339 4.615 4.743 4.611 4.434 4.343 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.285 4.281 4.280 4.326 4.294 4.323 4.316 4.364 4.263 4.276 4.161 4.144 4.305 4.570 4.568 4.203 3.994 4.048 4.307 4.597 4.754 4.711 4.554 4.459 4.326 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.366 4.406 4.463 4.418 4.379 4.417 4.279 4.182 4.031 4.008 4.188 4.486 4.686 4.283 4.024 4.062 4.302 4.546 4.621 4.635 4.620 4.526 4.433 4.378 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.399 4.420 4.457 4.388 4.358 4.414 4.264 4.076 3.871 3.859 4.136 4.463 4.807 4.488 4.160 4.143 4.346 4.460 4.462 4.480 4.501 4.510 4.462 4.401 4.361 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.296 4.371 4.405 4.379 4.373 4.308 4.272 4.283 4.159 3.932 3.711 3.748 4.049 4.354 4.718 4.744 4.403 4.236 4.357 4.435 4.338 4.337 4.371 4.432 4.473 4.426 4.370 4.346 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.384 4.408 4.444 4.369 4.353 4.260 4.201 4.173 4.097 3.849 3.684 3.701 3.922 4.236 4.473 4.562 4.380 4.286 4.357 4.378 4.319 4.332 4.406 4.498 4.507 4.449 4.413 4.372 4.337 4.281 4.281 4.310 4.354 4.331 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.451 4.434 4.440 4.442 4.315 4.236 4.235 4.210 4.165 4.143 3.906 3.760 3.728 3.847 4.086 4.325 4.364 4.248 4.253 4.392 4.405 4.338 4.427 4.631 4.673 4.608 4.496 4.418 4.335 4.338 4.338 4.324 4.363 4.409 4.424 4.313 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.485 4.486 4.448 4.400 4.378 4.290 4.204 4.329 4.330 4.199 4.188 3.944 3.785 3.721 3.769 3.969 4.374 4.275 4.186 4.204 4.324 4.420 4.386 4.519 4.750 4.776 4.704 4.565 4.529 4.554 4.337 4.281 4.281 4.281 4.299 4.289 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.523 4.516 4.431 4.346 4.335 4.303 4.245 4.402 4.407 4.220 4.184 3.876 3.709 3.647 3.668 3.906 4.365 4.299 4.180 4.159 4.255 4.380 4.408 4.544 4.684 4.757 4.697 4.565 4.495 4.408 4.325 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.510 4.507 4.456 4.359 4.330 4.346 4.350 4.454 4.356 4.151 4.109 3.951 3.801 3.669 3.620 3.802 4.212 4.311 4.176 4.192 4.385 4.467 4.493 4.559 4.587 4.702 4.653 4.535 4.464 4.444 4.313 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.313 4.523 4.536 4.503 4.470 4.467 4.369 4.264 4.282 4.183 4.021 3.990 4.063 3.903 3.646 3.573 3.773 4.346 4.608 4.354 4.263 4.465 4.674 4.783 4.716 4.677 4.766 4.655 4.525 4.446 4.442 4.314 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.385 4.560 4.585 4.578 4.509 4.451 4.341 4.208 4.173 4.141 4.083 4.106 4.176 3.908 3.664 3.583 3.752 4.274 4.756 4.396 4.292 4.439 4.612 4.635 4.604 4.670 4.794 4.752 4.615 4.473 4.428 4.315 4.302 4.281 4.281 4.281 4.281 4.281 4.281 4.321 4.343 4.319 4.312 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.443 4.484 4.506 4.482 4.430 4.372 4.322 4.276 4.188 4.172 4.215 4.208 4.147 3.897 3.744 3.698 3.786 4.041 4.395 4.258 4.301 4.321 4.490 4.400 4.459 4.602 4.583 4.580 4.564 4.534 4.474 4.439 4.314 4.339 4.329 4.281 4.229 4.207 4.222 4.254 4.261 4.277 4.309 4.314 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.323 4.356 4.351 4.371 4.365 4.288 4.197 4.158 4.229 4.263 4.246 4.332 4.302 4.118 3.852 3.802 3.780 3.794 3.934 4.263 4.451 4.303 4.230 4.446 4.366 4.496 4.676 4.581 4.582 4.560 4.636 4.656 4.591 4.530 4.442 4.413 4.396 4.322 4.276 4.218 4.225 4.248 4.303 4.324 4.328 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.330 4.269 4.254 4.216 4.136 4.033 4.020 4.163 4.278 4.279 4.345 4.201 4.023 3.882 3.902 3.783 3.729 3.858 4.241 4.648 4.478 4.196 4.400 4.468 4.502 4.551 4.553 4.670 4.644 4.660 4.622 4.583 4.576 4.553 4.498 4.476 4.391 4.365 4.195 4.211 4.278 4.345 4.357 4.346 4.346 4.281 4.281 4.333 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.230 4.192 4.164 4.114 4.039 3.996 4.044 4.132 4.231 4.224 4.091 3.984 4.009 4.021 3.834 3.753 3.893 4.181 4.499 4.560 4.157 4.142 4.434 4.661 4.620 4.534 4.588 4.588 4.647 4.541 4.565 4.561 4.553 4.510 4.492 4.365 4.308 4.152 4.247 4.317 4.403 4.399 4.373 4.365 4.352 4.284 4.360 4.318 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.330 4.339 4.338 4.273 4.222 4.207 4.170 4.087 4.012 4.058 4.181 4.111 3.908 3.887 4.052 4.041 3.872 3.888 4.042 4.150 4.259 4.410 4.134 3.987 4.428 4.744 4.760 4.660 4.640 4.490 4.392 4.345 4.556 4.640 4.602 4.544 4.470 4.374 4.256 4.175 4.257 4.372 4.444 4.454 4.432 4.426 4.413 4.385 4.370 4.347 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.165 4.180 4.241 4.311 4.333 4.336 4.296 4.240 4.144 4.037 4.030 4.127 4.058 3.901 3.898 4.006 3.915 3.723 3.710 3.775 3.942 4.141 4.446 4.541 4.228 4.523 4.691 4.624 4.689 4.777 4.571 4.416 4.438 4.523 4.560 4.559 4.521 4.441 4.343 4.236 4.191 4.273 4.400 4.483 4.494 4.499 4.510 4.494 4.434 4.389 4.362 4.336 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.138 4.155 4.201 4.258 4.300 4.300 4.222 4.157 4.084 3.993 3.982 4.049 4.060 3.990 3.964 3.990 3.872 3.734 3.704 3.698 3.896 4.140 4.480 4.787 4.380 4.465 4.515 4.429 4.609 4.805 4.706 4.562 4.498 4.379 4.280 4.318 4.360 4.370 4.320 4.239 4.237 4.316 4.421 4.469 4.441 4.455 4.532 4.536 4.487 4.432 4.394 4.349 4.344 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.154 4.129 4.181 4.272 4.339 4.315 4.232 4.140 4.090 4.026 3.945 3.963 4.069 4.123 4.131 4.070 4.002 3.860 3.760 3.702 3.682 3.848 4.179 4.481 4.652 4.357 4.491 4.562 4.425 4.418 4.514 4.663 4.805 4.681 4.301 4.095 4.117 4.197 4.266 4.299 4.264 4.283 4.417 4.477 4.390 4.311 4.297 4.357 4.443 4.452 4.461 4.417 4.367 4.347 4.334 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.273 4.281 4.161 4.176 4.217 4.324 4.372 4.334 4.234 4.133 4.075 3.997 3.921 3.982 4.157 4.218 4.133 4.023 3.936 3.876 3.781 3.669 3.564 3.689 3.993 4.223 4.438 4.286 4.349 4.578 4.449 4.381 4.410 4.673 4.823 4.584 4.205 4.066 4.103 4.159 4.163 4.178 4.232 4.251 4.374 4.382 4.234 4.121 4.157 4.185 4.243 4.262 4.343 4.378 4.344 4.328 4.323 4.277 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.287 4.289 4.281 4.281 4.242 4.224 4.246 4.263 4.293 4.241 4.166 4.077 3.939 3.898 3.999 4.147 4.281 4.186 4.047 3.945 3.926 3.818 3.721 3.633 3.681 3.873 4.241 4.634 4.302 4.318 4.586 4.502 4.463 4.471 4.634 4.786 4.432 4.025 3.931 3.986 4.032 4.069 4.097 4.201 4.217 4.224 4.092 3.991 3.989 3.997 4.003 4.025 4.097 4.163 4.225 4.247 4.261 4.262 4.255 4.254 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.299 4.302 4.281 4.281 4.299 4.227 4.174 4.198 4.258 4.230 4.175 4.088 3.967 3.949 3.992 4.058 4.194 4.311 4.250 4.161 4.114 3.966 3.894 3.832 3.738 3.761 4.094 4.509 4.166 4.119 4.362 4.351 4.436 4.571 4.574 4.538 4.304 4.040 3.905 3.883 3.860 3.874 3.931 4.058 4.106 4.127 4.077 4.004 3.955 3.984 3.957 3.939 3.975 4.073 4.180 4.186 4.167 4.164 4.176 4.198 4.223 4.246 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.314 4.311 4.281 4.339 4.317 4.240 4.181 4.230 4.269 4.234 4.192 4.178 4.134 4.103 4.090 4.103 4.209 4.383 4.468 4.432 4.311 4.108 4.025 3.823 3.605 3.573 3.885 4.399 4.162 3.929 4.077 4.161 4.314 4.592 4.819 4.714 4.363 4.070 3.973 3.922 3.889 3.887 3.927 3.974 3.958 3.986 4.019 4.026 4.045 4.039 4.022 4.005 4.019 4.163 4.255 4.214 4.095 4.048 4.073 4.125 4.171 4.204 4.241 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.323 4.311 4.281 4.337 4.314 4.256 4.225 4.270 4.304 4.276 4.301 4.341 4.307 4.282 4.277 4.276 4.332 4.464 4.496 4.458 4.375 4.178 4.055 3.831 3.660 3.689 3.934 4.339 4.430 4.059 4.060 4.118 4.096 4.281 4.566 4.421 4.257 4.096 4.026 4.005 3.986 4.019 4.032 4.012 4.037 4.114 4.196 4.210 4.181 4.126 4.155 4.227 4.249 4.270 4.234 4.279 4.209 4.058 4.013 4.077 4.127 4.177 4.233 4.257 4.253 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.301 4.322 4.299 4.281 4.341 4.305 4.279 4.267 4.291 4.328 4.352 4.378 4.399 4.377 4.382 4.398 4.377 4.395 4.444 4.403 4.382 4.383 4.162 4.009 3.778 3.614 3.716 3.901 4.151 4.402 4.169 4.037 3.990 3.865 4.034 4.226 4.073 3.764 3.712 3.879 4.044 4.186 4.328 4.375 4.349 4.323 4.386 4.516 4.542 4.457 4.427 4.373 4.340 4.336 4.384 4.342 4.364 4.373 4.207 4.046 4.020 4.082 4.175 4.247 4.264 4.258 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.292 4.315 4.281 4.299 4.329 4.281 4.281 4.298 4.286 4.281 4.308 4.313 4.350 4.345 4.343 4.407 4.387 4.384 4.406 4.382 4.339 4.381 4.273 4.092 3.823 3.582 3.597 3.807 4.081 4.177 3.987 3.862 3.721 3.632 3.785 3.892 3.811 3.754 3.967 4.171 4.311 4.504 4.655 4.682 4.645 4.603 4.616 4.659 4.701 4.659 4.645 4.603 4.541 4.470 4.442 4.410 4.375 4.358 4.236 4.066 4.000 4.048 4.158 4.276 4.301 4.277 4.264 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.298 4.305 4.281 4.307 4.313 4.281 4.284 4.307 4.269 4.232 4.265 4.296 4.310 4.314 4.320 4.281 4.319 4.329 4.323 4.309 4.277 4.294 4.325 4.168 3.952 3.769 3.728 3.805 4.039 4.162 3.930 3.793 3.657 3.570 3.621 3.775 3.874 4.133 4.425 4.568 4.687 4.767 4.825 4.741 4.633 4.543 4.487 4.476 4.516 4.519 4.539 4.523 4.505 4.426 4.411 4.370 4.321 4.370 4.287 4.102 4.079 4.143 4.249 4.332 4.324 4.296 4.281 4.285 4.272 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.289 4.292 4.281 4.281 4.281 4.281 4.311 4.321 4.254 4.222 4.253 4.305 4.330 4.323 4.315 4.281 4.285 4.287 4.289 4.275 4.236 4.233 4.314 4.252 4.075 3.949 3.871 3.855 3.988 4.078 3.910 3.767 3.681 3.763 3.947 4.197 4.303 4.349 4.426 4.574 4.699 4.703 4.605 4.479 4.406 4.319 4.305 4.315 4.298 4.249 4.255 4.301 4.350 4.365 4.410 4.433 4.479 4.510 4.460 4.360 4.363 4.423 4.520 4.500 4.395 4.299 4.277 4.298 4.288 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.302 4.376 4.290 4.281 4.423 4.354 4.261 4.237 4.241 4.287 4.316 4.308 4.303 4.293 4.293 4.306 4.315 4.300 4.265 4.246 4.278 4.249 4.148 4.115 4.211 4.237 4.112 4.054 3.794 3.607 3.747 4.154 4.311 4.419 4.325 4.340 4.403 4.503 4.497 4.394 4.307 4.228 4.187 4.175 4.189 4.205 4.182 4.122 4.111 4.172 4.256 4.319 4.382 4.435 4.467 4.455 4.365 4.283 4.248 4.252 4.367 4.412 4.317 4.201 4.204 4.259 4.277 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.459 4.427 4.281 4.523 4.487 4.404 4.360 4.309 4.237 4.252 4.250 4.245 4.233 4.233 4.276 4.308 4.326 4.300 4.281 4.272 4.285 4.286 4.297 4.299 4.448 4.507 4.265 4.266 3.954 3.715 3.826 4.174 4.335 4.365 4.329 4.293 4.339 4.400 4.312 4.251 4.235 4.217 4.196 4.192 4.227 4.215 4.191 4.161 4.136 4.173 4.230 4.269 4.313 4.350 4.354 4.318 4.268 4.221 4.195 4.206 4.285 4.318 4.208 4.089 4.110 4.209 4.261 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.458 4.457 4.384 4.292 4.281 4.493 4.418 4.366 4.301 4.245 4.215 4.218 4.243 4.273 4.278 4.297 4.302 4.304 4.289 4.281 4.272 4.265 4.257 4.246 4.243 4.283 4.384 4.323 4.463 4.422 4.229 4.172 4.093 4.314 4.367 4.350 4.286 4.269 4.243 4.194 4.197 4.215 4.238 4.240 4.245 4.281 4.247 4.231 4.193 4.187 4.215 4.256 4.230 4.265 4.288 4.284 4.255 4.243 4.232 4.256 4.281 4.284 4.277 4.267 4.093 4.117 4.212 4.258 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.418 4.381 4.341 4.334 4.361 4.330 4.325 4.315 4.279 4.257 4.281 4.278 4.283 4.292 4.296 4.288 4.281 4.281 4.281 4.281 4.248 4.225 4.221 4.199 4.145 4.204 4.208 4.394 4.607 4.387 4.211 4.194 4.303 4.259 4.345 4.346 4.305 4.217 4.142 4.233 4.281 4.281 4.281 4.281 4.281 4.281 4.253 4.210 4.168 4.261 4.259 4.246 4.266 4.259 4.268 4.281 4.276 4.281 4.281 4.286 4.243 4.216 4.223 4.281 4.281 4.262 4.276 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.377 4.345 4.331 4.331 4.316 4.306 4.335 4.349 4.332 4.281 4.281 4.311 4.309 4.281 4.281 4.281 4.220 4.264 4.281 4.281 4.281 4.281 4.235 4.183 4.111 4.177 4.325 4.297 4.443 4.346 4.195 4.210 4.234 4.184 4.291 4.365 4.339 4.251 4.229 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.278 4.250 4.259 4.263 4.281 4.281 4.281 4.268 4.281 4.281 4.281 4.281 4.281 4.248 4.209 4.178 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.328 4.338 4.315 4.320 4.373 4.415 4.454 4.398 4.378 4.350 4.281 4.281 4.281 4.281 4.164 4.161 4.281 4.281 4.281 4.281 4.260 4.204 4.224 4.367 4.491 4.392 4.418 4.373 4.254 4.216 4.246 4.292 4.355 4.396 4.342 4.268 4.264 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.260 4.266 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.285 4.320 4.408 4.516 4.559 4.532 4.396 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.290 4.316 4.284 4.285 4.399 4.360 4.277 4.209 4.256 4.345 4.394 4.417 4.345 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.413 4.652 4.632 4.531 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.247 4.296 4.396 4.379 4.318 4.216 4.231 4.335 4.354 4.347 4.320 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.612 4.542 4.466 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.297 4.342 4.346 4.303 4.234 4.230 4.305 4.253 4.237 4.230 4.220 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.468 4.417 4.367 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.286 4.265 4.251 4.263 4.149 4.140 4.166 4.223 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.304 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.279 4.261 4.247 4.237 4.129 4.114 4.151 4.202 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.274 4.259 4.225 4.151 4.162 4.202 4.242 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.280 4.218 4.185 4.218 4.257 4.285 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.288 4.297 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 4.281 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.429 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.439 4.454 4.458 4.556 4.361 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.340 4.297 4.310 4.302 4.362 4.496 4.310 4.238 4.232 4.342 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.243 4.159 4.071 4.075 4.284 4.472 4.326 4.272 4.219 4.181 4.199 4.294 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.176 4.126 4.167 4.248 4.430 4.485 4.343 4.288 4.223 4.164 4.154 4.212 4.255 4.282 4.321 4.380 4.402 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.306 4.340 4.498 4.694 4.698 4.510 4.337 4.287 4.252 4.213 4.171 4.231 4.228 4.197 4.275 4.376 4.414 4.405 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.412 4.413 4.516 4.714 4.954 4.854 4.487 4.285 4.260 4.294 4.278 4.202 4.282 4.277 4.165 4.217 4.355 4.403 4.429 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.378 4.391 4.415 4.448 4.538 4.658 4.844 4.772 4.386 4.156 4.175 4.298 4.302 4.238 4.354 4.368 4.202 4.168 4.288 4.339 4.386 4.505 4.440 4.391 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.365 4.373 4.373 4.373 4.575 4.627 4.704 4.633 4.305 4.040 4.069 4.200 4.226 4.267 4.474 4.480 4.228 4.105 4.158 4.238 4.384 4.518 4.547 4.476 4.424 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.421 4.642 4.709 4.650 4.554 4.325 4.125 4.100 4.112 4.110 4.211 4.465 4.557 4.294 4.098 4.103 4.224 4.408 4.560 4.606 4.573 4.494 4.443 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.528 4.684 4.746 4.685 4.638 4.498 4.347 4.220 4.117 4.095 4.176 4.331 4.529 4.360 4.145 4.116 4.245 4.448 4.560 4.599 4.643 4.576 4.485 4.433 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.615 4.670 4.691 4.673 4.693 4.641 4.544 4.254 4.025 4.003 4.181 4.333 4.553 4.465 4.219 4.166 4.261 4.403 4.475 4.502 4.518 4.555 4.519 4.459 4.462 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.552 4.600 4.613 4.649 4.622 4.598 4.641 4.506 4.211 3.944 3.920 4.105 4.289 4.554 4.580 4.292 4.179 4.247 4.335 4.357 4.412 4.428 4.455 4.511 4.485 4.456 4.421 4.373 4.369 4.366 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.602 4.596 4.620 4.568 4.585 4.571 4.477 4.544 4.314 4.064 3.890 3.863 3.970 4.208 4.461 4.587 4.322 4.221 4.241 4.261 4.264 4.351 4.433 4.494 4.544 4.547 4.538 4.497 4.449 4.374 4.351 4.381 4.418 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.590 4.622 4.653 4.649 4.525 4.487 4.558 4.490 4.454 4.285 4.073 3.920 3.845 3.887 4.107 4.355 4.463 4.295 4.238 4.291 4.300 4.294 4.399 4.569 4.662 4.655 4.611 4.640 4.670 4.648 4.598 4.556 4.546 4.512 4.548 4.462 4.408 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.587 4.622 4.651 4.632 4.516 4.471 4.600 4.549 4.472 4.381 4.176 3.958 3.857 3.880 4.072 4.359 4.387 4.279 4.187 4.270 4.381 4.407 4.521 4.714 4.862 4.859 4.728 4.714 4.763 4.756 4.678 4.578 4.504 4.468 4.496 4.561 4.544 4.399 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.593 4.616 4.623 4.519 4.451 4.531 4.488 4.441 4.394 4.127 3.888 3.809 3.853 4.066 4.352 4.374 4.333 4.200 4.217 4.366 4.466 4.574 4.717 4.836 4.835 4.739 4.652 4.669 4.690 4.619 4.510 4.448 4.376 4.416 4.490 4.503 4.469 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.406 4.563 4.588 4.594 4.589 4.514 4.477 4.468 4.369 4.319 4.310 4.143 3.954 3.838 3.822 3.982 4.234 4.355 4.349 4.275 4.313 4.396 4.482 4.576 4.608 4.684 4.644 4.621 4.601 4.599 4.625 4.581 4.473 4.415 4.373 4.376 4.380 4.390 4.383 4.380 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.416 4.579 4.587 4.603 4.610 4.500 4.435 4.392 4.281 4.249 4.222 4.189 4.011 3.814 3.796 3.936 4.249 4.499 4.420 4.335 4.465 4.592 4.623 4.601 4.596 4.642 4.589 4.535 4.552 4.570 4.584 4.506 4.455 4.373 4.390 4.395 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.435 4.561 4.578 4.576 4.550 4.449 4.373 4.322 4.300 4.386 4.335 4.243 4.014 3.866 3.830 3.937 4.269 4.545 4.446 4.391 4.487 4.554 4.595 4.608 4.596 4.620 4.612 4.564 4.500 4.524 4.535 4.517 4.421 4.373 4.396 4.381 4.437 4.488 4.496 4.451 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.425 4.446 4.484 4.512 4.536 4.498 4.440 4.404 4.333 4.321 4.432 4.333 4.254 4.077 3.983 3.959 3.976 4.149 4.395 4.379 4.351 4.399 4.437 4.417 4.499 4.535 4.456 4.480 4.539 4.586 4.584 4.570 4.531 4.510 4.480 4.421 4.370 4.389 4.417 4.417 4.395 4.383 4.381 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.400 4.409 4.403 4.449 4.464 4.404 4.342 4.380 4.400 4.389 4.504 4.416 4.284 4.034 3.973 3.995 3.973 4.081 4.331 4.430 4.217 4.323 4.363 4.372 4.520 4.567 4.462 4.470 4.519 4.624 4.693 4.681 4.658 4.625 4.604 4.557 4.492 4.454 4.399 4.369 4.389 4.447 4.445 4.441 4.373 4.373 4.399 4.388 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.391 4.310 4.330 4.350 4.288 4.221 4.279 4.355 4.396 4.541 4.471 4.342 4.154 4.075 4.019 3.920 4.007 4.260 4.568 4.350 4.323 4.357 4.378 4.418 4.457 4.460 4.498 4.508 4.581 4.584 4.524 4.611 4.699 4.702 4.708 4.708 4.586 4.383 4.374 4.444 4.520 4.518 4.481 4.467 4.456 4.457 4.443 4.449 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.387 4.282 4.282 4.276 4.228 4.152 4.152 4.201 4.278 4.391 4.403 4.376 4.405 4.280 4.031 3.925 4.021 4.230 4.502 4.417 4.188 4.129 4.413 4.461 4.423 4.409 4.462 4.448 4.487 4.453 4.485 4.543 4.628 4.693 4.759 4.757 4.578 4.374 4.413 4.520 4.601 4.587 4.520 4.472 4.451 4.479 4.490 4.469 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.403 4.387 4.382 4.366 4.343 4.290 4.197 4.116 4.115 4.173 4.174 4.079 4.078 4.273 4.260 4.022 3.917 3.990 4.137 4.396 4.488 4.234 4.041 4.518 4.727 4.631 4.533 4.495 4.355 4.259 4.284 4.516 4.684 4.720 4.712 4.732 4.695 4.506 4.375 4.470 4.585 4.669 4.664 4.610 4.565 4.532 4.496 4.484 4.457 4.447 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.258 4.289 4.366 4.457 4.454 4.398 4.348 4.266 4.141 4.069 4.110 4.125 4.016 3.965 4.031 3.989 3.832 3.755 3.825 4.067 4.435 4.530 4.388 4.149 4.517 4.816 4.817 4.642 4.577 4.409 4.274 4.343 4.582 4.771 4.775 4.706 4.701 4.722 4.503 4.348 4.480 4.639 4.720 4.733 4.729 4.709 4.634 4.538 4.485 4.461 4.447 4.394 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.259 4.294 4.355 4.446 4.441 4.343 4.258 4.205 4.104 4.029 4.062 4.152 4.055 3.929 3.909 3.866 3.717 3.668 3.686 3.914 4.360 4.662 4.520 4.299 4.566 4.697 4.734 4.648 4.560 4.465 4.397 4.436 4.503 4.600 4.672 4.652 4.617 4.612 4.510 4.484 4.554 4.665 4.713 4.639 4.631 4.668 4.675 4.599 4.513 4.471 4.446 4.433 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.292 4.338 4.411 4.426 4.361 4.283 4.218 4.123 3.996 3.961 4.055 4.174 4.155 4.049 3.917 3.832 3.698 3.665 3.755 3.980 4.331 4.661 4.652 4.398 4.632 4.671 4.588 4.554 4.503 4.474 4.609 4.768 4.683 4.567 4.517 4.515 4.511 4.482 4.457 4.548 4.683 4.659 4.577 4.487 4.436 4.482 4.510 4.556 4.511 4.471 4.441 4.430 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.363 4.373 4.373 4.427 4.351 4.247 4.190 4.094 3.973 3.986 4.135 4.205 4.155 4.109 3.955 3.843 3.730 3.695 3.786 3.945 4.194 4.390 4.545 4.424 4.362 4.506 4.381 4.354 4.414 4.445 4.569 4.689 4.649 4.572 4.468 4.357 4.256 4.284 4.375 4.487 4.607 4.503 4.364 4.282 4.345 4.408 4.433 4.406 4.419 4.431 4.417 4.396 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.333 4.300 4.373 4.424 4.357 4.273 4.169 4.034 3.973 4.016 4.146 4.274 4.249 4.159 4.038 3.922 3.831 3.779 3.818 3.877 4.055 4.358 4.622 4.427 4.289 4.564 4.530 4.537 4.618 4.723 4.770 4.674 4.544 4.449 4.275 4.141 4.100 4.219 4.324 4.341 4.334 4.245 4.182 4.142 4.108 4.118 4.168 4.269 4.369 4.383 4.369 4.360 4.373 4.373 4.386 4.397 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.309 4.237 4.373 4.415 4.378 4.311 4.236 4.109 4.058 4.066 4.122 4.246 4.373 4.360 4.215 4.109 3.991 3.935 3.876 3.798 3.914 4.293 4.540 4.444 4.412 4.587 4.597 4.529 4.495 4.473 4.537 4.435 4.287 4.199 4.079 3.974 3.973 4.068 4.133 4.110 4.162 4.203 4.166 4.103 4.048 3.997 3.994 4.135 4.342 4.372 4.295 4.273 4.275 4.296 4.356 4.377 4.379 4.365 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.353 4.203 4.373 4.425 4.400 4.377 4.341 4.245 4.183 4.149 4.256 4.256 4.401 4.488 4.440 4.376 4.214 4.057 3.843 3.616 3.647 4.042 4.443 4.329 4.179 4.286 4.444 4.554 4.534 4.534 4.574 4.381 4.259 4.198 4.063 3.997 3.969 3.970 3.960 3.943 4.002 4.101 4.168 4.151 4.087 4.042 4.016 4.122 4.268 4.338 4.242 4.147 4.131 4.195 4.282 4.353 4.377 4.363 4.354 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.374 4.373 4.373 4.373 4.373 4.373 4.257 4.333 4.415 4.373 4.373 4.482 4.373 4.368 4.373 4.373 4.373 4.373 4.511 4.513 4.489 4.325 4.131 3.855 3.605 3.624 3.970 4.405 4.420 4.097 3.973 4.158 4.459 4.536 4.703 4.649 4.402 4.251 4.180 4.109 4.050 4.015 4.006 4.015 4.074 4.171 4.288 4.317 4.244 4.176 4.169 4.182 4.204 4.161 4.202 4.238 4.144 4.041 4.084 4.222 4.344 4.390 4.364 4.337 4.328 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.377 4.373 4.373 4.373 4.373 4.373 4.327 4.317 4.373 4.373 4.373 4.373 4.373 4.381 4.381 4.391 4.373 4.373 4.469 4.500 4.580 4.406 4.218 3.948 3.711 3.744 4.019 4.359 4.540 4.281 4.091 4.219 4.305 4.366 4.542 4.400 4.042 3.908 4.009 4.113 4.196 4.258 4.316 4.396 4.437 4.480 4.595 4.604 4.526 4.459 4.436 4.424 4.382 4.291 4.248 4.280 4.256 4.114 4.073 4.156 4.308 4.418 4.392 4.336 4.322 4.337 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.405 4.369 4.299 4.288 4.373 4.373 4.373 4.373 4.373 4.373 4.401 4.409 4.419 4.387 4.450 4.527 4.457 4.247 4.040 3.804 3.768 3.998 4.298 4.378 4.143 4.053 4.046 3.992 4.019 4.165 4.100 3.954 4.081 4.290 4.407 4.558 4.618 4.589 4.544 4.517 4.526 4.571 4.613 4.583 4.554 4.581 4.571 4.507 4.463 4.388 4.326 4.297 4.176 4.118 4.144 4.256 4.360 4.405 4.385 4.339 4.315 4.328 4.357 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.442 4.430 4.373 4.358 4.322 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.378 4.367 4.365 4.402 4.461 4.494 4.275 4.072 3.911 3.832 3.933 4.158 4.150 3.946 3.926 3.926 3.890 3.819 3.989 4.134 4.288 4.493 4.554 4.632 4.690 4.706 4.629 4.606 4.583 4.569 4.525 4.487 4.480 4.512 4.566 4.538 4.471 4.495 4.442 4.411 4.440 4.337 4.279 4.299 4.332 4.402 4.415 4.398 4.358 4.337 4.346 4.349 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.490 4.472 4.373 4.496 4.422 4.357 4.362 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.369 4.359 4.378 4.434 4.351 4.202 4.139 4.017 3.971 4.074 4.068 3.956 3.908 3.860 3.934 4.084 4.440 4.675 4.637 4.576 4.601 4.663 4.609 4.496 4.411 4.410 4.382 4.398 4.416 4.369 4.344 4.322 4.348 4.338 4.345 4.384 4.405 4.474 4.553 4.518 4.511 4.536 4.525 4.553 4.497 4.420 4.363 4.360 4.381 4.380 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.509 4.519 4.429 4.542 4.551 4.373 4.421 4.442 4.419 4.377 4.375 4.380 4.395 4.390 4.373 4.373 4.373 4.373 4.350 4.396 4.408 4.349 4.379 4.450 4.379 4.363 4.244 3.960 3.697 3.792 4.226 4.548 4.713 4.644 4.593 4.564 4.546 4.503 4.401 4.312 4.270 4.268 4.262 4.276 4.300 4.278 4.221 4.170 4.187 4.224 4.266 4.330 4.348 4.377 4.409 4.367 4.307 4.291 4.325 4.455 4.470 4.372 4.305 4.322 4.367 4.376 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.404 4.539 4.526 4.373 4.380 4.558 4.576 4.517 4.441 4.383 4.305 4.300 4.322 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.394 4.420 4.422 4.467 4.658 4.699 4.587 4.476 4.044 3.780 4.023 4.532 4.712 4.509 4.456 4.436 4.369 4.354 4.294 4.260 4.265 4.259 4.257 4.268 4.297 4.316 4.299 4.296 4.154 4.164 4.207 4.261 4.315 4.321 4.325 4.321 4.281 4.220 4.217 4.264 4.367 4.399 4.290 4.206 4.246 4.330 4.362 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.395 4.505 4.507 4.487 4.427 4.503 4.491 4.437 4.371 4.325 4.293 4.304 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.377 4.375 4.364 4.463 4.559 4.537 4.616 4.370 4.218 4.536 4.411 4.427 4.422 4.392 4.367 4.255 4.193 4.170 4.206 4.241 4.251 4.308 4.334 4.371 4.380 4.368 4.327 4.290 4.288 4.279 4.294 4.317 4.320 4.307 4.304 4.340 4.344 4.363 4.373 4.353 4.380 4.282 4.196 4.219 4.305 4.349 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.483 4.466 4.448 4.434 4.434 4.441 4.435 4.376 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.358 4.336 4.328 4.315 4.302 4.321 4.294 4.440 4.602 4.535 4.415 4.255 4.292 4.249 4.243 4.307 4.290 4.197 4.135 4.130 4.195 4.373 4.373 4.373 4.373 4.373 4.365 4.311 4.220 4.373 4.373 4.260 4.301 4.304 4.290 4.351 4.373 4.373 4.373 4.382 4.358 4.373 4.373 4.373 4.346 4.345 4.362 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.394 4.447 4.432 4.423 4.393 4.422 4.431 4.373 4.529 4.373 4.429 4.373 4.373 4.373 4.373 4.373 4.271 4.373 4.373 4.373 4.373 4.346 4.322 4.271 4.309 4.402 4.367 4.512 4.548 4.346 4.262 4.277 4.220 4.246 4.342 4.358 4.286 4.219 4.225 4.311 4.373 4.373 4.373 4.373 4.373 4.367 4.320 4.224 4.210 4.286 4.247 4.335 4.300 4.357 4.373 4.373 4.386 4.362 4.327 4.282 4.330 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.670 4.710 4.698 4.438 4.373 4.373 4.373 4.373 4.373 4.251 4.328 4.373 4.373 4.373 4.370 4.333 4.347 4.456 4.523 4.493 4.505 4.480 4.321 4.221 4.292 4.350 4.377 4.419 4.399 4.344 4.275 4.299 4.333 4.373 4.373 4.373 4.373 4.373 4.372 4.359 4.357 4.276 4.255 4.309 4.350 4.322 4.373 4.373 4.373 4.361 4.324 4.281 4.280 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.540 4.752 4.753 4.678 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.391 4.443 4.395 4.382 4.485 4.466 4.349 4.237 4.316 4.437 4.373 4.427 4.394 4.366 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.376 4.371 4.349 4.278 4.342 4.352 4.349 4.373 4.373 4.352 4.354 4.285 4.305 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.735 4.677 4.565 4.480 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.366 4.387 4.450 4.453 4.399 4.304 4.336 4.427 4.371 4.337 4.355 4.332 4.315 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.371 4.365 4.364 4.314 4.342 4.350 4.357 4.373 4.373 4.358 4.355 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.517 4.538 4.462 4.437 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.374 4.378 4.406 4.421 4.391 4.343 4.358 4.398 4.291 4.235 4.327 4.294 4.322 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.368 4.355 4.353 4.341 4.349 4.355 4.355 4.357 4.360 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.426 4.407 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.365 4.345 4.355 4.369 4.253 4.204 4.373 4.289 4.322 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.356 4.329 4.335 4.340 4.344 4.350 4.352 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.356 4.356 4.358 4.356 4.261 4.209 4.250 4.287 4.331 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.354 4.336 4.335 4.336 4.343 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.377 4.361 4.343 4.284 4.271 4.313 4.336 4.370 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.375 4.331 4.299 4.314 4.360 4.378 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.374 4.385 4.387 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 4.373 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.512 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.540 4.640 4.721 4.820 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.481 4.497 4.615 4.684 4.792 4.884 4.473 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.506 4.521 4.559 4.664 4.792 4.856 4.464 4.464 4.464 4.464 4.349 4.417 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.501 4.641 4.843 4.874 4.728 4.476 4.432 4.409 4.268 4.271 4.276 4.389 4.417 4.445 4.487 4.500 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.491 4.618 4.813 5.022 4.933 4.602 4.412 4.384 4.353 4.287 4.226 4.208 4.249 4.293 4.412 4.476 4.493 4.489 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.466 4.478 4.500 4.500 4.530 4.655 4.850 4.990 4.985 4.499 4.277 4.392 4.384 4.324 4.197 4.184 4.235 4.245 4.319 4.443 4.472 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.459 4.473 4.484 4.492 4.536 4.658 4.794 4.855 4.920 4.460 4.174 4.221 4.385 4.353 4.192 4.226 4.276 4.256 4.274 4.383 4.388 4.394 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.488 4.740 4.824 4.786 4.759 4.412 4.109 4.150 4.358 4.368 4.264 4.359 4.388 4.272 4.218 4.294 4.288 4.338 4.443 4.581 4.518 4.488 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.538 4.828 4.892 4.762 4.642 4.387 4.118 4.142 4.327 4.350 4.291 4.373 4.405 4.279 4.187 4.200 4.225 4.305 4.406 4.496 4.548 4.560 4.509 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.640 4.845 4.859 4.753 4.649 4.465 4.255 4.227 4.343 4.364 4.295 4.289 4.313 4.267 4.194 4.193 4.239 4.332 4.418 4.493 4.557 4.554 4.525 4.530 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.747 4.786 4.768 4.710 4.646 4.540 4.412 4.332 4.349 4.365 4.375 4.352 4.374 4.316 4.215 4.219 4.265 4.364 4.443 4.480 4.503 4.535 4.561 4.501 4.542 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.608 4.680 4.717 4.722 4.666 4.572 4.541 4.459 4.419 4.383 4.307 4.346 4.345 4.353 4.353 4.233 4.225 4.266 4.341 4.430 4.478 4.479 4.462 4.529 4.529 4.489 4.456 4.471 4.468 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.570 4.669 4.695 4.683 4.602 4.502 4.538 4.437 4.404 4.315 4.178 4.187 4.236 4.297 4.345 4.242 4.252 4.264 4.280 4.334 4.434 4.484 4.502 4.529 4.578 4.596 4.575 4.518 4.458 4.449 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.709 4.677 4.634 4.609 4.571 4.597 4.507 4.470 4.278 4.087 4.072 4.141 4.237 4.315 4.255 4.278 4.300 4.304 4.309 4.401 4.504 4.567 4.595 4.624 4.702 4.778 4.756 4.687 4.640 4.563 4.498 4.493 4.490 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.741 4.671 4.629 4.639 4.592 4.611 4.610 4.561 4.262 4.066 4.052 4.139 4.258 4.319 4.269 4.249 4.308 4.365 4.376 4.449 4.558 4.651 4.680 4.683 4.755 4.871 4.900 4.817 4.698 4.614 4.567 4.591 4.658 4.646 4.489 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.541 4.659 4.706 4.637 4.582 4.569 4.516 4.534 4.554 4.450 4.184 4.047 4.059 4.183 4.345 4.372 4.347 4.268 4.280 4.375 4.454 4.532 4.582 4.636 4.670 4.671 4.672 4.745 4.824 4.762 4.659 4.584 4.507 4.502 4.607 4.638 4.607 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.525 4.605 4.636 4.657 4.592 4.544 4.504 4.430 4.423 4.425 4.323 4.151 4.037 4.006 4.130 4.297 4.390 4.432 4.388 4.368 4.399 4.479 4.559 4.576 4.567 4.542 4.573 4.621 4.680 4.764 4.757 4.677 4.615 4.536 4.462 4.553 4.630 4.633 4.592 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.513 4.603 4.622 4.621 4.556 4.539 4.525 4.436 4.375 4.328 4.278 4.159 4.018 3.966 4.049 4.196 4.385 4.422 4.433 4.506 4.556 4.552 4.585 4.580 4.553 4.488 4.467 4.529 4.597 4.679 4.764 4.766 4.693 4.597 4.510 4.516 4.630 4.642 4.624 4.506 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.540 4.558 4.572 4.585 4.547 4.540 4.544 4.521 4.452 4.349 4.319 4.195 4.060 4.018 4.066 4.215 4.418 4.457 4.476 4.497 4.523 4.535 4.581 4.613 4.572 4.494 4.475 4.481 4.535 4.601 4.669 4.786 4.783 4.678 4.601 4.628 4.634 4.636 4.621 4.602 4.486 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.492 4.498 4.523 4.526 4.578 4.575 4.598 4.599 4.588 4.519 4.376 4.404 4.400 4.261 4.178 4.096 4.173 4.406 4.473 4.454 4.394 4.383 4.400 4.522 4.571 4.510 4.474 4.479 4.505 4.581 4.604 4.630 4.736 4.765 4.727 4.651 4.625 4.626 4.622 4.617 4.622 4.614 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.469 4.476 4.464 4.542 4.553 4.556 4.618 4.657 4.634 4.580 4.458 4.463 4.427 4.311 4.218 4.068 4.100 4.357 4.463 4.364 4.322 4.307 4.362 4.502 4.603 4.546 4.495 4.491 4.542 4.608 4.642 4.670 4.726 4.825 4.824 4.734 4.644 4.594 4.595 4.640 4.673 4.662 4.617 4.572 4.540 4.501 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.396 4.448 4.471 4.469 4.522 4.584 4.589 4.586 4.490 4.501 4.488 4.314 4.147 4.002 4.059 4.319 4.536 4.461 4.396 4.400 4.421 4.497 4.561 4.577 4.526 4.510 4.525 4.508 4.493 4.579 4.693 4.801 4.875 4.845 4.695 4.583 4.605 4.676 4.732 4.698 4.629 4.573 4.533 4.535 4.568 4.563 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.450 4.392 4.388 4.402 4.385 4.375 4.406 4.449 4.470 4.370 4.383 4.521 4.392 4.132 4.007 4.101 4.300 4.491 4.501 4.418 4.350 4.463 4.484 4.457 4.440 4.438 4.412 4.420 4.412 4.410 4.433 4.509 4.663 4.819 4.822 4.670 4.636 4.680 4.734 4.783 4.743 4.631 4.542 4.518 4.587 4.620 4.576 4.514 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.496 4.487 4.465 4.411 4.328 4.300 4.303 4.263 4.131 4.144 4.287 4.302 4.144 4.016 4.026 4.195 4.451 4.599 4.486 4.311 4.550 4.623 4.516 4.458 4.422 4.331 4.264 4.277 4.392 4.501 4.580 4.686 4.879 4.913 4.700 4.652 4.712 4.693 4.696 4.705 4.664 4.622 4.630 4.606 4.574 4.541 4.517 4.487 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.368 4.380 4.499 4.535 4.588 4.601 4.577 4.501 4.364 4.238 4.202 4.182 4.090 4.026 4.016 4.038 3.984 3.941 3.961 4.119 4.405 4.537 4.378 4.231 4.500 4.688 4.655 4.566 4.497 4.393 4.306 4.322 4.433 4.568 4.672 4.739 4.911 5.034 4.781 4.621 4.655 4.640 4.606 4.626 4.710 4.759 4.685 4.591 4.538 4.518 4.510 4.493 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.371 4.380 4.422 4.504 4.591 4.597 4.537 4.472 4.361 4.215 4.153 4.195 4.151 4.060 3.938 3.948 3.874 3.863 3.911 4.047 4.361 4.569 4.373 4.210 4.518 4.606 4.661 4.705 4.625 4.447 4.326 4.290 4.330 4.465 4.638 4.729 4.784 4.782 4.696 4.698 4.692 4.666 4.620 4.576 4.591 4.666 4.648 4.580 4.534 4.513 4.506 4.496 4.474 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.511 4.527 4.550 4.499 4.406 4.277 4.168 4.137 4.199 4.220 4.177 3.961 3.946 3.881 3.847 3.930 4.115 4.292 4.548 4.528 4.274 4.568 4.768 4.632 4.598 4.572 4.499 4.478 4.451 4.398 4.424 4.512 4.633 4.651 4.613 4.558 4.614 4.779 4.770 4.640 4.529 4.472 4.513 4.522 4.521 4.515 4.505 4.501 4.497 4.484 4.472 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.430 4.429 4.357 4.245 4.214 4.236 4.249 4.236 4.266 4.106 3.982 3.919 3.859 3.950 4.130 4.305 4.473 4.573 4.324 4.329 4.656 4.545 4.506 4.481 4.380 4.429 4.538 4.551 4.524 4.496 4.498 4.540 4.643 4.705 4.696 4.697 4.634 4.542 4.464 4.459 4.493 4.535 4.519 4.492 4.485 4.491 4.501 4.499 4.496 4.494 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.458 4.442 4.356 4.237 4.253 4.314 4.367 4.329 4.329 4.296 4.106 4.039 3.938 3.969 4.026 4.164 4.362 4.589 4.447 4.252 4.522 4.513 4.484 4.598 4.679 4.639 4.658 4.788 4.771 4.552 4.394 4.433 4.643 4.714 4.598 4.463 4.365 4.294 4.260 4.215 4.267 4.423 4.518 4.507 4.462 4.462 4.485 4.505 4.516 4.521 4.514 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.477 4.464 4.464 4.426 4.417 4.416 4.302 4.417 4.458 4.465 4.390 4.242 4.187 4.104 4.036 3.947 4.067 4.421 4.598 4.532 4.395 4.633 4.723 4.473 4.377 4.520 4.669 4.593 4.554 4.501 4.373 4.284 4.345 4.442 4.447 4.330 4.323 4.373 4.339 4.254 4.222 4.176 4.194 4.348 4.468 4.447 4.410 4.415 4.456 4.493 4.529 4.522 4.498 4.468 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.539 4.525 4.464 4.464 4.464 4.464 4.419 4.464 4.449 4.517 4.562 4.533 4.440 4.388 4.227 4.081 3.851 3.896 4.293 4.520 4.404 4.233 4.392 4.583 4.581 4.553 4.635 4.664 4.596 4.562 4.451 4.252 4.223 4.292 4.334 4.286 4.196 4.181 4.258 4.340 4.353 4.279 4.197 4.167 4.277 4.379 4.402 4.332 4.296 4.333 4.427 4.505 4.525 4.497 4.463 4.443 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.490 4.529 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.521 4.575 4.571 4.503 4.461 4.303 4.073 3.805 3.826 4.190 4.471 4.368 4.180 4.267 4.343 4.515 4.659 4.706 4.808 4.688 4.471 4.341 4.241 4.177 4.152 4.131 4.160 4.221 4.275 4.333 4.356 4.339 4.336 4.341 4.332 4.313 4.265 4.294 4.267 4.207 4.183 4.303 4.457 4.524 4.521 4.476 4.432 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.484 4.471 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.514 4.605 4.594 4.538 4.485 4.379 4.117 3.870 3.893 4.197 4.459 4.401 4.253 4.255 4.380 4.525 4.580 4.601 4.550 4.291 4.117 4.108 4.173 4.177 4.165 4.246 4.388 4.453 4.456 4.506 4.526 4.525 4.527 4.548 4.534 4.489 4.386 4.349 4.308 4.282 4.217 4.259 4.344 4.453 4.512 4.495 4.435 4.404 4.394 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.528 4.506 4.464 4.464 4.506 4.464 4.464 4.464 4.464 4.464 4.507 4.534 4.610 4.612 4.582 4.554 4.492 4.386 4.205 3.990 3.918 4.141 4.503 4.456 4.220 4.129 4.254 4.391 4.413 4.488 4.386 4.150 4.106 4.204 4.263 4.297 4.304 4.355 4.390 4.378 4.389 4.434 4.447 4.470 4.505 4.558 4.575 4.553 4.560 4.531 4.464 4.477 4.335 4.313 4.374 4.426 4.454 4.468 4.451 4.399 4.352 4.367 4.396 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.551 4.552 4.464 4.633 4.606 4.533 4.464 4.464 4.464 4.525 4.570 4.556 4.508 4.464 4.472 4.575 4.565 4.519 4.337 4.170 4.015 3.910 4.022 4.349 4.275 3.947 4.004 4.069 4.174 4.130 4.264 4.358 4.343 4.353 4.353 4.388 4.417 4.431 4.434 4.456 4.447 4.434 4.398 4.370 4.417 4.485 4.588 4.569 4.538 4.640 4.654 4.653 4.686 4.497 4.439 4.463 4.454 4.460 4.442 4.430 4.412 4.387 4.386 4.412 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.597 4.622 4.635 4.637 4.606 4.464 4.539 4.736 4.689 4.618 4.464 4.464 4.464 4.464 4.585 4.548 4.514 4.498 4.398 4.292 4.241 4.187 4.124 4.270 4.262 3.974 3.986 3.876 3.992 4.196 4.548 4.676 4.550 4.425 4.450 4.461 4.392 4.368 4.396 4.406 4.408 4.460 4.485 4.443 4.492 4.475 4.429 4.323 4.321 4.450 4.556 4.620 4.625 4.514 4.543 4.582 4.573 4.548 4.481 4.435 4.424 4.431 4.449 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.629 4.648 4.593 4.464 4.464 4.650 4.739 4.806 4.799 4.464 4.464 4.464 4.464 4.464 4.543 4.512 4.464 4.470 4.465 4.446 4.416 4.468 4.598 4.548 4.585 4.505 4.014 3.735 3.762 4.148 4.561 4.700 4.607 4.580 4.536 4.468 4.394 4.316 4.281 4.311 4.342 4.365 4.415 4.456 4.420 4.387 4.294 4.232 4.203 4.229 4.313 4.382 4.424 4.444 4.397 4.372 4.384 4.441 4.500 4.487 4.421 4.402 4.423 4.459 4.466 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.600 4.464 4.537 4.579 4.613 4.671 4.666 4.635 4.464 4.464 4.464 4.464 4.464 4.548 4.509 4.464 4.464 4.464 4.464 4.460 4.477 4.547 4.792 4.838 4.723 4.644 4.112 3.833 4.103 4.615 4.797 4.585 4.478 4.518 4.451 4.332 4.252 4.265 4.314 4.356 4.357 4.365 4.382 4.380 4.357 4.303 4.210 4.174 4.196 4.260 4.315 4.375 4.354 4.364 4.343 4.299 4.301 4.361 4.442 4.461 4.374 4.344 4.383 4.438 4.460 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.499 4.609 4.609 4.561 4.464 4.562 4.567 4.563 4.527 4.530 4.464 4.634 4.574 4.519 4.464 4.464 4.464 4.464 4.464 4.456 4.463 4.490 4.575 4.673 4.685 4.757 4.430 4.249 4.740 4.587 4.486 4.471 4.413 4.454 4.343 4.228 4.180 4.211 4.320 4.365 4.419 4.430 4.441 4.430 4.426 4.407 4.390 4.305 4.320 4.339 4.374 4.397 4.411 4.419 4.431 4.328 4.331 4.417 4.439 4.454 4.371 4.319 4.338 4.400 4.436 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.519 4.569 4.568 4.565 4.567 4.593 4.639 4.722 4.766 4.775 4.684 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.437 4.429 4.442 4.455 4.457 4.418 4.538 4.639 4.669 4.642 4.404 4.379 4.338 4.268 4.322 4.314 4.255 4.195 4.183 4.216 4.274 4.378 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.435 4.409 4.408 4.402 4.414 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.374 4.382 4.429 4.449 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.487 4.515 4.504 4.512 4.530 4.582 4.687 4.785 4.806 4.772 4.543 4.464 4.464 4.464 4.464 4.354 4.464 4.464 4.464 4.477 4.453 4.444 4.477 4.523 4.457 4.558 4.768 4.552 4.389 4.368 4.293 4.252 4.311 4.342 4.310 4.262 4.202 4.165 4.183 4.379 4.464 4.464 4.464 4.464 4.464 4.365 4.360 4.396 4.416 4.421 4.396 4.451 4.464 4.464 4.469 4.473 4.464 4.464 4.464 4.464 4.464 4.464 4.463 4.462 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.615 4.806 4.840 4.791 4.717 4.464 4.464 4.464 4.464 4.402 4.339 4.464 4.464 4.464 4.464 4.458 4.476 4.561 4.553 4.552 4.560 4.597 4.416 4.273 4.353 4.399 4.388 4.391 4.390 4.378 4.332 4.270 4.219 4.229 4.351 4.414 4.464 4.464 4.464 4.462 4.464 4.288 4.358 4.396 4.401 4.394 4.464 4.464 4.474 4.461 4.436 4.406 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.669 4.747 4.691 4.633 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.482 4.568 4.505 4.462 4.527 4.574 4.426 4.298 4.392 4.500 4.462 4.422 4.389 4.385 4.352 4.352 4.464 4.464 4.464 4.403 4.398 4.464 4.464 4.473 4.480 4.318 4.300 4.359 4.387 4.415 4.470 4.471 4.451 4.405 4.384 4.405 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.610 4.571 4.546 4.509 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.477 4.475 4.504 4.513 4.474 4.415 4.459 4.518 4.427 4.344 4.356 4.419 4.363 4.386 4.464 4.464 4.464 4.464 4.464 4.399 4.410 4.417 4.458 4.414 4.341 4.340 4.410 4.434 4.462 4.437 4.400 4.359 4.368 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.506 4.472 4.503 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.471 4.464 4.474 4.482 4.470 4.435 4.467 4.498 4.380 4.298 4.425 4.447 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.380 4.390 4.393 4.381 4.374 4.396 4.418 4.449 4.394 4.365 4.453 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.485 4.468 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.463 4.464 4.437 4.425 4.445 4.472 4.387 4.310 4.312 4.407 4.362 4.417 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.350 4.337 4.353 4.389 4.389 4.384 4.397 4.381 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.447 4.445 4.456 4.462 4.398 4.330 4.347 4.396 4.402 4.440 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.409 4.339 4.333 4.400 4.382 4.352 4.420 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.472 4.478 4.447 4.402 4.384 4.417 4.441 4.444 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.454 4.464 4.464 4.446 4.445 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.441 4.402 4.414 4.450 4.478 4.476 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.484 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 4.464 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.720 4.769 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.609 4.845 4.896 4.903 4.876 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.596 4.756 4.860 4.959 4.901 4.794 4.555 4.555 4.555 4.555 4.506 4.516 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.748 4.920 5.013 4.811 4.624 4.496 4.539 4.555 4.501 4.458 4.444 4.455 4.499 4.562 4.594 4.601 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.779 4.936 5.004 4.776 4.485 4.407 4.538 4.544 4.423 4.400 4.341 4.356 4.410 4.549 4.583 4.592 4.582 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.575 4.579 4.577 4.571 4.591 4.781 4.923 4.916 4.789 4.415 4.274 4.436 4.509 4.434 4.347 4.256 4.262 4.331 4.435 4.551 4.571 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.554 4.558 4.568 4.566 4.604 4.771 4.889 4.853 4.793 4.458 4.273 4.292 4.505 4.456 4.317 4.249 4.275 4.325 4.408 4.507 4.504 4.530 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.544 4.555 4.555 4.580 4.794 4.861 4.815 4.735 4.484 4.297 4.307 4.480 4.500 4.397 4.374 4.370 4.328 4.377 4.469 4.409 4.402 4.486 4.547 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.542 4.540 4.555 4.555 4.814 4.832 4.758 4.651 4.455 4.281 4.299 4.519 4.553 4.460 4.416 4.350 4.276 4.287 4.347 4.325 4.334 4.381 4.453 4.600 4.618 4.591 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.533 4.550 4.595 4.783 4.767 4.681 4.637 4.474 4.314 4.306 4.517 4.574 4.500 4.405 4.300 4.239 4.226 4.265 4.282 4.317 4.357 4.411 4.486 4.550 4.630 4.596 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.534 4.540 4.589 4.731 4.687 4.602 4.600 4.510 4.389 4.388 4.527 4.578 4.568 4.477 4.411 4.288 4.230 4.250 4.283 4.341 4.386 4.419 4.455 4.524 4.577 4.592 4.603 4.577 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.594 4.650 4.677 4.628 4.542 4.531 4.500 4.410 4.442 4.548 4.543 4.569 4.452 4.346 4.259 4.225 4.273 4.316 4.370 4.419 4.456 4.472 4.489 4.547 4.581 4.566 4.620 4.597 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.606 4.656 4.653 4.598 4.523 4.517 4.542 4.452 4.483 4.553 4.505 4.474 4.351 4.320 4.250 4.225 4.311 4.364 4.406 4.431 4.456 4.488 4.497 4.511 4.577 4.623 4.628 4.636 4.619 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.572 4.682 4.652 4.603 4.565 4.586 4.638 4.576 4.639 4.611 4.438 4.336 4.276 4.310 4.263 4.245 4.334 4.405 4.455 4.459 4.458 4.477 4.499 4.499 4.543 4.623 4.714 4.743 4.746 4.643 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.674 4.654 4.635 4.627 4.611 4.665 4.663 4.710 4.582 4.351 4.238 4.236 4.340 4.290 4.266 4.322 4.413 4.480 4.493 4.488 4.508 4.529 4.513 4.521 4.595 4.707 4.804 4.802 4.736 4.684 4.591 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.574 4.662 4.677 4.652 4.633 4.606 4.569 4.612 4.629 4.634 4.467 4.292 4.206 4.233 4.348 4.309 4.295 4.303 4.370 4.470 4.518 4.514 4.501 4.527 4.538 4.518 4.528 4.620 4.733 4.763 4.736 4.683 4.601 4.601 4.555 4.604 4.579 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.606 4.652 4.669 4.643 4.606 4.581 4.539 4.553 4.531 4.507 4.364 4.257 4.177 4.216 4.321 4.360 4.358 4.352 4.366 4.439 4.513 4.541 4.515 4.478 4.481 4.511 4.546 4.599 4.692 4.751 4.733 4.738 4.675 4.598 4.634 4.656 4.723 4.586 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.603 4.629 4.642 4.575 4.572 4.579 4.559 4.521 4.455 4.421 4.359 4.261 4.188 4.194 4.247 4.350 4.348 4.360 4.406 4.483 4.530 4.567 4.552 4.484 4.439 4.440 4.482 4.548 4.651 4.763 4.814 4.797 4.773 4.703 4.682 4.713 4.747 4.756 4.587 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.584 4.549 4.580 4.567 4.555 4.555 4.650 4.614 4.543 4.418 4.399 4.409 4.335 4.252 4.209 4.228 4.316 4.315 4.335 4.378 4.456 4.515 4.560 4.570 4.514 4.465 4.429 4.447 4.487 4.570 4.691 4.832 4.880 4.869 4.817 4.813 4.788 4.779 4.774 4.742 4.585 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.578 4.588 4.583 4.555 4.555 4.712 4.731 4.720 4.614 4.417 4.418 4.518 4.466 4.337 4.195 4.198 4.349 4.363 4.339 4.312 4.354 4.413 4.510 4.550 4.509 4.456 4.434 4.446 4.497 4.531 4.623 4.769 4.862 4.906 4.838 4.829 4.849 4.857 4.843 4.800 4.753 4.602 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.618 4.708 4.768 4.752 4.641 4.465 4.469 4.535 4.446 4.304 4.143 4.144 4.340 4.375 4.329 4.309 4.300 4.340 4.447 4.573 4.570 4.502 4.451 4.472 4.506 4.526 4.580 4.698 4.843 4.887 4.841 4.763 4.759 4.827 4.874 4.861 4.811 4.733 4.670 4.605 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.544 4.539 4.566 4.614 4.664 4.664 4.577 4.426 4.475 4.543 4.346 4.125 4.020 4.093 4.301 4.408 4.367 4.367 4.342 4.396 4.474 4.575 4.625 4.573 4.523 4.487 4.469 4.471 4.521 4.616 4.762 4.862 4.836 4.726 4.693 4.740 4.808 4.823 4.765 4.682 4.619 4.585 4.554 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.466 4.486 4.507 4.509 4.534 4.546 4.488 4.328 4.348 4.451 4.344 4.086 3.979 4.065 4.276 4.400 4.404 4.414 4.375 4.463 4.510 4.548 4.578 4.566 4.505 4.474 4.448 4.419 4.412 4.476 4.593 4.712 4.758 4.702 4.695 4.686 4.711 4.732 4.707 4.643 4.602 4.601 4.620 4.566 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.572 4.561 4.542 4.519 4.486 4.461 4.467 4.404 4.235 4.199 4.249 4.269 4.133 4.026 4.029 4.196 4.361 4.437 4.442 4.396 4.508 4.583 4.541 4.509 4.526 4.475 4.408 4.367 4.403 4.473 4.523 4.616 4.713 4.753 4.698 4.707 4.690 4.582 4.597 4.615 4.635 4.672 4.696 4.666 4.603 4.574 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.535 4.555 4.593 4.600 4.680 4.679 4.650 4.554 4.432 4.377 4.340 4.221 4.102 4.044 4.099 4.086 4.055 4.050 4.181 4.332 4.382 4.362 4.341 4.467 4.601 4.600 4.555 4.571 4.559 4.499 4.461 4.458 4.526 4.636 4.765 4.853 4.852 4.732 4.678 4.655 4.570 4.532 4.604 4.695 4.749 4.702 4.634 4.598 4.580 4.575 4.551 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.438 4.546 4.526 4.582 4.676 4.716 4.691 4.594 4.441 4.333 4.333 4.331 4.213 4.015 4.032 4.023 4.032 4.056 4.155 4.322 4.464 4.439 4.377 4.565 4.609 4.598 4.585 4.590 4.552 4.487 4.450 4.466 4.534 4.657 4.777 4.887 4.877 4.778 4.750 4.693 4.642 4.648 4.694 4.716 4.687 4.619 4.583 4.582 4.583 4.584 4.576 4.568 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.524 4.555 4.643 4.718 4.710 4.601 4.462 4.346 4.330 4.359 4.337 4.086 4.045 4.052 4.039 4.089 4.177 4.293 4.446 4.515 4.453 4.623 4.794 4.623 4.550 4.587 4.598 4.549 4.467 4.409 4.424 4.503 4.651 4.767 4.784 4.745 4.722 4.782 4.807 4.766 4.703 4.660 4.621 4.559 4.532 4.551 4.574 4.591 4.596 4.584 4.577 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.582 4.612 4.658 4.682 4.622 4.563 4.501 4.429 4.391 4.402 4.260 4.106 4.122 4.102 4.141 4.207 4.262 4.400 4.499 4.411 4.459 4.749 4.724 4.637 4.632 4.546 4.509 4.528 4.530 4.522 4.499 4.488 4.568 4.727 4.876 4.893 4.823 4.794 4.753 4.705 4.670 4.627 4.587 4.552 4.531 4.557 4.597 4.617 4.617 4.614 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.624 4.656 4.688 4.631 4.519 4.450 4.444 4.288 4.246 4.185 4.155 4.153 4.219 4.347 4.471 4.447 4.389 4.611 4.749 4.680 4.639 4.610 4.508 4.462 4.497 4.527 4.507 4.476 4.528 4.715 4.844 4.858 4.792 4.690 4.610 4.509 4.421 4.429 4.497 4.535 4.550 4.548 4.588 4.633 4.653 4.649 4.596 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.619 4.739 4.674 4.594 4.537 4.487 4.463 4.390 4.239 4.132 4.219 4.409 4.433 4.450 4.336 4.574 4.806 4.719 4.562 4.561 4.584 4.473 4.456 4.490 4.516 4.539 4.588 4.645 4.675 4.670 4.700 4.674 4.560 4.456 4.399 4.379 4.420 4.485 4.503 4.520 4.566 4.608 4.648 4.663 4.654 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.614 4.555 4.555 4.696 4.716 4.688 4.620 4.564 4.604 4.524 4.309 4.104 4.111 4.348 4.403 4.365 4.283 4.446 4.611 4.654 4.614 4.646 4.718 4.589 4.493 4.445 4.372 4.465 4.677 4.760 4.588 4.471 4.475 4.502 4.491 4.476 4.421 4.392 4.426 4.478 4.490 4.480 4.449 4.501 4.575 4.631 4.635 4.611 4.572 4.538 4.552 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.824 4.666 4.555 4.555 4.555 4.555 4.684 4.728 4.669 4.579 4.584 4.518 4.301 4.062 4.046 4.362 4.535 4.490 4.335 4.449 4.579 4.601 4.602 4.743 4.852 4.723 4.508 4.429 4.371 4.389 4.408 4.408 4.434 4.456 4.481 4.467 4.442 4.481 4.544 4.556 4.563 4.496 4.426 4.424 4.400 4.386 4.395 4.488 4.590 4.612 4.589 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.773 4.881 4.836 4.555 4.555 4.555 4.555 4.555 4.764 4.784 4.710 4.584 4.501 4.499 4.357 4.066 3.998 4.302 4.577 4.554 4.330 4.326 4.537 4.630 4.653 4.860 4.849 4.576 4.318 4.243 4.249 4.274 4.261 4.299 4.383 4.444 4.458 4.457 4.444 4.467 4.492 4.521 4.524 4.492 4.411 4.405 4.364 4.399 4.400 4.432 4.479 4.545 4.558 4.585 4.596 4.573 4.558 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.754 4.804 4.849 4.883 4.555 4.555 4.555 4.555 4.849 4.854 4.823 4.786 4.718 4.619 4.536 4.527 4.414 4.175 4.040 4.292 4.716 4.649 4.397 4.229 4.392 4.582 4.688 4.830 4.786 4.480 4.274 4.251 4.289 4.325 4.332 4.383 4.445 4.471 4.459 4.410 4.380 4.458 4.517 4.526 4.500 4.511 4.495 4.469 4.425 4.502 4.451 4.448 4.483 4.490 4.511 4.522 4.534 4.523 4.490 4.493 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.797 4.779 4.807 4.803 4.555 4.555 4.612 4.888 4.911 4.883 4.842 4.798 4.757 4.716 4.639 4.544 4.486 4.339 4.190 4.104 4.278 4.719 4.657 4.215 4.178 4.280 4.373 4.427 4.580 4.610 4.490 4.376 4.341 4.372 4.420 4.452 4.517 4.531 4.484 4.431 4.393 4.417 4.518 4.538 4.520 4.500 4.520 4.572 4.545 4.510 4.584 4.473 4.481 4.514 4.458 4.451 4.450 4.457 4.468 4.467 4.461 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.578 4.752 4.776 4.555 4.555 4.555 4.621 4.870 4.906 4.906 4.867 4.824 4.791 4.778 4.763 4.705 4.606 4.529 4.474 4.393 4.334 4.364 4.463 4.656 4.694 4.154 4.117 4.085 4.163 4.313 4.588 4.589 4.549 4.603 4.582 4.487 4.417 4.403 4.465 4.431 4.404 4.461 4.505 4.546 4.633 4.556 4.395 4.338 4.364 4.490 4.544 4.556 4.556 4.496 4.574 4.642 4.560 4.528 4.508 4.499 4.510 4.519 4.528 4.549 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.578 4.555 4.555 4.555 4.682 4.742 4.901 4.894 4.868 4.739 4.807 4.800 4.804 4.803 4.787 4.593 4.556 4.511 4.484 4.463 4.477 4.614 4.701 4.658 4.752 4.144 3.911 3.994 4.326 4.635 4.667 4.589 4.568 4.622 4.609 4.507 4.391 4.339 4.345 4.337 4.380 4.476 4.563 4.568 4.557 4.443 4.300 4.254 4.274 4.351 4.429 4.453 4.447 4.436 4.503 4.529 4.533 4.516 4.507 4.490 4.506 4.529 4.547 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.582 4.656 4.743 4.743 4.693 4.555 4.555 4.747 4.813 4.834 4.846 4.831 4.801 4.606 4.555 4.555 4.501 4.506 4.533 4.598 4.797 4.942 4.790 4.671 4.186 3.974 4.274 4.794 4.890 4.655 4.488 4.507 4.570 4.491 4.413 4.396 4.408 4.417 4.464 4.420 4.488 4.491 4.495 4.462 4.361 4.280 4.266 4.307 4.355 4.405 4.422 4.447 4.453 4.423 4.406 4.459 4.484 4.506 4.462 4.482 4.513 4.548 4.558 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.589 4.632 4.642 4.684 4.636 4.702 4.780 4.842 4.884 4.878 4.879 4.768 4.614 4.555 4.555 4.555 4.555 4.543 4.549 4.608 4.662 4.752 4.740 4.755 4.479 4.318 4.740 4.759 4.648 4.585 4.470 4.475 4.474 4.381 4.339 4.368 4.440 4.500 4.526 4.489 4.488 4.542 4.555 4.543 4.465 4.310 4.306 4.357 4.432 4.459 4.495 4.513 4.510 4.435 4.423 4.465 4.488 4.520 4.466 4.442 4.458 4.506 4.532 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.580 4.612 4.675 4.666 4.679 4.718 4.788 4.846 4.877 4.859 4.727 4.610 4.555 4.555 4.555 4.555 4.555 4.533 4.531 4.561 4.585 4.593 4.527 4.600 4.665 4.674 4.826 4.612 4.566 4.522 4.379 4.376 4.379 4.352 4.337 4.339 4.365 4.427 4.520 4.542 4.543 4.555 4.506 4.495 4.495 4.484 4.470 4.464 4.481 4.510 4.547 4.555 4.555 4.555 4.522 4.526 4.555 4.537 4.485 4.460 4.483 4.524 4.542 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.581 4.614 4.628 4.682 4.762 4.811 4.845 4.806 4.731 4.675 4.555 4.555 4.495 4.440 4.555 4.552 4.569 4.570 4.594 4.623 4.636 4.575 4.575 4.824 4.742 4.574 4.546 4.484 4.347 4.352 4.365 4.360 4.349 4.320 4.293 4.298 4.369 4.494 4.623 4.555 4.555 4.555 4.555 4.555 4.533 4.530 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.546 4.558 4.556 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.616 4.777 4.755 4.698 4.665 4.555 4.555 4.459 4.431 4.555 4.555 4.555 4.569 4.594 4.657 4.592 4.587 4.604 4.699 4.571 4.428 4.468 4.518 4.438 4.402 4.380 4.383 4.384 4.353 4.305 4.254 4.227 4.279 4.440 4.585 4.662 4.555 4.555 4.555 4.538 4.555 4.551 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.554 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.579 4.703 4.686 4.664 4.633 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.679 4.612 4.544 4.574 4.672 4.563 4.419 4.477 4.574 4.519 4.440 4.389 4.382 4.388 4.357 4.327 4.461 4.470 4.336 4.340 4.420 4.577 4.715 4.661 4.549 4.509 4.514 4.540 4.550 4.559 4.576 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.596 4.609 4.592 4.619 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.588 4.560 4.574 4.589 4.557 4.513 4.560 4.605 4.506 4.408 4.388 4.495 4.470 4.481 4.462 4.479 4.453 4.483 4.492 4.409 4.461 4.562 4.681 4.698 4.568 4.493 4.555 4.553 4.562 4.555 4.513 4.506 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.552 4.550 4.578 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.570 4.551 4.547 4.533 4.506 4.540 4.586 4.503 4.416 4.421 4.555 4.555 4.436 4.497 4.519 4.486 4.486 4.417 4.451 4.438 4.441 4.503 4.591 4.603 4.538 4.518 4.519 4.555 4.469 4.481 4.547 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.543 4.540 4.517 4.507 4.532 4.567 4.524 4.434 4.396 4.459 4.493 4.459 4.544 4.555 4.555 4.526 4.524 4.520 4.485 4.395 4.421 4.437 4.492 4.533 4.503 4.480 4.450 4.460 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.541 4.545 4.555 4.559 4.522 4.464 4.445 4.494 4.519 4.519 4.556 4.555 4.555 4.555 4.555 4.555 4.555 4.537 4.536 4.433 4.435 4.423 4.442 4.432 4.440 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.561 4.559 4.545 4.509 4.495 4.499 4.563 4.551 4.545 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.465 4.459 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.544 4.522 4.502 4.534 4.573 4.574 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.572 4.569 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 4.555 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.703 4.860 4.832 4.624 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.757 4.796 4.826 4.749 4.626 4.579 4.579 4.579 4.579 4.579 4.573 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.757 4.774 4.670 4.546 4.486 4.417 4.487 4.579 4.579 4.547 4.538 4.524 4.547 4.591 4.617 4.624 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.591 4.579 4.579 4.579 4.579 4.783 4.822 4.654 4.499 4.398 4.357 4.346 4.492 4.520 4.500 4.465 4.445 4.487 4.559 4.612 4.620 4.610 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.578 4.589 4.588 4.587 4.579 4.579 4.784 4.840 4.700 4.545 4.388 4.365 4.458 4.438 4.463 4.464 4.393 4.332 4.399 4.500 4.586 4.603 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.576 4.574 4.579 4.579 4.579 4.757 4.815 4.727 4.603 4.456 4.361 4.380 4.466 4.494 4.487 4.422 4.365 4.378 4.471 4.561 4.563 4.562 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.584 4.562 4.579 4.579 4.605 4.714 4.765 4.724 4.633 4.516 4.414 4.398 4.466 4.526 4.561 4.529 4.448 4.374 4.437 4.530 4.494 4.485 4.544 4.580 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.569 4.567 4.579 4.607 4.685 4.728 4.713 4.613 4.521 4.434 4.429 4.500 4.581 4.618 4.510 4.333 4.262 4.351 4.445 4.410 4.406 4.425 4.525 4.568 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.587 4.564 4.579 4.606 4.665 4.701 4.687 4.614 4.519 4.432 4.412 4.502 4.631 4.670 4.528 4.309 4.208 4.249 4.312 4.328 4.352 4.371 4.402 4.466 4.573 4.637 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.570 4.572 4.600 4.634 4.659 4.630 4.594 4.540 4.455 4.459 4.562 4.686 4.721 4.596 4.429 4.263 4.223 4.250 4.273 4.321 4.355 4.370 4.406 4.487 4.559 4.641 4.625 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.585 4.594 4.612 4.624 4.589 4.554 4.537 4.483 4.498 4.607 4.694 4.722 4.577 4.398 4.219 4.204 4.260 4.285 4.319 4.361 4.384 4.402 4.439 4.515 4.590 4.623 4.632 4.609 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.594 4.597 4.602 4.570 4.558 4.579 4.527 4.511 4.603 4.665 4.604 4.470 4.418 4.223 4.196 4.297 4.356 4.383 4.389 4.393 4.426 4.429 4.452 4.541 4.607 4.623 4.650 4.625 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.594 4.597 4.569 4.596 4.636 4.622 4.631 4.672 4.620 4.454 4.364 4.375 4.199 4.186 4.305 4.398 4.457 4.466 4.436 4.438 4.449 4.510 4.488 4.548 4.616 4.641 4.674 4.644 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.615 4.612 4.579 4.583 4.596 4.631 4.652 4.691 4.700 4.581 4.371 4.308 4.362 4.233 4.218 4.306 4.409 4.496 4.509 4.485 4.480 4.479 4.456 4.451 4.491 4.551 4.631 4.665 4.646 4.666 4.608 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.609 4.639 4.642 4.617 4.581 4.555 4.588 4.621 4.669 4.667 4.533 4.336 4.277 4.338 4.280 4.259 4.313 4.394 4.510 4.549 4.509 4.484 4.500 4.492 4.453 4.458 4.484 4.554 4.629 4.638 4.641 4.659 4.618 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.648 4.635 4.595 4.579 4.549 4.561 4.573 4.618 4.602 4.467 4.323 4.298 4.363 4.393 4.347 4.344 4.381 4.475 4.563 4.547 4.494 4.478 4.486 4.480 4.468 4.471 4.512 4.565 4.629 4.679 4.660 4.621 4.636 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.572 4.597 4.602 4.572 4.579 4.561 4.547 4.524 4.529 4.522 4.404 4.309 4.299 4.335 4.393 4.353 4.357 4.390 4.441 4.518 4.572 4.537 4.473 4.445 4.446 4.452 4.477 4.516 4.569 4.624 4.681 4.710 4.698 4.686 4.672 4.620 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.591 4.584 4.589 4.601 4.579 4.579 4.612 4.583 4.504 4.470 4.460 4.406 4.344 4.302 4.285 4.318 4.272 4.284 4.333 4.408 4.473 4.550 4.570 4.519 4.451 4.426 4.427 4.451 4.502 4.564 4.625 4.671 4.721 4.758 4.767 4.746 4.724 4.690 4.664 4.598 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.599 4.579 4.579 4.579 4.579 4.686 4.610 4.485 4.444 4.440 4.418 4.384 4.289 4.264 4.320 4.271 4.265 4.284 4.345 4.421 4.521 4.573 4.533 4.473 4.436 4.433 4.452 4.468 4.532 4.613 4.661 4.693 4.711 4.739 4.773 4.790 4.783 4.758 4.736 4.605 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.679 4.592 4.480 4.429 4.409 4.346 4.286 4.220 4.256 4.362 4.331 4.302 4.310 4.311 4.366 4.473 4.596 4.604 4.508 4.440 4.444 4.466 4.470 4.514 4.563 4.641 4.681 4.679 4.667 4.704 4.755 4.780 4.782 4.765 4.715 4.607 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.611 4.607 4.534 4.431 4.401 4.410 4.317 4.175 4.102 4.185 4.338 4.378 4.344 4.367 4.355 4.383 4.446 4.559 4.653 4.608 4.527 4.465 4.453 4.458 4.507 4.558 4.604 4.646 4.658 4.640 4.657 4.699 4.732 4.742 4.679 4.680 4.645 4.600 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.521 4.514 4.531 4.554 4.539 4.475 4.352 4.308 4.363 4.339 4.186 4.086 4.129 4.262 4.359 4.358 4.404 4.405 4.438 4.466 4.506 4.608 4.637 4.571 4.524 4.495 4.462 4.462 4.505 4.552 4.574 4.599 4.629 4.654 4.690 4.708 4.701 4.648 4.637 4.643 4.650 4.598 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.543 4.514 4.519 4.532 4.533 4.471 4.330 4.223 4.245 4.276 4.259 4.162 4.121 4.211 4.348 4.392 4.429 4.441 4.478 4.508 4.488 4.495 4.537 4.533 4.498 4.464 4.486 4.510 4.547 4.585 4.607 4.632 4.626 4.653 4.672 4.674 4.672 4.625 4.642 4.676 4.696 4.690 4.599 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.639 4.624 4.577 4.539 4.528 4.499 4.379 4.210 4.179 4.200 4.210 4.154 4.136 4.218 4.349 4.431 4.424 4.405 4.457 4.518 4.530 4.529 4.518 4.518 4.500 4.490 4.495 4.543 4.620 4.694 4.719 4.698 4.636 4.601 4.621 4.644 4.659 4.679 4.674 4.682 4.677 4.660 4.652 4.604 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.480 4.498 4.575 4.582 4.608 4.671 4.690 4.656 4.583 4.518 4.496 4.463 4.327 4.172 4.139 4.142 4.142 4.148 4.201 4.318 4.454 4.466 4.408 4.480 4.527 4.533 4.525 4.497 4.499 4.501 4.506 4.511 4.529 4.597 4.688 4.755 4.759 4.718 4.677 4.642 4.652 4.695 4.739 4.729 4.673 4.624 4.610 4.634 4.640 4.625 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.573 4.521 4.575 4.501 4.568 4.647 4.716 4.715 4.637 4.548 4.507 4.503 4.447 4.225 4.135 4.135 4.120 4.150 4.184 4.295 4.468 4.549 4.514 4.576 4.672 4.577 4.502 4.484 4.514 4.537 4.531 4.518 4.506 4.524 4.609 4.709 4.748 4.772 4.785 4.792 4.775 4.753 4.740 4.710 4.673 4.623 4.601 4.616 4.639 4.659 4.648 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.589 4.555 4.617 4.680 4.730 4.721 4.685 4.626 4.566 4.492 4.367 4.235 4.211 4.204 4.181 4.186 4.253 4.415 4.517 4.502 4.568 4.700 4.717 4.597 4.554 4.582 4.629 4.634 4.612 4.564 4.505 4.484 4.586 4.720 4.840 4.911 4.948 4.973 4.868 4.745 4.658 4.642 4.658 4.647 4.629 4.635 4.666 4.670 4.639 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.605 4.645 4.742 4.844 4.914 4.824 4.671 4.554 4.498 4.421 4.400 4.353 4.220 4.134 4.202 4.307 4.392 4.413 4.478 4.647 4.784 4.743 4.603 4.545 4.551 4.605 4.607 4.562 4.522 4.487 4.529 4.646 4.761 4.834 4.919 4.980 4.930 4.805 4.675 4.597 4.584 4.620 4.672 4.678 4.674 4.666 4.678 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.902 4.952 4.977 4.913 4.811 4.701 4.627 4.583 4.587 4.543 4.365 4.178 4.225 4.325 4.358 4.395 4.461 4.670 4.862 4.884 4.662 4.500 4.438 4.424 4.479 4.531 4.563 4.600 4.639 4.683 4.732 4.772 4.824 4.852 4.805 4.700 4.660 4.678 4.679 4.631 4.602 4.648 4.696 4.672 4.661 4.663 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.623 5.094 4.997 4.928 4.579 4.699 4.806 4.788 4.733 4.648 4.687 4.730 4.551 4.280 4.207 4.294 4.310 4.313 4.377 4.532 4.680 4.747 4.633 4.495 4.404 4.375 4.420 4.483 4.518 4.557 4.664 4.780 4.794 4.764 4.761 4.753 4.707 4.649 4.601 4.599 4.638 4.665 4.674 4.632 4.585 4.605 4.640 4.657 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.875 4.956 5.099 4.579 4.579 4.579 4.579 4.807 4.806 4.772 4.701 4.697 4.783 4.633 4.284 4.197 4.351 4.412 4.393 4.392 4.526 4.634 4.690 4.617 4.599 4.564 4.500 4.543 4.574 4.554 4.519 4.519 4.528 4.521 4.516 4.573 4.603 4.574 4.520 4.505 4.543 4.566 4.518 4.547 4.577 4.554 4.529 4.532 4.588 4.620 4.643 4.656 4.593 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.621 4.837 4.907 4.913 4.579 4.579 4.579 4.579 4.767 4.841 4.875 4.783 4.671 4.608 4.662 4.658 4.329 4.132 4.343 4.563 4.547 4.420 4.458 4.674 4.755 4.667 4.749 4.820 4.723 4.617 4.513 4.432 4.398 4.379 4.392 4.432 4.478 4.518 4.533 4.484 4.421 4.389 4.418 4.433 4.414 4.427 4.440 4.420 4.454 4.463 4.489 4.542 4.611 4.670 4.676 4.670 4.628 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.627 4.786 4.820 4.579 4.579 4.579 4.579 4.579 4.896 4.900 4.899 4.854 4.740 4.641 4.579 4.574 4.550 4.379 4.224 4.400 4.713 4.607 4.423 4.300 4.503 4.701 4.762 4.789 4.812 4.734 4.606 4.468 4.385 4.378 4.390 4.446 4.507 4.494 4.462 4.396 4.387 4.451 4.509 4.487 4.486 4.501 4.450 4.399 4.372 4.439 4.462 4.481 4.517 4.528 4.564 4.597 4.614 4.613 4.598 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.600 4.653 4.579 4.579 4.579 4.579 4.579 4.799 4.909 4.925 4.897 4.841 4.793 4.729 4.650 4.570 4.535 4.476 4.356 4.332 4.539 4.993 4.850 4.459 4.273 4.490 4.659 4.727 4.798 4.790 4.692 4.650 4.556 4.480 4.473 4.491 4.543 4.487 4.362 4.321 4.340 4.409 4.494 4.548 4.507 4.484 4.527 4.517 4.403 4.386 4.495 4.514 4.531 4.561 4.523 4.512 4.526 4.538 4.556 4.554 4.568 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.752 4.857 4.868 4.862 4.849 4.828 4.796 4.789 4.741 4.636 4.537 4.502 4.469 4.412 4.463 4.668 4.962 4.832 4.280 4.149 4.346 4.570 4.677 4.813 4.741 4.669 4.765 4.741 4.606 4.555 4.509 4.444 4.306 4.231 4.275 4.353 4.420 4.466 4.474 4.364 4.357 4.460 4.531 4.464 4.473 4.493 4.524 4.604 4.663 4.565 4.503 4.522 4.552 4.586 4.598 4.585 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.618 4.700 4.763 4.771 4.693 4.746 4.809 4.804 4.795 4.807 4.802 4.692 4.600 4.538 4.504 4.479 4.470 4.555 4.718 4.744 4.735 4.200 3.984 4.201 4.573 4.799 4.758 4.627 4.593 4.656 4.692 4.641 4.551 4.456 4.352 4.260 4.257 4.347 4.456 4.514 4.495 4.464 4.344 4.309 4.346 4.368 4.386 4.396 4.407 4.470 4.571 4.601 4.569 4.491 4.497 4.527 4.565 4.586 4.593 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.618 4.645 4.645 4.579 4.579 4.654 4.787 4.800 4.800 4.799 4.791 4.677 4.579 4.590 4.582 4.531 4.533 4.577 4.687 4.857 4.822 4.602 4.137 3.962 4.329 4.870 4.909 4.668 4.452 4.425 4.581 4.605 4.582 4.604 4.575 4.473 4.390 4.362 4.381 4.428 4.477 4.466 4.437 4.354 4.324 4.346 4.372 4.406 4.419 4.445 4.483 4.490 4.476 4.507 4.469 4.480 4.504 4.545 4.570 4.587 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.604 4.630 4.672 4.743 4.796 4.833 4.830 4.812 4.770 4.693 4.685 4.686 4.643 4.579 4.567 4.568 4.630 4.684 4.734 4.714 4.625 4.413 4.221 4.616 4.831 4.696 4.653 4.533 4.414 4.475 4.481 4.486 4.561 4.653 4.674 4.604 4.528 4.485 4.454 4.444 4.472 4.487 4.362 4.355 4.388 4.409 4.497 4.467 4.505 4.535 4.500 4.454 4.470 4.468 4.498 4.500 4.505 4.526 4.555 4.564 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.610 4.641 4.659 4.703 4.741 4.785 4.778 4.734 4.713 4.706 4.691 4.653 4.579 4.579 4.561 4.571 4.602 4.640 4.652 4.584 4.569 4.524 4.519 4.843 4.737 4.615 4.609 4.457 4.360 4.381 4.392 4.413 4.448 4.511 4.609 4.719 4.736 4.664 4.602 4.506 4.499 4.505 4.517 4.468 4.431 4.479 4.488 4.525 4.567 4.579 4.579 4.464 4.483 4.500 4.516 4.520 4.501 4.530 4.557 4.566 4.574 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.620 4.625 4.658 4.674 4.579 4.579 4.719 4.707 4.694 4.682 4.594 4.524 4.509 4.566 4.581 4.604 4.646 4.677 4.686 4.653 4.510 4.690 4.801 4.643 4.605 4.586 4.441 4.364 4.369 4.377 4.390 4.396 4.404 4.457 4.568 4.722 4.847 4.867 4.716 4.579 4.579 4.579 4.555 4.521 4.529 4.508 4.557 4.574 4.579 4.579 4.579 4.579 4.572 4.579 4.579 4.579 4.568 4.587 4.585 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.690 4.688 4.685 4.670 4.593 4.497 4.474 4.579 4.579 4.603 4.623 4.673 4.603 4.560 4.562 4.674 4.664 4.551 4.532 4.566 4.476 4.409 4.370 4.387 4.426 4.421 4.402 4.397 4.430 4.522 4.659 4.846 5.037 5.064 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.600 4.589 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.596 4.648 4.628 4.646 4.614 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.703 4.647 4.569 4.564 4.659 4.625 4.503 4.497 4.571 4.519 4.462 4.408 4.421 4.441 4.423 4.432 4.457 4.510 4.547 4.472 4.601 4.817 5.029 5.158 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.563 4.554 4.574 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.621 4.591 4.587 4.595 4.553 4.519 4.555 4.610 4.540 4.466 4.436 4.574 4.503 4.501 4.453 4.413 4.317 4.347 4.450 4.482 4.536 4.710 4.909 4.880 4.591 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.586 4.583 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.568 4.554 4.535 4.514 4.540 4.594 4.569 4.493 4.446 4.579 4.579 4.500 4.450 4.444 4.447 4.374 4.383 4.354 4.364 4.458 4.566 4.691 4.728 4.632 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.566 4.560 4.540 4.579 4.538 4.581 4.574 4.504 4.448 4.430 4.579 4.541 4.516 4.579 4.579 4.579 4.551 4.470 4.391 4.385 4.405 4.498 4.577 4.616 4.590 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.577 4.588 4.579 4.579 4.562 4.519 4.497 4.520 4.577 4.561 4.566 4.579 4.579 4.579 4.579 4.579 4.579 4.556 4.555 4.476 4.504 4.535 4.547 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.582 4.573 4.541 4.533 4.530 4.583 4.579 4.574 4.578 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.580 4.552 4.522 4.542 4.579 4.604 4.597 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.587 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 4.579 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.636 4.637 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.621 4.596 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.667 4.591 4.399 4.342 4.468 4.581 4.604 4.604 4.604 4.604 4.596 4.583 4.586 4.618 4.637 4.641 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.690 4.675 4.427 4.336 4.293 4.381 4.499 4.520 4.546 4.580 4.559 4.533 4.544 4.586 4.623 4.637 4.640 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.605 4.604 4.604 4.604 4.604 4.676 4.705 4.629 4.401 4.333 4.323 4.362 4.416 4.445 4.493 4.498 4.446 4.472 4.540 4.609 4.625 4.612 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.661 4.671 4.667 4.560 4.428 4.387 4.373 4.406 4.447 4.513 4.542 4.489 4.460 4.519 4.598 4.603 4.593 4.593 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.642 4.661 4.648 4.623 4.511 4.457 4.437 4.436 4.479 4.559 4.604 4.537 4.435 4.493 4.566 4.553 4.557 4.585 4.601 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.625 4.646 4.643 4.630 4.539 4.489 4.466 4.471 4.491 4.586 4.560 4.384 4.300 4.446 4.528 4.493 4.488 4.507 4.550 4.584 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.612 4.604 4.604 4.626 4.543 4.485 4.493 4.478 4.558 4.662 4.593 4.359 4.248 4.347 4.407 4.449 4.420 4.446 4.478 4.517 4.555 4.619 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.623 4.575 4.523 4.476 4.543 4.672 4.780 4.685 4.455 4.262 4.276 4.321 4.368 4.437 4.409 4.414 4.447 4.502 4.567 4.613 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.607 4.558 4.558 4.539 4.621 4.755 4.837 4.711 4.488 4.255 4.237 4.308 4.366 4.387 4.419 4.405 4.404 4.436 4.508 4.587 4.615 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.597 4.600 4.603 4.597 4.654 4.757 4.734 4.588 4.477 4.250 4.209 4.317 4.382 4.425 4.409 4.430 4.449 4.411 4.451 4.543 4.612 4.644 4.654 4.640 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.648 4.660 4.655 4.667 4.711 4.727 4.603 4.457 4.381 4.199 4.186 4.310 4.391 4.451 4.466 4.448 4.436 4.436 4.440 4.478 4.562 4.615 4.623 4.645 4.649 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.617 4.649 4.634 4.698 4.660 4.641 4.649 4.700 4.778 4.740 4.523 4.396 4.361 4.238 4.225 4.322 4.403 4.466 4.499 4.495 4.497 4.494 4.470 4.467 4.498 4.558 4.610 4.626 4.634 4.658 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.634 4.652 4.679 4.685 4.599 4.601 4.621 4.675 4.769 4.684 4.472 4.361 4.360 4.312 4.288 4.338 4.404 4.497 4.543 4.522 4.516 4.541 4.539 4.499 4.485 4.510 4.557 4.602 4.607 4.629 4.664 4.639 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.573 4.610 4.636 4.606 4.607 4.591 4.593 4.615 4.648 4.560 4.440 4.391 4.394 4.422 4.383 4.349 4.382 4.481 4.566 4.557 4.512 4.528 4.555 4.541 4.518 4.542 4.536 4.577 4.606 4.623 4.637 4.634 4.648 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.613 4.575 4.600 4.620 4.601 4.604 4.586 4.587 4.584 4.567 4.496 4.444 4.417 4.383 4.402 4.379 4.354 4.374 4.425 4.502 4.553 4.530 4.514 4.515 4.530 4.541 4.541 4.575 4.570 4.599 4.617 4.621 4.659 4.634 4.658 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.614 4.624 4.631 4.604 4.604 4.604 4.619 4.586 4.558 4.536 4.485 4.467 4.426 4.358 4.330 4.291 4.303 4.384 4.397 4.450 4.505 4.515 4.516 4.508 4.495 4.498 4.605 4.522 4.549 4.580 4.609 4.636 4.657 4.684 4.659 4.667 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.599 4.542 4.518 4.496 4.457 4.456 4.387 4.316 4.296 4.265 4.264 4.310 4.355 4.408 4.485 4.520 4.499 4.490 4.474 4.469 4.506 4.596 4.533 4.551 4.589 4.639 4.664 4.706 4.710 4.682 4.681 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.570 4.513 4.481 4.441 4.380 4.352 4.317 4.301 4.316 4.302 4.291 4.341 4.354 4.381 4.448 4.530 4.555 4.504 4.457 4.450 4.479 4.557 4.556 4.608 4.559 4.610 4.665 4.698 4.705 4.703 4.709 4.686 4.661 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.609 4.544 4.492 4.452 4.429 4.366 4.304 4.248 4.245 4.291 4.338 4.360 4.413 4.412 4.403 4.431 4.494 4.560 4.553 4.504 4.460 4.443 4.510 4.510 4.537 4.622 4.662 4.634 4.724 4.706 4.700 4.703 4.699 4.670 4.651 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.585 4.603 4.604 4.506 4.445 4.412 4.435 4.433 4.350 4.262 4.223 4.245 4.307 4.342 4.416 4.440 4.439 4.457 4.477 4.533 4.558 4.540 4.501 4.471 4.446 4.476 4.504 4.525 4.600 4.652 4.690 4.682 4.714 4.714 4.693 4.663 4.659 4.659 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.541 4.531 4.557 4.571 4.532 4.450 4.392 4.402 4.421 4.412 4.324 4.229 4.226 4.313 4.344 4.400 4.445 4.476 4.506 4.499 4.495 4.537 4.552 4.531 4.496 4.471 4.481 4.507 4.568 4.592 4.610 4.636 4.697 4.725 4.714 4.707 4.674 4.672 4.678 4.675 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.606 4.555 4.563 4.569 4.576 4.538 4.465 4.448 4.423 4.391 4.313 4.258 4.257 4.348 4.452 4.481 4.449 4.470 4.527 4.543 4.532 4.544 4.573 4.564 4.550 4.520 4.505 4.532 4.570 4.613 4.625 4.623 4.651 4.685 4.687 4.708 4.724 4.699 4.689 4.688 4.666 4.662 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.526 4.604 4.604 4.610 4.624 4.638 4.635 4.618 4.584 4.576 4.601 4.560 4.495 4.446 4.363 4.279 4.236 4.247 4.373 4.535 4.557 4.486 4.481 4.517 4.543 4.542 4.521 4.547 4.580 4.582 4.564 4.524 4.522 4.572 4.609 4.635 4.657 4.652 4.673 4.676 4.716 4.744 4.743 4.717 4.662 4.642 4.650 4.656 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.512 4.589 4.589 4.519 4.560 4.628 4.674 4.672 4.630 4.603 4.609 4.583 4.480 4.374 4.336 4.240 4.218 4.241 4.358 4.537 4.546 4.471 4.497 4.578 4.586 4.574 4.545 4.542 4.578 4.573 4.568 4.548 4.525 4.576 4.641 4.680 4.711 4.717 4.717 4.709 4.723 4.737 4.750 4.746 4.721 4.671 4.641 4.630 4.659 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.521 4.554 4.613 4.677 4.717 4.726 4.720 4.671 4.583 4.516 4.406 4.345 4.293 4.227 4.220 4.318 4.456 4.497 4.440 4.455 4.578 4.715 4.677 4.630 4.618 4.644 4.643 4.604 4.566 4.527 4.551 4.640 4.725 4.795 4.831 4.846 4.850 4.806 4.748 4.719 4.730 4.752 4.733 4.675 4.636 4.628 4.600 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.620 4.614 4.690 4.748 4.800 4.773 4.675 4.607 4.590 4.566 4.511 4.503 4.381 4.236 4.317 4.388 4.422 4.415 4.429 4.518 4.654 4.692 4.640 4.584 4.574 4.609 4.617 4.595 4.557 4.541 4.600 4.676 4.757 4.816 4.865 4.902 4.871 4.803 4.746 4.699 4.690 4.713 4.710 4.699 4.653 4.648 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.775 4.796 4.790 4.769 4.727 4.675 4.656 4.659 4.634 4.658 4.563 4.345 4.323 4.382 4.415 4.477 4.577 4.700 4.715 4.703 4.606 4.574 4.544 4.518 4.566 4.619 4.620 4.600 4.603 4.616 4.668 4.731 4.780 4.823 4.796 4.754 4.763 4.772 4.746 4.715 4.693 4.694 4.684 4.675 4.627 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.751 4.859 4.680 4.612 4.706 4.717 4.716 4.695 4.672 4.702 4.748 4.612 4.375 4.223 4.291 4.374 4.388 4.498 4.798 4.818 4.814 4.695 4.564 4.511 4.459 4.473 4.549 4.610 4.615 4.620 4.640 4.651 4.655 4.654 4.655 4.631 4.608 4.633 4.679 4.707 4.719 4.723 4.699 4.674 4.673 4.682 4.656 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.673 4.643 4.604 4.604 4.604 4.604 4.716 4.712 4.690 4.657 4.660 4.765 4.694 4.412 4.207 4.305 4.410 4.372 4.422 4.690 4.771 4.722 4.626 4.563 4.561 4.620 4.664 4.641 4.613 4.585 4.584 4.552 4.506 4.506 4.568 4.580 4.554 4.532 4.531 4.585 4.580 4.542 4.581 4.604 4.595 4.598 4.615 4.662 4.703 4.671 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.729 4.780 4.667 4.707 4.637 4.596 4.638 4.646 4.436 4.221 4.319 4.543 4.557 4.519 4.690 4.769 4.755 4.714 4.686 4.760 4.882 4.838 4.638 4.497 4.454 4.460 4.463 4.438 4.416 4.467 4.512 4.504 4.479 4.470 4.483 4.503 4.479 4.507 4.482 4.456 4.481 4.499 4.526 4.590 4.647 4.680 4.670 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.784 4.817 4.802 4.697 4.595 4.527 4.493 4.450 4.401 4.367 4.502 4.691 4.652 4.515 4.549 4.635 4.772 4.768 4.699 4.768 4.871 4.801 4.650 4.522 4.446 4.450 4.520 4.528 4.459 4.454 4.440 4.443 4.487 4.500 4.478 4.491 4.480 4.464 4.429 4.388 4.439 4.475 4.502 4.560 4.590 4.626 4.641 4.629 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.721 4.776 4.807 4.789 4.655 4.612 4.584 4.527 4.488 4.447 4.404 4.439 4.632 4.929 4.786 4.497 4.434 4.598 4.770 4.839 4.828 4.823 4.723 4.632 4.611 4.573 4.488 4.480 4.519 4.472 4.373 4.354 4.364 4.389 4.473 4.491 4.446 4.459 4.519 4.535 4.420 4.396 4.511 4.556 4.558 4.602 4.622 4.621 4.643 4.646 4.667 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.644 4.654 4.713 4.720 4.729 4.604 4.604 4.604 4.608 4.600 4.538 4.508 4.513 4.492 4.546 4.699 4.963 4.780 4.380 4.229 4.433 4.742 4.832 4.864 4.795 4.616 4.571 4.644 4.650 4.500 4.410 4.341 4.269 4.231 4.279 4.327 4.348 4.414 4.434 4.338 4.358 4.526 4.586 4.481 4.462 4.547 4.590 4.605 4.653 4.618 4.571 4.608 4.672 4.683 4.698 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.649 4.644 4.640 4.604 4.604 4.604 4.604 4.604 4.604 4.642 4.626 4.593 4.562 4.543 4.522 4.563 4.730 4.783 4.655 4.228 4.032 4.248 4.652 4.770 4.695 4.577 4.519 4.507 4.545 4.543 4.490 4.429 4.331 4.258 4.270 4.369 4.447 4.477 4.455 4.444 4.363 4.331 4.415 4.448 4.404 4.391 4.414 4.492 4.570 4.633 4.606 4.513 4.540 4.597 4.628 4.630 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.659 4.693 4.752 4.784 4.799 4.793 4.776 4.735 4.688 4.624 4.585 4.582 4.613 4.763 4.800 4.570 4.160 3.953 4.275 4.710 4.735 4.610 4.498 4.422 4.464 4.512 4.486 4.471 4.452 4.391 4.336 4.332 4.386 4.440 4.482 4.471 4.469 4.408 4.368 4.389 4.415 4.425 4.400 4.408 4.480 4.541 4.555 4.542 4.508 4.506 4.565 4.597 4.611 4.614 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.647 4.688 4.703 4.737 4.765 4.771 4.770 4.758 4.749 4.732 4.706 4.650 4.613 4.645 4.685 4.734 4.688 4.541 4.314 4.131 4.435 4.742 4.593 4.560 4.563 4.446 4.408 4.428 4.428 4.458 4.491 4.489 4.452 4.432 4.436 4.465 4.468 4.468 4.475 4.441 4.412 4.425 4.441 4.464 4.459 4.494 4.557 4.566 4.498 4.471 4.479 4.488 4.546 4.564 4.585 4.594 4.595 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.647 4.644 4.673 4.692 4.705 4.708 4.623 4.701 4.711 4.700 4.671 4.625 4.617 4.635 4.684 4.713 4.654 4.537 4.356 4.339 4.698 4.726 4.567 4.554 4.526 4.401 4.362 4.357 4.377 4.414 4.434 4.462 4.508 4.548 4.550 4.537 4.542 4.604 4.604 4.604 4.536 4.450 4.470 4.487 4.526 4.545 4.604 4.596 4.475 4.470 4.500 4.525 4.566 4.551 4.568 4.586 4.592 4.603 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.615 4.619 4.610 4.605 4.644 4.604 4.604 4.667 4.705 4.692 4.655 4.602 4.580 4.601 4.624 4.669 4.717 4.728 4.709 4.473 4.541 4.775 4.653 4.595 4.585 4.513 4.405 4.366 4.359 4.386 4.416 4.427 4.448 4.514 4.606 4.661 4.675 4.616 4.607 4.598 4.604 4.604 4.535 4.510 4.506 4.516 4.554 4.579 4.604 4.577 4.502 4.526 4.548 4.582 4.578 4.594 4.606 4.607 4.603 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.684 4.678 4.665 4.628 4.533 4.521 4.604 4.620 4.638 4.692 4.644 4.557 4.516 4.585 4.713 4.623 4.581 4.578 4.516 4.441 4.369 4.386 4.438 4.472 4.472 4.486 4.547 4.608 4.659 4.714 4.691 4.662 4.605 4.604 4.604 4.593 4.568 4.604 4.538 4.581 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.603 4.625 4.617 4.601 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.594 4.599 4.607 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.723 4.686 4.607 4.563 4.613 4.628 4.538 4.510 4.560 4.530 4.478 4.451 4.484 4.509 4.538 4.547 4.604 4.604 4.604 4.604 4.617 4.647 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.613 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.601 4.568 4.561 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.656 4.624 4.604 4.592 4.549 4.513 4.545 4.601 4.581 4.520 4.497 4.604 4.555 4.549 4.571 4.472 4.521 4.574 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.594 4.565 4.549 4.538 4.552 4.594 4.612 4.552 4.497 4.446 4.604 4.604 4.509 4.502 4.604 4.575 4.543 4.546 4.570 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.593 4.581 4.596 4.591 4.574 4.596 4.602 4.556 4.503 4.480 4.564 4.604 4.549 4.555 4.604 4.604 4.604 4.604 4.576 4.575 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.620 4.624 4.604 4.599 4.604 4.562 4.546 4.558 4.610 4.624 4.582 4.603 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.603 4.593 4.560 4.547 4.569 4.578 4.604 4.604 4.589 4.610 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.603 4.604 4.559 4.567 4.597 4.625 4.627 4.613 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.599 4.610 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 4.604 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.637 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.558 4.547 4.628 4.628 4.628 4.628 4.628 4.628 4.639 4.623 4.617 4.637 4.654 4.661 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.554 4.431 4.336 4.452 4.516 4.589 4.628 4.612 4.604 4.590 4.587 4.597 4.634 4.656 4.646 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.472 4.410 4.355 4.360 4.433 4.516 4.515 4.541 4.526 4.528 4.555 4.613 4.633 4.647 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.528 4.443 4.412 4.394 4.415 4.477 4.557 4.563 4.521 4.550 4.622 4.625 4.622 4.612 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.536 4.437 4.434 4.451 4.488 4.574 4.559 4.466 4.532 4.603 4.603 4.608 4.610 4.614 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.593 4.557 4.483 4.437 4.490 4.541 4.429 4.334 4.491 4.561 4.548 4.552 4.564 4.604 4.610 4.623 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.592 4.543 4.497 4.504 4.593 4.652 4.463 4.310 4.468 4.502 4.475 4.478 4.505 4.530 4.587 4.593 4.616 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.540 4.560 4.545 4.614 4.735 4.769 4.575 4.375 4.405 4.429 4.442 4.432 4.427 4.457 4.500 4.536 4.576 4.623 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.609 4.624 4.637 4.711 4.811 4.784 4.592 4.347 4.317 4.400 4.432 4.428 4.434 4.400 4.424 4.480 4.528 4.600 4.623 4.617 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.691 4.681 4.689 4.727 4.725 4.640 4.539 4.323 4.269 4.374 4.452 4.476 4.459 4.433 4.410 4.433 4.481 4.549 4.604 4.606 4.617 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.649 4.639 4.685 4.714 4.697 4.700 4.748 4.794 4.719 4.568 4.453 4.293 4.272 4.385 4.457 4.505 4.514 4.487 4.450 4.445 4.459 4.511 4.575 4.605 4.625 4.610 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.647 4.662 4.681 4.682 4.667 4.657 4.697 4.791 4.848 4.689 4.514 4.427 4.339 4.332 4.411 4.463 4.512 4.582 4.543 4.513 4.490 4.496 4.487 4.537 4.580 4.608 4.605 4.642 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.641 4.653 4.651 4.606 4.642 4.677 4.762 4.778 4.634 4.490 4.430 4.404 4.414 4.430 4.499 4.515 4.572 4.576 4.558 4.554 4.534 4.512 4.515 4.552 4.572 4.584 4.602 4.657 4.666 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.631 4.582 4.621 4.635 4.645 4.615 4.610 4.626 4.659 4.633 4.579 4.547 4.460 4.444 4.448 4.411 4.419 4.490 4.561 4.585 4.570 4.577 4.575 4.549 4.518 4.528 4.564 4.590 4.596 4.619 4.657 4.672 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.631 4.638 4.654 4.643 4.628 4.628 4.618 4.604 4.596 4.598 4.602 4.611 4.485 4.429 4.398 4.368 4.378 4.437 4.517 4.579 4.578 4.575 4.575 4.576 4.547 4.532 4.550 4.591 4.613 4.620 4.646 4.681 4.687 4.676 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.632 4.606 4.569 4.560 4.573 4.598 4.587 4.471 4.386 4.344 4.333 4.353 4.408 4.468 4.518 4.527 4.562 4.565 4.555 4.561 4.559 4.544 4.578 4.622 4.652 4.668 4.671 4.691 4.693 4.677 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.565 4.549 4.530 4.520 4.521 4.487 4.396 4.335 4.313 4.298 4.341 4.389 4.437 4.465 4.470 4.496 4.531 4.535 4.537 4.548 4.576 4.573 4.595 4.673 4.687 4.686 4.688 4.692 4.683 4.691 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.621 4.549 4.537 4.501 4.460 4.434 4.419 4.360 4.306 4.321 4.340 4.389 4.413 4.415 4.427 4.450 4.485 4.498 4.490 4.494 4.512 4.552 4.581 4.622 4.637 4.671 4.684 4.697 4.692 4.697 4.695 4.698 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.597 4.569 4.530 4.515 4.472 4.410 4.382 4.338 4.296 4.309 4.376 4.454 4.477 4.451 4.435 4.456 4.495 4.523 4.504 4.475 4.477 4.509 4.540 4.580 4.609 4.650 4.681 4.683 4.693 4.691 4.691 4.688 4.689 4.677 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.597 4.526 4.521 4.544 4.534 4.456 4.403 4.351 4.300 4.288 4.314 4.420 4.498 4.491 4.466 4.468 4.484 4.533 4.545 4.518 4.496 4.485 4.505 4.531 4.562 4.609 4.649 4.674 4.679 4.693 4.668 4.675 4.676 4.673 4.673 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.605 4.610 4.613 4.580 4.525 4.513 4.548 4.569 4.529 4.440 4.371 4.321 4.330 4.332 4.376 4.452 4.489 4.494 4.504 4.493 4.541 4.576 4.572 4.551 4.515 4.496 4.510 4.537 4.577 4.616 4.647 4.685 4.704 4.712 4.657 4.670 4.646 4.643 4.688 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.614 4.557 4.563 4.584 4.574 4.559 4.574 4.574 4.520 4.437 4.397 4.362 4.380 4.420 4.447 4.450 4.462 4.512 4.542 4.551 4.576 4.616 4.621 4.611 4.576 4.525 4.529 4.543 4.567 4.593 4.613 4.638 4.663 4.686 4.710 4.688 4.662 4.627 4.616 4.649 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.620 4.574 4.592 4.591 4.604 4.617 4.643 4.552 4.439 4.353 4.341 4.415 4.504 4.509 4.499 4.504 4.537 4.561 4.580 4.584 4.606 4.644 4.662 4.638 4.582 4.558 4.566 4.577 4.599 4.610 4.611 4.631 4.668 4.704 4.706 4.673 4.666 4.619 4.592 4.618 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.537 4.534 4.628 4.604 4.592 4.585 4.627 4.648 4.634 4.600 4.570 4.554 4.561 4.603 4.600 4.449 4.340 4.304 4.352 4.501 4.548 4.499 4.502 4.573 4.612 4.616 4.580 4.549 4.603 4.663 4.694 4.675 4.641 4.627 4.621 4.623 4.638 4.637 4.639 4.654 4.685 4.701 4.695 4.697 4.674 4.619 4.589 4.606 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.597 4.628 4.608 4.512 4.554 4.602 4.652 4.663 4.661 4.608 4.532 4.500 4.518 4.535 4.473 4.343 4.303 4.345 4.429 4.489 4.470 4.435 4.516 4.664 4.671 4.633 4.596 4.639 4.714 4.728 4.711 4.691 4.709 4.727 4.719 4.703 4.698 4.686 4.683 4.704 4.698 4.692 4.694 4.688 4.686 4.621 4.614 4.609 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.573 4.567 4.616 4.643 4.651 4.639 4.607 4.564 4.550 4.560 4.558 4.580 4.526 4.401 4.382 4.400 4.439 4.447 4.384 4.463 4.601 4.670 4.654 4.598 4.604 4.695 4.762 4.756 4.733 4.734 4.768 4.773 4.767 4.762 4.757 4.748 4.738 4.730 4.704 4.687 4.677 4.679 4.672 4.622 4.626 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.642 4.650 4.622 4.613 4.604 4.582 4.587 4.627 4.654 4.681 4.705 4.620 4.476 4.468 4.502 4.532 4.491 4.539 4.594 4.594 4.558 4.571 4.588 4.634 4.705 4.745 4.718 4.701 4.718 4.726 4.730 4.737 4.736 4.743 4.731 4.723 4.728 4.724 4.714 4.706 4.688 4.686 4.676 4.632 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.630 4.578 4.598 4.611 4.617 4.613 4.634 4.679 4.735 4.677 4.573 4.414 4.419 4.487 4.543 4.629 4.752 4.799 4.714 4.650 4.571 4.592 4.630 4.670 4.713 4.719 4.705 4.720 4.732 4.729 4.731 4.718 4.696 4.662 4.639 4.652 4.672 4.683 4.687 4.703 4.701 4.695 4.678 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.619 4.572 4.595 4.613 4.611 4.616 4.640 4.740 4.691 4.497 4.353 4.384 4.478 4.533 4.580 4.678 4.772 4.650 4.613 4.601 4.593 4.702 4.809 4.824 4.758 4.715 4.731 4.711 4.693 4.693 4.718 4.713 4.696 4.674 4.686 4.680 4.630 4.587 4.605 4.619 4.622 4.634 4.629 4.662 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.655 4.596 4.580 4.652 4.646 4.467 4.312 4.370 4.517 4.601 4.690 4.806 4.824 4.670 4.584 4.556 4.567 4.723 4.886 4.865 4.724 4.648 4.639 4.616 4.566 4.504 4.508 4.549 4.577 4.551 4.606 4.611 4.585 4.571 4.603 4.571 4.527 4.533 4.539 4.550 4.598 4.644 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.687 4.726 4.657 4.577 4.516 4.494 4.465 4.426 4.412 4.530 4.686 4.643 4.597 4.766 4.887 4.775 4.677 4.609 4.623 4.761 4.887 4.916 4.796 4.692 4.632 4.586 4.570 4.480 4.454 4.449 4.449 4.477 4.512 4.529 4.525 4.523 4.534 4.530 4.478 4.488 4.488 4.490 4.536 4.589 4.609 4.620 4.612 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.680 4.684 4.679 4.628 4.628 4.561 4.512 4.459 4.412 4.370 4.439 4.637 4.848 4.701 4.517 4.658 4.834 4.758 4.775 4.752 4.710 4.725 4.672 4.705 4.715 4.631 4.575 4.551 4.502 4.392 4.398 4.430 4.436 4.465 4.485 4.480 4.487 4.498 4.505 4.508 4.488 4.522 4.524 4.501 4.536 4.577 4.587 4.621 4.634 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.601 4.559 4.511 4.504 4.496 4.536 4.657 4.797 4.603 4.409 4.469 4.737 4.797 4.866 4.851 4.809 4.748 4.645 4.654 4.617 4.475 4.372 4.308 4.320 4.304 4.340 4.377 4.390 4.418 4.428 4.394 4.435 4.527 4.539 4.575 4.548 4.568 4.583 4.567 4.573 4.566 4.553 4.565 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.702 4.697 4.645 4.598 4.591 4.577 4.584 4.735 4.819 4.614 4.336 4.190 4.450 4.726 4.853 4.743 4.621 4.539 4.487 4.505 4.496 4.437 4.395 4.311 4.319 4.342 4.416 4.458 4.480 4.448 4.425 4.434 4.408 4.478 4.520 4.527 4.453 4.448 4.517 4.565 4.599 4.589 4.547 4.542 4.588 4.616 4.637 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.665 4.667 4.704 4.730 4.795 4.804 4.773 4.723 4.676 4.644 4.614 4.596 4.713 4.800 4.604 4.289 4.075 4.280 4.573 4.723 4.580 4.570 4.501 4.454 4.467 4.426 4.389 4.363 4.328 4.334 4.348 4.399 4.464 4.517 4.501 4.507 4.492 4.443 4.445 4.478 4.489 4.404 4.394 4.487 4.551 4.562 4.587 4.583 4.544 4.584 4.600 4.618 4.621 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.661 4.670 4.679 4.739 4.775 4.785 4.761 4.738 4.702 4.670 4.668 4.682 4.735 4.735 4.552 4.271 4.077 4.291 4.611 4.644 4.515 4.553 4.474 4.411 4.398 4.385 4.387 4.395 4.387 4.379 4.377 4.407 4.441 4.483 4.496 4.514 4.517 4.474 4.467 4.482 4.484 4.452 4.479 4.563 4.583 4.532 4.510 4.540 4.527 4.582 4.593 4.620 4.615 4.621 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.645 4.606 4.628 4.660 4.670 4.683 4.656 4.637 4.716 4.715 4.688 4.667 4.667 4.706 4.770 4.769 4.571 4.247 4.129 4.495 4.669 4.571 4.483 4.506 4.426 4.381 4.358 4.368 4.401 4.418 4.408 4.401 4.412 4.434 4.438 4.448 4.505 4.563 4.628 4.567 4.480 4.485 4.496 4.500 4.527 4.583 4.583 4.504 4.469 4.515 4.547 4.575 4.577 4.597 4.606 4.614 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.638 4.631 4.607 4.614 4.639 4.644 4.628 4.628 4.698 4.697 4.678 4.620 4.611 4.635 4.671 4.746 4.773 4.737 4.487 4.412 4.681 4.675 4.588 4.558 4.508 4.437 4.396 4.387 4.405 4.424 4.438 4.438 4.440 4.466 4.516 4.522 4.513 4.531 4.544 4.591 4.613 4.628 4.475 4.501 4.508 4.548 4.577 4.606 4.577 4.479 4.511 4.556 4.590 4.598 4.619 4.621 4.624 4.619 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.646 4.641 4.649 4.628 4.540 4.572 4.601 4.641 4.708 4.696 4.590 4.512 4.467 4.681 4.640 4.601 4.591 4.523 4.462 4.413 4.413 4.452 4.473 4.488 4.479 4.496 4.507 4.585 4.572 4.554 4.548 4.582 4.605 4.628 4.621 4.559 4.554 4.534 4.556 4.575 4.601 4.628 4.628 4.573 4.585 4.625 4.628 4.635 4.645 4.639 4.622 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.579 4.568 4.572 4.607 4.628 4.628 4.628 4.628 4.628 4.739 4.724 4.648 4.576 4.550 4.600 4.535 4.512 4.553 4.560 4.495 4.487 4.509 4.525 4.528 4.555 4.547 4.607 4.628 4.628 4.628 4.625 4.590 4.599 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.609 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.651 4.639 4.623 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.621 4.619 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.686 4.656 4.624 4.594 4.560 4.512 4.532 4.591 4.614 4.565 4.532 4.530 4.597 4.555 4.563 4.544 4.534 4.586 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.622 4.592 4.586 4.593 4.569 4.588 4.613 4.590 4.540 4.496 4.477 4.628 4.621 4.610 4.601 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.622 4.614 4.622 4.625 4.628 4.590 4.605 4.585 4.550 4.535 4.564 4.645 4.624 4.601 4.616 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.656 4.631 4.628 4.616 4.628 4.607 4.606 4.592 4.625 4.666 4.610 4.609 4.631 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.617 4.586 4.556 4.595 4.595 4.628 4.628 4.628 4.620 4.630 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.578 4.593 4.597 4.628 4.671 4.662 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.629 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 4.628 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.654 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.659 4.647 4.653 4.673 4.689 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.653 4.652 4.652 4.652 4.652 4.643 4.640 4.621 4.613 4.603 4.642 4.665 4.680 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.615 4.524 4.553 4.626 4.622 4.575 4.564 4.589 4.591 4.576 4.615 4.649 4.676 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.522 4.515 4.461 4.450 4.485 4.563 4.669 4.669 4.604 4.616 4.627 4.655 4.650 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.619 4.526 4.471 4.441 4.484 4.605 4.735 4.667 4.598 4.622 4.614 4.625 4.637 4.650 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.646 4.542 4.446 4.462 4.586 4.649 4.544 4.571 4.594 4.586 4.584 4.633 4.632 4.638 4.650 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.589 4.542 4.504 4.559 4.693 4.653 4.509 4.626 4.577 4.557 4.542 4.583 4.614 4.624 4.631 4.648 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.629 4.615 4.609 4.659 4.714 4.666 4.554 4.589 4.527 4.478 4.473 4.540 4.563 4.596 4.626 4.625 4.642 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.709 4.704 4.692 4.704 4.714 4.617 4.465 4.456 4.488 4.477 4.448 4.456 4.481 4.574 4.559 4.573 4.612 4.639 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.680 4.668 4.732 4.749 4.731 4.703 4.672 4.666 4.605 4.456 4.381 4.450 4.495 4.484 4.460 4.453 4.475 4.496 4.536 4.532 4.578 4.625 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.659 4.671 4.683 4.696 4.704 4.699 4.733 4.790 4.803 4.712 4.593 4.472 4.410 4.463 4.488 4.506 4.490 4.454 4.445 4.465 4.489 4.515 4.545 4.572 4.606 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.666 4.650 4.654 4.654 4.649 4.675 4.746 4.854 4.848 4.682 4.561 4.490 4.478 4.489 4.492 4.511 4.521 4.490 4.452 4.444 4.468 4.503 4.543 4.573 4.580 4.604 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.611 4.620 4.639 4.652 4.645 4.661 4.723 4.789 4.747 4.644 4.554 4.513 4.537 4.502 4.488 4.502 4.536 4.535 4.498 4.464 4.462 4.481 4.525 4.579 4.601 4.596 4.625 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.651 4.634 4.665 4.654 4.654 4.646 4.640 4.668 4.697 4.686 4.694 4.568 4.496 4.486 4.448 4.459 4.499 4.551 4.570 4.544 4.515 4.500 4.488 4.502 4.555 4.607 4.627 4.627 4.639 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.671 4.670 4.652 4.648 4.590 4.580 4.631 4.665 4.707 4.596 4.479 4.427 4.395 4.419 4.477 4.548 4.597 4.581 4.561 4.542 4.542 4.525 4.528 4.582 4.634 4.642 4.635 4.653 4.651 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.626 4.544 4.522 4.569 4.636 4.672 4.631 4.477 4.412 4.372 4.404 4.471 4.545 4.598 4.581 4.589 4.582 4.574 4.578 4.575 4.573 4.592 4.642 4.644 4.638 4.645 4.644 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.635 4.548 4.513 4.520 4.574 4.595 4.516 4.443 4.392 4.376 4.428 4.490 4.543 4.584 4.553 4.565 4.601 4.604 4.607 4.601 4.587 4.585 4.609 4.637 4.634 4.627 4.644 4.639 4.649 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.613 4.530 4.508 4.530 4.520 4.464 4.370 4.346 4.383 4.458 4.506 4.538 4.552 4.523 4.522 4.568 4.589 4.596 4.588 4.593 4.601 4.607 4.620 4.629 4.628 4.620 4.616 4.624 4.617 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.642 4.590 4.566 4.573 4.549 4.524 4.492 4.440 4.344 4.310 4.364 4.472 4.541 4.547 4.521 4.503 4.511 4.553 4.573 4.567 4.563 4.565 4.589 4.612 4.626 4.640 4.646 4.623 4.605 4.626 4.599 4.590 4.630 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.588 4.559 4.590 4.607 4.572 4.517 4.446 4.389 4.323 4.322 4.440 4.559 4.590 4.538 4.509 4.501 4.559 4.599 4.581 4.561 4.542 4.566 4.592 4.614 4.633 4.638 4.629 4.638 4.615 4.605 4.599 4.575 4.603 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.626 4.571 4.555 4.593 4.643 4.629 4.557 4.465 4.391 4.363 4.338 4.383 4.507 4.582 4.563 4.547 4.514 4.556 4.623 4.622 4.595 4.560 4.567 4.586 4.600 4.620 4.635 4.640 4.643 4.633 4.612 4.590 4.599 4.575 4.585 4.637 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.602 4.606 4.579 4.565 4.588 4.644 4.637 4.557 4.470 4.407 4.394 4.382 4.403 4.477 4.557 4.579 4.572 4.544 4.562 4.621 4.667 4.641 4.617 4.602 4.611 4.608 4.614 4.619 4.630 4.639 4.637 4.625 4.612 4.600 4.604 4.579 4.593 4.640 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.597 4.555 4.576 4.590 4.602 4.653 4.615 4.528 4.432 4.400 4.431 4.454 4.436 4.494 4.571 4.613 4.600 4.569 4.584 4.611 4.658 4.678 4.666 4.670 4.682 4.658 4.634 4.619 4.619 4.628 4.630 4.641 4.648 4.628 4.621 4.613 4.614 4.602 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.552 4.634 4.652 4.652 4.638 4.649 4.652 4.662 4.576 4.552 4.563 4.582 4.639 4.664 4.550 4.453 4.380 4.390 4.482 4.513 4.518 4.540 4.598 4.636 4.627 4.605 4.590 4.621 4.650 4.678 4.694 4.724 4.731 4.698 4.649 4.630 4.629 4.642 4.653 4.662 4.659 4.644 4.634 4.620 4.616 4.609 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.554 4.542 4.652 4.622 4.537 4.555 4.593 4.618 4.607 4.576 4.537 4.518 4.574 4.659 4.631 4.461 4.400 4.393 4.455 4.519 4.549 4.531 4.558 4.648 4.686 4.691 4.637 4.603 4.623 4.658 4.701 4.711 4.739 4.773 4.756 4.709 4.663 4.637 4.632 4.664 4.651 4.659 4.658 4.656 4.632 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.529 4.547 4.576 4.582 4.565 4.557 4.550 4.530 4.555 4.631 4.690 4.568 4.419 4.359 4.408 4.495 4.522 4.488 4.554 4.664 4.727 4.719 4.668 4.599 4.631 4.688 4.735 4.751 4.751 4.773 4.787 4.780 4.752 4.718 4.683 4.664 4.661 4.683 4.674 4.665 4.659 4.657 4.659 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.581 4.597 4.570 4.547 4.544 4.526 4.526 4.574 4.630 4.696 4.701 4.585 4.413 4.400 4.499 4.577 4.484 4.480 4.617 4.722 4.715 4.703 4.648 4.622 4.662 4.780 4.833 4.808 4.795 4.795 4.801 4.792 4.770 4.735 4.693 4.677 4.683 4.678 4.680 4.655 4.683 4.686 4.672 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.565 4.553 4.550 4.547 4.535 4.554 4.615 4.694 4.690 4.579 4.437 4.378 4.463 4.597 4.605 4.574 4.674 4.779 4.759 4.633 4.617 4.650 4.720 4.758 4.817 4.823 4.829 4.842 4.841 4.844 4.836 4.794 4.730 4.677 4.658 4.660 4.657 4.669 4.684 4.687 4.677 4.659 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.569 4.562 4.563 4.553 4.556 4.568 4.626 4.654 4.503 4.410 4.377 4.423 4.561 4.605 4.587 4.675 4.748 4.718 4.692 4.622 4.647 4.805 4.890 4.875 4.840 4.804 4.771 4.778 4.810 4.855 4.859 4.815 4.773 4.744 4.688 4.620 4.597 4.606 4.613 4.622 4.633 4.641 4.669 4.662 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.583 4.581 4.576 4.552 4.521 4.536 4.575 4.448 4.340 4.360 4.439 4.545 4.655 4.681 4.681 4.678 4.599 4.520 4.534 4.611 4.767 4.886 4.898 4.792 4.728 4.703 4.645 4.596 4.653 4.719 4.706 4.724 4.763 4.721 4.635 4.628 4.599 4.541 4.502 4.511 4.527 4.545 4.612 4.639 4.660 4.661 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.636 4.588 4.550 4.503 4.464 4.486 4.449 4.376 4.390 4.511 4.550 4.602 4.674 4.812 4.756 4.632 4.573 4.578 4.674 4.836 4.978 4.940 4.780 4.656 4.608 4.588 4.487 4.494 4.517 4.574 4.626 4.636 4.628 4.583 4.634 4.591 4.545 4.452 4.429 4.424 4.444 4.464 4.533 4.615 4.637 4.643 4.654 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.545 4.513 4.460 4.424 4.390 4.426 4.575 4.729 4.662 4.552 4.578 4.843 4.737 4.614 4.627 4.677 4.779 4.835 4.835 4.756 4.676 4.634 4.562 4.519 4.418 4.466 4.511 4.522 4.548 4.606 4.546 4.498 4.504 4.508 4.544 4.494 4.473 4.431 4.378 4.380 4.469 4.543 4.593 4.624 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.586 4.554 4.509 4.474 4.451 4.487 4.654 4.824 4.590 4.475 4.581 4.827 4.671 4.619 4.707 4.827 4.861 4.806 4.773 4.689 4.550 4.453 4.387 4.394 4.381 4.440 4.441 4.420 4.461 4.522 4.514 4.503 4.522 4.548 4.616 4.529 4.501 4.511 4.466 4.432 4.453 4.508 4.532 4.602 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.674 4.626 4.570 4.558 4.564 4.591 4.730 4.861 4.681 4.491 4.567 4.717 4.843 4.830 4.850 4.766 4.637 4.575 4.585 4.512 4.445 4.419 4.371 4.390 4.389 4.443 4.484 4.450 4.428 4.463 4.542 4.554 4.594 4.609 4.652 4.523 4.507 4.556 4.536 4.539 4.522 4.537 4.521 4.544 4.627 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.698 4.697 4.693 4.692 4.642 4.625 4.614 4.583 4.653 4.835 4.772 4.491 4.400 4.478 4.677 4.806 4.639 4.585 4.505 4.492 4.516 4.460 4.393 4.349 4.337 4.362 4.372 4.422 4.464 4.499 4.509 4.545 4.594 4.588 4.566 4.546 4.550 4.473 4.483 4.557 4.558 4.569 4.602 4.608 4.550 4.551 4.570 4.612 4.634 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.648 4.720 4.721 4.682 4.670 4.670 4.663 4.666 4.806 4.700 4.325 4.138 4.382 4.616 4.681 4.552 4.503 4.405 4.400 4.391 4.383 4.369 4.362 4.358 4.360 4.352 4.362 4.383 4.417 4.455 4.495 4.535 4.532 4.514 4.509 4.512 4.478 4.499 4.564 4.552 4.561 4.598 4.643 4.614 4.593 4.604 4.640 4.642 4.650 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.640 4.642 4.649 4.666 4.688 4.692 4.705 4.707 4.686 4.672 4.672 4.704 4.771 4.881 4.739 4.312 4.083 4.555 4.735 4.677 4.527 4.476 4.404 4.367 4.336 4.372 4.408 4.429 4.419 4.385 4.354 4.341 4.352 4.377 4.406 4.444 4.475 4.492 4.483 4.484 4.493 4.480 4.510 4.573 4.566 4.526 4.515 4.584 4.639 4.593 4.598 4.635 4.638 4.640 4.648 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.654 4.644 4.632 4.636 4.646 4.652 4.652 4.652 4.671 4.643 4.604 4.617 4.648 4.730 4.800 4.749 4.585 4.403 4.643 4.744 4.605 4.577 4.505 4.421 4.390 4.398 4.465 4.483 4.468 4.447 4.420 4.400 4.385 4.401 4.442 4.432 4.452 4.466 4.483 4.479 4.458 4.477 4.466 4.493 4.535 4.546 4.525 4.473 4.489 4.575 4.593 4.606 4.639 4.637 4.640 4.640 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.584 4.575 4.564 4.558 4.590 4.637 4.701 4.730 4.642 4.542 4.368 4.601 4.665 4.581 4.603 4.516 4.446 4.441 4.430 4.469 4.483 4.473 4.464 4.453 4.434 4.440 4.450 4.488 4.511 4.500 4.507 4.524 4.519 4.604 4.456 4.455 4.478 4.512 4.565 4.590 4.534 4.479 4.553 4.597 4.634 4.652 4.658 4.657 4.644 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.591 4.591 4.591 4.650 4.652 4.652 4.683 4.737 4.755 4.691 4.601 4.500 4.581 4.544 4.477 4.545 4.565 4.537 4.508 4.496 4.512 4.510 4.505 4.525 4.501 4.467 4.438 4.562 4.617 4.652 4.572 4.559 4.577 4.603 4.644 4.558 4.556 4.527 4.531 4.554 4.594 4.614 4.625 4.569 4.609 4.642 4.657 4.673 4.663 4.645 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.712 4.679 4.647 4.608 4.596 4.539 4.497 4.567 4.627 4.605 4.551 4.523 4.520 4.532 4.547 4.558 4.561 4.553 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.635 4.652 4.591 4.631 4.652 4.652 4.652 4.652 4.652 4.652 4.681 4.663 4.640 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.656 4.627 4.616 4.587 4.575 4.579 4.598 4.596 4.554 4.524 4.497 4.573 4.633 4.632 4.616 4.613 4.635 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.653 4.637 4.652 4.644 4.652 4.620 4.583 4.578 4.560 4.565 4.573 4.652 4.722 4.652 4.632 4.645 4.651 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.674 4.652 4.652 4.644 4.652 4.597 4.628 4.610 4.624 4.667 4.671 4.625 4.626 4.634 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.647 4.618 4.576 4.587 4.612 4.631 4.652 4.652 4.652 4.652 4.655 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.654 4.651 4.613 4.608 4.616 4.636 4.659 4.705 4.702 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.668 4.656 4.651 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 4.652 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.722 4.697 4.687 4.696 4.712 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.661 4.645 4.646 4.628 4.657 4.691 4.714 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.651 4.618 4.598 4.632 4.608 4.605 4.656 4.707 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.679 4.675 4.676 4.587 4.580 4.562 4.683 4.751 4.610 4.566 4.603 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.690 4.684 4.532 4.519 4.630 4.827 4.848 4.645 4.602 4.571 4.614 4.654 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.832 4.768 4.627 4.549 4.670 4.833 4.823 4.719 4.630 4.571 4.546 4.534 4.650 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.713 4.692 4.627 4.631 4.737 4.749 4.666 4.684 4.597 4.537 4.546 4.550 4.549 4.586 4.665 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.652 4.622 4.672 4.717 4.670 4.631 4.662 4.547 4.485 4.499 4.536 4.559 4.553 4.577 4.661 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.721 4.717 4.696 4.647 4.644 4.722 4.677 4.600 4.580 4.531 4.463 4.432 4.478 4.543 4.571 4.557 4.565 4.618 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.706 4.712 4.716 4.682 4.692 4.660 4.653 4.764 4.776 4.671 4.560 4.523 4.470 4.426 4.411 4.470 4.542 4.570 4.567 4.557 4.613 4.672 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.699 4.689 4.674 4.667 4.668 4.686 4.730 4.822 4.921 4.875 4.750 4.627 4.572 4.502 4.451 4.408 4.405 4.474 4.536 4.564 4.567 4.566 4.633 4.670 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.686 4.643 4.647 4.656 4.668 4.701 4.777 4.885 4.918 4.864 4.764 4.679 4.600 4.528 4.490 4.463 4.424 4.419 4.475 4.534 4.566 4.583 4.613 4.624 4.664 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.685 4.669 4.645 4.682 4.670 4.671 4.692 4.747 4.804 4.838 4.812 4.707 4.640 4.560 4.516 4.501 4.513 4.505 4.459 4.451 4.493 4.535 4.581 4.629 4.644 4.646 4.658 4.667 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.701 4.704 4.697 4.675 4.646 4.662 4.714 4.774 4.737 4.614 4.531 4.487 4.490 4.518 4.550 4.562 4.537 4.495 4.497 4.519 4.555 4.611 4.660 4.669 4.654 4.638 4.658 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.652 4.586 4.624 4.676 4.728 4.696 4.563 4.453 4.426 4.481 4.541 4.589 4.608 4.597 4.587 4.561 4.552 4.565 4.581 4.639 4.682 4.669 4.649 4.628 4.626 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.644 4.564 4.599 4.669 4.710 4.680 4.567 4.431 4.407 4.485 4.605 4.614 4.643 4.631 4.624 4.606 4.602 4.601 4.593 4.610 4.650 4.671 4.650 4.633 4.617 4.610 4.656 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.550 4.570 4.659 4.699 4.680 4.572 4.451 4.428 4.499 4.558 4.644 4.666 4.641 4.630 4.635 4.637 4.645 4.637 4.626 4.623 4.652 4.658 4.640 4.624 4.620 4.597 4.612 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.681 4.587 4.542 4.623 4.678 4.654 4.538 4.441 4.438 4.501 4.531 4.622 4.669 4.645 4.622 4.634 4.638 4.647 4.651 4.652 4.646 4.652 4.656 4.651 4.628 4.622 4.617 4.589 4.594 4.669 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.674 4.625 4.618 4.558 4.610 4.657 4.610 4.477 4.398 4.422 4.500 4.545 4.589 4.614 4.624 4.607 4.615 4.624 4.625 4.637 4.657 4.664 4.672 4.673 4.671 4.650 4.614 4.605 4.607 4.592 4.588 4.665 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.674 4.615 4.590 4.605 4.623 4.654 4.562 4.438 4.383 4.397 4.481 4.565 4.604 4.595 4.585 4.562 4.595 4.619 4.618 4.627 4.649 4.658 4.677 4.682 4.687 4.668 4.635 4.613 4.598 4.592 4.621 4.609 4.674 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.628 4.613 4.602 4.631 4.664 4.666 4.565 4.445 4.437 4.395 4.454 4.547 4.635 4.630 4.602 4.529 4.555 4.609 4.623 4.643 4.662 4.666 4.673 4.682 4.680 4.685 4.669 4.647 4.616 4.596 4.592 4.635 4.632 4.676 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.616 4.569 4.598 4.637 4.673 4.652 4.581 4.471 4.418 4.410 4.451 4.523 4.629 4.672 4.653 4.552 4.537 4.583 4.626 4.646 4.698 4.706 4.698 4.693 4.682 4.705 4.675 4.669 4.655 4.644 4.621 4.641 4.688 4.643 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.668 4.594 4.585 4.585 4.617 4.640 4.613 4.559 4.490 4.438 4.442 4.445 4.532 4.632 4.684 4.679 4.576 4.547 4.574 4.614 4.642 4.686 4.735 4.751 4.733 4.710 4.679 4.688 4.701 4.673 4.668 4.661 4.650 4.651 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.671 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.601 4.575 4.592 4.622 4.646 4.587 4.528 4.471 4.437 4.461 4.481 4.544 4.611 4.651 4.681 4.619 4.563 4.587 4.622 4.625 4.658 4.708 4.758 4.780 4.776 4.761 4.681 4.673 4.688 4.689 4.676 4.670 4.667 4.689 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.631 4.570 4.609 4.688 4.688 4.665 4.665 4.672 4.688 4.606 4.576 4.583 4.612 4.673 4.653 4.532 4.485 4.467 4.495 4.504 4.558 4.611 4.633 4.657 4.654 4.601 4.627 4.660 4.632 4.635 4.682 4.703 4.747 4.802 4.820 4.802 4.745 4.674 4.664 4.688 4.688 4.678 4.676 4.682 4.684 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.601 4.601 4.688 4.688 4.553 4.559 4.559 4.556 4.559 4.563 4.569 4.592 4.664 4.736 4.658 4.516 4.463 4.514 4.568 4.559 4.581 4.626 4.699 4.692 4.614 4.633 4.674 4.696 4.663 4.681 4.696 4.683 4.726 4.789 4.830 4.822 4.791 4.700 4.679 4.661 4.688 4.688 4.679 4.674 4.685 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.592 4.550 4.558 4.542 4.527 4.528 4.533 4.560 4.637 4.744 4.795 4.669 4.481 4.467 4.588 4.651 4.595 4.588 4.727 4.780 4.690 4.667 4.689 4.712 4.699 4.730 4.760 4.719 4.694 4.715 4.763 4.809 4.817 4.789 4.714 4.690 4.676 4.674 4.700 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.668 4.577 4.559 4.544 4.544 4.528 4.519 4.577 4.681 4.778 4.752 4.553 4.431 4.527 4.700 4.708 4.626 4.706 4.823 4.778 4.709 4.731 4.738 4.742 4.728 4.802 4.803 4.767 4.746 4.741 4.759 4.791 4.801 4.779 4.727 4.704 4.673 4.661 4.665 4.701 4.698 4.697 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.624 4.562 4.573 4.563 4.538 4.543 4.602 4.693 4.699 4.584 4.473 4.469 4.635 4.704 4.652 4.740 4.812 4.835 4.786 4.679 4.675 4.768 4.780 4.779 4.841 4.844 4.786 4.770 4.769 4.772 4.779 4.792 4.796 4.771 4.713 4.651 4.630 4.631 4.627 4.651 4.674 4.700 4.706 4.690 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.674 4.591 4.587 4.558 4.532 4.522 4.584 4.585 4.501 4.482 4.504 4.574 4.644 4.628 4.712 4.791 4.799 4.723 4.652 4.616 4.670 4.770 4.861 4.871 4.864 4.854 4.798 4.726 4.727 4.724 4.730 4.768 4.780 4.742 4.680 4.663 4.615 4.571 4.563 4.545 4.561 4.590 4.670 4.686 4.701 4.698 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.680 4.610 4.571 4.528 4.476 4.486 4.514 4.430 4.454 4.522 4.562 4.587 4.623 4.728 4.748 4.769 4.716 4.626 4.618 4.724 4.839 4.835 4.868 4.875 4.862 4.820 4.665 4.614 4.640 4.699 4.720 4.693 4.637 4.631 4.706 4.647 4.585 4.493 4.473 4.476 4.492 4.551 4.595 4.641 4.675 4.686 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.678 4.585 4.531 4.485 4.451 4.445 4.436 4.498 4.613 4.569 4.508 4.554 4.752 4.723 4.671 4.645 4.659 4.783 4.927 4.942 4.849 4.788 4.832 4.806 4.721 4.480 4.478 4.593 4.619 4.633 4.643 4.582 4.605 4.629 4.585 4.598 4.530 4.499 4.477 4.436 4.398 4.544 4.570 4.642 4.659 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.654 4.566 4.530 4.488 4.456 4.466 4.578 4.711 4.557 4.468 4.475 4.626 4.656 4.616 4.679 4.770 4.889 5.008 4.958 4.893 4.810 4.668 4.584 4.507 4.405 4.436 4.484 4.495 4.568 4.602 4.625 4.625 4.619 4.615 4.654 4.568 4.529 4.530 4.495 4.454 4.487 4.534 4.557 4.667 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.674 4.613 4.573 4.528 4.513 4.530 4.683 4.830 4.677 4.523 4.552 4.567 4.691 4.640 4.712 4.761 4.765 4.804 4.777 4.788 4.725 4.552 4.469 4.422 4.371 4.441 4.482 4.442 4.488 4.581 4.630 4.681 4.705 4.673 4.701 4.622 4.622 4.638 4.590 4.580 4.559 4.571 4.556 4.535 4.614 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.657 4.607 4.568 4.569 4.586 4.647 4.815 4.799 4.548 4.490 4.602 4.752 4.731 4.663 4.629 4.566 4.591 4.694 4.690 4.619 4.454 4.367 4.355 4.365 4.462 4.523 4.546 4.595 4.619 4.610 4.671 4.657 4.581 4.563 4.581 4.678 4.703 4.629 4.667 4.659 4.648 4.601 4.569 4.595 4.668 4.689 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.659 4.634 4.647 4.666 4.641 4.702 4.866 4.438 4.279 4.618 4.749 4.752 4.630 4.510 4.377 4.378 4.447 4.452 4.472 4.442 4.411 4.397 4.381 4.390 4.380 4.406 4.469 4.476 4.488 4.529 4.537 4.529 4.532 4.547 4.608 4.626 4.597 4.619 4.669 4.709 4.695 4.648 4.672 4.703 4.700 4.697 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.689 4.676 4.676 4.678 4.692 4.703 4.717 4.694 4.679 4.677 4.714 4.735 4.825 4.865 4.452 4.175 4.645 4.695 4.774 4.644 4.488 4.379 4.370 4.381 4.409 4.464 4.489 4.485 4.454 4.405 4.357 4.328 4.341 4.383 4.417 4.447 4.488 4.500 4.503 4.510 4.484 4.500 4.551 4.579 4.571 4.600 4.697 4.759 4.702 4.693 4.711 4.695 4.689 4.685 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.670 4.667 4.670 4.675 4.668 4.688 4.681 4.628 4.634 4.643 4.673 4.766 4.721 4.592 4.464 4.639 4.726 4.652 4.582 4.532 4.443 4.405 4.419 4.478 4.531 4.537 4.518 4.485 4.445 4.395 4.361 4.357 4.381 4.413 4.432 4.446 4.449 4.434 4.423 4.420 4.435 4.487 4.530 4.540 4.530 4.569 4.680 4.695 4.652 4.675 4.677 4.673 4.682 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.629 4.611 4.605 4.627 4.651 4.692 4.737 4.703 4.591 4.380 4.559 4.646 4.576 4.586 4.530 4.456 4.457 4.460 4.476 4.494 4.487 4.482 4.471 4.472 4.413 4.381 4.406 4.426 4.488 4.512 4.487 4.500 4.458 4.432 4.405 4.418 4.458 4.491 4.493 4.488 4.504 4.574 4.649 4.673 4.680 4.674 4.680 4.676 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.759 4.777 4.725 4.656 4.513 4.599 4.601 4.471 4.522 4.585 4.586 4.552 4.516 4.486 4.481 4.474 4.488 4.496 4.495 4.476 4.487 4.496 4.495 4.524 4.549 4.547 4.546 4.511 4.484 4.440 4.440 4.461 4.487 4.500 4.508 4.517 4.555 4.624 4.676 4.685 4.703 4.700 4.678 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.731 4.703 4.692 4.656 4.663 4.613 4.504 4.522 4.608 4.631 4.584 4.533 4.512 4.512 4.564 4.589 4.591 4.579 4.596 4.584 4.575 4.631 4.633 4.635 4.636 4.673 4.688 4.688 4.617 4.582 4.545 4.554 4.555 4.565 4.577 4.561 4.610 4.666 4.689 4.714 4.703 4.676 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.723 4.688 4.663 4.649 4.601 4.596 4.604 4.600 4.569 4.536 4.523 4.545 4.638 4.671 4.656 4.644 4.642 4.647 4.669 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.678 4.636 4.671 4.632 4.603 4.663 4.688 4.688 4.669 4.689 4.716 4.699 4.671 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.677 4.681 4.693 4.688 4.688 4.613 4.579 4.538 4.611 4.577 4.660 4.723 4.738 4.691 4.673 4.680 4.667 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.689 4.673 4.593 4.617 4.631 4.628 4.674 4.688 4.688 4.673 4.671 4.678 4.692 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.687 4.663 4.609 4.589 4.637 4.653 4.670 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.687 4.684 4.688 4.628 4.669 4.659 4.680 4.699 4.745 4.731 4.723 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.703 4.672 4.670 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 4.688 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.712 4.716 4.736 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.647 4.666 4.671 4.701 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.648 4.592 4.594 4.610 4.593 4.682 4.744 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.635 4.646 4.666 4.558 4.510 4.686 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.711 4.704 4.756 4.756 4.619 4.571 4.550 4.611 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.966 4.957 4.723 4.715 4.768 4.836 4.863 4.767 4.647 4.587 4.569 4.567 4.679 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.749 4.741 4.723 4.723 4.775 4.807 4.798 4.763 4.663 4.595 4.590 4.597 4.590 4.667 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.591 4.555 4.635 4.744 4.767 4.742 4.720 4.662 4.598 4.610 4.666 4.628 4.624 4.624 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.733 4.700 4.623 4.554 4.616 4.749 4.814 4.832 4.805 4.732 4.615 4.558 4.627 4.707 4.642 4.625 4.616 4.686 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.701 4.667 4.635 4.613 4.657 4.823 4.991 5.030 4.901 4.743 4.612 4.535 4.522 4.560 4.711 4.689 4.632 4.607 4.652 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.718 4.655 4.656 4.705 4.679 4.749 4.909 5.082 5.087 4.933 4.757 4.623 4.540 4.544 4.569 4.582 4.669 4.721 4.669 4.608 4.610 4.713 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.721 4.723 4.714 4.695 4.708 4.767 4.864 5.003 5.012 4.890 4.741 4.628 4.571 4.564 4.559 4.578 4.620 4.646 4.657 4.675 4.617 4.624 4.669 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.727 4.691 4.722 4.812 4.914 4.876 4.772 4.681 4.612 4.594 4.671 4.593 4.568 4.586 4.619 4.614 4.617 4.676 4.656 4.649 4.655 4.704 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.654 4.710 4.787 4.836 4.759 4.667 4.626 4.601 4.620 4.626 4.655 4.687 4.636 4.612 4.603 4.602 4.614 4.646 4.661 4.658 4.648 4.690 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.696 4.722 4.775 4.790 4.699 4.603 4.599 4.613 4.639 4.653 4.643 4.670 4.692 4.675 4.623 4.614 4.614 4.634 4.658 4.665 4.674 4.644 4.691 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.754 4.774 4.765 4.675 4.559 4.561 4.611 4.662 4.685 4.678 4.653 4.629 4.593 4.613 4.639 4.671 4.647 4.656 4.678 4.672 4.688 4.657 4.657 4.709 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.756 4.785 4.766 4.656 4.563 4.538 4.567 4.621 4.689 4.709 4.674 4.642 4.607 4.599 4.645 4.667 4.658 4.658 4.683 4.695 4.679 4.682 4.690 4.680 4.709 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.728 4.784 4.770 4.661 4.548 4.527 4.526 4.527 4.642 4.711 4.699 4.657 4.627 4.610 4.637 4.677 4.689 4.688 4.697 4.724 4.704 4.674 4.664 4.691 4.718 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.683 4.632 4.723 4.778 4.726 4.686 4.555 4.561 4.528 4.506 4.540 4.623 4.671 4.664 4.641 4.630 4.640 4.679 4.700 4.704 4.709 4.731 4.739 4.705 4.655 4.652 4.685 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.708 4.645 4.652 4.610 4.613 4.711 4.652 4.528 4.539 4.507 4.539 4.532 4.530 4.557 4.604 4.660 4.623 4.632 4.645 4.673 4.704 4.717 4.722 4.738 4.754 4.761 4.727 4.668 4.670 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.706 4.652 4.617 4.614 4.601 4.657 4.634 4.492 4.496 4.486 4.530 4.562 4.569 4.567 4.565 4.542 4.574 4.603 4.624 4.663 4.688 4.710 4.724 4.723 4.740 4.769 4.761 4.716 4.720 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.614 4.632 4.615 4.606 4.628 4.626 4.532 4.473 4.494 4.511 4.659 4.609 4.623 4.610 4.558 4.528 4.559 4.594 4.633 4.689 4.706 4.714 4.720 4.723 4.723 4.726 4.737 4.720 4.707 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.694 4.631 4.589 4.599 4.605 4.621 4.637 4.584 4.508 4.488 4.488 4.591 4.648 4.672 4.667 4.578 4.523 4.546 4.585 4.601 4.657 4.705 4.721 4.729 4.729 4.721 4.723 4.723 4.725 4.717 4.712 4.719 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.668 4.645 4.600 4.601 4.606 4.622 4.597 4.542 4.513 4.496 4.559 4.639 4.682 4.707 4.626 4.546 4.539 4.554 4.574 4.616 4.676 4.708 4.734 4.746 4.741 4.739 4.728 4.723 4.723 4.721 4.715 4.720 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.696 4.694 4.723 4.723 4.723 4.723 4.723 4.674 4.638 4.639 4.632 4.637 4.630 4.605 4.576 4.545 4.553 4.525 4.554 4.621 4.671 4.723 4.669 4.565 4.550 4.575 4.560 4.582 4.645 4.675 4.714 4.757 4.767 4.765 4.761 4.730 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.712 4.594 4.611 4.723 4.723 4.723 4.704 4.705 4.705 4.645 4.628 4.652 4.671 4.694 4.650 4.566 4.516 4.569 4.613 4.589 4.599 4.644 4.726 4.715 4.576 4.539 4.575 4.596 4.584 4.613 4.658 4.668 4.711 4.754 4.779 4.795 4.800 4.794 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.673 4.626 4.723 4.723 4.705 4.594 4.577 4.556 4.560 4.584 4.624 4.653 4.705 4.725 4.646 4.538 4.552 4.691 4.702 4.633 4.590 4.684 4.746 4.645 4.551 4.578 4.633 4.625 4.616 4.659 4.666 4.666 4.707 4.744 4.780 4.813 4.825 4.824 4.774 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.601 4.565 4.543 4.533 4.550 4.578 4.605 4.660 4.738 4.727 4.636 4.571 4.667 4.777 4.746 4.630 4.636 4.717 4.682 4.606 4.609 4.651 4.658 4.618 4.663 4.709 4.709 4.697 4.704 4.727 4.767 4.813 4.840 4.847 4.818 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.630 4.560 4.556 4.563 4.574 4.565 4.598 4.666 4.697 4.676 4.617 4.616 4.702 4.807 4.735 4.697 4.728 4.686 4.608 4.578 4.638 4.710 4.680 4.633 4.718 4.772 4.746 4.717 4.711 4.728 4.760 4.815 4.855 4.859 4.835 4.719 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.657 4.581 4.595 4.601 4.575 4.565 4.596 4.629 4.619 4.620 4.616 4.668 4.763 4.763 4.773 4.844 4.771 4.606 4.598 4.582 4.642 4.770 4.740 4.720 4.752 4.784 4.784 4.733 4.723 4.742 4.775 4.820 4.843 4.825 4.802 4.710 4.723 4.723 4.723 4.723 4.723 4.679 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.678 4.612 4.594 4.560 4.550 4.578 4.565 4.558 4.630 4.684 4.758 4.749 4.771 4.868 4.889 4.743 4.658 4.673 4.656 4.724 4.782 4.759 4.795 4.816 4.805 4.703 4.704 4.772 4.800 4.788 4.756 4.733 4.772 4.807 4.759 4.695 4.665 4.552 4.671 4.661 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.583 4.568 4.533 4.541 4.543 4.540 4.660 4.744 4.731 4.698 4.743 4.818 4.839 4.749 4.710 4.823 4.804 4.823 4.864 4.843 4.826 4.838 4.766 4.558 4.604 4.722 4.768 4.780 4.724 4.690 4.782 4.778 4.738 4.699 4.616 4.570 4.572 4.543 4.660 4.674 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.619 4.575 4.548 4.531 4.555 4.588 4.680 4.723 4.729 4.647 4.676 4.797 4.805 4.720 4.698 4.811 4.843 4.913 4.942 4.886 4.798 4.746 4.646 4.568 4.578 4.605 4.625 4.692 4.758 4.795 4.807 4.724 4.741 4.733 4.639 4.597 4.614 4.585 4.552 4.536 4.628 4.649 4.713 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.647 4.603 4.573 4.555 4.566 4.657 4.772 4.744 4.660 4.648 4.621 4.760 4.708 4.690 4.642 4.787 4.821 4.866 4.878 4.814 4.668 4.654 4.586 4.533 4.582 4.604 4.524 4.530 4.688 4.783 4.830 4.793 4.790 4.761 4.663 4.616 4.656 4.659 4.647 4.601 4.650 4.598 4.637 4.685 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.706 4.622 4.579 4.565 4.589 4.653 4.791 4.794 4.617 4.675 4.652 4.754 4.712 4.697 4.751 4.916 4.924 4.901 4.871 4.795 4.584 4.493 4.428 4.435 4.533 4.642 4.596 4.544 4.579 4.660 4.743 4.800 4.739 4.685 4.617 4.604 4.699 4.740 4.761 4.730 4.702 4.658 4.612 4.616 4.705 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.673 4.605 4.603 4.658 4.674 4.689 4.779 4.583 4.608 4.863 4.821 4.818 4.765 4.675 4.602 4.547 4.559 4.589 4.607 4.564 4.540 4.502 4.478 4.484 4.489 4.512 4.554 4.551 4.548 4.600 4.688 4.651 4.607 4.566 4.554 4.702 4.788 4.753 4.786 4.769 4.723 4.668 4.683 4.704 4.720 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.729 4.715 4.715 4.712 4.703 4.655 4.673 4.730 4.740 4.740 4.765 4.558 4.415 4.746 4.623 4.678 4.696 4.599 4.465 4.432 4.485 4.513 4.522 4.542 4.563 4.543 4.493 4.438 4.413 4.407 4.431 4.458 4.495 4.552 4.596 4.596 4.581 4.519 4.471 4.567 4.694 4.690 4.755 4.809 4.760 4.717 4.753 4.734 4.720 4.725 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.726 4.713 4.711 4.705 4.707 4.687 4.695 4.728 4.728 4.708 4.675 4.536 4.518 4.665 4.595 4.620 4.585 4.552 4.501 4.489 4.502 4.531 4.521 4.529 4.540 4.523 4.495 4.466 4.440 4.407 4.409 4.432 4.447 4.454 4.477 4.486 4.463 4.412 4.374 4.431 4.543 4.582 4.651 4.751 4.740 4.725 4.706 4.704 4.711 4.705 4.716 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.721 4.739 4.742 4.707 4.695 4.610 4.487 4.599 4.610 4.559 4.576 4.562 4.504 4.486 4.514 4.525 4.501 4.488 4.474 4.470 4.461 4.472 4.502 4.451 4.468 4.468 4.469 4.480 4.490 4.476 4.425 4.371 4.352 4.386 4.442 4.461 4.515 4.618 4.660 4.717 4.723 4.712 4.700 4.701 4.709 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.789 4.772 4.722 4.697 4.591 4.634 4.673 4.546 4.503 4.571 4.618 4.584 4.560 4.520 4.471 4.443 4.468 4.489 4.540 4.518 4.520 4.508 4.499 4.529 4.523 4.551 4.588 4.602 4.606 4.430 4.411 4.418 4.451 4.476 4.503 4.546 4.577 4.665 4.742 4.730 4.715 4.718 4.709 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.738 4.713 4.739 4.717 4.728 4.720 4.584 4.493 4.551 4.620 4.617 4.567 4.530 4.512 4.549 4.617 4.626 4.626 4.624 4.613 4.589 4.576 4.620 4.661 4.647 4.555 4.525 4.601 4.650 4.540 4.462 4.467 4.492 4.514 4.535 4.563 4.618 4.699 4.723 4.742 4.737 4.710 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.758 4.753 4.711 4.706 4.653 4.658 4.617 4.613 4.596 4.562 4.550 4.550 4.635 4.677 4.692 4.682 4.668 4.684 4.706 4.723 4.723 4.723 4.723 4.723 4.723 4.697 4.699 4.710 4.629 4.627 4.524 4.525 4.541 4.574 4.606 4.671 4.712 4.745 4.735 4.709 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.729 4.701 4.717 4.726 4.716 4.715 4.627 4.559 4.545 4.567 4.594 4.687 4.720 4.730 4.722 4.695 4.686 4.686 4.697 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.706 4.677 4.702 4.586 4.629 4.704 4.700 4.702 4.729 4.727 4.712 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.729 4.722 4.670 4.587 4.631 4.615 4.645 4.702 4.723 4.723 4.723 4.711 4.712 4.725 4.725 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.726 4.708 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.727 4.711 4.685 4.608 4.617 4.675 4.672 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.687 4.668 4.701 4.687 4.720 4.723 4.789 4.773 4.768 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.718 4.713 4.700 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 4.723 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.718 4.713 4.728 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.667 4.670 4.723 4.776 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.699 4.762 4.740 4.768 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.769 4.741 4.677 4.658 4.641 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.975 4.907 4.762 4.762 4.762 4.813 4.813 4.783 4.729 4.674 4.667 4.742 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.774 4.650 4.616 4.701 4.769 4.809 4.840 4.857 4.801 4.693 4.658 4.710 4.742 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.752 4.548 4.550 4.669 4.745 4.788 4.803 4.805 4.832 4.711 4.639 4.682 4.743 4.728 4.741 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.597 4.559 4.667 4.752 4.800 4.832 4.890 4.931 4.753 4.626 4.661 4.743 4.762 4.741 4.745 4.759 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.736 4.639 4.677 4.696 4.788 4.863 4.933 4.979 4.912 4.737 4.604 4.618 4.762 4.669 4.711 4.741 4.748 4.750 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.736 4.793 4.901 5.008 5.012 4.891 4.727 4.644 4.602 4.712 4.699 4.686 4.688 4.710 4.743 4.748 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.742 4.788 4.915 5.003 4.977 4.861 4.715 4.660 4.640 4.577 4.747 4.686 4.681 4.676 4.672 4.749 4.749 4.750 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.748 4.807 4.894 4.923 4.902 4.826 4.728 4.702 4.686 4.614 4.558 4.707 4.683 4.675 4.657 4.651 4.705 4.751 4.756 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.826 4.857 4.843 4.825 4.795 4.755 4.737 4.715 4.670 4.585 4.557 4.703 4.688 4.665 4.648 4.656 4.673 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.823 4.828 4.804 4.779 4.752 4.761 4.767 4.738 4.695 4.641 4.571 4.615 4.691 4.669 4.644 4.642 4.656 4.672 4.732 4.741 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.801 4.784 4.771 4.702 4.727 4.759 4.742 4.702 4.660 4.609 4.613 4.665 4.688 4.661 4.643 4.642 4.658 4.685 4.737 4.746 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.777 4.720 4.667 4.652 4.657 4.762 4.739 4.698 4.668 4.640 4.624 4.647 4.695 4.700 4.687 4.664 4.669 4.691 4.703 4.743 4.758 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.772 4.718 4.622 4.595 4.581 4.680 4.762 4.750 4.672 4.648 4.640 4.656 4.691 4.715 4.713 4.695 4.698 4.735 4.746 4.732 4.755 4.757 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.769 4.764 4.762 4.572 4.561 4.570 4.653 4.762 4.741 4.676 4.643 4.635 4.701 4.733 4.730 4.721 4.716 4.746 4.791 4.770 4.763 4.756 4.761 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.753 4.755 4.762 4.760 4.762 4.729 4.595 4.581 4.547 4.552 4.541 4.710 4.721 4.642 4.648 4.655 4.715 4.727 4.741 4.759 4.755 4.797 4.843 4.798 4.767 4.760 4.766 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.736 4.680 4.687 4.680 4.762 4.762 4.685 4.674 4.550 4.606 4.673 4.505 4.521 4.530 4.577 4.611 4.632 4.644 4.678 4.697 4.722 4.761 4.762 4.812 4.857 4.873 4.808 4.768 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.741 4.648 4.628 4.624 4.645 4.751 4.644 4.520 4.538 4.547 4.716 4.555 4.541 4.537 4.505 4.544 4.588 4.616 4.634 4.683 4.684 4.695 4.752 4.762 4.815 4.912 4.838 4.801 4.768 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.712 4.653 4.625 4.609 4.622 4.669 4.670 4.551 4.539 4.543 4.663 4.657 4.593 4.580 4.526 4.492 4.521 4.566 4.596 4.631 4.654 4.670 4.681 4.709 4.762 4.799 4.913 4.826 4.791 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.703 4.648 4.603 4.596 4.589 4.659 4.668 4.594 4.570 4.552 4.586 4.619 4.641 4.634 4.575 4.500 4.483 4.511 4.545 4.592 4.639 4.655 4.669 4.682 4.713 4.761 4.809 4.879 4.802 4.781 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.726 4.659 4.633 4.608 4.575 4.610 4.655 4.619 4.596 4.575 4.564 4.598 4.642 4.676 4.640 4.550 4.498 4.479 4.514 4.550 4.606 4.631 4.671 4.696 4.700 4.714 4.774 4.811 4.860 4.796 4.766 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.698 4.721 4.762 4.762 4.762 4.762 4.762 4.702 4.673 4.674 4.657 4.626 4.601 4.624 4.603 4.594 4.604 4.579 4.581 4.614 4.677 4.684 4.585 4.519 4.494 4.493 4.511 4.559 4.611 4.620 4.661 4.688 4.711 4.729 4.758 4.812 4.833 4.774 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.638 4.603 4.730 4.762 4.762 4.762 4.743 4.762 4.678 4.676 4.683 4.679 4.662 4.653 4.606 4.568 4.610 4.603 4.593 4.581 4.643 4.700 4.629 4.532 4.499 4.508 4.505 4.526 4.582 4.609 4.624 4.658 4.689 4.718 4.749 4.783 4.818 4.830 4.769 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.742 4.655 4.662 4.762 4.762 4.762 4.695 4.575 4.569 4.610 4.657 4.668 4.692 4.715 4.678 4.595 4.606 4.603 4.629 4.603 4.617 4.681 4.639 4.561 4.521 4.523 4.535 4.522 4.562 4.605 4.629 4.651 4.676 4.703 4.728 4.761 4.806 4.839 4.849 4.786 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.728 4.762 4.762 4.762 4.609 4.542 4.533 4.570 4.624 4.652 4.663 4.705 4.735 4.676 4.657 4.598 4.633 4.670 4.664 4.690 4.632 4.554 4.525 4.543 4.574 4.562 4.537 4.591 4.638 4.661 4.676 4.703 4.730 4.745 4.786 4.831 4.863 4.864 4.836 4.774 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.586 4.553 4.574 4.593 4.634 4.638 4.645 4.688 4.681 4.689 4.676 4.641 4.650 4.763 4.804 4.712 4.579 4.519 4.519 4.561 4.632 4.596 4.583 4.639 4.669 4.693 4.711 4.749 4.768 4.774 4.798 4.832 4.850 4.862 4.868 4.837 4.770 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.679 4.605 4.604 4.605 4.610 4.625 4.608 4.615 4.629 4.657 4.690 4.703 4.641 4.677 4.862 4.840 4.681 4.564 4.511 4.517 4.573 4.667 4.682 4.708 4.708 4.683 4.676 4.745 4.790 4.792 4.759 4.734 4.762 4.836 4.870 4.855 4.817 4.765 4.762 4.762 4.712 4.719 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.699 4.640 4.651 4.625 4.624 4.623 4.600 4.601 4.641 4.727 4.713 4.674 4.660 4.787 4.863 4.731 4.653 4.625 4.605 4.599 4.632 4.713 4.790 4.823 4.735 4.636 4.673 4.748 4.773 4.733 4.676 4.711 4.819 4.840 4.826 4.795 4.738 4.678 4.729 4.682 4.716 4.732 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.721 4.636 4.631 4.625 4.643 4.640 4.648 4.790 4.838 4.700 4.636 4.735 4.815 4.674 4.614 4.665 4.773 4.757 4.671 4.695 4.727 4.780 4.797 4.740 4.706 4.711 4.721 4.705 4.728 4.830 4.868 4.803 4.820 4.796 4.708 4.657 4.715 4.700 4.689 4.708 4.736 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.759 4.643 4.627 4.632 4.650 4.710 4.727 4.806 4.888 4.755 4.606 4.709 4.782 4.634 4.477 4.578 4.767 4.831 4.766 4.774 4.750 4.871 4.798 4.651 4.709 4.813 4.722 4.637 4.727 4.868 4.866 4.816 4.895 4.848 4.707 4.628 4.704 4.738 4.732 4.675 4.677 4.686 4.675 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.752 4.676 4.630 4.617 4.648 4.705 4.801 4.834 4.802 4.781 4.663 4.657 4.773 4.660 4.676 4.738 4.889 4.916 4.823 4.850 4.819 4.771 4.611 4.497 4.537 4.717 4.663 4.629 4.706 4.812 4.809 4.830 4.912 4.860 4.706 4.600 4.695 4.782 4.809 4.787 4.731 4.705 4.658 4.699 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.637 4.606 4.648 4.717 4.774 4.779 4.666 4.706 4.904 4.782 4.889 4.821 4.784 4.775 4.838 4.783 4.728 4.761 4.773 4.754 4.660 4.570 4.539 4.569 4.529 4.622 4.706 4.752 4.753 4.808 4.851 4.795 4.633 4.542 4.703 4.885 4.864 4.882 4.836 4.788 4.729 4.714 4.709 4.745 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.769 4.734 4.683 4.640 4.677 4.774 4.756 4.704 4.618 4.579 4.883 4.745 4.617 4.640 4.630 4.598 4.572 4.594 4.603 4.606 4.602 4.628 4.604 4.547 4.491 4.493 4.478 4.556 4.656 4.708 4.696 4.703 4.732 4.746 4.658 4.550 4.601 4.743 4.767 4.904 4.929 4.826 4.763 4.758 4.727 4.707 4.764 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.767 4.761 4.722 4.722 4.760 4.845 4.763 4.681 4.546 4.528 4.702 4.558 4.482 4.529 4.598 4.590 4.570 4.602 4.602 4.593 4.558 4.534 4.504 4.481 4.490 4.487 4.464 4.507 4.558 4.570 4.538 4.551 4.601 4.604 4.552 4.468 4.473 4.544 4.600 4.757 4.909 4.845 4.771 4.715 4.692 4.699 4.713 4.746 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.768 4.808 4.839 4.774 4.714 4.633 4.605 4.684 4.608 4.516 4.535 4.591 4.556 4.498 4.526 4.590 4.599 4.549 4.474 4.458 4.475 4.489 4.503 4.504 4.511 4.525 4.520 4.496 4.500 4.520 4.494 4.446 4.406 4.417 4.445 4.453 4.542 4.744 4.786 4.758 4.704 4.688 4.697 4.712 4.738 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.839 4.816 4.725 4.704 4.694 4.680 4.711 4.638 4.561 4.551 4.604 4.602 4.586 4.585 4.544 4.468 4.443 4.488 4.516 4.529 4.525 4.523 4.524 4.514 4.498 4.492 4.516 4.504 4.505 4.479 4.430 4.421 4.449 4.457 4.475 4.575 4.671 4.715 4.776 4.753 4.720 4.731 4.742 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.766 4.731 4.771 4.785 4.774 4.812 4.711 4.578 4.518 4.557 4.632 4.615 4.565 4.532 4.521 4.568 4.626 4.651 4.641 4.622 4.636 4.634 4.623 4.613 4.607 4.581 4.578 4.556 4.523 4.477 4.452 4.463 4.480 4.492 4.541 4.627 4.692 4.781 4.769 4.760 4.756 4.747 4.759 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.824 4.815 4.772 4.751 4.729 4.676 4.631 4.674 4.624 4.589 4.565 4.553 4.560 4.609 4.666 4.695 4.681 4.665 4.652 4.663 4.699 4.664 4.669 4.752 4.754 4.762 4.722 4.712 4.706 4.600 4.528 4.526 4.566 4.637 4.665 4.721 4.744 4.783 4.774 4.751 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.766 4.732 4.728 4.750 4.748 4.727 4.762 4.720 4.570 4.563 4.571 4.585 4.628 4.672 4.688 4.723 4.677 4.679 4.680 4.690 4.694 4.737 4.762 4.762 4.762 4.762 4.762 4.762 4.729 4.616 4.546 4.556 4.585 4.616 4.659 4.722 4.765 4.772 4.753 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.769 4.764 4.736 4.619 4.603 4.594 4.635 4.637 4.646 4.689 4.723 4.745 4.762 4.758 4.751 4.749 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.654 4.607 4.553 4.574 4.611 4.686 4.750 4.769 4.758 4.756 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.764 4.768 4.762 4.708 4.626 4.624 4.679 4.662 4.670 4.753 4.762 4.762 4.772 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.738 4.609 4.661 4.737 4.774 4.766 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.717 4.737 4.735 4.735 4.743 4.762 4.826 4.820 4.821 4.812 4.795 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.764 4.768 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.771 4.759 4.758 4.748 4.744 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 4.762 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.799 4.786 4.821 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.783 4.759 4.789 4.811 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.807 4.743 4.733 4.727 4.753 4.800 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.946 4.890 4.829 4.830 4.830 4.831 4.815 4.780 4.757 4.729 4.738 4.790 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.812 4.719 4.742 4.805 4.824 4.825 4.824 4.817 4.780 4.709 4.704 4.757 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.820 4.711 4.727 4.811 4.822 4.816 4.794 4.801 4.876 4.735 4.662 4.664 4.781 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.801 4.799 4.846 4.850 4.810 4.803 4.862 4.954 4.796 4.629 4.618 4.610 4.721 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.836 4.876 4.866 4.870 4.934 4.958 4.802 4.599 4.569 4.596 4.661 4.701 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.836 4.906 4.963 4.985 4.951 4.818 4.736 4.608 4.622 4.682 4.707 4.726 4.777 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.836 5.001 4.994 4.936 4.816 4.747 4.699 4.645 4.683 4.729 4.732 4.735 4.774 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.916 4.940 4.907 4.834 4.796 4.755 4.697 4.682 4.752 4.756 4.749 4.737 4.738 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.884 4.910 4.879 4.846 4.829 4.798 4.756 4.708 4.691 4.830 4.798 4.757 4.735 4.740 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.858 4.858 4.836 4.840 4.830 4.831 4.811 4.741 4.712 4.744 4.796 4.808 4.830 4.766 4.746 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.845 4.830 4.806 4.819 4.830 4.832 4.830 4.830 4.830 4.752 4.784 4.805 4.830 4.810 4.807 4.821 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.769 4.806 4.830 4.816 4.773 4.749 4.810 4.794 4.821 4.800 4.799 4.773 4.791 4.789 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.757 4.830 4.830 4.830 4.790 4.693 4.725 4.716 4.760 4.795 4.810 4.784 4.754 4.741 4.776 4.830 4.830 4.834 4.839 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.749 4.669 4.752 4.830 4.805 4.732 4.669 4.688 4.710 4.758 4.781 4.793 4.788 4.734 4.750 4.771 4.830 4.830 4.837 4.840 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.678 4.627 4.596 4.830 4.802 4.732 4.686 4.686 4.718 4.769 4.773 4.766 4.760 4.737 4.737 4.816 4.836 4.833 4.840 4.843 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.820 4.830 4.830 4.830 4.830 4.830 4.830 4.767 4.576 4.582 4.740 4.804 4.743 4.705 4.699 4.737 4.736 4.744 4.779 4.757 4.676 4.749 4.830 4.850 4.835 4.846 4.849 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.809 4.812 4.754 4.757 4.822 4.820 4.830 4.830 4.737 4.737 4.830 4.769 4.565 4.631 4.701 4.738 4.714 4.702 4.700 4.705 4.719 4.724 4.794 4.785 4.724 4.840 4.848 4.861 4.833 4.851 4.848 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.816 4.805 4.732 4.698 4.713 4.821 4.819 4.766 4.788 4.632 4.742 4.770 4.631 4.587 4.569 4.709 4.628 4.690 4.689 4.696 4.696 4.692 4.716 4.790 4.761 4.801 4.904 4.868 4.857 4.835 4.846 4.842 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.809 4.710 4.671 4.685 4.731 4.755 4.727 4.734 4.635 4.651 4.709 4.687 4.608 4.630 4.592 4.575 4.601 4.653 4.666 4.684 4.691 4.699 4.720 4.784 4.768 4.830 4.928 4.870 4.852 4.832 4.841 4.836 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.758 4.703 4.676 4.655 4.690 4.736 4.697 4.667 4.650 4.638 4.697 4.661 4.659 4.647 4.621 4.583 4.558 4.572 4.616 4.660 4.672 4.672 4.699 4.739 4.744 4.785 4.877 4.931 4.871 4.844 4.831 4.836 4.839 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.786 4.712 4.679 4.653 4.644 4.697 4.698 4.650 4.676 4.658 4.660 4.663 4.666 4.662 4.633 4.595 4.560 4.539 4.566 4.606 4.641 4.650 4.656 4.666 4.724 4.721 4.778 4.883 4.878 4.860 4.834 4.831 4.837 4.840 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.772 4.801 4.800 4.830 4.830 4.830 4.830 4.763 4.742 4.709 4.686 4.654 4.666 4.682 4.640 4.661 4.669 4.667 4.662 4.669 4.673 4.643 4.597 4.563 4.545 4.537 4.548 4.588 4.617 4.635 4.665 4.694 4.725 4.737 4.796 4.876 4.894 4.849 4.831 4.830 4.839 4.843 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.734 4.696 4.743 4.797 4.830 4.830 4.830 4.820 4.729 4.717 4.714 4.691 4.678 4.690 4.656 4.652 4.647 4.655 4.659 4.662 4.662 4.641 4.604 4.574 4.555 4.539 4.526 4.539 4.581 4.617 4.644 4.684 4.723 4.745 4.739 4.817 4.870 4.884 4.850 4.837 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.719 4.715 4.701 4.805 4.830 4.830 4.830 4.671 4.684 4.710 4.695 4.672 4.717 4.698 4.692 4.650 4.637 4.639 4.645 4.659 4.642 4.600 4.574 4.553 4.542 4.532 4.511 4.543 4.598 4.638 4.668 4.704 4.728 4.730 4.781 4.823 4.874 4.879 4.851 4.836 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.755 4.732 4.752 4.830 4.830 4.737 4.646 4.646 4.679 4.686 4.652 4.691 4.744 4.756 4.736 4.663 4.607 4.624 4.644 4.633 4.592 4.553 4.530 4.526 4.545 4.537 4.536 4.592 4.638 4.660 4.706 4.755 4.763 4.765 4.786 4.829 4.864 4.870 4.856 4.851 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.748 4.656 4.635 4.643 4.673 4.656 4.643 4.722 4.780 4.812 4.752 4.641 4.580 4.637 4.649 4.595 4.567 4.521 4.494 4.518 4.573 4.591 4.612 4.642 4.646 4.681 4.754 4.791 4.781 4.754 4.755 4.806 4.867 4.864 4.844 4.840 4.826 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.799 4.690 4.645 4.649 4.665 4.681 4.641 4.663 4.754 4.822 4.781 4.723 4.640 4.625 4.675 4.623 4.595 4.582 4.534 4.486 4.503 4.594 4.638 4.652 4.646 4.664 4.729 4.781 4.773 4.730 4.708 4.755 4.839 4.862 4.838 4.809 4.788 4.786 4.815 4.805 4.789 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.743 4.674 4.671 4.691 4.702 4.675 4.659 4.713 4.814 4.790 4.728 4.678 4.653 4.689 4.622 4.601 4.616 4.630 4.568 4.491 4.516 4.619 4.684 4.691 4.704 4.754 4.793 4.735 4.665 4.702 4.796 4.818 4.823 4.830 4.806 4.755 4.720 4.786 4.805 4.795 4.810 4.805 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.813 4.754 4.691 4.704 4.712 4.710 4.752 4.844 4.822 4.735 4.691 4.676 4.749 4.655 4.564 4.631 4.698 4.686 4.580 4.600 4.678 4.789 4.736 4.645 4.769 4.896 4.763 4.642 4.708 4.824 4.784 4.757 4.811 4.814 4.726 4.650 4.754 4.808 4.808 4.818 4.806 4.793 4.795 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.772 4.691 4.684 4.716 4.746 4.827 4.873 4.853 4.785 4.776 4.724 4.758 4.672 4.628 4.671 4.798 4.810 4.671 4.662 4.798 4.844 4.726 4.647 4.684 4.866 4.785 4.713 4.736 4.751 4.703 4.743 4.798 4.775 4.672 4.596 4.726 4.813 4.829 4.838 4.778 4.784 4.802 4.813 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.812 4.722 4.673 4.700 4.772 4.836 4.883 4.791 4.769 4.932 4.939 4.857 4.662 4.576 4.693 4.845 4.923 4.925 4.974 4.957 4.863 4.862 4.825 4.764 4.824 4.686 4.710 4.698 4.722 4.683 4.738 4.812 4.764 4.634 4.524 4.683 4.850 4.856 4.870 4.832 4.824 4.827 4.802 4.816 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.677 4.694 4.792 4.840 4.790 4.707 4.680 4.875 4.963 4.772 4.521 4.515 4.596 4.714 4.875 4.900 4.790 4.766 4.760 4.753 4.758 4.660 4.656 4.581 4.677 4.748 4.820 4.725 4.699 4.755 4.852 4.777 4.560 4.613 4.746 4.776 4.876 4.877 4.848 4.856 4.833 4.792 4.805 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.768 4.836 4.871 4.725 4.651 4.660 4.777 4.703 4.536 4.474 4.621 4.703 4.747 4.821 4.781 4.682 4.659 4.691 4.679 4.678 4.659 4.609 4.511 4.569 4.638 4.683 4.654 4.646 4.721 4.792 4.789 4.649 4.599 4.623 4.632 4.714 4.823 4.861 4.887 4.827 4.768 4.751 4.761 4.825 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.832 4.882 4.908 4.785 4.708 4.762 4.823 4.744 4.575 4.534 4.618 4.665 4.648 4.635 4.659 4.676 4.678 4.639 4.609 4.638 4.644 4.651 4.606 4.578 4.588 4.584 4.554 4.563 4.620 4.632 4.662 4.610 4.584 4.582 4.547 4.525 4.695 4.821 4.865 4.799 4.750 4.740 4.762 4.800 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.922 4.911 4.777 4.743 4.816 4.779 4.774 4.723 4.689 4.615 4.627 4.690 4.673 4.651 4.666 4.628 4.565 4.563 4.606 4.621 4.628 4.619 4.609 4.600 4.571 4.565 4.561 4.600 4.624 4.660 4.606 4.563 4.593 4.562 4.486 4.583 4.769 4.806 4.800 4.765 4.743 4.766 4.801 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.846 4.835 4.794 4.825 4.869 4.820 4.850 4.835 4.760 4.668 4.607 4.654 4.702 4.663 4.634 4.602 4.580 4.595 4.636 4.659 4.657 4.648 4.644 4.646 4.633 4.653 4.669 4.687 4.692 4.694 4.646 4.601 4.623 4.603 4.573 4.621 4.762 4.829 4.835 4.804 4.769 4.779 4.798 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.848 4.898 4.855 4.814 4.808 4.785 4.729 4.656 4.717 4.660 4.635 4.609 4.585 4.581 4.601 4.649 4.682 4.692 4.686 4.684 4.683 4.686 4.702 4.733 4.779 4.786 4.765 4.726 4.729 4.741 4.671 4.632 4.691 4.816 4.853 4.841 4.819 4.807 4.807 4.801 4.803 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.799 4.775 4.790 4.812 4.806 4.830 4.784 4.647 4.637 4.616 4.613 4.624 4.637 4.659 4.669 4.669 4.678 4.682 4.684 4.698 4.710 4.740 4.830 4.830 4.830 4.769 4.797 4.815 4.749 4.660 4.661 4.727 4.782 4.807 4.825 4.832 4.841 4.828 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.791 4.830 4.833 4.836 4.824 4.747 4.671 4.704 4.619 4.680 4.651 4.664 4.674 4.684 4.718 4.731 4.773 4.768 4.718 4.722 4.744 4.761 4.830 4.830 4.830 4.830 4.830 4.807 4.776 4.653 4.652 4.684 4.729 4.793 4.837 4.854 4.837 4.828 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.846 4.840 4.830 4.821 4.676 4.711 4.735 4.714 4.714 4.703 4.719 4.768 4.789 4.808 4.824 4.825 4.827 4.826 4.827 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.789 4.681 4.649 4.678 4.733 4.808 4.852 4.842 4.832 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.822 4.798 4.812 4.811 4.807 4.801 4.824 4.830 4.873 4.855 4.854 4.860 4.855 4.851 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.791 4.685 4.706 4.759 4.802 4.834 4.832 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.839 4.818 4.816 4.813 4.815 4.810 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.812 4.812 4.807 4.783 4.817 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.831 4.832 4.827 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 4.830 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.860 4.852 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.865 4.879 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.893 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.869 4.868 4.892 4.892 4.892 4.892 4.892 4.812 4.728 4.843 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.896 4.892 4.892 4.892 4.892 4.885 4.768 4.715 4.853 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.958 4.874 4.771 4.730 4.835 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.886 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.863 4.845 4.844 4.892 4.847 4.860 4.885 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.859 4.802 4.892 4.864 4.821 4.789 4.822 4.811 4.834 4.847 4.856 4.872 4.869 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.804 4.722 4.812 4.849 4.787 4.763 4.810 4.787 4.811 4.829 4.826 4.844 4.817 4.872 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.884 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.769 4.706 4.705 4.844 4.769 4.734 4.793 4.764 4.792 4.758 4.823 4.800 4.788 4.892 4.892 4.892 4.892 4.892 4.893 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.873 4.869 4.804 4.828 4.882 4.883 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.757 4.699 4.712 4.805 4.764 4.724 4.782 4.752 4.795 4.763 4.791 4.724 4.801 4.892 4.892 4.892 4.892 4.901 4.906 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.866 4.771 4.799 4.778 4.851 4.884 4.892 4.859 4.839 4.892 4.892 4.833 4.732 4.688 4.681 4.731 4.789 4.760 4.747 4.788 4.717 4.770 4.702 4.788 4.737 4.804 4.892 4.892 4.892 4.892 4.896 4.898 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.871 4.837 4.778 4.740 4.787 4.819 4.887 4.878 4.762 4.771 4.892 4.838 4.740 4.684 4.729 4.677 4.747 4.684 4.719 4.731 4.740 4.748 4.703 4.705 4.726 4.770 4.892 4.892 4.892 4.891 4.892 4.900 4.901 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.845 4.782 4.779 4.727 4.757 4.782 4.759 4.870 4.824 4.748 4.824 4.838 4.786 4.671 4.666 4.723 4.706 4.644 4.660 4.697 4.720 4.710 4.712 4.705 4.727 4.746 4.791 4.892 4.892 4.892 4.896 4.892 4.903 4.907 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.864 4.892 4.892 4.892 4.892 4.892 4.818 4.745 4.740 4.734 4.740 4.736 4.730 4.820 4.733 4.766 4.778 4.810 4.769 4.669 4.669 4.657 4.698 4.624 4.633 4.676 4.694 4.706 4.743 4.703 4.696 4.743 4.800 4.846 4.892 4.890 4.893 4.892 4.906 4.906 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.849 4.814 4.857 4.854 4.892 4.892 4.892 4.805 4.796 4.738 4.721 4.719 4.710 4.719 4.733 4.735 4.753 4.785 4.775 4.747 4.695 4.675 4.643 4.616 4.629 4.602 4.630 4.661 4.691 4.720 4.755 4.715 4.706 4.754 4.814 4.853 4.892 4.884 4.890 4.892 4.903 4.905 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.887 4.780 4.734 4.827 4.859 4.892 4.892 4.822 4.793 4.752 4.742 4.724 4.708 4.698 4.748 4.749 4.730 4.753 4.760 4.739 4.699 4.654 4.625 4.606 4.611 4.626 4.619 4.637 4.669 4.701 4.736 4.746 4.748 4.739 4.773 4.818 4.851 4.885 4.873 4.896 4.892 4.903 4.906 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.750 4.773 4.814 4.865 4.870 4.892 4.787 4.806 4.753 4.729 4.711 4.700 4.736 4.767 4.738 4.719 4.741 4.718 4.683 4.664 4.613 4.586 4.598 4.628 4.644 4.646 4.651 4.664 4.700 4.746 4.753 4.730 4.720 4.821 4.833 4.864 4.870 4.861 4.875 4.892 4.900 4.899 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.795 4.791 4.810 4.892 4.892 4.892 4.798 4.768 4.748 4.717 4.721 4.742 4.761 4.759 4.729 4.719 4.708 4.658 4.640 4.612 4.581 4.562 4.563 4.608 4.632 4.639 4.630 4.659 4.704 4.742 4.731 4.726 4.751 4.804 4.842 4.871 4.860 4.843 4.851 4.876 4.885 4.888 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.812 4.871 4.892 4.777 4.821 4.772 4.767 4.754 4.752 4.797 4.787 4.758 4.742 4.719 4.707 4.654 4.610 4.567 4.546 4.541 4.523 4.535 4.596 4.648 4.646 4.643 4.688 4.719 4.705 4.675 4.703 4.772 4.810 4.830 4.840 4.836 4.810 4.784 4.865 4.887 4.881 4.874 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.808 4.735 4.760 4.785 4.802 4.804 4.832 4.834 4.744 4.730 4.724 4.727 4.690 4.612 4.554 4.526 4.528 4.533 4.552 4.593 4.668 4.687 4.655 4.702 4.748 4.686 4.669 4.720 4.762 4.760 4.766 4.782 4.811 4.776 4.734 4.803 4.858 4.893 4.884 4.871 4.859 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.801 4.714 4.769 4.816 4.868 4.886 4.909 4.781 4.730 4.729 4.725 4.688 4.680 4.642 4.614 4.600 4.567 4.596 4.635 4.647 4.693 4.739 4.742 4.780 4.711 4.737 4.780 4.759 4.732 4.743 4.746 4.755 4.701 4.641 4.758 4.845 4.854 4.876 4.874 4.860 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.858 4.760 4.733 4.788 4.855 4.924 4.932 4.832 4.805 4.799 4.750 4.663 4.626 4.721 4.784 4.788 4.776 4.775 4.752 4.677 4.748 4.838 4.893 4.928 4.780 4.798 4.790 4.749 4.738 4.763 4.777 4.732 4.655 4.570 4.720 4.862 4.880 4.873 4.850 4.867 4.881 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.797 4.737 4.776 4.812 4.866 4.855 4.809 4.792 4.854 4.825 4.690 4.630 4.706 4.858 4.962 4.932 4.820 4.778 4.787 4.807 4.855 4.860 4.980 4.831 4.826 4.755 4.732 4.772 4.821 4.850 4.788 4.719 4.593 4.704 4.838 4.860 4.886 4.856 4.832 4.872 4.890 4.873 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.819 4.807 4.831 4.815 4.822 4.799 4.745 4.798 4.810 4.809 4.833 4.863 4.927 5.050 4.950 4.812 4.733 4.741 4.853 4.965 4.903 4.847 4.663 4.719 4.719 4.704 4.763 4.814 4.859 4.817 4.797 4.659 4.708 4.789 4.780 4.793 4.823 4.847 4.876 4.866 4.848 4.827 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.875 4.896 4.857 4.867 4.881 4.836 4.912 4.841 4.811 4.819 4.877 4.885 4.934 4.915 4.904 4.859 4.751 4.702 4.799 4.795 4.833 4.734 4.688 4.753 4.849 4.820 4.769 4.764 4.739 4.755 4.684 4.687 4.701 4.686 4.671 4.755 4.823 4.864 4.822 4.775 4.788 4.826 4.884 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.908 4.928 4.849 4.828 4.883 4.868 4.874 4.863 4.839 4.815 4.777 4.785 4.859 4.835 4.807 4.748 4.673 4.664 4.686 4.685 4.711 4.706 4.710 4.736 4.792 4.837 4.782 4.761 4.780 4.831 4.796 4.745 4.752 4.728 4.674 4.751 4.814 4.847 4.817 4.771 4.751 4.783 4.841 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.900 4.889 4.856 4.875 4.911 4.878 4.829 4.884 4.863 4.886 4.824 4.772 4.821 4.808 4.738 4.687 4.653 4.643 4.644 4.638 4.659 4.659 4.655 4.676 4.697 4.778 4.815 4.847 4.859 4.901 4.874 4.807 4.817 4.822 4.782 4.828 4.868 4.917 4.888 4.839 4.794 4.801 4.845 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.910 4.946 4.913 4.855 4.861 4.852 4.844 4.824 4.772 4.750 4.748 4.706 4.663 4.626 4.605 4.608 4.620 4.647 4.678 4.684 4.687 4.695 4.739 4.808 4.897 4.913 4.908 4.883 4.870 4.906 4.879 4.835 4.866 4.936 4.982 4.973 4.913 4.860 4.849 4.869 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.895 4.834 4.825 4.829 4.851 4.861 4.839 4.833 4.720 4.706 4.699 4.677 4.664 4.657 4.652 4.650 4.666 4.673 4.674 4.676 4.689 4.734 4.816 4.857 4.850 4.840 4.878 4.932 4.918 4.828 4.802 4.870 4.929 4.981 4.930 4.893 4.889 4.895 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.846 4.839 4.878 4.893 4.900 4.892 4.858 4.856 4.752 4.712 4.713 4.725 4.720 4.719 4.716 4.719 4.723 4.724 4.728 4.721 4.728 4.752 4.769 4.795 4.814 4.859 4.901 4.900 4.835 4.772 4.780 4.827 4.906 4.908 4.895 4.905 4.905 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.912 4.911 4.892 4.892 4.888 4.767 4.782 4.852 4.781 4.778 4.771 4.761 4.766 4.789 4.801 4.817 4.818 4.813 4.815 4.813 4.827 4.835 4.866 4.887 4.905 4.892 4.861 4.828 4.774 4.820 4.858 4.881 4.897 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.876 4.873 4.881 4.889 4.862 4.866 4.864 4.871 4.883 4.874 4.868 4.862 4.867 4.883 4.877 4.903 4.892 4.892 4.892 4.892 4.875 4.863 4.821 4.852 4.868 4.887 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.890 4.883 4.875 4.864 4.859 4.865 4.873 4.892 4.882 4.892 4.892 4.892 4.892 4.892 4.880 4.878 4.862 4.853 4.874 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.883 4.868 4.875 4.870 4.874 4.885 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 4.892 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.909 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.903 4.888 4.881 4.933 4.898 4.904 4.923 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.923 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.901 4.858 4.892 4.872 4.845 4.865 4.878 4.870 4.900 4.918 4.916 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.917 4.913 4.907 4.920 4.924 4.923 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.884 4.895 4.804 4.869 4.831 4.817 4.863 4.846 4.871 4.834 4.875 4.910 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.911 4.886 4.854 4.848 4.883 4.922 4.925 4.933 4.933 4.933 4.933 4.933 4.933 4.874 4.877 4.897 4.787 4.798 4.806 4.795 4.845 4.831 4.834 4.804 4.796 4.877 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.908 4.823 4.808 4.829 4.829 4.925 4.929 4.933 4.933 4.939 4.940 4.907 4.892 4.778 4.848 4.897 4.774 4.773 4.737 4.769 4.806 4.805 4.754 4.751 4.786 4.911 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.874 4.832 4.830 4.789 4.793 4.799 4.930 4.914 4.873 4.933 4.942 4.884 4.860 4.836 4.743 4.841 4.899 4.778 4.691 4.700 4.753 4.779 4.801 4.717 4.723 4.822 4.913 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.913 4.913 4.933 4.933 4.933 4.891 4.862 4.783 4.783 4.769 4.778 4.816 4.839 4.831 4.873 4.933 4.944 4.866 4.828 4.741 4.715 4.817 4.802 4.728 4.683 4.691 4.748 4.826 4.783 4.702 4.766 4.794 4.915 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.849 4.887 4.902 4.899 4.933 4.933 4.853 4.832 4.778 4.760 4.752 4.784 4.816 4.813 4.818 4.859 4.895 4.896 4.779 4.723 4.710 4.715 4.746 4.758 4.710 4.685 4.671 4.734 4.821 4.761 4.701 4.717 4.842 4.854 4.893 4.933 4.933 4.933 4.933 4.933 4.950 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.898 4.834 4.837 4.887 4.887 4.901 4.877 4.846 4.800 4.766 4.739 4.734 4.776 4.797 4.790 4.823 4.857 4.837 4.797 4.748 4.703 4.679 4.698 4.712 4.703 4.684 4.657 4.663 4.719 4.782 4.709 4.704 4.731 4.850 4.863 4.893 4.933 4.933 4.933 4.933 4.933 4.939 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.922 4.816 4.789 4.827 4.900 4.905 4.862 4.855 4.808 4.764 4.730 4.740 4.760 4.763 4.782 4.820 4.800 4.763 4.724 4.679 4.662 4.661 4.660 4.677 4.683 4.659 4.631 4.649 4.668 4.734 4.707 4.730 4.770 4.862 4.845 4.888 4.933 4.933 4.922 4.932 4.936 4.932 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.795 4.816 4.830 4.914 4.905 4.888 4.857 4.822 4.766 4.746 4.740 4.733 4.751 4.781 4.777 4.740 4.697 4.651 4.619 4.632 4.643 4.657 4.686 4.679 4.638 4.638 4.656 4.652 4.662 4.685 4.769 4.790 4.862 4.821 4.881 4.933 4.933 4.939 4.936 4.932 4.927 4.921 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.888 4.834 4.831 4.933 4.870 4.879 4.894 4.846 4.819 4.781 4.734 4.728 4.745 4.739 4.721 4.713 4.690 4.635 4.594 4.627 4.656 4.668 4.701 4.696 4.676 4.676 4.644 4.671 4.711 4.721 4.734 4.751 4.749 4.816 4.861 4.933 4.933 4.926 4.928 4.929 4.922 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.866 4.853 4.824 4.845 4.906 4.920 4.869 4.843 4.795 4.770 4.742 4.699 4.669 4.725 4.795 4.767 4.690 4.642 4.645 4.662 4.728 4.769 4.790 4.794 4.715 4.709 4.694 4.701 4.735 4.751 4.759 4.833 4.791 4.612 4.933 4.945 4.933 4.937 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.821 4.795 4.851 4.934 4.914 4.897 4.842 4.886 4.838 4.739 4.670 4.712 4.841 4.901 4.822 4.704 4.652 4.659 4.723 4.795 4.830 4.866 4.826 4.772 4.682 4.663 4.728 4.780 4.803 4.782 4.770 4.622 4.730 4.912 4.944 4.940 4.941 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.889 4.829 4.824 4.877 4.943 4.918 4.855 4.936 4.963 4.942 4.855 4.817 4.878 5.003 4.955 4.895 4.792 4.683 4.700 4.862 4.842 4.858 4.788 4.756 4.709 4.665 4.686 4.777 4.846 4.815 4.785 4.661 4.732 4.841 4.901 4.899 4.933 4.933 4.921 4.912 4.923 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.924 4.861 4.858 4.913 4.965 4.938 5.002 5.029 5.086 5.042 5.006 4.997 5.059 5.111 5.098 4.941 4.739 4.696 4.745 4.739 4.873 4.746 4.648 4.698 4.763 4.732 4.764 4.818 4.829 4.845 4.720 4.741 4.792 4.791 4.803 4.844 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.869 4.880 4.918 4.967 5.040 4.990 5.076 5.041 5.017 5.003 5.019 5.037 5.013 4.875 4.723 4.697 4.703 4.667 4.722 4.682 4.615 4.629 4.749 4.818 4.804 4.817 4.883 4.980 4.867 4.819 4.811 4.791 4.793 4.870 4.924 4.927 4.924 4.933 4.933 4.896 4.916 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.935 4.942 4.925 4.915 4.887 4.957 4.938 4.958 4.993 4.964 4.899 4.864 4.796 4.715 4.697 4.695 4.657 4.658 4.599 4.542 4.563 4.644 4.789 4.836 4.890 4.980 5.114 4.991 4.912 4.888 4.868 4.873 4.935 4.974 4.976 4.948 4.928 4.901 4.866 4.894 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.990 4.967 4.914 4.851 4.870 4.851 4.922 4.935 4.889 4.854 4.845 4.788 4.710 4.677 4.657 4.642 4.643 4.621 4.598 4.614 4.678 4.769 4.869 5.010 5.052 5.060 4.988 4.956 4.994 5.004 4.970 4.972 5.000 5.023 5.006 4.961 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.907 4.864 4.851 4.849 4.887 4.927 4.903 4.837 4.807 4.783 4.747 4.720 4.695 4.679 4.656 4.638 4.628 4.639 4.664 4.695 4.768 4.903 4.984 4.966 4.905 4.926 4.985 5.047 4.986 4.940 4.972 5.001 5.052 4.974 4.935 4.934 4.942 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.912 4.844 4.842 4.896 4.927 4.960 4.947 4.933 4.933 4.805 4.771 4.803 4.800 4.763 4.740 4.726 4.727 4.728 4.721 4.719 4.737 4.776 4.805 4.849 4.850 4.852 4.901 4.959 4.918 4.889 4.902 4.937 5.027 4.982 4.930 4.934 4.948 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.936 4.933 4.933 4.933 4.933 4.890 4.897 4.933 4.933 4.843 4.817 4.806 4.825 4.837 4.841 4.837 4.823 4.819 4.822 4.865 4.861 4.868 4.891 4.899 4.848 4.849 4.857 4.863 4.921 4.953 4.924 4.923 4.940 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.932 4.933 4.933 4.933 4.891 4.890 4.888 4.880 4.865 4.860 4.883 4.872 4.883 4.901 4.909 4.857 4.846 4.841 4.836 4.845 4.890 4.900 4.909 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.934 4.932 4.888 4.892 4.885 4.885 4.888 4.888 4.868 4.859 4.856 4.854 4.840 4.917 4.884 4.914 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.919 4.893 4.883 4.884 4.888 4.881 4.879 4.878 4.879 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 4.933 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.042 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.043 5.037 5.049 5.040 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.030 5.029 4.969 5.009 5.023 5.040 5.040 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 4.993 5.014 5.049 5.049 5.049 5.027 5.035 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.028 4.952 4.959 4.927 4.943 5.040 5.041 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.029 5.049 5.049 5.049 4.968 4.956 4.933 5.008 5.049 4.997 4.993 5.037 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.032 5.012 4.925 4.888 4.896 4.910 5.042 5.045 5.049 5.049 5.049 5.049 5.049 5.049 5.025 4.997 5.049 5.049 5.049 4.957 4.852 4.912 5.007 4.989 4.943 4.992 5.037 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.024 5.024 5.049 4.997 4.939 4.888 4.869 4.875 4.913 5.038 5.052 5.049 5.049 5.049 5.049 5.012 4.996 4.874 4.995 5.049 5.049 5.049 4.944 4.807 4.890 4.997 4.984 4.952 4.985 5.038 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 4.969 4.968 5.021 5.016 4.995 4.974 4.916 4.878 4.863 4.884 4.892 4.915 4.964 5.049 5.049 5.049 5.033 4.998 4.880 4.833 4.936 4.985 5.049 5.049 4.938 4.778 4.769 4.974 4.930 4.961 4.965 5.036 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 4.952 4.939 4.956 5.012 4.999 4.975 4.934 4.898 4.886 4.863 4.869 4.906 4.931 4.938 5.049 5.049 5.000 4.988 4.819 4.820 4.955 4.967 5.049 5.049 4.898 4.750 4.758 4.912 4.900 4.961 4.953 5.034 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 4.941 4.912 4.909 4.989 5.008 4.999 4.942 4.915 4.873 4.856 4.865 4.880 4.883 4.950 4.964 4.976 4.934 4.834 4.791 4.893 4.893 4.904 4.902 4.918 4.838 4.773 4.753 4.765 4.933 4.934 4.948 5.035 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 4.963 4.909 4.928 5.007 5.027 5.008 4.976 4.930 4.903 4.856 4.848 4.855 4.858 4.916 4.973 4.942 4.876 4.795 4.774 4.839 4.902 4.949 4.974 4.898 4.826 4.743 4.722 4.775 4.843 4.879 4.919 5.025 5.008 5.002 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 4.964 4.952 4.982 5.030 5.035 5.004 4.974 4.925 4.891 4.898 4.913 4.913 4.993 5.027 5.003 4.901 4.799 4.800 4.873 4.934 4.991 4.924 4.839 4.769 4.704 4.706 4.775 4.856 4.957 4.977 4.897 4.968 5.020 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 4.991 4.949 4.991 5.051 5.097 5.072 5.051 5.034 5.046 5.056 5.028 5.051 5.106 5.073 4.952 4.847 4.805 4.841 4.915 5.026 4.897 4.787 4.770 4.765 4.719 4.738 4.827 4.854 4.936 4.834 4.902 4.980 5.013 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 4.989 4.960 5.006 5.131 5.174 5.107 5.198 5.149 5.168 5.145 5.109 5.076 5.057 5.007 4.904 4.860 4.868 4.905 4.941 4.836 4.754 4.716 4.774 4.830 4.807 4.823 4.893 4.962 4.882 4.893 4.926 4.941 5.004 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.029 5.071 5.118 5.102 5.170 5.095 5.143 5.226 5.193 5.071 5.054 4.992 4.891 4.878 4.891 4.855 4.864 4.738 4.659 4.678 4.738 4.872 4.883 4.860 4.940 5.047 4.941 4.933 4.956 4.959 4.976 5.020 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.062 5.086 5.064 5.018 4.980 4.976 5.077 5.103 5.091 5.094 5.059 4.961 4.890 4.914 4.882 4.817 4.788 4.709 4.678 4.719 4.771 4.882 4.942 4.936 4.961 5.008 4.927 4.941 4.980 5.016 5.040 5.040 5.052 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.071 5.019 4.958 4.972 5.015 5.064 5.049 5.024 4.991 4.908 4.876 4.916 4.881 4.829 4.797 4.771 4.781 4.809 4.805 4.823 4.868 4.916 4.994 4.986 4.845 4.897 4.953 5.015 5.068 5.065 5.067 5.053 5.103 5.077 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.032 4.952 4.976 5.014 5.054 5.063 5.058 5.036 4.955 4.908 4.960 4.937 4.911 4.895 4.856 4.885 4.902 4.866 4.838 4.835 4.849 4.902 4.954 4.897 4.865 4.906 4.946 4.996 5.045 5.057 5.041 5.096 5.076 5.038 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.009 5.022 5.049 5.049 5.055 5.058 5.027 5.049 5.049 5.049 5.049 5.049 5.033 4.964 4.969 4.962 4.942 4.932 4.922 4.950 4.994 4.951 4.930 4.961 4.943 4.916 4.968 5.008 4.989 5.016 5.063 5.024 5.017 5.044 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.045 4.997 5.008 5.009 4.990 4.981 4.991 4.946 4.934 4.986 5.011 4.955 4.946 4.961 4.932 4.923 4.986 5.009 5.006 5.038 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.036 5.036 5.028 5.015 5.030 4.975 4.958 4.973 4.968 4.950 4.944 4.943 4.935 4.921 4.928 4.962 4.999 5.032 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.036 5.037 5.050 5.049 5.049 5.064 5.083 4.995 4.991 4.974 4.955 4.926 4.932 4.955 4.990 5.030 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 5.049 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.085 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.081 5.080 5.001 5.093 5.030 5.086 5.086 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.059 5.078 4.998 4.979 4.985 5.030 5.083 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.072 5.061 5.009 4.982 4.966 5.001 5.015 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.023 5.069 5.064 5.023 4.999 4.970 4.950 5.009 4.998 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 4.999 5.020 5.049 5.024 5.001 4.974 4.945 5.008 5.049 5.040 5.039 5.093 5.093 5.093 5.093 5.007 4.976 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.008 5.026 5.058 5.057 5.021 5.004 5.005 5.037 5.068 5.081 5.100 5.108 5.086 5.015 4.956 4.911 4.955 5.016 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.028 5.024 5.083 5.110 5.075 5.095 5.076 5.111 5.127 5.116 5.087 5.072 5.028 4.962 4.942 4.965 5.003 5.021 4.972 4.984 5.093 5.063 4.970 4.951 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.051 5.064 5.104 5.111 5.099 5.084 5.127 5.183 5.188 5.107 5.078 5.023 4.955 4.968 4.992 4.970 4.980 4.902 4.839 4.868 4.937 4.988 5.000 4.986 5.048 5.093 5.068 5.075 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.084 5.069 5.077 5.046 5.098 5.149 5.163 5.148 5.114 5.080 4.993 4.941 4.999 5.012 4.958 4.921 4.855 4.847 4.889 4.941 5.010 5.050 5.026 5.035 5.018 4.966 4.962 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.062 5.033 5.082 5.098 5.129 5.128 5.067 5.037 4.941 4.923 5.020 5.008 4.945 4.916 4.930 4.911 4.954 4.953 4.988 5.028 5.061 5.061 5.032 4.936 4.943 4.977 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.033 5.061 5.085 5.115 5.157 5.084 5.055 5.004 4.975 4.999 5.016 4.968 4.964 5.056 5.075 5.032 5.050 5.057 5.060 5.056 5.018 5.021 4.958 4.931 4.948 4.974 5.018 5.071 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.061 5.076 5.094 5.145 5.130 5.094 5.051 5.024 5.042 5.059 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.058 5.061 5.016 4.975 4.995 4.991 4.970 5.036 5.097 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.112 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 4.982 5.023 5.018 4.991 4.998 5.028 5.054 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.036 5.027 4.994 5.008 5.019 5.006 5.045 5.093 5.088 5.077 5.084 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.041 5.033 5.080 5.093 5.067 5.085 5.064 5.083 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 5.093 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.153 5.150 5.134 5.122 5.145 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.151 5.132 5.129 5.118 5.144 5.175 5.150 5.131 5.111 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.126 5.114 5.159 5.207 5.209 5.190 5.144 5.115 5.090 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.127 5.113 5.171 5.196 5.197 5.182 5.146 5.101 5.074 5.103 5.105 5.170 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.119 5.149 5.178 5.191 5.208 5.157 5.135 5.116 5.116 5.108 5.134 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.145 5.162 5.172 5.207 5.207 5.171 5.145 5.137 5.140 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.177 5.159 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 + 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150 5.150